Compare commits

..
1 Commits
Author SHA1 Message Date
Charles Bochet b1b2438384 Bump version 2025-03-22 14:20:16 +01:00
1516 changed files with 7739 additions and 22273 deletions
@@ -20,7 +20,7 @@ runs:
id: cache-primary-key-builder
shell: bash
run: |
echo "CACHE_PRIMARY_KEY_PREFIX=v2-${{ inputs.key }}-${{ github.ref_name }}" >> "${GITHUB_OUTPUT}"
echo "CACHE_PRIMARY_KEY_PREFIX=${{ inputs.key }}-${{ github.ref_name }}" >> "${GITHUB_OUTPUT}"
- name: Restore cache
uses: actions/cache/restore@v4
id: restore-cache
@@ -25,8 +25,8 @@ runs:
id: cache-node-modules
uses: actions/cache/restore@v4
with:
key: v2-${{ steps.globals.outputs.CACHE_KEY_PREFIX }}-${{github.sha}}
restore-keys: v2-${{ steps.globals.outputs.CACHE_KEY_PREFIX }}-
key: ${{ steps.globals.outputs.CACHE_KEY_PREFIX }}-${{github.sha}}
restore-keys: ${{ steps.globals.outputs.CACHE_KEY_PREFIX }}-
path: ${{ steps.globals.outputs.PATH_TO_CACHE }}
- name: Install Dependencies
if: ${{ steps.cache-node-modules.outputs.cache-hit != 'true' && steps.cache-node-modules.outputs.cache-matched-key == '' }}
+53
View File
@@ -0,0 +1,53 @@
name: CI Tinybird
on:
push:
branches:
- feature/reimplement-tinybird
- main
paths:
- 'package.json'
- 'packages/twenty-tinybird/**'
pull_request:
paths:
- 'package.json'
- 'packages/twenty-tinybird/**'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
TINYBIRD_HOST: https://api.eu-central-1.aws.tinybird.co
TINYBIRD_TOKEN: ${{ secrets.TB_ADMIN_TOKEN }}
jobs:
changed-files-check:
uses: ./.github/workflows/changed-files.yaml
with:
files: packages/twenty-tinybird/**
ci:
runs-on: ubuntu-latest
needs: changed-files-check
if: needs.changed-files-check.outputs.any_changed == 'true'
timeout-minutes: 10
defaults:
run:
working-directory: './packages/twenty-tinybird'
services:
tinybird:
image: tinybirdco/tinybird-local:beta
ports:
- 7181:7181
steps:
- uses: actions/checkout@master
with:
fetch-depth: 1
ref: ${{ github.event.pull_request.head.sha }}
- name: Install Tinybird CLI
run: curl https://tinybird.co | sh
- name: Build project
run: tb build
- name: Test project
run: tb test run
@@ -1,4 +1,5 @@
import { isDefined } from 'twenty-shared/utils';
import { isDefined } from 'twenty-shared';
// Open options page programmatically in a new tab.
// chrome.runtime.onInstalled.addListener((details) => {
// if (details.reason === 'install') {
@@ -1,4 +1,5 @@
import { isDefined } from 'twenty-shared/utils';
import { isDefined } from 'twenty-shared';
interface CustomDiv extends HTMLDivElement {
onClickHandler: (newHandler: () => void) => void;
}
@@ -1,10 +1,10 @@
import { isDefined } from 'twenty-shared';
import { createDefaultButton } from '~/contentScript/createButton';
import changeSidePanelUrl from '~/contentScript/utils/changeSidepanelUrl';
import extractCompanyLinkedinLink from '~/contentScript/utils/extractCompanyLinkedinLink';
import extractDomain from '~/contentScript/utils/extractDomain';
import { createCompany, fetchCompany } from '~/db/company.db';
import { CompanyInput } from '~/db/types/company.types';
import { isDefined } from 'twenty-shared/utils';
export const checkIfCompanyExists = async () => {
const { tab: activeTab } = await chrome.runtime.sendMessage({
@@ -1,9 +1,9 @@
import { isDefined } from 'twenty-shared';
import { createDefaultButton } from '~/contentScript/createButton';
import changeSidePanelUrl from '~/contentScript/utils/changeSidepanelUrl';
import extractFirstAndLastName from '~/contentScript/utils/extractFirstAndLastName';
import { createPerson, fetchPerson } from '~/db/person.db';
import { PersonInput } from '~/db/types/person.types';
import { isDefined } from 'twenty-shared/utils';
export const checkIfPersonExists = async () => {
const { tab: activeTab } = await chrome.runtime.sendMessage({
@@ -1,6 +1,6 @@
import { isDefined } from 'twenty-shared';
import { insertButtonForCompany } from '~/contentScript/extractCompanyProfile';
import { insertButtonForPerson } from '~/contentScript/extractPersonProfile';
import { isDefined } from 'twenty-shared/utils';
// Inject buttons into the DOM when SPA is reloaded on the resource url.
// e.g. reload the page when on https://www.linkedin.com/in/mabdullahabaid/
@@ -1,4 +1,5 @@
import { isDefined } from 'twenty-shared/utils';
import { isDefined } from 'twenty-shared';
const btn = document.getElementById('twenty-settings-btn');
if (!isDefined(btn)) {
const div = document.createElement('div');
@@ -1,4 +1,5 @@
import { isDefined } from 'twenty-shared/utils';
import { isDefined } from 'twenty-shared';
const changeSidePanelUrl = async (url: string) => {
if (isDefined(url)) {
chrome.storage.local.set({ navigateSidepanel: 'sidepanel' });
@@ -1,4 +1,7 @@
import { isDefined } from 'twenty-shared/utils';
// Extract "https://www.linkedin.com/company/twenty/" from any of the following urls, which the user can visit while on the company page.
import { isDefined } from 'twenty-shared';
// "https://www.linkedin.com/company/twenty/" "https://www.linkedin.com/company/twenty/about/" "https://www.linkedin.com/company/twenty/people/".
const extractCompanyLinkedinLink = (activeTabUrl: string) => {
// Regular expression to match the company ID
@@ -1,3 +1,4 @@
import { isDefined } from 'twenty-shared';
import {
ExchangeAuthCodeInput,
ExchangeAuthCodeResponse,
@@ -5,7 +6,6 @@ import {
} from '~/db/types/auth.types';
import { EXCHANGE_AUTHORIZATION_CODE } from '~/graphql/auth/mutations';
import { callMutation } from '~/utils/requestDb';
import { isDefined } from 'twenty-shared/utils';
export const exchangeAuthorizationCode = async (
exchangeAuthCodeInput: ExchangeAuthCodeInput,
@@ -1,3 +1,4 @@
import { isDefined } from 'twenty-shared';
import {
CompanyInput,
CreateCompanyResponse,
@@ -8,7 +9,6 @@ import { CREATE_COMPANY } from '~/graphql/company/mutations';
import { FIND_COMPANY } from '~/graphql/company/queries';
import { callMutation, callQuery } from '../utils/requestDb';
import { isDefined } from 'twenty-shared/utils';
export const fetchCompany = async (
companyfilerInput: CompanyFilterInput,
@@ -1,3 +1,4 @@
import { isDefined } from 'twenty-shared';
import {
CreatePersonResponse,
FindPersonResponse,
@@ -8,7 +9,6 @@ import { CREATE_PERSON } from '~/graphql/person/mutations';
import { FIND_PERSON } from '~/graphql/person/queries';
import { callMutation, callQuery } from '../utils/requestDb';
import { isDefined } from 'twenty-shared/utils';
export const fetchPerson = async (
personFilterData: PersonFilterInput,
@@ -1,7 +1,8 @@
import { ApolloClient, InMemoryCache } from '@apollo/client';
import { isDefined } from 'twenty-shared';
import { Tokens } from '~/db/types/auth.types';
import { RENEW_TOKEN } from '~/graphql/auth/mutations';
import { isDefined } from 'twenty-shared/utils';
export const renewToken = async (
appToken: string,
@@ -1,7 +1,8 @@
import { useEffect, useState } from 'react';
import { isDefined } from 'twenty-shared';
import Settings from '~/options/Settings';
import Sidepanel from '~/options/Sidepanel';
import { isDefined } from 'twenty-shared/utils';
const App = () => {
const [currentScreen, setCurrentScreen] = useState('');
@@ -3,8 +3,8 @@ import { useEffect, useState } from 'react';
import { MainButton } from '@/ui/input/button/MainButton';
import { TextInput } from '@/ui/input/components/TextInput';
import { isDefined } from 'twenty-shared';
import { clearStore } from '~/utils/apolloClient';
import { isDefined } from 'twenty-shared/utils';
const StyledWrapper = styled.div`
align-items: center;
@@ -2,7 +2,7 @@ import styled from '@emotion/styled';
import { useCallback, useEffect, useRef, useState } from 'react';
import { MainButton } from '@/ui/input/button/MainButton';
import { isDefined } from 'twenty-shared/utils';
import { isDefined } from 'twenty-shared';
const StyledIframe = styled.iframe`
display: block;
@@ -1,7 +1,8 @@
import styled from '@emotion/styled';
import { motion } from 'framer-motion';
import { useEffect, useState } from 'react';
import { isDefined } from 'twenty-shared/utils';
import { isDefined } from 'twenty-shared';
export type ToggleSize = 'small' | 'medium';
@@ -1,7 +1,8 @@
import { ApolloClient, from, HttpLink, InMemoryCache } from '@apollo/client';
import { setContext } from '@apollo/client/link/context';
import { onError } from '@apollo/client/link/error';
import { isDefined } from 'twenty-shared/utils';
import { isDefined } from 'twenty-shared';
export const clearStore = () => {
chrome.storage.local.remove([
@@ -1,7 +1,8 @@
import { OperationVariables } from '@apollo/client';
import { DocumentNode } from 'graphql';
import { isDefined } from 'twenty-shared';
import getApolloClient from '~/utils/apolloClient';
import { isDefined } from 'twenty-shared/utils';
export const callQuery = async <T>(
query: DocumentNode,
+5 -18
View File
@@ -1,27 +1,14 @@
# Makefile for building Twenty CRM docker images.
# Set the tag and/or target build platform using make command-line variables assignments.
#
# Optional make variables:
# PLATFORM - defaults to 'linux/amd64'
# TAG - defaults to 'latest'
#
# Example: make
# Example: make PLATFORM=linux/aarch64 TAG=my-tag
PLATFORM ?= linux/amd64
TAG ?= latest
prod-build:
@cd ../.. && docker build -f ./packages/twenty-docker/twenty/Dockerfile --platform $(PLATFORM) --tag twenty:$(TAG) . && cd -
@cd ../.. && docker build -f ./packages/twenty-docker/twenty/Dockerfile --tag twenty . && cd -
prod-run:
@docker run -d -p 3000:3000 --name twenty twenty:$(TAG)
@docker run -d -p 3000:3000 --name twenty twenty
prod-postgres-run:
@docker run -d -p 5432:5432 -e POSTGRES_USER=postgres -e POSTGRES_PASSWORD=postgres --name twenty-postgres twenty-postgres:$(TAG)
@docker run -d -p 5432:5432 -e POSTGRES_USER=postgres -e POSTGRES_PASSWORD=postgres --name twenty-postgres twenty-postgres
prod-website-build:
@cd ../.. && docker build -f ./packages/twenty-docker/twenty-website/Dockerfile --platform $(PLATFORM) --tag twenty-website:$(TAG) . && cd -
@cd ../.. && docker build -f ./packages/twenty-docker/twenty-website/Dockerfile --tag twenty-website . && cd -
prod-website-run:
@docker run -d -p 3000:3000 --name twenty-website twenty-website:$(TAG)
@docker run -d -p 3000:3000 --name twenty-website twenty-website
-2
View File
@@ -7,13 +7,11 @@ WORKDIR /app
COPY ./package.json ./yarn.lock ./.yarnrc.yml ./tsconfig.base.json ./nx.json /app/
COPY ./.yarn/releases /app/.yarn/releases
COPY ./.prettierrc /app/
COPY ./packages/twenty-emails/package.json /app/packages/twenty-emails/
COPY ./packages/twenty-server/package.json /app/packages/twenty-server/
COPY ./packages/twenty-server/patches /app/packages/twenty-server/patches
COPY ./packages/twenty-ui/package.json /app/packages/twenty-ui/
COPY ./packages/twenty-shared/package.json /app/packages/twenty-shared/
COPY ./packages/twenty-shared/patches /app/packages/twenty-shared/patches
COPY ./packages/twenty-front/package.json /app/packages/twenty-front/
# Install all dependencies
+2 -3
View File
@@ -10,9 +10,8 @@ if [ "${DISABLE_DB_MIGRATIONS}" != "true" ] && [ ! -f /app/docker-data/db_status
PGPASS=$(echo $PG_DATABASE_URL | awk -F ':' '{print $3}' | awk -F '@' '{print $1}')
PGHOST=$(echo $PG_DATABASE_URL | awk -F '@' '{print $2}' | awk -F ':' '{print $1}')
PGPORT=$(echo $PG_DATABASE_URL | awk -F ':' '{print $4}' | awk -F '/' '{print $1}')
PGDATABASE=$(echo $PG_DATABASE_URL | awk -F ':' '{print $4}' | awk -F '/' '{print $2}')
PGPASSWORD=${PGPASS} psql -h ${PGHOST} -p ${PGPORT} -U ${PGUSER} -d postgres -tc "SELECT 1 FROM pg_database WHERE datname = '${PGDATABASE}'" | grep -q 1 || \
PGPASSWORD=${PGPASS} psql -h ${PGHOST} -p ${PGPORT} -U ${PGUSER} -d postgres -c "CREATE DATABASE \"${PGDATABASE}\""
PGPASSWORD=${PGPASS} psql -h ${PGHOST} -p ${PGPORT} -U ${PGUSER} -d postgres -tc "SELECT 1 FROM pg_database WHERE datname = 'default'" | grep -q 1 || \
PGPASSWORD=${PGPASS} psql -h ${PGHOST} -p ${PGPORT} -U ${PGUSER} -d postgres -c "CREATE DATABASE \"default\""
# Run setup and migration scripts
NODE_OPTIONS="--max-old-space-size=1500" tsx ./scripts/setup-db.ts
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "twenty-e2e-testing",
"version": "0.50.1",
"version": "0.44.10",
"description": "",
"author": "",
"private": true,
+2 -2
View File
@@ -1,13 +1,13 @@
import { defineConfig } from '@lingui/conf';
import { formatter } from '@lingui/format-po';
import { APP_LOCALES, SOURCE_LOCALE } from 'twenty-shared/translations';
import { APP_LOCALES } from 'twenty-shared';
export default defineConfig({
sourceLocale: 'en',
locales: Object.values(APP_LOCALES),
pseudoLocale: 'pseudo-en',
fallbackLocales: {
default: SOURCE_LOCALE,
'pseudo-en': 'en',
},
extractorParserOptions: {
tsExperimentalDecorators: true,
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "twenty-emails",
"version": "0.50.1",
"version": "0.44.10",
"description": "",
"author": "",
"private": true,
@@ -5,6 +5,7 @@ import { PropsWithChildren } from 'react';
import { BaseHead } from 'src/components/BaseHead';
import { Logo } from 'src/components/Logo';
import { APP_LOCALES, SOURCE_LOCALE } from 'twenty-shared';
import { messages as afMessages } from '../locales/generated/af-ZA';
import { messages as arMessages } from '../locales/generated/ar-SA';
import { messages as caMessages } from '../locales/generated/ca-ES';
@@ -36,7 +37,6 @@ import { messages as ukMessages } from '../locales/generated/uk-UA';
import { messages as viMessages } from '../locales/generated/vi-VN';
import { messages as zhHansMessages } from '../locales/generated/zh-CN';
import { messages as zhHantMessages } from '../locales/generated/zh-TW';
import { APP_LOCALES, SOURCE_LOCALE } from 'twenty-shared/translations';
type BaseEmailProps = PropsWithChildren<{
width?: number;
@@ -3,7 +3,7 @@ import { BaseEmail } from 'src/components/BaseEmail';
import { CallToAction } from 'src/components/CallToAction';
import { MainText } from 'src/components/MainText';
import { Title } from 'src/components/Title';
import { APP_LOCALES } from 'twenty-shared/translations';
import { APP_LOCALES } from 'twenty-shared';
type CleanSuspendedWorkspaceEmailProps = {
daysSinceInactive: number;
@@ -4,7 +4,7 @@ import { CallToAction } from 'src/components/CallToAction';
import { Link } from 'src/components/Link';
import { MainText } from 'src/components/MainText';
import { Title } from 'src/components/Title';
import { APP_LOCALES } from 'twenty-shared/translations';
import { APP_LOCALES } from 'twenty-shared';
type PasswordResetLinkEmailProps = {
duration: string;
@@ -6,7 +6,7 @@ import { BaseEmail } from 'src/components/BaseEmail';
import { CallToAction } from 'src/components/CallToAction';
import { MainText } from 'src/components/MainText';
import { Title } from 'src/components/Title';
import { APP_LOCALES } from 'twenty-shared/translations';
import { APP_LOCALES } from 'twenty-shared';
type PasswordUpdateNotifyEmailProps = {
userName: string;
@@ -5,7 +5,7 @@ import { CallToAction } from 'src/components/CallToAction';
import { Footer } from 'src/components/Footer';
import { MainText } from 'src/components/MainText';
import { Title } from 'src/components/Title';
import { APP_LOCALES } from 'twenty-shared/translations';
import { APP_LOCALES } from 'twenty-shared';
type SendEmailVerificationLinkEmailProps = {
link: string;
@@ -11,8 +11,7 @@ import { MainText } from 'src/components/MainText';
import { Title } from 'src/components/Title';
import { WhatIsTwenty } from 'src/components/WhatIsTwenty';
import { capitalize } from 'src/utils/capitalize';
import { APP_LOCALES } from 'twenty-shared/translations';
import { getImageAbsoluteURI } from 'twenty-shared/utils';
import { APP_LOCALES, getImageAbsoluteURI } from 'twenty-shared';
type SendInviteLinkEmailProps = {
link: string;
@@ -12,8 +12,7 @@ import { MainText } from 'src/components/MainText';
import { Title } from 'src/components/Title';
import { WhatIsTwenty } from 'src/components/WhatIsTwenty';
import { capitalize } from 'src/utils/capitalize';
import { APP_LOCALES } from 'twenty-shared/translations';
import { getImageAbsoluteURI } from 'twenty-shared/utils';
import { APP_LOCALES, getImageAbsoluteURI } from 'twenty-shared';
type SendApprovedAccessDomainValidationProps = {
link: string;
@@ -3,7 +3,7 @@ import { BaseEmail } from 'src/components/BaseEmail';
import { CallToAction } from 'src/components/CallToAction';
import { MainText } from 'src/components/MainText';
import { Title } from 'src/components/Title';
import { APP_LOCALES } from 'twenty-shared/translations';
import { APP_LOCALES } from 'twenty-shared';
type WarnSuspendedWorkspaceEmailProps = {
daysSinceInactive: number;
+1 -1
View File
@@ -1,10 +1,10 @@
import { lingui } from '@lingui/vite-plugin';
import react from '@vitejs/plugin-react-swc';
import * as path from 'path';
import { APP_LOCALES } from 'twenty-shared';
import { defineConfig } from 'vite';
import dts from 'vite-plugin-dts';
import tsconfigPaths from 'vite-tsconfig-paths';
import { APP_LOCALES } from 'twenty-shared/translations';
export default defineConfig({
root: __dirname,
+1 -2
View File
@@ -1,6 +1,6 @@
import { defineConfig } from '@lingui/conf';
import { formatter } from '@lingui/format-po';
import { APP_LOCALES, SOURCE_LOCALE } from 'twenty-shared/translations';
import { APP_LOCALES } from 'twenty-shared';
export default defineConfig({
sourceLocale: 'en',
@@ -8,7 +8,6 @@ export default defineConfig({
pseudoLocale: 'pseudo-en',
fallbackLocales: {
'pseudo-en': 'en',
default: SOURCE_LOCALE,
},
catalogs: [
{
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "twenty-front",
"version": "0.50.1",
"version": "0.44.10",
"private": true,
"type": "module",
"scripts": {
@@ -24,12 +24,12 @@ const documents = {
"\n \n query GetManyDatabaseConnections($input: RemoteServerTypeInput!) {\n findManyRemoteServersByType(input: $input) {\n ...RemoteServerFields\n }\n }\n": types.GetManyDatabaseConnectionsDocument,
"\n \n query GetManyRemoteTables($input: FindManyRemoteTablesInput!) {\n findDistantTablesWithStatus(input: $input) {\n ...RemoteTableFields\n }\n }\n": types.GetManyRemoteTablesDocument,
"\n \n query GetOneDatabaseConnection($input: RemoteServerIdInput!) {\n findOneRemoteServerById(input: $input) {\n ...RemoteServerFields\n }\n }\n": types.GetOneDatabaseConnectionDocument,
"\n mutation CreateOneObjectMetadataItem($input: CreateOneObjectInput!) {\n createOneObject(input: $input) {\n id\n dataSourceId\n nameSingular\n namePlural\n labelSingular\n labelPlural\n description\n icon\n isCustom\n isActive\n isSearchable\n createdAt\n updatedAt\n labelIdentifierFieldMetadataId\n imageIdentifierFieldMetadataId\n isLabelSyncedWithName\n }\n }\n": types.CreateOneObjectMetadataItemDocument,
"\n mutation CreateOneFieldMetadataItem($input: CreateOneFieldMetadataInput!) {\n createOneField(input: $input) {\n id\n type\n name\n label\n description\n icon\n isCustom\n isActive\n isNullable\n createdAt\n updatedAt\n settings\n defaultValue\n options\n isLabelSyncedWithName\n }\n }\n": types.CreateOneFieldMetadataItemDocument,
"\n mutation CreateOneObjectMetadataItem($input: CreateOneObjectInput!) {\n createOneObject(input: $input) {\n id\n dataSourceId\n nameSingular\n namePlural\n labelSingular\n labelPlural\n description\n icon\n isCustom\n isActive\n isSearchable\n createdAt\n updatedAt\n labelIdentifierFieldMetadataId\n imageIdentifierFieldMetadataId\n }\n }\n": types.CreateOneObjectMetadataItemDocument,
"\n mutation CreateOneFieldMetadataItem($input: CreateOneFieldMetadataInput!) {\n createOneField(input: $input) {\n id\n type\n name\n label\n description\n icon\n isCustom\n isActive\n isNullable\n createdAt\n updatedAt\n settings\n defaultValue\n options\n }\n }\n": types.CreateOneFieldMetadataItemDocument,
"\n mutation CreateOneRelationMetadataItem(\n $input: CreateOneRelationMetadataInput!\n ) {\n createOneRelationMetadata(input: $input) {\n id\n relationType\n fromObjectMetadataId\n toObjectMetadataId\n fromFieldMetadataId\n toFieldMetadataId\n createdAt\n updatedAt\n }\n }\n": types.CreateOneRelationMetadataItemDocument,
"\n mutation UpdateOneFieldMetadataItem(\n $idToUpdate: UUID!\n $updatePayload: UpdateFieldInput!\n ) {\n updateOneField(input: { id: $idToUpdate, update: $updatePayload }) {\n id\n type\n name\n label\n description\n icon\n isCustom\n isActive\n isNullable\n createdAt\n updatedAt\n settings\n isLabelSyncedWithName\n }\n }\n": types.UpdateOneFieldMetadataItemDocument,
"\n mutation UpdateOneObjectMetadataItem(\n $idToUpdate: UUID!\n $updatePayload: UpdateObjectPayload!\n ) {\n updateOneObject(input: { id: $idToUpdate, update: $updatePayload }) {\n id\n dataSourceId\n nameSingular\n namePlural\n labelSingular\n labelPlural\n description\n icon\n isCustom\n isActive\n isSearchable\n createdAt\n updatedAt\n labelIdentifierFieldMetadataId\n imageIdentifierFieldMetadataId\n isLabelSyncedWithName\n }\n }\n": types.UpdateOneObjectMetadataItemDocument,
"\n mutation DeleteOneObjectMetadataItem($idToDelete: UUID!) {\n deleteOneObject(input: { id: $idToDelete }) {\n id\n dataSourceId\n nameSingular\n namePlural\n labelSingular\n labelPlural\n description\n icon\n isCustom\n isActive\n isSearchable\n createdAt\n updatedAt\n labelIdentifierFieldMetadataId\n imageIdentifierFieldMetadataId\n isLabelSyncedWithName\n }\n }\n": types.DeleteOneObjectMetadataItemDocument,
"\n mutation UpdateOneObjectMetadataItem(\n $idToUpdate: UUID!\n $updatePayload: UpdateObjectPayload!\n ) {\n updateOneObject(input: { id: $idToUpdate, update: $updatePayload }) {\n id\n dataSourceId\n nameSingular\n namePlural\n labelSingular\n labelPlural\n description\n icon\n isCustom\n isActive\n isSearchable\n createdAt\n updatedAt\n labelIdentifierFieldMetadataId\n imageIdentifierFieldMetadataId\n }\n }\n": types.UpdateOneObjectMetadataItemDocument,
"\n mutation DeleteOneObjectMetadataItem($idToDelete: UUID!) {\n deleteOneObject(input: { id: $idToDelete }) {\n id\n dataSourceId\n nameSingular\n namePlural\n labelSingular\n labelPlural\n description\n icon\n isCustom\n isActive\n isSearchable\n createdAt\n updatedAt\n labelIdentifierFieldMetadataId\n imageIdentifierFieldMetadataId\n }\n }\n": types.DeleteOneObjectMetadataItemDocument,
"\n mutation DeleteOneFieldMetadataItem($idToDelete: UUID!) {\n deleteOneField(input: { id: $idToDelete }) {\n id\n type\n name\n label\n description\n icon\n isCustom\n isActive\n isNullable\n createdAt\n updatedAt\n settings\n }\n }\n": types.DeleteOneFieldMetadataItemDocument,
"\n mutation DeleteOneRelationMetadataItem($idToDelete: UUID!) {\n deleteOneRelation(input: { id: $idToDelete }) {\n id\n }\n }\n": types.DeleteOneRelationMetadataItemDocument,
"\n query ObjectMetadataItems {\n objects(paging: { first: 1000 }) {\n edges {\n node {\n id\n dataSourceId\n nameSingular\n namePlural\n labelSingular\n labelPlural\n description\n icon\n isCustom\n isRemote\n isActive\n isSystem\n createdAt\n updatedAt\n labelIdentifierFieldMetadataId\n imageIdentifierFieldMetadataId\n shortcut\n isLabelSyncedWithName\n isSearchable\n duplicateCriteria\n indexMetadatas(paging: { first: 100 }) {\n edges {\n node {\n id\n createdAt\n updatedAt\n name\n indexWhereClause\n indexType\n isUnique\n indexFieldMetadatas(paging: { first: 100 }) {\n edges {\n node {\n id\n createdAt\n updatedAt\n order\n fieldMetadataId\n }\n }\n }\n }\n }\n }\n fieldsList {\n id\n type\n name\n label\n description\n icon\n isCustom\n isActive\n isSystem\n isNullable\n isUnique\n createdAt\n updatedAt\n defaultValue\n options\n settings\n isLabelSyncedWithName\n relationDefinition {\n relationId\n direction\n sourceObjectMetadata {\n id\n nameSingular\n namePlural\n }\n sourceFieldMetadata {\n id\n name\n }\n targetObjectMetadata {\n id\n nameSingular\n namePlural\n }\n targetFieldMetadata {\n id\n name\n }\n }\n }\n }\n }\n pageInfo {\n hasNextPage\n hasPreviousPage\n startCursor\n endCursor\n }\n }\n }\n": types.ObjectMetadataItemsDocument,
@@ -106,11 +106,11 @@ export function graphql(source: "\n \n query GetOneDatabaseConnection($input:
/**
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
*/
export function graphql(source: "\n mutation CreateOneObjectMetadataItem($input: CreateOneObjectInput!) {\n createOneObject(input: $input) {\n id\n dataSourceId\n nameSingular\n namePlural\n labelSingular\n labelPlural\n description\n icon\n isCustom\n isActive\n isSearchable\n createdAt\n updatedAt\n labelIdentifierFieldMetadataId\n imageIdentifierFieldMetadataId\n isLabelSyncedWithName\n }\n }\n"): (typeof documents)["\n mutation CreateOneObjectMetadataItem($input: CreateOneObjectInput!) {\n createOneObject(input: $input) {\n id\n dataSourceId\n nameSingular\n namePlural\n labelSingular\n labelPlural\n description\n icon\n isCustom\n isActive\n isSearchable\n createdAt\n updatedAt\n labelIdentifierFieldMetadataId\n imageIdentifierFieldMetadataId\n isLabelSyncedWithName\n }\n }\n"];
export function graphql(source: "\n mutation CreateOneObjectMetadataItem($input: CreateOneObjectInput!) {\n createOneObject(input: $input) {\n id\n dataSourceId\n nameSingular\n namePlural\n labelSingular\n labelPlural\n description\n icon\n isCustom\n isActive\n isSearchable\n createdAt\n updatedAt\n labelIdentifierFieldMetadataId\n imageIdentifierFieldMetadataId\n }\n }\n"): (typeof documents)["\n mutation CreateOneObjectMetadataItem($input: CreateOneObjectInput!) {\n createOneObject(input: $input) {\n id\n dataSourceId\n nameSingular\n namePlural\n labelSingular\n labelPlural\n description\n icon\n isCustom\n isActive\n isSearchable\n createdAt\n updatedAt\n labelIdentifierFieldMetadataId\n imageIdentifierFieldMetadataId\n }\n }\n"];
/**
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
*/
export function graphql(source: "\n mutation CreateOneFieldMetadataItem($input: CreateOneFieldMetadataInput!) {\n createOneField(input: $input) {\n id\n type\n name\n label\n description\n icon\n isCustom\n isActive\n isNullable\n createdAt\n updatedAt\n settings\n defaultValue\n options\n isLabelSyncedWithName\n }\n }\n"): (typeof documents)["\n mutation CreateOneFieldMetadataItem($input: CreateOneFieldMetadataInput!) {\n createOneField(input: $input) {\n id\n type\n name\n label\n description\n icon\n isCustom\n isActive\n isNullable\n createdAt\n updatedAt\n settings\n defaultValue\n options\n isLabelSyncedWithName\n }\n }\n"];
export function graphql(source: "\n mutation CreateOneFieldMetadataItem($input: CreateOneFieldMetadataInput!) {\n createOneField(input: $input) {\n id\n type\n name\n label\n description\n icon\n isCustom\n isActive\n isNullable\n createdAt\n updatedAt\n settings\n defaultValue\n options\n }\n }\n"): (typeof documents)["\n mutation CreateOneFieldMetadataItem($input: CreateOneFieldMetadataInput!) {\n createOneField(input: $input) {\n id\n type\n name\n label\n description\n icon\n isCustom\n isActive\n isNullable\n createdAt\n updatedAt\n settings\n defaultValue\n options\n }\n }\n"];
/**
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
*/
@@ -122,11 +122,11 @@ export function graphql(source: "\n mutation UpdateOneFieldMetadataItem(\n $
/**
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
*/
export function graphql(source: "\n mutation UpdateOneObjectMetadataItem(\n $idToUpdate: UUID!\n $updatePayload: UpdateObjectPayload!\n ) {\n updateOneObject(input: { id: $idToUpdate, update: $updatePayload }) {\n id\n dataSourceId\n nameSingular\n namePlural\n labelSingular\n labelPlural\n description\n icon\n isCustom\n isActive\n isSearchable\n createdAt\n updatedAt\n labelIdentifierFieldMetadataId\n imageIdentifierFieldMetadataId\n isLabelSyncedWithName\n }\n }\n"): (typeof documents)["\n mutation UpdateOneObjectMetadataItem(\n $idToUpdate: UUID!\n $updatePayload: UpdateObjectPayload!\n ) {\n updateOneObject(input: { id: $idToUpdate, update: $updatePayload }) {\n id\n dataSourceId\n nameSingular\n namePlural\n labelSingular\n labelPlural\n description\n icon\n isCustom\n isActive\n isSearchable\n createdAt\n updatedAt\n labelIdentifierFieldMetadataId\n imageIdentifierFieldMetadataId\n isLabelSyncedWithName\n }\n }\n"];
export function graphql(source: "\n mutation UpdateOneObjectMetadataItem(\n $idToUpdate: UUID!\n $updatePayload: UpdateObjectPayload!\n ) {\n updateOneObject(input: { id: $idToUpdate, update: $updatePayload }) {\n id\n dataSourceId\n nameSingular\n namePlural\n labelSingular\n labelPlural\n description\n icon\n isCustom\n isActive\n isSearchable\n createdAt\n updatedAt\n labelIdentifierFieldMetadataId\n imageIdentifierFieldMetadataId\n }\n }\n"): (typeof documents)["\n mutation UpdateOneObjectMetadataItem(\n $idToUpdate: UUID!\n $updatePayload: UpdateObjectPayload!\n ) {\n updateOneObject(input: { id: $idToUpdate, update: $updatePayload }) {\n id\n dataSourceId\n nameSingular\n namePlural\n labelSingular\n labelPlural\n description\n icon\n isCustom\n isActive\n isSearchable\n createdAt\n updatedAt\n labelIdentifierFieldMetadataId\n imageIdentifierFieldMetadataId\n }\n }\n"];
/**
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
*/
export function graphql(source: "\n mutation DeleteOneObjectMetadataItem($idToDelete: UUID!) {\n deleteOneObject(input: { id: $idToDelete }) {\n id\n dataSourceId\n nameSingular\n namePlural\n labelSingular\n labelPlural\n description\n icon\n isCustom\n isActive\n isSearchable\n createdAt\n updatedAt\n labelIdentifierFieldMetadataId\n imageIdentifierFieldMetadataId\n isLabelSyncedWithName\n }\n }\n"): (typeof documents)["\n mutation DeleteOneObjectMetadataItem($idToDelete: UUID!) {\n deleteOneObject(input: { id: $idToDelete }) {\n id\n dataSourceId\n nameSingular\n namePlural\n labelSingular\n labelPlural\n description\n icon\n isCustom\n isActive\n isSearchable\n createdAt\n updatedAt\n labelIdentifierFieldMetadataId\n imageIdentifierFieldMetadataId\n isLabelSyncedWithName\n }\n }\n"];
export function graphql(source: "\n mutation DeleteOneObjectMetadataItem($idToDelete: UUID!) {\n deleteOneObject(input: { id: $idToDelete }) {\n id\n dataSourceId\n nameSingular\n namePlural\n labelSingular\n labelPlural\n description\n icon\n isCustom\n isActive\n isSearchable\n createdAt\n updatedAt\n labelIdentifierFieldMetadataId\n imageIdentifierFieldMetadataId\n }\n }\n"): (typeof documents)["\n mutation DeleteOneObjectMetadataItem($idToDelete: UUID!) {\n deleteOneObject(input: { id: $idToDelete }) {\n id\n dataSourceId\n nameSingular\n namePlural\n labelSingular\n labelPlural\n description\n icon\n isCustom\n isActive\n isSearchable\n createdAt\n updatedAt\n labelIdentifierFieldMetadataId\n imageIdentifierFieldMetadataId\n }\n }\n"];
/**
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
*/
File diff suppressed because one or more lines are too long
+55 -163
View File
@@ -1,5 +1,5 @@
import { gql } from '@apollo/client';
import * as Apollo from '@apollo/client';
import { gql } from '@apollo/client';
export type Maybe<T> = T | null;
export type InputMaybe<T> = Maybe<T>;
export type Exact<T extends { [key: string]: unknown }> = { [K in keyof T]: T[K] };
@@ -55,6 +55,16 @@ export type Analytics = {
success: Scalars['Boolean'];
};
export type AnalyticsTinybirdJwtMap = {
__typename?: 'AnalyticsTinybirdJwtMap';
getPageviewsAnalytics: Scalars['String'];
getServerlessFunctionDuration: Scalars['String'];
getServerlessFunctionErrorCount: Scalars['String'];
getServerlessFunctionSuccessRate: Scalars['String'];
getUsersAnalytics: Scalars['String'];
getWebhookAnalytics: Scalars['String'];
};
export type ApiConfig = {
__typename?: 'ApiConfig';
mutationMaximumAffectedRecords: Scalars['Float'];
@@ -437,7 +447,6 @@ export type EnvironmentVariable = {
};
export enum EnvironmentVariablesGroup {
AnalyticsConfig = 'AnalyticsConfig',
BillingConfig = 'BillingConfig',
CaptchaConfig = 'CaptchaConfig',
CloudflareConfig = 'CloudflareConfig',
@@ -454,6 +463,7 @@ export enum EnvironmentVariablesGroup {
ServerlessConfig = 'ServerlessConfig',
StorageConfig = 'StorageConfig',
SupportChatConfig = 'SupportChatConfig',
TinybirdConfig = 'TinybirdConfig',
TokensDuration = 'TokensDuration'
}
@@ -497,6 +507,7 @@ export enum FeatureFlagKey {
IsEventObjectEnabled = 'IsEventObjectEnabled',
IsJsonFilterEnabled = 'IsJsonFilterEnabled',
IsNewRelationEnabled = 'IsNewRelationEnabled',
IsPermissionsEnabled = 'IsPermissionsEnabled',
IsPermissionsV2Enabled = 'IsPermissionsV2Enabled',
IsPostgreSQLIntegrationEnabled = 'IsPostgreSQLIntegrationEnabled',
IsStripeIntegrationEnabled = 'IsStripeIntegrationEnabled',
@@ -526,7 +537,6 @@ export type Field = {
relation?: Maybe<Relation>;
relationDefinition?: Maybe<RelationDefinition>;
settings?: Maybe<Scalars['JSON']>;
standardOverrides?: Maybe<StandardOverrides>;
toRelationMetadata?: Maybe<RelationMetadata>;
type: FieldMetadataType;
updatedAt: Scalars['DateTime'];
@@ -633,6 +643,16 @@ export type GetServerlessFunctionSourceCodeInput = {
version?: Scalars['String'];
};
export type GlobalSearchRecord = {
__typename?: 'GlobalSearchRecord';
imageUrl?: Maybe<Scalars['String']>;
label: Scalars['String'];
objectSingularName: Scalars['String'];
recordId: Scalars['String'];
tsRank: Scalars['Float'];
tsRankCD: Scalars['Float'];
};
export enum HealthIndicatorId {
app = 'app',
connectedAccount = 'connectedAccount',
@@ -811,7 +831,6 @@ export type Mutation = {
deleteCurrentWorkspace: Workspace;
deleteOneField: Field;
deleteOneObject: Object;
deleteOneRole: Scalars['String'];
deleteOneServerlessFunction: ServerlessFunction;
deleteSSOIdentityProvider: DeleteSsoOutput;
deleteUser: User;
@@ -847,7 +866,6 @@ export type Mutation = {
updateOneRole: Role;
updateOneServerlessFunction: ServerlessFunction;
updatePasswordViaResetToken: InvalidatePassword;
updateWorkflowRunStep: WorkflowAction;
updateWorkflowVersionStep: WorkflowAction;
updateWorkspace: Workspace;
updateWorkspaceFeatureFlag: Scalars['Boolean'];
@@ -856,8 +874,6 @@ export type Mutation = {
uploadImage: Scalars['String'];
uploadProfilePicture: Scalars['String'];
uploadWorkspaceLogo: Scalars['String'];
upsertOneObjectPermission: ObjectPermission;
upsertOneSettingPermission: SettingPermission;
userLookupAdminPanel: UserLookup;
validateApprovedAccessDomain: ApprovedAccessDomain;
};
@@ -953,11 +969,6 @@ export type MutationDeleteOneObjectArgs = {
};
export type MutationDeleteOneRoleArgs = {
roleId: Scalars['String'];
};
export type MutationDeleteOneServerlessFunctionArgs = {
input: ServerlessFunctionIdInput;
};
@@ -1112,11 +1123,6 @@ export type MutationUpdatePasswordViaResetTokenArgs = {
};
export type MutationUpdateWorkflowRunStepArgs = {
input: UpdateWorkflowRunStepInput;
};
export type MutationUpdateWorkflowVersionStepArgs = {
input: UpdateWorkflowVersionStepInput;
};
@@ -1162,16 +1168,6 @@ export type MutationUploadWorkspaceLogoArgs = {
};
export type MutationUpsertOneObjectPermissionArgs = {
upsertObjectPermissionInput: UpsertObjectPermissionInput;
};
export type MutationUpsertOneSettingPermissionArgs = {
upsertSettingPermissionInput: UpsertSettingPermissionInput;
};
export type MutationUserLookupAdminPanelArgs = {
userIdentifier: Scalars['String'];
};
@@ -1205,7 +1201,6 @@ export type Object = {
namePlural: Scalars['String'];
nameSingular: Scalars['String'];
shortcut?: Maybe<Scalars['String']>;
standardOverrides?: Maybe<ObjectStandardOverrides>;
updatedAt: Scalars['DateTime'];
};
@@ -1264,17 +1259,6 @@ export type ObjectIndexMetadatasConnection = {
pageInfo: PageInfo;
};
export type ObjectPermission = {
__typename?: 'ObjectPermission';
canDestroyObjectRecords?: Maybe<Scalars['Boolean']>;
canReadObjectRecords?: Maybe<Scalars['Boolean']>;
canSoftDeleteObjectRecords?: Maybe<Scalars['Boolean']>;
canUpdateObjectRecords?: Maybe<Scalars['Boolean']>;
id: Scalars['String'];
objectMetadataId: Scalars['String'];
roleId: Scalars['String'];
};
export type ObjectRecordFilterInput = {
and?: InputMaybe<Array<ObjectRecordFilterInput>>;
createdAt?: InputMaybe<DateFilter>;
@@ -1285,15 +1269,6 @@ export type ObjectRecordFilterInput = {
updatedAt?: InputMaybe<DateFilter>;
};
export type ObjectStandardOverrides = {
__typename?: 'ObjectStandardOverrides';
description?: Maybe<Scalars['String']>;
icon?: Maybe<Scalars['String']>;
labelPlural?: Maybe<Scalars['String']>;
labelSingular?: Maybe<Scalars['String']>;
translations?: Maybe<Scalars['JSON']>;
};
/** Onboarding status */
export enum OnboardingStatus {
COMPLETED = 'COMPLETED',
@@ -1393,12 +1368,12 @@ export type Query = {
getTimelineCalendarEventsFromPersonId: TimelineCalendarEventsWithTotal;
getTimelineThreadsFromCompanyId: TimelineThreadsWithTotal;
getTimelineThreadsFromPersonId: TimelineThreadsWithTotal;
globalSearch: Array<GlobalSearchRecord>;
index: Index;
indexMetadatas: IndexConnection;
object: Object;
objects: ObjectConnection;
plans: Array<BillingPlanOutput>;
search: Array<SearchRecord>;
validatePasswordResetToken: ValidatePasswordResetToken;
};
@@ -1478,7 +1453,7 @@ export type QueryGetTimelineThreadsFromPersonIdArgs = {
};
export type QuerySearchArgs = {
export type QueryGlobalSearchArgs = {
excludedObjectNameSingulars?: InputMaybe<Array<Scalars['String']>>;
filter?: InputMaybe<ObjectRecordFilterInput>;
includedObjectNameSingulars?: InputMaybe<Array<Scalars['String']>>;
@@ -1671,16 +1646,6 @@ export enum SsoIdentityProviderStatus {
Inactive = 'Inactive'
}
export type SearchRecord = {
__typename?: 'SearchRecord';
imageUrl?: Maybe<Scalars['String']>;
label: Scalars['String'];
objectNameSingular: Scalars['String'];
recordId: Scalars['String'];
tsRank: Scalars['Float'];
tsRankCD: Scalars['Float'];
};
export type SendInvitationsOutput = {
__typename?: 'SendInvitationsOutput';
errors: Array<Scalars['String']>;
@@ -1744,15 +1709,7 @@ export enum ServerlessFunctionSyncStatus {
READY = 'READY'
}
export type SettingPermission = {
__typename?: 'SettingPermission';
canUpdateSetting?: Maybe<Scalars['Boolean']>;
id: Scalars['String'];
roleId: Scalars['String'];
setting: SettingPermissionType;
};
export enum SettingPermissionType {
export enum SettingsPermissions {
ADMIN_PANEL = 'ADMIN_PANEL',
API_KEYS_AND_WEBHOOKS = 'API_KEYS_AND_WEBHOOKS',
DATA_MODEL = 'DATA_MODEL',
@@ -1793,14 +1750,6 @@ export type SignUpOutput = {
workspace: WorkspaceUrlsAndId;
};
export type StandardOverrides = {
__typename?: 'StandardOverrides';
description?: Maybe<Scalars['String']>;
icon?: Maybe<Scalars['String']>;
label?: Maybe<Scalars['String']>;
translations?: Maybe<Scalars['JSON']>;
};
export type SubmitFormStepInput = {
/** Form response in JSON format */
response: Scalars['JSON'];
@@ -2005,13 +1954,6 @@ export type UpdateServerlessFunctionInput = {
timeoutSeconds?: InputMaybe<Scalars['Float']>;
};
export type UpdateWorkflowRunStepInput = {
/** Step to update in JSON format */
step: Scalars['JSON'];
/** Workflow run ID */
workflowRunId: Scalars['String'];
};
export type UpdateWorkflowVersionStepInput = {
/** Step to update in JSON format */
step: Scalars['JSON'];
@@ -2033,23 +1975,9 @@ export type UpdateWorkspaceInput = {
subdomain?: InputMaybe<Scalars['String']>;
};
export type UpsertObjectPermissionInput = {
canDestroyObjectRecords?: InputMaybe<Scalars['Boolean']>;
canReadObjectRecords?: InputMaybe<Scalars['Boolean']>;
canSoftDeleteObjectRecords?: InputMaybe<Scalars['Boolean']>;
canUpdateObjectRecords?: InputMaybe<Scalars['Boolean']>;
objectMetadataId: Scalars['String'];
roleId: Scalars['String'];
};
export type UpsertSettingPermissionInput = {
canUpdateSetting?: InputMaybe<Scalars['Boolean']>;
roleId: Scalars['String'];
setting: SettingPermissionType;
};
export type User = {
__typename?: 'User';
analyticsTinybirdJwts?: Maybe<AnalyticsTinybirdJwtMap>;
canAccessFullAdminPanel: Scalars['Boolean'];
canImpersonate: Scalars['Boolean'];
createdAt: Scalars['DateTime'];
@@ -2121,7 +2049,7 @@ export type UserWorkspace = {
deletedAt?: Maybe<Scalars['DateTime']>;
id: Scalars['UUID'];
objectRecordsPermissions?: Maybe<Array<PermissionsOnAllObjectRecords>>;
settingsPermissions?: Maybe<Array<SettingPermissionType>>;
settingsPermissions?: Maybe<Array<SettingsPermissions>>;
updatedAt: Scalars['DateTime'];
user: User;
userId: Scalars['String'];
@@ -2528,7 +2456,7 @@ export type GetClientConfigQueryVariables = Exact<{ [key: string]: never; }>;
export type GetClientConfigQuery = { __typename?: 'Query', clientConfig: { __typename?: 'ClientConfig', signInPrefilled: boolean, isMultiWorkspaceEnabled: boolean, isEmailVerificationRequired: boolean, defaultSubdomain?: string | null, frontDomain: string, debugMode: boolean, analyticsEnabled: boolean, isAttachmentPreviewEnabled: boolean, chromeExtensionId?: string | null, canManageFeatureFlags: boolean, isMicrosoftMessagingEnabled: boolean, isMicrosoftCalendarEnabled: boolean, isGoogleMessagingEnabled: boolean, isGoogleCalendarEnabled: boolean, billing: { __typename?: 'Billing', isBillingEnabled: boolean, billingUrl?: string | null, trialPeriods: Array<{ __typename?: 'BillingTrialPeriodDTO', duration: number, isCreditCardRequired: boolean }> }, authProviders: { __typename?: 'AuthProviders', google: boolean, password: boolean, microsoft: boolean, sso: Array<{ __typename?: 'SSOIdentityProvider', id: string, name: string, type: IdentityProviderType, status: SsoIdentityProviderStatus, issuer: string }> }, support: { __typename?: 'Support', supportDriver: string, supportFrontChatId?: string | null }, sentry: { __typename?: 'Sentry', dsn?: string | null, environment?: string | null, release?: string | null }, captcha: { __typename?: 'Captcha', provider?: CaptchaDriverType | null, siteKey?: string | null }, api: { __typename?: 'ApiConfig', mutationMaximumAffectedRecords: number }, publicFeatureFlags: Array<{ __typename?: 'PublicFeatureFlag', key: FeatureFlagKey, metadata: { __typename?: 'PublicFeatureFlagMetadata', label: string, description: string, imagePath: string } }> } };
export type SearchQueryVariables = Exact<{
export type GlobalSearchQueryVariables = Exact<{
searchInput: Scalars['String'];
limit: Scalars['Int'];
excludedObjectNameSingulars?: InputMaybe<Array<Scalars['String']> | Scalars['String']>;
@@ -2537,7 +2465,7 @@ export type SearchQueryVariables = Exact<{
}>;
export type SearchQuery = { __typename?: 'Query', search: Array<{ __typename?: 'SearchRecord', recordId: string, objectNameSingular: string, label: string, imageUrl?: string | null, tsRankCD: number, tsRank: number }> };
export type GlobalSearchQuery = { __typename?: 'Query', globalSearch: Array<{ __typename?: 'GlobalSearchRecord', recordId: string, objectSingularName: string, label: string, imageUrl?: string | null, tsRankCD: number, tsRank: number }> };
export type SkipSyncEmailOnboardingStepMutationVariables = Exact<{ [key: string]: never; }>;
@@ -2666,7 +2594,7 @@ export type GetSsoIdentityProvidersQueryVariables = Exact<{ [key: string]: never
export type GetSsoIdentityProvidersQuery = { __typename?: 'Query', getSSOIdentityProviders: Array<{ __typename?: 'FindAvailableSSOIDPOutput', type: IdentityProviderType, id: string, name: string, issuer: string, status: SsoIdentityProviderStatus }> };
export type UserQueryFragmentFragment = { __typename?: 'User', id: any, firstName: string, lastName: string, email: string, canAccessFullAdminPanel: boolean, canImpersonate: boolean, supportUserHash?: string | null, onboardingStatus?: OnboardingStatus | null, userVars: any, workspaceMember?: { __typename?: 'WorkspaceMember', id: any, colorScheme: string, avatarUrl?: string | null, locale?: string | null, userEmail: string, timeZone?: string | null, dateFormat?: WorkspaceMemberDateFormatEnum | null, timeFormat?: WorkspaceMemberTimeFormatEnum | null, name: { __typename?: 'FullName', firstName: string, lastName: string } } | null, workspaceMembers?: Array<{ __typename?: 'WorkspaceMember', id: any, colorScheme: string, avatarUrl?: string | null, locale?: string | null, userEmail: string, timeZone?: string | null, dateFormat?: WorkspaceMemberDateFormatEnum | null, timeFormat?: WorkspaceMemberTimeFormatEnum | null, name: { __typename?: 'FullName', firstName: string, lastName: string } }> | null, currentUserWorkspace?: { __typename?: 'UserWorkspace', settingsPermissions?: Array<SettingPermissionType> | null, objectRecordsPermissions?: Array<PermissionsOnAllObjectRecords> | null } | null, currentWorkspace?: { __typename?: 'Workspace', id: any, displayName?: string | null, logo?: string | null, inviteHash?: string | null, allowImpersonation: boolean, activationStatus: WorkspaceActivationStatus, isPublicInviteLinkEnabled: boolean, isGoogleAuthEnabled: boolean, isMicrosoftAuthEnabled: boolean, isPasswordAuthEnabled: boolean, subdomain: string, hasValidEnterpriseKey: boolean, customDomain?: string | null, isCustomDomainEnabled: boolean, metadataVersion: number, workspaceMembersCount?: number | null, workspaceUrls: { __typename?: 'workspaceUrls', subdomainUrl: string, customUrl?: string | null }, featureFlags?: Array<{ __typename?: 'FeatureFlag', id: any, key: FeatureFlagKey, value: boolean, workspaceId: string }> | null, currentBillingSubscription?: { __typename?: 'BillingSubscription', id: any, status: SubscriptionStatus, interval?: SubscriptionInterval | null } | null, billingSubscriptions: Array<{ __typename?: 'BillingSubscription', id: any, status: SubscriptionStatus }>, defaultRole?: { __typename?: 'Role', id: string, label: string, description?: string | null, icon?: string | null, canUpdateAllSettings: boolean, isEditable: boolean, canReadAllObjectRecords: boolean, canUpdateAllObjectRecords: boolean, canSoftDeleteAllObjectRecords: boolean, canDestroyAllObjectRecords: boolean } | null } | null, workspaces: Array<{ __typename?: 'UserWorkspace', workspace?: { __typename?: 'Workspace', id: any, logo?: string | null, displayName?: string | null, subdomain: string, customDomain?: string | null, workspaceUrls: { __typename?: 'workspaceUrls', subdomainUrl: string, customUrl?: string | null } } | null }> };
export type UserQueryFragmentFragment = { __typename?: 'User', id: any, firstName: string, lastName: string, email: string, canAccessFullAdminPanel: boolean, canImpersonate: boolean, supportUserHash?: string | null, onboardingStatus?: OnboardingStatus | null, userVars: any, analyticsTinybirdJwts?: { __typename?: 'AnalyticsTinybirdJwtMap', getWebhookAnalytics: string, getPageviewsAnalytics: string, getUsersAnalytics: string, getServerlessFunctionDuration: string, getServerlessFunctionSuccessRate: string, getServerlessFunctionErrorCount: string } | null, workspaceMember?: { __typename?: 'WorkspaceMember', id: any, colorScheme: string, avatarUrl?: string | null, locale?: string | null, userEmail: string, timeZone?: string | null, dateFormat?: WorkspaceMemberDateFormatEnum | null, timeFormat?: WorkspaceMemberTimeFormatEnum | null, name: { __typename?: 'FullName', firstName: string, lastName: string } } | null, workspaceMembers?: Array<{ __typename?: 'WorkspaceMember', id: any, colorScheme: string, avatarUrl?: string | null, locale?: string | null, userEmail: string, timeZone?: string | null, dateFormat?: WorkspaceMemberDateFormatEnum | null, timeFormat?: WorkspaceMemberTimeFormatEnum | null, name: { __typename?: 'FullName', firstName: string, lastName: string } }> | null, currentUserWorkspace?: { __typename?: 'UserWorkspace', settingsPermissions?: Array<SettingsPermissions> | null, objectRecordsPermissions?: Array<PermissionsOnAllObjectRecords> | null } | null, currentWorkspace?: { __typename?: 'Workspace', id: any, displayName?: string | null, logo?: string | null, inviteHash?: string | null, allowImpersonation: boolean, activationStatus: WorkspaceActivationStatus, isPublicInviteLinkEnabled: boolean, isGoogleAuthEnabled: boolean, isMicrosoftAuthEnabled: boolean, isPasswordAuthEnabled: boolean, subdomain: string, hasValidEnterpriseKey: boolean, customDomain?: string | null, isCustomDomainEnabled: boolean, metadataVersion: number, workspaceMembersCount?: number | null, workspaceUrls: { __typename?: 'workspaceUrls', subdomainUrl: string, customUrl?: string | null }, featureFlags?: Array<{ __typename?: 'FeatureFlag', id: any, key: FeatureFlagKey, value: boolean, workspaceId: string }> | null, currentBillingSubscription?: { __typename?: 'BillingSubscription', id: any, status: SubscriptionStatus, interval?: SubscriptionInterval | null } | null, billingSubscriptions: Array<{ __typename?: 'BillingSubscription', id: any, status: SubscriptionStatus }>, defaultRole?: { __typename?: 'Role', id: string, label: string, description?: string | null, icon?: string | null, canUpdateAllSettings: boolean, isEditable: boolean, canReadAllObjectRecords: boolean, canUpdateAllObjectRecords: boolean, canSoftDeleteAllObjectRecords: boolean, canDestroyAllObjectRecords: boolean } | null } | null, workspaces: Array<{ __typename?: 'UserWorkspace', workspace?: { __typename?: 'Workspace', id: any, logo?: string | null, displayName?: string | null, subdomain: string, customDomain?: string | null, workspaceUrls: { __typename?: 'workspaceUrls', subdomainUrl: string, customUrl?: string | null } } | null }> };
export type DeleteUserAccountMutationVariables = Exact<{ [key: string]: never; }>;
@@ -2683,7 +2611,7 @@ export type UploadProfilePictureMutation = { __typename?: 'Mutation', uploadProf
export type GetCurrentUserQueryVariables = Exact<{ [key: string]: never; }>;
export type GetCurrentUserQuery = { __typename?: 'Query', currentUser: { __typename?: 'User', id: any, firstName: string, lastName: string, email: string, canAccessFullAdminPanel: boolean, canImpersonate: boolean, supportUserHash?: string | null, onboardingStatus?: OnboardingStatus | null, userVars: any, workspaceMember?: { __typename?: 'WorkspaceMember', id: any, colorScheme: string, avatarUrl?: string | null, locale?: string | null, userEmail: string, timeZone?: string | null, dateFormat?: WorkspaceMemberDateFormatEnum | null, timeFormat?: WorkspaceMemberTimeFormatEnum | null, name: { __typename?: 'FullName', firstName: string, lastName: string } } | null, workspaceMembers?: Array<{ __typename?: 'WorkspaceMember', id: any, colorScheme: string, avatarUrl?: string | null, locale?: string | null, userEmail: string, timeZone?: string | null, dateFormat?: WorkspaceMemberDateFormatEnum | null, timeFormat?: WorkspaceMemberTimeFormatEnum | null, name: { __typename?: 'FullName', firstName: string, lastName: string } }> | null, currentUserWorkspace?: { __typename?: 'UserWorkspace', settingsPermissions?: Array<SettingPermissionType> | null, objectRecordsPermissions?: Array<PermissionsOnAllObjectRecords> | null } | null, currentWorkspace?: { __typename?: 'Workspace', id: any, displayName?: string | null, logo?: string | null, inviteHash?: string | null, allowImpersonation: boolean, activationStatus: WorkspaceActivationStatus, isPublicInviteLinkEnabled: boolean, isGoogleAuthEnabled: boolean, isMicrosoftAuthEnabled: boolean, isPasswordAuthEnabled: boolean, subdomain: string, hasValidEnterpriseKey: boolean, customDomain?: string | null, isCustomDomainEnabled: boolean, metadataVersion: number, workspaceMembersCount?: number | null, workspaceUrls: { __typename?: 'workspaceUrls', subdomainUrl: string, customUrl?: string | null }, featureFlags?: Array<{ __typename?: 'FeatureFlag', id: any, key: FeatureFlagKey, value: boolean, workspaceId: string }> | null, currentBillingSubscription?: { __typename?: 'BillingSubscription', id: any, status: SubscriptionStatus, interval?: SubscriptionInterval | null } | null, billingSubscriptions: Array<{ __typename?: 'BillingSubscription', id: any, status: SubscriptionStatus }>, defaultRole?: { __typename?: 'Role', id: string, label: string, description?: string | null, icon?: string | null, canUpdateAllSettings: boolean, isEditable: boolean, canReadAllObjectRecords: boolean, canUpdateAllObjectRecords: boolean, canSoftDeleteAllObjectRecords: boolean, canDestroyAllObjectRecords: boolean } | null } | null, workspaces: Array<{ __typename?: 'UserWorkspace', workspace?: { __typename?: 'Workspace', id: any, logo?: string | null, displayName?: string | null, subdomain: string, customDomain?: string | null, workspaceUrls: { __typename?: 'workspaceUrls', subdomainUrl: string, customUrl?: string | null } } | null }> } };
export type GetCurrentUserQuery = { __typename?: 'Query', currentUser: { __typename?: 'User', id: any, firstName: string, lastName: string, email: string, canAccessFullAdminPanel: boolean, canImpersonate: boolean, supportUserHash?: string | null, onboardingStatus?: OnboardingStatus | null, userVars: any, analyticsTinybirdJwts?: { __typename?: 'AnalyticsTinybirdJwtMap', getWebhookAnalytics: string, getPageviewsAnalytics: string, getUsersAnalytics: string, getServerlessFunctionDuration: string, getServerlessFunctionSuccessRate: string, getServerlessFunctionErrorCount: string } | null, workspaceMember?: { __typename?: 'WorkspaceMember', id: any, colorScheme: string, avatarUrl?: string | null, locale?: string | null, userEmail: string, timeZone?: string | null, dateFormat?: WorkspaceMemberDateFormatEnum | null, timeFormat?: WorkspaceMemberTimeFormatEnum | null, name: { __typename?: 'FullName', firstName: string, lastName: string } } | null, workspaceMembers?: Array<{ __typename?: 'WorkspaceMember', id: any, colorScheme: string, avatarUrl?: string | null, locale?: string | null, userEmail: string, timeZone?: string | null, dateFormat?: WorkspaceMemberDateFormatEnum | null, timeFormat?: WorkspaceMemberTimeFormatEnum | null, name: { __typename?: 'FullName', firstName: string, lastName: string } }> | null, currentUserWorkspace?: { __typename?: 'UserWorkspace', settingsPermissions?: Array<SettingsPermissions> | null, objectRecordsPermissions?: Array<PermissionsOnAllObjectRecords> | null } | null, currentWorkspace?: { __typename?: 'Workspace', id: any, displayName?: string | null, logo?: string | null, inviteHash?: string | null, allowImpersonation: boolean, activationStatus: WorkspaceActivationStatus, isPublicInviteLinkEnabled: boolean, isGoogleAuthEnabled: boolean, isMicrosoftAuthEnabled: boolean, isPasswordAuthEnabled: boolean, subdomain: string, hasValidEnterpriseKey: boolean, customDomain?: string | null, isCustomDomainEnabled: boolean, metadataVersion: number, workspaceMembersCount?: number | null, workspaceUrls: { __typename?: 'workspaceUrls', subdomainUrl: string, customUrl?: string | null }, featureFlags?: Array<{ __typename?: 'FeatureFlag', id: any, key: FeatureFlagKey, value: boolean, workspaceId: string }> | null, currentBillingSubscription?: { __typename?: 'BillingSubscription', id: any, status: SubscriptionStatus, interval?: SubscriptionInterval | null } | null, billingSubscriptions: Array<{ __typename?: 'BillingSubscription', id: any, status: SubscriptionStatus }>, defaultRole?: { __typename?: 'Role', id: string, label: string, description?: string | null, icon?: string | null, canUpdateAllSettings: boolean, isEditable: boolean, canReadAllObjectRecords: boolean, canUpdateAllObjectRecords: boolean, canSoftDeleteAllObjectRecords: boolean, canDestroyAllObjectRecords: boolean } | null } | null, workspaces: Array<{ __typename?: 'UserWorkspace', workspace?: { __typename?: 'Workspace', id: any, logo?: string | null, displayName?: string | null, subdomain: string, customDomain?: string | null, workspaceUrls: { __typename?: 'workspaceUrls', subdomainUrl: string, customUrl?: string | null } } | null }> } };
export type ActivateWorkflowVersionMutationVariables = Exact<{
workflowVersionId: Scalars['String'];
@@ -2734,13 +2662,6 @@ export type RunWorkflowVersionMutationVariables = Exact<{
export type RunWorkflowVersionMutation = { __typename?: 'Mutation', runWorkflowVersion: { __typename?: 'WorkflowRun', workflowRunId: any } };
export type UpdateWorkflowRunStepMutationVariables = Exact<{
input: UpdateWorkflowRunStepInput;
}>;
export type UpdateWorkflowRunStepMutation = { __typename?: 'Mutation', updateWorkflowRunStep: { __typename?: 'WorkflowAction', id: any, name: string, type: string, settings: any, valid: boolean } };
export type UpdateWorkflowVersionStepMutationVariables = Exact<{
input: UpdateWorkflowVersionStepInput;
}>;
@@ -2959,6 +2880,14 @@ export const UserQueryFragmentFragmentDoc = gql`
canAccessFullAdminPanel
canImpersonate
supportUserHash
analyticsTinybirdJwts {
getWebhookAnalytics
getPageviewsAnalytics
getUsersAnalytics
getServerlessFunctionDuration
getServerlessFunctionSuccessRate
getServerlessFunctionErrorCount
}
onboardingStatus
workspaceMember {
...WorkspaceMemberQueryFragment
@@ -4216,9 +4145,9 @@ export function useGetClientConfigLazyQuery(baseOptions?: Apollo.LazyQueryHookOp
export type GetClientConfigQueryHookResult = ReturnType<typeof useGetClientConfigQuery>;
export type GetClientConfigLazyQueryHookResult = ReturnType<typeof useGetClientConfigLazyQuery>;
export type GetClientConfigQueryResult = Apollo.QueryResult<GetClientConfigQuery, GetClientConfigQueryVariables>;
export const SearchDocument = gql`
query Search($searchInput: String!, $limit: Int!, $excludedObjectNameSingulars: [String!], $includedObjectNameSingulars: [String!], $filter: ObjectRecordFilterInput) {
search(
export const GlobalSearchDocument = gql`
query GlobalSearch($searchInput: String!, $limit: Int!, $excludedObjectNameSingulars: [String!], $includedObjectNameSingulars: [String!], $filter: ObjectRecordFilterInput) {
globalSearch(
searchInput: $searchInput
limit: $limit
excludedObjectNameSingulars: $excludedObjectNameSingulars
@@ -4226,7 +4155,7 @@ export const SearchDocument = gql`
filter: $filter
) {
recordId
objectNameSingular
objectSingularName
label
imageUrl
tsRankCD
@@ -4236,16 +4165,16 @@ export const SearchDocument = gql`
`;
/**
* __useSearchQuery__
* __useGlobalSearchQuery__
*
* To run a query within a React component, call `useSearchQuery` and pass it any options that fit your needs.
* When your component renders, `useSearchQuery` returns an object from Apollo Client that contains loading, error, and data properties
* To run a query within a React component, call `useGlobalSearchQuery` and pass it any options that fit your needs.
* When your component renders, `useGlobalSearchQuery` returns an object from Apollo Client that contains loading, error, and data properties
* you can use to render your UI.
*
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
*
* @example
* const { data, loading, error } = useSearchQuery({
* const { data, loading, error } = useGlobalSearchQuery({
* variables: {
* searchInput: // value for 'searchInput'
* limit: // value for 'limit'
@@ -4255,17 +4184,17 @@ export const SearchDocument = gql`
* },
* });
*/
export function useSearchQuery(baseOptions: Apollo.QueryHookOptions<SearchQuery, SearchQueryVariables>) {
export function useGlobalSearchQuery(baseOptions: Apollo.QueryHookOptions<GlobalSearchQuery, GlobalSearchQueryVariables>) {
const options = {...defaultOptions, ...baseOptions}
return Apollo.useQuery<SearchQuery, SearchQueryVariables>(SearchDocument, options);
return Apollo.useQuery<GlobalSearchQuery, GlobalSearchQueryVariables>(GlobalSearchDocument, options);
}
export function useSearchLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<SearchQuery, SearchQueryVariables>) {
export function useGlobalSearchLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GlobalSearchQuery, GlobalSearchQueryVariables>) {
const options = {...defaultOptions, ...baseOptions}
return Apollo.useLazyQuery<SearchQuery, SearchQueryVariables>(SearchDocument, options);
return Apollo.useLazyQuery<GlobalSearchQuery, GlobalSearchQueryVariables>(GlobalSearchDocument, options);
}
export type SearchQueryHookResult = ReturnType<typeof useSearchQuery>;
export type SearchLazyQueryHookResult = ReturnType<typeof useSearchLazyQuery>;
export type SearchQueryResult = Apollo.QueryResult<SearchQuery, SearchQueryVariables>;
export type GlobalSearchQueryHookResult = ReturnType<typeof useGlobalSearchQuery>;
export type GlobalSearchLazyQueryHookResult = ReturnType<typeof useGlobalSearchLazyQuery>;
export type GlobalSearchQueryResult = Apollo.QueryResult<GlobalSearchQuery, GlobalSearchQueryVariables>;
export const SkipSyncEmailOnboardingStepDocument = gql`
mutation SkipSyncEmailOnboardingStep {
skipSyncEmailOnboardingStep {
@@ -5336,43 +5265,6 @@ export function useRunWorkflowVersionMutation(baseOptions?: Apollo.MutationHookO
export type RunWorkflowVersionMutationHookResult = ReturnType<typeof useRunWorkflowVersionMutation>;
export type RunWorkflowVersionMutationResult = Apollo.MutationResult<RunWorkflowVersionMutation>;
export type RunWorkflowVersionMutationOptions = Apollo.BaseMutationOptions<RunWorkflowVersionMutation, RunWorkflowVersionMutationVariables>;
export const UpdateWorkflowRunStepDocument = gql`
mutation UpdateWorkflowRunStep($input: UpdateWorkflowRunStepInput!) {
updateWorkflowRunStep(input: $input) {
id
name
type
settings
valid
}
}
`;
export type UpdateWorkflowRunStepMutationFn = Apollo.MutationFunction<UpdateWorkflowRunStepMutation, UpdateWorkflowRunStepMutationVariables>;
/**
* __useUpdateWorkflowRunStepMutation__
*
* To run a mutation, you first call `useUpdateWorkflowRunStepMutation` within a React component and pass it any options that fit your needs.
* When your component renders, `useUpdateWorkflowRunStepMutation` returns a tuple that includes:
* - A mutate function that you can call at any time to execute the mutation
* - An object with fields that represent the current status of the mutation's execution
*
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
*
* @example
* const [updateWorkflowRunStepMutation, { data, loading, error }] = useUpdateWorkflowRunStepMutation({
* variables: {
* input: // value for 'input'
* },
* });
*/
export function useUpdateWorkflowRunStepMutation(baseOptions?: Apollo.MutationHookOptions<UpdateWorkflowRunStepMutation, UpdateWorkflowRunStepMutationVariables>) {
const options = {...defaultOptions, ...baseOptions}
return Apollo.useMutation<UpdateWorkflowRunStepMutation, UpdateWorkflowRunStepMutationVariables>(UpdateWorkflowRunStepDocument, options);
}
export type UpdateWorkflowRunStepMutationHookResult = ReturnType<typeof useUpdateWorkflowRunStepMutation>;
export type UpdateWorkflowRunStepMutationResult = Apollo.MutationResult<UpdateWorkflowRunStepMutation>;
export type UpdateWorkflowRunStepMutationOptions = Apollo.BaseMutationOptions<UpdateWorkflowRunStepMutation, UpdateWorkflowRunStepMutationVariables>;
export const UpdateWorkflowVersionStepDocument = gql`
mutation UpdateWorkflowVersionStep($input: UpdateWorkflowVersionStepInput!) {
updateWorkflowVersionStep(input: $input) {
@@ -2,7 +2,7 @@ import { matchPath, useLocation } from 'react-router-dom';
import { AppBasePath } from '@/types/AppBasePath';
import { isNonEmptyString } from '@sniptt/guards';
import { isDefined } from 'twenty-shared/utils';
import { isDefined } from 'twenty-shared';
export const useIsMatchingLocation = () => {
const location = useLocation();
@@ -7,10 +7,9 @@ import { SettingsPath } from '@/types/SettingsPath';
import { useIsWorkspaceActivationStatusEqualsTo } from '@/workspace/hooks/useIsWorkspaceActivationStatusEqualsTo';
import { useParams } from 'react-router-dom';
import { useRecoilValue } from 'recoil';
import { WorkspaceActivationStatus, isDefined } from 'twenty-shared';
import { OnboardingStatus } from '~/generated/graphql';
import { useIsMatchingLocation } from '~/hooks/useIsMatchingLocation';
import { WorkspaceActivationStatus } from 'twenty-shared/workspace';
import { isDefined } from 'twenty-shared/utils';
export const usePageChangeEffectNavigateLocation = () => {
const { isMatchingLocation } = useIsMatchingLocation();
@@ -5,7 +5,7 @@ import { scrollWrapperInstanceComponentState } from '@/ui/utilities/scroll/state
import { scrollWrapperScrollTopComponentState } from '@/ui/utilities/scroll/states/scrollWrapperScrollTopComponentState';
import { useRecoilComponentStateV2 } from '@/ui/utilities/state/component-state/hooks/useRecoilComponentStateV2';
import { useRecoilComponentValueV2 } from '@/ui/utilities/state/component-state/hooks/useRecoilComponentValueV2';
import { isDefined } from 'twenty-shared/utils';
import { isDefined } from 'twenty-shared';
/**
* @deprecated We should now use useScrollToPosition instead
+10 -132
View File
@@ -87,11 +87,6 @@ msgstr "crwdns45:0{aggregateLabel}crwdnd45:0{fieldLabel}crwdne45:0"
msgid "{apiKeyName} API Key"
msgstr "crwdns47:0{apiKeyName}crwdne47:0"
#. js-lingui-id: zi5SHH
#: src/modules/object-record/record-index/components/RecordIndexPageHeader.tsx
msgid "{contextStoreNumberOfSelectedRecords} selected"
msgstr "crwdns5630:0{contextStoreNumberOfSelectedRecords}crwdne5630:0"
#. js-lingui-id: 6j5rE1
#: src/modules/action-menu/actions/record-agnostic-actions/run-workflow-actions/hooks/useRunWorkflowActions.tsx
#: src/modules/action-menu/actions/record-actions/workflow-run-record-actions/hooks/useWorkflowRunRecordActions.tsx
@@ -105,8 +100,8 @@ msgstr "crwdns1783:0{workspaceMemberName}crwdne1783:0"
#. js-lingui-id: YT0WJ4
#: src/pages/onboarding/ChooseYourPlan.tsx
#~ msgid "1 000 workflow node executions"
#~ msgstr "1 000 workflow node executions"
msgid "1 000 workflow node executions"
msgstr "crwdns51:0crwdne51:0"
#. js-lingui-id: vb5TwV
#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldSelect.tsx
@@ -119,11 +114,6 @@ msgstr "crwdns4999:0crwdne4999:0"
msgid "1. Type"
msgstr "crwdns5001:0crwdne5001:0"
#. js-lingui-id: AvXug3
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "10 000 workflow node executions"
msgstr "crwdns5590:0crwdne5590:0"
#. js-lingui-id: 4EdXYs
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "12h ({hour12Label})"
@@ -140,11 +130,6 @@ msgstr "crwdns5003:0crwdne5003:0"
msgid "2. Configure field"
msgstr "crwdns55:0crwdne55:0"
#. js-lingui-id: kAtmAv
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "20 000 workflow node executions"
msgstr "crwdns5592:0crwdne5592:0"
#. js-lingui-id: QsMprd
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "24h ({hour24Label})"
@@ -201,11 +186,6 @@ msgstr "crwdns67:0crwdne67:0"
msgid "Accounts"
msgstr "crwdns69:0crwdne69:0"
#. js-lingui-id: bwRvnp
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
msgid "Action"
msgstr "crwdns5594:0crwdne5594:0"
#. js-lingui-id: 7L01XJ
#: src/modules/settings/roles/role-permissions/components/RolePermissionsSettingsTableHeader.tsx
#: src/modules/settings/roles/role-permissions/components/RolePermissionsObjectsTableHeader.tsx
@@ -252,7 +232,7 @@ msgid "Add Approved Access Domain"
msgstr "crwdns4879:0crwdne4879:0"
#. js-lingui-id: DpV70M
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionForm.tsx
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
msgid "Add Field"
msgstr "crwdns81:0crwdne81:0"
@@ -453,7 +433,6 @@ msgstr "crwdns5437:0crwdne5437:0"
#. js-lingui-id: 0RqpZr
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "API & Webhooks"
msgstr "crwdns115:0crwdne115:0"
@@ -537,23 +516,13 @@ msgstr "crwdns125:0crwdne125:0"
#. js-lingui-id: 8Y3Jbl
#: src/modules/action-menu/actions/record-actions/multiple-records/hooks/useDeleteMultipleRecordsAction.tsx
#~ msgid "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
#~ msgstr "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
#. js-lingui-id: 2BZAqa
#: src/modules/action-menu/actions/record-actions/multiple-records/hooks/useDeleteMultipleRecordsAction.tsx
msgid "Are you sure you want to delete these records? They can be recovered from the Command menu."
msgstr "crwdns5596:0crwdne5596:0"
msgid "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
msgstr "crwdns5427:0{osControlSymbol}crwdne5427:0"
#. js-lingui-id: Se0vJw
#: src/modules/action-menu/actions/record-actions/single-record/hooks/useDeleteSingleRecordAction.tsx
#~ msgid "Are you sure you want to delete this record? It can be recovered from the Command menu ({osControlSymbol} + K)."
#~ msgstr "Are you sure you want to delete this record? It can be recovered from the Command menu ({osControlSymbol} + K)."
#. js-lingui-id: yb2hF4
#: src/modules/action-menu/actions/record-actions/single-record/hooks/useDeleteSingleRecordAction.tsx
msgid "Are you sure you want to delete this record? It can be recovered from the Command menu."
msgstr "crwdns5598:0crwdne5598:0"
msgid "Are you sure you want to delete this record? It can be recovered from the Command menu ({osControlSymbol} + K)."
msgstr "crwdns5429:0{osControlSymbol}crwdne5429:0"
#. js-lingui-id: nYD/Cq
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
@@ -716,11 +685,6 @@ msgstr "crwdns5549:0crwdne5549:0"
msgid "Calendars"
msgstr "crwdns161:0crwdne161:0"
#. js-lingui-id: msssZq
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "Can't change API names for standard objects"
msgstr "crwdns5600:0crwdne5600:0"
#. js-lingui-id: dEgA5A
#: src/pages/auth/Authorize.tsx
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
@@ -831,11 +795,6 @@ msgstr "crwdns185:0crwdne185:0"
msgid "Close command menu"
msgstr "crwdns4859:0crwdne4859:0"
#. js-lingui-id: EWPtMO
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
msgid "Code"
msgstr "crwdns5602:0crwdne5602:0"
#. js-lingui-id: H86f9p
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
@@ -945,7 +904,6 @@ msgstr "crwdns211:0crwdne211:0"
#. js-lingui-id: u+VWhB
#: src/pages/settings/workspace/SettingsCustomDomainRecords.tsx
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerWebhookForm.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminEnvCopyableText.tsx
msgid "Copied to clipboard!"
msgstr "crwdns4891:0crwdne4891:0"
@@ -1109,7 +1067,6 @@ msgstr "crwdns5361:0crwdne5361:0"
#. js-lingui-id: 8skTDV
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Custom objects"
msgstr "crwdns243:0crwdne243:0"
@@ -1522,7 +1479,6 @@ msgstr "crwdns319:0crwdne319:0"
#: src/pages/settings/SettingsWorkspaceMembers.tsx
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/auth/PasswordReset.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentTableHeader.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
msgid "Email"
@@ -1540,7 +1496,6 @@ msgstr "crwdns5371:0crwdne5371:0"
#. js-lingui-id: lfQsvW
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Email integration"
msgstr "crwdns323:0crwdne323:0"
@@ -1988,7 +1943,6 @@ msgstr "crwdns395:0crwdne395:0"
#. js-lingui-id: scmRyR
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Full access"
msgstr "crwdns397:0crwdne397:0"
@@ -2026,24 +1980,11 @@ msgstr "crwdns407:0crwdne407:0"
msgid "Global"
msgstr "crwdns409:0crwdne409:0"
#. js-lingui-id: iS69s6
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
msgid "Go to runs"
msgstr "crwdns5604:0crwdne5604:0"
#. js-lingui-id: mT57+Q
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
msgid "Go to Settings"
msgstr "crwdns5145:0crwdne5145:0"
#. js-lingui-id: A5WHZY
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
msgid "Go to workflows"
msgstr "crwdns5606:0crwdne5606:0"
#. js-lingui-id: hWp1MY
#: src/pages/settings/SettingsWorkspace.tsx
msgid "Grant Twenty support temporary access to your workspace so we can troubleshoot problems or recover content on your behalf. You can revoke access at any time."
@@ -2103,34 +2044,6 @@ msgstr "crwdns5153:0crwdne5153:0"
msgid "Hide"
msgstr "crwdns413:0crwdne413:0"
#. js-lingui-id: OlbYor
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
msgid "Hide deleted"
msgstr "crwdns5620:0crwdne5620:0"
#. js-lingui-id: FHhlye
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
msgid "Hide deleted records"
msgstr "crwdns5622:0crwdne5622:0"
#. js-lingui-id: 0dZtKR
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
msgid "Hide deleted runs"
msgstr "crwdns5624:0crwdne5624:0"
#. js-lingui-id: Jc6FrI
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
msgid "Hide deleted versions"
msgstr "crwdns5626:0crwdne5626:0"
#. js-lingui-id: aOZAIB
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
msgid "Hide deleted workflows"
msgstr "crwdns5628:0crwdne5628:0"
#. js-lingui-id: HS8BG/
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownRecordGroupsContent.tsx
msgid "Hide empty groups"
@@ -2538,8 +2451,8 @@ msgstr "crwdns469:0crwdne469:0"
#. js-lingui-id: nOhz3x
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
msgid "Logout"
msgstr "crwdns5608:0crwdne5608:0"
#~ msgid "Logout"
#~ msgstr "Logout"
#. js-lingui-id: PTozs8
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
@@ -3395,7 +3308,7 @@ msgid "Restore records"
msgstr "crwdns5421:0crwdne5421:0"
#. js-lingui-id: kx0s+n
#: src/modules/command-menu/hooks/useCommandMenuSearchRecords.tsx
#: src/modules/command-menu/hooks/useSearchRecords.tsx
msgid "Results"
msgstr "crwdns617:0crwdne617:0"
@@ -3486,7 +3399,6 @@ msgstr "crwdns629:0crwdne629:0"
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownRecordGroupFieldsContent.tsx
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownFilterSelect.tsx
#: src/modules/object-record/advanced-filter/components/AdvancedFilterFieldSelectSearchInput.tsx
msgid "Search fields"
msgstr "crwdns631:0crwdne631:0"
@@ -3549,19 +3461,11 @@ msgstr "crwdns5415:0crwdne5415:0"
#. js-lingui-id: OpPn5Z
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
msgid "See runs"
msgstr "crwdns641:0crwdne641:0"
#. js-lingui-id: gGEfj/
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
msgid "See version"
msgstr "crwdns5610:0crwdne5610:0"
#. js-lingui-id: EtyY4+
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
@@ -3574,21 +3478,6 @@ msgstr "crwdns643:0crwdne643:0"
msgid "See versions history"
msgstr "crwdns645:0crwdne645:0"
#. js-lingui-id: qEKLJV
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
msgid "See workflow"
msgstr "crwdns5612:0crwdne5612:0"
#. js-lingui-id: XThiR2
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
msgid "See workflows"
msgstr "crwdns5614:0crwdne5614:0"
#. js-lingui-id: WZvt/6
#: src/modules/command-menu/hooks/useWorkflowCommandMenu.ts
#: src/modules/command-menu/hooks/__tests__/useWorkflowCommandMenu.test.tsx
@@ -3767,11 +3656,6 @@ msgstr "crwdns677:0crwdne677:0"
msgid "SSO"
msgstr "crwdns679:0crwdne679:0"
#. js-lingui-id: vlvAkg
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "SSO (SAML / OIDC)"
msgstr "crwdns5616:0crwdne5616:0"
#. js-lingui-id: ErU1td
#: src/modules/views/view-picker/components/ViewPickerContentCreateMode.tsx
msgid "Stages"
@@ -3861,11 +3745,6 @@ msgstr "crwdns697:0{to}crwdne697:0"
msgid "Switch billing {to}"
msgstr "crwdns699:0{to}crwdne699:0"
#. js-lingui-id: lz+f/E
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Switch to {alternatePlanName}"
msgstr "crwdns5618:0{alternatePlanName}crwdne5618:0"
#. js-lingui-id: 5TRY4+
#: src/modules/settings/accounts/components/SettingsAccountsConnectedAccountsRowRightContainer.tsx
msgid "Sync failed"
@@ -4149,7 +4028,6 @@ msgstr "crwdns755:0crwdne755:0"
#. js-lingui-id: GQCXQS
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Unlimited contacts"
msgstr "crwdns757:0crwdne757:0"
+10 -296
View File
@@ -87,11 +87,6 @@ msgstr "{aggregateLabel} van {fieldLabel}"
msgid "{apiKeyName} API Key"
msgstr "{apiKeyName} API-sleutel"
#. js-lingui-id: zi5SHH
#: src/modules/object-record/record-index/components/RecordIndexPageHeader.tsx
msgid "{contextStoreNumberOfSelectedRecords} selected"
msgstr "{contextStoreNumberOfSelectedRecords} geselekteer"
#. js-lingui-id: 6j5rE1
#: src/modules/action-menu/actions/record-agnostic-actions/run-workflow-actions/hooks/useRunWorkflowActions.tsx
#: src/modules/action-menu/actions/record-actions/workflow-run-record-actions/hooks/useWorkflowRunRecordActions.tsx
@@ -105,8 +100,8 @@ msgstr "{workspaceMemberName} sal ontkoppel word van die volgende rol:"
#. js-lingui-id: YT0WJ4
#: src/pages/onboarding/ChooseYourPlan.tsx
#~ msgid "1 000 workflow node executions"
#~ msgstr "1 000 workflow node executions"
msgid "1 000 workflow node executions"
msgstr "1 000 werkstroomnode-uitvoerings"
#. js-lingui-id: vb5TwV
#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldSelect.tsx
@@ -119,11 +114,6 @@ msgstr "1. Kies 'n veldtipe"
msgid "1. Type"
msgstr "1. Tipe"
#. js-lingui-id: AvXug3
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "10 000 workflow node executions"
msgstr "10 000 werkvloeiknoopuitvoerings"
#. js-lingui-id: 4EdXYs
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "12h ({hour12Label})"
@@ -140,11 +130,6 @@ msgstr "2. Stel op"
msgid "2. Configure field"
msgstr "2. Stel veld op"
#. js-lingui-id: kAtmAv
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "20 000 workflow node executions"
msgstr "20 000 werkvloeiknoopuitvoerings"
#. js-lingui-id: QsMprd
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "24h ({hour24Label})"
@@ -201,11 +186,6 @@ msgstr "Rekeningverwydering"
msgid "Accounts"
msgstr "Rekeninge"
#. js-lingui-id: bwRvnp
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
msgid "Action"
msgstr "Aksie"
#. js-lingui-id: 7L01XJ
#: src/modules/settings/roles/role-permissions/components/RolePermissionsSettingsTableHeader.tsx
#: src/modules/settings/roles/role-permissions/components/RolePermissionsObjectsTableHeader.tsx
@@ -252,7 +232,7 @@ msgid "Add Approved Access Domain"
msgstr "Voeg Goedgekeurde Toegangsdomein by"
#. js-lingui-id: DpV70M
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionForm.tsx
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
msgid "Add Field"
msgstr "Voeg veld by"
@@ -453,7 +433,6 @@ msgstr ""
#. js-lingui-id: 0RqpZr
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "API & Webhooks"
msgstr "API & Webtuistes"
@@ -537,28 +516,13 @@ msgstr "Is jy seker dat jy jou faktureringsinterval wil verander?"
#. js-lingui-id: 8Y3Jbl
#: src/modules/action-menu/actions/record-actions/multiple-records/hooks/useDeleteMultipleRecordsAction.tsx
#~ msgid "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
#~ msgstr "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
#. js-lingui-id: 2BZAqa
#: src/modules/action-menu/actions/record-actions/multiple-records/hooks/useDeleteMultipleRecordsAction.tsx
msgid "Are you sure you want to delete these records? They can be recovered from the Command menu."
msgstr "Is jy seker jy wil hierdie rekords uitvee? Hulle kan herstel word vanaf die Command menu."
msgid "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
msgstr "Is jy seker jy wil hierdie rekords uitvee? Hulle kan herstel word vanaf die Command menu ({osControlSymbol} + K)."
#. js-lingui-id: Se0vJw
#: src/modules/action-menu/actions/record-actions/single-record/hooks/useDeleteSingleRecordAction.tsx
#~ msgid "Are you sure you want to delete this record? It can be recovered from the Command menu ({osControlSymbol} + K)."
#~ msgstr "Are you sure you want to delete this record? It can be recovered from the Command menu ({osControlSymbol} + K)."
#. js-lingui-id: yb2hF4
#: src/modules/action-menu/actions/record-actions/single-record/hooks/useDeleteSingleRecordAction.tsx
msgid "Are you sure you want to delete this record? It can be recovered from the Command menu."
msgstr "Is jy seker jy wil hierdie rekord uitvee? Dit kan herstel word vanaf die Command menu."
#. js-lingui-id: rnCqBK
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Are you sure? Your current information will not be saved."
msgstr ""
msgid "Are you sure you want to delete this record? It can be recovered from the Command menu ({osControlSymbol} + K)."
msgstr "Is jy seker jy wil hierdie rekord uitvee? Dit kan herstel word vanaf die Command menu ({osControlSymbol} + K)."
#. js-lingui-id: nYD/Cq
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
@@ -721,18 +685,10 @@ msgstr "Kalendersinchronisasie"
msgid "Calendars"
msgstr "Kalenders"
#. js-lingui-id: msssZq
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "Can't change API names for standard objects"
msgstr "Kan nie API-name vir standaardobjekte verander nie"
#. js-lingui-id: dEgA5A
#: src/pages/auth/Authorize.tsx
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
msgid "Cancel"
msgstr "Kanselleer"
@@ -839,11 +795,6 @@ msgstr "Maak toe"
msgid "Close command menu"
msgstr "Sluit opdragkieslys"
#. js-lingui-id: EWPtMO
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
msgid "Code"
msgstr "Kode"
#. js-lingui-id: H86f9p
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
@@ -856,11 +807,6 @@ msgstr "Vou in"
msgid "Color code"
msgstr "Kleurkode"
#. js-lingui-id: 93hd3e
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Columns not matched:"
msgstr ""
#. js-lingui-id: NM9bMd
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
msgid "Compact view"
@@ -892,7 +838,6 @@ msgid "Configure your emails and calendar settings."
msgstr "Stel jou e-posse en kalender instellings op."
#. js-lingui-id: 7VpPHA
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentConfirmationModal.tsx
msgid "Confirm"
msgstr "Bevestig"
@@ -938,8 +883,6 @@ msgstr "Konteks"
#: src/pages/onboarding/CreateWorkspace.tsx
#: src/pages/onboarding/CreateProfile.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx
msgid "Continue"
msgstr "Gaan voort"
@@ -1004,11 +947,6 @@ msgstr "Kopieer hierdie sleutel aangesien dit nie weer sigbaar sal wees nie"
msgid "Core"
msgstr "Kern"
#. js-lingui-id: w5Stxm
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Correct the issues and fill the missing data."
msgstr ""
#. js-lingui-id: wBMjJ2
#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterMenuContent.tsx
#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterDropdownContent.tsx
@@ -1130,7 +1068,6 @@ msgstr "Pasgemaakte domein opgedateer"
#. js-lingui-id: 8skTDV
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Custom objects"
msgstr "Pasgemaakte voorwerpe"
@@ -1443,11 +1380,6 @@ msgstr "Vertoon as relatiewe datum"
msgid "Display text on multiple lines"
msgstr "Vertoon teks op meerdere reëls"
#. js-lingui-id: ji7sqw
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/TemplateColumn.tsx
msgid "Do not import"
msgstr ""
#. js-lingui-id: U9q4zF
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
msgid "Doesn't contain"
@@ -1491,11 +1423,6 @@ msgstr "Moenie e-posse van team@ support@ noreply@ sinkroniseer nie..."
msgid "Download file"
msgstr "Laai lêer af"
#. js-lingui-id: 6D/BnN
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Drop file here..."
msgstr ""
#. js-lingui-id: KIjvtr
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
msgid "Dutch"
@@ -1553,7 +1480,6 @@ msgstr "Redigeer jou subdomein naam of stel 'n persoonlike domein in."
#: src/pages/settings/SettingsWorkspaceMembers.tsx
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/auth/PasswordReset.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentTableHeader.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
msgid "Email"
@@ -1571,7 +1497,6 @@ msgstr "E-pos kan nie leeg wees nie"
#. js-lingui-id: lfQsvW
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Email integration"
msgstr "E-pos integrasie"
@@ -1781,21 +1706,11 @@ msgstr "Sluit die volgende mense en domeine uit van my e-possinchronisasie. Inte
msgid "Existing objects"
msgstr "Bestaande voorwerpe"
#. js-lingui-id: ydzS9x
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Exit"
msgstr ""
#. js-lingui-id: LFNXuj
#: src/modules/ui/layout/fullscreen/components/FullScreenContainer.tsx
msgid "Exit Full Screen"
msgstr "Verlaat Volskerm"
#. js-lingui-id: XB4onr
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Exit import flow"
msgstr ""
#. js-lingui-id: IZ4o2e
#: src/modules/navigation/components/AppNavigationDrawer.tsx
msgid "Exit Settings"
@@ -1981,11 +1896,6 @@ msgstr "Filtreer"
msgid "Filters"
msgstr "Filtreerders"
#. js-lingui-id: SNdnlf
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Finish flow with errors"
msgstr ""
#. js-lingui-id: USZ2N6
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
msgid "Finnish"
@@ -2034,7 +1944,6 @@ msgstr "van jaarliks na maandeliks"
#. js-lingui-id: scmRyR
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Full access"
msgstr "Volle toegang"
@@ -2072,24 +1981,11 @@ msgstr "Kry jou inskrywing"
msgid "Global"
msgstr "Globaal"
#. js-lingui-id: iS69s6
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
msgid "Go to runs"
msgstr "Gaan na uitvoerings"
#. js-lingui-id: mT57+Q
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
msgid "Go to Settings"
msgstr "Gaan na instellings"
#. js-lingui-id: A5WHZY
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
msgid "Go to workflows"
msgstr "Gaan na werkvloeie"
#. js-lingui-id: hWp1MY
#: src/pages/settings/SettingsWorkspace.tsx
msgid "Grant Twenty support temporary access to your workspace so we can troubleshoot problems or recover content on your behalf. You can revoke access at any time."
@@ -2149,34 +2045,6 @@ msgstr "Verborge velde"
msgid "Hide"
msgstr "Steek weg"
#. js-lingui-id: OlbYor
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
msgid "Hide deleted"
msgstr "\aVersteek verwyderde"
#. js-lingui-id: FHhlye
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
msgid "Hide deleted records"
msgstr "Versteek verwyderde rekords"
#. js-lingui-id: 0dZtKR
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
msgid "Hide deleted runs"
msgstr "Versteek verwyderde lopies"
#. js-lingui-id: Jc6FrI
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
msgid "Hide deleted versions"
msgstr "Versteek verwyderde weergawes"
#. js-lingui-id: aOZAIB
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
msgid "Hide deleted workflows"
msgstr "Steek verwyderde werkvloeie weg"
#. js-lingui-id: HS8BG/
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownRecordGroupsContent.tsx
msgid "Hide empty groups"
@@ -2584,8 +2452,8 @@ msgstr "Teken uit"
#. js-lingui-id: nOhz3x
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
msgid "Logout"
msgstr "Teken uit"
#~ msgid "Logout"
#~ msgstr "Logout"
#. js-lingui-id: PTozs8
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
@@ -2629,16 +2497,6 @@ msgstr "Bestuur jou intekening"
msgid "Mark as done"
msgstr "Merk as voltooi"
#. js-lingui-id: 7h8ch8
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
msgid "Match columns"
msgstr ""
#. js-lingui-id: gDLior
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Match Columns"
msgstr ""
#. js-lingui-id: CK1KXz
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts
@@ -2867,12 +2725,6 @@ msgstr "Nuwe SSO Verskaffer"
#~ msgid "New Webhook"
#~ msgstr "New Webhook"
#. js-lingui-id: AxNmtI
#: src/modules/spreadsheet-import/steps/components/SelectSheetStep/SelectSheetStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Next Step"
msgstr ""
#. js-lingui-id: OTe3RI
#: src/pages/settings/workspace/SettingsDomain.tsx
msgid "No change detected"
@@ -2888,16 +2740,6 @@ msgstr "Geen gekoppelde rekening"
msgid "No country"
msgstr "Geen land nie"
#. js-lingui-id: pxvJ9B
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "No data containing errors"
msgstr ""
#. js-lingui-id: dihZwh
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "No data found"
msgstr ""
#. js-lingui-id: UwvrGq
#: src/pages/settings/SettingsWorkspaceMembers.tsx
msgid "No members"
@@ -2954,11 +2796,6 @@ msgstr "Geen rekords gevind nie"
#~ msgid "No Result"
#~ msgstr "No Result"
#. js-lingui-id: Ev2r9A
#: src/modules/spreadsheet-import/components/MatchColumnSelect.tsx
msgid "No results"
msgstr ""
#. js-lingui-id: MA3x23
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentWorkspaceMemberPickerDropdownContent.tsx
msgid "No Results"
@@ -2991,11 +2828,6 @@ msgstr "Geen"
msgid "Norwegian"
msgstr "Noors"
#. js-lingui-id: v3W9iu
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Not all columns matched"
msgstr ""
#. js-lingui-id: 0qBE9S
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownMenuContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownMenuContent.tsx
@@ -3291,11 +3123,6 @@ msgstr "Voorskou"
msgid "Privacy Policy"
msgstr "Privaatheidsbeleid"
#. js-lingui-id: k1ifdL
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Processing..."
msgstr ""
#. js-lingui-id: vERlcd
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/SettingsProfile.tsx
@@ -3409,7 +3236,6 @@ msgstr "Herlaai"
#. js-lingui-id: t/YqKh
#: src/modules/ui/input/components/ImageInput.tsx
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Remove"
msgstr "Verwyder"
@@ -3483,15 +3309,10 @@ msgid "Restore records"
msgstr "Herstel rekords"
#. js-lingui-id: kx0s+n
#: src/modules/command-menu/hooks/useCommandMenuSearchRecords.tsx
#: src/modules/command-menu/hooks/useSearchRecords.tsx
msgid "Results"
msgstr "Resultate"
#. js-lingui-id: BohSvm
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Review your import"
msgstr ""
#. js-lingui-id: 5dJK4M
#: src/pages/settings/roles/SettingsRoles.tsx
#: src/pages/settings/roles/SettingsRoles.tsx
@@ -3532,7 +3353,6 @@ msgstr "Skema"
#. js-lingui-id: A1taO8
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownWorkspacesListComponents.tsx
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentWorkspaceMemberPickerDropdown.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
#: src/modules/navigation/components/MainNavigationDrawerItems.tsx
#: src/modules/command-menu/hooks/useOpenRecordsSearchPageInCommandMenu.ts
@@ -3580,7 +3400,6 @@ msgstr "Soek 'n indeks..."
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownRecordGroupFieldsContent.tsx
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownFilterSelect.tsx
#: src/modules/object-record/advanced-filter/components/AdvancedFilterFieldSelectSearchInput.tsx
msgid "Search fields"
msgstr "Soek velde"
@@ -3643,19 +3462,11 @@ msgstr "Sien verwyderde werkvloeie"
#. js-lingui-id: OpPn5Z
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
msgid "See runs"
msgstr "Sien lopies"
#. js-lingui-id: gGEfj/
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
msgid "See version"
msgstr "Sien weergawes"
#. js-lingui-id: EtyY4+
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
@@ -3668,52 +3479,12 @@ msgstr "Sien weergawes"
msgid "See versions history"
msgstr "Sien weergawes geskiedenis"
#. js-lingui-id: qEKLJV
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
msgid "See workflow"
msgstr "Sien werksvloei"
#. js-lingui-id: XThiR2
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
msgid "See workflows"
msgstr "Sien werkvloeie"
#. js-lingui-id: WZvt/6
#: src/modules/command-menu/hooks/useWorkflowCommandMenu.ts
#: src/modules/command-menu/hooks/__tests__/useWorkflowCommandMenu.test.tsx
msgid "Select Action"
msgstr "Kies Aksie"
#. js-lingui-id: hVPa4O
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/UnmatchColumn.tsx
msgid "Select an option"
msgstr ""
#. js-lingui-id: 21YIUv
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/TemplateColumn.tsx
msgid "Select column..."
msgstr ""
#. js-lingui-id: J6WI1B
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Select file"
msgstr ""
#. js-lingui-id: ljSvAs
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
msgid "Select header row"
msgstr ""
#. js-lingui-id: mWHn81
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Select the correct field for each column you'd like to import."
msgstr ""
#. js-lingui-id: pofGCP
#: src/modules/settings/data-model/fields/forms/boolean/components/SettingsDataModelFieldBooleanForm.tsx
msgid "Select the default value for this boolean field"
@@ -3724,11 +3495,6 @@ msgstr "Kies die verstek waarde vir hierdie booleaanse veld"
msgid "Select the events you wish to send to this endpoint"
msgstr "Kies die gebeure wat jy wil stuur na hierdie eindpunt"
#. js-lingui-id: +xn1pe
#: src/modules/spreadsheet-import/steps/components/SelectSheetStep/SelectSheetStep.tsx
msgid "Select the sheet to use"
msgstr ""
#. js-lingui-id: AXTJAW
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Select your preferred language"
@@ -3833,16 +3599,6 @@ msgstr "Behoort die verandering van 'n veld se etiket ook die API naam te verand
msgid "Should changing an object's label also change the API?"
msgstr "Moet 'n verandering aan 'n objek se etiket ook die API verander?"
#. js-lingui-id: qi+g0a
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Show only rows with errors"
msgstr ""
#. js-lingui-id: MHlGJL
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Show unmatched columns"
msgstr ""
#. js-lingui-id: uVg8dY
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutOpenInContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -3901,11 +3657,6 @@ msgstr "Spaans"
msgid "SSO"
msgstr "EGS"
#. js-lingui-id: vlvAkg
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "SSO (SAML / OIDC)"
msgstr ""
#. js-lingui-id: ErU1td
#: src/modules/views/view-picker/components/ViewPickerContentCreateMode.tsx
msgid "Stages"
@@ -3959,11 +3710,6 @@ msgstr "Onderwerp en metadata sal met jou span gedeel word."
msgid "Subject, body and attachments will be shared with your team."
msgstr "Onderwerp, liggaam en aanhangsels sal met jou span gedeel word."
#. js-lingui-id: hQRttt
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Submit"
msgstr ""
#. js-lingui-id: B5jRKH
#: src/pages/settings/SettingsBilling.tsx
msgid "Subscription has been switched {to}"
@@ -4000,11 +3746,6 @@ msgstr "Verander na {to}"
msgid "Switch billing {to}"
msgstr "Verander rekening na {to}"
#. js-lingui-id: lz+f/E
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Switch to {alternatePlanName}"
msgstr "Skakel oor na {alternatePlanName}"
#. js-lingui-id: 5TRY4+
#: src/modules/settings/accounts/components/SettingsAccountsConnectedAccountsRowRightContainer.tsx
msgid "Sync failed"
@@ -4145,16 +3886,6 @@ msgstr "Tema"
msgid "Theme "
msgstr "Tema "
#. js-lingui-id: /cSDOy
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "There are required columns that are not matched or ignored. Do you want to continue?"
msgstr ""
#. js-lingui-id: luL9RX
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "There are still some rows that contain errors. Rows with errors will be ignored when submitting."
msgstr ""
#. js-lingui-id: ynfkhb
#: src/pages/auth/PasswordReset.tsx
msgid "There was an error while updating password."
@@ -4298,7 +4029,6 @@ msgstr "Onbekende fout"
#. js-lingui-id: GQCXQS
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Unlimited contacts"
msgstr "Onbeperkte kontakte"
@@ -4312,13 +4042,7 @@ msgstr "Opgedateer"
msgid "Upload"
msgstr "Laai op"
#. js-lingui-id: 7OP1Xi
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Upload .xlsx, .xls or .csv file"
msgstr ""
#. js-lingui-id: 2IXDgU
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Upload file"
msgstr "Laai lêer op"
@@ -4395,11 +4119,6 @@ msgstr "Gebruiker is nie aangeteken nie"
#~ msgid "Users"
#~ msgstr "Users"
#. js-lingui-id: MGeZsN
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
msgid "Validate data"
msgstr ""
#. js-lingui-id: fXVIZq
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
@@ -4614,11 +4333,6 @@ msgstr "Skryf 'n geheim"
msgid "yes"
msgstr "ja"
#. js-lingui-id: qsAug0
#: src/modules/spreadsheet-import/components/MatchColumnSelect.tsx
msgid "You are already importing this column."
msgstr ""
#. js-lingui-id: MFDARJ
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateReadOnly.tsx
msgid "You are not allowed to create records for this object"
+10 -296
View File
@@ -87,11 +87,6 @@ msgstr "{aggregateLabel} من {fieldLabel}"
msgid "{apiKeyName} API Key"
msgstr "مفتاح واجهة برمجة التطبيقات {apiKeyName}"
#. js-lingui-id: zi5SHH
#: src/modules/object-record/record-index/components/RecordIndexPageHeader.tsx
msgid "{contextStoreNumberOfSelectedRecords} selected"
msgstr "{contextStoreNumberOfSelectedRecords} مُختار"
#. js-lingui-id: 6j5rE1
#: src/modules/action-menu/actions/record-agnostic-actions/run-workflow-actions/hooks/useRunWorkflowActions.tsx
#: src/modules/action-menu/actions/record-actions/workflow-run-record-actions/hooks/useWorkflowRunRecordActions.tsx
@@ -105,8 +100,8 @@ msgstr "{workspaceMemberName} سيتم إلغاء تعيينه من الدور
#. js-lingui-id: YT0WJ4
#: src/pages/onboarding/ChooseYourPlan.tsx
#~ msgid "1 000 workflow node executions"
#~ msgstr "1 000 workflow node executions"
msgid "1 000 workflow node executions"
msgstr "1 000 تنفيذ عقدة سير العمل"
#. js-lingui-id: vb5TwV
#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldSelect.tsx
@@ -119,11 +114,6 @@ msgstr "1. اختر نوع الحقل"
msgid "1. Type"
msgstr "1. نوع"
#. js-lingui-id: AvXug3
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "10 000 workflow node executions"
msgstr "10 000 تنفيذ عقدة سير العمل"
#. js-lingui-id: 4EdXYs
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "12h ({hour12Label})"
@@ -140,11 +130,6 @@ msgstr "2. التكويين"
msgid "2. Configure field"
msgstr "2. تكوين الحقل"
#. js-lingui-id: kAtmAv
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "20 000 workflow node executions"
msgstr "20 000 تنفيذ عقدة سير العمل"
#. js-lingui-id: QsMprd
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "24h ({hour24Label})"
@@ -201,11 +186,6 @@ msgstr "حذف الحساب"
msgid "Accounts"
msgstr "الحسابات"
#. js-lingui-id: bwRvnp
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
msgid "Action"
msgstr "عمل"
#. js-lingui-id: 7L01XJ
#: src/modules/settings/roles/role-permissions/components/RolePermissionsSettingsTableHeader.tsx
#: src/modules/settings/roles/role-permissions/components/RolePermissionsObjectsTableHeader.tsx
@@ -252,7 +232,7 @@ msgid "Add Approved Access Domain"
msgstr "إضافة نطاق وصول معتمد"
#. js-lingui-id: DpV70M
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionForm.tsx
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
msgid "Add Field"
msgstr "إضافة حقل"
@@ -453,7 +433,6 @@ msgstr "واجهة برمجة التطبيقات"
#. js-lingui-id: 0RqpZr
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "API & Webhooks"
msgstr "واجهة برمجة التطبيقات والويب هوك"
@@ -537,28 +516,13 @@ msgstr "هل أنت متأكد أنك تريد تغيير فترة الفوتر
#. js-lingui-id: 8Y3Jbl
#: src/modules/action-menu/actions/record-actions/multiple-records/hooks/useDeleteMultipleRecordsAction.tsx
#~ msgid "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
#~ msgstr "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
#. js-lingui-id: 2BZAqa
#: src/modules/action-menu/actions/record-actions/multiple-records/hooks/useDeleteMultipleRecordsAction.tsx
msgid "Are you sure you want to delete these records? They can be recovered from the Command menu."
msgstr "هل أنت متأكد أنك تريد حذف هذه السجلات؟ يمكن استرجاعها من قائمة الأوامر."
msgid "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
msgstr "هل أنت متأكد أنك تريد حذف هذه السجلات؟ يمكن استرجاعها من قائمة الأوامر ({osControlSymbol} + K)."
#. js-lingui-id: Se0vJw
#: src/modules/action-menu/actions/record-actions/single-record/hooks/useDeleteSingleRecordAction.tsx
#~ msgid "Are you sure you want to delete this record? It can be recovered from the Command menu ({osControlSymbol} + K)."
#~ msgstr "Are you sure you want to delete this record? It can be recovered from the Command menu ({osControlSymbol} + K)."
#. js-lingui-id: yb2hF4
#: src/modules/action-menu/actions/record-actions/single-record/hooks/useDeleteSingleRecordAction.tsx
msgid "Are you sure you want to delete this record? It can be recovered from the Command menu."
msgstr "هل أنت متأكد أنك تريد حذف هذا السجل؟ يمكن استرجاعه من قائمة الأوامر."
#. js-lingui-id: rnCqBK
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Are you sure? Your current information will not be saved."
msgstr ""
msgid "Are you sure you want to delete this record? It can be recovered from the Command menu ({osControlSymbol} + K)."
msgstr "هل أنت متأكد أنك تريد حذف هذا السجل؟ يمكن استرجاعه من قائمة الأوامر ({osControlSymbol} + K)."
#. js-lingui-id: nYD/Cq
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
@@ -721,18 +685,10 @@ msgstr "مزامنة التقويم"
msgid "Calendars"
msgstr "التقاويم"
#. js-lingui-id: msssZq
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "Can't change API names for standard objects"
msgstr "لا يمكن تغيير أسماء API للكائنات القياسية"
#. js-lingui-id: dEgA5A
#: src/pages/auth/Authorize.tsx
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
msgid "Cancel"
msgstr "إلغاء"
@@ -839,11 +795,6 @@ msgstr "إغلاق"
msgid "Close command menu"
msgstr "إغلاق قائمة الأوامر"
#. js-lingui-id: EWPtMO
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
msgid "Code"
msgstr "رمز"
#. js-lingui-id: H86f9p
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
@@ -856,11 +807,6 @@ msgstr "طي"
msgid "Color code"
msgstr "رمز اللون"
#. js-lingui-id: 93hd3e
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Columns not matched:"
msgstr ""
#. js-lingui-id: NM9bMd
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
msgid "Compact view"
@@ -892,7 +838,6 @@ msgid "Configure your emails and calendar settings."
msgstr "ضبط إعدادات بريدك الإلكتروني والتقويم."
#. js-lingui-id: 7VpPHA
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentConfirmationModal.tsx
msgid "Confirm"
msgstr "تأكيد"
@@ -938,8 +883,6 @@ msgstr "السياق"
#: src/pages/onboarding/CreateWorkspace.tsx
#: src/pages/onboarding/CreateProfile.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx
msgid "Continue"
msgstr "استمر"
@@ -1004,11 +947,6 @@ msgstr "انسخ هذا المفتاح لأنه لن يظهر مرة أخرى"
msgid "Core"
msgstr "النواة"
#. js-lingui-id: w5Stxm
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Correct the issues and fill the missing data."
msgstr ""
#. js-lingui-id: wBMjJ2
#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterMenuContent.tsx
#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterDropdownContent.tsx
@@ -1130,7 +1068,6 @@ msgstr "النطاق المخصص محدث"
#. js-lingui-id: 8skTDV
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Custom objects"
msgstr "كائنات مخصصة"
@@ -1443,11 +1380,6 @@ msgstr "عرض كتاريخ نسبي"
msgid "Display text on multiple lines"
msgstr "عرض النصوص في عدة خطوط"
#. js-lingui-id: ji7sqw
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/TemplateColumn.tsx
msgid "Do not import"
msgstr ""
#. js-lingui-id: U9q4zF
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
msgid "Doesn't contain"
@@ -1491,11 +1423,6 @@ msgstr "لا تقم بمزامنة رسائل البريد الإلكتروني
msgid "Download file"
msgstr "تنزيل الملف"
#. js-lingui-id: 6D/BnN
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Drop file here..."
msgstr ""
#. js-lingui-id: KIjvtr
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
msgid "Dutch"
@@ -1553,7 +1480,6 @@ msgstr "قم بتعديل اسم النطاق الفرعي أو اضبط نطا
#: src/pages/settings/SettingsWorkspaceMembers.tsx
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/auth/PasswordReset.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentTableHeader.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
msgid "Email"
@@ -1571,7 +1497,6 @@ msgstr "لا يمكن أن يكون البريد الإلكتروني فارغً
#. js-lingui-id: lfQsvW
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Email integration"
msgstr "تكامل البريد الإلكتروني"
@@ -1781,21 +1706,11 @@ msgstr "استبعاد الأشخاص والمجالات التالية من م
msgid "Existing objects"
msgstr "الكائنات الحالية"
#. js-lingui-id: ydzS9x
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Exit"
msgstr ""
#. js-lingui-id: LFNXuj
#: src/modules/ui/layout/fullscreen/components/FullScreenContainer.tsx
msgid "Exit Full Screen"
msgstr "خروج من وضع ملء الشاشة"
#. js-lingui-id: XB4onr
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Exit import flow"
msgstr ""
#. js-lingui-id: IZ4o2e
#: src/modules/navigation/components/AppNavigationDrawer.tsx
msgid "Exit Settings"
@@ -1981,11 +1896,6 @@ msgstr "تصفية"
msgid "Filters"
msgstr "الفلاتر"
#. js-lingui-id: SNdnlf
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Finish flow with errors"
msgstr ""
#. js-lingui-id: USZ2N6
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
msgid "Finnish"
@@ -2034,7 +1944,6 @@ msgstr "من سنوي إلى شهري"
#. js-lingui-id: scmRyR
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Full access"
msgstr "وصول كامل"
@@ -2072,24 +1981,11 @@ msgstr "احصل على اشتراكك"
msgid "Global"
msgstr "عالمي"
#. js-lingui-id: iS69s6
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
msgid "Go to runs"
msgstr "انتقل إلى العمليات"
#. js-lingui-id: mT57+Q
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
msgid "Go to Settings"
msgstr "انتقل إلى الإعدادات"
#. js-lingui-id: A5WHZY
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
msgid "Go to workflows"
msgstr "اذهب إلى دورات العمل"
#. js-lingui-id: hWp1MY
#: src/pages/settings/SettingsWorkspace.tsx
msgid "Grant Twenty support temporary access to your workspace so we can troubleshoot problems or recover content on your behalf. You can revoke access at any time."
@@ -2149,34 +2045,6 @@ msgstr "الحقول المخفية"
msgid "Hide"
msgstr "إخفاء"
#. js-lingui-id: OlbYor
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
msgid "Hide deleted"
msgstr "إخفاء المحذوفين"
#. js-lingui-id: FHhlye
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
msgid "Hide deleted records"
msgstr "إخفاء السجلات المحذوفة"
#. js-lingui-id: 0dZtKR
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
msgid "Hide deleted runs"
msgstr "إخفاء التشغيلات المحذوفة"
#. js-lingui-id: Jc6FrI
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
msgid "Hide deleted versions"
msgstr "إخفاء الإصدارات المحذوفة"
#. js-lingui-id: aOZAIB
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
msgid "Hide deleted workflows"
msgstr "إخفاء الإجراءات المحذوفة"
#. js-lingui-id: HS8BG/
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownRecordGroupsContent.tsx
msgid "Hide empty groups"
@@ -2584,8 +2452,8 @@ msgstr "تسجيل الخروج"
#. js-lingui-id: nOhz3x
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
msgid "Logout"
msgstr "تسجيل الخروج"
#~ msgid "Logout"
#~ msgstr "Logout"
#. js-lingui-id: PTozs8
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
@@ -2629,16 +2497,6 @@ msgstr "إدارة اشتراكك"
msgid "Mark as done"
msgstr "وضع علامة كمنجز"
#. js-lingui-id: 7h8ch8
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
msgid "Match columns"
msgstr ""
#. js-lingui-id: gDLior
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Match Columns"
msgstr ""
#. js-lingui-id: CK1KXz
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts
@@ -2867,12 +2725,6 @@ msgstr "موفر دخول موحد جديد"
#~ msgid "New Webhook"
#~ msgstr "New Webhook"
#. js-lingui-id: AxNmtI
#: src/modules/spreadsheet-import/steps/components/SelectSheetStep/SelectSheetStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Next Step"
msgstr ""
#. js-lingui-id: OTe3RI
#: src/pages/settings/workspace/SettingsDomain.tsx
msgid "No change detected"
@@ -2888,16 +2740,6 @@ msgstr "لا يوجد حساب متصل"
msgid "No country"
msgstr "لا دولة"
#. js-lingui-id: pxvJ9B
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "No data containing errors"
msgstr ""
#. js-lingui-id: dihZwh
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "No data found"
msgstr ""
#. js-lingui-id: UwvrGq
#: src/pages/settings/SettingsWorkspaceMembers.tsx
msgid "No members"
@@ -2954,11 +2796,6 @@ msgstr "لم يتم العثور على سجلات"
#~ msgid "No Result"
#~ msgstr "No Result"
#. js-lingui-id: Ev2r9A
#: src/modules/spreadsheet-import/components/MatchColumnSelect.tsx
msgid "No results"
msgstr ""
#. js-lingui-id: MA3x23
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentWorkspaceMemberPickerDropdownContent.tsx
msgid "No Results"
@@ -2991,11 +2828,6 @@ msgstr "لا شيء"
msgid "Norwegian"
msgstr "النرويجية"
#. js-lingui-id: v3W9iu
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Not all columns matched"
msgstr ""
#. js-lingui-id: 0qBE9S
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownMenuContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownMenuContent.tsx
@@ -3291,11 +3123,6 @@ msgstr "معاينة"
msgid "Privacy Policy"
msgstr "\\\\"
#. js-lingui-id: k1ifdL
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Processing..."
msgstr ""
#. js-lingui-id: vERlcd
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/SettingsProfile.tsx
@@ -3409,7 +3236,6 @@ msgstr "إعادة تحميل"
#. js-lingui-id: t/YqKh
#: src/modules/ui/input/components/ImageInput.tsx
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Remove"
msgstr "\\\\"
@@ -3483,15 +3309,10 @@ msgid "Restore records"
msgstr "استعادة السجلات"
#. js-lingui-id: kx0s+n
#: src/modules/command-menu/hooks/useCommandMenuSearchRecords.tsx
#: src/modules/command-menu/hooks/useSearchRecords.tsx
msgid "Results"
msgstr "\\\\"
#. js-lingui-id: BohSvm
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Review your import"
msgstr ""
#. js-lingui-id: 5dJK4M
#: src/pages/settings/roles/SettingsRoles.tsx
#: src/pages/settings/roles/SettingsRoles.tsx
@@ -3532,7 +3353,6 @@ msgstr "مخطط"
#. js-lingui-id: A1taO8
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownWorkspacesListComponents.tsx
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentWorkspaceMemberPickerDropdown.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
#: src/modules/navigation/components/MainNavigationDrawerItems.tsx
#: src/modules/command-menu/hooks/useOpenRecordsSearchPageInCommandMenu.ts
@@ -3580,7 +3400,6 @@ msgstr "ابحث عن فهرس..."
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownRecordGroupFieldsContent.tsx
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownFilterSelect.tsx
#: src/modules/object-record/advanced-filter/components/AdvancedFilterFieldSelectSearchInput.tsx
msgid "Search fields"
msgstr "\\\\"
@@ -3643,19 +3462,11 @@ msgstr "رؤية مجرى العمل المحذوفة"
#. js-lingui-id: OpPn5Z
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
msgid "See runs"
msgstr "\\\\"
#. js-lingui-id: gGEfj/
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
msgid "See version"
msgstr "انظر النسخة"
#. js-lingui-id: EtyY4+
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
@@ -3668,52 +3479,12 @@ msgstr "\\\\"
msgid "See versions history"
msgstr "\\\\"
#. js-lingui-id: qEKLJV
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
msgid "See workflow"
msgstr "انظر دورة العمل"
#. js-lingui-id: XThiR2
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
msgid "See workflows"
msgstr "انظر دورات العمل"
#. js-lingui-id: WZvt/6
#: src/modules/command-menu/hooks/useWorkflowCommandMenu.ts
#: src/modules/command-menu/hooks/__tests__/useWorkflowCommandMenu.test.tsx
msgid "Select Action"
msgstr "اختر الإجراء"
#. js-lingui-id: hVPa4O
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/UnmatchColumn.tsx
msgid "Select an option"
msgstr ""
#. js-lingui-id: 21YIUv
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/TemplateColumn.tsx
msgid "Select column..."
msgstr ""
#. js-lingui-id: J6WI1B
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Select file"
msgstr ""
#. js-lingui-id: ljSvAs
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
msgid "Select header row"
msgstr ""
#. js-lingui-id: mWHn81
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Select the correct field for each column you'd like to import."
msgstr ""
#. js-lingui-id: pofGCP
#: src/modules/settings/data-model/fields/forms/boolean/components/SettingsDataModelFieldBooleanForm.tsx
msgid "Select the default value for this boolean field"
@@ -3724,11 +3495,6 @@ msgstr "اختر القيمة الافتراضية لهذا الحقل المن
msgid "Select the events you wish to send to this endpoint"
msgstr "\\\\"
#. js-lingui-id: +xn1pe
#: src/modules/spreadsheet-import/steps/components/SelectSheetStep/SelectSheetStep.tsx
msgid "Select the sheet to use"
msgstr ""
#. js-lingui-id: AXTJAW
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Select your preferred language"
@@ -3833,16 +3599,6 @@ msgstr "هل ينبغي أن يؤدي تغيير تسمية الحقل أيضا
msgid "Should changing an object's label also change the API?"
msgstr "هل يجب أن يؤدي تغيير مسمى الكائن أيضاً إلى تغيير الواجهة برمجية؟"
#. js-lingui-id: qi+g0a
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Show only rows with errors"
msgstr ""
#. js-lingui-id: MHlGJL
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Show unmatched columns"
msgstr ""
#. js-lingui-id: uVg8dY
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutOpenInContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -3901,11 +3657,6 @@ msgstr "الإسبانية"
msgid "SSO"
msgstr "التسجيل الموحد"
#. js-lingui-id: vlvAkg
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "SSO (SAML / OIDC)"
msgstr "تسجيل الدخول الأحادي (SAML / OIDC)"
#. js-lingui-id: ErU1td
#: src/modules/views/view-picker/components/ViewPickerContentCreateMode.tsx
msgid "Stages"
@@ -3959,11 +3710,6 @@ msgstr "سيتم مشاركة الموضوع والبيانات الوصفية
msgid "Subject, body and attachments will be shared with your team."
msgstr "سيتم مشاركة الموضوع والمحتوى والمرفقات مع فريقك."
#. js-lingui-id: hQRttt
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Submit"
msgstr ""
#. js-lingui-id: B5jRKH
#: src/pages/settings/SettingsBilling.tsx
msgid "Subscription has been switched {to}"
@@ -4000,11 +3746,6 @@ msgstr "تبديل <b>{to}</b>"
msgid "Switch billing {to}"
msgstr "تبديل الفوترة <b>{to}</b>"
#. js-lingui-id: lz+f/E
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Switch to {alternatePlanName}"
msgstr "التبديل إلى {alternatePlanName}"
#. js-lingui-id: 5TRY4+
#: src/modules/settings/accounts/components/SettingsAccountsConnectedAccountsRowRightContainer.tsx
msgid "Sync failed"
@@ -4145,16 +3886,6 @@ msgstr "سمة"
msgid "Theme "
msgstr "سمة "
#. js-lingui-id: /cSDOy
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "There are required columns that are not matched or ignored. Do you want to continue?"
msgstr ""
#. js-lingui-id: luL9RX
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "There are still some rows that contain errors. Rows with errors will be ignored when submitting."
msgstr ""
#. js-lingui-id: ynfkhb
#: src/pages/auth/PasswordReset.tsx
msgid "There was an error while updating password."
@@ -4298,7 +4029,6 @@ msgstr "خطأ غير معروف"
#. js-lingui-id: GQCXQS
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Unlimited contacts"
msgstr "جهات اتصال غير محدودة"
@@ -4312,13 +4042,7 @@ msgstr "تم التحديث"
msgid "Upload"
msgstr "رفع"
#. js-lingui-id: 7OP1Xi
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Upload .xlsx, .xls or .csv file"
msgstr ""
#. js-lingui-id: 2IXDgU
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Upload file"
msgstr "رفع الملف"
@@ -4395,11 +4119,6 @@ msgstr "المستخدم غير مسجل الدخول"
#~ msgid "Users"
#~ msgstr "Users"
#. js-lingui-id: MGeZsN
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
msgid "Validate data"
msgstr ""
#. js-lingui-id: fXVIZq
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
@@ -4614,11 +4333,6 @@ msgstr "اكتب سرًا"
msgid "yes"
msgstr "نعم"
#. js-lingui-id: qsAug0
#: src/modules/spreadsheet-import/components/MatchColumnSelect.tsx
msgid "You are already importing this column."
msgstr ""
#. js-lingui-id: MFDARJ
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateReadOnly.tsx
msgid "You are not allowed to create records for this object"
+10 -296
View File
@@ -87,11 +87,6 @@ msgstr "{aggregateLabel} de {fieldLabel}"
msgid "{apiKeyName} API Key"
msgstr "Clau d'API de {apiKeyName}"
#. js-lingui-id: zi5SHH
#: src/modules/object-record/record-index/components/RecordIndexPageHeader.tsx
msgid "{contextStoreNumberOfSelectedRecords} selected"
msgstr "{contextStoreNumberOfSelectedRecords} seleccionats"
#. js-lingui-id: 6j5rE1
#: src/modules/action-menu/actions/record-agnostic-actions/run-workflow-actions/hooks/useRunWorkflowActions.tsx
#: src/modules/action-menu/actions/record-actions/workflow-run-record-actions/hooks/useWorkflowRunRecordActions.tsx
@@ -105,8 +100,8 @@ msgstr "{workspaceMemberName} serà desassignat del següent rol:"
#. js-lingui-id: YT0WJ4
#: src/pages/onboarding/ChooseYourPlan.tsx
#~ msgid "1 000 workflow node executions"
#~ msgstr "1 000 workflow node executions"
msgid "1 000 workflow node executions"
msgstr "1 000 execucions de nusos de flujos de treball"
#. js-lingui-id: vb5TwV
#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldSelect.tsx
@@ -119,11 +114,6 @@ msgstr "1. Selecciona un tipus de camp"
msgid "1. Type"
msgstr "1. Tipus"
#. js-lingui-id: AvXug3
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "10 000 workflow node executions"
msgstr "10.000 execucions de nodes de flux de treball"
#. js-lingui-id: 4EdXYs
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "12h ({hour12Label})"
@@ -140,11 +130,6 @@ msgstr "2. Configura"
msgid "2. Configure field"
msgstr "2. Configura el camp"
#. js-lingui-id: kAtmAv
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "20 000 workflow node executions"
msgstr "20.000 execucions de nodes de flux de treball"
#. js-lingui-id: QsMprd
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "24h ({hour24Label})"
@@ -201,11 +186,6 @@ msgstr "Eliminació de compte"
msgid "Accounts"
msgstr "Comptes"
#. js-lingui-id: bwRvnp
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
msgid "Action"
msgstr "Acció"
#. js-lingui-id: 7L01XJ
#: src/modules/settings/roles/role-permissions/components/RolePermissionsSettingsTableHeader.tsx
#: src/modules/settings/roles/role-permissions/components/RolePermissionsObjectsTableHeader.tsx
@@ -252,7 +232,7 @@ msgid "Add Approved Access Domain"
msgstr "Afegeix un domini d'accés aprovat"
#. js-lingui-id: DpV70M
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionForm.tsx
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
msgid "Add Field"
msgstr "Afegeix camp"
@@ -453,7 +433,6 @@ msgstr "API"
#. js-lingui-id: 0RqpZr
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "API & Webhooks"
msgstr "API i Webhooks"
@@ -537,28 +516,13 @@ msgstr "Esteu segurs que voleu canviar el vostre interval de facturació?"
#. js-lingui-id: 8Y3Jbl
#: src/modules/action-menu/actions/record-actions/multiple-records/hooks/useDeleteMultipleRecordsAction.tsx
#~ msgid "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
#~ msgstr "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
#. js-lingui-id: 2BZAqa
#: src/modules/action-menu/actions/record-actions/multiple-records/hooks/useDeleteMultipleRecordsAction.tsx
msgid "Are you sure you want to delete these records? They can be recovered from the Command menu."
msgstr "Esteu segur que voleu suprimir aquests registres? Es poden recuperar des del menú d'ordres."
msgid "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
msgstr "Esteu segur que voleu suprimir aquests registres? Es poden recuperar des del menú d'ordres ({osControlSymbol} + K)."
#. js-lingui-id: Se0vJw
#: src/modules/action-menu/actions/record-actions/single-record/hooks/useDeleteSingleRecordAction.tsx
#~ msgid "Are you sure you want to delete this record? It can be recovered from the Command menu ({osControlSymbol} + K)."
#~ msgstr "Are you sure you want to delete this record? It can be recovered from the Command menu ({osControlSymbol} + K)."
#. js-lingui-id: yb2hF4
#: src/modules/action-menu/actions/record-actions/single-record/hooks/useDeleteSingleRecordAction.tsx
msgid "Are you sure you want to delete this record? It can be recovered from the Command menu."
msgstr "Esteu segur que voleu suprimir aquest registre? Es pot recuperar des del menú d'ordres."
#. js-lingui-id: rnCqBK
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Are you sure? Your current information will not be saved."
msgstr ""
msgid "Are you sure you want to delete this record? It can be recovered from the Command menu ({osControlSymbol} + K)."
msgstr "Esteu segur que voleu suprimir aquest registre? Es pot recuperar des del menú d'ordres ({osControlSymbol} + K)."
#. js-lingui-id: nYD/Cq
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
@@ -721,18 +685,10 @@ msgstr "Sincronització del calendari"
msgid "Calendars"
msgstr "Calendaris"
#. js-lingui-id: msssZq
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "Can't change API names for standard objects"
msgstr "No es poden canviar els noms de les API per a objectes estàndard"
#. js-lingui-id: dEgA5A
#: src/pages/auth/Authorize.tsx
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
msgid "Cancel"
msgstr "Cancel·la"
@@ -839,11 +795,6 @@ msgstr "Tanca"
msgid "Close command menu"
msgstr "Tanca el menú de comandament"
#. js-lingui-id: EWPtMO
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
msgid "Code"
msgstr "Codi"
#. js-lingui-id: H86f9p
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
@@ -856,11 +807,6 @@ msgstr "Contraure"
msgid "Color code"
msgstr "Codi de colors"
#. js-lingui-id: 93hd3e
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Columns not matched:"
msgstr ""
#. js-lingui-id: NM9bMd
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
msgid "Compact view"
@@ -892,7 +838,6 @@ msgid "Configure your emails and calendar settings."
msgstr "Configureu els vostres correus electrònics i les preferències del calendari."
#. js-lingui-id: 7VpPHA
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentConfirmationModal.tsx
msgid "Confirm"
msgstr "Confirmar"
@@ -938,8 +883,6 @@ msgstr "Context"
#: src/pages/onboarding/CreateWorkspace.tsx
#: src/pages/onboarding/CreateProfile.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx
msgid "Continue"
msgstr "Continua"
@@ -1004,11 +947,6 @@ msgstr "Copia aquesta clau ja que no serà visible de nou"
msgid "Core"
msgstr "Nucli"
#. js-lingui-id: w5Stxm
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Correct the issues and fill the missing data."
msgstr ""
#. js-lingui-id: wBMjJ2
#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterMenuContent.tsx
#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterDropdownContent.tsx
@@ -1130,7 +1068,6 @@ msgstr "Domini personalitzat actualitzat"
#. js-lingui-id: 8skTDV
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Custom objects"
msgstr "Objectes personalitzats"
@@ -1443,11 +1380,6 @@ msgstr "Mostrar com a data relativa"
msgid "Display text on multiple lines"
msgstr "Mostra text en múltiples línies"
#. js-lingui-id: ji7sqw
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/TemplateColumn.tsx
msgid "Do not import"
msgstr ""
#. js-lingui-id: U9q4zF
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
msgid "Doesn't contain"
@@ -1491,11 +1423,6 @@ msgstr "No sincronitzar correus de team@ support@ noreply@..."
msgid "Download file"
msgstr "Descarrega fitxer"
#. js-lingui-id: 6D/BnN
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Drop file here..."
msgstr ""
#. js-lingui-id: KIjvtr
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
msgid "Dutch"
@@ -1553,7 +1480,6 @@ msgstr "Edita el nom del teu subdomini o estableix un domini personalitzat."
#: src/pages/settings/SettingsWorkspaceMembers.tsx
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/auth/PasswordReset.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentTableHeader.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
msgid "Email"
@@ -1571,7 +1497,6 @@ msgstr "El correu electrònic no pot estar buit"
#. js-lingui-id: lfQsvW
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Email integration"
msgstr "Integració de correu electrònic"
@@ -1781,21 +1706,11 @@ msgstr "Exclou les persones i dominis següents de la meva sincronització del c
msgid "Existing objects"
msgstr "Objectes existents"
#. js-lingui-id: ydzS9x
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Exit"
msgstr ""
#. js-lingui-id: LFNXuj
#: src/modules/ui/layout/fullscreen/components/FullScreenContainer.tsx
msgid "Exit Full Screen"
msgstr "Sortir de la pantalla completa"
#. js-lingui-id: XB4onr
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Exit import flow"
msgstr ""
#. js-lingui-id: IZ4o2e
#: src/modules/navigation/components/AppNavigationDrawer.tsx
msgid "Exit Settings"
@@ -1981,11 +1896,6 @@ msgstr "Filtrar"
msgid "Filters"
msgstr "Filtres"
#. js-lingui-id: SNdnlf
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Finish flow with errors"
msgstr ""
#. js-lingui-id: USZ2N6
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
msgid "Finnish"
@@ -2034,7 +1944,6 @@ msgstr "d'anual a mensual"
#. js-lingui-id: scmRyR
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Full access"
msgstr "Accés complet"
@@ -2072,24 +1981,11 @@ msgstr "Obteniu la vostra subscripció"
msgid "Global"
msgstr "Global"
#. js-lingui-id: iS69s6
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
msgid "Go to runs"
msgstr "Anar a les execucions"
#. js-lingui-id: mT57+Q
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
msgid "Go to Settings"
msgstr "Anar a Configuració"
#. js-lingui-id: A5WHZY
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
msgid "Go to workflows"
msgstr "Anar als fluxos de treball"
#. js-lingui-id: hWp1MY
#: src/pages/settings/SettingsWorkspace.tsx
msgid "Grant Twenty support temporary access to your workspace so we can troubleshoot problems or recover content on your behalf. You can revoke access at any time."
@@ -2149,34 +2045,6 @@ msgstr "Camps ocults"
msgid "Hide"
msgstr "Amagar"
#. js-lingui-id: OlbYor
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
msgid "Hide deleted"
msgstr "Amaga eliminats"
#. js-lingui-id: FHhlye
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
msgid "Hide deleted records"
msgstr "Amaga registres suprimits"
#. js-lingui-id: 0dZtKR
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
msgid "Hide deleted runs"
msgstr "Amaga execucions eliminades"
#. js-lingui-id: Jc6FrI
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
msgid "Hide deleted versions"
msgstr "Amaga versions eliminades"
#. js-lingui-id: aOZAIB
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
msgid "Hide deleted workflows"
msgstr "Amagar fluxos de treball eliminats"
#. js-lingui-id: HS8BG/
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownRecordGroupsContent.tsx
msgid "Hide empty groups"
@@ -2584,8 +2452,8 @@ msgstr "Tancar sessió"
#. js-lingui-id: nOhz3x
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
msgid "Logout"
msgstr "Tancar sessió"
#~ msgid "Logout"
#~ msgstr "Logout"
#. js-lingui-id: PTozs8
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
@@ -2629,16 +2497,6 @@ msgstr "Gestiona la teva subscripció"
msgid "Mark as done"
msgstr "Marcar com a fet"
#. js-lingui-id: 7h8ch8
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
msgid "Match columns"
msgstr ""
#. js-lingui-id: gDLior
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Match Columns"
msgstr ""
#. js-lingui-id: CK1KXz
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts
@@ -2867,12 +2725,6 @@ msgstr "Nou proveïdor SSO"
#~ msgid "New Webhook"
#~ msgstr "New Webhook"
#. js-lingui-id: AxNmtI
#: src/modules/spreadsheet-import/steps/components/SelectSheetStep/SelectSheetStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Next Step"
msgstr ""
#. js-lingui-id: OTe3RI
#: src/pages/settings/workspace/SettingsDomain.tsx
msgid "No change detected"
@@ -2888,16 +2740,6 @@ msgstr "Cap compte connectat"
msgid "No country"
msgstr "Sense país"
#. js-lingui-id: pxvJ9B
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "No data containing errors"
msgstr ""
#. js-lingui-id: dihZwh
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "No data found"
msgstr ""
#. js-lingui-id: UwvrGq
#: src/pages/settings/SettingsWorkspaceMembers.tsx
msgid "No members"
@@ -2954,11 +2796,6 @@ msgstr "No s'han trobat registres"
#~ msgid "No Result"
#~ msgstr "No Result"
#. js-lingui-id: Ev2r9A
#: src/modules/spreadsheet-import/components/MatchColumnSelect.tsx
msgid "No results"
msgstr ""
#. js-lingui-id: MA3x23
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentWorkspaceMemberPickerDropdownContent.tsx
msgid "No Results"
@@ -2991,11 +2828,6 @@ msgstr "Cap"
msgid "Norwegian"
msgstr "Noruec"
#. js-lingui-id: v3W9iu
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Not all columns matched"
msgstr ""
#. js-lingui-id: 0qBE9S
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownMenuContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownMenuContent.tsx
@@ -3291,11 +3123,6 @@ msgstr "Previsualització"
msgid "Privacy Policy"
msgstr "Política de Privacitat"
#. js-lingui-id: k1ifdL
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Processing..."
msgstr ""
#. js-lingui-id: vERlcd
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/SettingsProfile.tsx
@@ -3409,7 +3236,6 @@ msgstr "Tornar a carregar"
#. js-lingui-id: t/YqKh
#: src/modules/ui/input/components/ImageInput.tsx
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Remove"
msgstr "Elimina"
@@ -3483,15 +3309,10 @@ msgid "Restore records"
msgstr "Restaurar registres"
#. js-lingui-id: kx0s+n
#: src/modules/command-menu/hooks/useCommandMenuSearchRecords.tsx
#: src/modules/command-menu/hooks/useSearchRecords.tsx
msgid "Results"
msgstr "Resultats"
#. js-lingui-id: BohSvm
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Review your import"
msgstr ""
#. js-lingui-id: 5dJK4M
#: src/pages/settings/roles/SettingsRoles.tsx
#: src/pages/settings/roles/SettingsRoles.tsx
@@ -3532,7 +3353,6 @@ msgstr "Esquema"
#. js-lingui-id: A1taO8
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownWorkspacesListComponents.tsx
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentWorkspaceMemberPickerDropdown.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
#: src/modules/navigation/components/MainNavigationDrawerItems.tsx
#: src/modules/command-menu/hooks/useOpenRecordsSearchPageInCommandMenu.ts
@@ -3580,7 +3400,6 @@ msgstr "Cerca un índex..."
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownRecordGroupFieldsContent.tsx
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownFilterSelect.tsx
#: src/modules/object-record/advanced-filter/components/AdvancedFilterFieldSelectSearchInput.tsx
msgid "Search fields"
msgstr "Cerca camps"
@@ -3643,19 +3462,11 @@ msgstr "Veure fluxos de treball eliminats"
#. js-lingui-id: OpPn5Z
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
msgid "See runs"
msgstr "Veure les execucions"
#. js-lingui-id: gGEfj/
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
msgid "See version"
msgstr "Veure la versió"
#. js-lingui-id: EtyY4+
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
@@ -3668,52 +3479,12 @@ msgstr "Veure les versions"
msgid "See versions history"
msgstr "Veure l'historial de versions"
#. js-lingui-id: qEKLJV
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
msgid "See workflow"
msgstr "Veure el flux de treball"
#. js-lingui-id: XThiR2
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
msgid "See workflows"
msgstr "Veure els fluxos de treball"
#. js-lingui-id: WZvt/6
#: src/modules/command-menu/hooks/useWorkflowCommandMenu.ts
#: src/modules/command-menu/hooks/__tests__/useWorkflowCommandMenu.test.tsx
msgid "Select Action"
msgstr "Selecciona Acció"
#. js-lingui-id: hVPa4O
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/UnmatchColumn.tsx
msgid "Select an option"
msgstr ""
#. js-lingui-id: 21YIUv
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/TemplateColumn.tsx
msgid "Select column..."
msgstr ""
#. js-lingui-id: J6WI1B
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Select file"
msgstr ""
#. js-lingui-id: ljSvAs
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
msgid "Select header row"
msgstr ""
#. js-lingui-id: mWHn81
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Select the correct field for each column you'd like to import."
msgstr ""
#. js-lingui-id: pofGCP
#: src/modules/settings/data-model/fields/forms/boolean/components/SettingsDataModelFieldBooleanForm.tsx
msgid "Select the default value for this boolean field"
@@ -3724,11 +3495,6 @@ msgstr "Selecciona el valor predeterminat per a aquest camp booleà"
msgid "Select the events you wish to send to this endpoint"
msgstr "Selecciona els esdeveniments que vols enviar a aquest endpoint"
#. js-lingui-id: +xn1pe
#: src/modules/spreadsheet-import/steps/components/SelectSheetStep/SelectSheetStep.tsx
msgid "Select the sheet to use"
msgstr ""
#. js-lingui-id: AXTJAW
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Select your preferred language"
@@ -3833,16 +3599,6 @@ msgstr "¿Canviar l'etiqueta d'un camp hauria de canviar també el nom de l'API?
msgid "Should changing an object's label also change the API?"
msgstr "¿Canviar l'etiqueta d'un objecte hauria de canviar també l'API?"
#. js-lingui-id: qi+g0a
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Show only rows with errors"
msgstr ""
#. js-lingui-id: MHlGJL
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Show unmatched columns"
msgstr ""
#. js-lingui-id: uVg8dY
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutOpenInContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -3901,11 +3657,6 @@ msgstr "Espanyol"
msgid "SSO"
msgstr "SSO"
#. js-lingui-id: vlvAkg
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "SSO (SAML / OIDC)"
msgstr "SSO (SAML / OIDC)"
#. js-lingui-id: ErU1td
#: src/modules/views/view-picker/components/ViewPickerContentCreateMode.tsx
msgid "Stages"
@@ -3959,11 +3710,6 @@ msgstr "Assignatura i metadades seran compartides amb el teu equip."
msgid "Subject, body and attachments will be shared with your team."
msgstr "Assignatura, cos i adjunts seran compartits amb el teu equip."
#. js-lingui-id: hQRttt
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Submit"
msgstr ""
#. js-lingui-id: B5jRKH
#: src/pages/settings/SettingsBilling.tsx
msgid "Subscription has been switched {to}"
@@ -4000,11 +3746,6 @@ msgstr "Canviar {to}"
msgid "Switch billing {to}"
msgstr "Canviar facturació {to}"
#. js-lingui-id: lz+f/E
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Switch to {alternatePlanName}"
msgstr "Canviar a {alternatePlanName}"
#. js-lingui-id: 5TRY4+
#: src/modules/settings/accounts/components/SettingsAccountsConnectedAccountsRowRightContainer.tsx
msgid "Sync failed"
@@ -4145,16 +3886,6 @@ msgstr "Tema"
msgid "Theme "
msgstr "Tema "
#. js-lingui-id: /cSDOy
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "There are required columns that are not matched or ignored. Do you want to continue?"
msgstr ""
#. js-lingui-id: luL9RX
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "There are still some rows that contain errors. Rows with errors will be ignored when submitting."
msgstr ""
#. js-lingui-id: ynfkhb
#: src/pages/auth/PasswordReset.tsx
msgid "There was an error while updating password."
@@ -4298,7 +4029,6 @@ msgstr "Error desconegut"
#. js-lingui-id: GQCXQS
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Unlimited contacts"
msgstr "Contactes il·limitats"
@@ -4312,13 +4042,7 @@ msgstr "Actualitzat"
msgid "Upload"
msgstr "Pujada"
#. js-lingui-id: 7OP1Xi
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Upload .xlsx, .xls or .csv file"
msgstr ""
#. js-lingui-id: 2IXDgU
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Upload file"
msgstr "Carrega fitxer"
@@ -4395,11 +4119,6 @@ msgstr "L'usuari no està logat"
#~ msgid "Users"
#~ msgstr "Users"
#. js-lingui-id: MGeZsN
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
msgid "Validate data"
msgstr ""
#. js-lingui-id: fXVIZq
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
@@ -4614,11 +4333,6 @@ msgstr "Escriu un secret"
msgid "yes"
msgstr "sí"
#. js-lingui-id: qsAug0
#: src/modules/spreadsheet-import/components/MatchColumnSelect.tsx
msgid "You are already importing this column."
msgstr ""
#. js-lingui-id: MFDARJ
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateReadOnly.tsx
msgid "You are not allowed to create records for this object"
+10 -296
View File
@@ -87,11 +87,6 @@ msgstr "{aggregateLabel} z {fieldLabel}"
msgid "{apiKeyName} API Key"
msgstr "{apiKeyName} API klíč"
#. js-lingui-id: zi5SHH
#: src/modules/object-record/record-index/components/RecordIndexPageHeader.tsx
msgid "{contextStoreNumberOfSelectedRecords} selected"
msgstr "{contextStoreNumberOfSelectedRecords} vybrané"
#. js-lingui-id: 6j5rE1
#: src/modules/action-menu/actions/record-agnostic-actions/run-workflow-actions/hooks/useRunWorkflowActions.tsx
#: src/modules/action-menu/actions/record-actions/workflow-run-record-actions/hooks/useWorkflowRunRecordActions.tsx
@@ -105,8 +100,8 @@ msgstr "{workspaceMemberName} bude odebrán z následující role:"
#. js-lingui-id: YT0WJ4
#: src/pages/onboarding/ChooseYourPlan.tsx
#~ msgid "1 000 workflow node executions"
#~ msgstr "1 000 workflow node executions"
msgid "1 000 workflow node executions"
msgstr "1 000 spuštění uzlů Workflow"
#. js-lingui-id: vb5TwV
#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldSelect.tsx
@@ -119,11 +114,6 @@ msgstr "1. Vyberte typ pole"
msgid "1. Type"
msgstr "1. Typ"
#. js-lingui-id: AvXug3
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "10 000 workflow node executions"
msgstr "10 000 spuštění uzlu pracovního postupu"
#. js-lingui-id: 4EdXYs
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "12h ({hour12Label})"
@@ -140,11 +130,6 @@ msgstr "2. Nakonfigurujte"
msgid "2. Configure field"
msgstr "2. Nakonfigurujte pole"
#. js-lingui-id: kAtmAv
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "20 000 workflow node executions"
msgstr "20 000 spuštění uzlu pracovního postupu"
#. js-lingui-id: QsMprd
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "24h ({hour24Label})"
@@ -201,11 +186,6 @@ msgstr "Smazání účtu"
msgid "Accounts"
msgstr "Účty"
#. js-lingui-id: bwRvnp
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
msgid "Action"
msgstr "Akce"
#. js-lingui-id: 7L01XJ
#: src/modules/settings/roles/role-permissions/components/RolePermissionsSettingsTableHeader.tsx
#: src/modules/settings/roles/role-permissions/components/RolePermissionsObjectsTableHeader.tsx
@@ -252,7 +232,7 @@ msgid "Add Approved Access Domain"
msgstr "Přidat schválenou přístupovou doménu"
#. js-lingui-id: DpV70M
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionForm.tsx
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
msgid "Add Field"
msgstr "Přidat pole"
@@ -453,7 +433,6 @@ msgstr "API"
#. js-lingui-id: 0RqpZr
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "API & Webhooks"
msgstr "API & Webhooks"
@@ -537,28 +516,13 @@ msgstr "Jste si jisti, že chcete změnit interval fakturace?"
#. js-lingui-id: 8Y3Jbl
#: src/modules/action-menu/actions/record-actions/multiple-records/hooks/useDeleteMultipleRecordsAction.tsx
#~ msgid "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
#~ msgstr "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
#. js-lingui-id: 2BZAqa
#: src/modules/action-menu/actions/record-actions/multiple-records/hooks/useDeleteMultipleRecordsAction.tsx
msgid "Are you sure you want to delete these records? They can be recovered from the Command menu."
msgstr "Jste si jisti, že chcete smazat tyto záznamy? Mohou být obnoveny z příkazové nabídky."
msgid "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
msgstr "Jste si jisti, že chcete smazat tyto záznamy? Můžete je obnovit z nabídky Příkaz ({osControlSymbol} + K)."
#. js-lingui-id: Se0vJw
#: src/modules/action-menu/actions/record-actions/single-record/hooks/useDeleteSingleRecordAction.tsx
#~ msgid "Are you sure you want to delete this record? It can be recovered from the Command menu ({osControlSymbol} + K)."
#~ msgstr "Are you sure you want to delete this record? It can be recovered from the Command menu ({osControlSymbol} + K)."
#. js-lingui-id: yb2hF4
#: src/modules/action-menu/actions/record-actions/single-record/hooks/useDeleteSingleRecordAction.tsx
msgid "Are you sure you want to delete this record? It can be recovered from the Command menu."
msgstr "Jste si jisti, že chcete odstranit tento záznam? Lze jej obnovit z menu Příkazy."
#. js-lingui-id: rnCqBK
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Are you sure? Your current information will not be saved."
msgstr ""
msgid "Are you sure you want to delete this record? It can be recovered from the Command menu ({osControlSymbol} + K)."
msgstr "Jste si jisti, že chcete smazat tento záznam? Můžete jej obnovit z nabídky Příkaz ({osControlSymbol} + K)."
#. js-lingui-id: nYD/Cq
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
@@ -721,18 +685,10 @@ msgstr "Synchronizace kalendáře"
msgid "Calendars"
msgstr "Kalendáře"
#. js-lingui-id: msssZq
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "Can't change API names for standard objects"
msgstr "Nelze změnit názvy API pro standardní objekty"
#. js-lingui-id: dEgA5A
#: src/pages/auth/Authorize.tsx
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
msgid "Cancel"
msgstr "Storno"
@@ -839,11 +795,6 @@ msgstr "Zavřít"
msgid "Close command menu"
msgstr "Zavřít příkazové menu"
#. js-lingui-id: EWPtMO
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
msgid "Code"
msgstr "Kód"
#. js-lingui-id: H86f9p
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
@@ -856,11 +807,6 @@ msgstr "Sbalit"
msgid "Color code"
msgstr "Barevný kód"
#. js-lingui-id: 93hd3e
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Columns not matched:"
msgstr ""
#. js-lingui-id: NM9bMd
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
msgid "Compact view"
@@ -892,7 +838,6 @@ msgid "Configure your emails and calendar settings."
msgstr "Nakonfigurujte nastavení svých e-mailů a kalendáře."
#. js-lingui-id: 7VpPHA
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentConfirmationModal.tsx
msgid "Confirm"
msgstr "Potvrdit"
@@ -938,8 +883,6 @@ msgstr "Kontext"
#: src/pages/onboarding/CreateWorkspace.tsx
#: src/pages/onboarding/CreateProfile.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx
msgid "Continue"
msgstr "Pokračovat"
@@ -1004,11 +947,6 @@ msgstr "Zkopírujte tento klíč, nebude již znovu viditelný"
msgid "Core"
msgstr "Jádro"
#. js-lingui-id: w5Stxm
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Correct the issues and fill the missing data."
msgstr ""
#. js-lingui-id: wBMjJ2
#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterMenuContent.tsx
#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterDropdownContent.tsx
@@ -1130,7 +1068,6 @@ msgstr "Vlastní doména aktualizována"
#. js-lingui-id: 8skTDV
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Custom objects"
msgstr "Vlastní objekty"
@@ -1443,11 +1380,6 @@ msgstr "Zobrazit jako relativní datum"
msgid "Display text on multiple lines"
msgstr "Zobrazit text na více řádcích"
#. js-lingui-id: ji7sqw
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/TemplateColumn.tsx
msgid "Do not import"
msgstr ""
#. js-lingui-id: U9q4zF
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
msgid "Doesn't contain"
@@ -1491,11 +1423,6 @@ msgstr "Nesynchronizovat e-maily z team@ support@ noreply@..."
msgid "Download file"
msgstr "Stáhnout soubor"
#. js-lingui-id: 6D/BnN
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Drop file here..."
msgstr ""
#. js-lingui-id: KIjvtr
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
msgid "Dutch"
@@ -1553,7 +1480,6 @@ msgstr "Upravit název vaší subdomény nebo nastavit vlastní doménu."
#: src/pages/settings/SettingsWorkspaceMembers.tsx
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/auth/PasswordReset.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentTableHeader.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
msgid "Email"
@@ -1571,7 +1497,6 @@ msgstr "Email nesmí být prázdný"
#. js-lingui-id: lfQsvW
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Email integration"
msgstr "Integrace e-mailů"
@@ -1781,21 +1706,11 @@ msgstr "Vyloučit následující lidi a domény z mé synchronizace emailů. Int
msgid "Existing objects"
msgstr "Stávající objekty"
#. js-lingui-id: ydzS9x
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Exit"
msgstr ""
#. js-lingui-id: LFNXuj
#: src/modules/ui/layout/fullscreen/components/FullScreenContainer.tsx
msgid "Exit Full Screen"
msgstr "Ukončit režim celé obrazovky"
#. js-lingui-id: XB4onr
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Exit import flow"
msgstr ""
#. js-lingui-id: IZ4o2e
#: src/modules/navigation/components/AppNavigationDrawer.tsx
msgid "Exit Settings"
@@ -1981,11 +1896,6 @@ msgstr "Filtr"
msgid "Filters"
msgstr "Filtry"
#. js-lingui-id: SNdnlf
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Finish flow with errors"
msgstr ""
#. js-lingui-id: USZ2N6
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
msgid "Finnish"
@@ -2034,7 +1944,6 @@ msgstr "z ročního na měsíční"
#. js-lingui-id: scmRyR
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Full access"
msgstr "Plný přístup"
@@ -2072,24 +1981,11 @@ msgstr "Získejte své předplatné"
msgid "Global"
msgstr "Globální"
#. js-lingui-id: iS69s6
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
msgid "Go to runs"
msgstr "Přejít na spuštění"
#. js-lingui-id: mT57+Q
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
msgid "Go to Settings"
msgstr "Přejít do nastavení"
#. js-lingui-id: A5WHZY
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
msgid "Go to workflows"
msgstr "Přejít na pracovní postupy"
#. js-lingui-id: hWp1MY
#: src/pages/settings/SettingsWorkspace.tsx
msgid "Grant Twenty support temporary access to your workspace so we can troubleshoot problems or recover content on your behalf. You can revoke access at any time."
@@ -2149,34 +2045,6 @@ msgstr "Skrytá pole"
msgid "Hide"
msgstr "Skrýt"
#. js-lingui-id: OlbYor
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
msgid "Hide deleted"
msgstr "Skrýt smazané"
#. js-lingui-id: FHhlye
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
msgid "Hide deleted records"
msgstr "Skrýt smazané záznamy"
#. js-lingui-id: 0dZtKR
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
msgid "Hide deleted runs"
msgstr "Skrýt smazaná spuštění"
#. js-lingui-id: Jc6FrI
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
msgid "Hide deleted versions"
msgstr "Skrýt smazané verze"
#. js-lingui-id: aOZAIB
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
msgid "Hide deleted workflows"
msgstr "Skryt smazané pracovní postupy"
#. js-lingui-id: HS8BG/
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownRecordGroupsContent.tsx
msgid "Hide empty groups"
@@ -2584,8 +2452,8 @@ msgstr "Odhlásit se"
#. js-lingui-id: nOhz3x
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
msgid "Logout"
msgstr "Odhlásit"
#~ msgid "Logout"
#~ msgstr "Logout"
#. js-lingui-id: PTozs8
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
@@ -2629,16 +2497,6 @@ msgstr "Spravujte své předplatné"
msgid "Mark as done"
msgstr "Označit jako hotovo"
#. js-lingui-id: 7h8ch8
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
msgid "Match columns"
msgstr ""
#. js-lingui-id: gDLior
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Match Columns"
msgstr ""
#. js-lingui-id: CK1KXz
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts
@@ -2867,12 +2725,6 @@ msgstr "Nový poskytovatel SSO"
#~ msgid "New Webhook"
#~ msgstr "New Webhook"
#. js-lingui-id: AxNmtI
#: src/modules/spreadsheet-import/steps/components/SelectSheetStep/SelectSheetStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Next Step"
msgstr ""
#. js-lingui-id: OTe3RI
#: src/pages/settings/workspace/SettingsDomain.tsx
msgid "No change detected"
@@ -2888,16 +2740,6 @@ msgstr "Žádný propojený účet"
msgid "No country"
msgstr "Žádná země"
#. js-lingui-id: pxvJ9B
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "No data containing errors"
msgstr ""
#. js-lingui-id: dihZwh
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "No data found"
msgstr ""
#. js-lingui-id: UwvrGq
#: src/pages/settings/SettingsWorkspaceMembers.tsx
msgid "No members"
@@ -2954,11 +2796,6 @@ msgstr "Žádné záznamy nenalezeny"
#~ msgid "No Result"
#~ msgstr "No Result"
#. js-lingui-id: Ev2r9A
#: src/modules/spreadsheet-import/components/MatchColumnSelect.tsx
msgid "No results"
msgstr ""
#. js-lingui-id: MA3x23
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentWorkspaceMemberPickerDropdownContent.tsx
msgid "No Results"
@@ -2991,11 +2828,6 @@ msgstr "Žádný"
msgid "Norwegian"
msgstr "Norština"
#. js-lingui-id: v3W9iu
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Not all columns matched"
msgstr ""
#. js-lingui-id: 0qBE9S
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownMenuContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownMenuContent.tsx
@@ -3291,11 +3123,6 @@ msgstr "Náhled"
msgid "Privacy Policy"
msgstr "Zásady ochrany osobních údajů"
#. js-lingui-id: k1ifdL
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Processing..."
msgstr ""
#. js-lingui-id: vERlcd
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/SettingsProfile.tsx
@@ -3409,7 +3236,6 @@ msgstr "Načíst znovu"
#. js-lingui-id: t/YqKh
#: src/modules/ui/input/components/ImageInput.tsx
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Remove"
msgstr "Odstranit"
@@ -3483,15 +3309,10 @@ msgid "Restore records"
msgstr "Obnovit záznamy"
#. js-lingui-id: kx0s+n
#: src/modules/command-menu/hooks/useCommandMenuSearchRecords.tsx
#: src/modules/command-menu/hooks/useSearchRecords.tsx
msgid "Results"
msgstr "Výsledky"
#. js-lingui-id: BohSvm
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Review your import"
msgstr ""
#. js-lingui-id: 5dJK4M
#: src/pages/settings/roles/SettingsRoles.tsx
#: src/pages/settings/roles/SettingsRoles.tsx
@@ -3532,7 +3353,6 @@ msgstr "Schéma"
#. js-lingui-id: A1taO8
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownWorkspacesListComponents.tsx
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentWorkspaceMemberPickerDropdown.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
#: src/modules/navigation/components/MainNavigationDrawerItems.tsx
#: src/modules/command-menu/hooks/useOpenRecordsSearchPageInCommandMenu.ts
@@ -3580,7 +3400,6 @@ msgstr "Hledat v indexu..."
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownRecordGroupFieldsContent.tsx
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownFilterSelect.tsx
#: src/modules/object-record/advanced-filter/components/AdvancedFilterFieldSelectSearchInput.tsx
msgid "Search fields"
msgstr "Hledání ve sloupcích"
@@ -3643,19 +3462,11 @@ msgstr "Zobrazit smazané pracovní postupy"
#. js-lingui-id: OpPn5Z
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
msgid "See runs"
msgstr "Zobrazit spuštění"
#. js-lingui-id: gGEfj/
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
msgid "See version"
msgstr "Zobrazit verzi"
#. js-lingui-id: EtyY4+
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
@@ -3668,52 +3479,12 @@ msgstr "Zobrazit verze"
msgid "See versions history"
msgstr "Zobrazit historii verzí"
#. js-lingui-id: qEKLJV
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
msgid "See workflow"
msgstr "Zobrazit pracovní postup"
#. js-lingui-id: XThiR2
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
msgid "See workflows"
msgstr "Zobrazit pracovní postupy"
#. js-lingui-id: WZvt/6
#: src/modules/command-menu/hooks/useWorkflowCommandMenu.ts
#: src/modules/command-menu/hooks/__tests__/useWorkflowCommandMenu.test.tsx
msgid "Select Action"
msgstr "Vybrat akci"
#. js-lingui-id: hVPa4O
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/UnmatchColumn.tsx
msgid "Select an option"
msgstr ""
#. js-lingui-id: 21YIUv
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/TemplateColumn.tsx
msgid "Select column..."
msgstr ""
#. js-lingui-id: J6WI1B
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Select file"
msgstr ""
#. js-lingui-id: ljSvAs
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
msgid "Select header row"
msgstr ""
#. js-lingui-id: mWHn81
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Select the correct field for each column you'd like to import."
msgstr ""
#. js-lingui-id: pofGCP
#: src/modules/settings/data-model/fields/forms/boolean/components/SettingsDataModelFieldBooleanForm.tsx
msgid "Select the default value for this boolean field"
@@ -3724,11 +3495,6 @@ msgstr "Vyberte výchozí hodnotu pro toto logické pole"
msgid "Select the events you wish to send to this endpoint"
msgstr "Vyberte události, které chcete poslat na tento koncový bod"
#. js-lingui-id: +xn1pe
#: src/modules/spreadsheet-import/steps/components/SelectSheetStep/SelectSheetStep.tsx
msgid "Select the sheet to use"
msgstr ""
#. js-lingui-id: AXTJAW
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Select your preferred language"
@@ -3833,16 +3599,6 @@ msgstr "Měla by změna popisku pole změnit také API název?"
msgid "Should changing an object's label also change the API?"
msgstr "Měla by změna popisku objektu změnit také API?"
#. js-lingui-id: qi+g0a
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Show only rows with errors"
msgstr ""
#. js-lingui-id: MHlGJL
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Show unmatched columns"
msgstr ""
#. js-lingui-id: uVg8dY
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutOpenInContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -3901,11 +3657,6 @@ msgstr "Španělština"
msgid "SSO"
msgstr "Jednotné přihlášení"
#. js-lingui-id: vlvAkg
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "SSO (SAML / OIDC)"
msgstr "SSO (SAML / OIDC)"
#. js-lingui-id: ErU1td
#: src/modules/views/view-picker/components/ViewPickerContentCreateMode.tsx
msgid "Stages"
@@ -3959,11 +3710,6 @@ msgstr "Předmět a metadata budou sdíleny s vaším týmem."
msgid "Subject, body and attachments will be shared with your team."
msgstr "Předmět, obsah a přílohy budou sdíleny s vaším týmem."
#. js-lingui-id: hQRttt
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Submit"
msgstr ""
#. js-lingui-id: B5jRKH
#: src/pages/settings/SettingsBilling.tsx
msgid "Subscription has been switched {to}"
@@ -4000,11 +3746,6 @@ msgstr "Přepnout {to}"
msgid "Switch billing {to}"
msgstr "Přepnout fakturaci {to}"
#. js-lingui-id: lz+f/E
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Switch to {alternatePlanName}"
msgstr "Přepnout na {alternatePlanName}"
#. js-lingui-id: 5TRY4+
#: src/modules/settings/accounts/components/SettingsAccountsConnectedAccountsRowRightContainer.tsx
msgid "Sync failed"
@@ -4145,16 +3886,6 @@ msgstr "Téma"
msgid "Theme "
msgstr "Téma "
#. js-lingui-id: /cSDOy
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "There are required columns that are not matched or ignored. Do you want to continue?"
msgstr ""
#. js-lingui-id: luL9RX
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "There are still some rows that contain errors. Rows with errors will be ignored when submitting."
msgstr ""
#. js-lingui-id: ynfkhb
#: src/pages/auth/PasswordReset.tsx
msgid "There was an error while updating password."
@@ -4298,7 +4029,6 @@ msgstr "Neznámá chyba"
#. js-lingui-id: GQCXQS
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Unlimited contacts"
msgstr "Neomezený počet kontaktů"
@@ -4312,13 +4042,7 @@ msgstr "Aktualizováno"
msgid "Upload"
msgstr "Nahrát"
#. js-lingui-id: 7OP1Xi
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Upload .xlsx, .xls or .csv file"
msgstr ""
#. js-lingui-id: 2IXDgU
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Upload file"
msgstr "Nahrát soubor"
@@ -4395,11 +4119,6 @@ msgstr "Uživatel není přihlášen"
#~ msgid "Users"
#~ msgstr "Users"
#. js-lingui-id: MGeZsN
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
msgid "Validate data"
msgstr ""
#. js-lingui-id: fXVIZq
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
@@ -4614,11 +4333,6 @@ msgstr "Napište tajemství"
msgid "yes"
msgstr "ano"
#. js-lingui-id: qsAug0
#: src/modules/spreadsheet-import/components/MatchColumnSelect.tsx
msgid "You are already importing this column."
msgstr ""
#. js-lingui-id: MFDARJ
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateReadOnly.tsx
msgid "You are not allowed to create records for this object"
+10 -296
View File
@@ -87,11 +87,6 @@ msgstr "{aggregateLabel} af {fieldLabel}"
msgid "{apiKeyName} API Key"
msgstr "{apiKeyName} API-nøgle"
#. js-lingui-id: zi5SHH
#: src/modules/object-record/record-index/components/RecordIndexPageHeader.tsx
msgid "{contextStoreNumberOfSelectedRecords} selected"
msgstr "{contextStoreNumberOfSelectedRecords} valgt"
#. js-lingui-id: 6j5rE1
#: src/modules/action-menu/actions/record-agnostic-actions/run-workflow-actions/hooks/useRunWorkflowActions.tsx
#: src/modules/action-menu/actions/record-actions/workflow-run-record-actions/hooks/useWorkflowRunRecordActions.tsx
@@ -105,8 +100,8 @@ msgstr "{workspaceMemberName} vil blive fjernet fra f\\u00f8lgende rolle:"
#. js-lingui-id: YT0WJ4
#: src/pages/onboarding/ChooseYourPlan.tsx
#~ msgid "1 000 workflow node executions"
#~ msgstr "1 000 workflow node executions"
msgid "1 000 workflow node executions"
msgstr "1 000 workflow node eksekveringer"
#. js-lingui-id: vb5TwV
#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldSelect.tsx
@@ -119,11 +114,6 @@ msgstr "1. Vælg en felttype"
msgid "1. Type"
msgstr "1. Skriv"
#. js-lingui-id: AvXug3
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "10 000 workflow node executions"
msgstr "10 000 workflow node eksekveringer"
#. js-lingui-id: 4EdXYs
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "12h ({hour12Label})"
@@ -140,11 +130,6 @@ msgstr "2. Konfigurer"
msgid "2. Configure field"
msgstr "2. Konfigurer felt"
#. js-lingui-id: kAtmAv
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "20 000 workflow node executions"
msgstr "20 000 workflow node eksekveringer"
#. js-lingui-id: QsMprd
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "24h ({hour24Label})"
@@ -201,11 +186,6 @@ msgstr "Konto Sletning"
msgid "Accounts"
msgstr "Konti"
#. js-lingui-id: bwRvnp
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
msgid "Action"
msgstr "Handling"
#. js-lingui-id: 7L01XJ
#: src/modules/settings/roles/role-permissions/components/RolePermissionsSettingsTableHeader.tsx
#: src/modules/settings/roles/role-permissions/components/RolePermissionsObjectsTableHeader.tsx
@@ -252,7 +232,7 @@ msgid "Add Approved Access Domain"
msgstr "Tilføj godkendt adgangsdomæne"
#. js-lingui-id: DpV70M
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionForm.tsx
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
msgid "Add Field"
msgstr "Tilføj Felt"
@@ -453,7 +433,6 @@ msgstr "API"
#. js-lingui-id: 0RqpZr
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "API & Webhooks"
msgstr "API & Webhooks"
@@ -537,28 +516,13 @@ msgstr "Er du sikker på, at du vil ændre din faktureringsperiode?"
#. js-lingui-id: 8Y3Jbl
#: src/modules/action-menu/actions/record-actions/multiple-records/hooks/useDeleteMultipleRecordsAction.tsx
#~ msgid "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
#~ msgstr "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
#. js-lingui-id: 2BZAqa
#: src/modules/action-menu/actions/record-actions/multiple-records/hooks/useDeleteMultipleRecordsAction.tsx
msgid "Are you sure you want to delete these records? They can be recovered from the Command menu."
msgstr "Er du sikker på, at du vil slette disse poster? De kan gendannes fra Kommandomenuen."
msgid "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
msgstr "Er du sikker på, at du vil slette disse poster? De kan gendannes fra Kommandomenuen ({osControlSymbol} + K)."
#. js-lingui-id: Se0vJw
#: src/modules/action-menu/actions/record-actions/single-record/hooks/useDeleteSingleRecordAction.tsx
#~ msgid "Are you sure you want to delete this record? It can be recovered from the Command menu ({osControlSymbol} + K)."
#~ msgstr "Are you sure you want to delete this record? It can be recovered from the Command menu ({osControlSymbol} + K)."
#. js-lingui-id: yb2hF4
#: src/modules/action-menu/actions/record-actions/single-record/hooks/useDeleteSingleRecordAction.tsx
msgid "Are you sure you want to delete this record? It can be recovered from the Command menu."
msgstr "Er du sikker på, at du vil slette denne post? Den kan gendannes fra Kommandomenuen."
#. js-lingui-id: rnCqBK
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Are you sure? Your current information will not be saved."
msgstr ""
msgid "Are you sure you want to delete this record? It can be recovered from the Command menu ({osControlSymbol} + K)."
msgstr "Er du sikker på, at du vil slette denne post? Den kan gendannes fra Kommandomenuen ({osControlSymbol} + K)."
#. js-lingui-id: nYD/Cq
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
@@ -721,18 +685,10 @@ msgstr "Kalendersynkronisering"
msgid "Calendars"
msgstr "Kalendere"
#. js-lingui-id: msssZq
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "Can't change API names for standard objects"
msgstr "Kan ikke ændre API-navne for standardobjekter"
#. js-lingui-id: dEgA5A
#: src/pages/auth/Authorize.tsx
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
msgid "Cancel"
msgstr "Annuller"
@@ -839,11 +795,6 @@ msgstr "Luk"
msgid "Close command menu"
msgstr "Luk kommandomenu"
#. js-lingui-id: EWPtMO
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
msgid "Code"
msgstr "Kode"
#. js-lingui-id: H86f9p
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
@@ -856,11 +807,6 @@ msgstr "Skjul"
msgid "Color code"
msgstr "Farvekode"
#. js-lingui-id: 93hd3e
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Columns not matched:"
msgstr ""
#. js-lingui-id: NM9bMd
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
msgid "Compact view"
@@ -892,7 +838,6 @@ msgid "Configure your emails and calendar settings."
msgstr "Konfigurer dine e-mails og kalenderindstillinger."
#. js-lingui-id: 7VpPHA
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentConfirmationModal.tsx
msgid "Confirm"
msgstr "Bekr\\u00e6ft"
@@ -938,8 +883,6 @@ msgstr "Kontekst"
#: src/pages/onboarding/CreateWorkspace.tsx
#: src/pages/onboarding/CreateProfile.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx
msgid "Continue"
msgstr "Fortsæt"
@@ -1004,11 +947,6 @@ msgstr "Kopiér denne nøgle, da den ikke vil være synlig igen"
msgid "Core"
msgstr "Kerne"
#. js-lingui-id: w5Stxm
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Correct the issues and fill the missing data."
msgstr ""
#. js-lingui-id: wBMjJ2
#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterMenuContent.tsx
#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterDropdownContent.tsx
@@ -1130,7 +1068,6 @@ msgstr "Brugerdefineret domæne opdateret"
#. js-lingui-id: 8skTDV
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Custom objects"
msgstr "Tilpassede objekter"
@@ -1443,11 +1380,6 @@ msgstr "Vis som relativ dato"
msgid "Display text on multiple lines"
msgstr "Vis tekst på flere linjer"
#. js-lingui-id: ji7sqw
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/TemplateColumn.tsx
msgid "Do not import"
msgstr ""
#. js-lingui-id: U9q4zF
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
msgid "Doesn't contain"
@@ -1491,11 +1423,6 @@ msgstr "Synkronisér ikke e-mails fra team@ support@ noreply@..."
msgid "Download file"
msgstr "Download fil"
#. js-lingui-id: 6D/BnN
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Drop file here..."
msgstr ""
#. js-lingui-id: KIjvtr
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
msgid "Dutch"
@@ -1553,7 +1480,6 @@ msgstr "Rediger dit underdomænenavn eller sæt et brugerdefineret domæne."
#: src/pages/settings/SettingsWorkspaceMembers.tsx
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/auth/PasswordReset.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentTableHeader.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
msgid "Email"
@@ -1571,7 +1497,6 @@ msgstr "E-mail kan ikke være tom"
#. js-lingui-id: lfQsvW
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Email integration"
msgstr "E-mailintegration"
@@ -1781,21 +1706,11 @@ msgstr "Ekskluder følgende personer og domæner fra min e-mail-synkronisering.
msgid "Existing objects"
msgstr "Eksisterende objekter"
#. js-lingui-id: ydzS9x
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Exit"
msgstr ""
#. js-lingui-id: LFNXuj
#: src/modules/ui/layout/fullscreen/components/FullScreenContainer.tsx
msgid "Exit Full Screen"
msgstr "Afslut fuld skærm"
#. js-lingui-id: XB4onr
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Exit import flow"
msgstr ""
#. js-lingui-id: IZ4o2e
#: src/modules/navigation/components/AppNavigationDrawer.tsx
msgid "Exit Settings"
@@ -1981,11 +1896,6 @@ msgstr "Filtrér"
msgid "Filters"
msgstr "Filtre"
#. js-lingui-id: SNdnlf
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Finish flow with errors"
msgstr ""
#. js-lingui-id: USZ2N6
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
msgid "Finnish"
@@ -2034,7 +1944,6 @@ msgstr "fra årligt til månedligt"
#. js-lingui-id: scmRyR
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Full access"
msgstr "Fuld adgang"
@@ -2072,24 +1981,11 @@ msgstr "Få dit abonnement"
msgid "Global"
msgstr "Globalt"
#. js-lingui-id: iS69s6
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
msgid "Go to runs"
msgstr "Gå til kørsler"
#. js-lingui-id: mT57+Q
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
msgid "Go to Settings"
msgstr "Gå til indstillinger"
#. js-lingui-id: A5WHZY
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
msgid "Go to workflows"
msgstr "Gå til arbejdsprocesser"
#. js-lingui-id: hWp1MY
#: src/pages/settings/SettingsWorkspace.tsx
msgid "Grant Twenty support temporary access to your workspace so we can troubleshoot problems or recover content on your behalf. You can revoke access at any time."
@@ -2149,34 +2045,6 @@ msgstr "Skjulte felter"
msgid "Hide"
msgstr "Skjul"
#. js-lingui-id: OlbYor
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
msgid "Hide deleted"
msgstr "Skjul slettet"
#. js-lingui-id: FHhlye
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
msgid "Hide deleted records"
msgstr "Skjul slettede poster"
#. js-lingui-id: 0dZtKR
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
msgid "Hide deleted runs"
msgstr "Skjul slettede gennemløb"
#. js-lingui-id: Jc6FrI
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
msgid "Hide deleted versions"
msgstr "Skjul slettede versioner"
#. js-lingui-id: aOZAIB
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
msgid "Hide deleted workflows"
msgstr "Skjul slettede arbejdsprocesser"
#. js-lingui-id: HS8BG/
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownRecordGroupsContent.tsx
msgid "Hide empty groups"
@@ -2584,8 +2452,8 @@ msgstr "Log ud"
#. js-lingui-id: nOhz3x
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
msgid "Logout"
msgstr "Logud"
#~ msgid "Logout"
#~ msgstr "Logout"
#. js-lingui-id: PTozs8
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
@@ -2629,16 +2497,6 @@ msgstr "Administrer dit abonnement"
msgid "Mark as done"
msgstr "Marker som udført"
#. js-lingui-id: 7h8ch8
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
msgid "Match columns"
msgstr ""
#. js-lingui-id: gDLior
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Match Columns"
msgstr ""
#. js-lingui-id: CK1KXz
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts
@@ -2867,12 +2725,6 @@ msgstr "Ny SSO-udbyder"
#~ msgid "New Webhook"
#~ msgstr "New Webhook"
#. js-lingui-id: AxNmtI
#: src/modules/spreadsheet-import/steps/components/SelectSheetStep/SelectSheetStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Next Step"
msgstr ""
#. js-lingui-id: OTe3RI
#: src/pages/settings/workspace/SettingsDomain.tsx
msgid "No change detected"
@@ -2888,16 +2740,6 @@ msgstr "Ingen tilknyttet konto"
msgid "No country"
msgstr "Intet land"
#. js-lingui-id: pxvJ9B
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "No data containing errors"
msgstr ""
#. js-lingui-id: dihZwh
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "No data found"
msgstr ""
#. js-lingui-id: UwvrGq
#: src/pages/settings/SettingsWorkspaceMembers.tsx
msgid "No members"
@@ -2954,11 +2796,6 @@ msgstr "Ingen poster fundet"
#~ msgid "No Result"
#~ msgstr "No Result"
#. js-lingui-id: Ev2r9A
#: src/modules/spreadsheet-import/components/MatchColumnSelect.tsx
msgid "No results"
msgstr ""
#. js-lingui-id: MA3x23
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentWorkspaceMemberPickerDropdownContent.tsx
msgid "No Results"
@@ -2991,11 +2828,6 @@ msgstr "Ingen"
msgid "Norwegian"
msgstr "Norsk"
#. js-lingui-id: v3W9iu
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Not all columns matched"
msgstr ""
#. js-lingui-id: 0qBE9S
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownMenuContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownMenuContent.tsx
@@ -3291,11 +3123,6 @@ msgstr "Forhåndsvisning"
msgid "Privacy Policy"
msgstr "Privatlivspolitik"
#. js-lingui-id: k1ifdL
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Processing..."
msgstr ""
#. js-lingui-id: vERlcd
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/SettingsProfile.tsx
@@ -3409,7 +3236,6 @@ msgstr "Genindlæs"
#. js-lingui-id: t/YqKh
#: src/modules/ui/input/components/ImageInput.tsx
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Remove"
msgstr "Fjern"
@@ -3483,15 +3309,10 @@ msgid "Restore records"
msgstr "Gendan poster"
#. js-lingui-id: kx0s+n
#: src/modules/command-menu/hooks/useCommandMenuSearchRecords.tsx
#: src/modules/command-menu/hooks/useSearchRecords.tsx
msgid "Results"
msgstr "Resultater"
#. js-lingui-id: BohSvm
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Review your import"
msgstr ""
#. js-lingui-id: 5dJK4M
#: src/pages/settings/roles/SettingsRoles.tsx
#: src/pages/settings/roles/SettingsRoles.tsx
@@ -3532,7 +3353,6 @@ msgstr "Skema"
#. js-lingui-id: A1taO8
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownWorkspacesListComponents.tsx
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentWorkspaceMemberPickerDropdown.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
#: src/modules/navigation/components/MainNavigationDrawerItems.tsx
#: src/modules/command-menu/hooks/useOpenRecordsSearchPageInCommandMenu.ts
@@ -3580,7 +3400,6 @@ msgstr "Søg i et indeks..."
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownRecordGroupFieldsContent.tsx
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownFilterSelect.tsx
#: src/modules/object-record/advanced-filter/components/AdvancedFilterFieldSelectSearchInput.tsx
msgid "Search fields"
msgstr "Søg felter"
@@ -3643,19 +3462,11 @@ msgstr "Se slettede arbejdsprocesser"
#. js-lingui-id: OpPn5Z
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
msgid "See runs"
msgstr "Se kørsler"
#. js-lingui-id: gGEfj/
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
msgid "See version"
msgstr "Se version"
#. js-lingui-id: EtyY4+
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
@@ -3668,52 +3479,12 @@ msgstr "Se versioner"
msgid "See versions history"
msgstr "Se versionshistorik"
#. js-lingui-id: qEKLJV
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
msgid "See workflow"
msgstr "Se arbejdsproces"
#. js-lingui-id: XThiR2
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
msgid "See workflows"
msgstr "Se arbejdsprocesser"
#. js-lingui-id: WZvt/6
#: src/modules/command-menu/hooks/useWorkflowCommandMenu.ts
#: src/modules/command-menu/hooks/__tests__/useWorkflowCommandMenu.test.tsx
msgid "Select Action"
msgstr "Vælg handling"
#. js-lingui-id: hVPa4O
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/UnmatchColumn.tsx
msgid "Select an option"
msgstr ""
#. js-lingui-id: 21YIUv
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/TemplateColumn.tsx
msgid "Select column..."
msgstr ""
#. js-lingui-id: J6WI1B
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Select file"
msgstr ""
#. js-lingui-id: ljSvAs
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
msgid "Select header row"
msgstr ""
#. js-lingui-id: mWHn81
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Select the correct field for each column you'd like to import."
msgstr ""
#. js-lingui-id: pofGCP
#: src/modules/settings/data-model/fields/forms/boolean/components/SettingsDataModelFieldBooleanForm.tsx
msgid "Select the default value for this boolean field"
@@ -3724,11 +3495,6 @@ msgstr "Vælg standardværdien for dette booleske felt"
msgid "Select the events you wish to send to this endpoint"
msgstr "Vælg de begivenheder du ønsker at sende til dette endepunkt"
#. js-lingui-id: +xn1pe
#: src/modules/spreadsheet-import/steps/components/SelectSheetStep/SelectSheetStep.tsx
msgid "Select the sheet to use"
msgstr ""
#. js-lingui-id: AXTJAW
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Select your preferred language"
@@ -3833,16 +3599,6 @@ msgstr "Skal det at ændre et felts etiket også ændre API-navnet?"
msgid "Should changing an object's label also change the API?"
msgstr "Skal \\u00e6ndring af et objekts etiket ogs\\u00e5 \\u00e6ndre API'et?"
#. js-lingui-id: qi+g0a
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Show only rows with errors"
msgstr ""
#. js-lingui-id: MHlGJL
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Show unmatched columns"
msgstr ""
#. js-lingui-id: uVg8dY
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutOpenInContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -3901,11 +3657,6 @@ msgstr "Spansk"
msgid "SSO"
msgstr "SSO"
#. js-lingui-id: vlvAkg
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "SSO (SAML / OIDC)"
msgstr "SSO (SAML / OIDC)"
#. js-lingui-id: ErU1td
#: src/modules/views/view-picker/components/ViewPickerContentCreateMode.tsx
msgid "Stages"
@@ -3959,11 +3710,6 @@ msgstr "Emne og metadata vil blive delt med dit team."
msgid "Subject, body and attachments will be shared with your team."
msgstr "Emne, krop og vedhæftede filer vil blive delt med dit team."
#. js-lingui-id: hQRttt
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Submit"
msgstr ""
#. js-lingui-id: B5jRKH
#: src/pages/settings/SettingsBilling.tsx
msgid "Subscription has been switched {to}"
@@ -4000,11 +3746,6 @@ msgstr "Skift {to}"
msgid "Switch billing {to}"
msgstr "Skift fakturering {to}"
#. js-lingui-id: lz+f/E
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Switch to {alternatePlanName}"
msgstr "Skift til {alternatePlanName}"
#. js-lingui-id: 5TRY4+
#: src/modules/settings/accounts/components/SettingsAccountsConnectedAccountsRowRightContainer.tsx
msgid "Sync failed"
@@ -4145,16 +3886,6 @@ msgstr "Tema"
msgid "Theme "
msgstr "Tema "
#. js-lingui-id: /cSDOy
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "There are required columns that are not matched or ignored. Do you want to continue?"
msgstr ""
#. js-lingui-id: luL9RX
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "There are still some rows that contain errors. Rows with errors will be ignored when submitting."
msgstr ""
#. js-lingui-id: ynfkhb
#: src/pages/auth/PasswordReset.tsx
msgid "There was an error while updating password."
@@ -4298,7 +4029,6 @@ msgstr "Ukendt fejl"
#. js-lingui-id: GQCXQS
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Unlimited contacts"
msgstr "Ubegrænsede kontakter"
@@ -4312,13 +4042,7 @@ msgstr "Opdateret"
msgid "Upload"
msgstr "Upload"
#. js-lingui-id: 7OP1Xi
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Upload .xlsx, .xls or .csv file"
msgstr ""
#. js-lingui-id: 2IXDgU
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Upload file"
msgstr "Upload fil"
@@ -4395,11 +4119,6 @@ msgstr "Bruger er ikke logget ind"
#~ msgid "Users"
#~ msgstr "Users"
#. js-lingui-id: MGeZsN
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
msgid "Validate data"
msgstr ""
#. js-lingui-id: fXVIZq
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
@@ -4614,11 +4333,6 @@ msgstr "Skriv en hemmelighed"
msgid "yes"
msgstr "ja"
#. js-lingui-id: qsAug0
#: src/modules/spreadsheet-import/components/MatchColumnSelect.tsx
msgid "You are already importing this column."
msgstr ""
#. js-lingui-id: MFDARJ
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateReadOnly.tsx
msgid "You are not allowed to create records for this object"
+10 -296
View File
@@ -87,11 +87,6 @@ msgstr "{aggregateLabel} von {fieldLabel}"
msgid "{apiKeyName} API Key"
msgstr "{apiKeyName} API-Schlüssel"
#. js-lingui-id: zi5SHH
#: src/modules/object-record/record-index/components/RecordIndexPageHeader.tsx
msgid "{contextStoreNumberOfSelectedRecords} selected"
msgstr "{contextStoreNumberOfSelectedRecords} ausgewählt"
#. js-lingui-id: 6j5rE1
#: src/modules/action-menu/actions/record-agnostic-actions/run-workflow-actions/hooks/useRunWorkflowActions.tsx
#: src/modules/action-menu/actions/record-actions/workflow-run-record-actions/hooks/useWorkflowRunRecordActions.tsx
@@ -105,8 +100,8 @@ msgstr "{workspaceMemberName} wird von folgender Rolle abgezogen:"
#. js-lingui-id: YT0WJ4
#: src/pages/onboarding/ChooseYourPlan.tsx
#~ msgid "1 000 workflow node executions"
#~ msgstr "1 000 workflow node executions"
msgid "1 000 workflow node executions"
msgstr "1.000 Workflow-Knotenausführungen"
#. js-lingui-id: vb5TwV
#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldSelect.tsx
@@ -119,11 +114,6 @@ msgstr "1. Wählen Sie einen Feldtyp aus"
msgid "1. Type"
msgstr "1. Typ"
#. js-lingui-id: AvXug3
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "10 000 workflow node executions"
msgstr "10.000 Workflow-Knotenausführungen"
#. js-lingui-id: 4EdXYs
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "12h ({hour12Label})"
@@ -140,11 +130,6 @@ msgstr "2. Konfigurieren"
msgid "2. Configure field"
msgstr "2. Feld konfigurieren"
#. js-lingui-id: kAtmAv
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "20 000 workflow node executions"
msgstr "20.000 Workflow-Knotenausführungen"
#. js-lingui-id: QsMprd
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "24h ({hour24Label})"
@@ -201,11 +186,6 @@ msgstr "Kontolöschung"
msgid "Accounts"
msgstr "Konten"
#. js-lingui-id: bwRvnp
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
msgid "Action"
msgstr "Aktion"
#. js-lingui-id: 7L01XJ
#: src/modules/settings/roles/role-permissions/components/RolePermissionsSettingsTableHeader.tsx
#: src/modules/settings/roles/role-permissions/components/RolePermissionsObjectsTableHeader.tsx
@@ -252,7 +232,7 @@ msgid "Add Approved Access Domain"
msgstr "Genehmigte Zugriffsdomäne hinzufügen"
#. js-lingui-id: DpV70M
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionForm.tsx
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
msgid "Add Field"
msgstr "Feld hinzufügen"
@@ -453,7 +433,6 @@ msgstr "API"
#. js-lingui-id: 0RqpZr
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "API & Webhooks"
msgstr "API & Webhooks"
@@ -537,28 +516,13 @@ msgstr "Sind Sie sicher, dass Sie Ihr Abrechnungsintervall ändern möchten?"
#. js-lingui-id: 8Y3Jbl
#: src/modules/action-menu/actions/record-actions/multiple-records/hooks/useDeleteMultipleRecordsAction.tsx
#~ msgid "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
#~ msgstr "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
#. js-lingui-id: 2BZAqa
#: src/modules/action-menu/actions/record-actions/multiple-records/hooks/useDeleteMultipleRecordsAction.tsx
msgid "Are you sure you want to delete these records? They can be recovered from the Command menu."
msgstr "Sind Sie sicher, dass Sie diese Datensätze löschen möchten? Sie können aus dem Befehlsmenü wiederhergestellt werden."
msgid "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
msgstr "Sind Sie sicher, dass Sie diese Datensätze löschen möchten? Sie können aus dem Befehlsmenü ({osControlSymbol} + K) wiederhergestellt werden."
#. js-lingui-id: Se0vJw
#: src/modules/action-menu/actions/record-actions/single-record/hooks/useDeleteSingleRecordAction.tsx
#~ msgid "Are you sure you want to delete this record? It can be recovered from the Command menu ({osControlSymbol} + K)."
#~ msgstr "Are you sure you want to delete this record? It can be recovered from the Command menu ({osControlSymbol} + K)."
#. js-lingui-id: yb2hF4
#: src/modules/action-menu/actions/record-actions/single-record/hooks/useDeleteSingleRecordAction.tsx
msgid "Are you sure you want to delete this record? It can be recovered from the Command menu."
msgstr "Sind Sie sicher, dass Sie diesen Datensatz löschen möchten? Er kann aus dem Befehlsmenü wiederhergestellt werden."
#. js-lingui-id: rnCqBK
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Are you sure? Your current information will not be saved."
msgstr ""
msgid "Are you sure you want to delete this record? It can be recovered from the Command menu ({osControlSymbol} + K)."
msgstr "Sind Sie sicher, dass Sie diesen Datensatz löschen möchten? Er kann aus dem Befehlsmenü ({osControlSymbol} + K) wiederhergestellt werden."
#. js-lingui-id: nYD/Cq
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
@@ -721,18 +685,10 @@ msgstr "Kalender-Synchronisierung"
msgid "Calendars"
msgstr "Kalender"
#. js-lingui-id: msssZq
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "Can't change API names for standard objects"
msgstr "API-Namen für Standardobjekte können nicht geändert werden"
#. js-lingui-id: dEgA5A
#: src/pages/auth/Authorize.tsx
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
msgid "Cancel"
msgstr "Abbrechen"
@@ -839,11 +795,6 @@ msgstr "Schließen"
msgid "Close command menu"
msgstr "Befehlsmenü schließen"
#. js-lingui-id: EWPtMO
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
msgid "Code"
msgstr "Code"
#. js-lingui-id: H86f9p
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
@@ -856,11 +807,6 @@ msgstr "Einklappen"
msgid "Color code"
msgstr "Farbcode"
#. js-lingui-id: 93hd3e
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Columns not matched:"
msgstr ""
#. js-lingui-id: NM9bMd
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
msgid "Compact view"
@@ -892,7 +838,6 @@ msgid "Configure your emails and calendar settings."
msgstr "E-Mail- und Kalendereinstellungen konfigurieren."
#. js-lingui-id: 7VpPHA
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentConfirmationModal.tsx
msgid "Confirm"
msgstr "Best\\u00e4tigen"
@@ -938,8 +883,6 @@ msgstr "Kontext"
#: src/pages/onboarding/CreateWorkspace.tsx
#: src/pages/onboarding/CreateProfile.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx
msgid "Continue"
msgstr "Weiter"
@@ -1004,11 +947,6 @@ msgstr "Diesen Schlüssel kopieren, da er nicht mehr sichtbar sein wird"
msgid "Core"
msgstr "Kern"
#. js-lingui-id: w5Stxm
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Correct the issues and fill the missing data."
msgstr ""
#. js-lingui-id: wBMjJ2
#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterMenuContent.tsx
#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterDropdownContent.tsx
@@ -1130,7 +1068,6 @@ msgstr "Benutzerdefinierte Domain aktualisiert"
#. js-lingui-id: 8skTDV
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Custom objects"
msgstr "Benutzerdefinierte Objekte"
@@ -1443,11 +1380,6 @@ msgstr "Als relatives Datum anzeigen"
msgid "Display text on multiple lines"
msgstr "Text auf mehreren Zeilen anzeigen"
#. js-lingui-id: ji7sqw
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/TemplateColumn.tsx
msgid "Do not import"
msgstr ""
#. js-lingui-id: U9q4zF
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
msgid "Doesn't contain"
@@ -1491,11 +1423,6 @@ msgstr "Kein E-Mail-Sync von team@ support@ noreply@..."
msgid "Download file"
msgstr "Datei herunterladen"
#. js-lingui-id: 6D/BnN
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Drop file here..."
msgstr ""
#. js-lingui-id: KIjvtr
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
msgid "Dutch"
@@ -1553,7 +1480,6 @@ msgstr "Bearbeiten Sie den Namen Ihrer Subdomain oder legen Sie eine benutzerdef
#: src/pages/settings/SettingsWorkspaceMembers.tsx
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/auth/PasswordReset.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentTableHeader.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
msgid "Email"
@@ -1571,7 +1497,6 @@ msgstr "E-Mail darf nicht leer sein"
#. js-lingui-id: lfQsvW
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Email integration"
msgstr "E-Mail-Integration"
@@ -1781,21 +1706,11 @@ msgstr "Folgende Personen und Domains von meiner E-Mail-Synchronisation ausschli
msgid "Existing objects"
msgstr "Vorhandene Objekte"
#. js-lingui-id: ydzS9x
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Exit"
msgstr ""
#. js-lingui-id: LFNXuj
#: src/modules/ui/layout/fullscreen/components/FullScreenContainer.tsx
msgid "Exit Full Screen"
msgstr "Vollbildmodus beenden"
#. js-lingui-id: XB4onr
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Exit import flow"
msgstr ""
#. js-lingui-id: IZ4o2e
#: src/modules/navigation/components/AppNavigationDrawer.tsx
msgid "Exit Settings"
@@ -1981,11 +1896,6 @@ msgstr "Filter"
msgid "Filters"
msgstr "Filter"
#. js-lingui-id: SNdnlf
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Finish flow with errors"
msgstr ""
#. js-lingui-id: USZ2N6
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
msgid "Finnish"
@@ -2034,7 +1944,6 @@ msgstr "von jährlich zu monatlich"
#. js-lingui-id: scmRyR
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Full access"
msgstr "Vollzugriff"
@@ -2072,24 +1981,11 @@ msgstr "Abonnement abschließen"
msgid "Global"
msgstr "Global"
#. js-lingui-id: iS69s6
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
msgid "Go to runs"
msgstr "Zu den Läufen gehen"
#. js-lingui-id: mT57+Q
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
msgid "Go to Settings"
msgstr "Zu den Einstellungen gehen"
#. js-lingui-id: A5WHZY
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
msgid "Go to workflows"
msgstr "Zu Workflows gehen"
#. js-lingui-id: hWp1MY
#: src/pages/settings/SettingsWorkspace.tsx
msgid "Grant Twenty support temporary access to your workspace so we can troubleshoot problems or recover content on your behalf. You can revoke access at any time."
@@ -2149,34 +2045,6 @@ msgstr "Versteckte Felder"
msgid "Hide"
msgstr "Ausblenden"
#. js-lingui-id: OlbYor
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
msgid "Hide deleted"
msgstr "Gelöschtes ausblenden"
#. js-lingui-id: FHhlye
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
msgid "Hide deleted records"
msgstr "Gelöschte Datensätze ausblenden"
#. js-lingui-id: 0dZtKR
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
msgid "Hide deleted runs"
msgstr "Gelöschte Ausführungen ausblenden"
#. js-lingui-id: Jc6FrI
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
msgid "Hide deleted versions"
msgstr "Gelöschte Versionen ausblenden"
#. js-lingui-id: aOZAIB
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
msgid "Hide deleted workflows"
msgstr "Gelöschte Workflows ausblenden"
#. js-lingui-id: HS8BG/
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownRecordGroupsContent.tsx
msgid "Hide empty groups"
@@ -2584,8 +2452,8 @@ msgstr "Abmelden"
#. js-lingui-id: nOhz3x
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
msgid "Logout"
msgstr "Abmelden"
#~ msgid "Logout"
#~ msgstr "Logout"
#. js-lingui-id: PTozs8
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
@@ -2629,16 +2497,6 @@ msgstr "Abonnement verwalten"
msgid "Mark as done"
msgstr "Als erledigt markieren"
#. js-lingui-id: 7h8ch8
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
msgid "Match columns"
msgstr ""
#. js-lingui-id: gDLior
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Match Columns"
msgstr ""
#. js-lingui-id: CK1KXz
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts
@@ -2867,12 +2725,6 @@ msgstr "Neuer SSO-Anbieter"
#~ msgid "New Webhook"
#~ msgstr "New Webhook"
#. js-lingui-id: AxNmtI
#: src/modules/spreadsheet-import/steps/components/SelectSheetStep/SelectSheetStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Next Step"
msgstr ""
#. js-lingui-id: OTe3RI
#: src/pages/settings/workspace/SettingsDomain.tsx
msgid "No change detected"
@@ -2888,16 +2740,6 @@ msgstr "Kein verbundenes Konto"
msgid "No country"
msgstr "Kein Land"
#. js-lingui-id: pxvJ9B
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "No data containing errors"
msgstr ""
#. js-lingui-id: dihZwh
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "No data found"
msgstr ""
#. js-lingui-id: UwvrGq
#: src/pages/settings/SettingsWorkspaceMembers.tsx
msgid "No members"
@@ -2954,11 +2796,6 @@ msgstr "Keine Einträge gefunden"
#~ msgid "No Result"
#~ msgstr "No Result"
#. js-lingui-id: Ev2r9A
#: src/modules/spreadsheet-import/components/MatchColumnSelect.tsx
msgid "No results"
msgstr ""
#. js-lingui-id: MA3x23
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentWorkspaceMemberPickerDropdownContent.tsx
msgid "No Results"
@@ -2991,11 +2828,6 @@ msgstr "Keine"
msgid "Norwegian"
msgstr "Norwegisch"
#. js-lingui-id: v3W9iu
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Not all columns matched"
msgstr ""
#. js-lingui-id: 0qBE9S
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownMenuContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownMenuContent.tsx
@@ -3291,11 +3123,6 @@ msgstr "Vorschau"
msgid "Privacy Policy"
msgstr "Datenschutzrichtlinie"
#. js-lingui-id: k1ifdL
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Processing..."
msgstr ""
#. js-lingui-id: vERlcd
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/SettingsProfile.tsx
@@ -3409,7 +3236,6 @@ msgstr "Neu laden"
#. js-lingui-id: t/YqKh
#: src/modules/ui/input/components/ImageInput.tsx
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Remove"
msgstr "Entfernen"
@@ -3483,15 +3309,10 @@ msgid "Restore records"
msgstr "Datensätze wiederherstellen"
#. js-lingui-id: kx0s+n
#: src/modules/command-menu/hooks/useCommandMenuSearchRecords.tsx
#: src/modules/command-menu/hooks/useSearchRecords.tsx
msgid "Results"
msgstr "Ergebnisse"
#. js-lingui-id: BohSvm
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Review your import"
msgstr ""
#. js-lingui-id: 5dJK4M
#: src/pages/settings/roles/SettingsRoles.tsx
#: src/pages/settings/roles/SettingsRoles.tsx
@@ -3532,7 +3353,6 @@ msgstr "Schema"
#. js-lingui-id: A1taO8
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownWorkspacesListComponents.tsx
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentWorkspaceMemberPickerDropdown.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
#: src/modules/navigation/components/MainNavigationDrawerItems.tsx
#: src/modules/command-menu/hooks/useOpenRecordsSearchPageInCommandMenu.ts
@@ -3580,7 +3400,6 @@ msgstr "Index suchen..."
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownRecordGroupFieldsContent.tsx
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownFilterSelect.tsx
#: src/modules/object-record/advanced-filter/components/AdvancedFilterFieldSelectSearchInput.tsx
msgid "Search fields"
msgstr "Felder suchen"
@@ -3643,19 +3462,11 @@ msgstr "Gelöschte Workflows anzeigen"
#. js-lingui-id: OpPn5Z
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
msgid "See runs"
msgstr "Läufe anzeigen"
#. js-lingui-id: gGEfj/
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
msgid "See version"
msgstr "Version anzeigen"
#. js-lingui-id: EtyY4+
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
@@ -3668,52 +3479,12 @@ msgstr "Versionen anzeigen"
msgid "See versions history"
msgstr "Versionsverlauf anzeigen"
#. js-lingui-id: qEKLJV
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
msgid "See workflow"
msgstr "Workflow anzeigen"
#. js-lingui-id: XThiR2
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
msgid "See workflows"
msgstr "Workflows anzeigen"
#. js-lingui-id: WZvt/6
#: src/modules/command-menu/hooks/useWorkflowCommandMenu.ts
#: src/modules/command-menu/hooks/__tests__/useWorkflowCommandMenu.test.tsx
msgid "Select Action"
msgstr "Aktion auswählen"
#. js-lingui-id: hVPa4O
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/UnmatchColumn.tsx
msgid "Select an option"
msgstr ""
#. js-lingui-id: 21YIUv
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/TemplateColumn.tsx
msgid "Select column..."
msgstr ""
#. js-lingui-id: J6WI1B
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Select file"
msgstr ""
#. js-lingui-id: ljSvAs
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
msgid "Select header row"
msgstr ""
#. js-lingui-id: mWHn81
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Select the correct field for each column you'd like to import."
msgstr ""
#. js-lingui-id: pofGCP
#: src/modules/settings/data-model/fields/forms/boolean/components/SettingsDataModelFieldBooleanForm.tsx
msgid "Select the default value for this boolean field"
@@ -3724,11 +3495,6 @@ msgstr "Wählen Sie den Standardwert für dieses boolesche Feld aus"
msgid "Select the events you wish to send to this endpoint"
msgstr "Wählen Sie die Ereignisse aus, die Sie an diesen Endpunkt senden möchten"
#. js-lingui-id: +xn1pe
#: src/modules/spreadsheet-import/steps/components/SelectSheetStep/SelectSheetStep.tsx
msgid "Select the sheet to use"
msgstr ""
#. js-lingui-id: AXTJAW
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Select your preferred language"
@@ -3833,16 +3599,6 @@ msgstr "Sollte die Änderung einer Feldbezeichnung auch den API-Namen ändern?"
msgid "Should changing an object's label also change the API?"
msgstr "Sollte die Änderung eines Objektnamens auch den API-Namen ändern?"
#. js-lingui-id: qi+g0a
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Show only rows with errors"
msgstr ""
#. js-lingui-id: MHlGJL
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Show unmatched columns"
msgstr ""
#. js-lingui-id: uVg8dY
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutOpenInContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -3901,11 +3657,6 @@ msgstr "Spanisch"
msgid "SSO"
msgstr "SSO"
#. js-lingui-id: vlvAkg
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "SSO (SAML / OIDC)"
msgstr "SSO (SAML / OIDC)"
#. js-lingui-id: ErU1td
#: src/modules/views/view-picker/components/ViewPickerContentCreateMode.tsx
msgid "Stages"
@@ -3959,11 +3710,6 @@ msgstr "Betreff und Metadaten werden mit Ihrem Team geteilt."
msgid "Subject, body and attachments will be shared with your team."
msgstr "Betreff, Text und Anlagen werden mit Ihrem Team geteilt."
#. js-lingui-id: hQRttt
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Submit"
msgstr ""
#. js-lingui-id: B5jRKH
#: src/pages/settings/SettingsBilling.tsx
msgid "Subscription has been switched {to}"
@@ -4000,11 +3746,6 @@ msgstr "Wechseln zu {to}"
msgid "Switch billing {to}"
msgstr "Abrechnung auf {to} umstellen"
#. js-lingui-id: lz+f/E
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Switch to {alternatePlanName}"
msgstr "Zu {alternatePlanName} wechseln"
#. js-lingui-id: 5TRY4+
#: src/modules/settings/accounts/components/SettingsAccountsConnectedAccountsRowRightContainer.tsx
msgid "Sync failed"
@@ -4145,16 +3886,6 @@ msgstr "Thema"
msgid "Theme "
msgstr "Thema "
#. js-lingui-id: /cSDOy
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "There are required columns that are not matched or ignored. Do you want to continue?"
msgstr ""
#. js-lingui-id: luL9RX
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "There are still some rows that contain errors. Rows with errors will be ignored when submitting."
msgstr ""
#. js-lingui-id: ynfkhb
#: src/pages/auth/PasswordReset.tsx
msgid "There was an error while updating password."
@@ -4298,7 +4029,6 @@ msgstr "Unbekannter Fehler"
#. js-lingui-id: GQCXQS
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Unlimited contacts"
msgstr "Unbegrenzte Kontakte"
@@ -4312,13 +4042,7 @@ msgstr "Aktualisiert"
msgid "Upload"
msgstr "Hochladen"
#. js-lingui-id: 7OP1Xi
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Upload .xlsx, .xls or .csv file"
msgstr ""
#. js-lingui-id: 2IXDgU
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Upload file"
msgstr "Datei hochladen"
@@ -4395,11 +4119,6 @@ msgstr "Benutzer ist nicht eingeloggt"
#~ msgid "Users"
#~ msgstr "Users"
#. js-lingui-id: MGeZsN
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
msgid "Validate data"
msgstr ""
#. js-lingui-id: fXVIZq
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
@@ -4614,11 +4333,6 @@ msgstr "Ein Geheimnis schreiben"
msgid "yes"
msgstr "ja"
#. js-lingui-id: qsAug0
#: src/modules/spreadsheet-import/components/MatchColumnSelect.tsx
msgid "You are already importing this column."
msgstr ""
#. js-lingui-id: MFDARJ
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateReadOnly.tsx
msgid "You are not allowed to create records for this object"
+10 -296
View File
@@ -87,11 +87,6 @@ msgstr "{aggregateLabel} του {fieldLabel}"
msgid "{apiKeyName} API Key"
msgstr "API Key {apiKeyName}"
#. js-lingui-id: zi5SHH
#: src/modules/object-record/record-index/components/RecordIndexPageHeader.tsx
msgid "{contextStoreNumberOfSelectedRecords} selected"
msgstr "{contextStoreNumberOfSelectedRecords} επιλεγμένα"
#. js-lingui-id: 6j5rE1
#: src/modules/action-menu/actions/record-agnostic-actions/run-workflow-actions/hooks/useRunWorkflowActions.tsx
#: src/modules/action-menu/actions/record-actions/workflow-run-record-actions/hooks/useWorkflowRunRecordActions.tsx
@@ -105,8 +100,8 @@ msgstr "Ο χρήστης {workspaceMemberName} θα αποδεσμευτεί α
#. js-lingui-id: YT0WJ4
#: src/pages/onboarding/ChooseYourPlan.tsx
#~ msgid "1 000 workflow node executions"
#~ msgstr "1 000 workflow node executions"
msgid "1 000 workflow node executions"
msgstr "1 000 εκτελέσεις κόμβων διεργασιών"
#. js-lingui-id: vb5TwV
#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldSelect.tsx
@@ -119,11 +114,6 @@ msgstr "1. Επιλέξτε έναν τύπο πεδίου"
msgid "1. Type"
msgstr "1. Τύπος"
#. js-lingui-id: AvXug3
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "10 000 workflow node executions"
msgstr "10 000 εκτελέσεις κόμβου ροής εργασιών"
#. js-lingui-id: 4EdXYs
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "12h ({hour12Label})"
@@ -140,11 +130,6 @@ msgstr "2. Διαμόρφωση"
msgid "2. Configure field"
msgstr "2. Διαμόρφωση πεδίου"
#. js-lingui-id: kAtmAv
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "20 000 workflow node executions"
msgstr "20 000 εκτελέσεις κόμβου ροής εργασιών"
#. js-lingui-id: QsMprd
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "24h ({hour24Label})"
@@ -201,11 +186,6 @@ msgstr "Διαγραφή Λογαριασμού"
msgid "Accounts"
msgstr "Λογαριασμοί"
#. js-lingui-id: bwRvnp
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
msgid "Action"
msgstr "Ενέργεια"
#. js-lingui-id: 7L01XJ
#: src/modules/settings/roles/role-permissions/components/RolePermissionsSettingsTableHeader.tsx
#: src/modules/settings/roles/role-permissions/components/RolePermissionsObjectsTableHeader.tsx
@@ -252,7 +232,7 @@ msgid "Add Approved Access Domain"
msgstr "Προσθήκη Εγκεκριμένου Τομέα Πρόσβασης"
#. js-lingui-id: DpV70M
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionForm.tsx
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
msgid "Add Field"
msgstr "Προσθήκη Πεδίου"
@@ -453,7 +433,6 @@ msgstr "API"
#. js-lingui-id: 0RqpZr
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "API & Webhooks"
msgstr "API & Webhooks"
@@ -537,28 +516,13 @@ msgstr "Είστε βέβαιοι ότι θέλετε να αλλάξετε το
#. js-lingui-id: 8Y3Jbl
#: src/modules/action-menu/actions/record-actions/multiple-records/hooks/useDeleteMultipleRecordsAction.tsx
#~ msgid "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
#~ msgstr "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
#. js-lingui-id: 2BZAqa
#: src/modules/action-menu/actions/record-actions/multiple-records/hooks/useDeleteMultipleRecordsAction.tsx
msgid "Are you sure you want to delete these records? They can be recovered from the Command menu."
msgstr "Είστε βέβαιοι ότι θέλετε να διαγράψετε αυτές τις εγγραφές; Μπορούν να αποκατασταθούν από το μενού Εντολών."
msgid "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
msgstr "Είστε βέβαιοι ότι θέλετε να διαγράψετε αυτές τις εγγραφές; Μπορούν να αποκατασταθούν από το μενού Εντολών ({osControlSymbol} + K)."
#. js-lingui-id: Se0vJw
#: src/modules/action-menu/actions/record-actions/single-record/hooks/useDeleteSingleRecordAction.tsx
#~ msgid "Are you sure you want to delete this record? It can be recovered from the Command menu ({osControlSymbol} + K)."
#~ msgstr "Are you sure you want to delete this record? It can be recovered from the Command menu ({osControlSymbol} + K)."
#. js-lingui-id: yb2hF4
#: src/modules/action-menu/actions/record-actions/single-record/hooks/useDeleteSingleRecordAction.tsx
msgid "Are you sure you want to delete this record? It can be recovered from the Command menu."
msgstr "Είστε βέβαιοι ότι θέλετε να διαγράψετε αυτήν την εγγραφή; Μπορεί να αποκατασταθεί από το μενού Εντολών."
#. js-lingui-id: rnCqBK
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Are you sure? Your current information will not be saved."
msgstr ""
msgid "Are you sure you want to delete this record? It can be recovered from the Command menu ({osControlSymbol} + K)."
msgstr "Είστε βέβαιοι ότι θέλετε να διαγράψετε αυτήν την εγγραφή; Μπορεί να αποκατασταθεί από το μενού Εντολών ({osControlSymbol} + K)."
#. js-lingui-id: nYD/Cq
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
@@ -721,18 +685,10 @@ msgstr "Συγχρονισμός Ημερολογίου"
msgid "Calendars"
msgstr "Ημερολόγια"
#. js-lingui-id: msssZq
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "Can't change API names for standard objects"
msgstr "Δεν είναι δυνατή η αλλαγή των ονομάτων API για τυπικά αντικείμενα"
#. js-lingui-id: dEgA5A
#: src/pages/auth/Authorize.tsx
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
msgid "Cancel"
msgstr "Ακύρωση"
@@ -839,11 +795,6 @@ msgstr "Κλείσιμο"
msgid "Close command menu"
msgstr "Κλείσιμο μενού εντολών"
#. js-lingui-id: EWPtMO
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
msgid "Code"
msgstr "Κωδικός"
#. js-lingui-id: H86f9p
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
@@ -856,11 +807,6 @@ msgstr "Σύμπτυξη"
msgid "Color code"
msgstr "Κωδικός χρώματος"
#. js-lingui-id: 93hd3e
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Columns not matched:"
msgstr ""
#. js-lingui-id: NM9bMd
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
msgid "Compact view"
@@ -892,7 +838,6 @@ msgid "Configure your emails and calendar settings."
msgstr "Ρυθμίστε τις ρυθμίσεις email και ημερολογίου σας."
#. js-lingui-id: 7VpPHA
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentConfirmationModal.tsx
msgid "Confirm"
msgstr "Επιβεβαίωση"
@@ -938,8 +883,6 @@ msgstr "Περιβάλλον"
#: src/pages/onboarding/CreateWorkspace.tsx
#: src/pages/onboarding/CreateProfile.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx
msgid "Continue"
msgstr "Συνέχεια"
@@ -1004,11 +947,6 @@ msgstr "Αντιγράψτε αυτό το κλειδί γιατί δεν θα
msgid "Core"
msgstr "Πυρήνας"
#. js-lingui-id: w5Stxm
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Correct the issues and fill the missing data."
msgstr ""
#. js-lingui-id: wBMjJ2
#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterMenuContent.tsx
#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterDropdownContent.tsx
@@ -1130,7 +1068,6 @@ msgstr "Προσαρμοσμένος τομέας ενημερώθηκε"
#. js-lingui-id: 8skTDV
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Custom objects"
msgstr "Προσαρμοσμένα αντικείμενα"
@@ -1443,11 +1380,6 @@ msgstr "Εμφάνιση σε σχετική ημερομηνία"
msgid "Display text on multiple lines"
msgstr "Εμφανίστε το κείμενο σε πολλαπλές γραμμές"
#. js-lingui-id: ji7sqw
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/TemplateColumn.tsx
msgid "Do not import"
msgstr ""
#. js-lingui-id: U9q4zF
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
msgid "Doesn't contain"
@@ -1491,11 +1423,6 @@ msgstr "Μην συγχρονίζετε email από team@ support@ noreply@..."
msgid "Download file"
msgstr "Λήψη αρχείου"
#. js-lingui-id: 6D/BnN
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Drop file here..."
msgstr ""
#. js-lingui-id: KIjvtr
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
msgid "Dutch"
@@ -1553,7 +1480,6 @@ msgstr "Επεξεργαστείτε το όνομα του υποτομέα σ
#: src/pages/settings/SettingsWorkspaceMembers.tsx
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/auth/PasswordReset.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentTableHeader.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
msgid "Email"
@@ -1571,7 +1497,6 @@ msgstr "Το email δεν μπορεί να είναι κενό"
#. js-lingui-id: lfQsvW
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Email integration"
msgstr "Ενσωμάτωση με email"
@@ -1781,21 +1706,11 @@ msgstr "Εξαιρέστε τα παρακάτω άτομα και τομείς
msgid "Existing objects"
msgstr "Υπάρχοντα αντικείμενα"
#. js-lingui-id: ydzS9x
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Exit"
msgstr ""
#. js-lingui-id: LFNXuj
#: src/modules/ui/layout/fullscreen/components/FullScreenContainer.tsx
msgid "Exit Full Screen"
msgstr "Έξοδος από την Πλήρη Οθόνη"
#. js-lingui-id: XB4onr
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Exit import flow"
msgstr ""
#. js-lingui-id: IZ4o2e
#: src/modules/navigation/components/AppNavigationDrawer.tsx
msgid "Exit Settings"
@@ -1981,11 +1896,6 @@ msgstr "Φίλτρο"
msgid "Filters"
msgstr "Φίλτρα"
#. js-lingui-id: SNdnlf
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Finish flow with errors"
msgstr ""
#. js-lingui-id: USZ2N6
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
msgid "Finnish"
@@ -2034,7 +1944,6 @@ msgstr "από ετήσιο σε μηνιαίο"
#. js-lingui-id: scmRyR
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Full access"
msgstr "Πλήρης πρόσβαση"
@@ -2072,24 +1981,11 @@ msgstr "Αποκτήστε τη συνδρομή σας"
msgid "Global"
msgstr "Παγκόσμιο"
#. js-lingui-id: iS69s6
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
msgid "Go to runs"
msgstr "Πήγαινε στις εκτελέσεις"
#. js-lingui-id: mT57+Q
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
msgid "Go to Settings"
msgstr "Μετάβαση στις Ρυθμίσεις"
#. js-lingui-id: A5WHZY
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
msgid "Go to workflows"
msgstr "Μετάβαση στις ροές εργασίας"
#. js-lingui-id: hWp1MY
#: src/pages/settings/SettingsWorkspace.tsx
msgid "Grant Twenty support temporary access to your workspace so we can troubleshoot problems or recover content on your behalf. You can revoke access at any time."
@@ -2149,34 +2045,6 @@ msgstr "Κρυφά Πεδία"
msgid "Hide"
msgstr "Απόκρυψη"
#. js-lingui-id: OlbYor
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
msgid "Hide deleted"
msgstr "Απόκρυψη διαγραμμένων"
#. js-lingui-id: FHhlye
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
msgid "Hide deleted records"
msgstr "Απόκρυψη διαγραμμένων εγγραφών"
#. js-lingui-id: 0dZtKR
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
msgid "Hide deleted runs"
msgstr "Απόκρυψη διαγραμμένων εκτελέσεων"
#. js-lingui-id: Jc6FrI
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
msgid "Hide deleted versions"
msgstr "Απόκρυψη διαγραμμένων εκδόσεων"
#. js-lingui-id: aOZAIB
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
msgid "Hide deleted workflows"
msgstr "Απόκρυψη διαγραμμένων workflows"
#. js-lingui-id: HS8BG/
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownRecordGroupsContent.tsx
msgid "Hide empty groups"
@@ -2584,8 +2452,8 @@ msgstr "Αποσύνδεση"
#. js-lingui-id: nOhz3x
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
msgid "Logout"
msgstr "Αποσύνδεση"
#~ msgid "Logout"
#~ msgstr "Logout"
#. js-lingui-id: PTozs8
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
@@ -2629,16 +2497,6 @@ msgstr "Διαχείριση της συνδρομής σας"
msgid "Mark as done"
msgstr "Σημειώστε ως ολοκληρωμένο"
#. js-lingui-id: 7h8ch8
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
msgid "Match columns"
msgstr ""
#. js-lingui-id: gDLior
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Match Columns"
msgstr ""
#. js-lingui-id: CK1KXz
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts
@@ -2867,12 +2725,6 @@ msgstr "Νέος πάροχος SSO"
#~ msgid "New Webhook"
#~ msgstr "New Webhook"
#. js-lingui-id: AxNmtI
#: src/modules/spreadsheet-import/steps/components/SelectSheetStep/SelectSheetStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Next Step"
msgstr ""
#. js-lingui-id: OTe3RI
#: src/pages/settings/workspace/SettingsDomain.tsx
msgid "No change detected"
@@ -2888,16 +2740,6 @@ msgstr "Κανένας συνδεδεμένος λογαριασμός"
msgid "No country"
msgstr "Χωρίς χώρα"
#. js-lingui-id: pxvJ9B
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "No data containing errors"
msgstr ""
#. js-lingui-id: dihZwh
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "No data found"
msgstr ""
#. js-lingui-id: UwvrGq
#: src/pages/settings/SettingsWorkspaceMembers.tsx
msgid "No members"
@@ -2954,11 +2796,6 @@ msgstr "Δεν βρέθηκαν εγγραφές"
#~ msgid "No Result"
#~ msgstr "No Result"
#. js-lingui-id: Ev2r9A
#: src/modules/spreadsheet-import/components/MatchColumnSelect.tsx
msgid "No results"
msgstr ""
#. js-lingui-id: MA3x23
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentWorkspaceMemberPickerDropdownContent.tsx
msgid "No Results"
@@ -2991,11 +2828,6 @@ msgstr "Κανένα"
msgid "Norwegian"
msgstr "Νορβηγικά"
#. js-lingui-id: v3W9iu
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Not all columns matched"
msgstr ""
#. js-lingui-id: 0qBE9S
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownMenuContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownMenuContent.tsx
@@ -3291,11 +3123,6 @@ msgstr "Προεπισκόπηση"
msgid "Privacy Policy"
msgstr "Πολιτική Απορρήτου"
#. js-lingui-id: k1ifdL
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Processing..."
msgstr ""
#. js-lingui-id: vERlcd
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/SettingsProfile.tsx
@@ -3409,7 +3236,6 @@ msgstr "Ανανέωση"
#. js-lingui-id: t/YqKh
#: src/modules/ui/input/components/ImageInput.tsx
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Remove"
msgstr "Αφαίρεση"
@@ -3483,15 +3309,10 @@ msgid "Restore records"
msgstr "Επαναφορά εγγραφών"
#. js-lingui-id: kx0s+n
#: src/modules/command-menu/hooks/useCommandMenuSearchRecords.tsx
#: src/modules/command-menu/hooks/useSearchRecords.tsx
msgid "Results"
msgstr "Αποτελέσματα"
#. js-lingui-id: BohSvm
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Review your import"
msgstr ""
#. js-lingui-id: 5dJK4M
#: src/pages/settings/roles/SettingsRoles.tsx
#: src/pages/settings/roles/SettingsRoles.tsx
@@ -3532,7 +3353,6 @@ msgstr "Σχήμα"
#. js-lingui-id: A1taO8
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownWorkspacesListComponents.tsx
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentWorkspaceMemberPickerDropdown.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
#: src/modules/navigation/components/MainNavigationDrawerItems.tsx
#: src/modules/command-menu/hooks/useOpenRecordsSearchPageInCommandMenu.ts
@@ -3580,7 +3400,6 @@ msgstr "Αναζήτηση ευρετηρίου..."
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownRecordGroupFieldsContent.tsx
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownFilterSelect.tsx
#: src/modules/object-record/advanced-filter/components/AdvancedFilterFieldSelectSearchInput.tsx
msgid "Search fields"
msgstr "Αναζήτηση πεδίων"
@@ -3643,19 +3462,11 @@ msgstr "Δείτε διαγραμμένα workflows"
#. js-lingui-id: OpPn5Z
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
msgid "See runs"
msgstr "Δείτε τις εκτελέσεις"
#. js-lingui-id: gGEfj/
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
msgid "See version"
msgstr "Δείτε την έκδοση"
#. js-lingui-id: EtyY4+
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
@@ -3668,52 +3479,12 @@ msgstr "Δείτε τις εκδόσεις"
msgid "See versions history"
msgstr "Δείτε το ιστορικό των εκδόσεων"
#. js-lingui-id: qEKLJV
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
msgid "See workflow"
msgstr "Δείτε τη ροή εργασίας"
#. js-lingui-id: XThiR2
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
msgid "See workflows"
msgstr "Δείτε τις ροές εργασίας"
#. js-lingui-id: WZvt/6
#: src/modules/command-menu/hooks/useWorkflowCommandMenu.ts
#: src/modules/command-menu/hooks/__tests__/useWorkflowCommandMenu.test.tsx
msgid "Select Action"
msgstr "Επιλέξτε Ενέργεια"
#. js-lingui-id: hVPa4O
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/UnmatchColumn.tsx
msgid "Select an option"
msgstr ""
#. js-lingui-id: 21YIUv
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/TemplateColumn.tsx
msgid "Select column..."
msgstr ""
#. js-lingui-id: J6WI1B
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Select file"
msgstr ""
#. js-lingui-id: ljSvAs
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
msgid "Select header row"
msgstr ""
#. js-lingui-id: mWHn81
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Select the correct field for each column you'd like to import."
msgstr ""
#. js-lingui-id: pofGCP
#: src/modules/settings/data-model/fields/forms/boolean/components/SettingsDataModelFieldBooleanForm.tsx
msgid "Select the default value for this boolean field"
@@ -3724,11 +3495,6 @@ msgstr "Επιλέξτε την προεπιλεγμένη τιμή για αυ
msgid "Select the events you wish to send to this endpoint"
msgstr "Επιλέξτε τα γεγονότα που επιθυμείτε να στείλετε σε αυτό το τελικό σημείο"
#. js-lingui-id: +xn1pe
#: src/modules/spreadsheet-import/steps/components/SelectSheetStep/SelectSheetStep.tsx
msgid "Select the sheet to use"
msgstr ""
#. js-lingui-id: AXTJAW
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Select your preferred language"
@@ -3833,16 +3599,6 @@ msgstr "Θα πρέπει η αλλαγή της ετικέτας ενός πε
msgid "Should changing an object's label also change the API?"
msgstr "Πρέπει η αλλαγή της ετικέτας ενός αντικειμένου να αλλάζει επίσης το API;"
#. js-lingui-id: qi+g0a
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Show only rows with errors"
msgstr ""
#. js-lingui-id: MHlGJL
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Show unmatched columns"
msgstr ""
#. js-lingui-id: uVg8dY
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutOpenInContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -3901,11 +3657,6 @@ msgstr "Ισπανικά"
msgid "SSO"
msgstr "Ενιαίο Σύστημα Εισόδου"
#. js-lingui-id: vlvAkg
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "SSO (SAML / OIDC)"
msgstr "SSO (SAML / OIDC)"
#. js-lingui-id: ErU1td
#: src/modules/views/view-picker/components/ViewPickerContentCreateMode.tsx
msgid "Stages"
@@ -3959,11 +3710,6 @@ msgstr "Το θέμα και τα μεταδεδομένα θα μοιραστο
msgid "Subject, body and attachments will be shared with your team."
msgstr "Το θέμα, το σώμα και τα συνημμένα θα μοιραστούν με την ομάδα σας."
#. js-lingui-id: hQRttt
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Submit"
msgstr ""
#. js-lingui-id: B5jRKH
#: src/pages/settings/SettingsBilling.tsx
msgid "Subscription has been switched {to}"
@@ -4000,11 +3746,6 @@ msgstr "Εναλλαγή <b>{σε}</b>"
msgid "Switch billing {to}"
msgstr "Εναλλαγή χρέωσης <b>{σε}</b>"
#. js-lingui-id: lz+f/E
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Switch to {alternatePlanName}"
msgstr "Αλλαγή σε {alternatePlanName}"
#. js-lingui-id: 5TRY4+
#: src/modules/settings/accounts/components/SettingsAccountsConnectedAccountsRowRightContainer.tsx
msgid "Sync failed"
@@ -4145,16 +3886,6 @@ msgstr "Θέμα"
msgid "Theme "
msgstr "Θέμα "
#. js-lingui-id: /cSDOy
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "There are required columns that are not matched or ignored. Do you want to continue?"
msgstr ""
#. js-lingui-id: luL9RX
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "There are still some rows that contain errors. Rows with errors will be ignored when submitting."
msgstr ""
#. js-lingui-id: ynfkhb
#: src/pages/auth/PasswordReset.tsx
msgid "There was an error while updating password."
@@ -4298,7 +4029,6 @@ msgstr "Άγνωστο σφάλμα"
#. js-lingui-id: GQCXQS
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Unlimited contacts"
msgstr "Απεριόριστες επαφές"
@@ -4312,13 +4042,7 @@ msgstr "Ενημερώθηκε"
msgid "Upload"
msgstr "Ανέβασμα"
#. js-lingui-id: 7OP1Xi
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Upload .xlsx, .xls or .csv file"
msgstr ""
#. js-lingui-id: 2IXDgU
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Upload file"
msgstr "Ανέβασμα αρχείου"
@@ -4395,11 +4119,6 @@ msgstr "Ο χρήστης δεν έχει συνδεθεί"
#~ msgid "Users"
#~ msgstr "Users"
#. js-lingui-id: MGeZsN
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
msgid "Validate data"
msgstr ""
#. js-lingui-id: fXVIZq
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
@@ -4614,11 +4333,6 @@ msgstr "Γράψτε ένα μυστικό"
msgid "yes"
msgstr "ναι"
#. js-lingui-id: qsAug0
#: src/modules/spreadsheet-import/components/MatchColumnSelect.tsx
msgid "You are already importing this column."
msgstr ""
#. js-lingui-id: MFDARJ
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateReadOnly.tsx
msgid "You are not allowed to create records for this object"
+10 -296
View File
@@ -82,11 +82,6 @@ msgstr "{aggregateLabel} of {fieldLabel}"
msgid "{apiKeyName} API Key"
msgstr "{apiKeyName} API Key"
#. js-lingui-id: zi5SHH
#: src/modules/object-record/record-index/components/RecordIndexPageHeader.tsx
msgid "{contextStoreNumberOfSelectedRecords} selected"
msgstr "{contextStoreNumberOfSelectedRecords} selected"
#. js-lingui-id: 6j5rE1
#: src/modules/action-menu/actions/record-agnostic-actions/run-workflow-actions/hooks/useRunWorkflowActions.tsx
#: src/modules/action-menu/actions/record-actions/workflow-run-record-actions/hooks/useWorkflowRunRecordActions.tsx
@@ -100,8 +95,8 @@ msgstr "{workspaceMemberName} will be unassigned from the following role:"
#. js-lingui-id: YT0WJ4
#: src/pages/onboarding/ChooseYourPlan.tsx
#~ msgid "1 000 workflow node executions"
#~ msgstr "1 000 workflow node executions"
msgid "1 000 workflow node executions"
msgstr "1 000 workflow node executions"
#. js-lingui-id: vb5TwV
#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldSelect.tsx
@@ -114,11 +109,6 @@ msgstr "1. Select a field type"
msgid "1. Type"
msgstr "1. Type"
#. js-lingui-id: AvXug3
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "10 000 workflow node executions"
msgstr "10 000 workflow node executions"
#. js-lingui-id: 4EdXYs
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "12h ({hour12Label})"
@@ -135,11 +125,6 @@ msgstr "2. Configure"
msgid "2. Configure field"
msgstr "2. Configure field"
#. js-lingui-id: kAtmAv
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "20 000 workflow node executions"
msgstr "20 000 workflow node executions"
#. js-lingui-id: QsMprd
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "24h ({hour24Label})"
@@ -196,11 +181,6 @@ msgstr "Account Deletion"
msgid "Accounts"
msgstr "Accounts"
#. js-lingui-id: bwRvnp
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
msgid "Action"
msgstr "Action"
#. js-lingui-id: 7L01XJ
#: src/modules/settings/roles/role-permissions/components/RolePermissionsSettingsTableHeader.tsx
#: src/modules/settings/roles/role-permissions/components/RolePermissionsObjectsTableHeader.tsx
@@ -247,7 +227,7 @@ msgid "Add Approved Access Domain"
msgstr "Add Approved Access Domain"
#. js-lingui-id: DpV70M
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionForm.tsx
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
msgid "Add Field"
msgstr "Add Field"
@@ -448,7 +428,6 @@ msgstr "API"
#. js-lingui-id: 0RqpZr
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "API & Webhooks"
msgstr "API & Webhooks"
@@ -532,28 +511,13 @@ msgstr "Are you sure that you want to change your billing interval?"
#. js-lingui-id: 8Y3Jbl
#: src/modules/action-menu/actions/record-actions/multiple-records/hooks/useDeleteMultipleRecordsAction.tsx
#~ msgid "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
#~ msgstr "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
#. js-lingui-id: 2BZAqa
#: src/modules/action-menu/actions/record-actions/multiple-records/hooks/useDeleteMultipleRecordsAction.tsx
msgid "Are you sure you want to delete these records? They can be recovered from the Command menu."
msgstr "Are you sure you want to delete these records? They can be recovered from the Command menu."
msgid "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
msgstr "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
#. js-lingui-id: Se0vJw
#: src/modules/action-menu/actions/record-actions/single-record/hooks/useDeleteSingleRecordAction.tsx
#~ msgid "Are you sure you want to delete this record? It can be recovered from the Command menu ({osControlSymbol} + K)."
#~ msgstr "Are you sure you want to delete this record? It can be recovered from the Command menu ({osControlSymbol} + K)."
#. js-lingui-id: yb2hF4
#: src/modules/action-menu/actions/record-actions/single-record/hooks/useDeleteSingleRecordAction.tsx
msgid "Are you sure you want to delete this record? It can be recovered from the Command menu."
msgstr "Are you sure you want to delete this record? It can be recovered from the Command menu."
#. js-lingui-id: rnCqBK
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Are you sure? Your current information will not be saved."
msgstr "Are you sure? Your current information will not be saved."
msgid "Are you sure you want to delete this record? It can be recovered from the Command menu ({osControlSymbol} + K)."
msgstr "Are you sure you want to delete this record? It can be recovered from the Command menu ({osControlSymbol} + K)."
#. js-lingui-id: nYD/Cq
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
@@ -716,18 +680,10 @@ msgstr "Calendar Sync"
msgid "Calendars"
msgstr "Calendars"
#. js-lingui-id: msssZq
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "Can't change API names for standard objects"
msgstr "Can't change API names for standard objects"
#. js-lingui-id: dEgA5A
#: src/pages/auth/Authorize.tsx
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
msgid "Cancel"
msgstr "Cancel"
@@ -834,11 +790,6 @@ msgstr "Close"
msgid "Close command menu"
msgstr "Close command menu"
#. js-lingui-id: EWPtMO
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
msgid "Code"
msgstr "Code"
#. js-lingui-id: H86f9p
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
@@ -851,11 +802,6 @@ msgstr "Collapse"
msgid "Color code"
msgstr "Color code"
#. js-lingui-id: 93hd3e
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Columns not matched:"
msgstr "Columns not matched:"
#. js-lingui-id: NM9bMd
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
msgid "Compact view"
@@ -887,7 +833,6 @@ msgid "Configure your emails and calendar settings."
msgstr "Configure your emails and calendar settings."
#. js-lingui-id: 7VpPHA
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentConfirmationModal.tsx
msgid "Confirm"
msgstr "Confirm"
@@ -933,8 +878,6 @@ msgstr "Context"
#: src/pages/onboarding/CreateWorkspace.tsx
#: src/pages/onboarding/CreateProfile.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx
msgid "Continue"
msgstr "Continue"
@@ -999,11 +942,6 @@ msgstr "Copy this key as it will not be visible again"
msgid "Core"
msgstr "Core"
#. js-lingui-id: w5Stxm
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Correct the issues and fill the missing data."
msgstr "Correct the issues and fill the missing data."
#. js-lingui-id: wBMjJ2
#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterMenuContent.tsx
#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterDropdownContent.tsx
@@ -1125,7 +1063,6 @@ msgstr "Custom domain updated"
#. js-lingui-id: 8skTDV
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Custom objects"
msgstr "Custom objects"
@@ -1438,11 +1375,6 @@ msgstr "Display as relative date"
msgid "Display text on multiple lines"
msgstr "Display text on multiple lines"
#. js-lingui-id: ji7sqw
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/TemplateColumn.tsx
msgid "Do not import"
msgstr "Do not import"
#. js-lingui-id: U9q4zF
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
msgid "Doesn't contain"
@@ -1486,11 +1418,6 @@ msgstr "Dont sync emails from team@ support@ noreply@..."
msgid "Download file"
msgstr "Download file"
#. js-lingui-id: 6D/BnN
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Drop file here..."
msgstr "Drop file here..."
#. js-lingui-id: KIjvtr
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
msgid "Dutch"
@@ -1548,7 +1475,6 @@ msgstr "Edit your subdomain name or set a custom domain."
#: src/pages/settings/SettingsWorkspaceMembers.tsx
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/auth/PasswordReset.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentTableHeader.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
msgid "Email"
@@ -1566,7 +1492,6 @@ msgstr "Email cannot be empty"
#. js-lingui-id: lfQsvW
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Email integration"
msgstr "Email integration"
@@ -1776,21 +1701,11 @@ msgstr "Exclude the following people and domains from my email sync. Internal co
msgid "Existing objects"
msgstr "Existing objects"
#. js-lingui-id: ydzS9x
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Exit"
msgstr "Exit"
#. js-lingui-id: LFNXuj
#: src/modules/ui/layout/fullscreen/components/FullScreenContainer.tsx
msgid "Exit Full Screen"
msgstr "Exit Full Screen"
#. js-lingui-id: XB4onr
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Exit import flow"
msgstr "Exit import flow"
#. js-lingui-id: IZ4o2e
#: src/modules/navigation/components/AppNavigationDrawer.tsx
msgid "Exit Settings"
@@ -1976,11 +1891,6 @@ msgstr "Filter"
msgid "Filters"
msgstr "Filters"
#. js-lingui-id: SNdnlf
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Finish flow with errors"
msgstr "Finish flow with errors"
#. js-lingui-id: USZ2N6
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
msgid "Finnish"
@@ -2029,7 +1939,6 @@ msgstr "from yearly to monthly"
#. js-lingui-id: scmRyR
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Full access"
msgstr "Full access"
@@ -2067,24 +1976,11 @@ msgstr "Get your subscription"
msgid "Global"
msgstr "Global"
#. js-lingui-id: iS69s6
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
msgid "Go to runs"
msgstr "Go to runs"
#. js-lingui-id: mT57+Q
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
msgid "Go to Settings"
msgstr "Go to Settings"
#. js-lingui-id: A5WHZY
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
msgid "Go to workflows"
msgstr "Go to workflows"
#. js-lingui-id: hWp1MY
#: src/pages/settings/SettingsWorkspace.tsx
msgid "Grant Twenty support temporary access to your workspace so we can troubleshoot problems or recover content on your behalf. You can revoke access at any time."
@@ -2144,34 +2040,6 @@ msgstr "Hidden Fields"
msgid "Hide"
msgstr "Hide"
#. js-lingui-id: OlbYor
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
msgid "Hide deleted"
msgstr "Hide deleted"
#. js-lingui-id: FHhlye
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
msgid "Hide deleted records"
msgstr "Hide deleted records"
#. js-lingui-id: 0dZtKR
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
msgid "Hide deleted runs"
msgstr "Hide deleted runs"
#. js-lingui-id: Jc6FrI
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
msgid "Hide deleted versions"
msgstr "Hide deleted versions"
#. js-lingui-id: aOZAIB
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
msgid "Hide deleted workflows"
msgstr "Hide deleted workflows"
#. js-lingui-id: HS8BG/
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownRecordGroupsContent.tsx
msgid "Hide empty groups"
@@ -2579,8 +2447,8 @@ msgstr "Log out"
#. js-lingui-id: nOhz3x
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
msgid "Logout"
msgstr "Logout"
#~ msgid "Logout"
#~ msgstr "Logout"
#. js-lingui-id: PTozs8
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
@@ -2624,16 +2492,6 @@ msgstr "Manage your subscription"
msgid "Mark as done"
msgstr "Mark as done"
#. js-lingui-id: 7h8ch8
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
msgid "Match columns"
msgstr "Match columns"
#. js-lingui-id: gDLior
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Match Columns"
msgstr "Match Columns"
#. js-lingui-id: CK1KXz
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts
@@ -2862,12 +2720,6 @@ msgstr "New SSO provider"
#~ msgid "New Webhook"
#~ msgstr "New Webhook"
#. js-lingui-id: AxNmtI
#: src/modules/spreadsheet-import/steps/components/SelectSheetStep/SelectSheetStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Next Step"
msgstr "Next Step"
#. js-lingui-id: OTe3RI
#: src/pages/settings/workspace/SettingsDomain.tsx
msgid "No change detected"
@@ -2883,16 +2735,6 @@ msgstr "No connected account"
msgid "No country"
msgstr "No country"
#. js-lingui-id: pxvJ9B
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "No data containing errors"
msgstr "No data containing errors"
#. js-lingui-id: dihZwh
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "No data found"
msgstr "No data found"
#. js-lingui-id: UwvrGq
#: src/pages/settings/SettingsWorkspaceMembers.tsx
msgid "No members"
@@ -2949,11 +2791,6 @@ msgstr "No records found"
#~ msgid "No Result"
#~ msgstr "No Result"
#. js-lingui-id: Ev2r9A
#: src/modules/spreadsheet-import/components/MatchColumnSelect.tsx
msgid "No results"
msgstr "No results"
#. js-lingui-id: MA3x23
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentWorkspaceMemberPickerDropdownContent.tsx
msgid "No Results"
@@ -2986,11 +2823,6 @@ msgstr "None"
msgid "Norwegian"
msgstr "Norwegian"
#. js-lingui-id: v3W9iu
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Not all columns matched"
msgstr "Not all columns matched"
#. js-lingui-id: 0qBE9S
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownMenuContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownMenuContent.tsx
@@ -3286,11 +3118,6 @@ msgstr "Preview"
msgid "Privacy Policy"
msgstr "Privacy Policy"
#. js-lingui-id: k1ifdL
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Processing..."
msgstr "Processing..."
#. js-lingui-id: vERlcd
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/SettingsProfile.tsx
@@ -3404,7 +3231,6 @@ msgstr "Reload"
#. js-lingui-id: t/YqKh
#: src/modules/ui/input/components/ImageInput.tsx
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Remove"
msgstr "Remove"
@@ -3478,15 +3304,10 @@ msgid "Restore records"
msgstr "Restore records"
#. js-lingui-id: kx0s+n
#: src/modules/command-menu/hooks/useCommandMenuSearchRecords.tsx
#: src/modules/command-menu/hooks/useSearchRecords.tsx
msgid "Results"
msgstr "Results"
#. js-lingui-id: BohSvm
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Review your import"
msgstr "Review your import"
#. js-lingui-id: 5dJK4M
#: src/pages/settings/roles/SettingsRoles.tsx
#: src/pages/settings/roles/SettingsRoles.tsx
@@ -3527,7 +3348,6 @@ msgstr "Schema"
#. js-lingui-id: A1taO8
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownWorkspacesListComponents.tsx
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentWorkspaceMemberPickerDropdown.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
#: src/modules/navigation/components/MainNavigationDrawerItems.tsx
#: src/modules/command-menu/hooks/useOpenRecordsSearchPageInCommandMenu.ts
@@ -3575,7 +3395,6 @@ msgstr "Search an index..."
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownRecordGroupFieldsContent.tsx
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownFilterSelect.tsx
#: src/modules/object-record/advanced-filter/components/AdvancedFilterFieldSelectSearchInput.tsx
msgid "Search fields"
msgstr "Search fields"
@@ -3638,19 +3457,11 @@ msgstr "See deleted workflows"
#. js-lingui-id: OpPn5Z
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
msgid "See runs"
msgstr "See runs"
#. js-lingui-id: gGEfj/
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
msgid "See version"
msgstr "See version"
#. js-lingui-id: EtyY4+
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
@@ -3663,52 +3474,12 @@ msgstr "See versions"
msgid "See versions history"
msgstr "See versions history"
#. js-lingui-id: qEKLJV
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
msgid "See workflow"
msgstr "See workflow"
#. js-lingui-id: XThiR2
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
msgid "See workflows"
msgstr "See workflows"
#. js-lingui-id: WZvt/6
#: src/modules/command-menu/hooks/useWorkflowCommandMenu.ts
#: src/modules/command-menu/hooks/__tests__/useWorkflowCommandMenu.test.tsx
msgid "Select Action"
msgstr "Select Action"
#. js-lingui-id: hVPa4O
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/UnmatchColumn.tsx
msgid "Select an option"
msgstr "Select an option"
#. js-lingui-id: 21YIUv
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/TemplateColumn.tsx
msgid "Select column..."
msgstr "Select column..."
#. js-lingui-id: J6WI1B
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Select file"
msgstr "Select file"
#. js-lingui-id: ljSvAs
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
msgid "Select header row"
msgstr "Select header row"
#. js-lingui-id: mWHn81
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Select the correct field for each column you'd like to import."
msgstr "Select the correct field for each column you'd like to import."
#. js-lingui-id: pofGCP
#: src/modules/settings/data-model/fields/forms/boolean/components/SettingsDataModelFieldBooleanForm.tsx
msgid "Select the default value for this boolean field"
@@ -3719,11 +3490,6 @@ msgstr "Select the default value for this boolean field"
msgid "Select the events you wish to send to this endpoint"
msgstr "Select the events you wish to send to this endpoint"
#. js-lingui-id: +xn1pe
#: src/modules/spreadsheet-import/steps/components/SelectSheetStep/SelectSheetStep.tsx
msgid "Select the sheet to use"
msgstr "Select the sheet to use"
#. js-lingui-id: AXTJAW
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Select your preferred language"
@@ -3828,16 +3594,6 @@ msgstr "Should changing a field's label also change the API name?"
msgid "Should changing an object's label also change the API?"
msgstr "Should changing an object's label also change the API?"
#. js-lingui-id: qi+g0a
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Show only rows with errors"
msgstr "Show only rows with errors"
#. js-lingui-id: MHlGJL
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Show unmatched columns"
msgstr "Show unmatched columns"
#. js-lingui-id: uVg8dY
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutOpenInContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -3896,11 +3652,6 @@ msgstr "Spanish"
msgid "SSO"
msgstr "SSO"
#. js-lingui-id: vlvAkg
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "SSO (SAML / OIDC)"
msgstr "SSO (SAML / OIDC)"
#. js-lingui-id: ErU1td
#: src/modules/views/view-picker/components/ViewPickerContentCreateMode.tsx
msgid "Stages"
@@ -3954,11 +3705,6 @@ msgstr "Subject and metadata will be shared with your team."
msgid "Subject, body and attachments will be shared with your team."
msgstr "Subject, body and attachments will be shared with your team."
#. js-lingui-id: hQRttt
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Submit"
msgstr "Submit"
#. js-lingui-id: B5jRKH
#: src/pages/settings/SettingsBilling.tsx
msgid "Subscription has been switched {to}"
@@ -3995,11 +3741,6 @@ msgstr "Switch {to}"
msgid "Switch billing {to}"
msgstr "Switch billing {to}"
#. js-lingui-id: lz+f/E
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Switch to {alternatePlanName}"
msgstr "Switch to {alternatePlanName}"
#. js-lingui-id: 5TRY4+
#: src/modules/settings/accounts/components/SettingsAccountsConnectedAccountsRowRightContainer.tsx
msgid "Sync failed"
@@ -4140,16 +3881,6 @@ msgstr "Theme"
msgid "Theme "
msgstr "Theme "
#. js-lingui-id: /cSDOy
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "There are required columns that are not matched or ignored. Do you want to continue?"
msgstr "There are required columns that are not matched or ignored. Do you want to continue?"
#. js-lingui-id: luL9RX
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "There are still some rows that contain errors. Rows with errors will be ignored when submitting."
msgstr "There are still some rows that contain errors. Rows with errors will be ignored when submitting."
#. js-lingui-id: ynfkhb
#: src/pages/auth/PasswordReset.tsx
msgid "There was an error while updating password."
@@ -4293,7 +4024,6 @@ msgstr "Unknown error"
#. js-lingui-id: GQCXQS
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Unlimited contacts"
msgstr "Unlimited contacts"
@@ -4307,13 +4037,7 @@ msgstr "Updated"
msgid "Upload"
msgstr "Upload"
#. js-lingui-id: 7OP1Xi
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Upload .xlsx, .xls or .csv file"
msgstr "Upload .xlsx, .xls or .csv file"
#. js-lingui-id: 2IXDgU
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Upload file"
msgstr "Upload file"
@@ -4390,11 +4114,6 @@ msgstr "User is not logged in"
#~ msgid "Users"
#~ msgstr "Users"
#. js-lingui-id: MGeZsN
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
msgid "Validate data"
msgstr "Validate data"
#. js-lingui-id: fXVIZq
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
@@ -4609,11 +4328,6 @@ msgstr "Write a secret"
msgid "yes"
msgstr "yes"
#. js-lingui-id: qsAug0
#: src/modules/spreadsheet-import/components/MatchColumnSelect.tsx
msgid "You are already importing this column."
msgstr "You are already importing this column."
#. js-lingui-id: MFDARJ
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateReadOnly.tsx
msgid "You are not allowed to create records for this object"
+10 -296
View File
@@ -87,11 +87,6 @@ msgstr "{aggregateLabel} de {fieldLabel}"
msgid "{apiKeyName} API Key"
msgstr "Clave API {apiKeyName}"
#. js-lingui-id: zi5SHH
#: src/modules/object-record/record-index/components/RecordIndexPageHeader.tsx
msgid "{contextStoreNumberOfSelectedRecords} selected"
msgstr "{contextStoreNumberOfSelectedRecords} seleccionados"
#. js-lingui-id: 6j5rE1
#: src/modules/action-menu/actions/record-agnostic-actions/run-workflow-actions/hooks/useRunWorkflowActions.tsx
#: src/modules/action-menu/actions/record-actions/workflow-run-record-actions/hooks/useWorkflowRunRecordActions.tsx
@@ -105,8 +100,8 @@ msgstr "{workspaceMemberName} dejará de estar asignado al siguiente rol:"
#. js-lingui-id: YT0WJ4
#: src/pages/onboarding/ChooseYourPlan.tsx
#~ msgid "1 000 workflow node executions"
#~ msgstr "1 000 workflow node executions"
msgid "1 000 workflow node executions"
msgstr "1 000 ejecuciones de nodos de workflow"
#. js-lingui-id: vb5TwV
#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldSelect.tsx
@@ -119,11 +114,6 @@ msgstr "1. Seleccionar un tipo de campo"
msgid "1. Type"
msgstr "1. Tipo"
#. js-lingui-id: AvXug3
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "10 000 workflow node executions"
msgstr "10 000 ejecuciones de nodos de workflow"
#. js-lingui-id: 4EdXYs
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "12h ({hour12Label})"
@@ -140,11 +130,6 @@ msgstr "2. Configurar"
msgid "2. Configure field"
msgstr "2. Configurar campo"
#. js-lingui-id: kAtmAv
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "20 000 workflow node executions"
msgstr "20 000 ejecuciones de nodos de workflow"
#. js-lingui-id: QsMprd
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "24h ({hour24Label})"
@@ -201,11 +186,6 @@ msgstr "Eliminación de cuenta"
msgid "Accounts"
msgstr "Cuentas"
#. js-lingui-id: bwRvnp
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
msgid "Action"
msgstr "Acción"
#. js-lingui-id: 7L01XJ
#: src/modules/settings/roles/role-permissions/components/RolePermissionsSettingsTableHeader.tsx
#: src/modules/settings/roles/role-permissions/components/RolePermissionsObjectsTableHeader.tsx
@@ -252,7 +232,7 @@ msgid "Add Approved Access Domain"
msgstr "Añadir Dominio de Acceso Aprobado"
#. js-lingui-id: DpV70M
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionForm.tsx
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
msgid "Add Field"
msgstr "Añadir campo"
@@ -453,7 +433,6 @@ msgstr "API"
#. js-lingui-id: 0RqpZr
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "API & Webhooks"
msgstr "API y Webhooks"
@@ -537,28 +516,13 @@ msgstr "¿Está seguro de que desea cambiar el intervalo de facturación?"
#. js-lingui-id: 8Y3Jbl
#: src/modules/action-menu/actions/record-actions/multiple-records/hooks/useDeleteMultipleRecordsAction.tsx
#~ msgid "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
#~ msgstr "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
#. js-lingui-id: 2BZAqa
#: src/modules/action-menu/actions/record-actions/multiple-records/hooks/useDeleteMultipleRecordsAction.tsx
msgid "Are you sure you want to delete these records? They can be recovered from the Command menu."
msgstr "¿Está seguro de que desea eliminar estos registros? Se pueden recuperar del menú de Comandos."
msgid "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
msgstr "¿Está seguro de que desea eliminar estos registros? Se pueden recuperar del menú de Comandos ({osControlSymbol} + K)."
#. js-lingui-id: Se0vJw
#: src/modules/action-menu/actions/record-actions/single-record/hooks/useDeleteSingleRecordAction.tsx
#~ msgid "Are you sure you want to delete this record? It can be recovered from the Command menu ({osControlSymbol} + K)."
#~ msgstr "Are you sure you want to delete this record? It can be recovered from the Command menu ({osControlSymbol} + K)."
#. js-lingui-id: yb2hF4
#: src/modules/action-menu/actions/record-actions/single-record/hooks/useDeleteSingleRecordAction.tsx
msgid "Are you sure you want to delete this record? It can be recovered from the Command menu."
msgstr "¿Está seguro de que desea eliminar este registro? Se puede recuperar del menú de Comandos."
#. js-lingui-id: rnCqBK
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Are you sure? Your current information will not be saved."
msgstr ""
msgid "Are you sure you want to delete this record? It can be recovered from the Command menu ({osControlSymbol} + K)."
msgstr "¿Está seguro de que desea eliminar este registro? Se puede recuperar del menú de Comandos ({osControlSymbol} + K)."
#. js-lingui-id: nYD/Cq
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
@@ -721,18 +685,10 @@ msgstr "Sincronización del calendario"
msgid "Calendars"
msgstr "Calendarios"
#. js-lingui-id: msssZq
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "Can't change API names for standard objects"
msgstr "No se pueden cambiar los nombres de la API para los objetos estándar"
#. js-lingui-id: dEgA5A
#: src/pages/auth/Authorize.tsx
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
msgid "Cancel"
msgstr "Cancelar"
@@ -839,11 +795,6 @@ msgstr "Cerrar"
msgid "Close command menu"
msgstr "Cerrar menú de comandos"
#. js-lingui-id: EWPtMO
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
msgid "Code"
msgstr "Código"
#. js-lingui-id: H86f9p
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
@@ -856,11 +807,6 @@ msgstr "Colapsar"
msgid "Color code"
msgstr "Código de color"
#. js-lingui-id: 93hd3e
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Columns not matched:"
msgstr ""
#. js-lingui-id: NM9bMd
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
msgid "Compact view"
@@ -892,7 +838,6 @@ msgid "Configure your emails and calendar settings."
msgstr "Configura tus correos electrónicos y calendario."
#. js-lingui-id: 7VpPHA
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentConfirmationModal.tsx
msgid "Confirm"
msgstr "Confirmar"
@@ -938,8 +883,6 @@ msgstr "Contexto"
#: src/pages/onboarding/CreateWorkspace.tsx
#: src/pages/onboarding/CreateProfile.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx
msgid "Continue"
msgstr "Continuar"
@@ -1004,11 +947,6 @@ msgstr "Copie esta clave ya que no será visible de nuevo"
msgid "Core"
msgstr "Núcleo"
#. js-lingui-id: w5Stxm
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Correct the issues and fill the missing data."
msgstr ""
#. js-lingui-id: wBMjJ2
#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterMenuContent.tsx
#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterDropdownContent.tsx
@@ -1130,7 +1068,6 @@ msgstr "Dominio personalizado actualizado"
#. js-lingui-id: 8skTDV
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Custom objects"
msgstr "Objetos personalizados"
@@ -1443,11 +1380,6 @@ msgstr "Mostrar como fecha relativa"
msgid "Display text on multiple lines"
msgstr "Mostrar texto en varias líneas"
#. js-lingui-id: ji7sqw
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/TemplateColumn.tsx
msgid "Do not import"
msgstr ""
#. js-lingui-id: U9q4zF
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
msgid "Doesn't contain"
@@ -1491,11 +1423,6 @@ msgstr "No sincronizar correos electrónicos de team@ support@ noreply@..."
msgid "Download file"
msgstr "Descargar archivo"
#. js-lingui-id: 6D/BnN
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Drop file here..."
msgstr ""
#. js-lingui-id: KIjvtr
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
msgid "Dutch"
@@ -1553,7 +1480,6 @@ msgstr "Edite el nombre de su subdominio o establezca un dominio personalizado."
#: src/pages/settings/SettingsWorkspaceMembers.tsx
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/auth/PasswordReset.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentTableHeader.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
msgid "Email"
@@ -1571,7 +1497,6 @@ msgstr "El correo electrónico no puede estar vacío"
#. js-lingui-id: lfQsvW
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Email integration"
msgstr "Integración de correo electrónico"
@@ -1781,21 +1706,11 @@ msgstr "Excluir las siguientes personas y dominios de mi sincronización de corr
msgid "Existing objects"
msgstr "Objetos existentes"
#. js-lingui-id: ydzS9x
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Exit"
msgstr ""
#. js-lingui-id: LFNXuj
#: src/modules/ui/layout/fullscreen/components/FullScreenContainer.tsx
msgid "Exit Full Screen"
msgstr "Salir de pantalla completa"
#. js-lingui-id: XB4onr
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Exit import flow"
msgstr ""
#. js-lingui-id: IZ4o2e
#: src/modules/navigation/components/AppNavigationDrawer.tsx
msgid "Exit Settings"
@@ -1981,11 +1896,6 @@ msgstr "Filtro"
msgid "Filters"
msgstr "Filtros"
#. js-lingui-id: SNdnlf
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Finish flow with errors"
msgstr ""
#. js-lingui-id: USZ2N6
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
msgid "Finnish"
@@ -2034,7 +1944,6 @@ msgstr "de anual a mensual"
#. js-lingui-id: scmRyR
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Full access"
msgstr "Acceso total"
@@ -2072,24 +1981,11 @@ msgstr "Obtenga su suscripción"
msgid "Global"
msgstr "Global"
#. js-lingui-id: iS69s6
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
msgid "Go to runs"
msgstr "Ir a ejecuciones"
#. js-lingui-id: mT57+Q
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
msgid "Go to Settings"
msgstr "Ir a Configuración"
#. js-lingui-id: A5WHZY
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
msgid "Go to workflows"
msgstr "Ir a flujos de trabajo"
#. js-lingui-id: hWp1MY
#: src/pages/settings/SettingsWorkspace.tsx
msgid "Grant Twenty support temporary access to your workspace so we can troubleshoot problems or recover content on your behalf. You can revoke access at any time."
@@ -2149,34 +2045,6 @@ msgstr "Campos Ocultos"
msgid "Hide"
msgstr "Ocultar"
#. js-lingui-id: OlbYor
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
msgid "Hide deleted"
msgstr "Ocultar eliminado"
#. js-lingui-id: FHhlye
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
msgid "Hide deleted records"
msgstr "Ocultar registros eliminados"
#. js-lingui-id: 0dZtKR
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
msgid "Hide deleted runs"
msgstr "Ocultar ejecuciones eliminadas"
#. js-lingui-id: Jc6FrI
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
msgid "Hide deleted versions"
msgstr "Ocultar versiones eliminadas"
#. js-lingui-id: aOZAIB
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
msgid "Hide deleted workflows"
msgstr "Ocultar flujos de trabajo eliminados"
#. js-lingui-id: HS8BG/
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownRecordGroupsContent.tsx
msgid "Hide empty groups"
@@ -2584,8 +2452,8 @@ msgstr "Cerrar sesión"
#. js-lingui-id: nOhz3x
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
msgid "Logout"
msgstr "Cerrar sesión"
#~ msgid "Logout"
#~ msgstr "Logout"
#. js-lingui-id: PTozs8
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
@@ -2629,16 +2497,6 @@ msgstr "Gestione su suscripción"
msgid "Mark as done"
msgstr "Marcar como hecho"
#. js-lingui-id: 7h8ch8
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
msgid "Match columns"
msgstr ""
#. js-lingui-id: gDLior
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Match Columns"
msgstr ""
#. js-lingui-id: CK1KXz
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts
@@ -2867,12 +2725,6 @@ msgstr "Nuevo proveedor SSO"
#~ msgid "New Webhook"
#~ msgstr "New Webhook"
#. js-lingui-id: AxNmtI
#: src/modules/spreadsheet-import/steps/components/SelectSheetStep/SelectSheetStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Next Step"
msgstr ""
#. js-lingui-id: OTe3RI
#: src/pages/settings/workspace/SettingsDomain.tsx
msgid "No change detected"
@@ -2888,16 +2740,6 @@ msgstr "No hay cuenta conectada"
msgid "No country"
msgstr "Sin país"
#. js-lingui-id: pxvJ9B
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "No data containing errors"
msgstr ""
#. js-lingui-id: dihZwh
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "No data found"
msgstr ""
#. js-lingui-id: UwvrGq
#: src/pages/settings/SettingsWorkspaceMembers.tsx
msgid "No members"
@@ -2954,11 +2796,6 @@ msgstr "No se encontraron registros"
#~ msgid "No Result"
#~ msgstr "No Result"
#. js-lingui-id: Ev2r9A
#: src/modules/spreadsheet-import/components/MatchColumnSelect.tsx
msgid "No results"
msgstr ""
#. js-lingui-id: MA3x23
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentWorkspaceMemberPickerDropdownContent.tsx
msgid "No Results"
@@ -2991,11 +2828,6 @@ msgstr "Ninguno"
msgid "Norwegian"
msgstr "Noruego"
#. js-lingui-id: v3W9iu
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Not all columns matched"
msgstr ""
#. js-lingui-id: 0qBE9S
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownMenuContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownMenuContent.tsx
@@ -3291,11 +3123,6 @@ msgstr "Vista previa"
msgid "Privacy Policy"
msgstr "Política de privacidad"
#. js-lingui-id: k1ifdL
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Processing..."
msgstr ""
#. js-lingui-id: vERlcd
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/SettingsProfile.tsx
@@ -3409,7 +3236,6 @@ msgstr "Recargar"
#. js-lingui-id: t/YqKh
#: src/modules/ui/input/components/ImageInput.tsx
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Remove"
msgstr "Eliminar"
@@ -3483,15 +3309,10 @@ msgid "Restore records"
msgstr "Restaurar registros"
#. js-lingui-id: kx0s+n
#: src/modules/command-menu/hooks/useCommandMenuSearchRecords.tsx
#: src/modules/command-menu/hooks/useSearchRecords.tsx
msgid "Results"
msgstr "Resultados"
#. js-lingui-id: BohSvm
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Review your import"
msgstr ""
#. js-lingui-id: 5dJK4M
#: src/pages/settings/roles/SettingsRoles.tsx
#: src/pages/settings/roles/SettingsRoles.tsx
@@ -3532,7 +3353,6 @@ msgstr "Esquema"
#. js-lingui-id: A1taO8
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownWorkspacesListComponents.tsx
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentWorkspaceMemberPickerDropdown.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
#: src/modules/navigation/components/MainNavigationDrawerItems.tsx
#: src/modules/command-menu/hooks/useOpenRecordsSearchPageInCommandMenu.ts
@@ -3580,7 +3400,6 @@ msgstr "Buscar un índice..."
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownRecordGroupFieldsContent.tsx
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownFilterSelect.tsx
#: src/modules/object-record/advanced-filter/components/AdvancedFilterFieldSelectSearchInput.tsx
msgid "Search fields"
msgstr "Buscar campos"
@@ -3643,19 +3462,11 @@ msgstr "Ver workflows eliminados"
#. js-lingui-id: OpPn5Z
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
msgid "See runs"
msgstr "Ver ejecuciones"
#. js-lingui-id: gGEfj/
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
msgid "See version"
msgstr "Ver versión"
#. js-lingui-id: EtyY4+
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
@@ -3668,52 +3479,12 @@ msgstr "Ver versiones"
msgid "See versions history"
msgstr "Ver historial de versiones"
#. js-lingui-id: qEKLJV
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
msgid "See workflow"
msgstr "Ver flujo de trabajo"
#. js-lingui-id: XThiR2
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
msgid "See workflows"
msgstr "Ver flujos de trabajo"
#. js-lingui-id: WZvt/6
#: src/modules/command-menu/hooks/useWorkflowCommandMenu.ts
#: src/modules/command-menu/hooks/__tests__/useWorkflowCommandMenu.test.tsx
msgid "Select Action"
msgstr "Seleccionar acción"
#. js-lingui-id: hVPa4O
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/UnmatchColumn.tsx
msgid "Select an option"
msgstr ""
#. js-lingui-id: 21YIUv
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/TemplateColumn.tsx
msgid "Select column..."
msgstr ""
#. js-lingui-id: J6WI1B
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Select file"
msgstr ""
#. js-lingui-id: ljSvAs
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
msgid "Select header row"
msgstr ""
#. js-lingui-id: mWHn81
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Select the correct field for each column you'd like to import."
msgstr ""
#. js-lingui-id: pofGCP
#: src/modules/settings/data-model/fields/forms/boolean/components/SettingsDataModelFieldBooleanForm.tsx
msgid "Select the default value for this boolean field"
@@ -3724,11 +3495,6 @@ msgstr "Selecciona el valor predeterminado para este campo booleano"
msgid "Select the events you wish to send to this endpoint"
msgstr "Selecciona los eventos que deseas enviar a este endpoint"
#. js-lingui-id: +xn1pe
#: src/modules/spreadsheet-import/steps/components/SelectSheetStep/SelectSheetStep.tsx
msgid "Select the sheet to use"
msgstr ""
#. js-lingui-id: AXTJAW
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Select your preferred language"
@@ -3833,16 +3599,6 @@ msgstr "¿Debería cambiar también el nombre de la API al cambiar la etiqueta d
msgid "Should changing an object's label also change the API?"
msgstr "¿Debería cambiar también el nombre de la API al cambiar la etiqueta de un objeto?"
#. js-lingui-id: qi+g0a
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Show only rows with errors"
msgstr ""
#. js-lingui-id: MHlGJL
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Show unmatched columns"
msgstr ""
#. js-lingui-id: uVg8dY
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutOpenInContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -3901,11 +3657,6 @@ msgstr "Español"
msgid "SSO"
msgstr "SSO"
#. js-lingui-id: vlvAkg
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "SSO (SAML / OIDC)"
msgstr "SSO (SAML / OIDC)"
#. js-lingui-id: ErU1td
#: src/modules/views/view-picker/components/ViewPickerContentCreateMode.tsx
msgid "Stages"
@@ -3959,11 +3710,6 @@ msgstr "El asunto y los metadatos se compartirán con tu equipo."
msgid "Subject, body and attachments will be shared with your team."
msgstr "El asunto, el cuerpo y los archivos adjuntos se compartirán con tu equipo."
#. js-lingui-id: hQRttt
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Submit"
msgstr ""
#. js-lingui-id: B5jRKH
#: src/pages/settings/SettingsBilling.tsx
msgid "Subscription has been switched {to}"
@@ -4000,11 +3746,6 @@ msgstr "Cambiar {to}"
msgid "Switch billing {to}"
msgstr "Cambiar facturación {to}"
#. js-lingui-id: lz+f/E
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Switch to {alternatePlanName}"
msgstr "Cambiar a {alternatePlanName}"
#. js-lingui-id: 5TRY4+
#: src/modules/settings/accounts/components/SettingsAccountsConnectedAccountsRowRightContainer.tsx
msgid "Sync failed"
@@ -4145,16 +3886,6 @@ msgstr "Tema"
msgid "Theme "
msgstr "Tema "
#. js-lingui-id: /cSDOy
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "There are required columns that are not matched or ignored. Do you want to continue?"
msgstr ""
#. js-lingui-id: luL9RX
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "There are still some rows that contain errors. Rows with errors will be ignored when submitting."
msgstr ""
#. js-lingui-id: ynfkhb
#: src/pages/auth/PasswordReset.tsx
msgid "There was an error while updating password."
@@ -4298,7 +4029,6 @@ msgstr "Error desconocido"
#. js-lingui-id: GQCXQS
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Unlimited contacts"
msgstr "Contactos ilimitados"
@@ -4312,13 +4042,7 @@ msgstr "Actualizado"
msgid "Upload"
msgstr "Subir"
#. js-lingui-id: 7OP1Xi
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Upload .xlsx, .xls or .csv file"
msgstr ""
#. js-lingui-id: 2IXDgU
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Upload file"
msgstr "Subir archivo"
@@ -4395,11 +4119,6 @@ msgstr "El usuario no ha iniciado sesión"
#~ msgid "Users"
#~ msgstr "Users"
#. js-lingui-id: MGeZsN
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
msgid "Validate data"
msgstr ""
#. js-lingui-id: fXVIZq
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
@@ -4614,11 +4333,6 @@ msgstr "Escribe un secreto"
msgid "yes"
msgstr "sí"
#. js-lingui-id: qsAug0
#: src/modules/spreadsheet-import/components/MatchColumnSelect.tsx
msgid "You are already importing this column."
msgstr ""
#. js-lingui-id: MFDARJ
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateReadOnly.tsx
msgid "You are not allowed to create records for this object"
+10 -296
View File
@@ -87,11 +87,6 @@ msgstr "{aggregateLabel} {fieldLabel} määrä"
msgid "{apiKeyName} API Key"
msgstr "{apiKeyName} API-avain"
#. js-lingui-id: zi5SHH
#: src/modules/object-record/record-index/components/RecordIndexPageHeader.tsx
msgid "{contextStoreNumberOfSelectedRecords} selected"
msgstr "{contextStoreNumberOfSelectedRecords} valittuna"
#. js-lingui-id: 6j5rE1
#: src/modules/action-menu/actions/record-agnostic-actions/run-workflow-actions/hooks/useRunWorkflowActions.tsx
#: src/modules/action-menu/actions/record-actions/workflow-run-record-actions/hooks/useWorkflowRunRecordActions.tsx
@@ -105,8 +100,8 @@ msgstr "{workspaceMemberName} poistetaan seuraavasta roolista:"
#. js-lingui-id: YT0WJ4
#: src/pages/onboarding/ChooseYourPlan.tsx
#~ msgid "1 000 workflow node executions"
#~ msgstr "1 000 workflow node executions"
msgid "1 000 workflow node executions"
msgstr "1 000 työnkulun solmun suoritusta"
#. js-lingui-id: vb5TwV
#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldSelect.tsx
@@ -119,11 +114,6 @@ msgstr "1. Valitse kenttätyyppi"
msgid "1. Type"
msgstr "1. Kirjoita"
#. js-lingui-id: AvXug3
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "10 000 workflow node executions"
msgstr "10 000 työnkulun solmun suoritusta"
#. js-lingui-id: 4EdXYs
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "12h ({hour12Label})"
@@ -140,11 +130,6 @@ msgstr "2. Määritä"
msgid "2. Configure field"
msgstr "2. Määritä kenttä"
#. js-lingui-id: kAtmAv
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "20 000 workflow node executions"
msgstr "20 000 työnkulun solmun suoritusta"
#. js-lingui-id: QsMprd
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "24h ({hour24Label})"
@@ -201,11 +186,6 @@ msgstr "Tilin poistaminen"
msgid "Accounts"
msgstr "Tilit"
#. js-lingui-id: bwRvnp
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
msgid "Action"
msgstr "Toiminto"
#. js-lingui-id: 7L01XJ
#: src/modules/settings/roles/role-permissions/components/RolePermissionsSettingsTableHeader.tsx
#: src/modules/settings/roles/role-permissions/components/RolePermissionsObjectsTableHeader.tsx
@@ -252,7 +232,7 @@ msgid "Add Approved Access Domain"
msgstr "Lisää Hyväksytty Pääsytunnusalue"
#. js-lingui-id: DpV70M
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionForm.tsx
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
msgid "Add Field"
msgstr "Lisää kenttä"
@@ -453,7 +433,6 @@ msgstr "Rajapinta"
#. js-lingui-id: 0RqpZr
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "API & Webhooks"
msgstr "API & Webhooks"
@@ -537,28 +516,13 @@ msgstr "Oletko varma, että haluat muuttaa laskutusväliäsi?"
#. js-lingui-id: 8Y3Jbl
#: src/modules/action-menu/actions/record-actions/multiple-records/hooks/useDeleteMultipleRecordsAction.tsx
#~ msgid "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
#~ msgstr "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
#. js-lingui-id: 2BZAqa
#: src/modules/action-menu/actions/record-actions/multiple-records/hooks/useDeleteMultipleRecordsAction.tsx
msgid "Are you sure you want to delete these records? They can be recovered from the Command menu."
msgstr "Haluatko varmasti poistaa nämä tietueet? Ne voidaan palauttaa Komento-valikosta."
msgid "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
msgstr "Haluatko varmasti poistaa nämä tietueet? Ne voidaan palauttaa komento-valikosta ({osControlSymbol} + K)."
#. js-lingui-id: Se0vJw
#: src/modules/action-menu/actions/record-actions/single-record/hooks/useDeleteSingleRecordAction.tsx
#~ msgid "Are you sure you want to delete this record? It can be recovered from the Command menu ({osControlSymbol} + K)."
#~ msgstr "Are you sure you want to delete this record? It can be recovered from the Command menu ({osControlSymbol} + K)."
#. js-lingui-id: yb2hF4
#: src/modules/action-menu/actions/record-actions/single-record/hooks/useDeleteSingleRecordAction.tsx
msgid "Are you sure you want to delete this record? It can be recovered from the Command menu."
msgstr "Haluatko varmasti poistaa tämän tietueen? Se voidaan palauttaa komento-valikosta."
#. js-lingui-id: rnCqBK
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Are you sure? Your current information will not be saved."
msgstr ""
msgid "Are you sure you want to delete this record? It can be recovered from the Command menu ({osControlSymbol} + K)."
msgstr "Haluatko varmasti poistaa tämän tietueen? Se voidaan palauttaa komento-valikosta ({osControlSymbol} + K)."
#. js-lingui-id: nYD/Cq
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
@@ -721,18 +685,10 @@ msgstr "Kalenterin synkronointi"
msgid "Calendars"
msgstr "Kalenterit"
#. js-lingui-id: msssZq
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "Can't change API names for standard objects"
msgstr "API-nimiä ei voi muuttaa vakio-objekteille"
#. js-lingui-id: dEgA5A
#: src/pages/auth/Authorize.tsx
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
msgid "Cancel"
msgstr "Peruuta"
@@ -839,11 +795,6 @@ msgstr "Sulje"
msgid "Close command menu"
msgstr "Sulje komento-valikko"
#. js-lingui-id: EWPtMO
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
msgid "Code"
msgstr "Koodi"
#. js-lingui-id: H86f9p
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
@@ -856,11 +807,6 @@ msgstr "Sulje"
msgid "Color code"
msgstr "Värikoodi"
#. js-lingui-id: 93hd3e
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Columns not matched:"
msgstr ""
#. js-lingui-id: NM9bMd
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
msgid "Compact view"
@@ -892,7 +838,6 @@ msgid "Configure your emails and calendar settings."
msgstr "Määritä sähköpostisi ja kalenterin asetukset."
#. js-lingui-id: 7VpPHA
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentConfirmationModal.tsx
msgid "Confirm"
msgstr "Vahvista"
@@ -938,8 +883,6 @@ msgstr "Yhteys"
#: src/pages/onboarding/CreateWorkspace.tsx
#: src/pages/onboarding/CreateProfile.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx
msgid "Continue"
msgstr "Jatka"
@@ -1004,11 +947,6 @@ msgstr "Kopioi tämä avain, sillä se ei ole enää nähtävissä"
msgid "Core"
msgstr "Ydin"
#. js-lingui-id: w5Stxm
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Correct the issues and fill the missing data."
msgstr ""
#. js-lingui-id: wBMjJ2
#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterMenuContent.tsx
#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterDropdownContent.tsx
@@ -1130,7 +1068,6 @@ msgstr "Mukautettu verkkotunnus päivitetty"
#. js-lingui-id: 8skTDV
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Custom objects"
msgstr "Mukautetut objektit"
@@ -1443,11 +1380,6 @@ msgstr "N\\u00e4yt\\u00e4 suhteellisena p\\u00e4iv\\u00e4m\\u00e4\\u00e4r\\u00e4
msgid "Display text on multiple lines"
msgstr "Näytä teksti useammalla rivillä"
#. js-lingui-id: ji7sqw
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/TemplateColumn.tsx
msgid "Do not import"
msgstr ""
#. js-lingui-id: U9q4zF
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
msgid "Doesn't contain"
@@ -1491,11 +1423,6 @@ msgstr "Älä synkronoi sähköposteja osoitteista team@ support@ noreply@..."
msgid "Download file"
msgstr "Lataa tiedosto"
#. js-lingui-id: 6D/BnN
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Drop file here..."
msgstr ""
#. js-lingui-id: KIjvtr
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
msgid "Dutch"
@@ -1553,7 +1480,6 @@ msgstr "Muokkaa alasivustosi nime\\u00e4 tai aseta mukautettu verkkotunnus."
#: src/pages/settings/SettingsWorkspaceMembers.tsx
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/auth/PasswordReset.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentTableHeader.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
msgid "Email"
@@ -1571,7 +1497,6 @@ msgstr "Sähköpostiosoite ei voi olla tyhjä"
#. js-lingui-id: lfQsvW
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Email integration"
msgstr "S\\u00e4hk\\u00f6posti-integraatio"
@@ -1781,21 +1706,11 @@ msgstr "Pois sulje seuraavat henkilöt ja verkkotunnukset sähköpostisynkronoin
msgid "Existing objects"
msgstr "Olemassa olevat objektit"
#. js-lingui-id: ydzS9x
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Exit"
msgstr ""
#. js-lingui-id: LFNXuj
#: src/modules/ui/layout/fullscreen/components/FullScreenContainer.tsx
msgid "Exit Full Screen"
msgstr "Poistu koko näytöstä"
#. js-lingui-id: XB4onr
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Exit import flow"
msgstr ""
#. js-lingui-id: IZ4o2e
#: src/modules/navigation/components/AppNavigationDrawer.tsx
msgid "Exit Settings"
@@ -1981,11 +1896,6 @@ msgstr "Suodata"
msgid "Filters"
msgstr "Suodattimet"
#. js-lingui-id: SNdnlf
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Finish flow with errors"
msgstr ""
#. js-lingui-id: USZ2N6
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
msgid "Finnish"
@@ -2034,7 +1944,6 @@ msgstr "vuosittaisesta kuukausittaiseen"
#. js-lingui-id: scmRyR
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Full access"
msgstr "Täysi pääsy"
@@ -2072,24 +1981,11 @@ msgstr "Hanki tilaus"
msgid "Global"
msgstr "Globaali"
#. js-lingui-id: iS69s6
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
msgid "Go to runs"
msgstr "Siirry suorittamaan"
#. js-lingui-id: mT57+Q
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
msgid "Go to Settings"
msgstr "Siirry asetuksiin"
#. js-lingui-id: A5WHZY
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
msgid "Go to workflows"
msgstr "Siirry työnkulkuihin"
#. js-lingui-id: hWp1MY
#: src/pages/settings/SettingsWorkspace.tsx
msgid "Grant Twenty support temporary access to your workspace so we can troubleshoot problems or recover content on your behalf. You can revoke access at any time."
@@ -2149,34 +2045,6 @@ msgstr "Piilotetut kentät"
msgid "Hide"
msgstr "Piilota"
#. js-lingui-id: OlbYor
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
msgid "Hide deleted"
msgstr "Piilota poistetut"
#. js-lingui-id: FHhlye
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
msgid "Hide deleted records"
msgstr "Piilota poistetut tietueet"
#. js-lingui-id: 0dZtKR
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
msgid "Hide deleted runs"
msgstr "Piilota poistetut suoritukset"
#. js-lingui-id: Jc6FrI
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
msgid "Hide deleted versions"
msgstr "Piilota poistetut versiot"
#. js-lingui-id: aOZAIB
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
msgid "Hide deleted workflows"
msgstr "Piilota poistetut työnkulut"
#. js-lingui-id: HS8BG/
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownRecordGroupsContent.tsx
msgid "Hide empty groups"
@@ -2584,8 +2452,8 @@ msgstr "Kirjaudu ulos"
#. js-lingui-id: nOhz3x
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
msgid "Logout"
msgstr "Kirjaudu ulos"
#~ msgid "Logout"
#~ msgstr "Logout"
#. js-lingui-id: PTozs8
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
@@ -2629,16 +2497,6 @@ msgstr "Hallitse tilaustasi"
msgid "Mark as done"
msgstr "Merkitse tehdyksi"
#. js-lingui-id: 7h8ch8
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
msgid "Match columns"
msgstr ""
#. js-lingui-id: gDLior
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Match Columns"
msgstr ""
#. js-lingui-id: CK1KXz
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts
@@ -2867,12 +2725,6 @@ msgstr "Uusi SSO-tarjoaja"
#~ msgid "New Webhook"
#~ msgstr "New Webhook"
#. js-lingui-id: AxNmtI
#: src/modules/spreadsheet-import/steps/components/SelectSheetStep/SelectSheetStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Next Step"
msgstr ""
#. js-lingui-id: OTe3RI
#: src/pages/settings/workspace/SettingsDomain.tsx
msgid "No change detected"
@@ -2888,16 +2740,6 @@ msgstr "Ei yhdistettyä käyttäjätiliä"
msgid "No country"
msgstr "Ei maata"
#. js-lingui-id: pxvJ9B
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "No data containing errors"
msgstr ""
#. js-lingui-id: dihZwh
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "No data found"
msgstr ""
#. js-lingui-id: UwvrGq
#: src/pages/settings/SettingsWorkspaceMembers.tsx
msgid "No members"
@@ -2954,11 +2796,6 @@ msgstr "Ei tietueita löydetty"
#~ msgid "No Result"
#~ msgstr "No Result"
#. js-lingui-id: Ev2r9A
#: src/modules/spreadsheet-import/components/MatchColumnSelect.tsx
msgid "No results"
msgstr ""
#. js-lingui-id: MA3x23
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentWorkspaceMemberPickerDropdownContent.tsx
msgid "No Results"
@@ -2991,11 +2828,6 @@ msgstr "Ei mitään"
msgid "Norwegian"
msgstr "Norja"
#. js-lingui-id: v3W9iu
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Not all columns matched"
msgstr ""
#. js-lingui-id: 0qBE9S
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownMenuContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownMenuContent.tsx
@@ -3291,11 +3123,6 @@ msgstr "Esikatselu"
msgid "Privacy Policy"
msgstr "Tietosuojakäytäntö"
#. js-lingui-id: k1ifdL
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Processing..."
msgstr ""
#. js-lingui-id: vERlcd
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/SettingsProfile.tsx
@@ -3409,7 +3236,6 @@ msgstr "Lataa uudelleen"
#. js-lingui-id: t/YqKh
#: src/modules/ui/input/components/ImageInput.tsx
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Remove"
msgstr "Poista"
@@ -3483,15 +3309,10 @@ msgid "Restore records"
msgstr "Palauta tietueet"
#. js-lingui-id: kx0s+n
#: src/modules/command-menu/hooks/useCommandMenuSearchRecords.tsx
#: src/modules/command-menu/hooks/useSearchRecords.tsx
msgid "Results"
msgstr "Tulokset"
#. js-lingui-id: BohSvm
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Review your import"
msgstr ""
#. js-lingui-id: 5dJK4M
#: src/pages/settings/roles/SettingsRoles.tsx
#: src/pages/settings/roles/SettingsRoles.tsx
@@ -3532,7 +3353,6 @@ msgstr "Skeema"
#. js-lingui-id: A1taO8
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownWorkspacesListComponents.tsx
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentWorkspaceMemberPickerDropdown.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
#: src/modules/navigation/components/MainNavigationDrawerItems.tsx
#: src/modules/command-menu/hooks/useOpenRecordsSearchPageInCommandMenu.ts
@@ -3580,7 +3400,6 @@ msgstr "Etsi indeksi..."
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownRecordGroupFieldsContent.tsx
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownFilterSelect.tsx
#: src/modules/object-record/advanced-filter/components/AdvancedFilterFieldSelectSearchInput.tsx
msgid "Search fields"
msgstr "Etsi kenttiä"
@@ -3643,19 +3462,11 @@ msgstr "Näytä poistetut työnkulut"
#. js-lingui-id: OpPn5Z
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
msgid "See runs"
msgstr "Näytä suoritukset"
#. js-lingui-id: gGEfj/
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
msgid "See version"
msgstr "Näytä versio"
#. js-lingui-id: EtyY4+
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
@@ -3668,52 +3479,12 @@ msgstr "Näytä versiot"
msgid "See versions history"
msgstr "Näytä versiohistoria"
#. js-lingui-id: qEKLJV
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
msgid "See workflow"
msgstr "Näytä työnkulku"
#. js-lingui-id: XThiR2
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
msgid "See workflows"
msgstr "Näytä työnkulut"
#. js-lingui-id: WZvt/6
#: src/modules/command-menu/hooks/useWorkflowCommandMenu.ts
#: src/modules/command-menu/hooks/__tests__/useWorkflowCommandMenu.test.tsx
msgid "Select Action"
msgstr "Valitse toiminto"
#. js-lingui-id: hVPa4O
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/UnmatchColumn.tsx
msgid "Select an option"
msgstr ""
#. js-lingui-id: 21YIUv
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/TemplateColumn.tsx
msgid "Select column..."
msgstr ""
#. js-lingui-id: J6WI1B
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Select file"
msgstr ""
#. js-lingui-id: ljSvAs
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
msgid "Select header row"
msgstr ""
#. js-lingui-id: mWHn81
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Select the correct field for each column you'd like to import."
msgstr ""
#. js-lingui-id: pofGCP
#: src/modules/settings/data-model/fields/forms/boolean/components/SettingsDataModelFieldBooleanForm.tsx
msgid "Select the default value for this boolean field"
@@ -3724,11 +3495,6 @@ msgstr "Valitse tämän loogisen kentän oletusarvo"
msgid "Select the events you wish to send to this endpoint"
msgstr "Valitse tapahtumat, jotka haluat lähettää tähän päätepisteeseen"
#. js-lingui-id: +xn1pe
#: src/modules/spreadsheet-import/steps/components/SelectSheetStep/SelectSheetStep.tsx
msgid "Select the sheet to use"
msgstr ""
#. js-lingui-id: AXTJAW
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Select your preferred language"
@@ -3833,16 +3599,6 @@ msgstr "Pitäisikö kentän nimen muutoksen vaikuttaa myös API-nimeen?"
msgid "Should changing an object's label also change the API?"
msgstr "Pitäisikö objektin nimilapun muuttaminen vaihtaa myös APIa?"
#. js-lingui-id: qi+g0a
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Show only rows with errors"
msgstr ""
#. js-lingui-id: MHlGJL
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Show unmatched columns"
msgstr ""
#. js-lingui-id: uVg8dY
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutOpenInContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -3901,11 +3657,6 @@ msgstr "Espanja"
msgid "SSO"
msgstr "Kertakirjautuminen"
#. js-lingui-id: vlvAkg
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "SSO (SAML / OIDC)"
msgstr "SSO (SAML / OIDC)"
#. js-lingui-id: ErU1td
#: src/modules/views/view-picker/components/ViewPickerContentCreateMode.tsx
msgid "Stages"
@@ -3959,11 +3710,6 @@ msgstr "Aihe ja metatiedot jaetaan tiimisi kanssa."
msgid "Subject, body and attachments will be shared with your team."
msgstr "Aihe, runko ja liitteet jaetaan tiimisi kanssa."
#. js-lingui-id: hQRttt
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Submit"
msgstr ""
#. js-lingui-id: B5jRKH
#: src/pages/settings/SettingsBilling.tsx
msgid "Subscription has been switched {to}"
@@ -4000,11 +3746,6 @@ msgstr "Vaihda {to}"
msgid "Switch billing {to}"
msgstr "Vaihda laskutus {to}"
#. js-lingui-id: lz+f/E
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Switch to {alternatePlanName}"
msgstr "Vaihda {alternatePlanName}"
#. js-lingui-id: 5TRY4+
#: src/modules/settings/accounts/components/SettingsAccountsConnectedAccountsRowRightContainer.tsx
msgid "Sync failed"
@@ -4145,16 +3886,6 @@ msgstr "Teema"
msgid "Theme "
msgstr "Teema "
#. js-lingui-id: /cSDOy
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "There are required columns that are not matched or ignored. Do you want to continue?"
msgstr ""
#. js-lingui-id: luL9RX
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "There are still some rows that contain errors. Rows with errors will be ignored when submitting."
msgstr ""
#. js-lingui-id: ynfkhb
#: src/pages/auth/PasswordReset.tsx
msgid "There was an error while updating password."
@@ -4298,7 +4029,6 @@ msgstr "Tuntematon virhe"
#. js-lingui-id: GQCXQS
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Unlimited contacts"
msgstr "Rajattomat yhteystiedot"
@@ -4312,13 +4042,7 @@ msgstr "Päivitetty"
msgid "Upload"
msgstr "Lataa"
#. js-lingui-id: 7OP1Xi
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Upload .xlsx, .xls or .csv file"
msgstr ""
#. js-lingui-id: 2IXDgU
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Upload file"
msgstr "Lataa tiedosto"
@@ -4395,11 +4119,6 @@ msgstr "Käyttäjä ei ole kirjautunut sisään"
#~ msgid "Users"
#~ msgstr "Users"
#. js-lingui-id: MGeZsN
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
msgid "Validate data"
msgstr ""
#. js-lingui-id: fXVIZq
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
@@ -4614,11 +4333,6 @@ msgstr "Kirjoita salaisuus"
msgid "yes"
msgstr "kyllä"
#. js-lingui-id: qsAug0
#: src/modules/spreadsheet-import/components/MatchColumnSelect.tsx
msgid "You are already importing this column."
msgstr ""
#. js-lingui-id: MFDARJ
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateReadOnly.tsx
msgid "You are not allowed to create records for this object"
+10 -296
View File
@@ -87,11 +87,6 @@ msgstr "{aggregateLabel} de {fieldLabel}"
msgid "{apiKeyName} API Key"
msgstr "{apiKeyName} Clé API"
#. js-lingui-id: zi5SHH
#: src/modules/object-record/record-index/components/RecordIndexPageHeader.tsx
msgid "{contextStoreNumberOfSelectedRecords} selected"
msgstr "{contextStoreNumberOfSelectedRecords} sélectionné(s)"
#. js-lingui-id: 6j5rE1
#: src/modules/action-menu/actions/record-agnostic-actions/run-workflow-actions/hooks/useRunWorkflowActions.tsx
#: src/modules/action-menu/actions/record-actions/workflow-run-record-actions/hooks/useWorkflowRunRecordActions.tsx
@@ -105,8 +100,8 @@ msgstr "{workspaceMemberName} sera retiré du rôle suivant :"
#. js-lingui-id: YT0WJ4
#: src/pages/onboarding/ChooseYourPlan.tsx
#~ msgid "1 000 workflow node executions"
#~ msgstr "1 000 workflow node executions"
msgid "1 000 workflow node executions"
msgstr "1 000 exécutions de nœuds de workflow"
#. js-lingui-id: vb5TwV
#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldSelect.tsx
@@ -119,11 +114,6 @@ msgstr "1. Sélectionnez un type de champ"
msgid "1. Type"
msgstr "1. Type"
#. js-lingui-id: AvXug3
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "10 000 workflow node executions"
msgstr "10 000 exécutions de nœuds de workflow"
#. js-lingui-id: 4EdXYs
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "12h ({hour12Label})"
@@ -140,11 +130,6 @@ msgstr "2. Configurer"
msgid "2. Configure field"
msgstr "2. Configurer le champ"
#. js-lingui-id: kAtmAv
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "20 000 workflow node executions"
msgstr "20 000 exécutions de nœuds de workflow"
#. js-lingui-id: QsMprd
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "24h ({hour24Label})"
@@ -201,11 +186,6 @@ msgstr "Suppression de compte"
msgid "Accounts"
msgstr "Comptes"
#. js-lingui-id: bwRvnp
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
msgid "Action"
msgstr "Action"
#. js-lingui-id: 7L01XJ
#: src/modules/settings/roles/role-permissions/components/RolePermissionsSettingsTableHeader.tsx
#: src/modules/settings/roles/role-permissions/components/RolePermissionsObjectsTableHeader.tsx
@@ -252,7 +232,7 @@ msgid "Add Approved Access Domain"
msgstr "Ajouter un domaine d'accès approuvé"
#. js-lingui-id: DpV70M
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionForm.tsx
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
msgid "Add Field"
msgstr "Ajouter un champ"
@@ -453,7 +433,6 @@ msgstr "API"
#. js-lingui-id: 0RqpZr
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "API & Webhooks"
msgstr "API & Webhooks"
@@ -537,28 +516,13 @@ msgstr "Êtes-vous sûr de vouloir modifier votre intervalle de facturation ?"
#. js-lingui-id: 8Y3Jbl
#: src/modules/action-menu/actions/record-actions/multiple-records/hooks/useDeleteMultipleRecordsAction.tsx
#~ msgid "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
#~ msgstr "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
#. js-lingui-id: 2BZAqa
#: src/modules/action-menu/actions/record-actions/multiple-records/hooks/useDeleteMultipleRecordsAction.tsx
msgid "Are you sure you want to delete these records? They can be recovered from the Command menu."
msgstr "Êtes-vous sûr de vouloir supprimer ces enregistrements ? Ils peuvent être récupérés depuis le menu Commande."
msgid "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
msgstr "Êtes-vous sûr de vouloir supprimer ces enregistrements ? Ils peuvent être récupérés depuis le menu Commande ({osControlSymbol} + K)."
#. js-lingui-id: Se0vJw
#: src/modules/action-menu/actions/record-actions/single-record/hooks/useDeleteSingleRecordAction.tsx
#~ msgid "Are you sure you want to delete this record? It can be recovered from the Command menu ({osControlSymbol} + K)."
#~ msgstr "Are you sure you want to delete this record? It can be recovered from the Command menu ({osControlSymbol} + K)."
#. js-lingui-id: yb2hF4
#: src/modules/action-menu/actions/record-actions/single-record/hooks/useDeleteSingleRecordAction.tsx
msgid "Are you sure you want to delete this record? It can be recovered from the Command menu."
msgstr "Êtes-vous sûr de vouloir supprimer cet enregistrementa0? Il peut être récupéré depuis le menu Commande."
#. js-lingui-id: rnCqBK
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Are you sure? Your current information will not be saved."
msgstr ""
msgid "Are you sure you want to delete this record? It can be recovered from the Command menu ({osControlSymbol} + K)."
msgstr "Êtes-vous sûr de vouloir supprimer cet enregistrement ? Il peut être récupéré depuis le menu Commande ({osControlSymbol} + K)."
#. js-lingui-id: nYD/Cq
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
@@ -721,18 +685,10 @@ msgstr "Synchronisation du calendrier"
msgid "Calendars"
msgstr "Calendriers"
#. js-lingui-id: msssZq
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "Can't change API names for standard objects"
msgstr "Impossible de modifier les noms d'API pour les objets standard"
#. js-lingui-id: dEgA5A
#: src/pages/auth/Authorize.tsx
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
msgid "Cancel"
msgstr "Annuler"
@@ -839,11 +795,6 @@ msgstr "Fermer"
msgid "Close command menu"
msgstr "Fermer le menu de commande"
#. js-lingui-id: EWPtMO
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
msgid "Code"
msgstr "Code"
#. js-lingui-id: H86f9p
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
@@ -856,11 +807,6 @@ msgstr "Réduire"
msgid "Color code"
msgstr "Code couleur"
#. js-lingui-id: 93hd3e
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Columns not matched:"
msgstr ""
#. js-lingui-id: NM9bMd
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
msgid "Compact view"
@@ -892,7 +838,6 @@ msgid "Configure your emails and calendar settings."
msgstr "Configurer vos paramètres de courriel et de calendrier."
#. js-lingui-id: 7VpPHA
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentConfirmationModal.tsx
msgid "Confirm"
msgstr "Confirmer"
@@ -938,8 +883,6 @@ msgstr "Contexte"
#: src/pages/onboarding/CreateWorkspace.tsx
#: src/pages/onboarding/CreateProfile.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx
msgid "Continue"
msgstr "Continuer"
@@ -1004,11 +947,6 @@ msgstr "Copiez cette clé car elle ne sera plus visible"
msgid "Core"
msgstr "Noyau"
#. js-lingui-id: w5Stxm
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Correct the issues and fill the missing data."
msgstr ""
#. js-lingui-id: wBMjJ2
#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterMenuContent.tsx
#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterDropdownContent.tsx
@@ -1130,7 +1068,6 @@ msgstr "Domaine personnalisé mis à jour"
#. js-lingui-id: 8skTDV
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Custom objects"
msgstr "Objets personnalisés"
@@ -1443,11 +1380,6 @@ msgstr "Afficher comme date relative"
msgid "Display text on multiple lines"
msgstr "Afficher le texte sur plusieurs lignes"
#. js-lingui-id: ji7sqw
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/TemplateColumn.tsx
msgid "Do not import"
msgstr ""
#. js-lingui-id: U9q4zF
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
msgid "Doesn't contain"
@@ -1491,11 +1423,6 @@ msgstr "Ne pas synchroniser les emails de team@ support@ noreply@..."
msgid "Download file"
msgstr "Télécharger le fichier"
#. js-lingui-id: 6D/BnN
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Drop file here..."
msgstr ""
#. js-lingui-id: KIjvtr
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
msgid "Dutch"
@@ -1553,7 +1480,6 @@ msgstr "Modifier le nom de votre sous-domaine ou définir un domaine personnalis
#: src/pages/settings/SettingsWorkspaceMembers.tsx
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/auth/PasswordReset.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentTableHeader.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
msgid "Email"
@@ -1571,7 +1497,6 @@ msgstr "L'email ne peut pas être vide"
#. js-lingui-id: lfQsvW
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Email integration"
msgstr "Intégration du courriel"
@@ -1781,21 +1706,11 @@ msgstr "Exclure les personnes et domaines suivants de ma synchronisation de cour
msgid "Existing objects"
msgstr "Objets existants"
#. js-lingui-id: ydzS9x
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Exit"
msgstr ""
#. js-lingui-id: LFNXuj
#: src/modules/ui/layout/fullscreen/components/FullScreenContainer.tsx
msgid "Exit Full Screen"
msgstr "Quitter le plein écran"
#. js-lingui-id: XB4onr
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Exit import flow"
msgstr ""
#. js-lingui-id: IZ4o2e
#: src/modules/navigation/components/AppNavigationDrawer.tsx
msgid "Exit Settings"
@@ -1981,11 +1896,6 @@ msgstr "Filtre"
msgid "Filters"
msgstr "Filtres"
#. js-lingui-id: SNdnlf
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Finish flow with errors"
msgstr ""
#. js-lingui-id: USZ2N6
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
msgid "Finnish"
@@ -2034,7 +1944,6 @@ msgstr "d'annuel à mensuel"
#. js-lingui-id: scmRyR
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Full access"
msgstr "Accès complet"
@@ -2072,24 +1981,11 @@ msgstr "Obtenez votre abonnement"
msgid "Global"
msgstr "Global"
#. js-lingui-id: iS69s6
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
msgid "Go to runs"
msgstr "Aller aux exécutions"
#. js-lingui-id: mT57+Q
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
msgid "Go to Settings"
msgstr "Aller aux paramètres"
#. js-lingui-id: A5WHZY
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
msgid "Go to workflows"
msgstr "Aller aux workflows"
#. js-lingui-id: hWp1MY
#: src/pages/settings/SettingsWorkspace.tsx
msgid "Grant Twenty support temporary access to your workspace so we can troubleshoot problems or recover content on your behalf. You can revoke access at any time."
@@ -2149,34 +2045,6 @@ msgstr "Champs cachés"
msgid "Hide"
msgstr "Cacher"
#. js-lingui-id: OlbYor
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
msgid "Hide deleted"
msgstr "Masquer les supprimés"
#. js-lingui-id: FHhlye
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
msgid "Hide deleted records"
msgstr "Masquer les enregistrements supprimés"
#. js-lingui-id: 0dZtKR
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
msgid "Hide deleted runs"
msgstr "Masquer les exécutions supprimées"
#. js-lingui-id: Jc6FrI
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
msgid "Hide deleted versions"
msgstr "Masquer les versions supprimées"
#. js-lingui-id: aOZAIB
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
msgid "Hide deleted workflows"
msgstr "Masquer les workflows supprimés"
#. js-lingui-id: HS8BG/
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownRecordGroupsContent.tsx
msgid "Hide empty groups"
@@ -2584,8 +2452,8 @@ msgstr "Déconnexion"
#. js-lingui-id: nOhz3x
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
msgid "Logout"
msgstr "Déconnexion"
#~ msgid "Logout"
#~ msgstr "Logout"
#. js-lingui-id: PTozs8
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
@@ -2629,16 +2497,6 @@ msgstr "Gérez votre abonnement"
msgid "Mark as done"
msgstr "Marquer comme terminé"
#. js-lingui-id: 7h8ch8
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
msgid "Match columns"
msgstr ""
#. js-lingui-id: gDLior
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Match Columns"
msgstr ""
#. js-lingui-id: CK1KXz
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts
@@ -2867,12 +2725,6 @@ msgstr "Nouveau fournisseur SSO"
#~ msgid "New Webhook"
#~ msgstr "New Webhook"
#. js-lingui-id: AxNmtI
#: src/modules/spreadsheet-import/steps/components/SelectSheetStep/SelectSheetStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Next Step"
msgstr ""
#. js-lingui-id: OTe3RI
#: src/pages/settings/workspace/SettingsDomain.tsx
msgid "No change detected"
@@ -2888,16 +2740,6 @@ msgstr "Aucun compte connecté"
msgid "No country"
msgstr "Aucun pays"
#. js-lingui-id: pxvJ9B
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "No data containing errors"
msgstr ""
#. js-lingui-id: dihZwh
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "No data found"
msgstr ""
#. js-lingui-id: UwvrGq
#: src/pages/settings/SettingsWorkspaceMembers.tsx
msgid "No members"
@@ -2954,11 +2796,6 @@ msgstr "Aucun enregistrement trouvé"
#~ msgid "No Result"
#~ msgstr "No Result"
#. js-lingui-id: Ev2r9A
#: src/modules/spreadsheet-import/components/MatchColumnSelect.tsx
msgid "No results"
msgstr ""
#. js-lingui-id: MA3x23
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentWorkspaceMemberPickerDropdownContent.tsx
msgid "No Results"
@@ -2991,11 +2828,6 @@ msgstr "Aucun"
msgid "Norwegian"
msgstr "Norvégien"
#. js-lingui-id: v3W9iu
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Not all columns matched"
msgstr ""
#. js-lingui-id: 0qBE9S
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownMenuContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownMenuContent.tsx
@@ -3291,11 +3123,6 @@ msgstr "Aperçu"
msgid "Privacy Policy"
msgstr "Politique de confidentialité"
#. js-lingui-id: k1ifdL
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Processing..."
msgstr ""
#. js-lingui-id: vERlcd
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/SettingsProfile.tsx
@@ -3409,7 +3236,6 @@ msgstr "Recharger"
#. js-lingui-id: t/YqKh
#: src/modules/ui/input/components/ImageInput.tsx
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Remove"
msgstr "Retirer"
@@ -3483,15 +3309,10 @@ msgid "Restore records"
msgstr "Restaurer les enregistrements"
#. js-lingui-id: kx0s+n
#: src/modules/command-menu/hooks/useCommandMenuSearchRecords.tsx
#: src/modules/command-menu/hooks/useSearchRecords.tsx
msgid "Results"
msgstr "Résultats"
#. js-lingui-id: BohSvm
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Review your import"
msgstr ""
#. js-lingui-id: 5dJK4M
#: src/pages/settings/roles/SettingsRoles.tsx
#: src/pages/settings/roles/SettingsRoles.tsx
@@ -3532,7 +3353,6 @@ msgstr "Schéma"
#. js-lingui-id: A1taO8
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownWorkspacesListComponents.tsx
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentWorkspaceMemberPickerDropdown.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
#: src/modules/navigation/components/MainNavigationDrawerItems.tsx
#: src/modules/command-menu/hooks/useOpenRecordsSearchPageInCommandMenu.ts
@@ -3580,7 +3400,6 @@ msgstr "Rechercher un index..."
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownRecordGroupFieldsContent.tsx
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownFilterSelect.tsx
#: src/modules/object-record/advanced-filter/components/AdvancedFilterFieldSelectSearchInput.tsx
msgid "Search fields"
msgstr "Champs de recherche"
@@ -3643,19 +3462,11 @@ msgstr "Voir les workflows supprimés"
#. js-lingui-id: OpPn5Z
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
msgid "See runs"
msgstr "Voir les exécutions"
#. js-lingui-id: gGEfj/
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
msgid "See version"
msgstr "Voir les versions"
#. js-lingui-id: EtyY4+
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
@@ -3668,52 +3479,12 @@ msgstr "Voir les versions"
msgid "See versions history"
msgstr "Voir l'historique des versions"
#. js-lingui-id: qEKLJV
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
msgid "See workflow"
msgstr "Voir le workflow"
#. js-lingui-id: XThiR2
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
msgid "See workflows"
msgstr "Voir les workflows"
#. js-lingui-id: WZvt/6
#: src/modules/command-menu/hooks/useWorkflowCommandMenu.ts
#: src/modules/command-menu/hooks/__tests__/useWorkflowCommandMenu.test.tsx
msgid "Select Action"
msgstr "Sélectionner l'action"
#. js-lingui-id: hVPa4O
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/UnmatchColumn.tsx
msgid "Select an option"
msgstr ""
#. js-lingui-id: 21YIUv
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/TemplateColumn.tsx
msgid "Select column..."
msgstr ""
#. js-lingui-id: J6WI1B
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Select file"
msgstr ""
#. js-lingui-id: ljSvAs
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
msgid "Select header row"
msgstr ""
#. js-lingui-id: mWHn81
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Select the correct field for each column you'd like to import."
msgstr ""
#. js-lingui-id: pofGCP
#: src/modules/settings/data-model/fields/forms/boolean/components/SettingsDataModelFieldBooleanForm.tsx
msgid "Select the default value for this boolean field"
@@ -3724,11 +3495,6 @@ msgstr "Sélectionnez la valeur par défaut pour ce champ booléen"
msgid "Select the events you wish to send to this endpoint"
msgstr "Sélectionnez les événements à envoyer à ce point de terminaison"
#. js-lingui-id: +xn1pe
#: src/modules/spreadsheet-import/steps/components/SelectSheetStep/SelectSheetStep.tsx
msgid "Select the sheet to use"
msgstr ""
#. js-lingui-id: AXTJAW
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Select your preferred language"
@@ -3833,16 +3599,6 @@ msgstr "Changer l'étiquette d'un champ doit-il aussi changer le nom de l'API ?"
msgid "Should changing an object's label also change the API?"
msgstr "Changer le libellé d'un objet doit-il aussi changer l'API ?"
#. js-lingui-id: qi+g0a
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Show only rows with errors"
msgstr ""
#. js-lingui-id: MHlGJL
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Show unmatched columns"
msgstr ""
#. js-lingui-id: uVg8dY
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutOpenInContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -3901,11 +3657,6 @@ msgstr "Espagnol"
msgid "SSO"
msgstr "SSO"
#. js-lingui-id: vlvAkg
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "SSO (SAML / OIDC)"
msgstr "SSO (SAML / OIDC)"
#. js-lingui-id: ErU1td
#: src/modules/views/view-picker/components/ViewPickerContentCreateMode.tsx
msgid "Stages"
@@ -3959,11 +3710,6 @@ msgstr "Le sujet et les métadonnées seront partagés avec votre équipe."
msgid "Subject, body and attachments will be shared with your team."
msgstr "Le sujet, le corps et les pièces jointes seront partagés avec votre équipe."
#. js-lingui-id: hQRttt
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Submit"
msgstr ""
#. js-lingui-id: B5jRKH
#: src/pages/settings/SettingsBilling.tsx
msgid "Subscription has been switched {to}"
@@ -4000,11 +3746,6 @@ msgstr "Changer {to}"
msgid "Switch billing {to}"
msgstr "Changer la facturation {to}"
#. js-lingui-id: lz+f/E
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Switch to {alternatePlanName}"
msgstr "Changer pour {alternatePlanName}"
#. js-lingui-id: 5TRY4+
#: src/modules/settings/accounts/components/SettingsAccountsConnectedAccountsRowRightContainer.tsx
msgid "Sync failed"
@@ -4145,16 +3886,6 @@ msgstr "Thème"
msgid "Theme "
msgstr "Thème "
#. js-lingui-id: /cSDOy
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "There are required columns that are not matched or ignored. Do you want to continue?"
msgstr ""
#. js-lingui-id: luL9RX
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "There are still some rows that contain errors. Rows with errors will be ignored when submitting."
msgstr ""
#. js-lingui-id: ynfkhb
#: src/pages/auth/PasswordReset.tsx
msgid "There was an error while updating password."
@@ -4298,7 +4029,6 @@ msgstr "Erreur inconnue"
#. js-lingui-id: GQCXQS
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Unlimited contacts"
msgstr "Contacts illimités"
@@ -4312,13 +4042,7 @@ msgstr "Mis à jour"
msgid "Upload"
msgstr "Téléverser"
#. js-lingui-id: 7OP1Xi
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Upload .xlsx, .xls or .csv file"
msgstr ""
#. js-lingui-id: 2IXDgU
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Upload file"
msgstr "Téléverser le fichier"
@@ -4395,11 +4119,6 @@ msgstr "L'utilisateur n'est pas connecté"
#~ msgid "Users"
#~ msgstr "Users"
#. js-lingui-id: MGeZsN
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
msgid "Validate data"
msgstr ""
#. js-lingui-id: fXVIZq
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
@@ -4614,11 +4333,6 @@ msgstr "Écrire un secret"
msgid "yes"
msgstr "oui"
#. js-lingui-id: qsAug0
#: src/modules/spreadsheet-import/components/MatchColumnSelect.tsx
msgid "You are already importing this column."
msgstr ""
#. js-lingui-id: MFDARJ
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateReadOnly.tsx
msgid "You are not allowed to create records for this object"
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
+10 -296
View File
@@ -87,11 +87,6 @@ msgstr "{aggregateLabel} של {fieldLabel}"
msgid "{apiKeyName} API Key"
msgstr "מפתח API של {apiKeyName}"
#. js-lingui-id: zi5SHH
#: src/modules/object-record/record-index/components/RecordIndexPageHeader.tsx
msgid "{contextStoreNumberOfSelectedRecords} selected"
msgstr "{contextStoreNumberOfSelectedRecords} נבחר"
#. js-lingui-id: 6j5rE1
#: src/modules/action-menu/actions/record-agnostic-actions/run-workflow-actions/hooks/useRunWorkflowActions.tsx
#: src/modules/action-menu/actions/record-actions/workflow-run-record-actions/hooks/useWorkflowRunRecordActions.tsx
@@ -105,8 +100,8 @@ msgstr "{workspaceMemberName} יוסר מהתפקיד הבא:"
#. js-lingui-id: YT0WJ4
#: src/pages/onboarding/ChooseYourPlan.tsx
#~ msgid "1 000 workflow node executions"
#~ msgstr "1 000 workflow node executions"
msgid "1 000 workflow node executions"
msgstr "1 000 workflow node executions"
#. js-lingui-id: vb5TwV
#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldSelect.tsx
@@ -119,11 +114,6 @@ msgstr "1. בחר סוג שדה"
msgid "1. Type"
msgstr "1. סוג"
#. js-lingui-id: AvXug3
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "10 000 workflow node executions"
msgstr "10,000 הפעלות של צמתים בתהליכי עבודה"
#. js-lingui-id: 4EdXYs
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "12h ({hour12Label})"
@@ -140,11 +130,6 @@ msgstr "2. קבע תצורה"
msgid "2. Configure field"
msgstr "2. קבע תצורה לשדה"
#. js-lingui-id: kAtmAv
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "20 000 workflow node executions"
msgstr "20,000 הפעלות של צמתים בתהליכי עבודה"
#. js-lingui-id: QsMprd
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "24h ({hour24Label})"
@@ -201,11 +186,6 @@ msgstr "מחיקת חשבון"
msgid "Accounts"
msgstr "חשבונות"
#. js-lingui-id: bwRvnp
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
msgid "Action"
msgstr "פעולה"
#. js-lingui-id: 7L01XJ
#: src/modules/settings/roles/role-permissions/components/RolePermissionsSettingsTableHeader.tsx
#: src/modules/settings/roles/role-permissions/components/RolePermissionsObjectsTableHeader.tsx
@@ -252,7 +232,7 @@ msgid "Add Approved Access Domain"
msgstr "הוסף דומיין עם גישה מאושרת"
#. js-lingui-id: DpV70M
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionForm.tsx
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
msgid "Add Field"
msgstr "הוסף שדה"
@@ -453,7 +433,6 @@ msgstr ""
#. js-lingui-id: 0RqpZr
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "API & Webhooks"
msgstr "API ו-Webhooks"
@@ -537,28 +516,13 @@ msgstr "האם אתה בטוח שברצונך לשנות את מרווח החי
#. js-lingui-id: 8Y3Jbl
#: src/modules/action-menu/actions/record-actions/multiple-records/hooks/useDeleteMultipleRecordsAction.tsx
#~ msgid "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
#~ msgstr "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
#. js-lingui-id: 2BZAqa
#: src/modules/action-menu/actions/record-actions/multiple-records/hooks/useDeleteMultipleRecordsAction.tsx
msgid "Are you sure you want to delete these records? They can be recovered from the Command menu."
msgstr "האם אתה בטוח שברצונך למחוק את הרשומות הללו? ניתן לשחזר אותן מתפריט הפקודות."
msgid "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
msgstr "האם אתה בטוח שברצונך למחוק את הרשומות הללו? ניתן לשחזר אותן מתפריט Command ({osControlSymbol} + K)."
#. js-lingui-id: Se0vJw
#: src/modules/action-menu/actions/record-actions/single-record/hooks/useDeleteSingleRecordAction.tsx
#~ msgid "Are you sure you want to delete this record? It can be recovered from the Command menu ({osControlSymbol} + K)."
#~ msgstr "Are you sure you want to delete this record? It can be recovered from the Command menu ({osControlSymbol} + K)."
#. js-lingui-id: yb2hF4
#: src/modules/action-menu/actions/record-actions/single-record/hooks/useDeleteSingleRecordAction.tsx
msgid "Are you sure you want to delete this record? It can be recovered from the Command menu."
msgstr "האם אתה בטוח שברצונך למחוק את הרשומה הזו? ניתן לשחזר אותה מתפריט Command."
#. js-lingui-id: rnCqBK
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Are you sure? Your current information will not be saved."
msgstr ""
msgid "Are you sure you want to delete this record? It can be recovered from the Command menu ({osControlSymbol} + K)."
msgstr "האם אתה בטוח שברצונך למחוק את הרשומה הזו? ניתן לשחזר אותה מתפריט Command ({osControlSymbol} + K)."
#. js-lingui-id: nYD/Cq
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
@@ -721,18 +685,10 @@ msgstr "סנכרון לוח שנה"
msgid "Calendars"
msgstr "לוחות שנה"
#. js-lingui-id: msssZq
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "Can't change API names for standard objects"
msgstr "לא ניתן לשנות שמות API עבור עצמים סטנדרטיים"
#. js-lingui-id: dEgA5A
#: src/pages/auth/Authorize.tsx
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
msgid "Cancel"
msgstr "בטל"
@@ -839,11 +795,6 @@ msgstr "סגור"
msgid "Close command menu"
msgstr "סגור תפריט פקודות"
#. js-lingui-id: EWPtMO
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
msgid "Code"
msgstr "קוד"
#. js-lingui-id: H86f9p
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
@@ -856,11 +807,6 @@ msgstr "צמצם"
msgid "Color code"
msgstr "קוד צבע"
#. js-lingui-id: 93hd3e
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Columns not matched:"
msgstr ""
#. js-lingui-id: NM9bMd
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
msgid "Compact view"
@@ -892,7 +838,6 @@ msgid "Configure your emails and calendar settings."
msgstr "הגדר את ההגדרות של האימיילים ולוח השנה שלך."
#. js-lingui-id: 7VpPHA
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentConfirmationModal.tsx
msgid "Confirm"
msgstr "אישור"
@@ -938,8 +883,6 @@ msgstr "הקשר"
#: src/pages/onboarding/CreateWorkspace.tsx
#: src/pages/onboarding/CreateProfile.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx
msgid "Continue"
msgstr "המשך"
@@ -1004,11 +947,6 @@ msgstr "העתק מפתח זה כיוון שלא יהיה נראה שנית"
msgid "Core"
msgstr "ליבה"
#. js-lingui-id: w5Stxm
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Correct the issues and fill the missing data."
msgstr ""
#. js-lingui-id: wBMjJ2
#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterMenuContent.tsx
#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterDropdownContent.tsx
@@ -1130,7 +1068,6 @@ msgstr "הדומיין המותאם עודכן"
#. js-lingui-id: 8skTDV
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Custom objects"
msgstr "עצמים מותאמים אישית"
@@ -1443,11 +1380,6 @@ msgstr "הצג כתאריך יחסי"
msgid "Display text on multiple lines"
msgstr "הצג טקסט במספר שורות"
#. js-lingui-id: ji7sqw
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/TemplateColumn.tsx
msgid "Do not import"
msgstr ""
#. js-lingui-id: U9q4zF
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
msgid "Doesn't contain"
@@ -1491,11 +1423,6 @@ msgstr "אל תסנכרן אימיילים מ-team@ support@ noreply@..."
msgid "Download file"
msgstr "הורד קובץ"
#. js-lingui-id: 6D/BnN
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Drop file here..."
msgstr ""
#. js-lingui-id: KIjvtr
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
msgid "Dutch"
@@ -1553,7 +1480,6 @@ msgstr "ערוך את שם התת-דומיין שלך או הגדר תחום מ
#: src/pages/settings/SettingsWorkspaceMembers.tsx
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/auth/PasswordReset.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentTableHeader.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
msgid "Email"
@@ -1571,7 +1497,6 @@ msgstr "דוא\"ל לא יכול להיות ריק"
#. js-lingui-id: lfQsvW
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Email integration"
msgstr "אינטגרציית דוא\"ל"
@@ -1781,21 +1706,11 @@ msgstr "לא לכלול את האנשים והדומיינים הבאים מהס
msgid "Existing objects"
msgstr "אובייקטים קיימים"
#. js-lingui-id: ydzS9x
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Exit"
msgstr ""
#. js-lingui-id: LFNXuj
#: src/modules/ui/layout/fullscreen/components/FullScreenContainer.tsx
msgid "Exit Full Screen"
msgstr "צא ממסך מלא"
#. js-lingui-id: XB4onr
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Exit import flow"
msgstr ""
#. js-lingui-id: IZ4o2e
#: src/modules/navigation/components/AppNavigationDrawer.tsx
msgid "Exit Settings"
@@ -1981,11 +1896,6 @@ msgstr "סינון"
msgid "Filters"
msgstr "מסננים"
#. js-lingui-id: SNdnlf
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Finish flow with errors"
msgstr ""
#. js-lingui-id: USZ2N6
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
msgid "Finnish"
@@ -2034,7 +1944,6 @@ msgstr "משנתי לחודשי"
#. js-lingui-id: scmRyR
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Full access"
msgstr "גישה מלאה"
@@ -2072,24 +1981,11 @@ msgstr "השיגו את המנוי שלכם"
msgid "Global"
msgstr "גלובלי"
#. js-lingui-id: iS69s6
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
msgid "Go to runs"
msgstr "עבור להרצות"
#. js-lingui-id: mT57+Q
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
msgid "Go to Settings"
msgstr "עבור להגדרות"
#. js-lingui-id: A5WHZY
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
msgid "Go to workflows"
msgstr "עבור לתהליכי עבודה"
#. js-lingui-id: hWp1MY
#: src/pages/settings/SettingsWorkspace.tsx
msgid "Grant Twenty support temporary access to your workspace so we can troubleshoot problems or recover content on your behalf. You can revoke access at any time."
@@ -2149,34 +2045,6 @@ msgstr "שדות מוסתרים"
msgid "Hide"
msgstr "הסתרה"
#. js-lingui-id: OlbYor
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
msgid "Hide deleted"
msgstr "הסתר נמחקים"
#. js-lingui-id: FHhlye
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
msgid "Hide deleted records"
msgstr "הסתר רשומות שנמחקו"
#. js-lingui-id: 0dZtKR
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
msgid "Hide deleted runs"
msgstr "הסתר הפעלות שנמחקו"
#. js-lingui-id: Jc6FrI
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
msgid "Hide deleted versions"
msgstr "הסתר גרסאות שנמחקו"
#. js-lingui-id: aOZAIB
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
msgid "Hide deleted workflows"
msgstr "הסתר פעולות עבודה שנמחקו"
#. js-lingui-id: HS8BG/
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownRecordGroupsContent.tsx
msgid "Hide empty groups"
@@ -2584,8 +2452,8 @@ msgstr "התנתק"
#. js-lingui-id: nOhz3x
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
msgid "Logout"
msgstr "התנתקות"
#~ msgid "Logout"
#~ msgstr "Logout"
#. js-lingui-id: PTozs8
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
@@ -2629,16 +2497,6 @@ msgstr "ניהול המנוי שלך"
msgid "Mark as done"
msgstr "סימון כבוצע"
#. js-lingui-id: 7h8ch8
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
msgid "Match columns"
msgstr ""
#. js-lingui-id: gDLior
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Match Columns"
msgstr ""
#. js-lingui-id: CK1KXz
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts
@@ -2867,12 +2725,6 @@ msgstr "ספק SSO חדש"
#~ msgid "New Webhook"
#~ msgstr "New Webhook"
#. js-lingui-id: AxNmtI
#: src/modules/spreadsheet-import/steps/components/SelectSheetStep/SelectSheetStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Next Step"
msgstr ""
#. js-lingui-id: OTe3RI
#: src/pages/settings/workspace/SettingsDomain.tsx
msgid "No change detected"
@@ -2888,16 +2740,6 @@ msgstr "אין חשבון מחובר"
msgid "No country"
msgstr "אין מדינה"
#. js-lingui-id: pxvJ9B
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "No data containing errors"
msgstr ""
#. js-lingui-id: dihZwh
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "No data found"
msgstr ""
#. js-lingui-id: UwvrGq
#: src/pages/settings/SettingsWorkspaceMembers.tsx
msgid "No members"
@@ -2954,11 +2796,6 @@ msgstr "לא נמצאו רשומות"
#~ msgid "No Result"
#~ msgstr "No Result"
#. js-lingui-id: Ev2r9A
#: src/modules/spreadsheet-import/components/MatchColumnSelect.tsx
msgid "No results"
msgstr ""
#. js-lingui-id: MA3x23
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentWorkspaceMemberPickerDropdownContent.tsx
msgid "No Results"
@@ -2991,11 +2828,6 @@ msgstr "אין"
msgid "Norwegian"
msgstr "נורווגית"
#. js-lingui-id: v3W9iu
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Not all columns matched"
msgstr ""
#. js-lingui-id: 0qBE9S
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownMenuContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownMenuContent.tsx
@@ -3291,11 +3123,6 @@ msgstr "תצוגה מקדימה"
msgid "Privacy Policy"
msgstr "מדיניות הפרטיות"
#. js-lingui-id: k1ifdL
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Processing..."
msgstr ""
#. js-lingui-id: vERlcd
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/SettingsProfile.tsx
@@ -3409,7 +3236,6 @@ msgstr "טען מחדש"
#. js-lingui-id: t/YqKh
#: src/modules/ui/input/components/ImageInput.tsx
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Remove"
msgstr "\\"
@@ -3483,15 +3309,10 @@ msgid "Restore records"
msgstr "שחזור רשומות"
#. js-lingui-id: kx0s+n
#: src/modules/command-menu/hooks/useCommandMenuSearchRecords.tsx
#: src/modules/command-menu/hooks/useSearchRecords.tsx
msgid "Results"
msgstr "\\"
#. js-lingui-id: BohSvm
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Review your import"
msgstr ""
#. js-lingui-id: 5dJK4M
#: src/pages/settings/roles/SettingsRoles.tsx
#: src/pages/settings/roles/SettingsRoles.tsx
@@ -3532,7 +3353,6 @@ msgstr "סכימה"
#. js-lingui-id: A1taO8
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownWorkspacesListComponents.tsx
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentWorkspaceMemberPickerDropdown.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
#: src/modules/navigation/components/MainNavigationDrawerItems.tsx
#: src/modules/command-menu/hooks/useOpenRecordsSearchPageInCommandMenu.ts
@@ -3580,7 +3400,6 @@ msgstr "חפש אינדקס..."
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownRecordGroupFieldsContent.tsx
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownFilterSelect.tsx
#: src/modules/object-record/advanced-filter/components/AdvancedFilterFieldSelectSearchInput.tsx
msgid "Search fields"
msgstr "\\"
@@ -3643,19 +3462,11 @@ msgstr "ראה זרימות עבודה שנמחקו"
#. js-lingui-id: OpPn5Z
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
msgid "See runs"
msgstr "\\"
#. js-lingui-id: gGEfj/
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
msgid "See version"
msgstr "ראה גרסה"
#. js-lingui-id: EtyY4+
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
@@ -3668,52 +3479,12 @@ msgstr "\\"
msgid "See versions history"
msgstr "\\"
#. js-lingui-id: qEKLJV
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
msgid "See workflow"
msgstr "ראה תהליך עבודה"
#. js-lingui-id: XThiR2
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
msgid "See workflows"
msgstr "ראה תהליכי עבודה"
#. js-lingui-id: WZvt/6
#: src/modules/command-menu/hooks/useWorkflowCommandMenu.ts
#: src/modules/command-menu/hooks/__tests__/useWorkflowCommandMenu.test.tsx
msgid "Select Action"
msgstr "בחר פעולה"
#. js-lingui-id: hVPa4O
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/UnmatchColumn.tsx
msgid "Select an option"
msgstr ""
#. js-lingui-id: 21YIUv
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/TemplateColumn.tsx
msgid "Select column..."
msgstr ""
#. js-lingui-id: J6WI1B
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Select file"
msgstr ""
#. js-lingui-id: ljSvAs
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
msgid "Select header row"
msgstr ""
#. js-lingui-id: mWHn81
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Select the correct field for each column you'd like to import."
msgstr ""
#. js-lingui-id: pofGCP
#: src/modules/settings/data-model/fields/forms/boolean/components/SettingsDataModelFieldBooleanForm.tsx
msgid "Select the default value for this boolean field"
@@ -3724,11 +3495,6 @@ msgstr "בחר את ערך ברירת המחדל לשדה הבוליאני הז
msgid "Select the events you wish to send to this endpoint"
msgstr "\\"
#. js-lingui-id: +xn1pe
#: src/modules/spreadsheet-import/steps/components/SelectSheetStep/SelectSheetStep.tsx
msgid "Select the sheet to use"
msgstr ""
#. js-lingui-id: AXTJAW
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Select your preferred language"
@@ -3833,16 +3599,6 @@ msgstr "האם שינוי תווית שדה צריך גם לשנות את שם
msgid "Should changing an object's label also change the API?"
msgstr "האם שינוי תווית של אובייקט צריך גם לשנות את ה-API?"
#. js-lingui-id: qi+g0a
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Show only rows with errors"
msgstr ""
#. js-lingui-id: MHlGJL
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Show unmatched columns"
msgstr ""
#. js-lingui-id: uVg8dY
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutOpenInContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -3901,11 +3657,6 @@ msgstr "\\"
msgid "SSO"
msgstr "\\"
#. js-lingui-id: vlvAkg
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "SSO (SAML / OIDC)"
msgstr "SSO (SAML / OIDC)"
#. js-lingui-id: ErU1td
#: src/modules/views/view-picker/components/ViewPickerContentCreateMode.tsx
msgid "Stages"
@@ -3959,11 +3710,6 @@ msgstr "נושא ומטא-נתונים ישותפו עם הצוות שלך."
msgid "Subject, body and attachments will be shared with your team."
msgstr "נושא, גוף וקבצים מצורפים ישותפו עם הצוות שלך."
#. js-lingui-id: hQRttt
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Submit"
msgstr ""
#. js-lingui-id: B5jRKH
#: src/pages/settings/SettingsBilling.tsx
msgid "Subscription has been switched {to}"
@@ -4000,11 +3746,6 @@ msgstr "החלף {to}"
msgid "Switch billing {to}"
msgstr "שינוי חיוב {to}"
#. js-lingui-id: lz+f/E
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Switch to {alternatePlanName}"
msgstr "עבור ל-{alternatePlanName}"
#. js-lingui-id: 5TRY4+
#: src/modules/settings/accounts/components/SettingsAccountsConnectedAccountsRowRightContainer.tsx
msgid "Sync failed"
@@ -4145,16 +3886,6 @@ msgstr "תמה"
msgid "Theme "
msgstr "תמה "
#. js-lingui-id: /cSDOy
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "There are required columns that are not matched or ignored. Do you want to continue?"
msgstr ""
#. js-lingui-id: luL9RX
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "There are still some rows that contain errors. Rows with errors will be ignored when submitting."
msgstr ""
#. js-lingui-id: ynfkhb
#: src/pages/auth/PasswordReset.tsx
msgid "There was an error while updating password."
@@ -4298,7 +4029,6 @@ msgstr "שגיאה לא ידועה"
#. js-lingui-id: GQCXQS
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Unlimited contacts"
msgstr "אין מגבלה על מספר אנשי הקשר"
@@ -4312,13 +4042,7 @@ msgstr "עודכן"
msgid "Upload"
msgstr "העלה"
#. js-lingui-id: 7OP1Xi
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Upload .xlsx, .xls or .csv file"
msgstr ""
#. js-lingui-id: 2IXDgU
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Upload file"
msgstr "העלה קובץ"
@@ -4395,11 +4119,6 @@ msgstr "המשתמש לא מחובר"
#~ msgid "Users"
#~ msgstr "Users"
#. js-lingui-id: MGeZsN
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
msgid "Validate data"
msgstr ""
#. js-lingui-id: fXVIZq
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
@@ -4614,11 +4333,6 @@ msgstr "כתוב סוד"
msgid "yes"
msgstr "כן"
#. js-lingui-id: qsAug0
#: src/modules/spreadsheet-import/components/MatchColumnSelect.tsx
msgid "You are already importing this column."
msgstr ""
#. js-lingui-id: MFDARJ
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateReadOnly.tsx
msgid "You are not allowed to create records for this object"
+10 -296
View File
@@ -87,11 +87,6 @@ msgstr "{aggregateLabel} a(z) {fieldLabel} alapján"
msgid "{apiKeyName} API Key"
msgstr "{apiKeyName} API kulcs"
#. js-lingui-id: zi5SHH
#: src/modules/object-record/record-index/components/RecordIndexPageHeader.tsx
msgid "{contextStoreNumberOfSelectedRecords} selected"
msgstr "{contextStoreNumberOfSelectedRecords} kiválasztva"
#. js-lingui-id: 6j5rE1
#: src/modules/action-menu/actions/record-agnostic-actions/run-workflow-actions/hooks/useRunWorkflowActions.tsx
#: src/modules/action-menu/actions/record-actions/workflow-run-record-actions/hooks/useWorkflowRunRecordActions.tsx
@@ -105,8 +100,8 @@ msgstr "{workspaceMemberName} a következő szerepkörből lesz kivezetve:"
#. js-lingui-id: YT0WJ4
#: src/pages/onboarding/ChooseYourPlan.tsx
#~ msgid "1 000 workflow node executions"
#~ msgstr "1 000 workflow node executions"
msgid "1 000 workflow node executions"
msgstr "1 000 munkafolyamat-csomópont végrehajtása"
#. js-lingui-id: vb5TwV
#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldSelect.tsx
@@ -119,11 +114,6 @@ msgstr "1. Válasszon mezőtípust"
msgid "1. Type"
msgstr "1. Típus"
#. js-lingui-id: AvXug3
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "10 000 workflow node executions"
msgstr "10 000 munkafolyamat csomópont végrehajtás"
#. js-lingui-id: 4EdXYs
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "12h ({hour12Label})"
@@ -140,11 +130,6 @@ msgstr "2. Konfigurálás"
msgid "2. Configure field"
msgstr "2. Mező konfigurálása"
#. js-lingui-id: kAtmAv
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "20 000 workflow node executions"
msgstr "20 000 munkafolyamat csomópont végrehajtás"
#. js-lingui-id: QsMprd
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "24h ({hour24Label})"
@@ -201,11 +186,6 @@ msgstr "Fiók törlése"
msgid "Accounts"
msgstr "Fiókok"
#. js-lingui-id: bwRvnp
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
msgid "Action"
msgstr "Művelet"
#. js-lingui-id: 7L01XJ
#: src/modules/settings/roles/role-permissions/components/RolePermissionsSettingsTableHeader.tsx
#: src/modules/settings/roles/role-permissions/components/RolePermissionsObjectsTableHeader.tsx
@@ -252,7 +232,7 @@ msgid "Add Approved Access Domain"
msgstr "Jóváhagyott hozzáférési tartomány hozzáadása"
#. js-lingui-id: DpV70M
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionForm.tsx
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
msgid "Add Field"
msgstr "Mező hozzáadása"
@@ -453,7 +433,6 @@ msgstr "API"
#. js-lingui-id: 0RqpZr
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "API & Webhooks"
msgstr "API & Webhooks"
@@ -537,28 +516,13 @@ msgstr "Biztosan meg akarja változtatni a számlázási intervallumát?"
#. js-lingui-id: 8Y3Jbl
#: src/modules/action-menu/actions/record-actions/multiple-records/hooks/useDeleteMultipleRecordsAction.tsx
#~ msgid "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
#~ msgstr "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
#. js-lingui-id: 2BZAqa
#: src/modules/action-menu/actions/record-actions/multiple-records/hooks/useDeleteMultipleRecordsAction.tsx
msgid "Are you sure you want to delete these records? They can be recovered from the Command menu."
msgstr "Biztosan törölni szeretné ezeket a rekordokat? Visszaállíthatók a Parancs menüből."
msgid "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
msgstr "Biztosan törölni szeretné ezeket a rekordokat? Visszaállíthatók a Parancs menüből ({osControlSymbol} + K)."
#. js-lingui-id: Se0vJw
#: src/modules/action-menu/actions/record-actions/single-record/hooks/useDeleteSingleRecordAction.tsx
#~ msgid "Are you sure you want to delete this record? It can be recovered from the Command menu ({osControlSymbol} + K)."
#~ msgstr "Are you sure you want to delete this record? It can be recovered from the Command menu ({osControlSymbol} + K)."
#. js-lingui-id: yb2hF4
#: src/modules/action-menu/actions/record-actions/single-record/hooks/useDeleteSingleRecordAction.tsx
msgid "Are you sure you want to delete this record? It can be recovered from the Command menu."
msgstr "Biztosan törölni szeretné ezt a rekordot? Visszaállítható a Parancs menüből."
#. js-lingui-id: rnCqBK
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Are you sure? Your current information will not be saved."
msgstr ""
msgid "Are you sure you want to delete this record? It can be recovered from the Command menu ({osControlSymbol} + K)."
msgstr "Biztosan törölni szeretné ezt a rekordot? Visszaállítható a Parancs menüből ({osControlSymbol} + K)."
#. js-lingui-id: nYD/Cq
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
@@ -721,18 +685,10 @@ msgstr "Naptári szinkronizálás"
msgid "Calendars"
msgstr "Naptárak"
#. js-lingui-id: msssZq
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "Can't change API names for standard objects"
msgstr "Nem változtathatók meg a szabványos objektumok API-nevei"
#. js-lingui-id: dEgA5A
#: src/pages/auth/Authorize.tsx
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
msgid "Cancel"
msgstr "Mégse"
@@ -839,11 +795,6 @@ msgstr "Bezár"
msgid "Close command menu"
msgstr "Parancsmenü bezárása"
#. js-lingui-id: EWPtMO
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
msgid "Code"
msgstr "Kód"
#. js-lingui-id: H86f9p
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
@@ -856,11 +807,6 @@ msgstr "Összecsuk"
msgid "Color code"
msgstr "Színekód"
#. js-lingui-id: 93hd3e
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Columns not matched:"
msgstr ""
#. js-lingui-id: NM9bMd
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
msgid "Compact view"
@@ -892,7 +838,6 @@ msgid "Configure your emails and calendar settings."
msgstr "Állítsa be az e-mail és naptár beállításokat."
#. js-lingui-id: 7VpPHA
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentConfirmationModal.tsx
msgid "Confirm"
msgstr "Megerősítés"
@@ -938,8 +883,6 @@ msgstr "Összefüggés"
#: src/pages/onboarding/CreateWorkspace.tsx
#: src/pages/onboarding/CreateProfile.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx
msgid "Continue"
msgstr "Folytatás"
@@ -1004,11 +947,6 @@ msgstr "Másolja le ezt a kulcsot, mert nem lesz újra látható"
msgid "Core"
msgstr ""
#. js-lingui-id: w5Stxm
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Correct the issues and fill the missing data."
msgstr ""
#. js-lingui-id: wBMjJ2
#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterMenuContent.tsx
#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterDropdownContent.tsx
@@ -1130,7 +1068,6 @@ msgstr "Egyéni domain frissítve"
#. js-lingui-id: 8skTDV
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Custom objects"
msgstr "Egyéni objektumok"
@@ -1443,11 +1380,6 @@ msgstr "Megjelen\\u00edt\\u00e9s relat\\u00edv d\\u00e1tumk\\u00e9nt"
msgid "Display text on multiple lines"
msgstr "Szöveg megjelenítése több sorban"
#. js-lingui-id: ji7sqw
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/TemplateColumn.tsx
msgid "Do not import"
msgstr ""
#. js-lingui-id: U9q4zF
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
msgid "Doesn't contain"
@@ -1491,11 +1423,6 @@ msgstr "Ne szinkronizáljon emaileket a következő címekről: team@ support@ n
msgid "Download file"
msgstr "Fájl letöltése"
#. js-lingui-id: 6D/BnN
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Drop file here..."
msgstr ""
#. js-lingui-id: KIjvtr
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
msgid "Dutch"
@@ -1553,7 +1480,6 @@ msgstr "Szerkeszd az aldomain nev\\u00e9t vagy \\u00e1ll\\u00edts be egyedi doma
#: src/pages/settings/SettingsWorkspaceMembers.tsx
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/auth/PasswordReset.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentTableHeader.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
msgid "Email"
@@ -1571,7 +1497,6 @@ msgstr "Az email nem lehet üres"
#. js-lingui-id: lfQsvW
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Email integration"
msgstr "Email integr\\u00e1ci\\u00f3"
@@ -1781,21 +1706,11 @@ msgstr "Zárja ki a következő embereket és domaineket az e-mail szinkronizál
msgid "Existing objects"
msgstr "Meglévő objektumok"
#. js-lingui-id: ydzS9x
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Exit"
msgstr ""
#. js-lingui-id: LFNXuj
#: src/modules/ui/layout/fullscreen/components/FullScreenContainer.tsx
msgid "Exit Full Screen"
msgstr "Kilépés teljes képernyőből"
#. js-lingui-id: XB4onr
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Exit import flow"
msgstr ""
#. js-lingui-id: IZ4o2e
#: src/modules/navigation/components/AppNavigationDrawer.tsx
msgid "Exit Settings"
@@ -1981,11 +1896,6 @@ msgstr "Szűrő"
msgid "Filters"
msgstr "Szűrők"
#. js-lingui-id: SNdnlf
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Finish flow with errors"
msgstr ""
#. js-lingui-id: USZ2N6
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
msgid "Finnish"
@@ -2034,7 +1944,6 @@ msgstr "az éves előfizetéstől a havi előfizetésig"
#. js-lingui-id: scmRyR
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Full access"
msgstr "Teljes hozzáférés"
@@ -2072,24 +1981,11 @@ msgstr "Szerezze meg előfizetését"
msgid "Global"
msgstr "Globális"
#. js-lingui-id: iS69s6
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
msgid "Go to runs"
msgstr "Ugrás a futásokhoz"
#. js-lingui-id: mT57+Q
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
msgid "Go to Settings"
msgstr "Ugrás a beállításokhoz"
#. js-lingui-id: A5WHZY
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
msgid "Go to workflows"
msgstr "Munkafolyamatokhoz"
#. js-lingui-id: hWp1MY
#: src/pages/settings/SettingsWorkspace.tsx
msgid "Grant Twenty support temporary access to your workspace so we can troubleshoot problems or recover content on your behalf. You can revoke access at any time."
@@ -2149,34 +2045,6 @@ msgstr "Rejtett mezők"
msgid "Hide"
msgstr "Elrejtés"
#. js-lingui-id: OlbYor
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
msgid "Hide deleted"
msgstr "Törlés elrejtése"
#. js-lingui-id: FHhlye
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
msgid "Hide deleted records"
msgstr "Törölt rekordok elrejtése"
#. js-lingui-id: 0dZtKR
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
msgid "Hide deleted runs"
msgstr "Törölt futtatások elrejtése"
#. js-lingui-id: Jc6FrI
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
msgid "Hide deleted versions"
msgstr "Törölt verziók elrejtése"
#. js-lingui-id: aOZAIB
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
msgid "Hide deleted workflows"
msgstr "Törölt munkafolyamatok elrejtése"
#. js-lingui-id: HS8BG/
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownRecordGroupsContent.tsx
msgid "Hide empty groups"
@@ -2584,8 +2452,8 @@ msgstr "Kijelentkezés"
#. js-lingui-id: nOhz3x
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
msgid "Logout"
msgstr "Kijelentkezés"
#~ msgid "Logout"
#~ msgstr "Logout"
#. js-lingui-id: PTozs8
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
@@ -2629,16 +2497,6 @@ msgstr "Előfizetés kezelése"
msgid "Mark as done"
msgstr "Jelölje meg készként"
#. js-lingui-id: 7h8ch8
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
msgid "Match columns"
msgstr ""
#. js-lingui-id: gDLior
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Match Columns"
msgstr ""
#. js-lingui-id: CK1KXz
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts
@@ -2867,12 +2725,6 @@ msgstr "Új SSO szolgáltató"
#~ msgid "New Webhook"
#~ msgstr "New Webhook"
#. js-lingui-id: AxNmtI
#: src/modules/spreadsheet-import/steps/components/SelectSheetStep/SelectSheetStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Next Step"
msgstr ""
#. js-lingui-id: OTe3RI
#: src/pages/settings/workspace/SettingsDomain.tsx
msgid "No change detected"
@@ -2888,16 +2740,6 @@ msgstr "Nincs csatlakoztatott fiók"
msgid "No country"
msgstr "Nincs ország"
#. js-lingui-id: pxvJ9B
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "No data containing errors"
msgstr ""
#. js-lingui-id: dihZwh
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "No data found"
msgstr ""
#. js-lingui-id: UwvrGq
#: src/pages/settings/SettingsWorkspaceMembers.tsx
msgid "No members"
@@ -2954,11 +2796,6 @@ msgstr "Nincs találat"
#~ msgid "No Result"
#~ msgstr "No Result"
#. js-lingui-id: Ev2r9A
#: src/modules/spreadsheet-import/components/MatchColumnSelect.tsx
msgid "No results"
msgstr ""
#. js-lingui-id: MA3x23
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentWorkspaceMemberPickerDropdownContent.tsx
msgid "No Results"
@@ -2991,11 +2828,6 @@ msgstr "Egyik sem"
msgid "Norwegian"
msgstr "Norvég"
#. js-lingui-id: v3W9iu
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Not all columns matched"
msgstr ""
#. js-lingui-id: 0qBE9S
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownMenuContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownMenuContent.tsx
@@ -3291,11 +3123,6 @@ msgstr "Előnézet"
msgid "Privacy Policy"
msgstr "Adatvédelmi irányelvek"
#. js-lingui-id: k1ifdL
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Processing..."
msgstr ""
#. js-lingui-id: vERlcd
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/SettingsProfile.tsx
@@ -3409,7 +3236,6 @@ msgstr "Újratöltés"
#. js-lingui-id: t/YqKh
#: src/modules/ui/input/components/ImageInput.tsx
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Remove"
msgstr "Eltávolítás"
@@ -3483,15 +3309,10 @@ msgid "Restore records"
msgstr "Rekordok visszaállítása"
#. js-lingui-id: kx0s+n
#: src/modules/command-menu/hooks/useCommandMenuSearchRecords.tsx
#: src/modules/command-menu/hooks/useSearchRecords.tsx
msgid "Results"
msgstr "Találatok"
#. js-lingui-id: BohSvm
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Review your import"
msgstr ""
#. js-lingui-id: 5dJK4M
#: src/pages/settings/roles/SettingsRoles.tsx
#: src/pages/settings/roles/SettingsRoles.tsx
@@ -3532,7 +3353,6 @@ msgstr "Séma"
#. js-lingui-id: A1taO8
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownWorkspacesListComponents.tsx
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentWorkspaceMemberPickerDropdown.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
#: src/modules/navigation/components/MainNavigationDrawerItems.tsx
#: src/modules/command-menu/hooks/useOpenRecordsSearchPageInCommandMenu.ts
@@ -3580,7 +3400,6 @@ msgstr "Index keresése..."
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownRecordGroupFieldsContent.tsx
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownFilterSelect.tsx
#: src/modules/object-record/advanced-filter/components/AdvancedFilterFieldSelectSearchInput.tsx
msgid "Search fields"
msgstr "Mezők keresése"
@@ -3643,19 +3462,11 @@ msgstr "Törölt munkafolyamatok megtekintése"
#. js-lingui-id: OpPn5Z
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
msgid "See runs"
msgstr "Futtatások megtekintése"
#. js-lingui-id: gGEfj/
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
msgid "See version"
msgstr "Verzió megtekintése"
#. js-lingui-id: EtyY4+
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
@@ -3668,52 +3479,12 @@ msgstr "Verziók megtekintése"
msgid "See versions history"
msgstr "Verziótörténet megtekintése"
#. js-lingui-id: qEKLJV
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
msgid "See workflow"
msgstr "Workflow megtekintése"
#. js-lingui-id: XThiR2
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
msgid "See workflows"
msgstr "Munkafolyamatok megtekintése"
#. js-lingui-id: WZvt/6
#: src/modules/command-menu/hooks/useWorkflowCommandMenu.ts
#: src/modules/command-menu/hooks/__tests__/useWorkflowCommandMenu.test.tsx
msgid "Select Action"
msgstr "Válasszon műveletet"
#. js-lingui-id: hVPa4O
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/UnmatchColumn.tsx
msgid "Select an option"
msgstr ""
#. js-lingui-id: 21YIUv
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/TemplateColumn.tsx
msgid "Select column..."
msgstr ""
#. js-lingui-id: J6WI1B
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Select file"
msgstr ""
#. js-lingui-id: ljSvAs
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
msgid "Select header row"
msgstr ""
#. js-lingui-id: mWHn81
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Select the correct field for each column you'd like to import."
msgstr ""
#. js-lingui-id: pofGCP
#: src/modules/settings/data-model/fields/forms/boolean/components/SettingsDataModelFieldBooleanForm.tsx
msgid "Select the default value for this boolean field"
@@ -3724,11 +3495,6 @@ msgstr "Válassza ki az alapértelmezett értéket ehhez a logikai mezőhöz"
msgid "Select the events you wish to send to this endpoint"
msgstr "Válassza ki, mely események szeretné elküldeni ebbe az végpontba"
#. js-lingui-id: +xn1pe
#: src/modules/spreadsheet-import/steps/components/SelectSheetStep/SelectSheetStep.tsx
msgid "Select the sheet to use"
msgstr ""
#. js-lingui-id: AXTJAW
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Select your preferred language"
@@ -3833,16 +3599,6 @@ msgstr "Meg kell változtatni egy mező címkéjét az API nevének megváltozta
msgid "Should changing an object's label also change the API?"
msgstr "Ha megváltozik egy objektum címkéje, akkor az megváltoztatja az API-t is?"
#. js-lingui-id: qi+g0a
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Show only rows with errors"
msgstr ""
#. js-lingui-id: MHlGJL
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Show unmatched columns"
msgstr ""
#. js-lingui-id: uVg8dY
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutOpenInContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -3901,11 +3657,6 @@ msgstr "Spanyol"
msgid "SSO"
msgstr "SSO"
#. js-lingui-id: vlvAkg
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "SSO (SAML / OIDC)"
msgstr "SSO (SAML / OIDC)"
#. js-lingui-id: ErU1td
#: src/modules/views/view-picker/components/ViewPickerContentCreateMode.tsx
msgid "Stages"
@@ -3959,11 +3710,6 @@ msgstr "A téma és metaadatok meg lesznek osztva a csapatával."
msgid "Subject, body and attachments will be shared with your team."
msgstr "A téma, a test és a mellékletek meg lesznek osztva a csapatával."
#. js-lingui-id: hQRttt
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Submit"
msgstr ""
#. js-lingui-id: B5jRKH
#: src/pages/settings/SettingsBilling.tsx
msgid "Subscription has been switched {to}"
@@ -4000,11 +3746,6 @@ msgstr "Váltás {to}"
msgid "Switch billing {to}"
msgstr "Számlázás váltás {to}"
#. js-lingui-id: lz+f/E
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Switch to {alternatePlanName}"
msgstr "Váltás {alternatePlanName} tervre"
#. js-lingui-id: 5TRY4+
#: src/modules/settings/accounts/components/SettingsAccountsConnectedAccountsRowRightContainer.tsx
msgid "Sync failed"
@@ -4145,16 +3886,6 @@ msgstr "Téma"
msgid "Theme "
msgstr "Téma "
#. js-lingui-id: /cSDOy
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "There are required columns that are not matched or ignored. Do you want to continue?"
msgstr ""
#. js-lingui-id: luL9RX
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "There are still some rows that contain errors. Rows with errors will be ignored when submitting."
msgstr ""
#. js-lingui-id: ynfkhb
#: src/pages/auth/PasswordReset.tsx
msgid "There was an error while updating password."
@@ -4298,7 +4029,6 @@ msgstr "Ismeretlen hiba"
#. js-lingui-id: GQCXQS
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Unlimited contacts"
msgstr "Korlátlan névjegyek"
@@ -4312,13 +4042,7 @@ msgstr "Frissítve"
msgid "Upload"
msgstr "Feltöltés"
#. js-lingui-id: 7OP1Xi
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Upload .xlsx, .xls or .csv file"
msgstr ""
#. js-lingui-id: 2IXDgU
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Upload file"
msgstr "Fájl feltöltése"
@@ -4395,11 +4119,6 @@ msgstr "A felhasználó nincs bejelentkezve"
#~ msgid "Users"
#~ msgstr "Users"
#. js-lingui-id: MGeZsN
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
msgid "Validate data"
msgstr ""
#. js-lingui-id: fXVIZq
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
@@ -4614,11 +4333,6 @@ msgstr "Írjon titkot"
msgid "yes"
msgstr "igen"
#. js-lingui-id: qsAug0
#: src/modules/spreadsheet-import/components/MatchColumnSelect.tsx
msgid "You are already importing this column."
msgstr ""
#. js-lingui-id: MFDARJ
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateReadOnly.tsx
msgid "You are not allowed to create records for this object"
+10 -296
View File
@@ -87,11 +87,6 @@ msgstr "{aggregateLabel} di {fieldLabel}"
msgid "{apiKeyName} API Key"
msgstr "Chiave API {apiKeyName}"
#. js-lingui-id: zi5SHH
#: src/modules/object-record/record-index/components/RecordIndexPageHeader.tsx
msgid "{contextStoreNumberOfSelectedRecords} selected"
msgstr "{contextStoreNumberOfSelectedRecords} selezionati"
#. js-lingui-id: 6j5rE1
#: src/modules/action-menu/actions/record-agnostic-actions/run-workflow-actions/hooks/useRunWorkflowActions.tsx
#: src/modules/action-menu/actions/record-actions/workflow-run-record-actions/hooks/useWorkflowRunRecordActions.tsx
@@ -105,8 +100,8 @@ msgstr "{workspaceMemberName} verrà rimosso dal seguente ruolo:"
#. js-lingui-id: YT0WJ4
#: src/pages/onboarding/ChooseYourPlan.tsx
#~ msgid "1 000 workflow node executions"
#~ msgstr "1 000 workflow node executions"
msgid "1 000 workflow node executions"
msgstr "1.000 esecuzioni di nodi del workflow"
#. js-lingui-id: vb5TwV
#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldSelect.tsx
@@ -119,11 +114,6 @@ msgstr "1. Seleziona un tipo di campo"
msgid "1. Type"
msgstr "1. Tipo"
#. js-lingui-id: AvXug3
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "10 000 workflow node executions"
msgstr "10.000 esecuzioni di nodi del workflow"
#. js-lingui-id: 4EdXYs
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "12h ({hour12Label})"
@@ -140,11 +130,6 @@ msgstr "2. Configura"
msgid "2. Configure field"
msgstr "2. Configura il campo"
#. js-lingui-id: kAtmAv
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "20 000 workflow node executions"
msgstr "20.000 esecuzioni di nodi del workflow"
#. js-lingui-id: QsMprd
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "24h ({hour24Label})"
@@ -201,11 +186,6 @@ msgstr "Eliminazione account"
msgid "Accounts"
msgstr "Account"
#. js-lingui-id: bwRvnp
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
msgid "Action"
msgstr "Azione"
#. js-lingui-id: 7L01XJ
#: src/modules/settings/roles/role-permissions/components/RolePermissionsSettingsTableHeader.tsx
#: src/modules/settings/roles/role-permissions/components/RolePermissionsObjectsTableHeader.tsx
@@ -252,7 +232,7 @@ msgid "Add Approved Access Domain"
msgstr "Aggiungi dominio di accesso approvato"
#. js-lingui-id: DpV70M
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionForm.tsx
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
msgid "Add Field"
msgstr "Aggiungi campo"
@@ -453,7 +433,6 @@ msgstr "API"
#. js-lingui-id: 0RqpZr
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "API & Webhooks"
msgstr "API e Webhook"
@@ -537,28 +516,13 @@ msgstr "Sei sicuro di voler cambiare l'intervallo di fatturazione?"
#. js-lingui-id: 8Y3Jbl
#: src/modules/action-menu/actions/record-actions/multiple-records/hooks/useDeleteMultipleRecordsAction.tsx
#~ msgid "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
#~ msgstr "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
#. js-lingui-id: 2BZAqa
#: src/modules/action-menu/actions/record-actions/multiple-records/hooks/useDeleteMultipleRecordsAction.tsx
msgid "Are you sure you want to delete these records? They can be recovered from the Command menu."
msgstr "Sei sicuro di voler eliminare questi record? Possono essere recuperati dal menu Comando."
msgid "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
msgstr "Sei sicuro di voler eliminare questi record? Possono essere recuperati dal menu Comando ({osControlSymbol} + K)."
#. js-lingui-id: Se0vJw
#: src/modules/action-menu/actions/record-actions/single-record/hooks/useDeleteSingleRecordAction.tsx
#~ msgid "Are you sure you want to delete this record? It can be recovered from the Command menu ({osControlSymbol} + K)."
#~ msgstr "Are you sure you want to delete this record? It can be recovered from the Command menu ({osControlSymbol} + K)."
#. js-lingui-id: yb2hF4
#: src/modules/action-menu/actions/record-actions/single-record/hooks/useDeleteSingleRecordAction.tsx
msgid "Are you sure you want to delete this record? It can be recovered from the Command menu."
msgstr "Sei sicuro di voler eliminare questo record? Può essere recuperato dal menu Comando."
#. js-lingui-id: rnCqBK
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Are you sure? Your current information will not be saved."
msgstr ""
msgid "Are you sure you want to delete this record? It can be recovered from the Command menu ({osControlSymbol} + K)."
msgstr "Sei sicuro di voler eliminare questo record? Può essere recuperato dal menu Comando ({osControlSymbol} + K)."
#. js-lingui-id: nYD/Cq
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
@@ -721,18 +685,10 @@ msgstr "Sincronizzazione del calendario"
msgid "Calendars"
msgstr "Calendari"
#. js-lingui-id: msssZq
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "Can't change API names for standard objects"
msgstr "Impossibile modificare i nomi API per gli oggetti standard"
#. js-lingui-id: dEgA5A
#: src/pages/auth/Authorize.tsx
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
msgid "Cancel"
msgstr "Annulla"
@@ -839,11 +795,6 @@ msgstr "Chiudi"
msgid "Close command menu"
msgstr "Chiudi il menu comandi"
#. js-lingui-id: EWPtMO
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
msgid "Code"
msgstr "Codice"
#. js-lingui-id: H86f9p
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
@@ -856,11 +807,6 @@ msgstr "Riduci"
msgid "Color code"
msgstr "Codice colore"
#. js-lingui-id: 93hd3e
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Columns not matched:"
msgstr ""
#. js-lingui-id: NM9bMd
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
msgid "Compact view"
@@ -892,7 +838,6 @@ msgid "Configure your emails and calendar settings."
msgstr "Configura le impostazioni di e-mail e calendario."
#. js-lingui-id: 7VpPHA
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentConfirmationModal.tsx
msgid "Confirm"
msgstr "Conferma"
@@ -938,8 +883,6 @@ msgstr "Contesto"
#: src/pages/onboarding/CreateWorkspace.tsx
#: src/pages/onboarding/CreateProfile.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx
msgid "Continue"
msgstr "Continua"
@@ -1004,11 +947,6 @@ msgstr "Copia questa chiave perché non sarà più visibile"
msgid "Core"
msgstr "Core"
#. js-lingui-id: w5Stxm
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Correct the issues and fill the missing data."
msgstr ""
#. js-lingui-id: wBMjJ2
#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterMenuContent.tsx
#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterDropdownContent.tsx
@@ -1130,7 +1068,6 @@ msgstr "Dominio personalizzato aggiornato"
#. js-lingui-id: 8skTDV
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Custom objects"
msgstr "Oggetti personalizzati"
@@ -1443,11 +1380,6 @@ msgstr "Visualizza come data relativa"
msgid "Display text on multiple lines"
msgstr "Mostra testo su più righe"
#. js-lingui-id: ji7sqw
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/TemplateColumn.tsx
msgid "Do not import"
msgstr ""
#. js-lingui-id: U9q4zF
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
msgid "Doesn't contain"
@@ -1491,11 +1423,6 @@ msgstr "Non sincronizzare email da team@ support@ noreply@..."
msgid "Download file"
msgstr "Scarica file"
#. js-lingui-id: 6D/BnN
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Drop file here..."
msgstr ""
#. js-lingui-id: KIjvtr
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
msgid "Dutch"
@@ -1553,7 +1480,6 @@ msgstr "Modifica il nome del sottodominio o imposta un dominio personalizzato."
#: src/pages/settings/SettingsWorkspaceMembers.tsx
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/auth/PasswordReset.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentTableHeader.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
msgid "Email"
@@ -1571,7 +1497,6 @@ msgstr "L'email non può essere vuota"
#. js-lingui-id: lfQsvW
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Email integration"
msgstr "Integrazione e-mail"
@@ -1781,21 +1706,11 @@ msgstr "Escludi le seguenti persone e domini dalla mia sincronizzazione email. L
msgid "Existing objects"
msgstr "Oggetti esistenti"
#. js-lingui-id: ydzS9x
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Exit"
msgstr ""
#. js-lingui-id: LFNXuj
#: src/modules/ui/layout/fullscreen/components/FullScreenContainer.tsx
msgid "Exit Full Screen"
msgstr "Esci dalla modalità a schermo intero"
#. js-lingui-id: XB4onr
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Exit import flow"
msgstr ""
#. js-lingui-id: IZ4o2e
#: src/modules/navigation/components/AppNavigationDrawer.tsx
msgid "Exit Settings"
@@ -1981,11 +1896,6 @@ msgstr "Filtro"
msgid "Filters"
msgstr "Filtri"
#. js-lingui-id: SNdnlf
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Finish flow with errors"
msgstr ""
#. js-lingui-id: USZ2N6
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
msgid "Finnish"
@@ -2034,7 +1944,6 @@ msgstr "da annuale a mensile"
#. js-lingui-id: scmRyR
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Full access"
msgstr "Accesso completo"
@@ -2072,24 +1981,11 @@ msgstr "Ottieni il tuo abbonamento"
msgid "Global"
msgstr "Globale"
#. js-lingui-id: iS69s6
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
msgid "Go to runs"
msgstr "Vai ai risultati"
#. js-lingui-id: mT57+Q
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
msgid "Go to Settings"
msgstr "Vai su Impostazioni"
#. js-lingui-id: A5WHZY
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
msgid "Go to workflows"
msgstr "Vai ai workflow"
#. js-lingui-id: hWp1MY
#: src/pages/settings/SettingsWorkspace.tsx
msgid "Grant Twenty support temporary access to your workspace so we can troubleshoot problems or recover content on your behalf. You can revoke access at any time."
@@ -2149,34 +2045,6 @@ msgstr "Campi nascosti"
msgid "Hide"
msgstr "Nascondi"
#. js-lingui-id: OlbYor
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
msgid "Hide deleted"
msgstr "Nascondi eliminati"
#. js-lingui-id: FHhlye
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
msgid "Hide deleted records"
msgstr "Nascondi record eliminati"
#. js-lingui-id: 0dZtKR
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
msgid "Hide deleted runs"
msgstr "Nascondi esecuzioni eliminate"
#. js-lingui-id: Jc6FrI
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
msgid "Hide deleted versions"
msgstr "Nascondi versioni eliminate"
#. js-lingui-id: aOZAIB
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
msgid "Hide deleted workflows"
msgstr "Nascondi workflow eliminati"
#. js-lingui-id: HS8BG/
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownRecordGroupsContent.tsx
msgid "Hide empty groups"
@@ -2584,8 +2452,8 @@ msgstr "Disconnetti"
#. js-lingui-id: nOhz3x
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
msgid "Logout"
msgstr "Disconnessione"
#~ msgid "Logout"
#~ msgstr "Logout"
#. js-lingui-id: PTozs8
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
@@ -2629,16 +2497,6 @@ msgstr "Gestisci il tuo abbonamento"
msgid "Mark as done"
msgstr "Segna come fatto"
#. js-lingui-id: 7h8ch8
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
msgid "Match columns"
msgstr ""
#. js-lingui-id: gDLior
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Match Columns"
msgstr ""
#. js-lingui-id: CK1KXz
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts
@@ -2867,12 +2725,6 @@ msgstr "Nuovo provider SSO"
#~ msgid "New Webhook"
#~ msgstr "New Webhook"
#. js-lingui-id: AxNmtI
#: src/modules/spreadsheet-import/steps/components/SelectSheetStep/SelectSheetStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Next Step"
msgstr ""
#. js-lingui-id: OTe3RI
#: src/pages/settings/workspace/SettingsDomain.tsx
msgid "No change detected"
@@ -2888,16 +2740,6 @@ msgstr "Nessun account collegato"
msgid "No country"
msgstr "Nessun paese"
#. js-lingui-id: pxvJ9B
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "No data containing errors"
msgstr ""
#. js-lingui-id: dihZwh
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "No data found"
msgstr ""
#. js-lingui-id: UwvrGq
#: src/pages/settings/SettingsWorkspaceMembers.tsx
msgid "No members"
@@ -2954,11 +2796,6 @@ msgstr "Nessun record trovato"
#~ msgid "No Result"
#~ msgstr "No Result"
#. js-lingui-id: Ev2r9A
#: src/modules/spreadsheet-import/components/MatchColumnSelect.tsx
msgid "No results"
msgstr ""
#. js-lingui-id: MA3x23
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentWorkspaceMemberPickerDropdownContent.tsx
msgid "No Results"
@@ -2991,11 +2828,6 @@ msgstr "Nessuno"
msgid "Norwegian"
msgstr "Norvegese"
#. js-lingui-id: v3W9iu
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Not all columns matched"
msgstr ""
#. js-lingui-id: 0qBE9S
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownMenuContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownMenuContent.tsx
@@ -3291,11 +3123,6 @@ msgstr "Anteprima"
msgid "Privacy Policy"
msgstr "Informativa sulla privacy"
#. js-lingui-id: k1ifdL
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Processing..."
msgstr ""
#. js-lingui-id: vERlcd
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/SettingsProfile.tsx
@@ -3409,7 +3236,6 @@ msgstr "Ricarica"
#. js-lingui-id: t/YqKh
#: src/modules/ui/input/components/ImageInput.tsx
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Remove"
msgstr "Rimuovi"
@@ -3483,15 +3309,10 @@ msgid "Restore records"
msgstr "Ripristina record"
#. js-lingui-id: kx0s+n
#: src/modules/command-menu/hooks/useCommandMenuSearchRecords.tsx
#: src/modules/command-menu/hooks/useSearchRecords.tsx
msgid "Results"
msgstr "Risultati"
#. js-lingui-id: BohSvm
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Review your import"
msgstr ""
#. js-lingui-id: 5dJK4M
#: src/pages/settings/roles/SettingsRoles.tsx
#: src/pages/settings/roles/SettingsRoles.tsx
@@ -3532,7 +3353,6 @@ msgstr "Schema"
#. js-lingui-id: A1taO8
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownWorkspacesListComponents.tsx
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentWorkspaceMemberPickerDropdown.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
#: src/modules/navigation/components/MainNavigationDrawerItems.tsx
#: src/modules/command-menu/hooks/useOpenRecordsSearchPageInCommandMenu.ts
@@ -3580,7 +3400,6 @@ msgstr "Cerca un indice..."
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownRecordGroupFieldsContent.tsx
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownFilterSelect.tsx
#: src/modules/object-record/advanced-filter/components/AdvancedFilterFieldSelectSearchInput.tsx
msgid "Search fields"
msgstr "Cerca campi"
@@ -3643,19 +3462,11 @@ msgstr "Vedi workflow eliminati"
#. js-lingui-id: OpPn5Z
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
msgid "See runs"
msgstr "Vedi esecuzioni"
#. js-lingui-id: gGEfj/
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
msgid "See version"
msgstr "Vedi versione"
#. js-lingui-id: EtyY4+
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
@@ -3668,52 +3479,12 @@ msgstr "Vedi versioni"
msgid "See versions history"
msgstr "Vedi cronologia versioni"
#. js-lingui-id: qEKLJV
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
msgid "See workflow"
msgstr "Vedi workflow"
#. js-lingui-id: XThiR2
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
msgid "See workflows"
msgstr "Vedi workflow"
#. js-lingui-id: WZvt/6
#: src/modules/command-menu/hooks/useWorkflowCommandMenu.ts
#: src/modules/command-menu/hooks/__tests__/useWorkflowCommandMenu.test.tsx
msgid "Select Action"
msgstr "Seleziona Azione"
#. js-lingui-id: hVPa4O
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/UnmatchColumn.tsx
msgid "Select an option"
msgstr ""
#. js-lingui-id: 21YIUv
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/TemplateColumn.tsx
msgid "Select column..."
msgstr ""
#. js-lingui-id: J6WI1B
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Select file"
msgstr ""
#. js-lingui-id: ljSvAs
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
msgid "Select header row"
msgstr ""
#. js-lingui-id: mWHn81
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Select the correct field for each column you'd like to import."
msgstr ""
#. js-lingui-id: pofGCP
#: src/modules/settings/data-model/fields/forms/boolean/components/SettingsDataModelFieldBooleanForm.tsx
msgid "Select the default value for this boolean field"
@@ -3724,11 +3495,6 @@ msgstr "Seleziona il valore predefinito per questo campo booleano"
msgid "Select the events you wish to send to this endpoint"
msgstr "Seleziona gli eventi da inviare a questo endpoint"
#. js-lingui-id: +xn1pe
#: src/modules/spreadsheet-import/steps/components/SelectSheetStep/SelectSheetStep.tsx
msgid "Select the sheet to use"
msgstr ""
#. js-lingui-id: AXTJAW
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Select your preferred language"
@@ -3833,16 +3599,6 @@ msgstr "Cambiare l'etichetta di un campo deve cambiare anche il nome dell'API?"
msgid "Should changing an object's label also change the API?"
msgstr "Cambiare l'etichetta di un oggetto deve cambiare anche il nome dell'API?"
#. js-lingui-id: qi+g0a
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Show only rows with errors"
msgstr ""
#. js-lingui-id: MHlGJL
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Show unmatched columns"
msgstr ""
#. js-lingui-id: uVg8dY
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutOpenInContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -3901,11 +3657,6 @@ msgstr "Spagnolo"
msgid "SSO"
msgstr "SSO"
#. js-lingui-id: vlvAkg
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "SSO (SAML / OIDC)"
msgstr "SSO (SAML / OIDC)"
#. js-lingui-id: ErU1td
#: src/modules/views/view-picker/components/ViewPickerContentCreateMode.tsx
msgid "Stages"
@@ -3959,11 +3710,6 @@ msgstr "L'oggetto e i metadati verranno condivisi con il tuo team."
msgid "Subject, body and attachments will be shared with your team."
msgstr "L'oggetto, il corpo e gli allegati verranno condivisi con il tuo team."
#. js-lingui-id: hQRttt
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Submit"
msgstr ""
#. js-lingui-id: B5jRKH
#: src/pages/settings/SettingsBilling.tsx
msgid "Subscription has been switched {to}"
@@ -4000,11 +3746,6 @@ msgstr "Cambia {to}"
msgid "Switch billing {to}"
msgstr "Cambia fatturazione {to}"
#. js-lingui-id: lz+f/E
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Switch to {alternatePlanName}"
msgstr "Passa a {alternatePlanName}"
#. js-lingui-id: 5TRY4+
#: src/modules/settings/accounts/components/SettingsAccountsConnectedAccountsRowRightContainer.tsx
msgid "Sync failed"
@@ -4145,16 +3886,6 @@ msgstr "Tema"
msgid "Theme "
msgstr "Tema "
#. js-lingui-id: /cSDOy
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "There are required columns that are not matched or ignored. Do you want to continue?"
msgstr ""
#. js-lingui-id: luL9RX
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "There are still some rows that contain errors. Rows with errors will be ignored when submitting."
msgstr ""
#. js-lingui-id: ynfkhb
#: src/pages/auth/PasswordReset.tsx
msgid "There was an error while updating password."
@@ -4298,7 +4029,6 @@ msgstr "Errore sconosciuto"
#. js-lingui-id: GQCXQS
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Unlimited contacts"
msgstr "Contatti illimitati"
@@ -4312,13 +4042,7 @@ msgstr "Aggiornato"
msgid "Upload"
msgstr "Carica"
#. js-lingui-id: 7OP1Xi
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Upload .xlsx, .xls or .csv file"
msgstr ""
#. js-lingui-id: 2IXDgU
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Upload file"
msgstr "Carica file"
@@ -4395,11 +4119,6 @@ msgstr "Utente non connesso"
#~ msgid "Users"
#~ msgstr "Users"
#. js-lingui-id: MGeZsN
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
msgid "Validate data"
msgstr ""
#. js-lingui-id: fXVIZq
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
@@ -4614,11 +4333,6 @@ msgstr "Scrivi un segreto"
msgid "yes"
msgstr "sì"
#. js-lingui-id: qsAug0
#: src/modules/spreadsheet-import/components/MatchColumnSelect.tsx
msgid "You are already importing this column."
msgstr ""
#. js-lingui-id: MFDARJ
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateReadOnly.tsx
msgid "You are not allowed to create records for this object"
+10 -296
View File
@@ -87,11 +87,6 @@ msgstr "{fieldLabel}の{aggregateLabel}"
msgid "{apiKeyName} API Key"
msgstr "{apiKeyName} APIキー"
#. js-lingui-id: zi5SHH
#: src/modules/object-record/record-index/components/RecordIndexPageHeader.tsx
msgid "{contextStoreNumberOfSelectedRecords} selected"
msgstr "{contextStoreNumberOfSelectedRecords} が選択されました"
#. js-lingui-id: 6j5rE1
#: src/modules/action-menu/actions/record-agnostic-actions/run-workflow-actions/hooks/useRunWorkflowActions.tsx
#: src/modules/action-menu/actions/record-actions/workflow-run-record-actions/hooks/useWorkflowRunRecordActions.tsx
@@ -105,8 +100,8 @@ msgstr "{workspaceMemberName}が次の役割から割り当て解除されます
#. js-lingui-id: YT0WJ4
#: src/pages/onboarding/ChooseYourPlan.tsx
#~ msgid "1 000 workflow node executions"
#~ msgstr "1 000 workflow node executions"
msgid "1 000 workflow node executions"
msgstr "1,000 ワークフローノード実行"
#. js-lingui-id: vb5TwV
#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldSelect.tsx
@@ -119,11 +114,6 @@ msgstr "1. フィールドタイプを選択"
msgid "1. Type"
msgstr "1. 種類"
#. js-lingui-id: AvXug3
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "10 000 workflow node executions"
msgstr "10,000 ワークフローノード実行"
#. js-lingui-id: 4EdXYs
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "12h ({hour12Label})"
@@ -140,11 +130,6 @@ msgstr "2. 設定"
msgid "2. Configure field"
msgstr "2. フィールドの設定"
#. js-lingui-id: kAtmAv
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "20 000 workflow node executions"
msgstr "20,000 ワークフローノード実行"
#. js-lingui-id: QsMprd
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "24h ({hour24Label})"
@@ -201,11 +186,6 @@ msgstr "アカウント削除"
msgid "Accounts"
msgstr "アカウント"
#. js-lingui-id: bwRvnp
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
msgid "Action"
msgstr "アクション"
#. js-lingui-id: 7L01XJ
#: src/modules/settings/roles/role-permissions/components/RolePermissionsSettingsTableHeader.tsx
#: src/modules/settings/roles/role-permissions/components/RolePermissionsObjectsTableHeader.tsx
@@ -252,7 +232,7 @@ msgid "Add Approved Access Domain"
msgstr "承認されたアクセスドメインを追加"
#. js-lingui-id: DpV70M
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionForm.tsx
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
msgid "Add Field"
msgstr "フィールドを追加"
@@ -453,7 +433,6 @@ msgstr "API"
#. js-lingui-id: 0RqpZr
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "API & Webhooks"
msgstr "API & Webhooks"
@@ -537,28 +516,13 @@ msgstr "請求間隔を変更してもよろしいですか?"
#. js-lingui-id: 8Y3Jbl
#: src/modules/action-menu/actions/record-actions/multiple-records/hooks/useDeleteMultipleRecordsAction.tsx
#~ msgid "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
#~ msgstr "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
#. js-lingui-id: 2BZAqa
#: src/modules/action-menu/actions/record-actions/multiple-records/hooks/useDeleteMultipleRecordsAction.tsx
msgid "Are you sure you want to delete these records? They can be recovered from the Command menu."
msgstr "これらのレコードを本当に削除しますか? コマンドメニューから復元できます。"
msgid "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
msgstr "これらのレコードを本当に削除しますか? コマンドメニュー({osControlSymbol} + K)から復元できます。"
#. js-lingui-id: Se0vJw
#: src/modules/action-menu/actions/record-actions/single-record/hooks/useDeleteSingleRecordAction.tsx
#~ msgid "Are you sure you want to delete this record? It can be recovered from the Command menu ({osControlSymbol} + K)."
#~ msgstr "Are you sure you want to delete this record? It can be recovered from the Command menu ({osControlSymbol} + K)."
#. js-lingui-id: yb2hF4
#: src/modules/action-menu/actions/record-actions/single-record/hooks/useDeleteSingleRecordAction.tsx
msgid "Are you sure you want to delete this record? It can be recovered from the Command menu."
msgstr "このレコードを本当に削除しますか? コマンドメニューから復元できます。"
#. js-lingui-id: rnCqBK
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Are you sure? Your current information will not be saved."
msgstr ""
msgid "Are you sure you want to delete this record? It can be recovered from the Command menu ({osControlSymbol} + K)."
msgstr "このレコードを本当に削除しますか? コマンドメニュー({osControlSymbol} + K)から復元できます。"
#. js-lingui-id: nYD/Cq
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
@@ -721,18 +685,10 @@ msgstr "カレンダー同期"
msgid "Calendars"
msgstr "カレンダー"
#. js-lingui-id: msssZq
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "Can't change API names for standard objects"
msgstr "標準オブジェクトのAPI名は変更できません"
#. js-lingui-id: dEgA5A
#: src/pages/auth/Authorize.tsx
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
msgid "Cancel"
msgstr "キャンセル"
@@ -839,11 +795,6 @@ msgstr "閉じる"
msgid "Close command menu"
msgstr "コマンドメニューを閉じる"
#. js-lingui-id: EWPtMO
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
msgid "Code"
msgstr "コード"
#. js-lingui-id: H86f9p
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
@@ -856,11 +807,6 @@ msgstr "折りたたむ"
msgid "Color code"
msgstr "色のコード"
#. js-lingui-id: 93hd3e
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Columns not matched:"
msgstr ""
#. js-lingui-id: NM9bMd
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
msgid "Compact view"
@@ -892,7 +838,6 @@ msgid "Configure your emails and calendar settings."
msgstr "メールとカレンダーの設定を行う。"
#. js-lingui-id: 7VpPHA
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentConfirmationModal.tsx
msgid "Confirm"
msgstr "確認"
@@ -938,8 +883,6 @@ msgstr "コンテキスト"
#: src/pages/onboarding/CreateWorkspace.tsx
#: src/pages/onboarding/CreateProfile.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx
msgid "Continue"
msgstr "続行"
@@ -1004,11 +947,6 @@ msgstr "このキーは再表示されないため、コピーしてください
msgid "Core"
msgstr "コア"
#. js-lingui-id: w5Stxm
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Correct the issues and fill the missing data."
msgstr ""
#. js-lingui-id: wBMjJ2
#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterMenuContent.tsx
#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterDropdownContent.tsx
@@ -1130,7 +1068,6 @@ msgstr "カスタムドメインが更新されました"
#. js-lingui-id: 8skTDV
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Custom objects"
msgstr "カスタムオブジェクト"
@@ -1443,11 +1380,6 @@ msgstr "相対日付で表示"
msgid "Display text on multiple lines"
msgstr "複数行でテキストを表示"
#. js-lingui-id: ji7sqw
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/TemplateColumn.tsx
msgid "Do not import"
msgstr ""
#. js-lingui-id: U9q4zF
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
msgid "Doesn't contain"
@@ -1491,11 +1423,6 @@ msgstr "team@、support@、noreply@からのメールを同期しない…"
msgid "Download file"
msgstr "ファイルをダウンロード"
#. js-lingui-id: 6D/BnN
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Drop file here..."
msgstr ""
#. js-lingui-id: KIjvtr
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
msgid "Dutch"
@@ -1553,7 +1480,6 @@ msgstr "サブドメイン名を編集するか、カスタムドメインを設
#: src/pages/settings/SettingsWorkspaceMembers.tsx
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/auth/PasswordReset.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentTableHeader.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
msgid "Email"
@@ -1571,7 +1497,6 @@ msgstr "メールアドレスは空にできません"
#. js-lingui-id: lfQsvW
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Email integration"
msgstr "メール統合"
@@ -1781,21 +1706,11 @@ msgstr "以下の人物とドメインをメール同期から除外します。
msgid "Existing objects"
msgstr "既存のオブジェクト"
#. js-lingui-id: ydzS9x
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Exit"
msgstr ""
#. js-lingui-id: LFNXuj
#: src/modules/ui/layout/fullscreen/components/FullScreenContainer.tsx
msgid "Exit Full Screen"
msgstr "フルスクリーンを終了"
#. js-lingui-id: XB4onr
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Exit import flow"
msgstr ""
#. js-lingui-id: IZ4o2e
#: src/modules/navigation/components/AppNavigationDrawer.tsx
msgid "Exit Settings"
@@ -1981,11 +1896,6 @@ msgstr "フィルター"
msgid "Filters"
msgstr "フィルター"
#. js-lingui-id: SNdnlf
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Finish flow with errors"
msgstr ""
#. js-lingui-id: USZ2N6
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
msgid "Finnish"
@@ -2034,7 +1944,6 @@ msgstr "年払いから月払いへ"
#. js-lingui-id: scmRyR
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Full access"
msgstr "フルアクセス"
@@ -2072,24 +1981,11 @@ msgstr "サブスクリプションを取得"
msgid "Global"
msgstr "グローバル"
#. js-lingui-id: iS69s6
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
msgid "Go to runs"
msgstr "ランに移動"
#. js-lingui-id: mT57+Q
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
msgid "Go to Settings"
msgstr "設定に移動"
#. js-lingui-id: A5WHZY
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
msgid "Go to workflows"
msgstr "ワークフローに移動"
#. js-lingui-id: hWp1MY
#: src/pages/settings/SettingsWorkspace.tsx
msgid "Grant Twenty support temporary access to your workspace so we can troubleshoot problems or recover content on your behalf. You can revoke access at any time."
@@ -2149,34 +2045,6 @@ msgstr "非表示フィールド"
msgid "Hide"
msgstr "非表示"
#. js-lingui-id: OlbYor
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
msgid "Hide deleted"
msgstr "削除された項目を隠す"
#. js-lingui-id: FHhlye
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
msgid "Hide deleted records"
msgstr "削除されたレコードを隠す"
#. js-lingui-id: 0dZtKR
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
msgid "Hide deleted runs"
msgstr "削除された実行を隠す"
#. js-lingui-id: Jc6FrI
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
msgid "Hide deleted versions"
msgstr "削除されたバージョンを隠す"
#. js-lingui-id: aOZAIB
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
msgid "Hide deleted workflows"
msgstr "削除されたワークフローを非表示"
#. js-lingui-id: HS8BG/
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownRecordGroupsContent.tsx
msgid "Hide empty groups"
@@ -2584,8 +2452,8 @@ msgstr "ログアウト"
#. js-lingui-id: nOhz3x
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
msgid "Logout"
msgstr "ログアウト"
#~ msgid "Logout"
#~ msgstr "Logout"
#. js-lingui-id: PTozs8
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
@@ -2629,16 +2497,6 @@ msgstr "サブスクリプションを管理"
msgid "Mark as done"
msgstr "完了としてマーク"
#. js-lingui-id: 7h8ch8
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
msgid "Match columns"
msgstr ""
#. js-lingui-id: gDLior
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Match Columns"
msgstr ""
#. js-lingui-id: CK1KXz
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts
@@ -2867,12 +2725,6 @@ msgstr "新しいSSOプロバイダー"
#~ msgid "New Webhook"
#~ msgstr "New Webhook"
#. js-lingui-id: AxNmtI
#: src/modules/spreadsheet-import/steps/components/SelectSheetStep/SelectSheetStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Next Step"
msgstr ""
#. js-lingui-id: OTe3RI
#: src/pages/settings/workspace/SettingsDomain.tsx
msgid "No change detected"
@@ -2888,16 +2740,6 @@ msgstr "接続されたアカウントがありません"
msgid "No country"
msgstr "国なし"
#. js-lingui-id: pxvJ9B
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "No data containing errors"
msgstr ""
#. js-lingui-id: dihZwh
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "No data found"
msgstr ""
#. js-lingui-id: UwvrGq
#: src/pages/settings/SettingsWorkspaceMembers.tsx
msgid "No members"
@@ -2954,11 +2796,6 @@ msgstr "レコードが見つかりません"
#~ msgid "No Result"
#~ msgstr "No Result"
#. js-lingui-id: Ev2r9A
#: src/modules/spreadsheet-import/components/MatchColumnSelect.tsx
msgid "No results"
msgstr ""
#. js-lingui-id: MA3x23
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentWorkspaceMemberPickerDropdownContent.tsx
msgid "No Results"
@@ -2991,11 +2828,6 @@ msgstr "なし"
msgid "Norwegian"
msgstr "ノルウェー語"
#. js-lingui-id: v3W9iu
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Not all columns matched"
msgstr ""
#. js-lingui-id: 0qBE9S
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownMenuContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownMenuContent.tsx
@@ -3291,11 +3123,6 @@ msgstr "プレビュー"
msgid "Privacy Policy"
msgstr "プライバシーポリシー"
#. js-lingui-id: k1ifdL
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Processing..."
msgstr ""
#. js-lingui-id: vERlcd
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/SettingsProfile.tsx
@@ -3409,7 +3236,6 @@ msgstr "リロード"
#. js-lingui-id: t/YqKh
#: src/modules/ui/input/components/ImageInput.tsx
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Remove"
msgstr "削除"
@@ -3483,15 +3309,10 @@ msgid "Restore records"
msgstr "レコードを復元"
#. js-lingui-id: kx0s+n
#: src/modules/command-menu/hooks/useCommandMenuSearchRecords.tsx
#: src/modules/command-menu/hooks/useSearchRecords.tsx
msgid "Results"
msgstr "結果"
#. js-lingui-id: BohSvm
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Review your import"
msgstr ""
#. js-lingui-id: 5dJK4M
#: src/pages/settings/roles/SettingsRoles.tsx
#: src/pages/settings/roles/SettingsRoles.tsx
@@ -3532,7 +3353,6 @@ msgstr "スキーマ"
#. js-lingui-id: A1taO8
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownWorkspacesListComponents.tsx
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentWorkspaceMemberPickerDropdown.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
#: src/modules/navigation/components/MainNavigationDrawerItems.tsx
#: src/modules/command-menu/hooks/useOpenRecordsSearchPageInCommandMenu.ts
@@ -3580,7 +3400,6 @@ msgstr "インデックスを検索..."
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownRecordGroupFieldsContent.tsx
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownFilterSelect.tsx
#: src/modules/object-record/advanced-filter/components/AdvancedFilterFieldSelectSearchInput.tsx
msgid "Search fields"
msgstr "フィールドを検索"
@@ -3643,19 +3462,11 @@ msgstr "削除されたワークフローを見る"
#. js-lingui-id: OpPn5Z
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
msgid "See runs"
msgstr "実行を見る"
#. js-lingui-id: gGEfj/
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
msgid "See version"
msgstr "バージョンを見る"
#. js-lingui-id: EtyY4+
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
@@ -3668,52 +3479,12 @@ msgstr "バージョンを見る"
msgid "See versions history"
msgstr "バージョン履歴を見る"
#. js-lingui-id: qEKLJV
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
msgid "See workflow"
msgstr "ワークフローを見る"
#. js-lingui-id: XThiR2
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
msgid "See workflows"
msgstr "ワークフローを表示"
#. js-lingui-id: WZvt/6
#: src/modules/command-menu/hooks/useWorkflowCommandMenu.ts
#: src/modules/command-menu/hooks/__tests__/useWorkflowCommandMenu.test.tsx
msgid "Select Action"
msgstr "アクションを選択"
#. js-lingui-id: hVPa4O
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/UnmatchColumn.tsx
msgid "Select an option"
msgstr ""
#. js-lingui-id: 21YIUv
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/TemplateColumn.tsx
msgid "Select column..."
msgstr ""
#. js-lingui-id: J6WI1B
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Select file"
msgstr ""
#. js-lingui-id: ljSvAs
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
msgid "Select header row"
msgstr ""
#. js-lingui-id: mWHn81
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Select the correct field for each column you'd like to import."
msgstr ""
#. js-lingui-id: pofGCP
#: src/modules/settings/data-model/fields/forms/boolean/components/SettingsDataModelFieldBooleanForm.tsx
msgid "Select the default value for this boolean field"
@@ -3724,11 +3495,6 @@ msgstr "このブールフィールドのデフォルト値を選択します"
msgid "Select the events you wish to send to this endpoint"
msgstr "このエンドポイントに送信したいイベントを選択してください"
#. js-lingui-id: +xn1pe
#: src/modules/spreadsheet-import/steps/components/SelectSheetStep/SelectSheetStep.tsx
msgid "Select the sheet to use"
msgstr ""
#. js-lingui-id: AXTJAW
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Select your preferred language"
@@ -3833,16 +3599,6 @@ msgstr "フィールドのラベルを変更すると、API名も変更されま
msgid "Should changing an object's label also change the API?"
msgstr "オブジェクトのラベルを変更するとAPIも変更されるべきですか?"
#. js-lingui-id: qi+g0a
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Show only rows with errors"
msgstr ""
#. js-lingui-id: MHlGJL
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Show unmatched columns"
msgstr ""
#. js-lingui-id: uVg8dY
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutOpenInContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -3901,11 +3657,6 @@ msgstr "スペイン語"
msgid "SSO"
msgstr "SSO"
#. js-lingui-id: vlvAkg
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "SSO (SAML / OIDC)"
msgstr "SSOSAML / OIDC"
#. js-lingui-id: ErU1td
#: src/modules/views/view-picker/components/ViewPickerContentCreateMode.tsx
msgid "Stages"
@@ -3959,11 +3710,6 @@ msgstr "件名とメタデータがチームと共有されます。"
msgid "Subject, body and attachments will be shared with your team."
msgstr "件名、本文、添付ファイルがチームと共有されます。"
#. js-lingui-id: hQRttt
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Submit"
msgstr ""
#. js-lingui-id: B5jRKH
#: src/pages/settings/SettingsBilling.tsx
msgid "Subscription has been switched {to}"
@@ -4000,11 +3746,6 @@ msgstr "{to}に切り替える"
msgid "Switch billing {to}"
msgstr "請求を{to}に切り替える"
#. js-lingui-id: lz+f/E
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Switch to {alternatePlanName}"
msgstr "{alternatePlanName}に切り替える"
#. js-lingui-id: 5TRY4+
#: src/modules/settings/accounts/components/SettingsAccountsConnectedAccountsRowRightContainer.tsx
msgid "Sync failed"
@@ -4145,16 +3886,6 @@ msgstr "テーマ"
msgid "Theme "
msgstr "テーマ "
#. js-lingui-id: /cSDOy
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "There are required columns that are not matched or ignored. Do you want to continue?"
msgstr ""
#. js-lingui-id: luL9RX
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "There are still some rows that contain errors. Rows with errors will be ignored when submitting."
msgstr ""
#. js-lingui-id: ynfkhb
#: src/pages/auth/PasswordReset.tsx
msgid "There was an error while updating password."
@@ -4298,7 +4029,6 @@ msgstr "不明なエラー"
#. js-lingui-id: GQCXQS
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Unlimited contacts"
msgstr "連絡先無制限"
@@ -4312,13 +4042,7 @@ msgstr "更新済み"
msgid "Upload"
msgstr "アップロード"
#. js-lingui-id: 7OP1Xi
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Upload .xlsx, .xls or .csv file"
msgstr ""
#. js-lingui-id: 2IXDgU
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Upload file"
msgstr "ファイルをアップロード"
@@ -4395,11 +4119,6 @@ msgstr "ユーザーがログインしていません"
#~ msgid "Users"
#~ msgstr "Users"
#. js-lingui-id: MGeZsN
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
msgid "Validate data"
msgstr ""
#. js-lingui-id: fXVIZq
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
@@ -4614,11 +4333,6 @@ msgstr "秘密を書きます"
msgid "yes"
msgstr "はい"
#. js-lingui-id: qsAug0
#: src/modules/spreadsheet-import/components/MatchColumnSelect.tsx
msgid "You are already importing this column."
msgstr ""
#. js-lingui-id: MFDARJ
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateReadOnly.tsx
msgid "You are not allowed to create records for this object"
+10 -296
View File
@@ -87,11 +87,6 @@ msgstr "{fieldLabel}의 {aggregateLabel}"
msgid "{apiKeyName} API Key"
msgstr "{apiKeyName} API 키"
#. js-lingui-id: zi5SHH
#: src/modules/object-record/record-index/components/RecordIndexPageHeader.tsx
msgid "{contextStoreNumberOfSelectedRecords} selected"
msgstr "{contextStoreNumberOfSelectedRecords} 선택됨"
#. js-lingui-id: 6j5rE1
#: src/modules/action-menu/actions/record-agnostic-actions/run-workflow-actions/hooks/useRunWorkflowActions.tsx
#: src/modules/action-menu/actions/record-actions/workflow-run-record-actions/hooks/useWorkflowRunRecordActions.tsx
@@ -105,8 +100,8 @@ msgstr "{workspaceMemberName}님이 다음 역할에서 재할당 해제됩니
#. js-lingui-id: YT0WJ4
#: src/pages/onboarding/ChooseYourPlan.tsx
#~ msgid "1 000 workflow node executions"
#~ msgstr "1 000 workflow node executions"
msgid "1 000 workflow node executions"
msgstr "워크플로 노드 실행 1,000회"
#. js-lingui-id: vb5TwV
#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldSelect.tsx
@@ -119,11 +114,6 @@ msgstr "1. 필드 유형 선택"
msgid "1. Type"
msgstr "1. 유형"
#. js-lingui-id: AvXug3
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "10 000 workflow node executions"
msgstr "워크플로 노드 실행 10,000회"
#. js-lingui-id: 4EdXYs
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "12h ({hour12Label})"
@@ -140,11 +130,6 @@ msgstr "2. 구성"
msgid "2. Configure field"
msgstr "2. 필드 구성"
#. js-lingui-id: kAtmAv
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "20 000 workflow node executions"
msgstr "워크플로 노드 실행 20,000회"
#. js-lingui-id: QsMprd
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "24h ({hour24Label})"
@@ -201,11 +186,6 @@ msgstr "계정 삭제"
msgid "Accounts"
msgstr "계정"
#. js-lingui-id: bwRvnp
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
msgid "Action"
msgstr "액션"
#. js-lingui-id: 7L01XJ
#: src/modules/settings/roles/role-permissions/components/RolePermissionsSettingsTableHeader.tsx
#: src/modules/settings/roles/role-permissions/components/RolePermissionsObjectsTableHeader.tsx
@@ -252,7 +232,7 @@ msgid "Add Approved Access Domain"
msgstr "승인된 액세스 도메인 추가"
#. js-lingui-id: DpV70M
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionForm.tsx
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
msgid "Add Field"
msgstr "필드 추가"
@@ -453,7 +433,6 @@ msgstr "API"
#. js-lingui-id: 0RqpZr
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "API & Webhooks"
msgstr "API 및 웹훅"
@@ -537,28 +516,13 @@ msgstr "청구 주기를 변경하시겠습니까?"
#. js-lingui-id: 8Y3Jbl
#: src/modules/action-menu/actions/record-actions/multiple-records/hooks/useDeleteMultipleRecordsAction.tsx
#~ msgid "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
#~ msgstr "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
#. js-lingui-id: 2BZAqa
#: src/modules/action-menu/actions/record-actions/multiple-records/hooks/useDeleteMultipleRecordsAction.tsx
msgid "Are you sure you want to delete these records? They can be recovered from the Command menu."
msgstr "이 기록들을 삭제하시겠습니까? Command 메뉴에서 복구할 수 있습니다."
msgid "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
msgstr "이 기록들을 삭제하시겠습니까? Command 메뉴에서 복구할 수 있습니다 ({osControlSymbol} + K)."
#. js-lingui-id: Se0vJw
#: src/modules/action-menu/actions/record-actions/single-record/hooks/useDeleteSingleRecordAction.tsx
#~ msgid "Are you sure you want to delete this record? It can be recovered from the Command menu ({osControlSymbol} + K)."
#~ msgstr "Are you sure you want to delete this record? It can be recovered from the Command menu ({osControlSymbol} + K)."
#. js-lingui-id: yb2hF4
#: src/modules/action-menu/actions/record-actions/single-record/hooks/useDeleteSingleRecordAction.tsx
msgid "Are you sure you want to delete this record? It can be recovered from the Command menu."
msgstr "이 기록을 삭제하시겠습니까? Command 메뉴에서 복구할 수 있습니다."
#. js-lingui-id: rnCqBK
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Are you sure? Your current information will not be saved."
msgstr ""
msgid "Are you sure you want to delete this record? It can be recovered from the Command menu ({osControlSymbol} + K)."
msgstr "이 기록을 삭제하시겠습니까? Command 메뉴에서 복구할 수 있습니다 ({osControlSymbol} + K)."
#. js-lingui-id: nYD/Cq
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
@@ -721,18 +685,10 @@ msgstr "캘린더 동기화"
msgid "Calendars"
msgstr "캘린더"
#. js-lingui-id: msssZq
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "Can't change API names for standard objects"
msgstr "표준 객체에 대한 API 이름을 변경할 수 없습니다."
#. js-lingui-id: dEgA5A
#: src/pages/auth/Authorize.tsx
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
msgid "Cancel"
msgstr "취소"
@@ -839,11 +795,6 @@ msgstr "닫기"
msgid "Close command menu"
msgstr "명령 메뉴 닫기"
#. js-lingui-id: EWPtMO
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
msgid "Code"
msgstr "코드"
#. js-lingui-id: H86f9p
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
@@ -856,11 +807,6 @@ msgstr "접기"
msgid "Color code"
msgstr "색상 코드"
#. js-lingui-id: 93hd3e
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Columns not matched:"
msgstr ""
#. js-lingui-id: NM9bMd
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
msgid "Compact view"
@@ -892,7 +838,6 @@ msgid "Configure your emails and calendar settings."
msgstr "이메일 및 캘린더 설정 구성."
#. js-lingui-id: 7VpPHA
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentConfirmationModal.tsx
msgid "Confirm"
msgstr "확인"
@@ -938,8 +883,6 @@ msgstr "컨텍스트"
#: src/pages/onboarding/CreateWorkspace.tsx
#: src/pages/onboarding/CreateProfile.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx
msgid "Continue"
msgstr "계속"
@@ -1004,11 +947,6 @@ msgstr "이 키는 다시 표시되지 않으므로 복사하세요"
msgid "Core"
msgstr "코어"
#. js-lingui-id: w5Stxm
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Correct the issues and fill the missing data."
msgstr ""
#. js-lingui-id: wBMjJ2
#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterMenuContent.tsx
#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterDropdownContent.tsx
@@ -1130,7 +1068,6 @@ msgstr "사용자 정의 도메인이 업데이트되었습니다"
#. js-lingui-id: 8skTDV
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Custom objects"
msgstr "사용자 지정 개체"
@@ -1443,11 +1380,6 @@ msgstr "상대 날짜로 표시"
msgid "Display text on multiple lines"
msgstr "여러 줄에 텍스트 표시"
#. js-lingui-id: ji7sqw
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/TemplateColumn.tsx
msgid "Do not import"
msgstr ""
#. js-lingui-id: U9q4zF
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
msgid "Doesn't contain"
@@ -1491,11 +1423,6 @@ msgstr "team@, support@, noreply@... 이메일과 동기화하지 않음..."
msgid "Download file"
msgstr "파일 다운로드"
#. js-lingui-id: 6D/BnN
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Drop file here..."
msgstr ""
#. js-lingui-id: KIjvtr
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
msgid "Dutch"
@@ -1553,7 +1480,6 @@ msgstr "하위 도메인 이름을 편집하거나 사용자 지정 도메인을
#: src/pages/settings/SettingsWorkspaceMembers.tsx
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/auth/PasswordReset.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentTableHeader.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
msgid "Email"
@@ -1571,7 +1497,6 @@ msgstr "이메일은 비워 둘 수 없습니다"
#. js-lingui-id: lfQsvW
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Email integration"
msgstr "이메일 통합"
@@ -1781,21 +1706,11 @@ msgstr "다음 사람들과 도메인을 이메일 동기화에서 제외합니
msgid "Existing objects"
msgstr "기존 개체"
#. js-lingui-id: ydzS9x
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Exit"
msgstr ""
#. js-lingui-id: LFNXuj
#: src/modules/ui/layout/fullscreen/components/FullScreenContainer.tsx
msgid "Exit Full Screen"
msgstr "전체 화면 종료"
#. js-lingui-id: XB4onr
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Exit import flow"
msgstr ""
#. js-lingui-id: IZ4o2e
#: src/modules/navigation/components/AppNavigationDrawer.tsx
msgid "Exit Settings"
@@ -1981,11 +1896,6 @@ msgstr "필터"
msgid "Filters"
msgstr "필터"
#. js-lingui-id: SNdnlf
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Finish flow with errors"
msgstr ""
#. js-lingui-id: USZ2N6
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
msgid "Finnish"
@@ -2034,7 +1944,6 @@ msgstr "연간에서 월간으로"
#. js-lingui-id: scmRyR
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Full access"
msgstr "전체 접근"
@@ -2072,24 +1981,11 @@ msgstr "구독 신청"
msgid "Global"
msgstr "글로벌"
#. js-lingui-id: iS69s6
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
msgid "Go to runs"
msgstr "실행으로 이동"
#. js-lingui-id: mT57+Q
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
msgid "Go to Settings"
msgstr "설정으로 이동"
#. js-lingui-id: A5WHZY
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
msgid "Go to workflows"
msgstr "워크플로우로 이동"
#. js-lingui-id: hWp1MY
#: src/pages/settings/SettingsWorkspace.tsx
msgid "Grant Twenty support temporary access to your workspace so we can troubleshoot problems or recover content on your behalf. You can revoke access at any time."
@@ -2149,34 +2045,6 @@ msgstr "숨겨진 필드"
msgid "Hide"
msgstr "숨기기"
#. js-lingui-id: OlbYor
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
msgid "Hide deleted"
msgstr "삭제 숨기기"
#. js-lingui-id: FHhlye
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
msgid "Hide deleted records"
msgstr "삭제된 레코드 숨기기"
#. js-lingui-id: 0dZtKR
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
msgid "Hide deleted runs"
msgstr "삭제된 실행 숨기기"
#. js-lingui-id: Jc6FrI
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
msgid "Hide deleted versions"
msgstr "삭제된 버전 숨기기"
#. js-lingui-id: aOZAIB
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
msgid "Hide deleted workflows"
msgstr "삭제된 워크플로 숨기기"
#. js-lingui-id: HS8BG/
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownRecordGroupsContent.tsx
msgid "Hide empty groups"
@@ -2584,8 +2452,8 @@ msgstr "로그아웃"
#. js-lingui-id: nOhz3x
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
msgid "Logout"
msgstr "로그아웃"
#~ msgid "Logout"
#~ msgstr "Logout"
#. js-lingui-id: PTozs8
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
@@ -2629,16 +2497,6 @@ msgstr "구독 관리"
msgid "Mark as done"
msgstr "완료로 표시"
#. js-lingui-id: 7h8ch8
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
msgid "Match columns"
msgstr ""
#. js-lingui-id: gDLior
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Match Columns"
msgstr ""
#. js-lingui-id: CK1KXz
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts
@@ -2867,12 +2725,6 @@ msgstr "새 SSO 공급자"
#~ msgid "New Webhook"
#~ msgstr "New Webhook"
#. js-lingui-id: AxNmtI
#: src/modules/spreadsheet-import/steps/components/SelectSheetStep/SelectSheetStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Next Step"
msgstr ""
#. js-lingui-id: OTe3RI
#: src/pages/settings/workspace/SettingsDomain.tsx
msgid "No change detected"
@@ -2888,16 +2740,6 @@ msgstr "연결된 계정 없음"
msgid "No country"
msgstr "국가 없음"
#. js-lingui-id: pxvJ9B
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "No data containing errors"
msgstr ""
#. js-lingui-id: dihZwh
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "No data found"
msgstr ""
#. js-lingui-id: UwvrGq
#: src/pages/settings/SettingsWorkspaceMembers.tsx
msgid "No members"
@@ -2954,11 +2796,6 @@ msgstr "기록을 찾을 수 없습니다"
#~ msgid "No Result"
#~ msgstr "No Result"
#. js-lingui-id: Ev2r9A
#: src/modules/spreadsheet-import/components/MatchColumnSelect.tsx
msgid "No results"
msgstr ""
#. js-lingui-id: MA3x23
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentWorkspaceMemberPickerDropdownContent.tsx
msgid "No Results"
@@ -2991,11 +2828,6 @@ msgstr "없음"
msgid "Norwegian"
msgstr "노르웨이어"
#. js-lingui-id: v3W9iu
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Not all columns matched"
msgstr ""
#. js-lingui-id: 0qBE9S
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownMenuContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownMenuContent.tsx
@@ -3291,11 +3123,6 @@ msgstr "미리보기"
msgid "Privacy Policy"
msgstr "개인정보 보호정책"
#. js-lingui-id: k1ifdL
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Processing..."
msgstr ""
#. js-lingui-id: vERlcd
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/SettingsProfile.tsx
@@ -3409,7 +3236,6 @@ msgstr "새로 고침"
#. js-lingui-id: t/YqKh
#: src/modules/ui/input/components/ImageInput.tsx
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Remove"
msgstr "제거"
@@ -3483,15 +3309,10 @@ msgid "Restore records"
msgstr "레코드 복원"
#. js-lingui-id: kx0s+n
#: src/modules/command-menu/hooks/useCommandMenuSearchRecords.tsx
#: src/modules/command-menu/hooks/useSearchRecords.tsx
msgid "Results"
msgstr "결과"
#. js-lingui-id: BohSvm
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Review your import"
msgstr ""
#. js-lingui-id: 5dJK4M
#: src/pages/settings/roles/SettingsRoles.tsx
#: src/pages/settings/roles/SettingsRoles.tsx
@@ -3532,7 +3353,6 @@ msgstr "스키마"
#. js-lingui-id: A1taO8
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownWorkspacesListComponents.tsx
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentWorkspaceMemberPickerDropdown.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
#: src/modules/navigation/components/MainNavigationDrawerItems.tsx
#: src/modules/command-menu/hooks/useOpenRecordsSearchPageInCommandMenu.ts
@@ -3580,7 +3400,6 @@ msgstr "색인 검색..."
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownRecordGroupFieldsContent.tsx
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownFilterSelect.tsx
#: src/modules/object-record/advanced-filter/components/AdvancedFilterFieldSelectSearchInput.tsx
msgid "Search fields"
msgstr "필드 검색"
@@ -3643,19 +3462,11 @@ msgstr "삭제된 워크플로 보기"
#. js-lingui-id: OpPn5Z
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
msgid "See runs"
msgstr "실행 보기"
#. js-lingui-id: gGEfj/
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
msgid "See version"
msgstr "버전 보기"
#. js-lingui-id: EtyY4+
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
@@ -3668,52 +3479,12 @@ msgstr "버전 보기"
msgid "See versions history"
msgstr "버전 기록 보기"
#. js-lingui-id: qEKLJV
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
msgid "See workflow"
msgstr "워크플로우 보기"
#. js-lingui-id: XThiR2
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
msgid "See workflows"
msgstr "워크플로우들 보기"
#. js-lingui-id: WZvt/6
#: src/modules/command-menu/hooks/useWorkflowCommandMenu.ts
#: src/modules/command-menu/hooks/__tests__/useWorkflowCommandMenu.test.tsx
msgid "Select Action"
msgstr "작업 선택"
#. js-lingui-id: hVPa4O
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/UnmatchColumn.tsx
msgid "Select an option"
msgstr ""
#. js-lingui-id: 21YIUv
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/TemplateColumn.tsx
msgid "Select column..."
msgstr ""
#. js-lingui-id: J6WI1B
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Select file"
msgstr ""
#. js-lingui-id: ljSvAs
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
msgid "Select header row"
msgstr ""
#. js-lingui-id: mWHn81
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Select the correct field for each column you'd like to import."
msgstr ""
#. js-lingui-id: pofGCP
#: src/modules/settings/data-model/fields/forms/boolean/components/SettingsDataModelFieldBooleanForm.tsx
msgid "Select the default value for this boolean field"
@@ -3724,11 +3495,6 @@ msgstr "이 boolean 필드의 기본값 선택"
msgid "Select the events you wish to send to this endpoint"
msgstr "이 엔드포인트로 보내려는 이벤트를 선택하세요"
#. js-lingui-id: +xn1pe
#: src/modules/spreadsheet-import/steps/components/SelectSheetStep/SelectSheetStep.tsx
msgid "Select the sheet to use"
msgstr ""
#. js-lingui-id: AXTJAW
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Select your preferred language"
@@ -3833,16 +3599,6 @@ msgstr "필드의 레이블을 변경하면 API 이름도 변경되어야 하나
msgid "Should changing an object's label also change the API?"
msgstr "객체의 레이블을 변경할 때 API도 변경되어야 하나요?"
#. js-lingui-id: qi+g0a
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Show only rows with errors"
msgstr ""
#. js-lingui-id: MHlGJL
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Show unmatched columns"
msgstr ""
#. js-lingui-id: uVg8dY
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutOpenInContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -3901,11 +3657,6 @@ msgstr "스페인어"
msgid "SSO"
msgstr "SSO"
#. js-lingui-id: vlvAkg
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "SSO (SAML / OIDC)"
msgstr "SSO (SAML / OIDC)"
#. js-lingui-id: ErU1td
#: src/modules/views/view-picker/components/ViewPickerContentCreateMode.tsx
msgid "Stages"
@@ -3959,11 +3710,6 @@ msgstr "주제와 메타데이터가 팀과 공유됩니다."
msgid "Subject, body and attachments will be shared with your team."
msgstr "주제, 본문, 첨부 파일이 팀과 공유됩니다."
#. js-lingui-id: hQRttt
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Submit"
msgstr ""
#. js-lingui-id: B5jRKH
#: src/pages/settings/SettingsBilling.tsx
msgid "Subscription has been switched {to}"
@@ -4000,11 +3746,6 @@ msgstr "{to}로 전환"
msgid "Switch billing {to}"
msgstr "청구 {to}로 전환"
#. js-lingui-id: lz+f/E
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Switch to {alternatePlanName}"
msgstr "{alternatePlanName}로 전환"
#. js-lingui-id: 5TRY4+
#: src/modules/settings/accounts/components/SettingsAccountsConnectedAccountsRowRightContainer.tsx
msgid "Sync failed"
@@ -4145,16 +3886,6 @@ msgstr "테마"
msgid "Theme "
msgstr "테마 "
#. js-lingui-id: /cSDOy
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "There are required columns that are not matched or ignored. Do you want to continue?"
msgstr ""
#. js-lingui-id: luL9RX
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "There are still some rows that contain errors. Rows with errors will be ignored when submitting."
msgstr ""
#. js-lingui-id: ynfkhb
#: src/pages/auth/PasswordReset.tsx
msgid "There was an error while updating password."
@@ -4298,7 +4029,6 @@ msgstr "알 수 없는 오류"
#. js-lingui-id: GQCXQS
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Unlimited contacts"
msgstr "무제한 연락처"
@@ -4312,13 +4042,7 @@ msgstr "업데이트됨"
msgid "Upload"
msgstr "업로드"
#. js-lingui-id: 7OP1Xi
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Upload .xlsx, .xls or .csv file"
msgstr ""
#. js-lingui-id: 2IXDgU
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Upload file"
msgstr "파일 업로드"
@@ -4395,11 +4119,6 @@ msgstr "사용자가 로그인하지 않았습니다"
#~ msgid "Users"
#~ msgstr "Users"
#. js-lingui-id: MGeZsN
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
msgid "Validate data"
msgstr ""
#. js-lingui-id: fXVIZq
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
@@ -4614,11 +4333,6 @@ msgstr "비밀 작성"
msgid "yes"
msgstr "예"
#. js-lingui-id: qsAug0
#: src/modules/spreadsheet-import/components/MatchColumnSelect.tsx
msgid "You are already importing this column."
msgstr ""
#. js-lingui-id: MFDARJ
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateReadOnly.tsx
msgid "You are not allowed to create records for this object"
+10 -296
View File
@@ -87,11 +87,6 @@ msgstr "{aggregateLabel} van {fieldLabel}"
msgid "{apiKeyName} API Key"
msgstr "{apiKeyName} API-sleutel"
#. js-lingui-id: zi5SHH
#: src/modules/object-record/record-index/components/RecordIndexPageHeader.tsx
msgid "{contextStoreNumberOfSelectedRecords} selected"
msgstr "{contextStoreNumberOfSelectedRecords} geselecteerd"
#. js-lingui-id: 6j5rE1
#: src/modules/action-menu/actions/record-agnostic-actions/run-workflow-actions/hooks/useRunWorkflowActions.tsx
#: src/modules/action-menu/actions/record-actions/workflow-run-record-actions/hooks/useWorkflowRunRecordActions.tsx
@@ -105,8 +100,8 @@ msgstr "{workspaceMemberName} zal ontheven worden van de volgende rol:"
#. js-lingui-id: YT0WJ4
#: src/pages/onboarding/ChooseYourPlan.tsx
#~ msgid "1 000 workflow node executions"
#~ msgstr "1 000 workflow node executions"
msgid "1 000 workflow node executions"
msgstr "{num, plural, one {1 werkknooppuntuitvoering} other {# werkknooppuntuitvoeringen}}"
#. js-lingui-id: vb5TwV
#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldSelect.tsx
@@ -119,11 +114,6 @@ msgstr "1. Selecteer een veldtype"
msgid "1. Type"
msgstr "1. Type"
#. js-lingui-id: AvXug3
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "10 000 workflow node executions"
msgstr "{num, plural, one {10 werkknooppuntuitvoering} other {# werkknooppuntuitvoeringen}}"
#. js-lingui-id: 4EdXYs
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "12h ({hour12Label})"
@@ -140,11 +130,6 @@ msgstr "2. Configureren"
msgid "2. Configure field"
msgstr "2. Veld configureren"
#. js-lingui-id: kAtmAv
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "20 000 workflow node executions"
msgstr "{num, plural, one {20 werkknooppuntuitvoering} other {# werkknooppuntuitvoeringen}}"
#. js-lingui-id: QsMprd
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "24h ({hour24Label})"
@@ -201,11 +186,6 @@ msgstr "Accountverwijdering"
msgid "Accounts"
msgstr "Accounts"
#. js-lingui-id: bwRvnp
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
msgid "Action"
msgstr "Actie"
#. js-lingui-id: 7L01XJ
#: src/modules/settings/roles/role-permissions/components/RolePermissionsSettingsTableHeader.tsx
#: src/modules/settings/roles/role-permissions/components/RolePermissionsObjectsTableHeader.tsx
@@ -252,7 +232,7 @@ msgid "Add Approved Access Domain"
msgstr "Goedkeurd toegangsdomioen toevoegen"
#. js-lingui-id: DpV70M
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionForm.tsx
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
msgid "Add Field"
msgstr "Veld toevoegen"
@@ -453,7 +433,6 @@ msgstr "API"
#. js-lingui-id: 0RqpZr
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "API & Webhooks"
msgstr "API & Webhooks"
@@ -537,28 +516,13 @@ msgstr "Weet u zeker dat u uw facturatieperiode wilt wijzigen?"
#. js-lingui-id: 8Y3Jbl
#: src/modules/action-menu/actions/record-actions/multiple-records/hooks/useDeleteMultipleRecordsAction.tsx
#~ msgid "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
#~ msgstr "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
#. js-lingui-id: 2BZAqa
#: src/modules/action-menu/actions/record-actions/multiple-records/hooks/useDeleteMultipleRecordsAction.tsx
msgid "Are you sure you want to delete these records? They can be recovered from the Command menu."
msgstr "Weet je zeker dat je deze records wilt verwijderen? Ze kunnen worden hersteld vanuit het Command menu."
msgid "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
msgstr "Weet je zeker dat je deze records wilt verwijderen? Ze kunnen worden hersteld vanuit het Command menu ({osControlSymbol} + K)."
#. js-lingui-id: Se0vJw
#: src/modules/action-menu/actions/record-actions/single-record/hooks/useDeleteSingleRecordAction.tsx
#~ msgid "Are you sure you want to delete this record? It can be recovered from the Command menu ({osControlSymbol} + K)."
#~ msgstr "Are you sure you want to delete this record? It can be recovered from the Command menu ({osControlSymbol} + K)."
#. js-lingui-id: yb2hF4
#: src/modules/action-menu/actions/record-actions/single-record/hooks/useDeleteSingleRecordAction.tsx
msgid "Are you sure you want to delete this record? It can be recovered from the Command menu."
msgstr "Weet je zeker dat je dit record wilt verwijderen? Het kan worden hersteld vanuit het Commandemenu."
#. js-lingui-id: rnCqBK
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Are you sure? Your current information will not be saved."
msgstr ""
msgid "Are you sure you want to delete this record? It can be recovered from the Command menu ({osControlSymbol} + K)."
msgstr "Weet je zeker dat je dit record wilt verwijderen? Het kan worden hersteld vanuit het Command menu ({osControlSymbol} + K)."
#. js-lingui-id: nYD/Cq
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
@@ -721,18 +685,10 @@ msgstr "Kalendersynchronisatie"
msgid "Calendars"
msgstr "Kalenders"
#. js-lingui-id: msssZq
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "Can't change API names for standard objects"
msgstr "Kan API-namen niet wijzigen voor standaardobjecten"
#. js-lingui-id: dEgA5A
#: src/pages/auth/Authorize.tsx
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
msgid "Cancel"
msgstr "Annuleren"
@@ -839,11 +795,6 @@ msgstr "Sluiten"
msgid "Close command menu"
msgstr "Sluit opdrachtmenu"
#. js-lingui-id: EWPtMO
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
msgid "Code"
msgstr "Code"
#. js-lingui-id: H86f9p
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
@@ -856,11 +807,6 @@ msgstr "Uitvouwen"
msgid "Color code"
msgstr "Kleurcode"
#. js-lingui-id: 93hd3e
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Columns not matched:"
msgstr ""
#. js-lingui-id: NM9bMd
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
msgid "Compact view"
@@ -892,7 +838,6 @@ msgid "Configure your emails and calendar settings."
msgstr "Configureer uw e-mail- en kalenderinstellingen."
#. js-lingui-id: 7VpPHA
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentConfirmationModal.tsx
msgid "Confirm"
msgstr "Bevestigen"
@@ -938,8 +883,6 @@ msgstr "Context"
#: src/pages/onboarding/CreateWorkspace.tsx
#: src/pages/onboarding/CreateProfile.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx
msgid "Continue"
msgstr "Doorgaan"
@@ -1004,11 +947,6 @@ msgstr "Kopieer deze sleutel want deze wordt niet nogmaals getoond"
msgid "Core"
msgstr "Kern"
#. js-lingui-id: w5Stxm
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Correct the issues and fill the missing data."
msgstr ""
#. js-lingui-id: wBMjJ2
#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterMenuContent.tsx
#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterDropdownContent.tsx
@@ -1130,7 +1068,6 @@ msgstr "Aangepast domein bijgewerkt"
#. js-lingui-id: 8skTDV
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Custom objects"
msgstr "Aangepaste objecten"
@@ -1443,11 +1380,6 @@ msgstr "Weergeven als relatieve datum"
msgid "Display text on multiple lines"
msgstr "Tekst weergeven op meerdere regels"
#. js-lingui-id: ji7sqw
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/TemplateColumn.tsx
msgid "Do not import"
msgstr ""
#. js-lingui-id: U9q4zF
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
msgid "Doesn't contain"
@@ -1491,11 +1423,6 @@ msgstr "Synchroniseer geen e-mails van team@ support@ noreply@..."
msgid "Download file"
msgstr "Bestand downloaden"
#. js-lingui-id: 6D/BnN
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Drop file here..."
msgstr ""
#. js-lingui-id: KIjvtr
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
msgid "Dutch"
@@ -1553,7 +1480,6 @@ msgstr "Bewerk de naam van uw subdomein of stel een aangepast domein in."
#: src/pages/settings/SettingsWorkspaceMembers.tsx
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/auth/PasswordReset.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentTableHeader.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
msgid "Email"
@@ -1571,7 +1497,6 @@ msgstr "E-mail mag niet leeg zijn"
#. js-lingui-id: lfQsvW
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Email integration"
msgstr "E-mailintegratie"
@@ -1781,21 +1706,11 @@ msgstr "Sluit de volgende mensen en domeinen uit van mijn e-mailsynchronisatie.
msgid "Existing objects"
msgstr "Bestaande objecten"
#. js-lingui-id: ydzS9x
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Exit"
msgstr ""
#. js-lingui-id: LFNXuj
#: src/modules/ui/layout/fullscreen/components/FullScreenContainer.tsx
msgid "Exit Full Screen"
msgstr "Volledig scherm afsluiten"
#. js-lingui-id: XB4onr
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Exit import flow"
msgstr ""
#. js-lingui-id: IZ4o2e
#: src/modules/navigation/components/AppNavigationDrawer.tsx
msgid "Exit Settings"
@@ -1981,11 +1896,6 @@ msgstr "Filteren"
msgid "Filters"
msgstr "Filters"
#. js-lingui-id: SNdnlf
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Finish flow with errors"
msgstr ""
#. js-lingui-id: USZ2N6
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
msgid "Finnish"
@@ -2034,7 +1944,6 @@ msgstr "van jaarlijks naar maandelijks"
#. js-lingui-id: scmRyR
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Full access"
msgstr "Volledige toegang"
@@ -2072,24 +1981,11 @@ msgstr "Krijg je abonnement"
msgid "Global"
msgstr "Globaal"
#. js-lingui-id: iS69s6
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
msgid "Go to runs"
msgstr "Ga naar runs"
#. js-lingui-id: mT57+Q
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
msgid "Go to Settings"
msgstr "Ga naar Instellingen"
#. js-lingui-id: A5WHZY
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
msgid "Go to workflows"
msgstr "Ga naar workflows"
#. js-lingui-id: hWp1MY
#: src/pages/settings/SettingsWorkspace.tsx
msgid "Grant Twenty support temporary access to your workspace so we can troubleshoot problems or recover content on your behalf. You can revoke access at any time."
@@ -2149,34 +2045,6 @@ msgstr "Verborgen velden"
msgid "Hide"
msgstr "Verbergen"
#. js-lingui-id: OlbYor
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
msgid "Hide deleted"
msgstr "Verberg verwijderde"
#. js-lingui-id: FHhlye
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
msgid "Hide deleted records"
msgstr "Verberg verwijderde records"
#. js-lingui-id: 0dZtKR
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
msgid "Hide deleted runs"
msgstr "Verberg verwijderde runs"
#. js-lingui-id: Jc6FrI
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
msgid "Hide deleted versions"
msgstr "Verberg verwijderde versies"
#. js-lingui-id: aOZAIB
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
msgid "Hide deleted workflows"
msgstr "Verberg verwijderde workflows"
#. js-lingui-id: HS8BG/
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownRecordGroupsContent.tsx
msgid "Hide empty groups"
@@ -2584,8 +2452,8 @@ msgstr "Uitloggen"
#. js-lingui-id: nOhz3x
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
msgid "Logout"
msgstr "Uitloggen"
#~ msgid "Logout"
#~ msgstr "Logout"
#. js-lingui-id: PTozs8
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
@@ -2629,16 +2497,6 @@ msgstr "Beheer je abonnement"
msgid "Mark as done"
msgstr "Markeren als voltooid"
#. js-lingui-id: 7h8ch8
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
msgid "Match columns"
msgstr ""
#. js-lingui-id: gDLior
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Match Columns"
msgstr ""
#. js-lingui-id: CK1KXz
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts
@@ -2867,12 +2725,6 @@ msgstr "Nieuwe SSO-provider"
#~ msgid "New Webhook"
#~ msgstr "New Webhook"
#. js-lingui-id: AxNmtI
#: src/modules/spreadsheet-import/steps/components/SelectSheetStep/SelectSheetStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Next Step"
msgstr ""
#. js-lingui-id: OTe3RI
#: src/pages/settings/workspace/SettingsDomain.tsx
msgid "No change detected"
@@ -2888,16 +2740,6 @@ msgstr "Geen verbonden account"
msgid "No country"
msgstr "Geen land"
#. js-lingui-id: pxvJ9B
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "No data containing errors"
msgstr ""
#. js-lingui-id: dihZwh
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "No data found"
msgstr ""
#. js-lingui-id: UwvrGq
#: src/pages/settings/SettingsWorkspaceMembers.tsx
msgid "No members"
@@ -2954,11 +2796,6 @@ msgstr "Geen gegevens gevonden"
#~ msgid "No Result"
#~ msgstr "No Result"
#. js-lingui-id: Ev2r9A
#: src/modules/spreadsheet-import/components/MatchColumnSelect.tsx
msgid "No results"
msgstr ""
#. js-lingui-id: MA3x23
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentWorkspaceMemberPickerDropdownContent.tsx
msgid "No Results"
@@ -2991,11 +2828,6 @@ msgstr "Geen"
msgid "Norwegian"
msgstr "Noors"
#. js-lingui-id: v3W9iu
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Not all columns matched"
msgstr ""
#. js-lingui-id: 0qBE9S
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownMenuContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownMenuContent.tsx
@@ -3291,11 +3123,6 @@ msgstr "Voorbeeld"
msgid "Privacy Policy"
msgstr "Privacybeleid"
#. js-lingui-id: k1ifdL
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Processing..."
msgstr ""
#. js-lingui-id: vERlcd
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/SettingsProfile.tsx
@@ -3409,7 +3236,6 @@ msgstr "Herladen"
#. js-lingui-id: t/YqKh
#: src/modules/ui/input/components/ImageInput.tsx
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Remove"
msgstr "Verwijderen"
@@ -3483,15 +3309,10 @@ msgid "Restore records"
msgstr "Records herstellen"
#. js-lingui-id: kx0s+n
#: src/modules/command-menu/hooks/useCommandMenuSearchRecords.tsx
#: src/modules/command-menu/hooks/useSearchRecords.tsx
msgid "Results"
msgstr "Resultaten"
#. js-lingui-id: BohSvm
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Review your import"
msgstr ""
#. js-lingui-id: 5dJK4M
#: src/pages/settings/roles/SettingsRoles.tsx
#: src/pages/settings/roles/SettingsRoles.tsx
@@ -3532,7 +3353,6 @@ msgstr "Schema"
#. js-lingui-id: A1taO8
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownWorkspacesListComponents.tsx
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentWorkspaceMemberPickerDropdown.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
#: src/modules/navigation/components/MainNavigationDrawerItems.tsx
#: src/modules/command-menu/hooks/useOpenRecordsSearchPageInCommandMenu.ts
@@ -3580,7 +3400,6 @@ msgstr "Zoek een index..."
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownRecordGroupFieldsContent.tsx
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownFilterSelect.tsx
#: src/modules/object-record/advanced-filter/components/AdvancedFilterFieldSelectSearchInput.tsx
msgid "Search fields"
msgstr "Velden zoeken"
@@ -3643,19 +3462,11 @@ msgstr "Bekijk verwijderde workflows"
#. js-lingui-id: OpPn5Z
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
msgid "See runs"
msgstr "Bekijk runs"
#. js-lingui-id: gGEfj/
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
msgid "See version"
msgstr "Zie versie"
#. js-lingui-id: EtyY4+
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
@@ -3668,52 +3479,12 @@ msgstr "Bekijk versies"
msgid "See versions history"
msgstr "Bekijk versiegeschiedenis"
#. js-lingui-id: qEKLJV
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
msgid "See workflow"
msgstr "Zie workflow"
#. js-lingui-id: XThiR2
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
msgid "See workflows"
msgstr "Bekijk workflows"
#. js-lingui-id: WZvt/6
#: src/modules/command-menu/hooks/useWorkflowCommandMenu.ts
#: src/modules/command-menu/hooks/__tests__/useWorkflowCommandMenu.test.tsx
msgid "Select Action"
msgstr "Selecteer Actie"
#. js-lingui-id: hVPa4O
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/UnmatchColumn.tsx
msgid "Select an option"
msgstr ""
#. js-lingui-id: 21YIUv
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/TemplateColumn.tsx
msgid "Select column..."
msgstr ""
#. js-lingui-id: J6WI1B
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Select file"
msgstr ""
#. js-lingui-id: ljSvAs
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
msgid "Select header row"
msgstr ""
#. js-lingui-id: mWHn81
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Select the correct field for each column you'd like to import."
msgstr ""
#. js-lingui-id: pofGCP
#: src/modules/settings/data-model/fields/forms/boolean/components/SettingsDataModelFieldBooleanForm.tsx
msgid "Select the default value for this boolean field"
@@ -3724,11 +3495,6 @@ msgstr "Selecteer de standaardwaarde voor dit booleaanse veld"
msgid "Select the events you wish to send to this endpoint"
msgstr "Selecteer de gebeurtenissen die je naar dit eindpunt wilt sturen"
#. js-lingui-id: +xn1pe
#: src/modules/spreadsheet-import/steps/components/SelectSheetStep/SelectSheetStep.tsx
msgid "Select the sheet to use"
msgstr ""
#. js-lingui-id: AXTJAW
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Select your preferred language"
@@ -3833,16 +3599,6 @@ msgstr "Moet het wijzigen van het label van een veld ook de API-naam wijzigen?"
msgid "Should changing an object's label also change the API?"
msgstr "Moet het wijzigen van een objectlabel ook de API wijzigen?"
#. js-lingui-id: qi+g0a
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Show only rows with errors"
msgstr ""
#. js-lingui-id: MHlGJL
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Show unmatched columns"
msgstr ""
#. js-lingui-id: uVg8dY
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutOpenInContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -3901,11 +3657,6 @@ msgstr "Spaans"
msgid "SSO"
msgstr "Eenmalige aanmelding"
#. js-lingui-id: vlvAkg
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "SSO (SAML / OIDC)"
msgstr ""
#. js-lingui-id: ErU1td
#: src/modules/views/view-picker/components/ViewPickerContentCreateMode.tsx
msgid "Stages"
@@ -3959,11 +3710,6 @@ msgstr "Onderwerp en metadata worden gedeeld met uw team."
msgid "Subject, body and attachments will be shared with your team."
msgstr "Onderwerp, inhoud en bijlagen worden gedeeld met uw team."
#. js-lingui-id: hQRttt
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Submit"
msgstr ""
#. js-lingui-id: B5jRKH
#: src/pages/settings/SettingsBilling.tsx
msgid "Subscription has been switched {to}"
@@ -4000,11 +3746,6 @@ msgstr "Wissel naar {to}"
msgid "Switch billing {to}"
msgstr "Wissel facturatie naar {to}"
#. js-lingui-id: lz+f/E
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Switch to {alternatePlanName}"
msgstr "Schakel over naar {alternatePlanName}"
#. js-lingui-id: 5TRY4+
#: src/modules/settings/accounts/components/SettingsAccountsConnectedAccountsRowRightContainer.tsx
msgid "Sync failed"
@@ -4145,16 +3886,6 @@ msgstr "Thema"
msgid "Theme "
msgstr "Thema "
#. js-lingui-id: /cSDOy
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "There are required columns that are not matched or ignored. Do you want to continue?"
msgstr ""
#. js-lingui-id: luL9RX
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "There are still some rows that contain errors. Rows with errors will be ignored when submitting."
msgstr ""
#. js-lingui-id: ynfkhb
#: src/pages/auth/PasswordReset.tsx
msgid "There was an error while updating password."
@@ -4298,7 +4029,6 @@ msgstr "Onbekende fout"
#. js-lingui-id: GQCXQS
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Unlimited contacts"
msgstr "Onbeperkte contacten"
@@ -4312,13 +4042,7 @@ msgstr "Bijgewerkt"
msgid "Upload"
msgstr "Uploaden"
#. js-lingui-id: 7OP1Xi
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Upload .xlsx, .xls or .csv file"
msgstr ""
#. js-lingui-id: 2IXDgU
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Upload file"
msgstr "Bestand uploaden"
@@ -4395,11 +4119,6 @@ msgstr "Gebruiker is niet ingelogd"
#~ msgid "Users"
#~ msgstr "Users"
#. js-lingui-id: MGeZsN
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
msgid "Validate data"
msgstr ""
#. js-lingui-id: fXVIZq
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
@@ -4614,11 +4333,6 @@ msgstr "Schrijf een geheim"
msgid "yes"
msgstr "ja"
#. js-lingui-id: qsAug0
#: src/modules/spreadsheet-import/components/MatchColumnSelect.tsx
msgid "You are already importing this column."
msgstr ""
#. js-lingui-id: MFDARJ
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateReadOnly.tsx
msgid "You are not allowed to create records for this object"
+10 -296
View File
@@ -87,11 +87,6 @@ msgstr "{aggregateLabel} av {fieldLabel}"
msgid "{apiKeyName} API Key"
msgstr "{apiKeyName} API-nøkkel"
#. js-lingui-id: zi5SHH
#: src/modules/object-record/record-index/components/RecordIndexPageHeader.tsx
msgid "{contextStoreNumberOfSelectedRecords} selected"
msgstr "{contextStoreNumberOfSelectedRecords} valgt"
#. js-lingui-id: 6j5rE1
#: src/modules/action-menu/actions/record-agnostic-actions/run-workflow-actions/hooks/useRunWorkflowActions.tsx
#: src/modules/action-menu/actions/record-actions/workflow-run-record-actions/hooks/useWorkflowRunRecordActions.tsx
@@ -105,8 +100,8 @@ msgstr "{workspaceMemberName} vil ikke lengre være tilordnet følgende rolle:"
#. js-lingui-id: YT0WJ4
#: src/pages/onboarding/ChooseYourPlan.tsx
#~ msgid "1 000 workflow node executions"
#~ msgstr "1 000 workflow node executions"
msgid "1 000 workflow node executions"
msgstr "1 000 workflow-noden utførelser"
#. js-lingui-id: vb5TwV
#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldSelect.tsx
@@ -119,11 +114,6 @@ msgstr "1. Velg en felttype"
msgid "1. Type"
msgstr "1. Skriv"
#. js-lingui-id: AvXug3
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "10 000 workflow node executions"
msgstr "10 000 nodeutføringer av arbeidsflyt"
#. js-lingui-id: 4EdXYs
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "12h ({hour12Label})"
@@ -140,11 +130,6 @@ msgstr "2. Konfigurer"
msgid "2. Configure field"
msgstr "2. Konfigurer felt"
#. js-lingui-id: kAtmAv
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "20 000 workflow node executions"
msgstr "20 000 nodeutføringer av arbeidsflyt"
#. js-lingui-id: QsMprd
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "24h ({hour24Label})"
@@ -201,11 +186,6 @@ msgstr "Kontosletting"
msgid "Accounts"
msgstr "Kontoer"
#. js-lingui-id: bwRvnp
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
msgid "Action"
msgstr "Handling"
#. js-lingui-id: 7L01XJ
#: src/modules/settings/roles/role-permissions/components/RolePermissionsSettingsTableHeader.tsx
#: src/modules/settings/roles/role-permissions/components/RolePermissionsObjectsTableHeader.tsx
@@ -252,7 +232,7 @@ msgid "Add Approved Access Domain"
msgstr "Legg til godkjent tilgangsdomene"
#. js-lingui-id: DpV70M
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionForm.tsx
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
msgid "Add Field"
msgstr "Legg til felt"
@@ -453,7 +433,6 @@ msgstr "API"
#. js-lingui-id: 0RqpZr
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "API & Webhooks"
msgstr "API og webhooks"
@@ -537,28 +516,13 @@ msgstr "Er du sikker på at du vil endre din faktureringsintervall?"
#. js-lingui-id: 8Y3Jbl
#: src/modules/action-menu/actions/record-actions/multiple-records/hooks/useDeleteMultipleRecordsAction.tsx
#~ msgid "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
#~ msgstr "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
#. js-lingui-id: 2BZAqa
#: src/modules/action-menu/actions/record-actions/multiple-records/hooks/useDeleteMultipleRecordsAction.tsx
msgid "Are you sure you want to delete these records? They can be recovered from the Command menu."
msgstr "Er du sikker på at du vil slette disse postene? De kan gjenopprettes fra Kommandomenyen."
msgid "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
msgstr "Er du sikker på at du vil slette disse postene? De kan gjenopprettes fra Kommandomenyen ({osControlSymbol} + K)."
#. js-lingui-id: Se0vJw
#: src/modules/action-menu/actions/record-actions/single-record/hooks/useDeleteSingleRecordAction.tsx
#~ msgid "Are you sure you want to delete this record? It can be recovered from the Command menu ({osControlSymbol} + K)."
#~ msgstr "Are you sure you want to delete this record? It can be recovered from the Command menu ({osControlSymbol} + K)."
#. js-lingui-id: yb2hF4
#: src/modules/action-menu/actions/record-actions/single-record/hooks/useDeleteSingleRecordAction.tsx
msgid "Are you sure you want to delete this record? It can be recovered from the Command menu."
msgstr "Er du sikker på at du vil slette denne posten? Den kan gjenopprettes fra Kommandomenyen."
#. js-lingui-id: rnCqBK
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Are you sure? Your current information will not be saved."
msgstr ""
msgid "Are you sure you want to delete this record? It can be recovered from the Command menu ({osControlSymbol} + K)."
msgstr "Er du sikker på at du vil slette denne posten? Den kan gjenopprettes fra Kommandomenyen ({osControlSymbol} + K)."
#. js-lingui-id: nYD/Cq
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
@@ -721,18 +685,10 @@ msgstr "Kalendersynkronisering"
msgid "Calendars"
msgstr "Kalendere"
#. js-lingui-id: msssZq
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "Can't change API names for standard objects"
msgstr "Kan ikke endre API-navn for standardobjekter"
#. js-lingui-id: dEgA5A
#: src/pages/auth/Authorize.tsx
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
msgid "Cancel"
msgstr "Avbryt"
@@ -839,11 +795,6 @@ msgstr "Lukk"
msgid "Close command menu"
msgstr "Lukk kommandomeny"
#. js-lingui-id: EWPtMO
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
msgid "Code"
msgstr "Kode"
#. js-lingui-id: H86f9p
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
@@ -856,11 +807,6 @@ msgstr "Lukk"
msgid "Color code"
msgstr "Fargekode"
#. js-lingui-id: 93hd3e
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Columns not matched:"
msgstr ""
#. js-lingui-id: NM9bMd
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
msgid "Compact view"
@@ -892,7 +838,6 @@ msgid "Configure your emails and calendar settings."
msgstr "Konfigurer dine e-post- og kalenderinnstillinger."
#. js-lingui-id: 7VpPHA
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentConfirmationModal.tsx
msgid "Confirm"
msgstr "Bekreft"
@@ -938,8 +883,6 @@ msgstr "Kontekst"
#: src/pages/onboarding/CreateWorkspace.tsx
#: src/pages/onboarding/CreateProfile.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx
msgid "Continue"
msgstr "Fortsett"
@@ -1004,11 +947,6 @@ msgstr "Kopier denne nøkelen da den ikke vil vre synlig igjen"
msgid "Core"
msgstr "Kjerne"
#. js-lingui-id: w5Stxm
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Correct the issues and fill the missing data."
msgstr ""
#. js-lingui-id: wBMjJ2
#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterMenuContent.tsx
#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterDropdownContent.tsx
@@ -1130,7 +1068,6 @@ msgstr "Egendefinert domene oppdatert"
#. js-lingui-id: 8skTDV
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Custom objects"
msgstr "Tilpassede objekter"
@@ -1443,11 +1380,6 @@ msgstr "Vis som relativ dato"
msgid "Display text on multiple lines"
msgstr "Vis tekst på flere linjer"
#. js-lingui-id: ji7sqw
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/TemplateColumn.tsx
msgid "Do not import"
msgstr ""
#. js-lingui-id: U9q4zF
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
msgid "Doesn't contain"
@@ -1491,11 +1423,6 @@ msgstr "Ikke synkroniser e-poster fra team@ support@ noreply@..."
msgid "Download file"
msgstr "Last ned fil"
#. js-lingui-id: 6D/BnN
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Drop file here..."
msgstr ""
#. js-lingui-id: KIjvtr
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
msgid "Dutch"
@@ -1553,7 +1480,6 @@ msgstr "Rediger din underdomenenavn eller sett et tilpasset domene."
#: src/pages/settings/SettingsWorkspaceMembers.tsx
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/auth/PasswordReset.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentTableHeader.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
msgid "Email"
@@ -1571,7 +1497,6 @@ msgstr "E-post kan ikke være tom"
#. js-lingui-id: lfQsvW
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Email integration"
msgstr "E-postintegrasjon"
@@ -1781,21 +1706,11 @@ msgstr "Ekskluder følgende personer og domener fra e-postsynkroniseringen min.
msgid "Existing objects"
msgstr "Eksisterende objekter"
#. js-lingui-id: ydzS9x
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Exit"
msgstr ""
#. js-lingui-id: LFNXuj
#: src/modules/ui/layout/fullscreen/components/FullScreenContainer.tsx
msgid "Exit Full Screen"
msgstr "Avslutt fullskjerm"
#. js-lingui-id: XB4onr
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Exit import flow"
msgstr ""
#. js-lingui-id: IZ4o2e
#: src/modules/navigation/components/AppNavigationDrawer.tsx
msgid "Exit Settings"
@@ -1981,11 +1896,6 @@ msgstr "Filtrer"
msgid "Filters"
msgstr "Filtre"
#. js-lingui-id: SNdnlf
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Finish flow with errors"
msgstr ""
#. js-lingui-id: USZ2N6
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
msgid "Finnish"
@@ -2034,7 +1944,6 @@ msgstr "fra årlig til månedlig"
#. js-lingui-id: scmRyR
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Full access"
msgstr "Full tilgang"
@@ -2072,24 +1981,11 @@ msgstr "Få abonnementet ditt"
msgid "Global"
msgstr "Global"
#. js-lingui-id: iS69s6
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
msgid "Go to runs"
msgstr "Gå til kjøringer"
#. js-lingui-id: mT57+Q
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
msgid "Go to Settings"
msgstr "Gå til innstillinger"
#. js-lingui-id: A5WHZY
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
msgid "Go to workflows"
msgstr "Gå til arbeidsflyter"
#. js-lingui-id: hWp1MY
#: src/pages/settings/SettingsWorkspace.tsx
msgid "Grant Twenty support temporary access to your workspace so we can troubleshoot problems or recover content on your behalf. You can revoke access at any time."
@@ -2149,34 +2045,6 @@ msgstr "Skjulte felt"
msgid "Hide"
msgstr "Skjul"
#. js-lingui-id: OlbYor
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
msgid "Hide deleted"
msgstr "Skjul slettede"
#. js-lingui-id: FHhlye
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
msgid "Hide deleted records"
msgstr "Skjul slettede oppføringer"
#. js-lingui-id: 0dZtKR
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
msgid "Hide deleted runs"
msgstr "Skjul slettede kjøringer"
#. js-lingui-id: Jc6FrI
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
msgid "Hide deleted versions"
msgstr "Skjul slettede versjoner"
#. js-lingui-id: aOZAIB
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
msgid "Hide deleted workflows"
msgstr "Skjul slettede arbeidsflyter"
#. js-lingui-id: HS8BG/
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownRecordGroupsContent.tsx
msgid "Hide empty groups"
@@ -2584,8 +2452,8 @@ msgstr "Logg ut"
#. js-lingui-id: nOhz3x
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
msgid "Logout"
msgstr "Logg ut"
#~ msgid "Logout"
#~ msgstr "Logout"
#. js-lingui-id: PTozs8
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
@@ -2629,16 +2497,6 @@ msgstr "Administrer abonnementet ditt"
msgid "Mark as done"
msgstr "Marker som utf\\u00f8rt"
#. js-lingui-id: 7h8ch8
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
msgid "Match columns"
msgstr ""
#. js-lingui-id: gDLior
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Match Columns"
msgstr ""
#. js-lingui-id: CK1KXz
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts
@@ -2867,12 +2725,6 @@ msgstr "Ny SSO-leverandør"
#~ msgid "New Webhook"
#~ msgstr "New Webhook"
#. js-lingui-id: AxNmtI
#: src/modules/spreadsheet-import/steps/components/SelectSheetStep/SelectSheetStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Next Step"
msgstr ""
#. js-lingui-id: OTe3RI
#: src/pages/settings/workspace/SettingsDomain.tsx
msgid "No change detected"
@@ -2888,16 +2740,6 @@ msgstr "Ingen tilknyttet konto"
msgid "No country"
msgstr "Intet land"
#. js-lingui-id: pxvJ9B
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "No data containing errors"
msgstr ""
#. js-lingui-id: dihZwh
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "No data found"
msgstr ""
#. js-lingui-id: UwvrGq
#: src/pages/settings/SettingsWorkspaceMembers.tsx
msgid "No members"
@@ -2954,11 +2796,6 @@ msgstr "Ingen poster funnet"
#~ msgid "No Result"
#~ msgstr "No Result"
#. js-lingui-id: Ev2r9A
#: src/modules/spreadsheet-import/components/MatchColumnSelect.tsx
msgid "No results"
msgstr ""
#. js-lingui-id: MA3x23
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentWorkspaceMemberPickerDropdownContent.tsx
msgid "No Results"
@@ -2991,11 +2828,6 @@ msgstr "Ingen"
msgid "Norwegian"
msgstr "Norsk"
#. js-lingui-id: v3W9iu
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Not all columns matched"
msgstr ""
#. js-lingui-id: 0qBE9S
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownMenuContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownMenuContent.tsx
@@ -3291,11 +3123,6 @@ msgstr "Forhåndsvisning"
msgid "Privacy Policy"
msgstr "Personvernpolicy"
#. js-lingui-id: k1ifdL
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Processing..."
msgstr ""
#. js-lingui-id: vERlcd
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/SettingsProfile.tsx
@@ -3409,7 +3236,6 @@ msgstr "Last inn på nytt"
#. js-lingui-id: t/YqKh
#: src/modules/ui/input/components/ImageInput.tsx
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Remove"
msgstr "Fjern"
@@ -3483,15 +3309,10 @@ msgid "Restore records"
msgstr "Gjenopprett oppføringer"
#. js-lingui-id: kx0s+n
#: src/modules/command-menu/hooks/useCommandMenuSearchRecords.tsx
#: src/modules/command-menu/hooks/useSearchRecords.tsx
msgid "Results"
msgstr "Resultater"
#. js-lingui-id: BohSvm
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Review your import"
msgstr ""
#. js-lingui-id: 5dJK4M
#: src/pages/settings/roles/SettingsRoles.tsx
#: src/pages/settings/roles/SettingsRoles.tsx
@@ -3532,7 +3353,6 @@ msgstr "Skjema"
#. js-lingui-id: A1taO8
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownWorkspacesListComponents.tsx
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentWorkspaceMemberPickerDropdown.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
#: src/modules/navigation/components/MainNavigationDrawerItems.tsx
#: src/modules/command-menu/hooks/useOpenRecordsSearchPageInCommandMenu.ts
@@ -3580,7 +3400,6 @@ msgstr "Søk i et indeks..."
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownRecordGroupFieldsContent.tsx
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownFilterSelect.tsx
#: src/modules/object-record/advanced-filter/components/AdvancedFilterFieldSelectSearchInput.tsx
msgid "Search fields"
msgstr "Søk etter felter"
@@ -3643,19 +3462,11 @@ msgstr "Se slettede arbeidsflyter"
#. js-lingui-id: OpPn5Z
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
msgid "See runs"
msgstr "Se kjøringer"
#. js-lingui-id: gGEfj/
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
msgid "See version"
msgstr "Se versjon"
#. js-lingui-id: EtyY4+
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
@@ -3668,52 +3479,12 @@ msgstr "Se versjoner"
msgid "See versions history"
msgstr "Se historikk over versjoner"
#. js-lingui-id: qEKLJV
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
msgid "See workflow"
msgstr "Se arbeidsflyt"
#. js-lingui-id: XThiR2
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
msgid "See workflows"
msgstr "Se arbeidsflyter"
#. js-lingui-id: WZvt/6
#: src/modules/command-menu/hooks/useWorkflowCommandMenu.ts
#: src/modules/command-menu/hooks/__tests__/useWorkflowCommandMenu.test.tsx
msgid "Select Action"
msgstr "Velg handling"
#. js-lingui-id: hVPa4O
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/UnmatchColumn.tsx
msgid "Select an option"
msgstr ""
#. js-lingui-id: 21YIUv
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/TemplateColumn.tsx
msgid "Select column..."
msgstr ""
#. js-lingui-id: J6WI1B
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Select file"
msgstr ""
#. js-lingui-id: ljSvAs
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
msgid "Select header row"
msgstr ""
#. js-lingui-id: mWHn81
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Select the correct field for each column you'd like to import."
msgstr ""
#. js-lingui-id: pofGCP
#: src/modules/settings/data-model/fields/forms/boolean/components/SettingsDataModelFieldBooleanForm.tsx
msgid "Select the default value for this boolean field"
@@ -3724,11 +3495,6 @@ msgstr "Velg standardverdi for dette boolske feltet"
msgid "Select the events you wish to send to this endpoint"
msgstr "Velg hendelsene du ønsker å sende til dette sluttpunktet"
#. js-lingui-id: +xn1pe
#: src/modules/spreadsheet-import/steps/components/SelectSheetStep/SelectSheetStep.tsx
msgid "Select the sheet to use"
msgstr ""
#. js-lingui-id: AXTJAW
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Select your preferred language"
@@ -3833,16 +3599,6 @@ msgstr "Skal en endring av feltets etikett også endre API-navnet?"
msgid "Should changing an object's label also change the API?"
msgstr "Bør en endring av et objekts etikett også endre API-et?"
#. js-lingui-id: qi+g0a
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Show only rows with errors"
msgstr ""
#. js-lingui-id: MHlGJL
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Show unmatched columns"
msgstr ""
#. js-lingui-id: uVg8dY
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutOpenInContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -3901,11 +3657,6 @@ msgstr "Spansk"
msgid "SSO"
msgstr "SSO"
#. js-lingui-id: vlvAkg
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "SSO (SAML / OIDC)"
msgstr "SSO (SAML / OIDC)"
#. js-lingui-id: ErU1td
#: src/modules/views/view-picker/components/ViewPickerContentCreateMode.tsx
msgid "Stages"
@@ -3959,11 +3710,6 @@ msgstr "Emne og metadata vil bli delt med teamet ditt."
msgid "Subject, body and attachments will be shared with your team."
msgstr "Emne, kropp og vedlegg vil bli delt med teamet ditt."
#. js-lingui-id: hQRttt
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Submit"
msgstr ""
#. js-lingui-id: B5jRKH
#: src/pages/settings/SettingsBilling.tsx
msgid "Subscription has been switched {to}"
@@ -4000,11 +3746,6 @@ msgstr "Bytt {to}"
msgid "Switch billing {to}"
msgstr "Bytt fakturering {to}"
#. js-lingui-id: lz+f/E
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Switch to {alternatePlanName}"
msgstr "Bytt til {alternatePlanName}"
#. js-lingui-id: 5TRY4+
#: src/modules/settings/accounts/components/SettingsAccountsConnectedAccountsRowRightContainer.tsx
msgid "Sync failed"
@@ -4145,16 +3886,6 @@ msgstr "Tema"
msgid "Theme "
msgstr "Tema "
#. js-lingui-id: /cSDOy
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "There are required columns that are not matched or ignored. Do you want to continue?"
msgstr ""
#. js-lingui-id: luL9RX
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "There are still some rows that contain errors. Rows with errors will be ignored when submitting."
msgstr ""
#. js-lingui-id: ynfkhb
#: src/pages/auth/PasswordReset.tsx
msgid "There was an error while updating password."
@@ -4298,7 +4029,6 @@ msgstr "Ukjent feil"
#. js-lingui-id: GQCXQS
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Unlimited contacts"
msgstr "Ubegrenset kontakter"
@@ -4312,13 +4042,7 @@ msgstr "Oppdatert"
msgid "Upload"
msgstr "Last opp"
#. js-lingui-id: 7OP1Xi
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Upload .xlsx, .xls or .csv file"
msgstr ""
#. js-lingui-id: 2IXDgU
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Upload file"
msgstr "Last opp fil"
@@ -4395,11 +4119,6 @@ msgstr "Brukeren er ikke logget inn"
#~ msgid "Users"
#~ msgstr "Users"
#. js-lingui-id: MGeZsN
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
msgid "Validate data"
msgstr ""
#. js-lingui-id: fXVIZq
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
@@ -4614,11 +4333,6 @@ msgstr "Skriv en hemmelighet"
msgid "yes"
msgstr "ja"
#. js-lingui-id: qsAug0
#: src/modules/spreadsheet-import/components/MatchColumnSelect.tsx
msgid "You are already importing this column."
msgstr ""
#. js-lingui-id: MFDARJ
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateReadOnly.tsx
msgid "You are not allowed to create records for this object"
+10 -296
View File
@@ -87,11 +87,6 @@ msgstr "{aggregateLabel} z {fieldLabel}"
msgid "{apiKeyName} API Key"
msgstr "Klucz API {apiKeyName}"
#. js-lingui-id: zi5SHH
#: src/modules/object-record/record-index/components/RecordIndexPageHeader.tsx
msgid "{contextStoreNumberOfSelectedRecords} selected"
msgstr "{contextStoreNumberOfSelectedRecords} wybrano"
#. js-lingui-id: 6j5rE1
#: src/modules/action-menu/actions/record-agnostic-actions/run-workflow-actions/hooks/useRunWorkflowActions.tsx
#: src/modules/action-menu/actions/record-actions/workflow-run-record-actions/hooks/useWorkflowRunRecordActions.tsx
@@ -105,8 +100,8 @@ msgstr "{workspaceMemberName} zostanie odłączony od następującej roli:"
#. js-lingui-id: YT0WJ4
#: src/pages/onboarding/ChooseYourPlan.tsx
#~ msgid "1 000 workflow node executions"
#~ msgstr "1 000 workflow node executions"
msgid "1 000 workflow node executions"
msgstr "1 000 wykonanych operacji w węźle przepływu pracy"
#. js-lingui-id: vb5TwV
#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldSelect.tsx
@@ -119,11 +114,6 @@ msgstr "1. Wybierz typ pola"
msgid "1. Type"
msgstr "1. Typ"
#. js-lingui-id: AvXug3
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "10 000 workflow node executions"
msgstr "10 000 wykonanych operacji w węźle przepływu pracy"
#. js-lingui-id: 4EdXYs
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "12h ({hour12Label})"
@@ -140,11 +130,6 @@ msgstr "2. Skonfiguruj"
msgid "2. Configure field"
msgstr "2. Skonfiguruj pole"
#. js-lingui-id: kAtmAv
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "20 000 workflow node executions"
msgstr "20 000 wykonanych operacji w węźle przepływu pracy"
#. js-lingui-id: QsMprd
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "24h ({hour24Label})"
@@ -201,11 +186,6 @@ msgstr "Usuwanie konta"
msgid "Accounts"
msgstr "Konta"
#. js-lingui-id: bwRvnp
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
msgid "Action"
msgstr "Akcja"
#. js-lingui-id: 7L01XJ
#: src/modules/settings/roles/role-permissions/components/RolePermissionsSettingsTableHeader.tsx
#: src/modules/settings/roles/role-permissions/components/RolePermissionsObjectsTableHeader.tsx
@@ -252,7 +232,7 @@ msgid "Add Approved Access Domain"
msgstr "Dodaj zatwierdzoną domenę dostępu"
#. js-lingui-id: DpV70M
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionForm.tsx
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
msgid "Add Field"
msgstr "Dodaj pole"
@@ -453,7 +433,6 @@ msgstr ""
#. js-lingui-id: 0RqpZr
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "API & Webhooks"
msgstr "API i Webhooks"
@@ -537,28 +516,13 @@ msgstr "Czy na pewno chcesz zmienić okres rozliczeniowy?"
#. js-lingui-id: 8Y3Jbl
#: src/modules/action-menu/actions/record-actions/multiple-records/hooks/useDeleteMultipleRecordsAction.tsx
#~ msgid "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
#~ msgstr "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
#. js-lingui-id: 2BZAqa
#: src/modules/action-menu/actions/record-actions/multiple-records/hooks/useDeleteMultipleRecordsAction.tsx
msgid "Are you sure you want to delete these records? They can be recovered from the Command menu."
msgstr "Czy jesteś pewien, że chcesz usunąć te rekordy? Można je odzyskać z menu Command."
msgid "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
msgstr "Czy jesteś pewien, że chcesz usunąć te rekordy? Można je odzyskać z menu Command ({osControlSymbol} + K)."
#. js-lingui-id: Se0vJw
#: src/modules/action-menu/actions/record-actions/single-record/hooks/useDeleteSingleRecordAction.tsx
#~ msgid "Are you sure you want to delete this record? It can be recovered from the Command menu ({osControlSymbol} + K)."
#~ msgstr "Are you sure you want to delete this record? It can be recovered from the Command menu ({osControlSymbol} + K)."
#. js-lingui-id: yb2hF4
#: src/modules/action-menu/actions/record-actions/single-record/hooks/useDeleteSingleRecordAction.tsx
msgid "Are you sure you want to delete this record? It can be recovered from the Command menu."
msgstr "Czy jesteś pewien, że chcesz usunąć ten rekord? Można go odzyskać z menu Command."
#. js-lingui-id: rnCqBK
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Are you sure? Your current information will not be saved."
msgstr ""
msgid "Are you sure you want to delete this record? It can be recovered from the Command menu ({osControlSymbol} + K)."
msgstr "Czy jesteś pewien, że chcesz usunąć ten rekord? Można go odzyskać z menu Command ({osControlSymbol} + K)."
#. js-lingui-id: nYD/Cq
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
@@ -721,18 +685,10 @@ msgstr "Synchronizacja kalendarza"
msgid "Calendars"
msgstr "Kalendarze"
#. js-lingui-id: msssZq
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "Can't change API names for standard objects"
msgstr "Nie można zmienić nazw API dla standardowych obiektów"
#. js-lingui-id: dEgA5A
#: src/pages/auth/Authorize.tsx
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
msgid "Cancel"
msgstr "Anuluj"
@@ -839,11 +795,6 @@ msgstr "Zamknij"
msgid "Close command menu"
msgstr "Zamknij menu poleceń"
#. js-lingui-id: EWPtMO
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
msgid "Code"
msgstr "Kod"
#. js-lingui-id: H86f9p
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
@@ -856,11 +807,6 @@ msgstr "Zwiń"
msgid "Color code"
msgstr "Kod koloru"
#. js-lingui-id: 93hd3e
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Columns not matched:"
msgstr ""
#. js-lingui-id: NM9bMd
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
msgid "Compact view"
@@ -892,7 +838,6 @@ msgid "Configure your emails and calendar settings."
msgstr "Skonfiguruj swoje ustawienia e-mail i kalendarza."
#. js-lingui-id: 7VpPHA
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentConfirmationModal.tsx
msgid "Confirm"
msgstr "Potwierdź"
@@ -938,8 +883,6 @@ msgstr "Kontekst"
#: src/pages/onboarding/CreateWorkspace.tsx
#: src/pages/onboarding/CreateProfile.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx
msgid "Continue"
msgstr "Kontynuuj"
@@ -1004,11 +947,6 @@ msgstr "Skopiuj ten klucz, ponieważ nie będzie on widoczny ponownie"
msgid "Core"
msgstr "Trzon"
#. js-lingui-id: w5Stxm
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Correct the issues and fill the missing data."
msgstr ""
#. js-lingui-id: wBMjJ2
#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterMenuContent.tsx
#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterDropdownContent.tsx
@@ -1130,7 +1068,6 @@ msgstr "Zaktualizowano domenę niestandardową"
#. js-lingui-id: 8skTDV
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Custom objects"
msgstr "Obiekty niestandardowe"
@@ -1443,11 +1380,6 @@ msgstr "Wyświetl jako datę względną"
msgid "Display text on multiple lines"
msgstr "Wyświetlaj tekst na wielu liniach"
#. js-lingui-id: ji7sqw
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/TemplateColumn.tsx
msgid "Do not import"
msgstr ""
#. js-lingui-id: U9q4zF
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
msgid "Doesn't contain"
@@ -1491,11 +1423,6 @@ msgstr "Nie synchronizuj e-maili z team@ support@ noreply@..."
msgid "Download file"
msgstr "Pobierz plik"
#. js-lingui-id: 6D/BnN
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Drop file here..."
msgstr ""
#. js-lingui-id: KIjvtr
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
msgid "Dutch"
@@ -1553,7 +1480,6 @@ msgstr "Edytuj nazwę swojej subdomeny lub ustaw niestandardową domenę."
#: src/pages/settings/SettingsWorkspaceMembers.tsx
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/auth/PasswordReset.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentTableHeader.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
msgid "Email"
@@ -1571,7 +1497,6 @@ msgstr "E-mail nie może być pusty"
#. js-lingui-id: lfQsvW
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Email integration"
msgstr "Integracja emailowa"
@@ -1781,21 +1706,11 @@ msgstr "Wyklucz następujące osoby i domeny z synchronizacji mojej poczty. Rozm
msgid "Existing objects"
msgstr "Istniejące obiekty"
#. js-lingui-id: ydzS9x
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Exit"
msgstr ""
#. js-lingui-id: LFNXuj
#: src/modules/ui/layout/fullscreen/components/FullScreenContainer.tsx
msgid "Exit Full Screen"
msgstr "Zakończ tryb pełnoekranowy"
#. js-lingui-id: XB4onr
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Exit import flow"
msgstr ""
#. js-lingui-id: IZ4o2e
#: src/modules/navigation/components/AppNavigationDrawer.tsx
msgid "Exit Settings"
@@ -1981,11 +1896,6 @@ msgstr "Filtruj"
msgid "Filters"
msgstr "Filtry"
#. js-lingui-id: SNdnlf
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Finish flow with errors"
msgstr ""
#. js-lingui-id: USZ2N6
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
msgid "Finnish"
@@ -2034,7 +1944,6 @@ msgstr "z rocznego na miesięczny"
#. js-lingui-id: scmRyR
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Full access"
msgstr "Pełny dostęp"
@@ -2072,24 +1981,11 @@ msgstr "Weź swój abonament"
msgid "Global"
msgstr "Globalne"
#. js-lingui-id: iS69s6
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
msgid "Go to runs"
msgstr "Idź do uruchomień"
#. js-lingui-id: mT57+Q
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
msgid "Go to Settings"
msgstr "Przejdź do ustawień"
#. js-lingui-id: A5WHZY
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
msgid "Go to workflows"
msgstr "Przejdź do przepływów pracy"
#. js-lingui-id: hWp1MY
#: src/pages/settings/SettingsWorkspace.tsx
msgid "Grant Twenty support temporary access to your workspace so we can troubleshoot problems or recover content on your behalf. You can revoke access at any time."
@@ -2149,34 +2045,6 @@ msgstr "Ukryte pola"
msgid "Hide"
msgstr "Ukryj"
#. js-lingui-id: OlbYor
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
msgid "Hide deleted"
msgstr "Ukryj usunięte"
#. js-lingui-id: FHhlye
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
msgid "Hide deleted records"
msgstr "Ukryj usunięte rekordy"
#. js-lingui-id: 0dZtKR
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
msgid "Hide deleted runs"
msgstr "Ukryj usunięte uruchomienia"
#. js-lingui-id: Jc6FrI
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
msgid "Hide deleted versions"
msgstr "Ukryj usunięte wersje"
#. js-lingui-id: aOZAIB
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
msgid "Hide deleted workflows"
msgstr "Ukryj usunięte przepływy pracy"
#. js-lingui-id: HS8BG/
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownRecordGroupsContent.tsx
msgid "Hide empty groups"
@@ -2584,8 +2452,8 @@ msgstr "Wyloguj się"
#. js-lingui-id: nOhz3x
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
msgid "Logout"
msgstr "Wyloguj"
#~ msgid "Logout"
#~ msgstr "Logout"
#. js-lingui-id: PTozs8
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
@@ -2629,16 +2497,6 @@ msgstr "Zarządzaj swoją subskrypcją"
msgid "Mark as done"
msgstr "Oznacz jako wykonane"
#. js-lingui-id: 7h8ch8
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
msgid "Match columns"
msgstr ""
#. js-lingui-id: gDLior
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Match Columns"
msgstr ""
#. js-lingui-id: CK1KXz
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts
@@ -2867,12 +2725,6 @@ msgstr "Nowy dostawca SSO"
#~ msgid "New Webhook"
#~ msgstr "New Webhook"
#. js-lingui-id: AxNmtI
#: src/modules/spreadsheet-import/steps/components/SelectSheetStep/SelectSheetStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Next Step"
msgstr ""
#. js-lingui-id: OTe3RI
#: src/pages/settings/workspace/SettingsDomain.tsx
msgid "No change detected"
@@ -2888,16 +2740,6 @@ msgstr "Brak połączonego konta"
msgid "No country"
msgstr "Brak kraju"
#. js-lingui-id: pxvJ9B
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "No data containing errors"
msgstr ""
#. js-lingui-id: dihZwh
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "No data found"
msgstr ""
#. js-lingui-id: UwvrGq
#: src/pages/settings/SettingsWorkspaceMembers.tsx
msgid "No members"
@@ -2954,11 +2796,6 @@ msgstr "Nie znaleziono rekordów"
#~ msgid "No Result"
#~ msgstr "No Result"
#. js-lingui-id: Ev2r9A
#: src/modules/spreadsheet-import/components/MatchColumnSelect.tsx
msgid "No results"
msgstr ""
#. js-lingui-id: MA3x23
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentWorkspaceMemberPickerDropdownContent.tsx
msgid "No Results"
@@ -2991,11 +2828,6 @@ msgstr "Brak"
msgid "Norwegian"
msgstr "norweski"
#. js-lingui-id: v3W9iu
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Not all columns matched"
msgstr ""
#. js-lingui-id: 0qBE9S
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownMenuContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownMenuContent.tsx
@@ -3291,11 +3123,6 @@ msgstr "Podgląd"
msgid "Privacy Policy"
msgstr "Polityka prywatności"
#. js-lingui-id: k1ifdL
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Processing..."
msgstr ""
#. js-lingui-id: vERlcd
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/SettingsProfile.tsx
@@ -3409,7 +3236,6 @@ msgstr "Przeładuj"
#. js-lingui-id: t/YqKh
#: src/modules/ui/input/components/ImageInput.tsx
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Remove"
msgstr "Usuń"
@@ -3483,15 +3309,10 @@ msgid "Restore records"
msgstr "Przywróć wpisy"
#. js-lingui-id: kx0s+n
#: src/modules/command-menu/hooks/useCommandMenuSearchRecords.tsx
#: src/modules/command-menu/hooks/useSearchRecords.tsx
msgid "Results"
msgstr "Wyniki"
#. js-lingui-id: BohSvm
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Review your import"
msgstr ""
#. js-lingui-id: 5dJK4M
#: src/pages/settings/roles/SettingsRoles.tsx
#: src/pages/settings/roles/SettingsRoles.tsx
@@ -3532,7 +3353,6 @@ msgstr "Schemat"
#. js-lingui-id: A1taO8
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownWorkspacesListComponents.tsx
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentWorkspaceMemberPickerDropdown.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
#: src/modules/navigation/components/MainNavigationDrawerItems.tsx
#: src/modules/command-menu/hooks/useOpenRecordsSearchPageInCommandMenu.ts
@@ -3580,7 +3400,6 @@ msgstr "Wyszukaj indeks..."
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownRecordGroupFieldsContent.tsx
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownFilterSelect.tsx
#: src/modules/object-record/advanced-filter/components/AdvancedFilterFieldSelectSearchInput.tsx
msgid "Search fields"
msgstr "Szukaj w polach"
@@ -3643,19 +3462,11 @@ msgstr "Zobacz usunięte przepływy pracy"
#. js-lingui-id: OpPn5Z
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
msgid "See runs"
msgstr "Zobacz wykonania"
#. js-lingui-id: gGEfj/
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
msgid "See version"
msgstr "Zobacz wersję"
#. js-lingui-id: EtyY4+
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
@@ -3668,52 +3479,12 @@ msgstr "Zobacz wersje"
msgid "See versions history"
msgstr "Zobacz historię wersji"
#. js-lingui-id: qEKLJV
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
msgid "See workflow"
msgstr "Zobacz przepływ pracy"
#. js-lingui-id: XThiR2
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
msgid "See workflows"
msgstr "Zobacz przepływy pracy"
#. js-lingui-id: WZvt/6
#: src/modules/command-menu/hooks/useWorkflowCommandMenu.ts
#: src/modules/command-menu/hooks/__tests__/useWorkflowCommandMenu.test.tsx
msgid "Select Action"
msgstr "Wybierz akcję"
#. js-lingui-id: hVPa4O
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/UnmatchColumn.tsx
msgid "Select an option"
msgstr ""
#. js-lingui-id: 21YIUv
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/TemplateColumn.tsx
msgid "Select column..."
msgstr ""
#. js-lingui-id: J6WI1B
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Select file"
msgstr ""
#. js-lingui-id: ljSvAs
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
msgid "Select header row"
msgstr ""
#. js-lingui-id: mWHn81
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Select the correct field for each column you'd like to import."
msgstr ""
#. js-lingui-id: pofGCP
#: src/modules/settings/data-model/fields/forms/boolean/components/SettingsDataModelFieldBooleanForm.tsx
msgid "Select the default value for this boolean field"
@@ -3724,11 +3495,6 @@ msgstr "Wybierz domyślną wartość dla tego pola logicznego"
msgid "Select the events you wish to send to this endpoint"
msgstr "Wybierz zdarzenia, które chcesz wysłać do tego punktu końcowego"
#. js-lingui-id: +xn1pe
#: src/modules/spreadsheet-import/steps/components/SelectSheetStep/SelectSheetStep.tsx
msgid "Select the sheet to use"
msgstr ""
#. js-lingui-id: AXTJAW
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Select your preferred language"
@@ -3833,16 +3599,6 @@ msgstr "Czy zmiana etykiety pola powinna również zmienić nazwę API?"
msgid "Should changing an object's label also change the API?"
msgstr "Czy zmiana etykiety obiektu powinna także zmienić API?"
#. js-lingui-id: qi+g0a
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Show only rows with errors"
msgstr ""
#. js-lingui-id: MHlGJL
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Show unmatched columns"
msgstr ""
#. js-lingui-id: uVg8dY
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutOpenInContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -3901,11 +3657,6 @@ msgstr "Hiszpański"
msgid "SSO"
msgstr "SSO"
#. js-lingui-id: vlvAkg
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "SSO (SAML / OIDC)"
msgstr ""
#. js-lingui-id: ErU1td
#: src/modules/views/view-picker/components/ViewPickerContentCreateMode.tsx
msgid "Stages"
@@ -3959,11 +3710,6 @@ msgstr "Temat i metadane będą udostępniane twojemu zespołowi."
msgid "Subject, body and attachments will be shared with your team."
msgstr "Temat, treść i załączniki będą udostępniane twojemu zespołowi."
#. js-lingui-id: hQRttt
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Submit"
msgstr ""
#. js-lingui-id: B5jRKH
#: src/pages/settings/SettingsBilling.tsx
msgid "Subscription has been switched {to}"
@@ -4000,11 +3746,6 @@ msgstr "Zmień na {to}"
msgid "Switch billing {to}"
msgstr "Zmień billing na {to}"
#. js-lingui-id: lz+f/E
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Switch to {alternatePlanName}"
msgstr "Zmień na {alternatePlanName}"
#. js-lingui-id: 5TRY4+
#: src/modules/settings/accounts/components/SettingsAccountsConnectedAccountsRowRightContainer.tsx
msgid "Sync failed"
@@ -4145,16 +3886,6 @@ msgstr "Motyw"
msgid "Theme "
msgstr "Motyw "
#. js-lingui-id: /cSDOy
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "There are required columns that are not matched or ignored. Do you want to continue?"
msgstr ""
#. js-lingui-id: luL9RX
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "There are still some rows that contain errors. Rows with errors will be ignored when submitting."
msgstr ""
#. js-lingui-id: ynfkhb
#: src/pages/auth/PasswordReset.tsx
msgid "There was an error while updating password."
@@ -4298,7 +4029,6 @@ msgstr "Nieznany błąd"
#. js-lingui-id: GQCXQS
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Unlimited contacts"
msgstr "Nieograniczona liczba kontaktów"
@@ -4312,13 +4042,7 @@ msgstr "Zaktualizowano"
msgid "Upload"
msgstr "Prześlij"
#. js-lingui-id: 7OP1Xi
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Upload .xlsx, .xls or .csv file"
msgstr ""
#. js-lingui-id: 2IXDgU
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Upload file"
msgstr "Prześlij plik"
@@ -4395,11 +4119,6 @@ msgstr "Użytkownik nie jest zalogowany"
#~ msgid "Users"
#~ msgstr "Users"
#. js-lingui-id: MGeZsN
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
msgid "Validate data"
msgstr ""
#. js-lingui-id: fXVIZq
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
@@ -4614,11 +4333,6 @@ msgstr "Napisz sekret"
msgid "yes"
msgstr "tak"
#. js-lingui-id: qsAug0
#: src/modules/spreadsheet-import/components/MatchColumnSelect.tsx
msgid "You are already importing this column."
msgstr ""
#. js-lingui-id: MFDARJ
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateReadOnly.tsx
msgid "You are not allowed to create records for this object"
+8 -294
View File
@@ -79,11 +79,6 @@ msgstr ""
msgid "{apiKeyName} API Key"
msgstr ""
#. js-lingui-id: zi5SHH
#: src/modules/object-record/record-index/components/RecordIndexPageHeader.tsx
msgid "{contextStoreNumberOfSelectedRecords} selected"
msgstr ""
#. js-lingui-id: 6j5rE1
#: src/modules/action-menu/actions/record-agnostic-actions/run-workflow-actions/hooks/useRunWorkflowActions.tsx
#: src/modules/action-menu/actions/record-actions/workflow-run-record-actions/hooks/useWorkflowRunRecordActions.tsx
@@ -97,8 +92,8 @@ msgstr ""
#. js-lingui-id: YT0WJ4
#: src/pages/onboarding/ChooseYourPlan.tsx
#~ msgid "1 000 workflow node executions"
#~ msgstr ""
msgid "1 000 workflow node executions"
msgstr ""
#. js-lingui-id: vb5TwV
#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldSelect.tsx
@@ -111,11 +106,6 @@ msgstr ""
msgid "1. Type"
msgstr ""
#. js-lingui-id: AvXug3
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "10 000 workflow node executions"
msgstr ""
#. js-lingui-id: 4EdXYs
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "12h ({hour12Label})"
@@ -132,11 +122,6 @@ msgstr ""
msgid "2. Configure field"
msgstr ""
#. js-lingui-id: kAtmAv
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "20 000 workflow node executions"
msgstr ""
#. js-lingui-id: QsMprd
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "24h ({hour24Label})"
@@ -193,11 +178,6 @@ msgstr ""
msgid "Accounts"
msgstr ""
#. js-lingui-id: bwRvnp
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
msgid "Action"
msgstr ""
#. js-lingui-id: 7L01XJ
#: src/modules/settings/roles/role-permissions/components/RolePermissionsSettingsTableHeader.tsx
#: src/modules/settings/roles/role-permissions/components/RolePermissionsObjectsTableHeader.tsx
@@ -244,7 +224,7 @@ msgid "Add Approved Access Domain"
msgstr ""
#. js-lingui-id: DpV70M
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionForm.tsx
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
msgid "Add Field"
msgstr ""
@@ -445,7 +425,6 @@ msgstr ""
#. js-lingui-id: 0RqpZr
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "API & Webhooks"
msgstr ""
@@ -529,27 +508,12 @@ msgstr ""
#. js-lingui-id: 8Y3Jbl
#: src/modules/action-menu/actions/record-actions/multiple-records/hooks/useDeleteMultipleRecordsAction.tsx
#~ msgid "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
#~ msgstr ""
#. js-lingui-id: 2BZAqa
#: src/modules/action-menu/actions/record-actions/multiple-records/hooks/useDeleteMultipleRecordsAction.tsx
msgid "Are you sure you want to delete these records? They can be recovered from the Command menu."
msgid "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
msgstr ""
#. js-lingui-id: Se0vJw
#: src/modules/action-menu/actions/record-actions/single-record/hooks/useDeleteSingleRecordAction.tsx
#~ msgid "Are you sure you want to delete this record? It can be recovered from the Command menu ({osControlSymbol} + K)."
#~ msgstr ""
#. js-lingui-id: yb2hF4
#: src/modules/action-menu/actions/record-actions/single-record/hooks/useDeleteSingleRecordAction.tsx
msgid "Are you sure you want to delete this record? It can be recovered from the Command menu."
msgstr ""
#. js-lingui-id: rnCqBK
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Are you sure? Your current information will not be saved."
msgid "Are you sure you want to delete this record? It can be recovered from the Command menu ({osControlSymbol} + K)."
msgstr ""
#. js-lingui-id: nYD/Cq
@@ -713,18 +677,10 @@ msgstr ""
msgid "Calendars"
msgstr ""
#. js-lingui-id: msssZq
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "Can't change API names for standard objects"
msgstr ""
#. js-lingui-id: dEgA5A
#: src/pages/auth/Authorize.tsx
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
msgid "Cancel"
msgstr ""
@@ -831,11 +787,6 @@ msgstr ""
msgid "Close command menu"
msgstr ""
#. js-lingui-id: EWPtMO
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
msgid "Code"
msgstr ""
#. js-lingui-id: H86f9p
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
@@ -848,11 +799,6 @@ msgstr ""
msgid "Color code"
msgstr ""
#. js-lingui-id: 93hd3e
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Columns not matched:"
msgstr ""
#. js-lingui-id: NM9bMd
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
msgid "Compact view"
@@ -884,7 +830,6 @@ msgid "Configure your emails and calendar settings."
msgstr ""
#. js-lingui-id: 7VpPHA
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentConfirmationModal.tsx
msgid "Confirm"
msgstr ""
@@ -930,8 +875,6 @@ msgstr ""
#: src/pages/onboarding/CreateWorkspace.tsx
#: src/pages/onboarding/CreateProfile.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx
msgid "Continue"
msgstr ""
@@ -996,11 +939,6 @@ msgstr ""
msgid "Core"
msgstr ""
#. js-lingui-id: w5Stxm
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Correct the issues and fill the missing data."
msgstr ""
#. js-lingui-id: wBMjJ2
#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterMenuContent.tsx
#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterDropdownContent.tsx
@@ -1122,7 +1060,6 @@ msgstr ""
#. js-lingui-id: 8skTDV
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Custom objects"
msgstr ""
@@ -1435,11 +1372,6 @@ msgstr ""
msgid "Display text on multiple lines"
msgstr ""
#. js-lingui-id: ji7sqw
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/TemplateColumn.tsx
msgid "Do not import"
msgstr ""
#. js-lingui-id: U9q4zF
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
msgid "Doesn't contain"
@@ -1483,11 +1415,6 @@ msgstr ""
msgid "Download file"
msgstr ""
#. js-lingui-id: 6D/BnN
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Drop file here..."
msgstr ""
#. js-lingui-id: KIjvtr
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
msgid "Dutch"
@@ -1545,7 +1472,6 @@ msgstr ""
#: src/pages/settings/SettingsWorkspaceMembers.tsx
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/auth/PasswordReset.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentTableHeader.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
msgid "Email"
@@ -1563,7 +1489,6 @@ msgstr ""
#. js-lingui-id: lfQsvW
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Email integration"
msgstr ""
@@ -1773,21 +1698,11 @@ msgstr ""
msgid "Existing objects"
msgstr ""
#. js-lingui-id: ydzS9x
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Exit"
msgstr ""
#. js-lingui-id: LFNXuj
#: src/modules/ui/layout/fullscreen/components/FullScreenContainer.tsx
msgid "Exit Full Screen"
msgstr ""
#. js-lingui-id: XB4onr
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Exit import flow"
msgstr ""
#. js-lingui-id: IZ4o2e
#: src/modules/navigation/components/AppNavigationDrawer.tsx
msgid "Exit Settings"
@@ -1973,11 +1888,6 @@ msgstr ""
msgid "Filters"
msgstr ""
#. js-lingui-id: SNdnlf
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Finish flow with errors"
msgstr ""
#. js-lingui-id: USZ2N6
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
msgid "Finnish"
@@ -2026,7 +1936,6 @@ msgstr ""
#. js-lingui-id: scmRyR
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Full access"
msgstr ""
@@ -2064,24 +1973,11 @@ msgstr ""
msgid "Global"
msgstr ""
#. js-lingui-id: iS69s6
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
msgid "Go to runs"
msgstr ""
#. js-lingui-id: mT57+Q
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
msgid "Go to Settings"
msgstr ""
#. js-lingui-id: A5WHZY
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
msgid "Go to workflows"
msgstr ""
#. js-lingui-id: hWp1MY
#: src/pages/settings/SettingsWorkspace.tsx
msgid "Grant Twenty support temporary access to your workspace so we can troubleshoot problems or recover content on your behalf. You can revoke access at any time."
@@ -2141,34 +2037,6 @@ msgstr ""
msgid "Hide"
msgstr ""
#. js-lingui-id: OlbYor
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
msgid "Hide deleted"
msgstr ""
#. js-lingui-id: FHhlye
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
msgid "Hide deleted records"
msgstr ""
#. js-lingui-id: 0dZtKR
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
msgid "Hide deleted runs"
msgstr ""
#. js-lingui-id: Jc6FrI
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
msgid "Hide deleted versions"
msgstr ""
#. js-lingui-id: aOZAIB
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
msgid "Hide deleted workflows"
msgstr ""
#. js-lingui-id: HS8BG/
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownRecordGroupsContent.tsx
msgid "Hide empty groups"
@@ -2576,8 +2444,8 @@ msgstr ""
#. js-lingui-id: nOhz3x
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
msgid "Logout"
msgstr ""
#~ msgid "Logout"
#~ msgstr ""
#. js-lingui-id: PTozs8
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
@@ -2621,16 +2489,6 @@ msgstr ""
msgid "Mark as done"
msgstr ""
#. js-lingui-id: 7h8ch8
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
msgid "Match columns"
msgstr ""
#. js-lingui-id: gDLior
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Match Columns"
msgstr ""
#. js-lingui-id: CK1KXz
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts
@@ -2859,12 +2717,6 @@ msgstr ""
#~ msgid "New Webhook"
#~ msgstr ""
#. js-lingui-id: AxNmtI
#: src/modules/spreadsheet-import/steps/components/SelectSheetStep/SelectSheetStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Next Step"
msgstr ""
#. js-lingui-id: OTe3RI
#: src/pages/settings/workspace/SettingsDomain.tsx
msgid "No change detected"
@@ -2880,16 +2732,6 @@ msgstr ""
msgid "No country"
msgstr ""
#. js-lingui-id: pxvJ9B
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "No data containing errors"
msgstr ""
#. js-lingui-id: dihZwh
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "No data found"
msgstr ""
#. js-lingui-id: UwvrGq
#: src/pages/settings/SettingsWorkspaceMembers.tsx
msgid "No members"
@@ -2946,11 +2788,6 @@ msgstr ""
#~ msgid "No Result"
#~ msgstr ""
#. js-lingui-id: Ev2r9A
#: src/modules/spreadsheet-import/components/MatchColumnSelect.tsx
msgid "No results"
msgstr ""
#. js-lingui-id: MA3x23
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentWorkspaceMemberPickerDropdownContent.tsx
msgid "No Results"
@@ -2983,11 +2820,6 @@ msgstr ""
msgid "Norwegian"
msgstr ""
#. js-lingui-id: v3W9iu
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Not all columns matched"
msgstr ""
#. js-lingui-id: 0qBE9S
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownMenuContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownMenuContent.tsx
@@ -3283,11 +3115,6 @@ msgstr ""
msgid "Privacy Policy"
msgstr ""
#. js-lingui-id: k1ifdL
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Processing..."
msgstr ""
#. js-lingui-id: vERlcd
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/SettingsProfile.tsx
@@ -3401,7 +3228,6 @@ msgstr ""
#. js-lingui-id: t/YqKh
#: src/modules/ui/input/components/ImageInput.tsx
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Remove"
msgstr ""
@@ -3475,15 +3301,10 @@ msgid "Restore records"
msgstr ""
#. js-lingui-id: kx0s+n
#: src/modules/command-menu/hooks/useCommandMenuSearchRecords.tsx
#: src/modules/command-menu/hooks/useSearchRecords.tsx
msgid "Results"
msgstr ""
#. js-lingui-id: BohSvm
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Review your import"
msgstr ""
#. js-lingui-id: 5dJK4M
#: src/pages/settings/roles/SettingsRoles.tsx
#: src/pages/settings/roles/SettingsRoles.tsx
@@ -3524,7 +3345,6 @@ msgstr ""
#. js-lingui-id: A1taO8
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownWorkspacesListComponents.tsx
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentWorkspaceMemberPickerDropdown.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
#: src/modules/navigation/components/MainNavigationDrawerItems.tsx
#: src/modules/command-menu/hooks/useOpenRecordsSearchPageInCommandMenu.ts
@@ -3572,7 +3392,6 @@ msgstr ""
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownRecordGroupFieldsContent.tsx
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownFilterSelect.tsx
#: src/modules/object-record/advanced-filter/components/AdvancedFilterFieldSelectSearchInput.tsx
msgid "Search fields"
msgstr ""
@@ -3635,19 +3454,11 @@ msgstr ""
#. js-lingui-id: OpPn5Z
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
msgid "See runs"
msgstr ""
#. js-lingui-id: gGEfj/
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
msgid "See version"
msgstr ""
#. js-lingui-id: EtyY4+
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
@@ -3660,52 +3471,12 @@ msgstr ""
msgid "See versions history"
msgstr ""
#. js-lingui-id: qEKLJV
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
msgid "See workflow"
msgstr ""
#. js-lingui-id: XThiR2
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
msgid "See workflows"
msgstr ""
#. js-lingui-id: WZvt/6
#: src/modules/command-menu/hooks/useWorkflowCommandMenu.ts
#: src/modules/command-menu/hooks/__tests__/useWorkflowCommandMenu.test.tsx
msgid "Select Action"
msgstr ""
#. js-lingui-id: hVPa4O
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/UnmatchColumn.tsx
msgid "Select an option"
msgstr ""
#. js-lingui-id: 21YIUv
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/TemplateColumn.tsx
msgid "Select column..."
msgstr ""
#. js-lingui-id: J6WI1B
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Select file"
msgstr ""
#. js-lingui-id: ljSvAs
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
msgid "Select header row"
msgstr ""
#. js-lingui-id: mWHn81
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Select the correct field for each column you'd like to import."
msgstr ""
#. js-lingui-id: pofGCP
#: src/modules/settings/data-model/fields/forms/boolean/components/SettingsDataModelFieldBooleanForm.tsx
msgid "Select the default value for this boolean field"
@@ -3716,11 +3487,6 @@ msgstr ""
msgid "Select the events you wish to send to this endpoint"
msgstr ""
#. js-lingui-id: +xn1pe
#: src/modules/spreadsheet-import/steps/components/SelectSheetStep/SelectSheetStep.tsx
msgid "Select the sheet to use"
msgstr ""
#. js-lingui-id: AXTJAW
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Select your preferred language"
@@ -3825,16 +3591,6 @@ msgstr ""
msgid "Should changing an object's label also change the API?"
msgstr ""
#. js-lingui-id: qi+g0a
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Show only rows with errors"
msgstr ""
#. js-lingui-id: MHlGJL
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Show unmatched columns"
msgstr ""
#. js-lingui-id: uVg8dY
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutOpenInContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -3893,11 +3649,6 @@ msgstr ""
msgid "SSO"
msgstr ""
#. js-lingui-id: vlvAkg
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "SSO (SAML / OIDC)"
msgstr ""
#. js-lingui-id: ErU1td
#: src/modules/views/view-picker/components/ViewPickerContentCreateMode.tsx
msgid "Stages"
@@ -3951,11 +3702,6 @@ msgstr ""
msgid "Subject, body and attachments will be shared with your team."
msgstr ""
#. js-lingui-id: hQRttt
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Submit"
msgstr ""
#. js-lingui-id: B5jRKH
#: src/pages/settings/SettingsBilling.tsx
msgid "Subscription has been switched {to}"
@@ -3992,11 +3738,6 @@ msgstr ""
msgid "Switch billing {to}"
msgstr ""
#. js-lingui-id: lz+f/E
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Switch to {alternatePlanName}"
msgstr ""
#. js-lingui-id: 5TRY4+
#: src/modules/settings/accounts/components/SettingsAccountsConnectedAccountsRowRightContainer.tsx
msgid "Sync failed"
@@ -4137,16 +3878,6 @@ msgstr ""
msgid "Theme "
msgstr ""
#. js-lingui-id: /cSDOy
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "There are required columns that are not matched or ignored. Do you want to continue?"
msgstr ""
#. js-lingui-id: luL9RX
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "There are still some rows that contain errors. Rows with errors will be ignored when submitting."
msgstr ""
#. js-lingui-id: ynfkhb
#: src/pages/auth/PasswordReset.tsx
msgid "There was an error while updating password."
@@ -4290,7 +4021,6 @@ msgstr ""
#. js-lingui-id: GQCXQS
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Unlimited contacts"
msgstr ""
@@ -4304,13 +4034,7 @@ msgstr ""
msgid "Upload"
msgstr ""
#. js-lingui-id: 7OP1Xi
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Upload .xlsx, .xls or .csv file"
msgstr ""
#. js-lingui-id: 2IXDgU
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Upload file"
msgstr ""
@@ -4387,11 +4111,6 @@ msgstr ""
#~ msgid "Users"
#~ msgstr ""
#. js-lingui-id: MGeZsN
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
msgid "Validate data"
msgstr ""
#. js-lingui-id: fXVIZq
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
@@ -4606,11 +4325,6 @@ msgstr ""
msgid "yes"
msgstr ""
#. js-lingui-id: qsAug0
#: src/modules/spreadsheet-import/components/MatchColumnSelect.tsx
msgid "You are already importing this column."
msgstr ""
#. js-lingui-id: MFDARJ
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateReadOnly.tsx
msgid "You are not allowed to create records for this object"
+10 -296
View File
@@ -87,11 +87,6 @@ msgstr "{aggregateLabel} de {fieldLabel}"
msgid "{apiKeyName} API Key"
msgstr "Chave da API {apiKeyName}"
#. js-lingui-id: zi5SHH
#: src/modules/object-record/record-index/components/RecordIndexPageHeader.tsx
msgid "{contextStoreNumberOfSelectedRecords} selected"
msgstr "{contextStoreNumberOfSelectedRecords} selecionado"
#. js-lingui-id: 6j5rE1
#: src/modules/action-menu/actions/record-agnostic-actions/run-workflow-actions/hooks/useRunWorkflowActions.tsx
#: src/modules/action-menu/actions/record-actions/workflow-run-record-actions/hooks/useWorkflowRunRecordActions.tsx
@@ -105,8 +100,8 @@ msgstr "{workspaceMemberName} ser\\u00e1 desvinculado do seguinte cargo:"
#. js-lingui-id: YT0WJ4
#: src/pages/onboarding/ChooseYourPlan.tsx
#~ msgid "1 000 workflow node executions"
#~ msgstr "1 000 workflow node executions"
msgid "1 000 workflow node executions"
msgstr "1.000 execuções de nós de workflow"
#. js-lingui-id: vb5TwV
#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldSelect.tsx
@@ -119,11 +114,6 @@ msgstr "1. Selecione um tipo de campo"
msgid "1. Type"
msgstr "1. Tipo"
#. js-lingui-id: AvXug3
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "10 000 workflow node executions"
msgstr "10.000 execuções de nós de workflow"
#. js-lingui-id: 4EdXYs
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "12h ({hour12Label})"
@@ -140,11 +130,6 @@ msgstr "2. Configurar"
msgid "2. Configure field"
msgstr "2. Configurar campo"
#. js-lingui-id: kAtmAv
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "20 000 workflow node executions"
msgstr "20.000 execuções de nós de workflow"
#. js-lingui-id: QsMprd
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "24h ({hour24Label})"
@@ -201,11 +186,6 @@ msgstr "Exclusão de Conta"
msgid "Accounts"
msgstr "Contas"
#. js-lingui-id: bwRvnp
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
msgid "Action"
msgstr "Ação"
#. js-lingui-id: 7L01XJ
#: src/modules/settings/roles/role-permissions/components/RolePermissionsSettingsTableHeader.tsx
#: src/modules/settings/roles/role-permissions/components/RolePermissionsObjectsTableHeader.tsx
@@ -252,7 +232,7 @@ msgid "Add Approved Access Domain"
msgstr "Adicionar Domínio de Acesso Aprovado"
#. js-lingui-id: DpV70M
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionForm.tsx
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
msgid "Add Field"
msgstr "Adicionar Campo"
@@ -453,7 +433,6 @@ msgstr "API"
#. js-lingui-id: 0RqpZr
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "API & Webhooks"
msgstr "API e Webhooks"
@@ -537,28 +516,13 @@ msgstr "Tem certeza de que deseja alterar o intervalo de cobrança?"
#. js-lingui-id: 8Y3Jbl
#: src/modules/action-menu/actions/record-actions/multiple-records/hooks/useDeleteMultipleRecordsAction.tsx
#~ msgid "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
#~ msgstr "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
#. js-lingui-id: 2BZAqa
#: src/modules/action-menu/actions/record-actions/multiple-records/hooks/useDeleteMultipleRecordsAction.tsx
msgid "Are you sure you want to delete these records? They can be recovered from the Command menu."
msgstr "Tem certeza de que deseja excluir esses registros? Eles podem ser recuperados no menu Comando."
msgid "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
msgstr "Tem certeza de que deseja excluir esses registros? Eles podem ser recuperados no menu Comando ({osControlSymbol} + K)."
#. js-lingui-id: Se0vJw
#: src/modules/action-menu/actions/record-actions/single-record/hooks/useDeleteSingleRecordAction.tsx
#~ msgid "Are you sure you want to delete this record? It can be recovered from the Command menu ({osControlSymbol} + K)."
#~ msgstr "Are you sure you want to delete this record? It can be recovered from the Command menu ({osControlSymbol} + K)."
#. js-lingui-id: yb2hF4
#: src/modules/action-menu/actions/record-actions/single-record/hooks/useDeleteSingleRecordAction.tsx
msgid "Are you sure you want to delete this record? It can be recovered from the Command menu."
msgstr "Tem certeza de que deseja excluir este registro? Ele pode ser recuperado no menu Comando."
#. js-lingui-id: rnCqBK
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Are you sure? Your current information will not be saved."
msgstr ""
msgid "Are you sure you want to delete this record? It can be recovered from the Command menu ({osControlSymbol} + K)."
msgstr "Tem certeza de que deseja excluir este registro? Ele pode ser recuperado no menu Comando ({osControlSymbol} + K)."
#. js-lingui-id: nYD/Cq
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
@@ -721,18 +685,10 @@ msgstr "Sincronização de Calendário"
msgid "Calendars"
msgstr "Calendários"
#. js-lingui-id: msssZq
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "Can't change API names for standard objects"
msgstr "Não é possível alterar nomes de API para objetos padrão"
#. js-lingui-id: dEgA5A
#: src/pages/auth/Authorize.tsx
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
msgid "Cancel"
msgstr "Cancelar"
@@ -839,11 +795,6 @@ msgstr "Fechar"
msgid "Close command menu"
msgstr "Fechar menu de comandos"
#. js-lingui-id: EWPtMO
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
msgid "Code"
msgstr "Código"
#. js-lingui-id: H86f9p
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
@@ -856,11 +807,6 @@ msgstr "Colapsar"
msgid "Color code"
msgstr "Código de cor"
#. js-lingui-id: 93hd3e
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Columns not matched:"
msgstr ""
#. js-lingui-id: NM9bMd
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
msgid "Compact view"
@@ -892,7 +838,6 @@ msgid "Configure your emails and calendar settings."
msgstr "Configure suas configurações de e-mail e calendário."
#. js-lingui-id: 7VpPHA
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentConfirmationModal.tsx
msgid "Confirm"
msgstr "Confirmar"
@@ -938,8 +883,6 @@ msgstr "Contexto"
#: src/pages/onboarding/CreateWorkspace.tsx
#: src/pages/onboarding/CreateProfile.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx
msgid "Continue"
msgstr "Continuar"
@@ -1004,11 +947,6 @@ msgstr "Copie essa chave, pois ela não ficará visível novamente"
msgid "Core"
msgstr "Núcleo"
#. js-lingui-id: w5Stxm
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Correct the issues and fill the missing data."
msgstr ""
#. js-lingui-id: wBMjJ2
#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterMenuContent.tsx
#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterDropdownContent.tsx
@@ -1130,7 +1068,6 @@ msgstr "Domínio personalizado atualizado"
#. js-lingui-id: 8skTDV
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Custom objects"
msgstr "Objetos personalizados"
@@ -1443,11 +1380,6 @@ msgstr "Exibir como data relativa"
msgid "Display text on multiple lines"
msgstr "Exibir texto em várias linhas"
#. js-lingui-id: ji7sqw
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/TemplateColumn.tsx
msgid "Do not import"
msgstr ""
#. js-lingui-id: U9q4zF
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
msgid "Doesn't contain"
@@ -1491,11 +1423,6 @@ msgstr "Não sincronize e-mails de team@ support@ noreply@..."
msgid "Download file"
msgstr "Baixar arquivo"
#. js-lingui-id: 6D/BnN
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Drop file here..."
msgstr ""
#. js-lingui-id: KIjvtr
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
msgid "Dutch"
@@ -1553,7 +1480,6 @@ msgstr "Edite o nome do seu subdomínio ou defina um domínio personalizado."
#: src/pages/settings/SettingsWorkspaceMembers.tsx
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/auth/PasswordReset.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentTableHeader.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
msgid "Email"
@@ -1571,7 +1497,6 @@ msgstr "Email não pode estar vazio"
#. js-lingui-id: lfQsvW
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Email integration"
msgstr "Integração de e-mail"
@@ -1781,21 +1706,11 @@ msgstr "Excluir as seguintes pessoas e domínios da sincronização do meu e-mai
msgid "Existing objects"
msgstr "Objetos existentes"
#. js-lingui-id: ydzS9x
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Exit"
msgstr ""
#. js-lingui-id: LFNXuj
#: src/modules/ui/layout/fullscreen/components/FullScreenContainer.tsx
msgid "Exit Full Screen"
msgstr "Sair do modo tela cheia"
#. js-lingui-id: XB4onr
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Exit import flow"
msgstr ""
#. js-lingui-id: IZ4o2e
#: src/modules/navigation/components/AppNavigationDrawer.tsx
msgid "Exit Settings"
@@ -1981,11 +1896,6 @@ msgstr "Filtro"
msgid "Filters"
msgstr "Filtros"
#. js-lingui-id: SNdnlf
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Finish flow with errors"
msgstr ""
#. js-lingui-id: USZ2N6
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
msgid "Finnish"
@@ -2034,7 +1944,6 @@ msgstr "de anual para mensal"
#. js-lingui-id: scmRyR
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Full access"
msgstr "Acesso total"
@@ -2072,24 +1981,11 @@ msgstr "Faça sua assinatura"
msgid "Global"
msgstr "Global"
#. js-lingui-id: iS69s6
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
msgid "Go to runs"
msgstr "Ir para execuções"
#. js-lingui-id: mT57+Q
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
msgid "Go to Settings"
msgstr "Ir para as Configurações"
#. js-lingui-id: A5WHZY
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
msgid "Go to workflows"
msgstr "Ir para workflows"
#. js-lingui-id: hWp1MY
#: src/pages/settings/SettingsWorkspace.tsx
msgid "Grant Twenty support temporary access to your workspace so we can troubleshoot problems or recover content on your behalf. You can revoke access at any time."
@@ -2149,34 +2045,6 @@ msgstr "Campos Ocultos"
msgid "Hide"
msgstr "Ocultar"
#. js-lingui-id: OlbYor
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
msgid "Hide deleted"
msgstr "Ocultar excluídos"
#. js-lingui-id: FHhlye
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
msgid "Hide deleted records"
msgstr "Ocultar registros excluídos"
#. js-lingui-id: 0dZtKR
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
msgid "Hide deleted runs"
msgstr "Ocultar execuções excluídas"
#. js-lingui-id: Jc6FrI
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
msgid "Hide deleted versions"
msgstr "Ocultar versões excluídas"
#. js-lingui-id: aOZAIB
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
msgid "Hide deleted workflows"
msgstr "Ocultar workflows excluídos"
#. js-lingui-id: HS8BG/
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownRecordGroupsContent.tsx
msgid "Hide empty groups"
@@ -2584,8 +2452,8 @@ msgstr "Sair"
#. js-lingui-id: nOhz3x
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
msgid "Logout"
msgstr "Sair"
#~ msgid "Logout"
#~ msgstr "Logout"
#. js-lingui-id: PTozs8
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
@@ -2629,16 +2497,6 @@ msgstr "Gerenciar sua assinatura"
msgid "Mark as done"
msgstr "Marcar como concluído"
#. js-lingui-id: 7h8ch8
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
msgid "Match columns"
msgstr ""
#. js-lingui-id: gDLior
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Match Columns"
msgstr ""
#. js-lingui-id: CK1KXz
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts
@@ -2867,12 +2725,6 @@ msgstr "Novo provedor SSO"
#~ msgid "New Webhook"
#~ msgstr "New Webhook"
#. js-lingui-id: AxNmtI
#: src/modules/spreadsheet-import/steps/components/SelectSheetStep/SelectSheetStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Next Step"
msgstr ""
#. js-lingui-id: OTe3RI
#: src/pages/settings/workspace/SettingsDomain.tsx
msgid "No change detected"
@@ -2888,16 +2740,6 @@ msgstr "Nenhuma conta conectada"
msgid "No country"
msgstr "Sem país"
#. js-lingui-id: pxvJ9B
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "No data containing errors"
msgstr ""
#. js-lingui-id: dihZwh
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "No data found"
msgstr ""
#. js-lingui-id: UwvrGq
#: src/pages/settings/SettingsWorkspaceMembers.tsx
msgid "No members"
@@ -2954,11 +2796,6 @@ msgstr "Nenhum registro encontrado"
#~ msgid "No Result"
#~ msgstr "No Result"
#. js-lingui-id: Ev2r9A
#: src/modules/spreadsheet-import/components/MatchColumnSelect.tsx
msgid "No results"
msgstr ""
#. js-lingui-id: MA3x23
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentWorkspaceMemberPickerDropdownContent.tsx
msgid "No Results"
@@ -2991,11 +2828,6 @@ msgstr "Nenhum"
msgid "Norwegian"
msgstr "Noruegu\\u00eas"
#. js-lingui-id: v3W9iu
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Not all columns matched"
msgstr ""
#. js-lingui-id: 0qBE9S
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownMenuContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownMenuContent.tsx
@@ -3291,11 +3123,6 @@ msgstr "Prévia"
msgid "Privacy Policy"
msgstr "Política de privacidade"
#. js-lingui-id: k1ifdL
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Processing..."
msgstr ""
#. js-lingui-id: vERlcd
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/SettingsProfile.tsx
@@ -3409,7 +3236,6 @@ msgstr "Recarregar"
#. js-lingui-id: t/YqKh
#: src/modules/ui/input/components/ImageInput.tsx
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Remove"
msgstr "Remover"
@@ -3483,15 +3309,10 @@ msgid "Restore records"
msgstr "Restaurar registros"
#. js-lingui-id: kx0s+n
#: src/modules/command-menu/hooks/useCommandMenuSearchRecords.tsx
#: src/modules/command-menu/hooks/useSearchRecords.tsx
msgid "Results"
msgstr "Resultados"
#. js-lingui-id: BohSvm
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Review your import"
msgstr ""
#. js-lingui-id: 5dJK4M
#: src/pages/settings/roles/SettingsRoles.tsx
#: src/pages/settings/roles/SettingsRoles.tsx
@@ -3532,7 +3353,6 @@ msgstr "Esquema"
#. js-lingui-id: A1taO8
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownWorkspacesListComponents.tsx
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentWorkspaceMemberPickerDropdown.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
#: src/modules/navigation/components/MainNavigationDrawerItems.tsx
#: src/modules/command-menu/hooks/useOpenRecordsSearchPageInCommandMenu.ts
@@ -3580,7 +3400,6 @@ msgstr "Pesquisar um índice..."
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownRecordGroupFieldsContent.tsx
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownFilterSelect.tsx
#: src/modules/object-record/advanced-filter/components/AdvancedFilterFieldSelectSearchInput.tsx
msgid "Search fields"
msgstr "Pesquisar campos"
@@ -3643,19 +3462,11 @@ msgstr "Ver workflows excluídos"
#. js-lingui-id: OpPn5Z
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
msgid "See runs"
msgstr "Ver execuções"
#. js-lingui-id: gGEfj/
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
msgid "See version"
msgstr "Ver versão"
#. js-lingui-id: EtyY4+
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
@@ -3668,52 +3479,12 @@ msgstr "Ver versões"
msgid "See versions history"
msgstr "Ver histórico de versões"
#. js-lingui-id: qEKLJV
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
msgid "See workflow"
msgstr "Ver workflow"
#. js-lingui-id: XThiR2
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
msgid "See workflows"
msgstr "Ver workflows"
#. js-lingui-id: WZvt/6
#: src/modules/command-menu/hooks/useWorkflowCommandMenu.ts
#: src/modules/command-menu/hooks/__tests__/useWorkflowCommandMenu.test.tsx
msgid "Select Action"
msgstr "Selecionar Ação"
#. js-lingui-id: hVPa4O
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/UnmatchColumn.tsx
msgid "Select an option"
msgstr ""
#. js-lingui-id: 21YIUv
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/TemplateColumn.tsx
msgid "Select column..."
msgstr ""
#. js-lingui-id: J6WI1B
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Select file"
msgstr ""
#. js-lingui-id: ljSvAs
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
msgid "Select header row"
msgstr ""
#. js-lingui-id: mWHn81
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Select the correct field for each column you'd like to import."
msgstr ""
#. js-lingui-id: pofGCP
#: src/modules/settings/data-model/fields/forms/boolean/components/SettingsDataModelFieldBooleanForm.tsx
msgid "Select the default value for this boolean field"
@@ -3724,11 +3495,6 @@ msgstr "Selecione o valor padrão para este campo booleano"
msgid "Select the events you wish to send to this endpoint"
msgstr "Selecione os eventos que deseja enviar para este endpoint"
#. js-lingui-id: +xn1pe
#: src/modules/spreadsheet-import/steps/components/SelectSheetStep/SelectSheetStep.tsx
msgid "Select the sheet to use"
msgstr ""
#. js-lingui-id: AXTJAW
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Select your preferred language"
@@ -3833,16 +3599,6 @@ msgstr "Alterar o rótulo de um campo também deve alterar o nome da API?"
msgid "Should changing an object's label also change the API?"
msgstr "Alterar o rótulo de um objeto também deve alterar a API?"
#. js-lingui-id: qi+g0a
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Show only rows with errors"
msgstr ""
#. js-lingui-id: MHlGJL
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Show unmatched columns"
msgstr ""
#. js-lingui-id: uVg8dY
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutOpenInContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -3901,11 +3657,6 @@ msgstr "Espanhol"
msgid "SSO"
msgstr "SSO"
#. js-lingui-id: vlvAkg
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "SSO (SAML / OIDC)"
msgstr "SSO (SAML / OIDC)"
#. js-lingui-id: ErU1td
#: src/modules/views/view-picker/components/ViewPickerContentCreateMode.tsx
msgid "Stages"
@@ -3959,11 +3710,6 @@ msgstr "Assunto e metadados serão compartilhados com sua equipe."
msgid "Subject, body and attachments will be shared with your team."
msgstr "Assunto, corpo e anexos serão compartilhados com sua equipe."
#. js-lingui-id: hQRttt
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Submit"
msgstr ""
#. js-lingui-id: B5jRKH
#: src/pages/settings/SettingsBilling.tsx
msgid "Subscription has been switched {to}"
@@ -4000,11 +3746,6 @@ msgstr "Alterar para {to}"
msgid "Switch billing {to}"
msgstr "Alterar faturamento para {to}"
#. js-lingui-id: lz+f/E
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Switch to {alternatePlanName}"
msgstr "Alterar para {alternatePlanName}"
#. js-lingui-id: 5TRY4+
#: src/modules/settings/accounts/components/SettingsAccountsConnectedAccountsRowRightContainer.tsx
msgid "Sync failed"
@@ -4145,16 +3886,6 @@ msgstr "Tema"
msgid "Theme "
msgstr "Tema "
#. js-lingui-id: /cSDOy
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "There are required columns that are not matched or ignored. Do you want to continue?"
msgstr ""
#. js-lingui-id: luL9RX
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "There are still some rows that contain errors. Rows with errors will be ignored when submitting."
msgstr ""
#. js-lingui-id: ynfkhb
#: src/pages/auth/PasswordReset.tsx
msgid "There was an error while updating password."
@@ -4298,7 +4029,6 @@ msgstr "Erro desconhecido"
#. js-lingui-id: GQCXQS
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Unlimited contacts"
msgstr "Contatos ilimitados"
@@ -4312,13 +4042,7 @@ msgstr "Atualizado"
msgid "Upload"
msgstr "Carregar"
#. js-lingui-id: 7OP1Xi
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Upload .xlsx, .xls or .csv file"
msgstr ""
#. js-lingui-id: 2IXDgU
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Upload file"
msgstr "Fazer upload de arquivo"
@@ -4395,11 +4119,6 @@ msgstr "O usuário não está conectado"
#~ msgid "Users"
#~ msgstr "Users"
#. js-lingui-id: MGeZsN
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
msgid "Validate data"
msgstr ""
#. js-lingui-id: fXVIZq
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
@@ -4614,11 +4333,6 @@ msgstr "Escreva um segredo"
msgid "yes"
msgstr "sim"
#. js-lingui-id: qsAug0
#: src/modules/spreadsheet-import/components/MatchColumnSelect.tsx
msgid "You are already importing this column."
msgstr ""
#. js-lingui-id: MFDARJ
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateReadOnly.tsx
msgid "You are not allowed to create records for this object"
+10 -296
View File
@@ -87,11 +87,6 @@ msgstr "{aggregateLabel} de {fieldLabel}"
msgid "{apiKeyName} API Key"
msgstr "{apiKeyName} Chave API"
#. js-lingui-id: zi5SHH
#: src/modules/object-record/record-index/components/RecordIndexPageHeader.tsx
msgid "{contextStoreNumberOfSelectedRecords} selected"
msgstr "{contextStoreNumberOfSelectedRecords} selecionado"
#. js-lingui-id: 6j5rE1
#: src/modules/action-menu/actions/record-agnostic-actions/run-workflow-actions/hooks/useRunWorkflowActions.tsx
#: src/modules/action-menu/actions/record-actions/workflow-run-record-actions/hooks/useWorkflowRunRecordActions.tsx
@@ -105,8 +100,8 @@ msgstr "{workspaceMemberName} ser\\u00e1 desvinculado do seguinte cargo:"
#. js-lingui-id: YT0WJ4
#: src/pages/onboarding/ChooseYourPlan.tsx
#~ msgid "1 000 workflow node executions"
#~ msgstr "1 000 workflow node executions"
msgid "1 000 workflow node executions"
msgstr "1 000 execuções de nós de workflow"
#. js-lingui-id: vb5TwV
#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldSelect.tsx
@@ -119,11 +114,6 @@ msgstr "1. Selecionar um tipo de campo"
msgid "1. Type"
msgstr "1. Tipo"
#. js-lingui-id: AvXug3
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "10 000 workflow node executions"
msgstr "10 000 execuções de nós de workflow"
#. js-lingui-id: 4EdXYs
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "12h ({hour12Label})"
@@ -140,11 +130,6 @@ msgstr "2. Configurar"
msgid "2. Configure field"
msgstr "2. Configurar campo"
#. js-lingui-id: kAtmAv
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "20 000 workflow node executions"
msgstr "20 000 execuções de nós de workflow"
#. js-lingui-id: QsMprd
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "24h ({hour24Label})"
@@ -201,11 +186,6 @@ msgstr "Eliminação de conta"
msgid "Accounts"
msgstr "Contas"
#. js-lingui-id: bwRvnp
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
msgid "Action"
msgstr "Ação"
#. js-lingui-id: 7L01XJ
#: src/modules/settings/roles/role-permissions/components/RolePermissionsSettingsTableHeader.tsx
#: src/modules/settings/roles/role-permissions/components/RolePermissionsObjectsTableHeader.tsx
@@ -252,7 +232,7 @@ msgid "Add Approved Access Domain"
msgstr "Adicionar Domínio de Acesso Aprovado"
#. js-lingui-id: DpV70M
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionForm.tsx
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
msgid "Add Field"
msgstr "Adicionar Campo"
@@ -453,7 +433,6 @@ msgstr "\"API\""
#. js-lingui-id: 0RqpZr
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "API & Webhooks"
msgstr "API e Webhooks"
@@ -537,28 +516,13 @@ msgstr "Tem a certeza de que pretende alterar o seu intervalo de faturação?"
#. js-lingui-id: 8Y3Jbl
#: src/modules/action-menu/actions/record-actions/multiple-records/hooks/useDeleteMultipleRecordsAction.tsx
#~ msgid "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
#~ msgstr "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
#. js-lingui-id: 2BZAqa
#: src/modules/action-menu/actions/record-actions/multiple-records/hooks/useDeleteMultipleRecordsAction.tsx
msgid "Are you sure you want to delete these records? They can be recovered from the Command menu."
msgstr "Tem certeza de que deseja excluir esses registros? Eles podem ser recuperados do menu Comando."
msgid "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
msgstr "Tem certeza de que deseja excluir esses registros? Eles podem ser recuperados do menu Comando ({osControlSymbol} + K)."
#. js-lingui-id: Se0vJw
#: src/modules/action-menu/actions/record-actions/single-record/hooks/useDeleteSingleRecordAction.tsx
#~ msgid "Are you sure you want to delete this record? It can be recovered from the Command menu ({osControlSymbol} + K)."
#~ msgstr "Are you sure you want to delete this record? It can be recovered from the Command menu ({osControlSymbol} + K)."
#. js-lingui-id: yb2hF4
#: src/modules/action-menu/actions/record-actions/single-record/hooks/useDeleteSingleRecordAction.tsx
msgid "Are you sure you want to delete this record? It can be recovered from the Command menu."
msgstr "Tem certeza de que deseja excluir este registro? Ele pode ser recuperado do menu Comando."
#. js-lingui-id: rnCqBK
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Are you sure? Your current information will not be saved."
msgstr ""
msgid "Are you sure you want to delete this record? It can be recovered from the Command menu ({osControlSymbol} + K)."
msgstr "Tem certeza de que deseja excluir este registro? Ele pode ser recuperado do menu Comando ({osControlSymbol} + K)."
#. js-lingui-id: nYD/Cq
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
@@ -721,18 +685,10 @@ msgstr "Sincronização de Calendário"
msgid "Calendars"
msgstr "Calendários"
#. js-lingui-id: msssZq
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "Can't change API names for standard objects"
msgstr "Não é possível alterar os nomes de API para objetos padrão"
#. js-lingui-id: dEgA5A
#: src/pages/auth/Authorize.tsx
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
msgid "Cancel"
msgstr "Cancelar"
@@ -839,11 +795,6 @@ msgstr "Fechar"
msgid "Close command menu"
msgstr "Fechar menu de comandos"
#. js-lingui-id: EWPtMO
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
msgid "Code"
msgstr "Código"
#. js-lingui-id: H86f9p
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
@@ -856,11 +807,6 @@ msgstr "Colapsar"
msgid "Color code"
msgstr "Código de cor"
#. js-lingui-id: 93hd3e
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Columns not matched:"
msgstr ""
#. js-lingui-id: NM9bMd
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
msgid "Compact view"
@@ -892,7 +838,6 @@ msgid "Configure your emails and calendar settings."
msgstr "Configure as definições de e-mail e calendário."
#. js-lingui-id: 7VpPHA
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentConfirmationModal.tsx
msgid "Confirm"
msgstr "Confirmar"
@@ -938,8 +883,6 @@ msgstr "Contexto"
#: src/pages/onboarding/CreateWorkspace.tsx
#: src/pages/onboarding/CreateProfile.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx
msgid "Continue"
msgstr "Continuar"
@@ -1004,11 +947,6 @@ msgstr "Copiar esta chave, pois não voltará a ser visível"
msgid "Core"
msgstr "Núcleo"
#. js-lingui-id: w5Stxm
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Correct the issues and fill the missing data."
msgstr ""
#. js-lingui-id: wBMjJ2
#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterMenuContent.tsx
#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterDropdownContent.tsx
@@ -1130,7 +1068,6 @@ msgstr "Domínio personalizado atualizado"
#. js-lingui-id: 8skTDV
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Custom objects"
msgstr "Objetos personalizados"
@@ -1443,11 +1380,6 @@ msgstr "Exibir como data relativa"
msgid "Display text on multiple lines"
msgstr "Exibir texto em várias linhas"
#. js-lingui-id: ji7sqw
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/TemplateColumn.tsx
msgid "Do not import"
msgstr ""
#. js-lingui-id: U9q4zF
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
msgid "Doesn't contain"
@@ -1491,11 +1423,6 @@ msgstr "Não sincronizar emails de team@ support@ noreply@..."
msgid "Download file"
msgstr "Baixar arquivo"
#. js-lingui-id: 6D/BnN
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Drop file here..."
msgstr ""
#. js-lingui-id: KIjvtr
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
msgid "Dutch"
@@ -1553,7 +1480,6 @@ msgstr "Edite o nome do seu subdomínio ou defina um domínio personalizado."
#: src/pages/settings/SettingsWorkspaceMembers.tsx
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/auth/PasswordReset.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentTableHeader.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
msgid "Email"
@@ -1571,7 +1497,6 @@ msgstr "O e-mail não pode estar vazio"
#. js-lingui-id: lfQsvW
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Email integration"
msgstr "Integração de e-mail"
@@ -1781,21 +1706,11 @@ msgstr "Excluir as seguintes pessoas e domínios da minha sincronização de e-m
msgid "Existing objects"
msgstr "Objetos existentes"
#. js-lingui-id: ydzS9x
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Exit"
msgstr ""
#. js-lingui-id: LFNXuj
#: src/modules/ui/layout/fullscreen/components/FullScreenContainer.tsx
msgid "Exit Full Screen"
msgstr "Sair do modo de tela cheia"
#. js-lingui-id: XB4onr
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Exit import flow"
msgstr ""
#. js-lingui-id: IZ4o2e
#: src/modules/navigation/components/AppNavigationDrawer.tsx
msgid "Exit Settings"
@@ -1981,11 +1896,6 @@ msgstr "Filtro"
msgid "Filters"
msgstr "Filtros"
#. js-lingui-id: SNdnlf
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Finish flow with errors"
msgstr ""
#. js-lingui-id: USZ2N6
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
msgid "Finnish"
@@ -2034,7 +1944,6 @@ msgstr "de anual para mensal"
#. js-lingui-id: scmRyR
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Full access"
msgstr "Acesso total"
@@ -2072,24 +1981,11 @@ msgstr "Obtenha a sua subscrição"
msgid "Global"
msgstr "Global"
#. js-lingui-id: iS69s6
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
msgid "Go to runs"
msgstr "Ir para execuções"
#. js-lingui-id: mT57+Q
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
msgid "Go to Settings"
msgstr "Ir para Configurações"
#. js-lingui-id: A5WHZY
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
msgid "Go to workflows"
msgstr "Ir para workflows"
#. js-lingui-id: hWp1MY
#: src/pages/settings/SettingsWorkspace.tsx
msgid "Grant Twenty support temporary access to your workspace so we can troubleshoot problems or recover content on your behalf. You can revoke access at any time."
@@ -2149,34 +2045,6 @@ msgstr "Campos Ocultos"
msgid "Hide"
msgstr "Esconder"
#. js-lingui-id: OlbYor
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
msgid "Hide deleted"
msgstr "Ocultar eliminados"
#. js-lingui-id: FHhlye
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
msgid "Hide deleted records"
msgstr "Ocultar registos eliminados"
#. js-lingui-id: 0dZtKR
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
msgid "Hide deleted runs"
msgstr "Ocultar execuções eliminadas"
#. js-lingui-id: Jc6FrI
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
msgid "Hide deleted versions"
msgstr "Ocultar versões eliminadas"
#. js-lingui-id: aOZAIB
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
msgid "Hide deleted workflows"
msgstr "Ocultar workflows eliminados"
#. js-lingui-id: HS8BG/
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownRecordGroupsContent.tsx
msgid "Hide empty groups"
@@ -2584,8 +2452,8 @@ msgstr "Terminar sessão"
#. js-lingui-id: nOhz3x
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
msgid "Logout"
msgstr "Terminar sessão"
#~ msgid "Logout"
#~ msgstr "Logout"
#. js-lingui-id: PTozs8
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
@@ -2629,16 +2497,6 @@ msgstr "Gerir a sua subscrição"
msgid "Mark as done"
msgstr "Marcar como concluído"
#. js-lingui-id: 7h8ch8
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
msgid "Match columns"
msgstr ""
#. js-lingui-id: gDLior
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Match Columns"
msgstr ""
#. js-lingui-id: CK1KXz
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts
@@ -2867,12 +2725,6 @@ msgstr "Novo fornecedor SSO"
#~ msgid "New Webhook"
#~ msgstr "New Webhook"
#. js-lingui-id: AxNmtI
#: src/modules/spreadsheet-import/steps/components/SelectSheetStep/SelectSheetStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Next Step"
msgstr ""
#. js-lingui-id: OTe3RI
#: src/pages/settings/workspace/SettingsDomain.tsx
msgid "No change detected"
@@ -2888,16 +2740,6 @@ msgstr "Nenhuma conta conectada"
msgid "No country"
msgstr "Sem país"
#. js-lingui-id: pxvJ9B
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "No data containing errors"
msgstr ""
#. js-lingui-id: dihZwh
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "No data found"
msgstr ""
#. js-lingui-id: UwvrGq
#: src/pages/settings/SettingsWorkspaceMembers.tsx
msgid "No members"
@@ -2954,11 +2796,6 @@ msgstr "Nenhum registro encontrado"
#~ msgid "No Result"
#~ msgstr "No Result"
#. js-lingui-id: Ev2r9A
#: src/modules/spreadsheet-import/components/MatchColumnSelect.tsx
msgid "No results"
msgstr ""
#. js-lingui-id: MA3x23
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentWorkspaceMemberPickerDropdownContent.tsx
msgid "No Results"
@@ -2991,11 +2828,6 @@ msgstr "Nenhum"
msgid "Norwegian"
msgstr "Noruegu\\u00eas"
#. js-lingui-id: v3W9iu
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Not all columns matched"
msgstr ""
#. js-lingui-id: 0qBE9S
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownMenuContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownMenuContent.tsx
@@ -3291,11 +3123,6 @@ msgstr "Pré-visualização"
msgid "Privacy Policy"
msgstr "Política de Privacidade"
#. js-lingui-id: k1ifdL
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Processing..."
msgstr ""
#. js-lingui-id: vERlcd
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/SettingsProfile.tsx
@@ -3409,7 +3236,6 @@ msgstr "Recarregar"
#. js-lingui-id: t/YqKh
#: src/modules/ui/input/components/ImageInput.tsx
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Remove"
msgstr "Remover"
@@ -3483,15 +3309,10 @@ msgid "Restore records"
msgstr "Restaurar registos"
#. js-lingui-id: kx0s+n
#: src/modules/command-menu/hooks/useCommandMenuSearchRecords.tsx
#: src/modules/command-menu/hooks/useSearchRecords.tsx
msgid "Results"
msgstr "Resultados"
#. js-lingui-id: BohSvm
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Review your import"
msgstr ""
#. js-lingui-id: 5dJK4M
#: src/pages/settings/roles/SettingsRoles.tsx
#: src/pages/settings/roles/SettingsRoles.tsx
@@ -3532,7 +3353,6 @@ msgstr "Esquema"
#. js-lingui-id: A1taO8
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownWorkspacesListComponents.tsx
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentWorkspaceMemberPickerDropdown.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
#: src/modules/navigation/components/MainNavigationDrawerItems.tsx
#: src/modules/command-menu/hooks/useOpenRecordsSearchPageInCommandMenu.ts
@@ -3580,7 +3400,6 @@ msgstr "Pesquisar um índice..."
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownRecordGroupFieldsContent.tsx
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownFilterSelect.tsx
#: src/modules/object-record/advanced-filter/components/AdvancedFilterFieldSelectSearchInput.tsx
msgid "Search fields"
msgstr "Pesquisar campos"
@@ -3643,19 +3462,11 @@ msgstr "Ver workflows eliminados"
#. js-lingui-id: OpPn5Z
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
msgid "See runs"
msgstr "Ver execuções"
#. js-lingui-id: gGEfj/
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
msgid "See version"
msgstr "Ver versão"
#. js-lingui-id: EtyY4+
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
@@ -3668,52 +3479,12 @@ msgstr "Ver versões"
msgid "See versions history"
msgstr "Ver histórico de versões"
#. js-lingui-id: qEKLJV
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
msgid "See workflow"
msgstr "Ver workflow"
#. js-lingui-id: XThiR2
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
msgid "See workflows"
msgstr "Ver workflows"
#. js-lingui-id: WZvt/6
#: src/modules/command-menu/hooks/useWorkflowCommandMenu.ts
#: src/modules/command-menu/hooks/__tests__/useWorkflowCommandMenu.test.tsx
msgid "Select Action"
msgstr "Selecionar Ação"
#. js-lingui-id: hVPa4O
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/UnmatchColumn.tsx
msgid "Select an option"
msgstr ""
#. js-lingui-id: 21YIUv
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/TemplateColumn.tsx
msgid "Select column..."
msgstr ""
#. js-lingui-id: J6WI1B
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Select file"
msgstr ""
#. js-lingui-id: ljSvAs
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
msgid "Select header row"
msgstr ""
#. js-lingui-id: mWHn81
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Select the correct field for each column you'd like to import."
msgstr ""
#. js-lingui-id: pofGCP
#: src/modules/settings/data-model/fields/forms/boolean/components/SettingsDataModelFieldBooleanForm.tsx
msgid "Select the default value for this boolean field"
@@ -3724,11 +3495,6 @@ msgstr "Selecione o valor padrão para este campo booleano"
msgid "Select the events you wish to send to this endpoint"
msgstr "Selecione os eventos que deseja enviar para este endpoint"
#. js-lingui-id: +xn1pe
#: src/modules/spreadsheet-import/steps/components/SelectSheetStep/SelectSheetStep.tsx
msgid "Select the sheet to use"
msgstr ""
#. js-lingui-id: AXTJAW
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Select your preferred language"
@@ -3833,16 +3599,6 @@ msgstr "Alterar o rótulo de um campo deve também alterar o nome da API?"
msgid "Should changing an object's label also change the API?"
msgstr "Alterar o rótulo de um objeto deve também alterar a API?"
#. js-lingui-id: qi+g0a
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Show only rows with errors"
msgstr ""
#. js-lingui-id: MHlGJL
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Show unmatched columns"
msgstr ""
#. js-lingui-id: uVg8dY
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutOpenInContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -3901,11 +3657,6 @@ msgstr "Espanhol"
msgid "SSO"
msgstr "SSO"
#. js-lingui-id: vlvAkg
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "SSO (SAML / OIDC)"
msgstr "SSO (SAML / OIDC)"
#. js-lingui-id: ErU1td
#: src/modules/views/view-picker/components/ViewPickerContentCreateMode.tsx
msgid "Stages"
@@ -3959,11 +3710,6 @@ msgstr "Assunto e metadados serão partilhados com a sua equipa."
msgid "Subject, body and attachments will be shared with your team."
msgstr "Assunto, corpo e anexos serão partilhados com a sua equipa."
#. js-lingui-id: hQRttt
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Submit"
msgstr ""
#. js-lingui-id: B5jRKH
#: src/pages/settings/SettingsBilling.tsx
msgid "Subscription has been switched {to}"
@@ -4000,11 +3746,6 @@ msgstr "Mudar para {to}"
msgid "Switch billing {to}"
msgstr "Mudar faturação para {to}"
#. js-lingui-id: lz+f/E
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Switch to {alternatePlanName}"
msgstr "Mudar para {alternatePlanName}"
#. js-lingui-id: 5TRY4+
#: src/modules/settings/accounts/components/SettingsAccountsConnectedAccountsRowRightContainer.tsx
msgid "Sync failed"
@@ -4145,16 +3886,6 @@ msgstr "Tema"
msgid "Theme "
msgstr "Tema "
#. js-lingui-id: /cSDOy
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "There are required columns that are not matched or ignored. Do you want to continue?"
msgstr ""
#. js-lingui-id: luL9RX
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "There are still some rows that contain errors. Rows with errors will be ignored when submitting."
msgstr ""
#. js-lingui-id: ynfkhb
#: src/pages/auth/PasswordReset.tsx
msgid "There was an error while updating password."
@@ -4298,7 +4029,6 @@ msgstr "Erro desconhecido"
#. js-lingui-id: GQCXQS
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Unlimited contacts"
msgstr "Contactos ilimitados"
@@ -4312,13 +4042,7 @@ msgstr "Atualizado"
msgid "Upload"
msgstr "Carregar"
#. js-lingui-id: 7OP1Xi
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Upload .xlsx, .xls or .csv file"
msgstr ""
#. js-lingui-id: 2IXDgU
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Upload file"
msgstr "Carregar arquivo"
@@ -4395,11 +4119,6 @@ msgstr "O utilizador não está autenticado"
#~ msgid "Users"
#~ msgstr "Users"
#. js-lingui-id: MGeZsN
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
msgid "Validate data"
msgstr ""
#. js-lingui-id: fXVIZq
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
@@ -4614,11 +4333,6 @@ msgstr "Escrever um segredo"
msgid "yes"
msgstr "sim"
#. js-lingui-id: qsAug0
#: src/modules/spreadsheet-import/components/MatchColumnSelect.tsx
msgid "You are already importing this column."
msgstr ""
#. js-lingui-id: MFDARJ
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateReadOnly.tsx
msgid "You are not allowed to create records for this object"
+10 -296
View File
@@ -87,11 +87,6 @@ msgstr "{aggregateLabel} din {fieldLabel}"
msgid "{apiKeyName} API Key"
msgstr "Cheie API {apiKeyName}"
#. js-lingui-id: zi5SHH
#: src/modules/object-record/record-index/components/RecordIndexPageHeader.tsx
msgid "{contextStoreNumberOfSelectedRecords} selected"
msgstr "{contextStoreNumberOfSelectedRecords} selectate"
#. js-lingui-id: 6j5rE1
#: src/modules/action-menu/actions/record-agnostic-actions/run-workflow-actions/hooks/useRunWorkflowActions.tsx
#: src/modules/action-menu/actions/record-actions/workflow-run-record-actions/hooks/useWorkflowRunRecordActions.tsx
@@ -105,8 +100,8 @@ msgstr "{workspaceMemberName} va fi retras din următorul rol:"
#. js-lingui-id: YT0WJ4
#: src/pages/onboarding/ChooseYourPlan.tsx
#~ msgid "1 000 workflow node executions"
#~ msgstr "1 000 workflow node executions"
msgid "1 000 workflow node executions"
msgstr "1 000 de execuții ale nodurilor fluxului de lucru"
#. js-lingui-id: vb5TwV
#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldSelect.tsx
@@ -119,11 +114,6 @@ msgstr "1. Selectați un tip de câmp"
msgid "1. Type"
msgstr "1. Tip"
#. js-lingui-id: AvXug3
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "10 000 workflow node executions"
msgstr "10 000 de execuții ale nodurilor fluxului de lucru"
#. js-lingui-id: 4EdXYs
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "12h ({hour12Label})"
@@ -140,11 +130,6 @@ msgstr "2. Configurează"
msgid "2. Configure field"
msgstr "2. Configurează câmpul"
#. js-lingui-id: kAtmAv
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "20 000 workflow node executions"
msgstr "20 000 de execuții ale nodurilor fluxului de lucru"
#. js-lingui-id: QsMprd
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "24h ({hour24Label})"
@@ -201,11 +186,6 @@ msgstr "Ștergerea contului"
msgid "Accounts"
msgstr "Conturi"
#. js-lingui-id: bwRvnp
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
msgid "Action"
msgstr "Acțiune"
#. js-lingui-id: 7L01XJ
#: src/modules/settings/roles/role-permissions/components/RolePermissionsSettingsTableHeader.tsx
#: src/modules/settings/roles/role-permissions/components/RolePermissionsObjectsTableHeader.tsx
@@ -252,7 +232,7 @@ msgid "Add Approved Access Domain"
msgstr "Adaugă Domeniu de Acces Aprobat"
#. js-lingui-id: DpV70M
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionFormBuilder.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowEditActionForm.tsx
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
msgid "Add Field"
msgstr "Adaugă câmpul"
@@ -453,7 +433,6 @@ msgstr "API"
#. js-lingui-id: 0RqpZr
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "API & Webhooks"
msgstr "API & Webhooks"
@@ -537,28 +516,13 @@ msgstr "Sunteți sigur că doriți să schimbați intervalul de facturare?"
#. js-lingui-id: 8Y3Jbl
#: src/modules/action-menu/actions/record-actions/multiple-records/hooks/useDeleteMultipleRecordsAction.tsx
#~ msgid "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
#~ msgstr "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
#. js-lingui-id: 2BZAqa
#: src/modules/action-menu/actions/record-actions/multiple-records/hooks/useDeleteMultipleRecordsAction.tsx
msgid "Are you sure you want to delete these records? They can be recovered from the Command menu."
msgstr "Sigur doriți să ștergeți aceste înregistrări? Ele pot fi recuperate din meniul Command."
msgid "Are you sure you want to delete these records? They can be recovered from the Command menu ({osControlSymbol} + K)."
msgstr "Sigur doriți să ștergeți aceste înregistrări? Ele pot fi recuperate din meniul Command ({osControlSymbol} + K)."
#. js-lingui-id: Se0vJw
#: src/modules/action-menu/actions/record-actions/single-record/hooks/useDeleteSingleRecordAction.tsx
#~ msgid "Are you sure you want to delete this record? It can be recovered from the Command menu ({osControlSymbol} + K)."
#~ msgstr "Are you sure you want to delete this record? It can be recovered from the Command menu ({osControlSymbol} + K)."
#. js-lingui-id: yb2hF4
#: src/modules/action-menu/actions/record-actions/single-record/hooks/useDeleteSingleRecordAction.tsx
msgid "Are you sure you want to delete this record? It can be recovered from the Command menu."
msgstr "Sigur doriți să ștergeți această înregistrare? Ea poate fi recuperată din meniul Command."
#. js-lingui-id: rnCqBK
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Are you sure? Your current information will not be saved."
msgstr ""
msgid "Are you sure you want to delete this record? It can be recovered from the Command menu ({osControlSymbol} + K)."
msgstr "Sigur doriți să ștergeți această înregistrare? Ea poate fi recuperată din meniul Command ({osControlSymbol} + K)."
#. js-lingui-id: nYD/Cq
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
@@ -721,18 +685,10 @@ msgstr "Sincronizare Calendar"
msgid "Calendars"
msgstr "Calendare"
#. js-lingui-id: msssZq
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "Can't change API names for standard objects"
msgstr "Nu se pot schimba numele API pentru obiectele standard"
#. js-lingui-id: dEgA5A
#: src/pages/auth/Authorize.tsx
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
msgid "Cancel"
msgstr "Anulare"
@@ -839,11 +795,6 @@ msgstr "Închide"
msgid "Close command menu"
msgstr "Închide meniul de comandă"
#. js-lingui-id: EWPtMO
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
msgid "Code"
msgstr "Cod"
#. js-lingui-id: H86f9p
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
@@ -856,11 +807,6 @@ msgstr "Restrângere"
msgid "Color code"
msgstr "Cod culoare"
#. js-lingui-id: 93hd3e
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Columns not matched:"
msgstr ""
#. js-lingui-id: NM9bMd
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
msgid "Compact view"
@@ -892,7 +838,6 @@ msgid "Configure your emails and calendar settings."
msgstr "Configurați setările de e-mail și calendar."
#. js-lingui-id: 7VpPHA
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentConfirmationModal.tsx
msgid "Confirm"
msgstr "Confirmă"
@@ -938,8 +883,6 @@ msgstr "Context"
#: src/pages/onboarding/CreateWorkspace.tsx
#: src/pages/onboarding/CreateProfile.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx
msgid "Continue"
msgstr "Continuă"
@@ -1004,11 +947,6 @@ msgstr "Copiați această cheie deoarece nu va mai fi vizibilă"
msgid "Core"
msgstr "Nucleu"
#. js-lingui-id: w5Stxm
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Correct the issues and fill the missing data."
msgstr ""
#. js-lingui-id: wBMjJ2
#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterMenuContent.tsx
#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterDropdownContent.tsx
@@ -1130,7 +1068,6 @@ msgstr "Domeniu personalizat actualizat"
#. js-lingui-id: 8skTDV
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Custom objects"
msgstr "Obiecte personalizate"
@@ -1443,11 +1380,6 @@ msgstr "Afisează ca dată relativă"
msgid "Display text on multiple lines"
msgstr "Afișați textul pe mai multe linii"
#. js-lingui-id: ji7sqw
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/TemplateColumn.tsx
msgid "Do not import"
msgstr ""
#. js-lingui-id: U9q4zF
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
msgid "Doesn't contain"
@@ -1491,11 +1423,6 @@ msgstr "Nu sincronizați emailurile de la team@ support@ noreply@..."
msgid "Download file"
msgstr "Descarcă fișierul"
#. js-lingui-id: 6D/BnN
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Drop file here..."
msgstr ""
#. js-lingui-id: KIjvtr
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
msgid "Dutch"
@@ -1553,7 +1480,6 @@ msgstr "Editează numele subdomeniului tău sau setează un domeniu personalizat
#: src/pages/settings/SettingsWorkspaceMembers.tsx
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/auth/PasswordReset.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentTableHeader.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
msgid "Email"
@@ -1571,7 +1497,6 @@ msgstr "Emailul nu poate fi gol"
#. js-lingui-id: lfQsvW
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Email integration"
msgstr "Integrare email"
@@ -1781,21 +1706,11 @@ msgstr "Exclude următoarele persoane și domenii din sincronizarea mea de email
msgid "Existing objects"
msgstr "Obiecte existente"
#. js-lingui-id: ydzS9x
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Exit"
msgstr ""
#. js-lingui-id: LFNXuj
#: src/modules/ui/layout/fullscreen/components/FullScreenContainer.tsx
msgid "Exit Full Screen"
msgstr "Ieșiți din modul Ecran complet"
#. js-lingui-id: XB4onr
#: src/modules/spreadsheet-import/components/ModalCloseButton.tsx
msgid "Exit import flow"
msgstr ""
#. js-lingui-id: IZ4o2e
#: src/modules/navigation/components/AppNavigationDrawer.tsx
msgid "Exit Settings"
@@ -1981,11 +1896,6 @@ msgstr "Filtru"
msgid "Filters"
msgstr "Filtre"
#. js-lingui-id: SNdnlf
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Finish flow with errors"
msgstr ""
#. js-lingui-id: USZ2N6
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
msgid "Finnish"
@@ -2034,7 +1944,6 @@ msgstr "de la anual la lunar"
#. js-lingui-id: scmRyR
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Full access"
msgstr "Acces complet"
@@ -2072,24 +1981,11 @@ msgstr "Obțineți abonamentul"
msgid "Global"
msgstr "Global"
#. js-lingui-id: iS69s6
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
msgid "Go to runs"
msgstr "Mergi la rulări"
#. js-lingui-id: mT57+Q
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
msgid "Go to Settings"
msgstr "Mergeți la Setări"
#. js-lingui-id: A5WHZY
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
msgid "Go to workflows"
msgstr "Mergi la fluxuri de lucru"
#. js-lingui-id: hWp1MY
#: src/pages/settings/SettingsWorkspace.tsx
msgid "Grant Twenty support temporary access to your workspace so we can troubleshoot problems or recover content on your behalf. You can revoke access at any time."
@@ -2149,34 +2045,6 @@ msgstr "Câmpuri ascunse"
msgid "Hide"
msgstr "Ascunde"
#. js-lingui-id: OlbYor
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
msgid "Hide deleted"
msgstr "Ascunde șterse"
#. js-lingui-id: FHhlye
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
msgid "Hide deleted records"
msgstr "Ascunde înregistrările șterse"
#. js-lingui-id: 0dZtKR
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
msgid "Hide deleted runs"
msgstr "Ascunde rulările șterse"
#. js-lingui-id: Jc6FrI
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
msgid "Hide deleted versions"
msgstr "Ascunde versiunile șterse"
#. js-lingui-id: aOZAIB
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
msgid "Hide deleted workflows"
msgstr "Ascunde fluxuri de lucru șterse"
#. js-lingui-id: HS8BG/
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownRecordGroupsContent.tsx
msgid "Hide empty groups"
@@ -2584,8 +2452,8 @@ msgstr "Deconectare"
#. js-lingui-id: nOhz3x
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
msgid "Logout"
msgstr "Deconectare"
#~ msgid "Logout"
#~ msgstr "Logout"
#. js-lingui-id: PTozs8
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
@@ -2629,16 +2497,6 @@ msgstr "Gestionează-ți abonamentul"
msgid "Mark as done"
msgstr "Marchează ca realizat"
#. js-lingui-id: 7h8ch8
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
msgid "Match columns"
msgstr ""
#. js-lingui-id: gDLior
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Match Columns"
msgstr ""
#. js-lingui-id: CK1KXz
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts
@@ -2867,12 +2725,6 @@ msgstr "Nou furnizor SSO"
#~ msgid "New Webhook"
#~ msgstr "New Webhook"
#. js-lingui-id: AxNmtI
#: src/modules/spreadsheet-import/steps/components/SelectSheetStep/SelectSheetStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Next Step"
msgstr ""
#. js-lingui-id: OTe3RI
#: src/pages/settings/workspace/SettingsDomain.tsx
msgid "No change detected"
@@ -2888,16 +2740,6 @@ msgstr "Niciun cont conectat"
msgid "No country"
msgstr "Fără țară"
#. js-lingui-id: pxvJ9B
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "No data containing errors"
msgstr ""
#. js-lingui-id: dihZwh
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "No data found"
msgstr ""
#. js-lingui-id: UwvrGq
#: src/pages/settings/SettingsWorkspaceMembers.tsx
msgid "No members"
@@ -2954,11 +2796,6 @@ msgstr "Nu s-au găsit înregistrări"
#~ msgid "No Result"
#~ msgstr "No Result"
#. js-lingui-id: Ev2r9A
#: src/modules/spreadsheet-import/components/MatchColumnSelect.tsx
msgid "No results"
msgstr ""
#. js-lingui-id: MA3x23
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentWorkspaceMemberPickerDropdownContent.tsx
msgid "No Results"
@@ -2991,11 +2828,6 @@ msgstr "Niciunul"
msgid "Norwegian"
msgstr "Norvegiană"
#. js-lingui-id: v3W9iu
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Not all columns matched"
msgstr ""
#. js-lingui-id: 0qBE9S
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownMenuContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownMenuContent.tsx
@@ -3291,11 +3123,6 @@ msgstr "Previzualizare"
msgid "Privacy Policy"
msgstr "Politica de confidențialitate"
#. js-lingui-id: k1ifdL
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Processing..."
msgstr ""
#. js-lingui-id: vERlcd
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/SettingsProfile.tsx
@@ -3409,7 +3236,6 @@ msgstr "Reîncarcă"
#. js-lingui-id: t/YqKh
#: src/modules/ui/input/components/ImageInput.tsx
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Remove"
msgstr "Elimină"
@@ -3483,15 +3309,10 @@ msgid "Restore records"
msgstr "Restaurează înregistrările"
#. js-lingui-id: kx0s+n
#: src/modules/command-menu/hooks/useCommandMenuSearchRecords.tsx
#: src/modules/command-menu/hooks/useSearchRecords.tsx
msgid "Results"
msgstr "Rezultate"
#. js-lingui-id: BohSvm
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Review your import"
msgstr ""
#. js-lingui-id: 5dJK4M
#: src/pages/settings/roles/SettingsRoles.tsx
#: src/pages/settings/roles/SettingsRoles.tsx
@@ -3532,7 +3353,6 @@ msgstr "Schemat"
#. js-lingui-id: A1taO8
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownWorkspacesListComponents.tsx
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
#: src/modules/settings/roles/role-assignment/components/RoleAssignmentWorkspaceMemberPickerDropdown.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
#: src/modules/navigation/components/MainNavigationDrawerItems.tsx
#: src/modules/command-menu/hooks/useOpenRecordsSearchPageInCommandMenu.ts
@@ -3580,7 +3400,6 @@ msgstr "Caută un index..."
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownRecordGroupFieldsContent.tsx
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownFilterSelect.tsx
#: src/modules/object-record/advanced-filter/components/AdvancedFilterFieldSelectSearchInput.tsx
msgid "Search fields"
msgstr "Caută câmpuri"
@@ -3643,19 +3462,11 @@ msgstr "Vezi fluxuri de lucru șterse"
#. js-lingui-id: OpPn5Z
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
msgid "See runs"
msgstr "Vezi rulările"
#. js-lingui-id: gGEfj/
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
msgid "See version"
msgstr "Vezi versiuni"
#. js-lingui-id: EtyY4+
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts
@@ -3668,52 +3479,12 @@ msgstr "Vezi versiunile"
msgid "See versions history"
msgstr "Vezi istoricul versiunilor"
#. js-lingui-id: qEKLJV
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
msgid "See workflow"
msgstr "Vezi flux de lucru"
#. js-lingui-id: XThiR2
#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts
#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfig.ts
msgid "See workflows"
msgstr "Vezi fluxuri de lucru"
#. js-lingui-id: WZvt/6
#: src/modules/command-menu/hooks/useWorkflowCommandMenu.ts
#: src/modules/command-menu/hooks/__tests__/useWorkflowCommandMenu.test.tsx
msgid "Select Action"
msgstr "Selectează acțiunea"
#. js-lingui-id: hVPa4O
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/UnmatchColumn.tsx
msgid "Select an option"
msgstr ""
#. js-lingui-id: 21YIUv
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/components/TemplateColumn.tsx
msgid "Select column..."
msgstr ""
#. js-lingui-id: J6WI1B
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Select file"
msgstr ""
#. js-lingui-id: ljSvAs
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
msgid "Select header row"
msgstr ""
#. js-lingui-id: mWHn81
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "Select the correct field for each column you'd like to import."
msgstr ""
#. js-lingui-id: pofGCP
#: src/modules/settings/data-model/fields/forms/boolean/components/SettingsDataModelFieldBooleanForm.tsx
msgid "Select the default value for this boolean field"
@@ -3724,11 +3495,6 @@ msgstr "Selectați valoarea implicită pentru acest câmp boolean"
msgid "Select the events you wish to send to this endpoint"
msgstr "Selectează evenimentele pe care dorești să le trimiți la acest endpoint"
#. js-lingui-id: +xn1pe
#: src/modules/spreadsheet-import/steps/components/SelectSheetStep/SelectSheetStep.tsx
msgid "Select the sheet to use"
msgstr ""
#. js-lingui-id: AXTJAW
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Select your preferred language"
@@ -3833,16 +3599,6 @@ msgstr "Modificarea etichetei unui câmp ar trebui să schimbe și numele pentru
msgid "Should changing an object's label also change the API?"
msgstr "Schimbarea etichetei unui obiect ar trebui să schimbe și API-ul?"
#. js-lingui-id: qi+g0a
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Show only rows with errors"
msgstr ""
#. js-lingui-id: MHlGJL
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Show unmatched columns"
msgstr ""
#. js-lingui-id: uVg8dY
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutOpenInContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -3901,11 +3657,6 @@ msgstr "Spaniolă"
msgid "SSO"
msgstr "Autentificare Unică"
#. js-lingui-id: vlvAkg
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "SSO (SAML / OIDC)"
msgstr "SSO (SAML / OIDC)"
#. js-lingui-id: ErU1td
#: src/modules/views/view-picker/components/ViewPickerContentCreateMode.tsx
msgid "Stages"
@@ -3959,11 +3710,6 @@ msgstr "Subiectul și meta-datele vor fi partajate cu echipa dvs."
msgid "Subject, body and attachments will be shared with your team."
msgstr "Subiectul, corpul și atașamentele vor fi partajate cu echipa dvs."
#. js-lingui-id: hQRttt
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "Submit"
msgstr ""
#. js-lingui-id: B5jRKH
#: src/pages/settings/SettingsBilling.tsx
msgid "Subscription has been switched {to}"
@@ -4000,11 +3746,6 @@ msgstr "Schimbă {to}"
msgid "Switch billing {to}"
msgstr "Schimbă facturarea {to}"
#. js-lingui-id: lz+f/E
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Switch to {alternatePlanName}"
msgstr "Schimbă la {alternatePlanName}"
#. js-lingui-id: 5TRY4+
#: src/modules/settings/accounts/components/SettingsAccountsConnectedAccountsRowRightContainer.tsx
msgid "Sync failed"
@@ -4145,16 +3886,6 @@ msgstr "Temă"
msgid "Theme "
msgstr "Temă "
#. js-lingui-id: /cSDOy
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
msgid "There are required columns that are not matched or ignored. Do you want to continue?"
msgstr ""
#. js-lingui-id: luL9RX
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
msgid "There are still some rows that contain errors. Rows with errors will be ignored when submitting."
msgstr ""
#. js-lingui-id: ynfkhb
#: src/pages/auth/PasswordReset.tsx
msgid "There was an error while updating password."
@@ -4298,7 +4029,6 @@ msgstr "Eroare necunoscută"
#. js-lingui-id: GQCXQS
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Unlimited contacts"
msgstr "Contacte nelimitate"
@@ -4312,13 +4042,7 @@ msgstr "Actualizat"
msgid "Upload"
msgstr "Încarcă"
#. js-lingui-id: 7OP1Xi
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Upload .xlsx, .xls or .csv file"
msgstr ""
#. js-lingui-id: 2IXDgU
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Upload file"
msgstr "Încărcați fișierul"
@@ -4395,11 +4119,6 @@ msgstr "Utilizatorul nu este autentificat"
#~ msgid "Users"
#~ msgstr "Users"
#. js-lingui-id: MGeZsN
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
msgid "Validate data"
msgstr ""
#. js-lingui-id: fXVIZq
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
@@ -4614,11 +4333,6 @@ msgstr "Scrieți un secret"
msgid "yes"
msgstr "da"
#. js-lingui-id: qsAug0
#: src/modules/spreadsheet-import/components/MatchColumnSelect.tsx
msgid "You are already importing this column."
msgstr ""
#. js-lingui-id: MFDARJ
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateReadOnly.tsx
msgid "You are not allowed to create records for this object"
Binary file not shown.

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