Compare commits

..
Author SHA1 Message Date
Claude 48e658df57 wip(messaging): scaffold email forwarding channel inbound pipeline
Adds EMAIL_FORWARDING as a new MessageChannelType and ConnectedAccountProvider,
along with the S3-polling inbound email driver skeleton (storage, parser,
import service, driver module) and supporting config variables. Provider
switches across auth, refresh tokens, email aliases, and outbound routing
are updated to handle the new enum value.

This is a work-in-progress commit; the poll cron job, list-fetch cron
filter, channel creation mutation, frontend UI and tests are not yet
implemented.

https://claude.ai/code/session_01SM4RuPAL9p8CTmt3xvKgp3
2026-04-08 20:17:28 +00:00
638 changed files with 7776 additions and 16658 deletions
-22
View File
@@ -1,22 +0,0 @@
{
"mcpServers": {
"postgres": {
"type": "stdio",
"command": "bash",
"args": ["-c", "source packages/twenty-server/.env && npx -y @modelcontextprotocol/server-postgres \"$PG_DATABASE_URL\""],
"env": {}
},
"playwright": {
"type": "stdio",
"command": "npx",
"args": ["@playwright/mcp@latest", "--no-sandbox", "--headless"],
"env": {}
},
"context7": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@upstash/context7-mcp"],
"env": {}
}
}
}
-220
View File
@@ -1,220 +0,0 @@
# CLAUDE.md
This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
## Project Overview
Twenty is an open-source CRM built with modern technologies in a monorepo structure. The codebase is organized as an Nx workspace with multiple packages.
## Key Commands
### Development
```bash
# Start development environment (frontend + backend + worker)
yarn start
# Individual package development
npx nx start twenty-front # Start frontend dev server
npx nx start twenty-server # Start backend server
npx nx run twenty-server:worker # Start background worker
```
### Testing
```bash
# Preferred: run a single test file (fast)
npx jest path/to/test.test.ts --config=packages/PROJECT/jest.config.mjs
# Run all tests for a package
npx nx test twenty-front # Frontend unit tests
npx nx test twenty-server # Backend unit tests
npx nx run twenty-server:test:integration:with-db-reset # Integration tests with DB reset
# To run an indivual test or a pattern of tests, use the following command:
cd packages/{workspace} && npx jest "pattern or filename"
# Storybook
npx nx storybook:build twenty-front
npx nx storybook:test twenty-front
# When testing the UI end to end, click on "Continue with Email" and use the prefilled credentials.
```
### Code Quality
```bash
# Linting (diff with main - fastest, always prefer this)
npx nx lint:diff-with-main twenty-front
npx nx lint:diff-with-main twenty-server
npx nx lint:diff-with-main twenty-front --configuration=fix # Auto-fix
# Linting (full project - slower, use only when needed)
npx nx lint twenty-front
npx nx lint twenty-server
# Type checking
npx nx typecheck twenty-front
npx nx typecheck twenty-server
# Format code
npx nx fmt twenty-front
npx nx fmt twenty-server
```
### Build
```bash
# Build packages (twenty-shared must be built first)
npx nx build twenty-shared
npx nx build twenty-front
npx nx build twenty-server
```
### Database Operations
```bash
# Database management
npx nx database:reset twenty-server # Reset database
npx nx run twenty-server:database:init:prod # Initialize database
npx nx run twenty-server:database:migrate:prod # Run migrations
# Generate migration
npx nx run twenty-server:database:migrate:generate
```
### Database Inspection (Postgres MCP)
A read-only Postgres MCP server is configured in `.mcp.json`. Use it to:
- Inspect workspace data, metadata, and object definitions while developing
- Verify migration results (columns, types, constraints) after running migrations
- Explore the multi-tenant schema structure (core, metadata, workspace-specific schemas)
- Debug issues by querying raw data to confirm whether a bug is frontend, backend, or data-level
- Inspect metadata tables to debug GraphQL schema generation issues
This server is read-only — for write operations (reset, migrations, sync), use the CLI commands above.
### GraphQL
```bash
# Generate GraphQL types (run after schema changes)
npx nx run twenty-front:graphql:generate
npx nx run twenty-front:graphql:generate --configuration=metadata
```
## Architecture Overview
### Tech Stack
- **Frontend**: React 18, TypeScript, Jotai (state management), Linaria (styling), Vite
- **Backend**: NestJS, TypeORM, PostgreSQL, Redis, GraphQL (with GraphQL Yoga)
- **Monorepo**: Nx workspace managed with Yarn 4
### Package Structure
```
packages/
├── twenty-front/ # React frontend application
├── twenty-server/ # NestJS backend API
├── twenty-ui/ # Shared UI components library
├── twenty-shared/ # Common types and utilities
├── twenty-emails/ # Email templates with React Email
├── twenty-website/ # Next.js documentation website
├── twenty-zapier/ # Zapier integration
└── twenty-e2e-testing/ # Playwright E2E tests
```
### Key Development Principles
- **Functional components only** (no class components)
- **Named exports only** (no default exports)
- **Types over interfaces** (except when extending third-party interfaces)
- **String literals over enums** (except for GraphQL enums)
- **No 'any' type allowed** — strict TypeScript enforced
- **Event handlers preferred over useEffect** for state updates
- **Props down, events up** — unidirectional data flow
- **Composition over inheritance**
- **No abbreviations** in variable names (`user` not `u`, `fieldMetadata` not `fm`)
### Naming Conventions
- **Variables/functions**: camelCase
- **Constants**: SCREAMING_SNAKE_CASE
- **Types/Classes**: PascalCase (suffix component props with `Props`, e.g. `ButtonProps`)
- **Files/directories**: kebab-case with descriptive suffixes (`.component.tsx`, `.service.ts`, `.entity.ts`, `.dto.ts`, `.module.ts`)
- **TypeScript generics**: descriptive names (`TData` not `T`)
### File Structure
- Components under 300 lines, services under 500 lines
- Components in their own directories with tests and stories
- Use `index.ts` barrel exports for clean imports
- Import order: external libraries first, then internal (`@/`), then relative
### Comments
- Use short-form comments (`//`), not JSDoc blocks
- Explain WHY (business logic), not WHAT
- Do not comment obvious code
- Multi-line comments use multiple `//` lines, not `/** */`
### State Management
- **Jotai** for global state: atoms for primitive state, selectors for derived state, atom families for dynamic collections
- Component-specific state with React hooks (`useState`, `useReducer` for complex logic)
- GraphQL cache managed by Apollo Client
- Use functional state updates: `setState(prev => prev + 1)`
### Backend Architecture
- **NestJS modules** for feature organization
- **TypeORM** for database ORM with PostgreSQL
- **GraphQL** API with code-first approach
- **Redis** for caching and session management
- **BullMQ** for background job processing
### Database & Migrations
- **PostgreSQL** as primary database
- **Redis** for caching and sessions
- **ClickHouse** for analytics (when enabled)
- Always generate migrations when changing entity files
- Migration names must be kebab-case (e.g. `add-agent-turn-evaluation`)
- Include both `up` and `down` logic in migrations
- Never delete or rewrite committed migrations
### Utility Helpers
Use existing helpers from `twenty-shared` instead of manual type guards:
- `isDefined()`, `isNonEmptyString()`, `isNonEmptyArray()`
## Development Workflow
IMPORTANT: Use Context7 for code generation, setup or configuration steps, or library/API documentation. Automatically use the Context7 MCP tools to resolve library IDs and get library docs without waiting for explicit requests.
### Before Making Changes
1. Always run linting (`lint:diff-with-main`) and type checking after code changes
2. Test changes with relevant test suites (prefer single-file test runs)
3. Ensure database migrations are generated for entity changes
4. Check that GraphQL schema changes are backward compatible
5. Run `graphql:generate` after any GraphQL schema changes
### Code Style Notes
- Use **Linaria** for styling with zero-runtime CSS-in-JS (styled-components pattern)
- Follow **Nx** workspace conventions for imports
- Use **Lingui** for internationalization
- Apply security first, then formatting (sanitize before format)
### Testing Strategy
- **Test behavior, not implementation** — focus on user perspective
- **Test pyramid**: 70% unit, 20% integration, 10% E2E
- Query by user-visible elements (text, roles, labels) over test IDs
- Use `@testing-library/user-event` for realistic interactions
- Descriptive test names: "should [behavior] when [condition]"
- Clear mocks between tests with `jest.clearAllMocks()`
## Dev Environment Setup
All dev environments (Claude Code web, Cursor, local) use one script:
```bash
bash packages/twenty-utils/setup-dev-env.sh
```
This handles everything: starts Postgres + Redis (auto-detects local services vs Docker), creates databases, and copies `.env` files. Idempotent — safe to run multiple times.
- `--docker` — force Docker mode (uses `packages/twenty-docker/docker-compose.dev.yml`)
- `--down` — stop services
- `--reset` — wipe data and restart fresh
- **Skip the setup script** for tasks that only read code — architecture questions, code review, documentation, etc.
**Note:** CI workflows (GitHub Actions) manage services via Actions service containers and run setup steps individually — they don't use this script.
## Important Files
- `nx.json` - Nx workspace configuration with task definitions
- `tsconfig.base.json` - Base TypeScript configuration
- `package.json` - Root package with workspace definitions
- `.cursor/rules/` - Detailed development guidelines and best practices
+1 -1
View File
@@ -82,7 +82,7 @@ npx nx run twenty-server:test # Run unit tests
npx nx run twenty-server:test:integration:with-db-reset # Run integration tests
# Migrations
npx nx run twenty-server:database:migrate:generate
npx nx run twenty-server:typeorm migration:generate src/database/typeorm/core/migrations/[name] -d src/database/typeorm/core/core.datasource.ts
# Workspace
```
+4 -2
View File
@@ -11,12 +11,14 @@ alwaysApply: false
- **When changing an entity, always generate a migration**
- If you modify a `*.entity.ts` file in `packages/twenty-server/src`, you **must** generate a corresponding TypeORM migration instead of manually editing the database schema.
- Use the Nx command from the project root:
- Use the Nx + TypeORM command from the project root:
```bash
npx nx run twenty-server:database:migrate:generate
npx nx run twenty-server:typeorm migration:generate src/database/typeorm/core/migrations/common/[name] -d src/database/typeorm/core/core.datasource.ts
```
- Replace `[name]` with a descriptive, kebab-case migration name that reflects the change (for example, `add-agent-turn-evaluation`).
- **Prefer generated migrations over manual edits**
- Let TypeORM infer schema changes from the updated entities; only adjust the generated migration file manually if absolutely necessary (for example, for data backfills or complex constraints).
- Keep schema changes (DDL) in these generated migrations and avoid mixing in heavy data migrations unless there is a strong reason and clear comments.
@@ -251,14 +251,6 @@ jobs:
rm -f /tmp/current-server.pid
fi
- name: Flush Redis between server runs
run: |
# Clear all Redis caches to prevent stale data from the current branch
# server contaminating the main branch server. Both servers share the
# same Redis instance, and CoreEntityCacheService/WorkspaceCacheService
# persist cached entities across process restarts.
redis-cli -h localhost -p 6379 FLUSHALL || echo "::warning::Failed to flush Redis"
- name: Checkout main branch
run: |
git stash
@@ -139,19 +139,11 @@ jobs:
cd /tmp/e2e-test-workspace/test-app
npx --no-install twenty --version
- name: Setup server environment
run: npx nx reset:env:e2e-testing-server twenty-server
- name: Create test database
run: PGPASSWORD=postgres psql -h localhost -p 5432 -U postgres -d postgres -c 'CREATE DATABASE "test";'
- name: Create databases
run: |
PGPASSWORD=postgres psql -h localhost -p 5432 -U postgres -d postgres -c 'CREATE DATABASE "default";'
PGPASSWORD=postgres psql -h localhost -p 5432 -U postgres -d postgres -c 'CREATE DATABASE "test";'
- name: Setup database
run: npx nx run twenty-server:database:reset
- name: Start server
run: nohup npx nx start:ci twenty-server &
- name: Setup database and start server
run: npx nx run twenty-server:database:reset && nohup npx nx start:ci twenty-server &
- name: Wait for server to be ready
run: npx wait-on http://localhost:3000/healthz --timeout 120000 --interval 1000
@@ -133,19 +133,11 @@ jobs:
cd /tmp/e2e-test-workspace/test-app
npx --no-install twenty --version
- name: Setup server environment
run: npx nx reset:env:e2e-testing-server twenty-server
- name: Create test database
run: PGPASSWORD=postgres psql -h localhost -p 5432 -U postgres -d postgres -c 'CREATE DATABASE "test";'
- name: Create databases
run: |
PGPASSWORD=postgres psql -h localhost -p 5432 -U postgres -d postgres -c 'CREATE DATABASE "default";'
PGPASSWORD=postgres psql -h localhost -p 5432 -U postgres -d postgres -c 'CREATE DATABASE "test";'
- name: Setup database
run: npx nx run twenty-server:database:reset
- name: Start server
run: nohup npx nx start:ci twenty-server &
- name: Setup database and start server
run: npx nx run twenty-server:database:reset && nohup npx nx start:ci twenty-server &
- name: Wait for server to be ready
run: npx wait-on http://localhost:3000/healthz --timeout 120000 --interval 1000
@@ -155,7 +147,17 @@ jobs:
cd /tmp/e2e-test-workspace/test-app
npx --no-install twenty remote add --api-key ${{ env.TWENTY_API_KEY }} --api-url ${{ env.TWENTY_API_URL }}
- name: Run scaffolded app integration test (deploys, installs, and verifies the app)
- name: Deploy scaffolded app
run: |
cd /tmp/e2e-test-workspace/test-app
npx --no-install twenty deploy
- name: Install scaffolded app
run: |
cd /tmp/e2e-test-workspace/test-app
npx --no-install twenty install
- name: Run scaffolded app integration test
run: |
cd /tmp/e2e-test-workspace/test-app
yarn test
@@ -137,19 +137,11 @@ jobs:
cd /tmp/e2e-test-workspace/test-app
npx --no-install twenty --version
- name: Setup server environment
run: npx nx reset:env:e2e-testing-server twenty-server
- name: Create test database
run: PGPASSWORD=postgres psql -h localhost -p 5432 -U postgres -d postgres -c 'CREATE DATABASE "test";'
- name: Create databases
run: |
PGPASSWORD=postgres psql -h localhost -p 5432 -U postgres -d postgres -c 'CREATE DATABASE "default";'
PGPASSWORD=postgres psql -h localhost -p 5432 -U postgres -d postgres -c 'CREATE DATABASE "test";'
- name: Setup database
run: npx nx run twenty-server:database:reset
- name: Start server
run: nohup npx nx start:ci twenty-server &
- name: Setup database and start server
run: npx nx run twenty-server:database:reset && nohup npx nx start:ci twenty-server &
- name: Wait for server to be ready
run: npx wait-on http://localhost:3000/healthz --timeout 120000 --interval 1000
@@ -62,19 +62,11 @@ jobs:
- name: Build SDK packages
run: npx nx build twenty-sdk
- name: Setup server environment
run: npx nx reset:env:e2e-testing-server twenty-server
- name: Create test database
run: PGPASSWORD=postgres psql -h localhost -p 5432 -U postgres -d postgres -c 'CREATE DATABASE "test";'
- name: Create databases
run: |
PGPASSWORD=postgres psql -h localhost -p 5432 -U postgres -d postgres -c 'CREATE DATABASE "default";'
PGPASSWORD=postgres psql -h localhost -p 5432 -U postgres -d postgres -c 'CREATE DATABASE "test";'
- name: Setup database
run: npx nx run twenty-server:database:reset
- name: Start server
run: nohup npx nx start:ci twenty-server &
- name: Setup database and start server
run: npx nx run twenty-server:database:reset && nohup npx nx start:ci twenty-server &
- name: Wait for server to be ready
run: npx wait-on http://localhost:3000/healthz --timeout 120000 --interval 1000
+4 -12
View File
@@ -62,19 +62,11 @@ jobs:
- name: Build SDK packages
run: npx nx build twenty-sdk
- name: Setup server environment
run: npx nx reset:env:e2e-testing-server twenty-server
- name: Create test database
run: PGPASSWORD=postgres psql -h localhost -p 5432 -U postgres -d postgres -c 'CREATE DATABASE "test";'
- name: Create databases
run: |
PGPASSWORD=postgres psql -h localhost -p 5432 -U postgres -d postgres -c 'CREATE DATABASE "default";'
PGPASSWORD=postgres psql -h localhost -p 5432 -U postgres -d postgres -c 'CREATE DATABASE "test";'
- name: Setup database
run: npx nx run twenty-server:database:reset
- name: Start server
run: nohup npx nx start:ci twenty-server &
- name: Setup database and start server
run: npx nx run twenty-server:database:reset && nohup npx nx start:ci twenty-server &
- name: Wait for server to be ready
run: npx wait-on http://localhost:3000/healthz --timeout 120000 --interval 1000
+2 -8
View File
@@ -73,8 +73,8 @@ npx nx database:reset twenty-server # Reset database
npx nx run twenty-server:database:init:prod # Initialize database
npx nx run twenty-server:database:migrate:prod # Run migrations
# Generate migration
npx nx run twenty-server:database:migrate:generate
# Generate migration (replace [name] with kebab-case descriptive name)
npx nx run twenty-server:typeorm migration:generate src/database/typeorm/core/migrations/common/[name] -d src/database/typeorm/core/core.datasource.ts
```
### Database Inspection (Postgres MCP)
@@ -171,12 +171,6 @@ packages/
Use existing helpers from `twenty-shared` instead of manual type guards:
- `isDefined()`, `isNonEmptyString()`, `isNonEmptyArray()`
### Field Value Validation
- **Use Zod-based guards** (`isField*Value`) to validate composite field values — never use manual `typeof` / `instanceof` / null checks
- Existing Zod guards live in `packages/twenty-front/src/modules/object-record/record-field/ui/types/guards/` (e.g. `isFieldEmailsValue`, `isFieldPhonesValue`, `isFieldLinksValue`, `isFieldAddressValue`, `isFieldFullNameValue`, etc.)
- Avoid `as FieldXValue` type assertions — validate with the guard first, then access properties safely
- When writing new code that handles emails, phones, links, addresses, or other composite field types, always import and use the corresponding `isField*Value` guard instead of writing manual checks like `typeof x === 'object'` or `x !== null`
## Development Workflow
IMPORTANT: Use Context7 for code generation, setup or configuration steps, or library/API documentation. Automatically use the Context7 MCP tools to resolve library IDs and get library docs without waiting for explicit requests.
@@ -1,19 +1,13 @@
import {
definePostInstallLogicFunction,
type InstallLogicFunctionPayload,
} from 'twenty-sdk';
import { definePostInstallLogicFunction, type InstallLogicFunctionPayload } from 'twenty-sdk';
const handler = async (payload: InstallLogicFunctionPayload): Promise<void> => {
console.log(
'Post install logic function executed successfully!',
payload.previousVersion,
);
console.log('Post install logic function executed successfully!', payload.previousVersion);
};
export default definePostInstallLogicFunction({
universalIdentifier: '8c726dcc-1709-4eac-aa8b-f99960a9ec1b',
name: 'post-install',
description: 'Runs after installation to set up the application.',
timeoutSeconds: 30,
timeoutSeconds: 300,
handler,
});
@@ -44,9 +44,7 @@ describe('App installation', () => {
if (!uninstallResult.success) {
console.warn(
`App uninstall failed: ${
uninstallResult.error?.message ?? 'Unknown error'
}`,
`App uninstall failed: ${uninstallResult.error?.message ?? 'Unknown error'}`,
);
}
});
@@ -1,35 +0,0 @@
import { CoreApiClient } from 'twenty-client-sdk/core';
import { definePostInstallLogicFunction } from 'twenty-sdk';
const SEED_POST_CARDS = [
{
name: 'Greetings from Paris',
content: 'Wish you were here! The Eiffel Tower is breathtaking.',
},
{
name: 'Hello from Tokyo',
content: 'Cherry blossoms are in full bloom. Sending love!',
},
];
const handler = async () => {
const client = new CoreApiClient();
await client.mutation({
createPostCards: {
__args: { data: SEED_POST_CARDS as any },
id: true,
},
} as any);
console.log(`Seeded ${SEED_POST_CARDS.length} post cards on install.`);
return {};
};
export default definePostInstallLogicFunction({
universalIdentifier: '852c6321-1563-4396-b7c5-9d370f3d30a9',
name: 'post-install',
description: 'Runs after installation to set up the application.',
timeoutSeconds: 30,
handler,
});
@@ -1,17 +0,0 @@
import { definePreInstallLogicFunction } from 'twenty-sdk';
const handler = async (params: any) => {
console.log(
`Pre-install logic function executed successfully with params`,
params,
);
return {};
};
export default definePreInstallLogicFunction({
universalIdentifier: 'bf27f558-4ec6-481f-b76e-1dbcd05aef1f',
name: 'pre-install',
description: 'Runs before migrations to set up the application.',
timeoutSeconds: 10,
handler,
});
@@ -33,7 +33,7 @@ export default defineRole({
objectUniversalIdentifier: POST_CARD_UNIVERSAL_IDENTIFIER,
fieldUniversalIdentifier: CONTENT_FIELD_UNIVERSAL_IDENTIFIER,
canReadFieldValue: false,
canUpdateFieldValue: true,
canUpdateFieldValue: false,
},
],
permissionFlags: [PermissionFlag.APPLICATIONS],
@@ -896,7 +896,6 @@ type PageLayoutWidget {
position: PageLayoutWidgetPosition
configuration: WidgetConfiguration!
conditionalDisplay: JSON
conditionalAvailabilityExpression: String
createdAt: DateTime!
updatedAt: DateTime!
deletedAt: DateTime
@@ -1170,7 +1169,6 @@ type FieldConfiguration {
"""Display mode for field configuration widgets"""
enum FieldDisplayMode {
CARD
EDITOR
FIELD
VIEW
}
@@ -1636,15 +1634,12 @@ type ClientAIModelConfig {
modelFamily: ModelFamily
modelFamilyLabel: String
sdkPackage: String
inputCostPerMillionTokens: Float
outputCostPerMillionTokens: Float
inputCostPerMillionTokensInCredits: Float!
outputCostPerMillionTokensInCredits: Float!
nativeCapabilities: NativeModelCapabilities
isDeprecated: Boolean
isRecommended: Boolean
providerName: String
providerLabel: String
contextWindowTokens: Float
maxOutputTokens: Float
dataResidency: String
}
@@ -2795,34 +2790,6 @@ type ConnectedAccountDTO {
updatedAt: DateTime!
}
type PublicConnectionParametersOutput {
host: String!
port: Float!
username: String
secure: Boolean
}
type PublicImapSmtpCaldavConnectionParameters {
IMAP: PublicConnectionParametersOutput
SMTP: PublicConnectionParametersOutput
CALDAV: PublicConnectionParametersOutput
}
type ConnectedAccountPublicDTO {
id: UUID!
handle: String!
provider: String!
lastCredentialsRefreshedAt: DateTime
authFailedAt: DateTime
handleAliases: [String!]
scopes: [String!]
lastSignedInAt: DateTime
userWorkspaceId: UUID!
createdAt: DateTime!
updatedAt: DateTime!
connectionParameters: PublicImapSmtpCaldavConnectionParameters
}
type SendEmailOutput {
success: Boolean!
error: String
@@ -3241,7 +3208,6 @@ type Query {
myMessageFolders(messageChannelId: UUID): [MessageFolder!]!
myMessageChannels(connectedAccountId: UUID): [MessageChannel!]!
myConnectedAccounts: [ConnectedAccountDTO!]!
connectedAccountById(id: UUID!): ConnectedAccountPublicDTO
connectedAccounts: [ConnectedAccountDTO!]!
myCalendarChannels(connectedAccountId: UUID): [CalendarChannel!]!
webhooks: [Webhook!]!
@@ -3386,7 +3352,6 @@ enum EventLogTable {
PAGEVIEW
OBJECT_EVENT
USAGE_EVENT
APPLICATION_LOG
}
input EventLogFiltersInput {
@@ -3554,7 +3519,7 @@ type Mutation {
updateWebhook(input: UpdateWebhookInput!): Webhook!
deleteWebhook(id: UUID!): Webhook!
createChatThread: AgentChatThread!
sendChatMessage(threadId: UUID!, text: String!, messageId: UUID!, browsingContext: JSON, modelId: String, fileIds: [UUID!]): SendChatMessageResult!
sendChatMessage(threadId: UUID!, text: String!, messageId: UUID!, browsingContext: JSON, modelId: String): SendChatMessageResult!
stopAgentChatStream(threadId: UUID!): Boolean!
deleteQueuedChatMessage(messageId: UUID!): Boolean!
createSkill(input: CreateSkillInput!): Skill!
@@ -3614,9 +3579,7 @@ type Mutation {
userLookupAdminPanel(userIdentifier: String!): UserLookup!
updateWorkspaceFeatureFlag(workspaceId: UUID!, featureFlag: String!, value: Boolean!): Boolean!
setAdminAiModelEnabled(modelId: String!, enabled: Boolean!): Boolean!
setAdminAiModelsEnabled(modelIds: [String!]!, enabled: Boolean!): Boolean!
setAdminAiModelRecommended(modelId: String!, recommended: Boolean!): Boolean!
setAdminAiModelsRecommended(modelIds: [String!]!, recommended: Boolean!): Boolean!
setAdminDefaultAiModel(role: AiModelRole!, modelId: String!): Boolean!
createDatabaseConfigVariable(key: String!, value: JSON!): Boolean!
updateDatabaseConfigVariable(key: String!, value: JSON!): Boolean!
@@ -4013,7 +3976,6 @@ input UpdatePageLayoutWidgetWithIdInput {
position: JSON
configuration: JSON
conditionalDisplay: JSON
conditionalAvailabilityExpression: String
}
input GridPositionInput {
@@ -4034,7 +3996,6 @@ input CreatePageLayoutWidgetInput {
}
input UpdatePageLayoutWidgetInput {
pageLayoutTabId: UUID
title: String
type: WidgetType
objectMetadataId: UUID
@@ -4042,7 +4003,6 @@ input UpdatePageLayoutWidgetInput {
position: JSON
configuration: JSON
conditionalDisplay: JSON
conditionalAvailabilityExpression: String
}
input CreateLogicFunctionFromSourceInput {
@@ -671,7 +671,6 @@ export interface PageLayoutWidget {
position?: PageLayoutWidgetPosition
configuration: WidgetConfiguration
conditionalDisplay?: Scalars['JSON']
conditionalAvailabilityExpression?: Scalars['String']
createdAt: Scalars['DateTime']
updatedAt: Scalars['DateTime']
deletedAt?: Scalars['DateTime']
@@ -887,7 +886,7 @@ export interface FieldConfiguration {
/** Display mode for field configuration widgets */
export type FieldDisplayMode = 'CARD' | 'EDITOR' | 'FIELD' | 'VIEW'
export type FieldDisplayMode = 'CARD' | 'FIELD' | 'VIEW'
export interface FieldRichTextConfiguration {
configurationType: WidgetConfigurationType
@@ -1346,15 +1345,12 @@ export interface ClientAIModelConfig {
modelFamily?: ModelFamily
modelFamilyLabel?: Scalars['String']
sdkPackage?: Scalars['String']
inputCostPerMillionTokens?: Scalars['Float']
outputCostPerMillionTokens?: Scalars['Float']
inputCostPerMillionTokensInCredits: Scalars['Float']
outputCostPerMillionTokensInCredits: Scalars['Float']
nativeCapabilities?: NativeModelCapabilities
isDeprecated?: Scalars['Boolean']
isRecommended?: Scalars['Boolean']
providerName?: Scalars['String']
providerLabel?: Scalars['String']
contextWindowTokens?: Scalars['Float']
maxOutputTokens?: Scalars['Float']
dataResidency?: Scalars['String']
__typename: 'ClientAIModelConfig'
}
@@ -2453,37 +2449,6 @@ export interface ConnectedAccountDTO {
__typename: 'ConnectedAccountDTO'
}
export interface PublicConnectionParametersOutput {
host: Scalars['String']
port: Scalars['Float']
username?: Scalars['String']
secure?: Scalars['Boolean']
__typename: 'PublicConnectionParametersOutput'
}
export interface PublicImapSmtpCaldavConnectionParameters {
IMAP?: PublicConnectionParametersOutput
SMTP?: PublicConnectionParametersOutput
CALDAV?: PublicConnectionParametersOutput
__typename: 'PublicImapSmtpCaldavConnectionParameters'
}
export interface ConnectedAccountPublicDTO {
id: Scalars['UUID']
handle: Scalars['String']
provider: Scalars['String']
lastCredentialsRefreshedAt?: Scalars['DateTime']
authFailedAt?: Scalars['DateTime']
handleAliases?: Scalars['String'][]
scopes?: Scalars['String'][]
lastSignedInAt?: Scalars['DateTime']
userWorkspaceId: Scalars['UUID']
createdAt: Scalars['DateTime']
updatedAt: Scalars['DateTime']
connectionParameters?: PublicImapSmtpCaldavConnectionParameters
__typename: 'ConnectedAccountPublicDTO'
}
export interface SendEmailOutput {
success: Scalars['Boolean']
error?: Scalars['String']
@@ -2810,7 +2775,6 @@ export interface Query {
myMessageFolders: MessageFolder[]
myMessageChannels: MessageChannel[]
myConnectedAccounts: ConnectedAccountDTO[]
connectedAccountById?: ConnectedAccountPublicDTO
connectedAccounts: ConnectedAccountDTO[]
myCalendarChannels: CalendarChannel[]
webhooks: Webhook[]
@@ -2881,7 +2845,7 @@ export type SortDirection = 'ASC' | 'DESC'
/** Sort Nulls Options */
export type SortNulls = 'NULLS_FIRST' | 'NULLS_LAST'
export type EventLogTable = 'WORKSPACE_EVENT' | 'PAGEVIEW' | 'OBJECT_EVENT' | 'USAGE_EVENT' | 'APPLICATION_LOG'
export type EventLogTable = 'WORKSPACE_EVENT' | 'PAGEVIEW' | 'OBJECT_EVENT' | 'USAGE_EVENT'
export type UsageOperationType = 'AI_CHAT_TOKEN' | 'AI_WORKFLOW_TOKEN' | 'WORKFLOW_EXECUTION' | 'CODE_EXECUTION' | 'WEB_SEARCH'
@@ -3067,9 +3031,7 @@ export interface Mutation {
userLookupAdminPanel: UserLookup
updateWorkspaceFeatureFlag: Scalars['Boolean']
setAdminAiModelEnabled: Scalars['Boolean']
setAdminAiModelsEnabled: Scalars['Boolean']
setAdminAiModelRecommended: Scalars['Boolean']
setAdminAiModelsRecommended: Scalars['Boolean']
setAdminDefaultAiModel: Scalars['Boolean']
createDatabaseConfigVariable: Scalars['Boolean']
updateDatabaseConfigVariable: Scalars['Boolean']
@@ -3812,7 +3774,6 @@ export interface PageLayoutWidgetGenqlSelection{
position?: PageLayoutWidgetPositionGenqlSelection
configuration?: WidgetConfigurationGenqlSelection
conditionalDisplay?: boolean | number
conditionalAvailabilityExpression?: boolean | number
createdAt?: boolean | number
updatedAt?: boolean | number
deletedAt?: boolean | number
@@ -4521,15 +4482,12 @@ export interface ClientAIModelConfigGenqlSelection{
modelFamily?: boolean | number
modelFamilyLabel?: boolean | number
sdkPackage?: boolean | number
inputCostPerMillionTokens?: boolean | number
outputCostPerMillionTokens?: boolean | number
inputCostPerMillionTokensInCredits?: boolean | number
outputCostPerMillionTokensInCredits?: boolean | number
nativeCapabilities?: NativeModelCapabilitiesGenqlSelection
isDeprecated?: boolean | number
isRecommended?: boolean | number
providerName?: boolean | number
providerLabel?: boolean | number
contextWindowTokens?: boolean | number
maxOutputTokens?: boolean | number
dataResidency?: boolean | number
__typename?: boolean | number
__scalar?: boolean | number
@@ -5723,40 +5681,6 @@ export interface ConnectedAccountDTOGenqlSelection{
__scalar?: boolean | number
}
export interface PublicConnectionParametersOutputGenqlSelection{
host?: boolean | number
port?: boolean | number
username?: boolean | number
secure?: boolean | number
__typename?: boolean | number
__scalar?: boolean | number
}
export interface PublicImapSmtpCaldavConnectionParametersGenqlSelection{
IMAP?: PublicConnectionParametersOutputGenqlSelection
SMTP?: PublicConnectionParametersOutputGenqlSelection
CALDAV?: PublicConnectionParametersOutputGenqlSelection
__typename?: boolean | number
__scalar?: boolean | number
}
export interface ConnectedAccountPublicDTOGenqlSelection{
id?: boolean | number
handle?: boolean | number
provider?: boolean | number
lastCredentialsRefreshedAt?: boolean | number
authFailedAt?: boolean | number
handleAliases?: boolean | number
scopes?: boolean | number
lastSignedInAt?: boolean | number
userWorkspaceId?: boolean | number
createdAt?: boolean | number
updatedAt?: boolean | number
connectionParameters?: PublicImapSmtpCaldavConnectionParametersGenqlSelection
__typename?: boolean | number
__scalar?: boolean | number
}
export interface SendEmailOutputGenqlSelection{
success?: boolean | number
error?: boolean | number
@@ -6099,7 +6023,6 @@ export interface QueryGenqlSelection{
myMessageFolders?: (MessageFolderGenqlSelection & { __args?: {messageChannelId?: (Scalars['UUID'] | null)} })
myMessageChannels?: (MessageChannelGenqlSelection & { __args?: {connectedAccountId?: (Scalars['UUID'] | null)} })
myConnectedAccounts?: ConnectedAccountDTOGenqlSelection
connectedAccountById?: (ConnectedAccountPublicDTOGenqlSelection & { __args: {id: Scalars['UUID']} })
connectedAccounts?: ConnectedAccountDTOGenqlSelection
myCalendarChannels?: (CalendarChannelGenqlSelection & { __args?: {connectedAccountId?: (Scalars['UUID'] | null)} })
webhooks?: WebhookGenqlSelection
@@ -6321,7 +6244,7 @@ export interface MutationGenqlSelection{
updateWebhook?: (WebhookGenqlSelection & { __args: {input: UpdateWebhookInput} })
deleteWebhook?: (WebhookGenqlSelection & { __args: {id: Scalars['UUID']} })
createChatThread?: AgentChatThreadGenqlSelection
sendChatMessage?: (SendChatMessageResultGenqlSelection & { __args: {threadId: Scalars['UUID'], text: Scalars['String'], messageId: Scalars['UUID'], browsingContext?: (Scalars['JSON'] | null), modelId?: (Scalars['String'] | null), fileIds?: (Scalars['UUID'][] | null)} })
sendChatMessage?: (SendChatMessageResultGenqlSelection & { __args: {threadId: Scalars['UUID'], text: Scalars['String'], messageId: Scalars['UUID'], browsingContext?: (Scalars['JSON'] | null), modelId?: (Scalars['String'] | null)} })
stopAgentChatStream?: { __args: {threadId: Scalars['UUID']} }
deleteQueuedChatMessage?: { __args: {messageId: Scalars['UUID']} }
createSkill?: (SkillGenqlSelection & { __args: {input: CreateSkillInput} })
@@ -6381,9 +6304,7 @@ export interface MutationGenqlSelection{
userLookupAdminPanel?: (UserLookupGenqlSelection & { __args: {userIdentifier: Scalars['String']} })
updateWorkspaceFeatureFlag?: { __args: {workspaceId: Scalars['UUID'], featureFlag: Scalars['String'], value: Scalars['Boolean']} }
setAdminAiModelEnabled?: { __args: {modelId: Scalars['String'], enabled: Scalars['Boolean']} }
setAdminAiModelsEnabled?: { __args: {modelIds: Scalars['String'][], enabled: Scalars['Boolean']} }
setAdminAiModelRecommended?: { __args: {modelId: Scalars['String'], recommended: Scalars['Boolean']} }
setAdminAiModelsRecommended?: { __args: {modelIds: Scalars['String'][], recommended: Scalars['Boolean']} }
setAdminDefaultAiModel?: { __args: {role: AiModelRole, modelId: Scalars['String']} }
createDatabaseConfigVariable?: { __args: {key: Scalars['String'], value: Scalars['JSON']} }
updateDatabaseConfigVariable?: { __args: {key: Scalars['String'], value: Scalars['JSON']} }
@@ -6555,13 +6476,13 @@ export interface UpdatePageLayoutWithTabsInput {name: Scalars['String'],type: Pa
export interface UpdatePageLayoutTabWithWidgetsInput {id: Scalars['UUID'],title: Scalars['String'],position: Scalars['Float'],icon?: (Scalars['String'] | null),layoutMode?: (PageLayoutTabLayoutMode | null),widgets: UpdatePageLayoutWidgetWithIdInput[]}
export interface UpdatePageLayoutWidgetWithIdInput {id: Scalars['UUID'],pageLayoutTabId: Scalars['UUID'],title: Scalars['String'],type: WidgetType,objectMetadataId?: (Scalars['UUID'] | null),gridPosition: GridPositionInput,position?: (Scalars['JSON'] | null),configuration?: (Scalars['JSON'] | null),conditionalDisplay?: (Scalars['JSON'] | null),conditionalAvailabilityExpression?: (Scalars['String'] | null)}
export interface UpdatePageLayoutWidgetWithIdInput {id: Scalars['UUID'],pageLayoutTabId: Scalars['UUID'],title: Scalars['String'],type: WidgetType,objectMetadataId?: (Scalars['UUID'] | null),gridPosition: GridPositionInput,position?: (Scalars['JSON'] | null),configuration?: (Scalars['JSON'] | null),conditionalDisplay?: (Scalars['JSON'] | null)}
export interface GridPositionInput {row: Scalars['Float'],column: Scalars['Float'],rowSpan: Scalars['Float'],columnSpan: Scalars['Float']}
export interface CreatePageLayoutWidgetInput {pageLayoutTabId: Scalars['UUID'],title: Scalars['String'],type: WidgetType,objectMetadataId?: (Scalars['UUID'] | null),gridPosition: GridPositionInput,position?: (Scalars['JSON'] | null),configuration: Scalars['JSON']}
export interface UpdatePageLayoutWidgetInput {pageLayoutTabId?: (Scalars['UUID'] | null),title?: (Scalars['String'] | null),type?: (WidgetType | null),objectMetadataId?: (Scalars['UUID'] | null),gridPosition?: (GridPositionInput | null),position?: (Scalars['JSON'] | null),configuration?: (Scalars['JSON'] | null),conditionalDisplay?: (Scalars['JSON'] | null),conditionalAvailabilityExpression?: (Scalars['String'] | null)}
export interface UpdatePageLayoutWidgetInput {title?: (Scalars['String'] | null),type?: (WidgetType | null),objectMetadataId?: (Scalars['UUID'] | null),gridPosition?: (GridPositionInput | null),position?: (Scalars['JSON'] | null),configuration?: (Scalars['JSON'] | null),conditionalDisplay?: (Scalars['JSON'] | null)}
export interface CreateLogicFunctionFromSourceInput {id?: (Scalars['UUID'] | null),universalIdentifier?: (Scalars['UUID'] | null),name: Scalars['String'],description?: (Scalars['String'] | null),timeoutSeconds?: (Scalars['Float'] | null),toolInputSchema?: (Scalars['JSON'] | null),isTool?: (Scalars['Boolean'] | null),source?: (Scalars['JSON'] | null),cronTriggerSettings?: (Scalars['JSON'] | null),databaseEventTriggerSettings?: (Scalars['JSON'] | null),httpRouteTriggerSettings?: (Scalars['JSON'] | null)}
@@ -8668,30 +8589,6 @@ export interface LogicFunctionLogsInput {applicationId?: (Scalars['UUID'] | null
const PublicConnectionParametersOutput_possibleTypes: string[] = ['PublicConnectionParametersOutput']
export const isPublicConnectionParametersOutput = (obj?: { __typename?: any } | null): obj is PublicConnectionParametersOutput => {
if (!obj?.__typename) throw new Error('__typename is missing in "isPublicConnectionParametersOutput"')
return PublicConnectionParametersOutput_possibleTypes.includes(obj.__typename)
}
const PublicImapSmtpCaldavConnectionParameters_possibleTypes: string[] = ['PublicImapSmtpCaldavConnectionParameters']
export const isPublicImapSmtpCaldavConnectionParameters = (obj?: { __typename?: any } | null): obj is PublicImapSmtpCaldavConnectionParameters => {
if (!obj?.__typename) throw new Error('__typename is missing in "isPublicImapSmtpCaldavConnectionParameters"')
return PublicImapSmtpCaldavConnectionParameters_possibleTypes.includes(obj.__typename)
}
const ConnectedAccountPublicDTO_possibleTypes: string[] = ['ConnectedAccountPublicDTO']
export const isConnectedAccountPublicDTO = (obj?: { __typename?: any } | null): obj is ConnectedAccountPublicDTO => {
if (!obj?.__typename) throw new Error('__typename is missing in "isConnectedAccountPublicDTO"')
return ConnectedAccountPublicDTO_possibleTypes.includes(obj.__typename)
}
const SendEmailOutput_possibleTypes: string[] = ['SendEmailOutput']
export const isSendEmailOutput = (obj?: { __typename?: any } | null): obj is SendEmailOutput => {
if (!obj?.__typename) throw new Error('__typename is missing in "isSendEmailOutput"')
@@ -9205,7 +9102,6 @@ export const enumBarChartLayout = {
export const enumFieldDisplayMode = {
CARD: 'CARD' as const,
EDITOR: 'EDITOR' as const,
FIELD: 'FIELD' as const,
VIEW: 'VIEW' as const
}
@@ -9622,8 +9518,7 @@ export const enumEventLogTable = {
WORKSPACE_EVENT: 'WORKSPACE_EVENT' as const,
PAGEVIEW: 'PAGEVIEW' as const,
OBJECT_EVENT: 'OBJECT_EVENT' as const,
USAGE_EVENT: 'USAGE_EVENT' as const,
APPLICATION_LOG: 'APPLICATION_LOG' as const
USAGE_EVENT: 'USAGE_EVENT' as const
}
export const enumUsageOperationType = {
File diff suppressed because it is too large Load Diff
@@ -47,7 +47,7 @@ npx nx run twenty-server:database:reset
#### For objects in Core/Metadata schemas (TypeORM)
```bash
npx nx run twenty-server:database:migrate:generate
npx nx run twenty-server:typeorm migration:generate src/database/typeorm/core/migrations/nameOfYourMigration -d src/database/typeorm/core/core.datasource.ts
```
## Tech Stack
@@ -644,15 +644,49 @@ export default defineLogicFunction({
**Write a good `description`.** AI agents rely on the function's `description` field to decide when to use the tool. Be specific about what the tool does and when it should be called.
</Note>
</Accordion>
<Accordion title="definePreInstallLogicFunction" description="Define a pre-install logic function (one per app)">
A pre-install function is a logic function that runs automatically before your app is installed on a workspace. This is useful for validation tasks, prerequisite checks, or preparing workspace state before the main installation proceeds.
```ts src/logic-functions/pre-install.ts
import { definePreInstallLogicFunction, type InstallLogicFunctionPayload } from 'twenty-sdk';
const handler = async (payload: InstallLogicFunctionPayload): Promise<void> => {
console.log('Pre install logic function executed successfully!', payload.previousVersion);
};
export default definePreInstallLogicFunction({
universalIdentifier: 'e0604b9e-e946-456b-886d-3f27d9a6b324',
name: 'pre-install',
description: 'Runs before installation to prepare the application.',
timeoutSeconds: 300,
handler,
});
```
You can also manually execute the pre-install function at any time using the CLI:
```bash filename="Terminal"
yarn twenty exec --preInstall
```
Key points:
- Pre-install functions use `definePreInstallLogicFunction()` — a specialized variant that omits trigger settings (`cronTriggerSettings`, `databaseEventTriggerSettings`, `httpRouteTriggerSettings`, `isTool`).
- The handler receives an `InstallLogicFunctionPayload` with `{ previousVersion: string }` — the version of the app that was previously installed (or an empty string for fresh installs).
- Only one pre-install function is allowed per application. The manifest build will error if more than one is detected.
- The function's `universalIdentifier` is automatically set as `preInstallLogicFunctionUniversalIdentifier` on the application manifest during the build — you do not need to reference it in `defineApplication()`.
- The default timeout is set to 300 seconds (5 minutes) to allow for longer preparation tasks.
</Accordion>
<Accordion title="definePostInstallLogicFunction" description="Define a post-install logic function (one per app)">
A post-install function is a logic function that runs automatically once your app has finished installing on a workspace. The server executes it **after** the app's metadata has been synchronized and the SDK client has been generated, so the workspace is fully ready to use and the new schema is in place. Typical use cases include seeding default data, creating initial records, configuring workspace settings, or provisioning resources on third-party services.
A post-install function is a logic function that runs automatically after your app is installed on a workspace. This is useful for one-time setup tasks such as seeding default data, creating initial records, or configuring workspace settings.
```ts src/logic-functions/post-install.ts
import { definePostInstallLogicFunction, type InstallPayload } from 'twenty-sdk';
import { definePostInstallLogicFunction, type InstallLogicFunctionPayload } from 'twenty-sdk';
const handler = async (payload: InstallPayload): Promise<void> => {
const handler = async (payload: InstallLogicFunctionPayload): Promise<void> => {
console.log('Post install logic function executed successfully!', payload.previousVersion);
};
@@ -661,8 +695,6 @@ export default definePostInstallLogicFunction({
name: 'post-install',
description: 'Runs after installation to set up the application.',
timeoutSeconds: 300,
shouldRunOnVersionUpgrade: false,
shouldRunSynchronously: false,
handler,
});
```
@@ -675,168 +707,10 @@ yarn twenty exec --postInstall
Key points:
- Post-install functions use `definePostInstallLogicFunction()` — a specialized variant that omits trigger settings (`cronTriggerSettings`, `databaseEventTriggerSettings`, `httpRouteTriggerSettings`, `isTool`).
- The handler receives an `InstallPayload` with `{ previousVersion?: string; newVersion: string }` — `newVersion` is the version being installed, and `previousVersion` is the version that was previously installed (or `undefined` on a fresh install). Use these values to distinguish fresh installs from upgrades and to run version-specific migration logic.
- **When the hook runs**: on fresh installs only, by default. Pass `shouldRunOnVersionUpgrade: true` if you also want it to run when the app is upgraded from a previous version. When omitted, the flag defaults to `false` and upgrades skip the hook.
- **Execution model — async by default, sync opt-in**: the `shouldRunSynchronously` flag controls *how* post-install is executed.
- `shouldRunSynchronously: false` *(default)* — the hook is **enqueued on the message queue** with `retryLimit: 3` and runs asynchronously in a worker. The install response returns as soon as the job is enqueued, so a slow or failing handler does not block the caller. The worker will retry up to three times. **Use this for long-running jobs** — seeding large datasets, calling slow third-party APIs, provisioning external resources, anything that might exceed a reasonable HTTP response window.
- `shouldRunSynchronously: true` — the hook is executed **inline during the install flow** (same executor as pre-install). The install request blocks until the handler finishes, and if it throws, the install caller receives a `POST_INSTALL_ERROR`. No automatic retries. **Use this for fast, must-complete-before-response work** — for example, emitting a validation error to the user, or quick setup that the client will rely on immediately after the install call returns. Keep in mind the metadata migration has already been applied by the time post-install runs, so a sync-mode failure does **not** roll back the schema changes — it only surfaces the error.
- Make sure your handler is idempotent. In async mode the queue may retry up to three times; in either mode the hook may run again on upgrades when `shouldRunOnVersionUpgrade: true`.
- The environment variables `APPLICATION_ID`, `APP_ACCESS_TOKEN`, and `API_URL` are available inside the handler (same as any other logic function), so you can call the Twenty API with an application access token scoped to your app.
- The handler receives an `InstallLogicFunctionPayload` with `{ previousVersion: string }` — the version of the app that was previously installed (or an empty string for fresh installs).
- Only one post-install function is allowed per application. The manifest build will error if more than one is detected.
- The function's `universalIdentifier`, `shouldRunOnVersionUpgrade`, and `shouldRunSynchronously` are automatically attached to the application manifest under the `postInstallLogicFunction` field during the build — you do not need to reference them in `defineApplication()`.
- The function's `universalIdentifier` is automatically set as `postInstallLogicFunctionUniversalIdentifier` on the application manifest during the build — you do not need to reference it in `defineApplication()`.
- The default timeout is set to 300 seconds (5 minutes) to allow for longer setup tasks like data seeding.
- **Not executed in dev mode**: when an app is registered locally (via `yarn twenty dev`), the server skips the install flow entirely and syncs files directly through the CLI watcher — so post-install never runs in dev mode, regardless of `shouldRunSynchronously`. Use `yarn twenty exec --postInstall` to trigger it manually against a running workspace.
</Accordion>
<Accordion title="definePreInstallLogicFunction" description="Define a pre-install logic function (one per app)">
A pre-install function is a logic function that runs automatically during installation, **before the workspace metadata migration is applied**. It shares the same payload shape as post-install (`InstallPayload`), but it is positioned earlier in the install flow so it can prepare state that the upcoming migration depends on — typical uses include backing up data, validating compatibility with the new schema, or archiving records that are about to be restructured or dropped.
```ts src/logic-functions/pre-install.ts
import { definePreInstallLogicFunction, type InstallPayload } from 'twenty-sdk';
const handler = async (payload: InstallPayload): Promise<void> => {
console.log('Pre install logic function executed successfully!', payload.previousVersion);
};
export default definePreInstallLogicFunction({
universalIdentifier: 'a1b2c3d4-5678-90ab-cdef-1234567890ab',
name: 'pre-install',
description: 'Runs before installation to prepare the application.',
timeoutSeconds: 300,
shouldRunOnVersionUpgrade: true,
handler,
});
```
You can also manually execute the pre-install function at any time using the CLI:
```bash filename="Terminal"
yarn twenty exec --preInstall
```
Key points:
- Pre-install functions use `definePreInstallLogicFunction()` — same specialized config as post-install, just attached to a different lifecycle slot.
- Both pre- and post-install handlers receive the same `InstallPayload` type: `{ previousVersion?: string; newVersion: string }`. Import it once and reuse it for both hooks.
- **When the hook runs**: positioned just before the workspace metadata migration (`synchronizeFromManifest`). Before executing, the server runs a purely additive "pared-down sync" that registers the **new** version's pre-install function in the workspace metadata — nothing else is touched — and then executes it. Because this sync is additive-only, the previous version's objects, fields, and data are still intact when your handler runs: you can safely read and back up pre-migration state.
- **Execution model**: pre-install is executed **synchronously** and **blocks the install**. If the handler throws, the install is aborted before any schema changes are applied — the workspace stays on the previous version in a consistent state. This is intentional: pre-install is your last chance to refuse a risky upgrade.
- As with post-install, only one pre-install function is allowed per application. It is attached to the application manifest under `preInstallLogicFunction` automatically during the build.
- **Not executed in dev mode**: same as post-install — the install flow is skipped entirely for locally-registered apps, so pre-install never runs under `yarn twenty dev`. Use `yarn twenty exec --preInstall` to trigger it manually.
</Accordion>
<Accordion title="Pre-install vs post-install: when to use which" description="Choosing the right install hook">
Both hooks are part of the same install flow and receive the same `InstallPayload`. The difference is **when** they run relative to the workspace metadata migration, and that changes what data they can safely touch.
```
┌─────────────────────────────────────────────────────────────┐
│ install flow │
│ │
│ upload package → [pre-install] → metadata migration → │
│ generate SDK → [post-install] │
│ │
│ old schema visible new schema visible │
└─────────────────────────────────────────────────────────────┘
```
Pre-install is always **synchronous** (it blocks the install and can abort it). Post-install is **asynchronous by default** — enqueued on a worker with automatic retries — but can opt into synchronous execution with `shouldRunSynchronously: true`. See the `definePostInstallLogicFunction` accordion above for when to use each mode.
**Use `post-install` for anything that needs the new schema to exist.** This is the common case:
- Seeding default data (creating initial records, default views, demo content) against newly-added objects and fields.
- Registering webhooks with third-party services now that the app has its credentials.
- Calling your own API to finish setup that depends on the synchronized metadata.
- Idempotent "ensure this exists" logic that should reconcile state on every upgrade — combine with `shouldRunOnVersionUpgrade: true`.
Example — seed a default `PostCard` record after install:
```ts src/logic-functions/post-install.ts
import { definePostInstallLogicFunction, type InstallPayload } from 'twenty-sdk';
import { createClient } from './generated/client';
const handler = async ({ previousVersion }: InstallPayload): Promise<void> => {
if (previousVersion) return; // fresh installs only
const client = createClient();
await client.postCard.create({
data: { title: 'Welcome to Postcard', content: 'Your first card!' },
});
};
export default definePostInstallLogicFunction({
universalIdentifier: 'f7a2b9c1-3d4e-5678-abcd-ef9876543210',
name: 'post-install',
description: 'Seeds a welcome post card after install.',
timeoutSeconds: 300,
shouldRunOnVersionUpgrade: false,
handler,
});
```
**Use `pre-install` when a migration would otherwise destroy or corrupt existing data.** Because pre-install runs against the *previous* schema and its failure rolls back the upgrade, it is the right place for anything risky:
- **Backing up data that is about to be dropped or restructured** — e.g. you are removing a field in v2 and need to copy its values into another field or export them to storage before the migration runs.
- **Archiving records that a new constraint would invalidate** — e.g. a field is becoming `NOT NULL` and you need to delete or fix rows with null values first.
- **Validating compatibility and refusing the upgrade if the current data cannot be migrated cleanly** — throw from the handler and the install aborts with no changes applied. This is safer than discovering the incompatibility mid-migration.
- **Renaming or rekeying data** ahead of a schema change that would lose the association.
Example — archive records before a destructive migration:
```ts src/logic-functions/pre-install.ts
import { definePreInstallLogicFunction, type InstallPayload } from 'twenty-sdk';
import { createClient } from './generated/client';
const handler = async ({ previousVersion, newVersion }: InstallPayload): Promise<void> => {
// Only the 1.x → 2.x upgrade drops the legacy `notes` field.
if (!previousVersion?.startsWith('1.') || !newVersion.startsWith('2.')) {
return;
}
const client = createClient();
const legacyRecords = await client.postCard.findMany({
where: { notes: { isNotNull: true } },
});
if (legacyRecords.length === 0) return;
// Copy legacy `notes` into the new `description` field before the migration
// drops the `notes` column. If this fails, the upgrade is aborted and the
// workspace stays on v1 with all data intact.
await Promise.all(
legacyRecords.map((record) =>
client.postCard.update({
where: { id: record.id },
data: { description: record.notes },
}),
),
);
};
export default definePreInstallLogicFunction({
universalIdentifier: 'a1b2c3d4-5678-90ab-cdef-1234567890ab',
name: 'pre-install',
description: 'Backs up legacy notes into description before the v2 migration.',
timeoutSeconds: 300,
shouldRunOnVersionUpgrade: true,
handler,
});
```
**Rule of thumb:**
| You want to… | Use |
|---|---|
| Seed default data, configure the workspace, register external resources | `post-install` |
| Run long-running seeding or third-party calls that shouldn't block the install response | `post-install` (default — `shouldRunSynchronously: false`, with worker retries) |
| Run fast setup that the caller will rely on immediately after the install call returns | `post-install` with `shouldRunSynchronously: true` |
| Read or back up data that the upcoming migration would lose | `pre-install` |
| Reject an upgrade that would corrupt existing data | `pre-install` (throw from the handler) |
| Run reconciliation on every upgrade | `post-install` with `shouldRunOnVersionUpgrade: true` |
| Do one-off setup on the first install only | `post-install` with `shouldRunOnVersionUpgrade: false` (default) |
<Note>
If in doubt, default to **post-install**. Only reach for pre-install when the migration itself is destructive and you need to intercept the previous state before it is gone.
</Note>
</Accordion>
<Accordion title="defineFrontComponent" description="Define front components for custom UI" >
@@ -1944,7 +1818,8 @@ yarn twenty exec -u e56d363b-0bdc-4d8a-a393-6f0d1c75bdcf
# Pass a JSON payload
yarn twenty exec -n create-new-post-card -p '{"name": "Hello"}'
# Execute the post-install function
# Execute pre-install or post-install functions
yarn twenty exec --preInstall
yarn twenty exec --postInstall
```
@@ -66,18 +66,12 @@ The share link uses the server's base URL (without any workspace subdomain) so i
### Version management
When updating an already deployed tarball app, the server requires the `version` in `package.json` to be **strictly higher** (per [semver](https://semver.org) ordering) than the currently deployed version. Re-deploying the same version, or pushing a lower one, is rejected before the tarball is stored — you'll see a `VERSION_ALREADY_EXISTS` error from the CLI.
To release an update:
1. Bump the `version` field in your `package.json` (e.g. `1.2.3` → `1.2.4`, `1.3.0`, or `2.0.0`)
1. Bump the `version` field in your `package.json`
2. Run `yarn twenty deploy` (or `yarn twenty deploy --remote production`)
3. Workspaces that have the app installed will see the upgrade available in their settings
<Note>
Pre-release tags work as expected: bumping `1.0.0-rc.1` → `1.0.0-rc.2` is allowed, and a final release like `1.0.0` is correctly recognized as higher than `1.0.0-rc.5`. The version in `package.json` must itself be a valid semver string.
</Note>
{/* TODO: add screenshot of the Upgrade button */}
## Publishing to npm
@@ -195,12 +189,3 @@ You can also install apps from the command line:
```bash filename="Terminal"
yarn twenty install
```
<Note>
The server enforces semver versioning on install, mirroring the rules on deploy:
- Installing the same version that is already installed in your workspace is rejected with an `APP_ALREADY_INSTALLED` error.
- Installing a lower version than the one currently installed is rejected with a `CANNOT_DOWNGRADE_APPLICATION` error.
To install a newer version, deploy or publish it first, then re-run `yarn twenty install`.
</Note>
@@ -47,7 +47,7 @@ npx nx run twenty-server:database:reset
#### للكائنات داخل مخططات Core/Metadata (TypeORM)
```bash
npx nx run twenty-server:database:migrate:generate
npx nx run twenty-server:typeorm migration:generate src/database/typeorm/core/migrations/nameOfYourMigration -d src/database/typeorm/core/core.datasource.ts
```
## "التقنية المستخدمة"
@@ -66,18 +66,12 @@ yarn twenty deploy
### إدارة الإصدارات
عند تحديث تطبيق tarball منشور مسبقًا، يشترط الخادم أن تكون قيمة `version` في `package.json` **أعلى قطعًا** (وفق ترتيب [الإصدار الدلالي](https://semver.org)) من الإصدار المنشور حاليًا. إعادة نشر الإصدار نفسه، أو دفع إصدار أدنى، يُرفَض قبل تخزين ملف tarball — سترى خطأ `VERSION_ALREADY_EXISTS` من CLI.
لطرح تحديث:
1. قم بزيادة الحقل `version` في ملف `package.json` (مثلًا: `1.2.3` → `1.2.4`، `1.3.0`، أو `2.0.0`)
1. ارفع قيمة الحقل `version` في ملف `package.json`
2. شغّل `yarn twenty deploy` (أو `yarn twenty deploy --remote production`)
3. سترى مساحات العمل التي ثبّتت التطبيق الترقية متاحة في إعداداتها
<Note>
علامات ما قبل الإصدار تعمل كما هو متوقع: زيادة `1.0.0-rc.1` → `1.0.0-rc.2` مسموح بها، ويُعترَف بالإصدار النهائي مثل `1.0.0` على أنه أعلى من `1.0.0-rc.5`. يجب أن يكون الإصدار في `package.json` بنفسه سلسلة semver صالحة.
</Note>
{/* TODO: add screenshot of the Upgrade button */}
## النشر على npm
@@ -195,12 +189,3 @@ jobs:
```bash filename="Terminal"
yarn twenty install
```
<Note>
يفرض الخادم اعتماد إصدارات semver عند التثبيت، بما يعكس القواعد المطبّقة عند النشر:
* تثبيت الإصدار نفسه المثبّت بالفعل في مساحة عملك يُرفَض بخطأ `APP_ALREADY_INSTALLED`.
* تثبيت إصدار أدنى من الإصدار المثبّت حاليًا يُرفَض بخطأ `CANNOT_DOWNGRADE_APPLICATION`.
لتثبيت إصدار أحدث، انشره (deploy) أو انشره إلى السجل (publish) أولًا، ثم أعد تشغيل `yarn twenty install`.
</Note>
@@ -47,7 +47,7 @@ npx nx run twenty-server:database:reset
#### Pro objekty ve schématech Core/Metadata (TypeORM)
```bash
npx nx run twenty-server:database:migrate:generate
npx nx run twenty-server:typeorm migration:generate src/database/typeorm/core/migrations/nameOfYourMigration -d src/database/typeorm/core/core.datasource.ts
```
## Technologický stack
@@ -66,18 +66,12 @@ Odkaz ke sdílení používá základní adresu URL serveru (bez jakékoli subdo
### Správa verzí
Při aktualizaci již nasazené tarballové aplikace server vyžaduje, aby hodnota `version` v `package.json` byla **přísně vyšší** (podle řazení [semver](https://semver.org)) než aktuálně nasazená verze. Opětovné nasazení stejné verze nebo odeslání nižší verze je odmítnuto ještě před uložením tarballu — v CLI uvidíte chybu `VERSION_ALREADY_EXISTS`.
Chcete-li vydat aktualizaci:
1. Zvyšte hodnotu pole `version` v souboru `package.json` (např. `1.2.3` → `1.2.4`, `1.3.0` nebo `2.0.0`)
1. Zvyšte hodnotu pole `version` v souboru `package.json`
2. Spusťte `yarn twenty deploy` (nebo `yarn twenty deploy --remote production`)
3. Pracovní prostory, které mají aplikaci nainstalovanou, uvidí dostupnou aktualizaci ve svém nastavení
<Note>
Předběžné tagy fungují podle očekávání: zvýšení z `1.0.0-rc.1` → `1.0.0-rc.2` je povoleno a finální vydání jako `1.0.0` je správně rozpoznáno jako vyšší než `1.0.0-rc.5`. Verze v `package.json` musí být platným řetězcem semver.
</Note>
{/* TODO: add screenshot of the Upgrade button */}
## Publikování na npm
@@ -195,12 +189,3 @@ Aplikace můžete nainstalovat také z příkazového řádku:
```bash filename="Terminal"
yarn twenty install
```
<Note>
Server při instalaci vynucuje verzování semver a zrcadlí pravidla pro nasazení:
* Instalace stejné verze, která je již nainstalována ve vašem pracovním prostoru, je odmítnuta s chybou `APP_ALREADY_INSTALLED`.
* Instalace nižší verze, než je aktuálně nainstalovaná, je odmítnuta s chybou `CANNOT_DOWNGRADE_APPLICATION`.
K instalaci novější verze ji nejprve nasaďte nebo publikujte, poté znovu spusťte `yarn twenty install`.
</Note>
@@ -47,7 +47,7 @@ npx nx run twenty-server:database:reset
#### Für Objekte in Core/Metadata-Schemas (TypeORM)
```bash
npx nx run twenty-server:database:migrate:generate
npx nx run twenty-server:typeorm migration:generate src/database/typeorm/core/migrations/nameOfYourMigration -d src/database/typeorm/core/core.datasource.ts
```
## Technologie-Stack
@@ -66,18 +66,12 @@ Der Freigabelink verwendet die Basis-URL des Servers (ohne Workspace-Subdomain),
### Versionsverwaltung
Beim Aktualisieren einer bereits bereitgestellten Tarball-App verlangt der Server, dass die `version` in `package.json` **strikt höher** (gemäß der [semver](https://semver.org)-Reihenfolge) ist als die derzeit bereitgestellte Version. Das erneute Bereitstellen derselben Version oder das Pushen einer niedrigeren Version wird abgelehnt, bevor das Tarball gespeichert wird — in der CLI wird ein `VERSION_ALREADY_EXISTS`-Fehler angezeigt.
So veröffentlichen Sie ein Update:
1. Erhöhen Sie das Feld `version` in Ihrer `package.json` (z. B. `1.2.3` → `1.2.4`, `1.3.0` oder `2.0.0`).
1. Erhöhen Sie das Feld `version` in Ihrer `package.json`
2. Führen Sie `yarn twenty deploy` aus (oder `yarn twenty deploy --remote production`)
3. Arbeitsbereiche, die die App installiert haben, sehen in ihren Einstellungen, dass ein Upgrade verfügbar ist.
<Note>
Pre-Release-Tags funktionieren wie erwartet: Das Erhöhen von `1.0.0-rc.1` → `1.0.0-rc.2` ist zulässig, und eine finale Version wie `1.0.0` wird korrekt als höher als `1.0.0-rc.5` erkannt. Die Version in `package.json` muss selbst eine gültige semver-Zeichenfolge sein.
</Note>
{/* TODO: add screenshot of the Upgrade button */}
## Auf npm veröffentlichen
@@ -195,12 +189,3 @@ Sie können Apps auch über die Befehlszeile installieren:
```bash filename="Terminal"
yarn twenty install
```
<Note>
Der Server erzwingt bei der Installation semver-Versionierung und spiegelt damit die Regeln beim Bereitstellen wider:
* Die Installation derselben Version, die in Ihrem Arbeitsbereich bereits installiert ist, wird mit einem `APP_ALREADY_INSTALLED`-Fehler abgelehnt.
* Die Installation einer niedrigeren Version als die aktuell installierte wird mit einem `CANNOT_DOWNGRADE_APPLICATION`-Fehler abgelehnt.
Um eine neuere Version zu installieren, stellen Sie sie zuerst bereit oder veröffentlichen Sie sie und führen Sie dann `yarn twenty install` erneut aus.
</Note>
@@ -47,7 +47,7 @@ npx nx run twenty-server:database:reset
#### Para objetos en esquemas Core/Metadata (TypeORM)
```bash
npx nx run twenty-server:database:migrate:generate
npx nx run twenty-server:typeorm migration:generate src/database/typeorm/core/migrations/nameOfYourMigration -d src/database/typeorm/core/core.datasource.ts
```
## Stack Tecnológico
@@ -47,7 +47,7 @@ npx nx run twenty-server:database:reset
#### Per oggetti negli schemi Core/Metadata (TypeORM)
```bash
npx nx run twenty-server:database:migrate:generate
npx nx run twenty-server:typeorm migration:generate src/database/typeorm/core/migrations/nameOfYourMigration -d src/database/typeorm/core/core.datasource.ts
```
## Tech Stack
@@ -66,18 +66,12 @@ Il link di condivisione utilizza l'URL di base del server (senza alcun sottodomi
### Gestione delle versioni
Quando si aggiorna un'app in formato tarball già distribuita, il server richiede che la `version` in `package.json` sia **strettamente superiore** (per l'ordinamento [semver](https://semver.org)) rispetto alla versione attualmente distribuita. Eseguire nuovamente il deploy della stessa versione, o pubblicarne una inferiore, viene rifiutato prima che il tarball venga archiviato — vedrai un errore `VERSION_ALREADY_EXISTS` nella CLI.
Per rilasciare un aggiornamento:
1. Incrementa il campo `version` nel tuo `package.json` (ad es. `1.2.3` → `1.2.4`, `1.3.0` o `2.0.0`).
1. Incrementa il campo `version` nel tuo `package.json`
2. Esegui `yarn twenty deploy` (oppure `yarn twenty deploy --remote production`)
3. Gli spazi di lavoro che hanno l'app installata vedranno l'aggiornamento disponibile nelle proprie impostazioni
<Note>
I tag di pre-release funzionano come previsto: incrementare `1.0.0-rc.1` → `1.0.0-rc.2` è consentito e una release finale come `1.0.0` viene correttamente riconosciuta come superiore a `1.0.0-rc.5`. La versione in `package.json` deve essere essa stessa una stringa semver valida.
</Note>
{/* TODO: add screenshot of the Upgrade button */}
## Pubblicazione su npm
@@ -195,12 +189,3 @@ Puoi anche installare le app dalla riga di comando:
```bash filename="Terminal"
yarn twenty install
```
<Note>
Il server applica il versioning semver durante linstallazione, rispecchiando le regole del deploy:
* Linstallazione della stessa versione già installata nel tuo spazio di lavoro viene rifiutata con un errore `APP_ALREADY_INSTALLED`.
* Linstallazione di una versione inferiore rispetto a quella attualmente installata viene rifiutata con un errore `CANNOT_DOWNGRADE_APPLICATION`.
Per installare una versione più recente, effettua prima il deploy o la pubblicazione, quindi riesegui `yarn twenty install`.
</Note>
@@ -47,7 +47,7 @@ npx nx run twenty-server:database:reset
#### Para objetos nos esquemas Core/Metadata (TypeORM)
```bash
npx nx run twenty-server:database:migrate:generate
npx nx run twenty-server:typeorm migration:generate src/database/typeorm/core/migrations/nameOfYourMigration -d src/database/typeorm/core/core.datasource.ts
```
## Pilha de Tecnologias
@@ -66,18 +66,12 @@ O link de compartilhamento usa a URL base do servidor (sem qualquer subdomínio
### Gerenciamento de versões
Ao atualizar um aplicativo empacotado como tarball já implantado, o servidor exige que o `version` no `package.json` seja **estritamente maior** (de acordo com a ordenação do [semver](https://semver.org)) do que a versão atualmente implantada. Reimplantar a mesma versão, ou enviar uma inferior, é rejeitado antes que o tarball seja armazenado — você verá um erro `VERSION_ALREADY_EXISTS` na CLI.
Para lançar uma atualização:
1. Atualize o campo `version` no seu `package.json` (por exemplo, `1.2.3` → `1.2.4`, `1.3.0` ou `2.0.0`)
1. Atualize o campo `version` no seu `package.json`
2. Execute `yarn twenty deploy` (ou `yarn twenty deploy --remote production`)
3. Os espaços de trabalho que têm o aplicativo instalado verão a atualização disponível em suas configurações
<Note>
Tags de pré-lançamento funcionam como esperado: incrementar `1.0.0-rc.1` → `1.0.0-rc.2` é permitido, e uma versão final como `1.0.0` é corretamente reconhecida como superior a `1.0.0-rc.5`. A versão em `package.json` deve ser, ela própria, uma string semver válida.
</Note>
{/* TODO: add screenshot of the Upgrade button */}
## Publicação no npm
@@ -195,12 +189,3 @@ Você também pode instalar apps pela linha de comando:
```bash filename="Terminal"
yarn twenty install
```
<Note>
O servidor impõe o versionamento semver na instalação, espelhando as regras da implantação:
* Instalar a mesma versão que já está instalada no seu espaço de trabalho é rejeitado com um erro `APP_ALREADY_INSTALLED`.
* Instalar uma versão inferior à atualmente instalada é rejeitado com um erro `CANNOT_DOWNGRADE_APPLICATION`.
Para instalar uma versão mais recente, implante ou publique-a primeiro e, em seguida, execute novamente `yarn twenty install`.
</Note>
@@ -47,7 +47,7 @@ npx nx run twenty-server:database:reset
#### Pentru obiectele din schematizările de Bază/Metadate (TypeORM)
```bash
npx nx run twenty-server:database:migrate:generate
npx nx run twenty-server:typeorm migration:generate src/database/typeorm/core/migrations/nameOfYourMigration -d src/database/typeorm/core/core.datasource.ts
```
## Tehnologii Utilizate
@@ -47,7 +47,7 @@ npx nx run twenty-server:database:reset
#### Для объектов в схемах Core/Metadata (TypeORM)
```bash
npx nx run twenty-server:database:migrate:generate
npx nx run twenty-server:typeorm migration:generate src/database/typeorm/core/migrations/nameOfYourMigration -d src/database/typeorm/core/core.datasource.ts
```
## Технологический стек
@@ -66,18 +66,12 @@ yarn twenty deploy
### Управление версиями
When updating an already deployed tarball app, the server requires the `version` in `package.json` to be **strictly higher** (per [semver](https://semver.org) ordering) than the currently deployed version. Повторное развёртывание той же версии или публикация более низкой версии отклоняются до сохранения tarball — в CLI вы увидите ошибку `VERSION_ALREADY_EXISTS`.
Чтобы выпустить обновление:
1. Увеличьте значение поля `version` в вашем `package.json` (например: `1.2.3` → `1.2.4`, `1.3.0` или `2.0.0`).
1. Обновите значение поля `version` в файле `package.json`
2. Выполните `yarn twenty deploy` (или `yarn twenty deploy --remote production`)
3. Рабочие пространства, в которых установлено приложение, увидят доступное обновление в своих настройках
<Note>
Пререлизные теги работают как ожидается: повышение версии `1.0.0-rc.1` → `1.0.0-rc.2` допускается, а финальный релиз вроде `1.0.0` корректно распознаётся как более высокий, чем `1.0.0-rc.5`. Версия в `package.json` должна сама по себе быть корректной строкой semver.
</Note>
{/* TODO: add screenshot of the Upgrade button */}
## Публикация в npm
@@ -195,12 +189,3 @@ jobs:
```bash filename="Terminal"
yarn twenty install
```
<Note>
Сервер при установке применяет версионирование semver, аналогичное правилам при развёртывании:
* Установка той же версии, которая уже установлена в вашем рабочем пространстве, отклоняется с ошибкой `APP_ALREADY_INSTALLED`.
* Установка версии ниже текущей отклоняется с ошибкой `CANNOT_DOWNGRADE_APPLICATION`.
Чтобы установить более новую версию, сначала разверните или опубликуйте её, затем снова выполните `yarn twenty install`.
</Note>
@@ -47,7 +47,7 @@ npx nx run twenty-server:database:reset
#### Core/Metadata şemalarında (TypeORM) nesneler için
```bash
npx nx run twenty-server:database:migrate:generate
npx nx run twenty-server:typeorm migration:generate src/database/typeorm/core/migrations/nameOfYourMigration -d src/database/typeorm/core/core.datasource.ts
```
## Teknoloji Yığını
@@ -66,18 +66,12 @@ Paylaşım bağlantısı, sunucunun temel URLsini (herhangi bir çalışma al
### Sürüm yönetimi
Halihazırda dağıtılmış bir tarball uygulamasını güncellerken, sunucu `package.json` içindeki `version` değerinin, şu anda dağıtılmış sürümden ([semver](https://semver.org) sıralamasına göre) **kesinlikle daha yüksek** olmasını gerektirir. Aynı sürümü yeniden dağıtmak veya daha düşük bir sürümü göndermek, tarball depolanmadan önce reddedilir — CLI'de `VERSION_ALREADY_EXISTS` hatasını görürsünüz.
Bir güncelleme yayımlamak için:
1. `package.json` içindeki `version` alanını artırın (ör. `1.2.3` → `1.2.4`, `1.3.0` veya `2.0.0`)
1. `package.json` içindeki `version` alanını artırın
2. `yarn twenty deploy` (veya `yarn twenty deploy --remote production`) komutunu çalıştırın
3. Uygulamayı kurmuş olan çalışma alanları, ayarlarında mevcut güncellemeyi görecektir
<Note>
Ön sürüm etiketleri beklendiği gibi çalışır: `1.0.0-rc.1` → `1.0.0-rc.2` sürümünü artırmak mümkündür ve `1.0.0` gibi nihai bir sürüm, `1.0.0-rc.5` sürümünden daha yüksek olarak doğru şekilde tanınır. `package.json` içindeki sürümün kendisi geçerli bir semver dizesi olmalıdır.
</Note>
{/* TODO: add screenshot of the Upgrade button */}
## npmye yayımlama
@@ -195,12 +189,3 @@ Uygulamaları komut satırından da yükleyebilirsiniz:
```bash filename="Terminal"
yarn twenty install
```
<Note>
Sunucu, kurulum sırasında semver sürümlemesini zorunlu kılar ve dağıtımdaki kuralları yansıtır:
* Çalışma alanınızda zaten yüklü olanla aynı sürümün kurulumu, `APP_ALREADY_INSTALLED` hatasıyla reddedilir.
* Halihazırda yüklü olandan daha düşük bir sürümü kurmak, `CANNOT_DOWNGRADE_APPLICATION` hatasıyla reddedilir.
Daha yeni bir sürümü kurmak için önce onu dağıtın veya yayımlayın, ardından `yarn twenty install` komutunu yeniden çalıştırın.
</Note>
File diff suppressed because one or more lines are too long
+49 -116
View File
@@ -158,16 +158,6 @@ msgstr "{0, plural, one {Jy het nie toestemming om toegang tot die {fieldsList}
msgid "{0} credits"
msgstr "{0} krediete"
#. js-lingui-id: peiknr
#. placeholder {0}: activeVisibleFieldLabels.length
#. placeholder {0}: activeFilterLabels.length
#. placeholder {0}: activeSortLabels.length
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
msgid "{0} shown"
msgstr ""
#. js-lingui-id: r4l/MK
#. placeholder {0}: formatUsageValue(totalCredits)
#: src/pages/settings/SettingsUsageUserDetail.tsx
@@ -1785,12 +1775,6 @@ msgstr "En"
msgid "Any {fieldLabel} field"
msgstr "Enige {fieldLabel}-veld"
#. js-lingui-id: COyjuu
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
msgid "Any device"
msgstr ""
#. js-lingui-id: I8f+hC
#: src/modules/views/components/AnyFieldSearchChip.tsx
msgid "Any field"
@@ -1964,11 +1948,6 @@ msgstr "Toepassing besonderhede"
msgid "Application installed successfully."
msgstr "Toepassing suksesvol geïnstalleer."
#. js-lingui-id: LllWIc
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
msgid "Application Logs"
msgstr ""
#. js-lingui-id: +tE2x9
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
msgid "Application successfully uninstalled."
@@ -3356,6 +3335,11 @@ msgstr "Stel CalDAV-instellings op om u kalendergebeurtenisse te sinchroniseer."
msgid "Configure date, time, number, timezone, and calendar start day"
msgstr "Konfigureer datum, tyd, nommer, tydsone, en kalender begin dag"
#. js-lingui-id: +SQwHr
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Configure default AI models and availability"
msgstr "Konfigureer verstek-AI-modelle en beskikbaarheid"
#. js-lingui-id: utsXG8
#: src/pages/settings/security/SettingsSecurity.tsx
msgid "Configure fallback login methods for users with SSO bypass permissions"
@@ -3401,11 +3385,6 @@ msgstr "Konfigureer hierdie widget om velde te vertoon"
msgid "Configure when this function should be executed"
msgstr "Konfigureer wanneer hierdie funksie uitgevoer moet word"
#. js-lingui-id: hzDiM0
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Configure your default AI model"
msgstr ""
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@@ -3534,7 +3513,7 @@ msgstr "Inhoud"
#. js-lingui-id: M73whl
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Context"
@@ -3732,16 +3711,21 @@ msgstr "Kernobjekte"
msgid "Cost"
msgstr "Koste"
#. js-lingui-id: Iw/ard
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Cost / 1M"
msgstr "Koste / 1M"
#. js-lingui-id: 3kzLg2
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
msgid "Cost / 1M tokens"
msgstr "Koste / 1M tokens"
#. js-lingui-id: iX2opZ
#: src/modules/settings/billing/components/SettingsBillingCreditsSection.tsx
msgid "Cost per 1k Extra Credits"
msgstr "Koste per 1k ekstra krediette"
#. js-lingui-id: Z9Z9PX
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
msgid "Cost per 1M tokens"
msgstr ""
#. js-lingui-id: 3X5ngu
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
msgid "Cost per million tokens (USD)"
@@ -4279,6 +4263,7 @@ msgstr "Paneelbord suksesvol gedupliseer"
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Data"
msgstr "Data"
@@ -4331,7 +4316,7 @@ msgid "Data on display"
msgstr "Data op vertoon"
#. js-lingui-id: Ix/CMz
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Data residency"
msgstr "Data-ligging"
@@ -4494,7 +4479,6 @@ msgid "default"
msgstr ""
#. js-lingui-id: ovBPCi
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
msgid "Default"
@@ -4833,11 +4817,6 @@ msgstr "Verwyderde rekord"
msgid "Deleting this method will remove it permanently from your account."
msgstr "Deur hierdie metode te verwyder, sal dit permanent van u rekening verwyder word."
#. js-lingui-id: Ssdrw4
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
msgid "Deprecated"
msgstr ""
#. js-lingui-id: O3LJh6
#: src/modules/side-panel/pages/page-layout/utils/getSortLabelSuffixForFieldType.ts
#: src/modules/side-panel/pages/page-layout/utils/getSortLabelSuffixForFieldType.ts
@@ -4873,12 +4852,6 @@ msgstr "Beskryf wat jy wil hê die KI moet doen..."
msgid "Description"
msgstr "Beskrywing"
#. js-lingui-id: BBqGS9
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
msgid "Desktop"
msgstr ""
#. js-lingui-id: +ow7t4
#: src/modules/settings/roles/role-permissions/object-level-permissions/utils/objectPermissionKeyToHumanReadableText.ts
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
@@ -4901,7 +4874,7 @@ msgid "Detach"
msgstr "Ontkoppel"
#. js-lingui-id: URmyfc
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Details"
msgstr "Besonderhede"
@@ -5336,8 +5309,6 @@ msgstr ""
#. js-lingui-id: uBAxNB
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/FieldWidgetLayoutDropdownContent.tsx
msgid "Editor"
msgstr "Redigeerder"
@@ -6093,8 +6064,8 @@ msgid "Evaluations"
msgstr ""
#. js-lingui-id: 0pC/y6
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/modules/activities/calendar/components/CalendarEventDetails.tsx
msgid "Event"
msgstr "Geleentheid"
@@ -6213,11 +6184,6 @@ msgstr "Sluit nie-professionele e-posse uit"
msgid "Exclude the following people and domains from my email sync. Internal conversations will not be imported"
msgstr "Sluit die volgende mense en domeine uit van my e-possinchronisasie. Interne gesprekke sal nie ingevoer word nie"
#. js-lingui-id: B0clc7
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Execution ID"
msgstr ""
#. js-lingui-id: YzI8cc
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsSelect.tsx
msgid "Existing Field"
@@ -6547,8 +6513,6 @@ msgstr "Kon nie model opdateer nie"
#. js-lingui-id: W7Ff/4
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Failed to update model availability"
msgstr "Kon nie modelbeskikbaarheid opdateer nie"
@@ -6558,11 +6522,6 @@ msgstr "Kon nie modelbeskikbaarheid opdateer nie"
msgid "Failed to update model recommendation"
msgstr "Kon nie modelaanbeveling opdateer nie"
#. js-lingui-id: q1MtjM
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
msgid "Failed to update model recommendations"
msgstr ""
#. js-lingui-id: rCUG3c
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Failed to update model selection mode"
@@ -7053,11 +7012,6 @@ msgstr "Front-end-komponente"
msgid "Full access"
msgstr "Volle toegang"
#. js-lingui-id: YMZBxa
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Function"
msgstr ""
#. js-lingui-id: AHOl4W
#: src/modules/settings/logic-functions/components/SettingsLogicFunctionLabelContainer.tsx
msgid "Function name"
@@ -8408,7 +8362,6 @@ msgstr "Begin handmatig"
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldsSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Layout"
@@ -8482,11 +8435,6 @@ msgstr ""
msgid "Less than or equal"
msgstr "Kleiner as of gelyk aan"
#. js-lingui-id: oCHfGC
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Level"
msgstr ""
#. js-lingui-id: 3qg5Ro
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
@@ -8921,7 +8869,7 @@ msgstr "Maksimum invoer kapasiteit: {formatSpreadsheetMaxRecordImportCapacity} r
#. js-lingui-id: S8w4XA
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Max output"
msgstr "Maksimum uitset"
@@ -9031,11 +8979,6 @@ msgstr "Voeg rekords saam"
msgid "Merging..."
msgstr "Saamvoeg..."
#. js-lingui-id: xDAtGP
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Message"
msgstr ""
#. js-lingui-id: U15XwX
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Message not found"
@@ -9133,12 +9076,6 @@ msgstr "Toestemming om e-poskonsepte op te stel ontbreek."
msgid "Mission accomplished!"
msgstr "Missie voltooi!"
#. js-lingui-id: dMsM20
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
msgid "Mobile"
msgstr ""
#. js-lingui-id: scu3wk
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPromptTab.tsx
msgid "Model"
@@ -9168,6 +9105,7 @@ msgstr "Model-ID word vereis"
#. js-lingui-id: //nm2/
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Models"
msgstr "Modelle"
@@ -9392,12 +9330,12 @@ msgstr "mySkill"
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
#: src/modules/settings/data-model/new-object/components/SettingsAvailableStandardObjectsSection.tsx
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/config-variables/components/SettingsAdminConfigVariablesTable.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Name"
msgstr "Naam"
@@ -10062,12 +10000,6 @@ msgstr "Geen toestemmings vir hierdie toepassing gekonfigureer nie."
msgid "No permissions have been set for individual objects."
msgstr "Geen toestemmings is ingestel vir individuele voorwerpe nie."
#. js-lingui-id: V/+aTW
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordFieldChip.tsx
msgid "No record"
msgstr ""
#. js-lingui-id: ePgApM
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerManual.tsx
msgid "No record is required to trigger this workflow"
@@ -10079,6 +10011,11 @@ msgstr "Geen rekord is nodig om hierdie werkvloei te aktiveer nie"
msgid "No record selected"
msgstr ""
#. js-lingui-id: X8wJTR
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
msgid "No records"
msgstr "Geen rekords"
#. js-lingui-id: EqGTpW
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateReadOnly.tsx
#: src/modules/object-record/record-picker/components/RecordPickerNoRecordFoundMenuItem.tsx
@@ -10392,7 +10329,7 @@ msgid "Object Events"
msgstr "Objekgebeurtenisse"
#. js-lingui-id: 79D4Az
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
msgid "Object ID"
msgstr "Objek-ID"
@@ -11346,8 +11283,8 @@ msgid "Prompt"
msgstr ""
#. js-lingui-id: l/UFPv
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
msgid "Properties"
msgstr "Eienskappe"
@@ -11370,8 +11307,8 @@ msgstr "Verskaf jou OIDC verskafferdetaljes"
#. js-lingui-id: aemBRq
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Provider"
msgstr "Verskaffer"
@@ -11597,7 +11534,7 @@ msgid "Record filter rule options"
msgstr "Opsies vir rekordfilterreël"
#. js-lingui-id: xSAYIn
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
msgid "Record ID"
msgstr "Rekord-ID"
@@ -11625,6 +11562,12 @@ msgstr "Rekordbladsy"
msgid "Record Selection"
msgstr "Rekord Seleksie"
#. js-lingui-id: J9Cfll
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutDashboardWidgetTypeSelect.tsx
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
msgid "Record Table"
msgstr "Rekordtabel"
#. js-lingui-id: NxW0+c
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
msgid "Record Table Settings"
@@ -11993,7 +11936,7 @@ msgid "Reset variable"
msgstr "Herstel veranderlike"
#. js-lingui-id: esl+Tv
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
msgid "Resource Type"
msgstr "Hulpbrontipe"
@@ -13009,7 +12952,6 @@ msgstr "Instelling van jou databasis..."
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsSection.tsx
#: src/modules/settings/roles/role/components/SettingsRole.tsx
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
@@ -13866,7 +13808,6 @@ msgstr "Oortjie Instellings"
#. js-lingui-id: 4hJhzz
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
msgid "Table"
@@ -14409,10 +14350,9 @@ msgid "Timeout"
msgstr "Tydsverloop"
#. js-lingui-id: 8TMaZI
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Timestamp"
msgstr "Tydstempel"
@@ -15256,9 +15196,9 @@ msgstr "Nuttig vir pivot-/koppelingstabelle"
#. js-lingui-id: 7PzzBU
#: src/pages/settings/SettingsTwoFactorAuthenticationMethod.tsx
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
#: src/pages/settings/ai/SettingsAIPrompts.tsx
@@ -15441,9 +15381,7 @@ msgid "view"
msgstr "aansig"
#. js-lingui-id: jpctdh
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutDashboardWidgetTypeSelect.tsx
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
@@ -15611,11 +15549,6 @@ msgstr "Violet"
msgid "Visibility"
msgstr "Sigbaarheid"
#. js-lingui-id: gkAApJ
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
msgid "Visibility Restriction"
msgstr ""
#. js-lingui-id: zYTdqe
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
+49 -116
View File
@@ -158,16 +158,6 @@ msgstr "{0, plural, zero {ليس لديك إذن للوصول إلى حقل {fie
msgid "{0} credits"
msgstr "{0} أرصدة"
#. js-lingui-id: peiknr
#. placeholder {0}: activeVisibleFieldLabels.length
#. placeholder {0}: activeFilterLabels.length
#. placeholder {0}: activeSortLabels.length
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
msgid "{0} shown"
msgstr ""
#. js-lingui-id: r4l/MK
#. placeholder {0}: formatUsageValue(totalCredits)
#: src/pages/settings/SettingsUsageUserDetail.tsx
@@ -1785,12 +1775,6 @@ msgstr "و"
msgid "Any {fieldLabel} field"
msgstr "أي حقل {fieldLabel}"
#. js-lingui-id: COyjuu
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
msgid "Any device"
msgstr ""
#. js-lingui-id: I8f+hC
#: src/modules/views/components/AnyFieldSearchChip.tsx
msgid "Any field"
@@ -1964,11 +1948,6 @@ msgstr "تفاصيل التطبيق"
msgid "Application installed successfully."
msgstr "تم تثبيت التطبيق بنجاح."
#. js-lingui-id: LllWIc
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
msgid "Application Logs"
msgstr ""
#. js-lingui-id: +tE2x9
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
msgid "Application successfully uninstalled."
@@ -3356,6 +3335,11 @@ msgstr "قم بتكوين إعدادات CalDAV لمزامنة أحداث الت
msgid "Configure date, time, number, timezone, and calendar start day"
msgstr "إعداد التاريخ والوقت والرقم والمنطقة الزمنية ويوم بدء التقويم"
#. js-lingui-id: +SQwHr
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Configure default AI models and availability"
msgstr "تهيئة نماذج الذكاء الاصطناعي الافتراضية وتوفرها"
#. js-lingui-id: utsXG8
#: src/pages/settings/security/SettingsSecurity.tsx
msgid "Configure fallback login methods for users with SSO bypass permissions"
@@ -3401,11 +3385,6 @@ msgstr "قم بتهيئة هذه الأداة لعرض الحقول"
msgid "Configure when this function should be executed"
msgstr "حدّد متى يجب تنفيذ هذه الوظيفة"
#. js-lingui-id: hzDiM0
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Configure your default AI model"
msgstr ""
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@@ -3534,7 +3513,7 @@ msgstr "المحتوى"
#. js-lingui-id: M73whl
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Context"
@@ -3732,16 +3711,21 @@ msgstr "الكائنات الأساسية"
msgid "Cost"
msgstr "التكلفة"
#. js-lingui-id: Iw/ard
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Cost / 1M"
msgstr "التكلفة / 1 مليون"
#. js-lingui-id: 3kzLg2
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
msgid "Cost / 1M tokens"
msgstr "التكلفة / 1 مليون رمز"
#. js-lingui-id: iX2opZ
#: src/modules/settings/billing/components/SettingsBillingCreditsSection.tsx
msgid "Cost per 1k Extra Credits"
msgstr "التكلفة لكل 1k من الإعتمادات الإضافية"
#. js-lingui-id: Z9Z9PX
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
msgid "Cost per 1M tokens"
msgstr ""
#. js-lingui-id: 3X5ngu
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
msgid "Cost per million tokens (USD)"
@@ -4279,6 +4263,7 @@ msgstr "تم تكرار لوحة القيادة بنجاح"
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Data"
msgstr "بيانات"
@@ -4331,7 +4316,7 @@ msgid "Data on display"
msgstr "البيانات المعروضة"
#. js-lingui-id: Ix/CMz
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Data residency"
msgstr "إقامة البيانات"
@@ -4494,7 +4479,6 @@ msgid "default"
msgstr ""
#. js-lingui-id: ovBPCi
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
msgid "Default"
@@ -4833,11 +4817,6 @@ msgstr "السجل المحذوف"
msgid "Deleting this method will remove it permanently from your account."
msgstr "سيؤدي حذف هذه الطريقة إلى إزالتها نهائيًا من حسابك."
#. js-lingui-id: Ssdrw4
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
msgid "Deprecated"
msgstr ""
#. js-lingui-id: O3LJh6
#: src/modules/side-panel/pages/page-layout/utils/getSortLabelSuffixForFieldType.ts
#: src/modules/side-panel/pages/page-layout/utils/getSortLabelSuffixForFieldType.ts
@@ -4873,12 +4852,6 @@ msgstr "صف ما تريد أن يقوم به الذكاء الاصطناعي...
msgid "Description"
msgstr "الوصف"
#. js-lingui-id: BBqGS9
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
msgid "Desktop"
msgstr ""
#. js-lingui-id: +ow7t4
#: src/modules/settings/roles/role-permissions/object-level-permissions/utils/objectPermissionKeyToHumanReadableText.ts
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
@@ -4901,7 +4874,7 @@ msgid "Detach"
msgstr "فصل"
#. js-lingui-id: URmyfc
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Details"
msgstr "تفاصيل"
@@ -5336,8 +5309,6 @@ msgstr ""
#. js-lingui-id: uBAxNB
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/FieldWidgetLayoutDropdownContent.tsx
msgid "Editor"
msgstr "محرر"
@@ -6093,8 +6064,8 @@ msgid "Evaluations"
msgstr ""
#. js-lingui-id: 0pC/y6
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/modules/activities/calendar/components/CalendarEventDetails.tsx
msgid "Event"
msgstr "حدث"
@@ -6213,11 +6184,6 @@ msgstr "استبعاد الرسائل الإلكترونية غير المهني
msgid "Exclude the following people and domains from my email sync. Internal conversations will not be imported"
msgstr "استبعاد الأشخاص والمجالات التالية من مزامنة البريد الإلكتروني الخاص بي. لن يتم استيراد المحادثات الداخلية"
#. js-lingui-id: B0clc7
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Execution ID"
msgstr ""
#. js-lingui-id: YzI8cc
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsSelect.tsx
msgid "Existing Field"
@@ -6547,8 +6513,6 @@ msgstr "فشل في تحديث النموذج"
#. js-lingui-id: W7Ff/4
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Failed to update model availability"
msgstr "فشل في تحديث توفر النموذج"
@@ -6558,11 +6522,6 @@ msgstr "فشل في تحديث توفر النموذج"
msgid "Failed to update model recommendation"
msgstr "فشل في تحديث توصية النموذج"
#. js-lingui-id: q1MtjM
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
msgid "Failed to update model recommendations"
msgstr ""
#. js-lingui-id: rCUG3c
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Failed to update model selection mode"
@@ -7053,11 +7012,6 @@ msgstr "المكوّنات الأمامية"
msgid "Full access"
msgstr "وصول كامل"
#. js-lingui-id: YMZBxa
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Function"
msgstr ""
#. js-lingui-id: AHOl4W
#: src/modules/settings/logic-functions/components/SettingsLogicFunctionLabelContainer.tsx
msgid "Function name"
@@ -8408,7 +8362,6 @@ msgstr "التشغيل يدويًا"
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldsSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Layout"
@@ -8482,11 +8435,6 @@ msgstr ""
msgid "Less than or equal"
msgstr "أقل من أو يساوي"
#. js-lingui-id: oCHfGC
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Level"
msgstr ""
#. js-lingui-id: 3qg5Ro
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
@@ -8921,7 +8869,7 @@ msgstr "الحد الأقصى لقدرة الاستيراد: {formatSpreadsheetM
#. js-lingui-id: S8w4XA
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Max output"
msgstr "الحد الأقصى للمخرجات"
@@ -9031,11 +8979,6 @@ msgstr "دمج السجلات"
msgid "Merging..."
msgstr "جارٍ الدمج..."
#. js-lingui-id: xDAtGP
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Message"
msgstr ""
#. js-lingui-id: U15XwX
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Message not found"
@@ -9133,12 +9076,6 @@ msgstr "إذن صياغة رسائل البريد الإلكتروني غير م
msgid "Mission accomplished!"
msgstr "تم إنجاز المهمة!"
#. js-lingui-id: dMsM20
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
msgid "Mobile"
msgstr ""
#. js-lingui-id: scu3wk
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPromptTab.tsx
msgid "Model"
@@ -9168,6 +9105,7 @@ msgstr "معرّف النموذج مطلوب"
#. js-lingui-id: //nm2/
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Models"
msgstr "النماذج"
@@ -9392,12 +9330,12 @@ msgstr "mySkill"
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
#: src/modules/settings/data-model/new-object/components/SettingsAvailableStandardObjectsSection.tsx
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/config-variables/components/SettingsAdminConfigVariablesTable.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Name"
msgstr "الاسم"
@@ -10062,12 +10000,6 @@ msgstr "لا توجد أذونات مُكوّنة لهذا التطبيق."
msgid "No permissions have been set for individual objects."
msgstr "لم يتم تعيين أي أذونات للعناصر الفردية."
#. js-lingui-id: V/+aTW
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordFieldChip.tsx
msgid "No record"
msgstr ""
#. js-lingui-id: ePgApM
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerManual.tsx
msgid "No record is required to trigger this workflow"
@@ -10079,6 +10011,11 @@ msgstr "لا يتطلب سجل لتفعيل سير العمل هذا"
msgid "No record selected"
msgstr ""
#. js-lingui-id: X8wJTR
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
msgid "No records"
msgstr "لا توجد سجلات"
#. js-lingui-id: EqGTpW
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateReadOnly.tsx
#: src/modules/object-record/record-picker/components/RecordPickerNoRecordFoundMenuItem.tsx
@@ -10392,7 +10329,7 @@ msgid "Object Events"
msgstr "أحداث الكائنات"
#. js-lingui-id: 79D4Az
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
msgid "Object ID"
msgstr "معرّف الكائن"
@@ -11346,8 +11283,8 @@ msgid "Prompt"
msgstr ""
#. js-lingui-id: l/UFPv
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
msgid "Properties"
msgstr "الخصائص"
@@ -11370,8 +11307,8 @@ msgstr "قدّم تفاصيل موفّر OIDC الخاص بك"
#. js-lingui-id: aemBRq
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Provider"
msgstr "المزود"
@@ -11597,7 +11534,7 @@ msgid "Record filter rule options"
msgstr "خيارات قواعد تصفية السجل"
#. js-lingui-id: xSAYIn
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
msgid "Record ID"
msgstr "معرّف السجل"
@@ -11625,6 +11562,12 @@ msgstr "صفحة السجل"
msgid "Record Selection"
msgstr "\\\\"
#. js-lingui-id: J9Cfll
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutDashboardWidgetTypeSelect.tsx
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
msgid "Record Table"
msgstr "جدول السجلات"
#. js-lingui-id: NxW0+c
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
msgid "Record Table Settings"
@@ -11993,7 +11936,7 @@ msgid "Reset variable"
msgstr "إعادة تعيين المتغير"
#. js-lingui-id: esl+Tv
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
msgid "Resource Type"
msgstr "نوع المورد"
@@ -13009,7 +12952,6 @@ msgstr "إعداد قاعدة البيانات الخاصة بك..."
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsSection.tsx
#: src/modules/settings/roles/role/components/SettingsRole.tsx
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
@@ -13866,7 +13808,6 @@ msgstr "إعدادات علامة التبويب"
#. js-lingui-id: 4hJhzz
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
msgid "Table"
@@ -14409,10 +14350,9 @@ msgid "Timeout"
msgstr "المهلة"
#. js-lingui-id: 8TMaZI
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Timestamp"
msgstr "الطابع الزمني"
@@ -15256,9 +15196,9 @@ msgstr "مفيد لجداول الربط/المحورية"
#. js-lingui-id: 7PzzBU
#: src/pages/settings/SettingsTwoFactorAuthenticationMethod.tsx
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
#: src/pages/settings/ai/SettingsAIPrompts.tsx
@@ -15441,9 +15381,7 @@ msgid "view"
msgstr "عرض"
#. js-lingui-id: jpctdh
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutDashboardWidgetTypeSelect.tsx
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
@@ -15611,11 +15549,6 @@ msgstr "بنفسجي"
msgid "Visibility"
msgstr "الرؤية"
#. js-lingui-id: gkAApJ
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
msgid "Visibility Restriction"
msgstr ""
#. js-lingui-id: zYTdqe
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
+49 -116
View File
@@ -158,16 +158,6 @@ msgstr "{0, plural, one {No teniu permís per accedir al camp {fieldsList}} othe
msgid "{0} credits"
msgstr "{0} crèdits"
#. js-lingui-id: peiknr
#. placeholder {0}: activeVisibleFieldLabels.length
#. placeholder {0}: activeFilterLabels.length
#. placeholder {0}: activeSortLabels.length
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
msgid "{0} shown"
msgstr ""
#. js-lingui-id: r4l/MK
#. placeholder {0}: formatUsageValue(totalCredits)
#: src/pages/settings/SettingsUsageUserDetail.tsx
@@ -1785,12 +1775,6 @@ msgstr "I"
msgid "Any {fieldLabel} field"
msgstr "Qualsevol camp {fieldLabel}"
#. js-lingui-id: COyjuu
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
msgid "Any device"
msgstr ""
#. js-lingui-id: I8f+hC
#: src/modules/views/components/AnyFieldSearchChip.tsx
msgid "Any field"
@@ -1964,11 +1948,6 @@ msgstr "Detalls de l'aplicació"
msgid "Application installed successfully."
msgstr "Aplicació instal·lada correctament."
#. js-lingui-id: LllWIc
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
msgid "Application Logs"
msgstr ""
#. js-lingui-id: +tE2x9
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
msgid "Application successfully uninstalled."
@@ -3356,6 +3335,11 @@ msgstr "Configureu la configuració de CalDAV per sincronitzar els vostres esdev
msgid "Configure date, time, number, timezone, and calendar start day"
msgstr "Configura la data, hora, número, fus horari i dia d'inici del calendari"
#. js-lingui-id: +SQwHr
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Configure default AI models and availability"
msgstr "Configura els models d'IA predeterminats i la seva disponibilitat"
#. js-lingui-id: utsXG8
#: src/pages/settings/security/SettingsSecurity.tsx
msgid "Configure fallback login methods for users with SSO bypass permissions"
@@ -3401,11 +3385,6 @@ msgstr "Configura aquest giny per mostrar camps"
msgid "Configure when this function should be executed"
msgstr "Configura quan s'ha d'executar aquesta funció"
#. js-lingui-id: hzDiM0
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Configure your default AI model"
msgstr ""
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@@ -3534,7 +3513,7 @@ msgstr "Contingut"
#. js-lingui-id: M73whl
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Context"
@@ -3732,16 +3711,21 @@ msgstr "Objectes principals"
msgid "Cost"
msgstr "Cost"
#. js-lingui-id: Iw/ard
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Cost / 1M"
msgstr "Cost / 1M"
#. js-lingui-id: 3kzLg2
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
msgid "Cost / 1M tokens"
msgstr "Cost / 1M tokens"
#. js-lingui-id: iX2opZ
#: src/modules/settings/billing/components/SettingsBillingCreditsSection.tsx
msgid "Cost per 1k Extra Credits"
msgstr "Cost per 1 k Crèdits Extres"
#. js-lingui-id: Z9Z9PX
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
msgid "Cost per 1M tokens"
msgstr ""
#. js-lingui-id: 3X5ngu
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
msgid "Cost per million tokens (USD)"
@@ -4279,6 +4263,7 @@ msgstr "Quadre de comandament duplicat correctament"
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Data"
msgstr "Dades"
@@ -4331,7 +4316,7 @@ msgid "Data on display"
msgstr "Dades a mostrar"
#. js-lingui-id: Ix/CMz
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Data residency"
msgstr "Residència de dades"
@@ -4494,7 +4479,6 @@ msgid "default"
msgstr ""
#. js-lingui-id: ovBPCi
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
msgid "Default"
@@ -4833,11 +4817,6 @@ msgstr "Registre suprimit"
msgid "Deleting this method will remove it permanently from your account."
msgstr "Eliminar aquest mètode el eliminarà permanentment del teu compte."
#. js-lingui-id: Ssdrw4
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
msgid "Deprecated"
msgstr ""
#. js-lingui-id: O3LJh6
#: src/modules/side-panel/pages/page-layout/utils/getSortLabelSuffixForFieldType.ts
#: src/modules/side-panel/pages/page-layout/utils/getSortLabelSuffixForFieldType.ts
@@ -4873,12 +4852,6 @@ msgstr "Descriviu què voleu que faci la IA..."
msgid "Description"
msgstr "Descripció"
#. js-lingui-id: BBqGS9
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
msgid "Desktop"
msgstr ""
#. js-lingui-id: +ow7t4
#: src/modules/settings/roles/role-permissions/object-level-permissions/utils/objectPermissionKeyToHumanReadableText.ts
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
@@ -4901,7 +4874,7 @@ msgid "Detach"
msgstr "Desvincula"
#. js-lingui-id: URmyfc
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Details"
msgstr "Detalls"
@@ -5336,8 +5309,6 @@ msgstr ""
#. js-lingui-id: uBAxNB
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/FieldWidgetLayoutDropdownContent.tsx
msgid "Editor"
msgstr "Editor"
@@ -6093,8 +6064,8 @@ msgid "Evaluations"
msgstr ""
#. js-lingui-id: 0pC/y6
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/modules/activities/calendar/components/CalendarEventDetails.tsx
msgid "Event"
msgstr "Esdeveniment"
@@ -6213,11 +6184,6 @@ msgstr "Excloure els correus electrònics no professionals"
msgid "Exclude the following people and domains from my email sync. Internal conversations will not be imported"
msgstr "Exclou les persones i dominis següents de la meva sincronització del correu electrònic. Les converses internes no s'importaran"
#. js-lingui-id: B0clc7
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Execution ID"
msgstr ""
#. js-lingui-id: YzI8cc
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsSelect.tsx
msgid "Existing Field"
@@ -6547,8 +6513,6 @@ msgstr "No s'ha pogut actualitzar el model"
#. js-lingui-id: W7Ff/4
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Failed to update model availability"
msgstr "No s'ha pogut actualitzar la disponibilitat del model"
@@ -6558,11 +6522,6 @@ msgstr "No s'ha pogut actualitzar la disponibilitat del model"
msgid "Failed to update model recommendation"
msgstr "No s'ha pogut actualitzar la recomanació del model"
#. js-lingui-id: q1MtjM
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
msgid "Failed to update model recommendations"
msgstr ""
#. js-lingui-id: rCUG3c
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Failed to update model selection mode"
@@ -7053,11 +7012,6 @@ msgstr "Components frontals"
msgid "Full access"
msgstr "Accés complet"
#. js-lingui-id: YMZBxa
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Function"
msgstr ""
#. js-lingui-id: AHOl4W
#: src/modules/settings/logic-functions/components/SettingsLogicFunctionLabelContainer.tsx
msgid "Function name"
@@ -8408,7 +8362,6 @@ msgstr "Llança manualment"
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldsSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Layout"
@@ -8482,11 +8435,6 @@ msgstr ""
msgid "Less than or equal"
msgstr "Menor o igual"
#. js-lingui-id: oCHfGC
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Level"
msgstr ""
#. js-lingui-id: 3qg5Ro
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
@@ -8921,7 +8869,7 @@ msgstr "Capacitat màxima d'importació: {formatSpreadsheetMaxRecordImportCapaci
#. js-lingui-id: S8w4XA
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Max output"
msgstr "Sortida màxima"
@@ -9031,11 +8979,6 @@ msgstr "Fusionar registres"
msgid "Merging..."
msgstr "Fusionant..."
#. js-lingui-id: xDAtGP
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Message"
msgstr ""
#. js-lingui-id: U15XwX
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Message not found"
@@ -9133,12 +9076,6 @@ msgstr "Falta el permís per redactar esborranys de correu electrònic."
msgid "Mission accomplished!"
msgstr "Missió acomplerta!"
#. js-lingui-id: dMsM20
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
msgid "Mobile"
msgstr ""
#. js-lingui-id: scu3wk
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPromptTab.tsx
msgid "Model"
@@ -9168,6 +9105,7 @@ msgstr "L'ID del model és necessari"
#. js-lingui-id: //nm2/
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Models"
msgstr "Models"
@@ -9392,12 +9330,12 @@ msgstr "mySkill"
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
#: src/modules/settings/data-model/new-object/components/SettingsAvailableStandardObjectsSection.tsx
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/config-variables/components/SettingsAdminConfigVariablesTable.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Name"
msgstr "Nom"
@@ -10062,12 +10000,6 @@ msgstr "No hi ha cap permís configurat per a aquesta aplicació."
msgid "No permissions have been set for individual objects."
msgstr "No s'han establert permisos per a objectes individuals."
#. js-lingui-id: V/+aTW
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordFieldChip.tsx
msgid "No record"
msgstr ""
#. js-lingui-id: ePgApM
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerManual.tsx
msgid "No record is required to trigger this workflow"
@@ -10079,6 +10011,11 @@ msgstr "No es requereix cap registre per activar aquest flux de treball"
msgid "No record selected"
msgstr ""
#. js-lingui-id: X8wJTR
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
msgid "No records"
msgstr "Sense registres"
#. js-lingui-id: EqGTpW
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateReadOnly.tsx
#: src/modules/object-record/record-picker/components/RecordPickerNoRecordFoundMenuItem.tsx
@@ -10392,7 +10329,7 @@ msgid "Object Events"
msgstr "Esdeveniments de l'objecte"
#. js-lingui-id: 79D4Az
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
msgid "Object ID"
msgstr "ID de l'objecte"
@@ -11346,8 +11283,8 @@ msgid "Prompt"
msgstr ""
#. js-lingui-id: l/UFPv
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
msgid "Properties"
msgstr "Propietats"
@@ -11370,8 +11307,8 @@ msgstr "Proporciona els detalls del teu proveïdor OIDC"
#. js-lingui-id: aemBRq
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Provider"
msgstr "Proveïdor"
@@ -11597,7 +11534,7 @@ msgid "Record filter rule options"
msgstr "Opcions de regles del filtre de registres"
#. js-lingui-id: xSAYIn
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
msgid "Record ID"
msgstr "ID del registre"
@@ -11625,6 +11562,12 @@ msgstr "Pàgina de registre"
msgid "Record Selection"
msgstr "Selecció d'enregistrament"
#. js-lingui-id: J9Cfll
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutDashboardWidgetTypeSelect.tsx
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
msgid "Record Table"
msgstr "Taula de registres"
#. js-lingui-id: NxW0+c
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
msgid "Record Table Settings"
@@ -11993,7 +11936,7 @@ msgid "Reset variable"
msgstr "Restablir variable"
#. js-lingui-id: esl+Tv
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
msgid "Resource Type"
msgstr "Tipus de recurs"
@@ -13009,7 +12952,6 @@ msgstr "Configurant la teva base de dades..."
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsSection.tsx
#: src/modules/settings/roles/role/components/SettingsRole.tsx
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
@@ -13866,7 +13808,6 @@ msgstr "Configuració de la pestanya"
#. js-lingui-id: 4hJhzz
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
msgid "Table"
@@ -14409,10 +14350,9 @@ msgid "Timeout"
msgstr "Temps d'espera"
#. js-lingui-id: 8TMaZI
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Timestamp"
msgstr "Marca de temps"
@@ -15256,9 +15196,9 @@ msgstr "Útil per a taules pivot/denllaç"
#. js-lingui-id: 7PzzBU
#: src/pages/settings/SettingsTwoFactorAuthenticationMethod.tsx
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
#: src/pages/settings/ai/SettingsAIPrompts.tsx
@@ -15441,9 +15381,7 @@ msgid "view"
msgstr "vista"
#. js-lingui-id: jpctdh
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutDashboardWidgetTypeSelect.tsx
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
@@ -15611,11 +15549,6 @@ msgstr "Violeta"
msgid "Visibility"
msgstr "Visibilitat"
#. js-lingui-id: gkAApJ
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
msgid "Visibility Restriction"
msgstr ""
#. js-lingui-id: zYTdqe
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
+49 -116
View File
@@ -158,16 +158,6 @@ msgstr "{0, plural, one {Nemáte povolení pro přístup k poli {fieldsList}} fe
msgid "{0} credits"
msgstr "{0} kreditů"
#. js-lingui-id: peiknr
#. placeholder {0}: activeVisibleFieldLabels.length
#. placeholder {0}: activeFilterLabels.length
#. placeholder {0}: activeSortLabels.length
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
msgid "{0} shown"
msgstr ""
#. js-lingui-id: r4l/MK
#. placeholder {0}: formatUsageValue(totalCredits)
#: src/pages/settings/SettingsUsageUserDetail.tsx
@@ -1785,12 +1775,6 @@ msgstr "A"
msgid "Any {fieldLabel} field"
msgstr "Libovolné pole {fieldLabel}"
#. js-lingui-id: COyjuu
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
msgid "Any device"
msgstr ""
#. js-lingui-id: I8f+hC
#: src/modules/views/components/AnyFieldSearchChip.tsx
msgid "Any field"
@@ -1964,11 +1948,6 @@ msgstr "Podrobnosti aplikace"
msgid "Application installed successfully."
msgstr "Aplikace byla úspěšně nainstalována."
#. js-lingui-id: LllWIc
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
msgid "Application Logs"
msgstr ""
#. js-lingui-id: +tE2x9
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
msgid "Application successfully uninstalled."
@@ -3356,6 +3335,11 @@ msgstr "Konfigurujte nastavení CalDAV pro synchronizaci událostí kalendáře.
msgid "Configure date, time, number, timezone, and calendar start day"
msgstr "Nastavit datum, čas, číslo, časovou zónu a počáteční den kalendáře"
#. js-lingui-id: +SQwHr
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Configure default AI models and availability"
msgstr "Nakonfigurujte výchozí modely AI a jejich dostupnost"
#. js-lingui-id: utsXG8
#: src/pages/settings/security/SettingsSecurity.tsx
msgid "Configure fallback login methods for users with SSO bypass permissions"
@@ -3401,11 +3385,6 @@ msgstr "Nakonfigurujte tento widget, aby zobrazoval pole."
msgid "Configure when this function should be executed"
msgstr "Nastavte, kdy se má tato funkce spustit"
#. js-lingui-id: hzDiM0
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Configure your default AI model"
msgstr ""
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@@ -3534,7 +3513,7 @@ msgstr "Obsah"
#. js-lingui-id: M73whl
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Context"
@@ -3732,16 +3711,21 @@ msgstr "Základní objekty"
msgid "Cost"
msgstr "Cena"
#. js-lingui-id: Iw/ard
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Cost / 1M"
msgstr "Cena / 1M"
#. js-lingui-id: 3kzLg2
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
msgid "Cost / 1M tokens"
msgstr "Cena / 1M tokenů"
#. js-lingui-id: iX2opZ
#: src/modules/settings/billing/components/SettingsBillingCreditsSection.tsx
msgid "Cost per 1k Extra Credits"
msgstr "Cena za 1k dalších kreditů"
#. js-lingui-id: Z9Z9PX
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
msgid "Cost per 1M tokens"
msgstr ""
#. js-lingui-id: 3X5ngu
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
msgid "Cost per million tokens (USD)"
@@ -4279,6 +4263,7 @@ msgstr "Ovládací panel byl úspěšně duplikován"
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Data"
msgstr "Data"
@@ -4331,7 +4316,7 @@ msgid "Data on display"
msgstr "Data na displeji"
#. js-lingui-id: Ix/CMz
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Data residency"
msgstr "Umístění dat"
@@ -4494,7 +4479,6 @@ msgid "default"
msgstr ""
#. js-lingui-id: ovBPCi
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
msgid "Default"
@@ -4833,11 +4817,6 @@ msgstr "Smazaný záznam"
msgid "Deleting this method will remove it permanently from your account."
msgstr "Smazáním této metody ji trvale odeberete ze svého účtu."
#. js-lingui-id: Ssdrw4
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
msgid "Deprecated"
msgstr ""
#. js-lingui-id: O3LJh6
#: src/modules/side-panel/pages/page-layout/utils/getSortLabelSuffixForFieldType.ts
#: src/modules/side-panel/pages/page-layout/utils/getSortLabelSuffixForFieldType.ts
@@ -4873,12 +4852,6 @@ msgstr "Popište, co chcete, aby AI dělalo..."
msgid "Description"
msgstr "Popis"
#. js-lingui-id: BBqGS9
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
msgid "Desktop"
msgstr ""
#. js-lingui-id: +ow7t4
#: src/modules/settings/roles/role-permissions/object-level-permissions/utils/objectPermissionKeyToHumanReadableText.ts
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
@@ -4901,7 +4874,7 @@ msgid "Detach"
msgstr "Odpojit"
#. js-lingui-id: URmyfc
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Details"
msgstr "Podrobnosti"
@@ -5336,8 +5309,6 @@ msgstr ""
#. js-lingui-id: uBAxNB
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/FieldWidgetLayoutDropdownContent.tsx
msgid "Editor"
msgstr "Editor"
@@ -6093,8 +6064,8 @@ msgid "Evaluations"
msgstr ""
#. js-lingui-id: 0pC/y6
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/modules/activities/calendar/components/CalendarEventDetails.tsx
msgid "Event"
msgstr "Událost"
@@ -6213,11 +6184,6 @@ msgstr "Vyloučit nepracovní e-maily"
msgid "Exclude the following people and domains from my email sync. Internal conversations will not be imported"
msgstr "Vyloučit následující lidi a domény z mé synchronizace emailů. Interní konverzace nebudou importovány"
#. js-lingui-id: B0clc7
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Execution ID"
msgstr ""
#. js-lingui-id: YzI8cc
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsSelect.tsx
msgid "Existing Field"
@@ -6547,8 +6513,6 @@ msgstr "Nepodařilo se aktualizovat model"
#. js-lingui-id: W7Ff/4
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Failed to update model availability"
msgstr "Nepodařilo se aktualizovat dostupnost modelu"
@@ -6558,11 +6522,6 @@ msgstr "Nepodařilo se aktualizovat dostupnost modelu"
msgid "Failed to update model recommendation"
msgstr "Nepodařilo se aktualizovat doporučení modelu"
#. js-lingui-id: q1MtjM
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
msgid "Failed to update model recommendations"
msgstr ""
#. js-lingui-id: rCUG3c
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Failed to update model selection mode"
@@ -7053,11 +7012,6 @@ msgstr "Frontendové komponenty"
msgid "Full access"
msgstr "Plný přístup"
#. js-lingui-id: YMZBxa
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Function"
msgstr ""
#. js-lingui-id: AHOl4W
#: src/modules/settings/logic-functions/components/SettingsLogicFunctionLabelContainer.tsx
msgid "Function name"
@@ -8408,7 +8362,6 @@ msgstr "Spustit ručně"
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldsSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Layout"
@@ -8482,11 +8435,6 @@ msgstr ""
msgid "Less than or equal"
msgstr "Menší nebo rovno"
#. js-lingui-id: oCHfGC
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Level"
msgstr ""
#. js-lingui-id: 3qg5Ro
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
@@ -8921,7 +8869,7 @@ msgstr "Maximální kapacita importu: {formatSpreadsheetMaxRecordImportCapacity}
#. js-lingui-id: S8w4XA
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Max output"
msgstr "Maximální výstup"
@@ -9031,11 +8979,6 @@ msgstr "Sloučit záznamy"
msgid "Merging..."
msgstr "Slučování..."
#. js-lingui-id: xDAtGP
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Message"
msgstr ""
#. js-lingui-id: U15XwX
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Message not found"
@@ -9133,12 +9076,6 @@ msgstr "Chybí oprávnění pro vytváření konceptů e-mailů."
msgid "Mission accomplished!"
msgstr "Mise splněna!"
#. js-lingui-id: dMsM20
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
msgid "Mobile"
msgstr ""
#. js-lingui-id: scu3wk
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPromptTab.tsx
msgid "Model"
@@ -9168,6 +9105,7 @@ msgstr "ID modelu je povinné"
#. js-lingui-id: //nm2/
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Models"
msgstr "Modely"
@@ -9392,12 +9330,12 @@ msgstr "mySkill"
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
#: src/modules/settings/data-model/new-object/components/SettingsAvailableStandardObjectsSection.tsx
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/config-variables/components/SettingsAdminConfigVariablesTable.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Name"
msgstr "Název"
@@ -10062,12 +10000,6 @@ msgstr "Pro tuto aplikaci nejsou nakonfigurována žádná oprávnění."
msgid "No permissions have been set for individual objects."
msgstr "Žádná oprávnění nebyla nastavena pro jednotlivé objekty."
#. js-lingui-id: V/+aTW
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordFieldChip.tsx
msgid "No record"
msgstr ""
#. js-lingui-id: ePgApM
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerManual.tsx
msgid "No record is required to trigger this workflow"
@@ -10079,6 +10011,11 @@ msgstr "K aktivaci tohoto pracovního postupu není vyžadován žádný záznam
msgid "No record selected"
msgstr ""
#. js-lingui-id: X8wJTR
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
msgid "No records"
msgstr "Žádné záznamy"
#. js-lingui-id: EqGTpW
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateReadOnly.tsx
#: src/modules/object-record/record-picker/components/RecordPickerNoRecordFoundMenuItem.tsx
@@ -10392,7 +10329,7 @@ msgid "Object Events"
msgstr "Události objektů"
#. js-lingui-id: 79D4Az
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
msgid "Object ID"
msgstr "ID objektu"
@@ -11346,8 +11283,8 @@ msgid "Prompt"
msgstr ""
#. js-lingui-id: l/UFPv
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
msgid "Properties"
msgstr "Vlastnosti"
@@ -11370,8 +11307,8 @@ msgstr "Uveďte údaje o vašem poskytovateli OIDC"
#. js-lingui-id: aemBRq
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Provider"
msgstr "Poskytovatel"
@@ -11597,7 +11534,7 @@ msgid "Record filter rule options"
msgstr "Možnosti pravidel filtru záznamu"
#. js-lingui-id: xSAYIn
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
msgid "Record ID"
msgstr "ID záznamu"
@@ -11625,6 +11562,12 @@ msgstr "Záznamová stránka"
msgid "Record Selection"
msgstr "Výběr záznamů"
#. js-lingui-id: J9Cfll
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutDashboardWidgetTypeSelect.tsx
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
msgid "Record Table"
msgstr "Tabulka záznamů"
#. js-lingui-id: NxW0+c
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
msgid "Record Table Settings"
@@ -11993,7 +11936,7 @@ msgid "Reset variable"
msgstr "Obnovit proměnnou"
#. js-lingui-id: esl+Tv
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
msgid "Resource Type"
msgstr "Typ prostředku"
@@ -13009,7 +12952,6 @@ msgstr "Nastavení vaší databáze..."
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsSection.tsx
#: src/modules/settings/roles/role/components/SettingsRole.tsx
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
@@ -13866,7 +13808,6 @@ msgstr "Nastavení karet"
#. js-lingui-id: 4hJhzz
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
msgid "Table"
@@ -14409,10 +14350,9 @@ msgid "Timeout"
msgstr "Časový limit"
#. js-lingui-id: 8TMaZI
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Timestamp"
msgstr "Časové razítko"
@@ -15256,9 +15196,9 @@ msgstr "Užitečné pro pivot/spojovací tabulky"
#. js-lingui-id: 7PzzBU
#: src/pages/settings/SettingsTwoFactorAuthenticationMethod.tsx
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
#: src/pages/settings/ai/SettingsAIPrompts.tsx
@@ -15441,9 +15381,7 @@ msgid "view"
msgstr "pohled"
#. js-lingui-id: jpctdh
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutDashboardWidgetTypeSelect.tsx
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
@@ -15611,11 +15549,6 @@ msgstr "Fialková"
msgid "Visibility"
msgstr "Viditelnost"
#. js-lingui-id: gkAApJ
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
msgid "Visibility Restriction"
msgstr ""
#. js-lingui-id: zYTdqe
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
+49 -116
View File
@@ -158,16 +158,6 @@ msgstr "{0, plural, one {Du har ikke tilladelse til at få adgang til {fieldsLis
msgid "{0} credits"
msgstr "{0} kreditter"
#. js-lingui-id: peiknr
#. placeholder {0}: activeVisibleFieldLabels.length
#. placeholder {0}: activeFilterLabels.length
#. placeholder {0}: activeSortLabels.length
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
msgid "{0} shown"
msgstr ""
#. js-lingui-id: r4l/MK
#. placeholder {0}: formatUsageValue(totalCredits)
#: src/pages/settings/SettingsUsageUserDetail.tsx
@@ -1785,12 +1775,6 @@ msgstr "Og"
msgid "Any {fieldLabel} field"
msgstr "Ethvert {fieldLabel}-felt"
#. js-lingui-id: COyjuu
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
msgid "Any device"
msgstr ""
#. js-lingui-id: I8f+hC
#: src/modules/views/components/AnyFieldSearchChip.tsx
msgid "Any field"
@@ -1964,11 +1948,6 @@ msgstr "Applikationsdetaljer"
msgid "Application installed successfully."
msgstr "Applikationen blev installeret med succes."
#. js-lingui-id: LllWIc
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
msgid "Application Logs"
msgstr ""
#. js-lingui-id: +tE2x9
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
msgid "Application successfully uninstalled."
@@ -3356,6 +3335,11 @@ msgstr "Konfigurer CalDAV-indstillingerne for at synkronisere dine kalenderevent
msgid "Configure date, time, number, timezone, and calendar start day"
msgstr "Konfigurer dato, tid, tal, tidszone og kalenderstartdag"
#. js-lingui-id: +SQwHr
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Configure default AI models and availability"
msgstr "Konfigurer standard-AI-modeller og tilgængelighed"
#. js-lingui-id: utsXG8
#: src/pages/settings/security/SettingsSecurity.tsx
msgid "Configure fallback login methods for users with SSO bypass permissions"
@@ -3401,11 +3385,6 @@ msgstr "Konfigurer denne widget til at vise felter"
msgid "Configure when this function should be executed"
msgstr "Konfigurer, hvornår denne funktion skal køres"
#. js-lingui-id: hzDiM0
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Configure your default AI model"
msgstr ""
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@@ -3534,7 +3513,7 @@ msgstr "Indhold"
#. js-lingui-id: M73whl
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Context"
@@ -3732,16 +3711,21 @@ msgstr "Kerneobjekter"
msgid "Cost"
msgstr "Omkostninger"
#. js-lingui-id: Iw/ard
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Cost / 1M"
msgstr "Pris / 1M"
#. js-lingui-id: 3kzLg2
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
msgid "Cost / 1M tokens"
msgstr "Pris / 1M tokens"
#. js-lingui-id: iX2opZ
#: src/modules/settings/billing/components/SettingsBillingCreditsSection.tsx
msgid "Cost per 1k Extra Credits"
msgstr "Pris per 1k ekstra kreditter"
#. js-lingui-id: Z9Z9PX
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
msgid "Cost per 1M tokens"
msgstr ""
#. js-lingui-id: 3X5ngu
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
msgid "Cost per million tokens (USD)"
@@ -4279,6 +4263,7 @@ msgstr "Dashboard duplikeret med succes"
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Data"
msgstr "Data"
@@ -4331,7 +4316,7 @@ msgid "Data on display"
msgstr "Data på displayet"
#. js-lingui-id: Ix/CMz
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Data residency"
msgstr "Datalokation"
@@ -4494,7 +4479,6 @@ msgid "default"
msgstr ""
#. js-lingui-id: ovBPCi
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
msgid "Default"
@@ -4833,11 +4817,6 @@ msgstr "Slettet post"
msgid "Deleting this method will remove it permanently from your account."
msgstr "Ved at slette denne metode fjernes den permanent fra din konto."
#. js-lingui-id: Ssdrw4
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
msgid "Deprecated"
msgstr ""
#. js-lingui-id: O3LJh6
#: src/modules/side-panel/pages/page-layout/utils/getSortLabelSuffixForFieldType.ts
#: src/modules/side-panel/pages/page-layout/utils/getSortLabelSuffixForFieldType.ts
@@ -4873,12 +4852,6 @@ msgstr "Beskriv, hvad du vil have AI'en til at gøre..."
msgid "Description"
msgstr "Beskrivelse"
#. js-lingui-id: BBqGS9
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
msgid "Desktop"
msgstr ""
#. js-lingui-id: +ow7t4
#: src/modules/settings/roles/role-permissions/object-level-permissions/utils/objectPermissionKeyToHumanReadableText.ts
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
@@ -4901,7 +4874,7 @@ msgid "Detach"
msgstr "Fjern tilknytning"
#. js-lingui-id: URmyfc
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Details"
msgstr "Detaljer"
@@ -5336,8 +5309,6 @@ msgstr ""
#. js-lingui-id: uBAxNB
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/FieldWidgetLayoutDropdownContent.tsx
msgid "Editor"
msgstr "Editor"
@@ -6093,8 +6064,8 @@ msgid "Evaluations"
msgstr ""
#. js-lingui-id: 0pC/y6
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/modules/activities/calendar/components/CalendarEventDetails.tsx
msgid "Event"
msgstr "Begivenhed"
@@ -6213,11 +6184,6 @@ msgstr "Ekskluder ikke-professionelle e-mails"
msgid "Exclude the following people and domains from my email sync. Internal conversations will not be imported"
msgstr "Ekskluder følgende personer og domæner fra min e-mail-synkronisering. Interne samtaler vil ikke blive importeret"
#. js-lingui-id: B0clc7
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Execution ID"
msgstr ""
#. js-lingui-id: YzI8cc
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsSelect.tsx
msgid "Existing Field"
@@ -6547,8 +6513,6 @@ msgstr "Kunne ikke opdatere modellen"
#. js-lingui-id: W7Ff/4
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Failed to update model availability"
msgstr "Kunne ikke opdatere modellens tilgængelighed"
@@ -6558,11 +6522,6 @@ msgstr "Kunne ikke opdatere modellens tilgængelighed"
msgid "Failed to update model recommendation"
msgstr "Kunne ikke opdatere modelanbefaling"
#. js-lingui-id: q1MtjM
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
msgid "Failed to update model recommendations"
msgstr ""
#. js-lingui-id: rCUG3c
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Failed to update model selection mode"
@@ -7053,11 +7012,6 @@ msgstr "Frontkomponenter"
msgid "Full access"
msgstr "Fuld adgang"
#. js-lingui-id: YMZBxa
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Function"
msgstr ""
#. js-lingui-id: AHOl4W
#: src/modules/settings/logic-functions/components/SettingsLogicFunctionLabelContainer.tsx
msgid "Function name"
@@ -8408,7 +8362,6 @@ msgstr "Start manuelt"
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldsSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Layout"
@@ -8482,11 +8435,6 @@ msgstr ""
msgid "Less than or equal"
msgstr "Mindre end eller lig med"
#. js-lingui-id: oCHfGC
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Level"
msgstr ""
#. js-lingui-id: 3qg5Ro
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
@@ -8921,7 +8869,7 @@ msgstr "Maksimal importkapacitet: {formatSpreadsheetMaxRecordImportCapacity} pos
#. js-lingui-id: S8w4XA
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Max output"
msgstr "Maksimalt output"
@@ -9031,11 +8979,6 @@ msgstr "Flet poster"
msgid "Merging..."
msgstr "Fletter..."
#. js-lingui-id: xDAtGP
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Message"
msgstr ""
#. js-lingui-id: U15XwX
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Message not found"
@@ -9133,12 +9076,6 @@ msgstr "Manglende tilladelse til at oprette e-mail-kladder."
msgid "Mission accomplished!"
msgstr "Mission fuldført!"
#. js-lingui-id: dMsM20
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
msgid "Mobile"
msgstr ""
#. js-lingui-id: scu3wk
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPromptTab.tsx
msgid "Model"
@@ -9168,6 +9105,7 @@ msgstr "Model-id er påkrævet"
#. js-lingui-id: //nm2/
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Models"
msgstr "Modeller"
@@ -9392,12 +9330,12 @@ msgstr "mySkill"
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
#: src/modules/settings/data-model/new-object/components/SettingsAvailableStandardObjectsSection.tsx
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/config-variables/components/SettingsAdminConfigVariablesTable.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Name"
msgstr "Navn"
@@ -10062,12 +10000,6 @@ msgstr "Ingen tilladelser konfigureret for denne app."
msgid "No permissions have been set for individual objects."
msgstr "Der er ikke angivet tilladelser for individuelle objekter."
#. js-lingui-id: V/+aTW
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordFieldChip.tsx
msgid "No record"
msgstr ""
#. js-lingui-id: ePgApM
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerManual.tsx
msgid "No record is required to trigger this workflow"
@@ -10079,6 +10011,11 @@ msgstr "Ingen post kræves for at aktivere denne workflow"
msgid "No record selected"
msgstr ""
#. js-lingui-id: X8wJTR
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
msgid "No records"
msgstr "Ingen poster"
#. js-lingui-id: EqGTpW
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateReadOnly.tsx
#: src/modules/object-record/record-picker/components/RecordPickerNoRecordFoundMenuItem.tsx
@@ -10392,7 +10329,7 @@ msgid "Object Events"
msgstr "Objekthændelser"
#. js-lingui-id: 79D4Az
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
msgid "Object ID"
msgstr "Objekt-ID"
@@ -11346,8 +11283,8 @@ msgid "Prompt"
msgstr ""
#. js-lingui-id: l/UFPv
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
msgid "Properties"
msgstr "Egenskaber"
@@ -11370,8 +11307,8 @@ msgstr "Angiv dine OIDC-udbyderdetaljer"
#. js-lingui-id: aemBRq
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Provider"
msgstr "Udbyder"
@@ -11597,7 +11534,7 @@ msgid "Record filter rule options"
msgstr "Indstillinger for postfilterregler"
#. js-lingui-id: xSAYIn
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
msgid "Record ID"
msgstr "Post-ID"
@@ -11625,6 +11562,12 @@ msgstr "Post Side"
msgid "Record Selection"
msgstr "Optag valg"
#. js-lingui-id: J9Cfll
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutDashboardWidgetTypeSelect.tsx
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
msgid "Record Table"
msgstr "Posttabel"
#. js-lingui-id: NxW0+c
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
msgid "Record Table Settings"
@@ -11993,7 +11936,7 @@ msgid "Reset variable"
msgstr "Nulstil variabel"
#. js-lingui-id: esl+Tv
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
msgid "Resource Type"
msgstr "Ressourcetype"
@@ -13009,7 +12952,6 @@ msgstr "Opsætning af din database..."
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsSection.tsx
#: src/modules/settings/roles/role/components/SettingsRole.tsx
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
@@ -13866,7 +13808,6 @@ msgstr "Fanens indstillinger"
#. js-lingui-id: 4hJhzz
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
msgid "Table"
@@ -14411,10 +14352,9 @@ msgid "Timeout"
msgstr "Tidsgrænse"
#. js-lingui-id: 8TMaZI
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Timestamp"
msgstr "Tidstempel"
@@ -15258,9 +15198,9 @@ msgstr "Nyttigt til pivot-/koblingstabeller"
#. js-lingui-id: 7PzzBU
#: src/pages/settings/SettingsTwoFactorAuthenticationMethod.tsx
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
#: src/pages/settings/ai/SettingsAIPrompts.tsx
@@ -15443,9 +15383,7 @@ msgid "view"
msgstr "visning"
#. js-lingui-id: jpctdh
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutDashboardWidgetTypeSelect.tsx
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
@@ -15613,11 +15551,6 @@ msgstr "Violet"
msgid "Visibility"
msgstr "Synlighed"
#. js-lingui-id: gkAApJ
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
msgid "Visibility Restriction"
msgstr ""
#. js-lingui-id: zYTdqe
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
+49 -116
View File
@@ -158,16 +158,6 @@ msgstr "{0, plural, one {Sie haben keine Berechtigung, auf das Feld {fieldsList}
msgid "{0} credits"
msgstr "{0} Credits"
#. js-lingui-id: peiknr
#. placeholder {0}: activeVisibleFieldLabels.length
#. placeholder {0}: activeFilterLabels.length
#. placeholder {0}: activeSortLabels.length
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
msgid "{0} shown"
msgstr ""
#. js-lingui-id: r4l/MK
#. placeholder {0}: formatUsageValue(totalCredits)
#: src/pages/settings/SettingsUsageUserDetail.tsx
@@ -1785,12 +1775,6 @@ msgstr "Und"
msgid "Any {fieldLabel} field"
msgstr "Beliebiges {fieldLabel}-Feld"
#. js-lingui-id: COyjuu
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
msgid "Any device"
msgstr ""
#. js-lingui-id: I8f+hC
#: src/modules/views/components/AnyFieldSearchChip.tsx
msgid "Any field"
@@ -1964,11 +1948,6 @@ msgstr "Anwendungsdetails"
msgid "Application installed successfully."
msgstr "Anwendung erfolgreich installiert."
#. js-lingui-id: LllWIc
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
msgid "Application Logs"
msgstr ""
#. js-lingui-id: +tE2x9
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
msgid "Application successfully uninstalled."
@@ -3356,6 +3335,11 @@ msgstr "Konfigurieren Sie die CalDAV-Einstellungen, um Ihre Kalenderereignisse z
msgid "Configure date, time, number, timezone, and calendar start day"
msgstr "Datum, Uhrzeit, Zahl, Zeitzone und Kalendertagesstart konfigurieren"
#. js-lingui-id: +SQwHr
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Configure default AI models and availability"
msgstr "Standard-KI-Modelle und Verfügbarkeit konfigurieren"
#. js-lingui-id: utsXG8
#: src/pages/settings/security/SettingsSecurity.tsx
msgid "Configure fallback login methods for users with SSO bypass permissions"
@@ -3401,11 +3385,6 @@ msgstr "Konfigurieren Sie dieses Widget, um Felder anzuzeigen."
msgid "Configure when this function should be executed"
msgstr "Legen Sie fest, wann diese Funktion ausgeführt werden soll"
#. js-lingui-id: hzDiM0
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Configure your default AI model"
msgstr ""
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@@ -3534,7 +3513,7 @@ msgstr "Inhalt"
#. js-lingui-id: M73whl
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Context"
@@ -3732,16 +3711,21 @@ msgstr "Kernobjekte"
msgid "Cost"
msgstr "Kosten"
#. js-lingui-id: Iw/ard
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Cost / 1M"
msgstr "Kosten / 1 Mio."
#. js-lingui-id: 3kzLg2
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
msgid "Cost / 1M tokens"
msgstr "Kosten / 1 Mio. Token"
#. js-lingui-id: iX2opZ
#: src/modules/settings/billing/components/SettingsBillingCreditsSection.tsx
msgid "Cost per 1k Extra Credits"
msgstr "Kosten pro 1k zusätzliche Credits"
#. js-lingui-id: Z9Z9PX
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
msgid "Cost per 1M tokens"
msgstr ""
#. js-lingui-id: 3X5ngu
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
msgid "Cost per million tokens (USD)"
@@ -4279,6 +4263,7 @@ msgstr "Dashboard erfolgreich dupliziert"
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Data"
msgstr "Daten"
@@ -4331,7 +4316,7 @@ msgid "Data on display"
msgstr "Angezeigte Daten"
#. js-lingui-id: Ix/CMz
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Data residency"
msgstr "Datenresidenz"
@@ -4494,7 +4479,6 @@ msgid "default"
msgstr ""
#. js-lingui-id: ovBPCi
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
msgid "Default"
@@ -4833,11 +4817,6 @@ msgstr "Gelöschter Datensatz"
msgid "Deleting this method will remove it permanently from your account."
msgstr "Durch das Löschen dieser Methode wird sie dauerhaft von Ihrem Konto entfernt."
#. js-lingui-id: Ssdrw4
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
msgid "Deprecated"
msgstr ""
#. js-lingui-id: O3LJh6
#: src/modules/side-panel/pages/page-layout/utils/getSortLabelSuffixForFieldType.ts
#: src/modules/side-panel/pages/page-layout/utils/getSortLabelSuffixForFieldType.ts
@@ -4873,12 +4852,6 @@ msgstr "Beschreiben Sie, was die KI tun soll..."
msgid "Description"
msgstr "Beschreibung"
#. js-lingui-id: BBqGS9
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
msgid "Desktop"
msgstr ""
#. js-lingui-id: +ow7t4
#: src/modules/settings/roles/role-permissions/object-level-permissions/utils/objectPermissionKeyToHumanReadableText.ts
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
@@ -4901,7 +4874,7 @@ msgid "Detach"
msgstr "Trennen"
#. js-lingui-id: URmyfc
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Details"
msgstr "Details"
@@ -5336,8 +5309,6 @@ msgstr "Editierbare Profilfelder"
#. js-lingui-id: uBAxNB
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/FieldWidgetLayoutDropdownContent.tsx
msgid "Editor"
msgstr "Editor"
@@ -6093,8 +6064,8 @@ msgid "Evaluations"
msgstr "Auswertung"
#. js-lingui-id: 0pC/y6
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/modules/activities/calendar/components/CalendarEventDetails.tsx
msgid "Event"
msgstr "Ereignis"
@@ -6213,11 +6184,6 @@ msgstr "Nicht berufliche E-Mails ausschließen"
msgid "Exclude the following people and domains from my email sync. Internal conversations will not be imported"
msgstr "Folgende Personen und Domains von meiner E-Mail-Synchronisation ausschließen. Interne Gespräche werden nicht importiert"
#. js-lingui-id: B0clc7
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Execution ID"
msgstr ""
#. js-lingui-id: YzI8cc
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsSelect.tsx
msgid "Existing Field"
@@ -6547,8 +6513,6 @@ msgstr "Fehler beim Aktualisieren des Modells"
#. js-lingui-id: W7Ff/4
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Failed to update model availability"
msgstr "Fehler beim Aktualisieren der Modellverfügbarkeit"
@@ -6558,11 +6522,6 @@ msgstr "Fehler beim Aktualisieren der Modellverfügbarkeit"
msgid "Failed to update model recommendation"
msgstr "Fehler beim Aktualisieren der Modellempfehlung"
#. js-lingui-id: q1MtjM
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
msgid "Failed to update model recommendations"
msgstr ""
#. js-lingui-id: rCUG3c
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Failed to update model selection mode"
@@ -7053,11 +7012,6 @@ msgstr "Frontend-Komponenten"
msgid "Full access"
msgstr "Vollzugriff"
#. js-lingui-id: YMZBxa
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Function"
msgstr ""
#. js-lingui-id: AHOl4W
#: src/modules/settings/logic-functions/components/SettingsLogicFunctionLabelContainer.tsx
msgid "Function name"
@@ -8408,7 +8362,6 @@ msgstr "Manuell auslösen"
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldsSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Layout"
@@ -8482,11 +8435,6 @@ msgstr ""
msgid "Less than or equal"
msgstr "Kleiner als oder gleich"
#. js-lingui-id: oCHfGC
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Level"
msgstr ""
#. js-lingui-id: 3qg5Ro
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
@@ -8921,7 +8869,7 @@ msgstr "Maximale Importkapazität: {formatSpreadsheetMaxRecordImportCapacity} Da
#. js-lingui-id: S8w4XA
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Max output"
msgstr "Maximale Ausgabe"
@@ -9031,11 +8979,6 @@ msgstr "Datensätze zusammenführen"
msgid "Merging..."
msgstr "Wird zusammengeführt..."
#. js-lingui-id: xDAtGP
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Message"
msgstr ""
#. js-lingui-id: U15XwX
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Message not found"
@@ -9133,12 +9076,6 @@ msgstr "Berechtigung zum Erstellen von E-Mail-Entwürfen fehlt."
msgid "Mission accomplished!"
msgstr "Mission erfüllt!"
#. js-lingui-id: dMsM20
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
msgid "Mobile"
msgstr ""
#. js-lingui-id: scu3wk
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPromptTab.tsx
msgid "Model"
@@ -9168,6 +9105,7 @@ msgstr "Modell-ID ist erforderlich"
#. js-lingui-id: //nm2/
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Models"
msgstr "Modelle"
@@ -9392,12 +9330,12 @@ msgstr "mySkill"
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
#: src/modules/settings/data-model/new-object/components/SettingsAvailableStandardObjectsSection.tsx
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/config-variables/components/SettingsAdminConfigVariablesTable.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Name"
msgstr "Name"
@@ -10062,12 +10000,6 @@ msgstr "Für diese App sind keine Berechtigungen konfiguriert."
msgid "No permissions have been set for individual objects."
msgstr "Es wurden keine Berechtigungen für einzelne Objekte festgelegt."
#. js-lingui-id: V/+aTW
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordFieldChip.tsx
msgid "No record"
msgstr ""
#. js-lingui-id: ePgApM
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerManual.tsx
msgid "No record is required to trigger this workflow"
@@ -10079,6 +10011,11 @@ msgstr "Kein Datensatz ist erforderlich, um diesen Arbeitsablauf zu starten"
msgid "No record selected"
msgstr ""
#. js-lingui-id: X8wJTR
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
msgid "No records"
msgstr "Keine Datensätze"
#. js-lingui-id: EqGTpW
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateReadOnly.tsx
#: src/modules/object-record/record-picker/components/RecordPickerNoRecordFoundMenuItem.tsx
@@ -10392,7 +10329,7 @@ msgid "Object Events"
msgstr "Objekt-Ereignisse"
#. js-lingui-id: 79D4Az
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
msgid "Object ID"
msgstr "Objekt-ID"
@@ -11346,8 +11283,8 @@ msgid "Prompt"
msgstr ""
#. js-lingui-id: l/UFPv
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
msgid "Properties"
msgstr "Eigenschaften"
@@ -11370,8 +11307,8 @@ msgstr "Bitte geben Sie die Details Ihres OIDC-Anbieters an"
#. js-lingui-id: aemBRq
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Provider"
msgstr "Anbieter"
@@ -11597,7 +11534,7 @@ msgid "Record filter rule options"
msgstr "Optionen für Datensatzfilterregel"
#. js-lingui-id: xSAYIn
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
msgid "Record ID"
msgstr "Datensatz-ID"
@@ -11625,6 +11562,12 @@ msgstr "Rekordseite"
msgid "Record Selection"
msgstr "Datensatz-Auswahl"
#. js-lingui-id: J9Cfll
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutDashboardWidgetTypeSelect.tsx
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
msgid "Record Table"
msgstr "Datensatztabelle"
#. js-lingui-id: NxW0+c
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
msgid "Record Table Settings"
@@ -11993,7 +11936,7 @@ msgid "Reset variable"
msgstr "Variable zurücksetzen"
#. js-lingui-id: esl+Tv
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
msgid "Resource Type"
msgstr "Ressourcentyp"
@@ -13009,7 +12952,6 @@ msgstr "Einrichten Ihrer Datenbank..."
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsSection.tsx
#: src/modules/settings/roles/role/components/SettingsRole.tsx
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
@@ -13866,7 +13808,6 @@ msgstr "Registerkarteneinstellungen"
#. js-lingui-id: 4hJhzz
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
msgid "Table"
@@ -14409,10 +14350,9 @@ msgid "Timeout"
msgstr "Zeitlimit"
#. js-lingui-id: 8TMaZI
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Timestamp"
msgstr "Zeitstempel"
@@ -15256,9 +15196,9 @@ msgstr "Nützlich für Pivot-/Verknüpfungstabellen"
#. js-lingui-id: 7PzzBU
#: src/pages/settings/SettingsTwoFactorAuthenticationMethod.tsx
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
#: src/pages/settings/ai/SettingsAIPrompts.tsx
@@ -15441,9 +15381,7 @@ msgid "view"
msgstr "ansicht"
#. js-lingui-id: jpctdh
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutDashboardWidgetTypeSelect.tsx
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
@@ -15611,11 +15549,6 @@ msgstr "Violett"
msgid "Visibility"
msgstr "Sichtbarkeit"
#. js-lingui-id: gkAApJ
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
msgid "Visibility Restriction"
msgstr ""
#. js-lingui-id: zYTdqe
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
+49 -116
View File
@@ -158,16 +158,6 @@ msgstr "{0, plural, one {Δεν έχετε άδεια πρόσβασης στο
msgid "{0} credits"
msgstr "{0} πιστώσεις"
#. js-lingui-id: peiknr
#. placeholder {0}: activeVisibleFieldLabels.length
#. placeholder {0}: activeFilterLabels.length
#. placeholder {0}: activeSortLabels.length
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
msgid "{0} shown"
msgstr ""
#. js-lingui-id: r4l/MK
#. placeholder {0}: formatUsageValue(totalCredits)
#: src/pages/settings/SettingsUsageUserDetail.tsx
@@ -1785,12 +1775,6 @@ msgstr "Και"
msgid "Any {fieldLabel} field"
msgstr "Οποιοδήποτε πεδίο {fieldLabel}"
#. js-lingui-id: COyjuu
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
msgid "Any device"
msgstr ""
#. js-lingui-id: I8f+hC
#: src/modules/views/components/AnyFieldSearchChip.tsx
msgid "Any field"
@@ -1964,11 +1948,6 @@ msgstr "Λεπτομέρειες εφαρμογής"
msgid "Application installed successfully."
msgstr "Η εφαρμογή εγκαταστάθηκε με επιτυχία."
#. js-lingui-id: LllWIc
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
msgid "Application Logs"
msgstr ""
#. js-lingui-id: +tE2x9
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
msgid "Application successfully uninstalled."
@@ -3356,6 +3335,11 @@ msgstr "Ρυθμίστε τις παραμέτρους του CalDAV για συ
msgid "Configure date, time, number, timezone, and calendar start day"
msgstr "Διαμόρφωση ημερομηνίας, ώρας, αριθμού, ζώνης ώρας και έναρξης ημερολογίου"
#. js-lingui-id: +SQwHr
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Configure default AI models and availability"
msgstr "Διαμόρφωση προεπιλεγμένων μοντέλων AI και διαθεσιμότητας"
#. js-lingui-id: utsXG8
#: src/pages/settings/security/SettingsSecurity.tsx
msgid "Configure fallback login methods for users with SSO bypass permissions"
@@ -3401,11 +3385,6 @@ msgstr "Ρυθμίστε αυτό το γραφικό στοιχείο ώστε
msgid "Configure when this function should be executed"
msgstr "Ρυθμίστε πότε πρέπει να εκτελείται αυτή η συνάρτηση"
#. js-lingui-id: hzDiM0
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Configure your default AI model"
msgstr ""
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@@ -3534,7 +3513,7 @@ msgstr "Περιεχόμενο"
#. js-lingui-id: M73whl
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Context"
@@ -3732,16 +3711,21 @@ msgstr "Κύρια Αντικείμενα"
msgid "Cost"
msgstr "Κόστος"
#. js-lingui-id: Iw/ard
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Cost / 1M"
msgstr "Κόστος / 1M"
#. js-lingui-id: 3kzLg2
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
msgid "Cost / 1M tokens"
msgstr "Κόστος / 1M tokens"
#. js-lingui-id: iX2opZ
#: src/modules/settings/billing/components/SettingsBillingCreditsSection.tsx
msgid "Cost per 1k Extra Credits"
msgstr "Κόστος ανά 1k επιπλέον πιστώσεις"
#. js-lingui-id: Z9Z9PX
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
msgid "Cost per 1M tokens"
msgstr ""
#. js-lingui-id: 3X5ngu
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
msgid "Cost per million tokens (USD)"
@@ -4279,6 +4263,7 @@ msgstr "Ο πίνακας ελέγχου αντιγράφηκε με επιτυ
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Data"
msgstr "Δεδομένα"
@@ -4331,7 +4316,7 @@ msgid "Data on display"
msgstr "Δεδομένα στην οθόνη"
#. js-lingui-id: Ix/CMz
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Data residency"
msgstr "Τοποθεσία δεδομένων"
@@ -4494,7 +4479,6 @@ msgid "default"
msgstr ""
#. js-lingui-id: ovBPCi
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
msgid "Default"
@@ -4833,11 +4817,6 @@ msgstr "Διαγραμμένη εγγραφή"
msgid "Deleting this method will remove it permanently from your account."
msgstr "Η διαγραφή αυτής της μεθόδου θα την αφαιρέσει μόνιμα από τον λογαριασμό σας."
#. js-lingui-id: Ssdrw4
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
msgid "Deprecated"
msgstr ""
#. js-lingui-id: O3LJh6
#: src/modules/side-panel/pages/page-layout/utils/getSortLabelSuffixForFieldType.ts
#: src/modules/side-panel/pages/page-layout/utils/getSortLabelSuffixForFieldType.ts
@@ -4873,12 +4852,6 @@ msgstr "Περιγράψτε τι θέλετε να κάνει το AI..."
msgid "Description"
msgstr "Περιγραφή"
#. js-lingui-id: BBqGS9
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
msgid "Desktop"
msgstr ""
#. js-lingui-id: +ow7t4
#: src/modules/settings/roles/role-permissions/object-level-permissions/utils/objectPermissionKeyToHumanReadableText.ts
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
@@ -4901,7 +4874,7 @@ msgid "Detach"
msgstr "Αποσύνδεση"
#. js-lingui-id: URmyfc
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Details"
msgstr "Λεπτομέρειες"
@@ -5336,8 +5309,6 @@ msgstr ""
#. js-lingui-id: uBAxNB
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/FieldWidgetLayoutDropdownContent.tsx
msgid "Editor"
msgstr "Επεξεργαστής"
@@ -6093,8 +6064,8 @@ msgid "Evaluations"
msgstr ""
#. js-lingui-id: 0pC/y6
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/modules/activities/calendar/components/CalendarEventDetails.tsx
msgid "Event"
msgstr "Συμβάν"
@@ -6213,11 +6184,6 @@ msgstr "Εξαίρεση μη επαγγελματικών emails"
msgid "Exclude the following people and domains from my email sync. Internal conversations will not be imported"
msgstr "Εξαιρέστε τα παρακάτω άτομα και τομείς από τον συγχρονισμό ηλεκτρονικού ταχυδρομείου μου. Εσωτερικές συζητήσεις δεν θα εισαχθούν"
#. js-lingui-id: B0clc7
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Execution ID"
msgstr ""
#. js-lingui-id: YzI8cc
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsSelect.tsx
msgid "Existing Field"
@@ -6547,8 +6513,6 @@ msgstr "Αποτυχία ενημέρωσης μοντέλου"
#. js-lingui-id: W7Ff/4
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Failed to update model availability"
msgstr "Αποτυχία ενημέρωσης διαθεσιμότητας μοντέλου"
@@ -6558,11 +6522,6 @@ msgstr "Αποτυχία ενημέρωσης διαθεσιμότητας μο
msgid "Failed to update model recommendation"
msgstr "Αποτυχία ενημέρωσης σύστασης μοντέλου"
#. js-lingui-id: q1MtjM
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
msgid "Failed to update model recommendations"
msgstr ""
#. js-lingui-id: rCUG3c
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Failed to update model selection mode"
@@ -7053,11 +7012,6 @@ msgstr "Στοιχεία διεπαφής χρήστη"
msgid "Full access"
msgstr "Πλήρης πρόσβαση"
#. js-lingui-id: YMZBxa
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Function"
msgstr ""
#. js-lingui-id: AHOl4W
#: src/modules/settings/logic-functions/components/SettingsLogicFunctionLabelContainer.tsx
msgid "Function name"
@@ -8408,7 +8362,6 @@ msgstr "Εκκίνηση χειροκίνητα"
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldsSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Layout"
@@ -8482,11 +8435,6 @@ msgstr ""
msgid "Less than or equal"
msgstr "Μικρότερο από ή ίσο"
#. js-lingui-id: oCHfGC
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Level"
msgstr ""
#. js-lingui-id: 3qg5Ro
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
@@ -8921,7 +8869,7 @@ msgstr "Ανώτατη χωρητικότητα εισαγωγής: {formatSprea
#. js-lingui-id: S8w4XA
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Max output"
msgstr "Μέγιστη έξοδος"
@@ -9031,11 +8979,6 @@ msgstr "Συγχώνευση εγγραφών"
msgid "Merging..."
msgstr "Συγχώνευση..."
#. js-lingui-id: xDAtGP
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Message"
msgstr ""
#. js-lingui-id: U15XwX
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Message not found"
@@ -9133,12 +9076,6 @@ msgstr "Λείπει η άδεια για σύνταξη προσχεδίων em
msgid "Mission accomplished!"
msgstr "Αποστολή ολοκληρώθηκε!"
#. js-lingui-id: dMsM20
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
msgid "Mobile"
msgstr ""
#. js-lingui-id: scu3wk
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPromptTab.tsx
msgid "Model"
@@ -9168,6 +9105,7 @@ msgstr "Απαιτείται το ID μοντέλου"
#. js-lingui-id: //nm2/
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Models"
msgstr "Μοντέλα"
@@ -9392,12 +9330,12 @@ msgstr "mySkill"
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
#: src/modules/settings/data-model/new-object/components/SettingsAvailableStandardObjectsSection.tsx
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/config-variables/components/SettingsAdminConfigVariablesTable.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Name"
msgstr "Όνομα"
@@ -10062,12 +10000,6 @@ msgstr "Δεν έχουν ρυθμιστεί δικαιώματα για αυτ
msgid "No permissions have been set for individual objects."
msgstr "Δεν έχουν οριστεί δικαιώματα για μεμονωμένα αντικείμενα."
#. js-lingui-id: V/+aTW
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordFieldChip.tsx
msgid "No record"
msgstr ""
#. js-lingui-id: ePgApM
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerManual.tsx
msgid "No record is required to trigger this workflow"
@@ -10079,6 +10011,11 @@ msgstr "Δεν απαιτείται καμία εγγραφή για να ενε
msgid "No record selected"
msgstr ""
#. js-lingui-id: X8wJTR
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
msgid "No records"
msgstr "Δεν υπάρχουν εγγραφές"
#. js-lingui-id: EqGTpW
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateReadOnly.tsx
#: src/modules/object-record/record-picker/components/RecordPickerNoRecordFoundMenuItem.tsx
@@ -10392,7 +10329,7 @@ msgid "Object Events"
msgstr "Συμβάντα αντικειμένων"
#. js-lingui-id: 79D4Az
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
msgid "Object ID"
msgstr "Αναγνωριστικό αντικειμένου"
@@ -11346,8 +11283,8 @@ msgid "Prompt"
msgstr ""
#. js-lingui-id: l/UFPv
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
msgid "Properties"
msgstr "Ιδιότητες"
@@ -11370,8 +11307,8 @@ msgstr "Παρέχετε τις λεπτομέρειες του παρόχου O
#. js-lingui-id: aemBRq
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Provider"
msgstr "Πάροχος"
@@ -11597,7 +11534,7 @@ msgid "Record filter rule options"
msgstr "Επιλογές κανόνα φίλτρου εγγραφών"
#. js-lingui-id: xSAYIn
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
msgid "Record ID"
msgstr "Αναγνωριστικό εγγραφής"
@@ -11625,6 +11562,12 @@ msgstr "Σελίδα εγγραφής"
msgid "Record Selection"
msgstr "Επιλογή Εγγραφών"
#. js-lingui-id: J9Cfll
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutDashboardWidgetTypeSelect.tsx
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
msgid "Record Table"
msgstr "Πίνακας εγγραφών"
#. js-lingui-id: NxW0+c
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
msgid "Record Table Settings"
@@ -11993,7 +11936,7 @@ msgid "Reset variable"
msgstr "Επαναφορά μεταβλητής"
#. js-lingui-id: esl+Tv
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
msgid "Resource Type"
msgstr "Τύπος πόρου"
@@ -13009,7 +12952,6 @@ msgstr "Ρύθμιση της βάσης δεδομένων σας..."
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsSection.tsx
#: src/modules/settings/roles/role/components/SettingsRole.tsx
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
@@ -13868,7 +13810,6 @@ msgstr "Ρυθμίσεις Καρτέλας"
#. js-lingui-id: 4hJhzz
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
msgid "Table"
@@ -14413,10 +14354,9 @@ msgid "Timeout"
msgstr "Χρονικό όριο"
#. js-lingui-id: 8TMaZI
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Timestamp"
msgstr "Χρονική Σήμανση"
@@ -15260,9 +15200,9 @@ msgstr "Χρήσιμο για πίνακες pivot/junction"
#. js-lingui-id: 7PzzBU
#: src/pages/settings/SettingsTwoFactorAuthenticationMethod.tsx
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
#: src/pages/settings/ai/SettingsAIPrompts.tsx
@@ -15445,9 +15385,7 @@ msgid "view"
msgstr "προβολή"
#. js-lingui-id: jpctdh
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutDashboardWidgetTypeSelect.tsx
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
@@ -15615,11 +15553,6 @@ msgstr "Βιολετί"
msgid "Visibility"
msgstr "Ορατότητα"
#. js-lingui-id: gkAApJ
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
msgid "Visibility Restriction"
msgstr ""
#. js-lingui-id: zYTdqe
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
+49 -116
View File
@@ -153,16 +153,6 @@ msgstr "{0, plural, one {You do not have permission to access the {fieldsList} f
msgid "{0} credits"
msgstr "{0} credits"
#. js-lingui-id: peiknr
#. placeholder {0}: activeVisibleFieldLabels.length
#. placeholder {0}: activeFilterLabels.length
#. placeholder {0}: activeSortLabels.length
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
msgid "{0} shown"
msgstr "{0} shown"
#. js-lingui-id: r4l/MK
#. placeholder {0}: formatUsageValue(totalCredits)
#: src/pages/settings/SettingsUsageUserDetail.tsx
@@ -1780,12 +1770,6 @@ msgstr "And"
msgid "Any {fieldLabel} field"
msgstr "Any {fieldLabel} field"
#. js-lingui-id: COyjuu
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
msgid "Any device"
msgstr "Any device"
#. js-lingui-id: I8f+hC
#: src/modules/views/components/AnyFieldSearchChip.tsx
msgid "Any field"
@@ -1959,11 +1943,6 @@ msgstr "Application details"
msgid "Application installed successfully."
msgstr "Application installed successfully."
#. js-lingui-id: LllWIc
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
msgid "Application Logs"
msgstr "Application Logs"
#. js-lingui-id: +tE2x9
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
msgid "Application successfully uninstalled."
@@ -3351,6 +3330,11 @@ msgstr "Configure CalDAV settings to sync your calendar events."
msgid "Configure date, time, number, timezone, and calendar start day"
msgstr "Configure date, time, number, timezone, and calendar start day"
#. js-lingui-id: +SQwHr
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Configure default AI models and availability"
msgstr "Configure default AI models and availability"
#. js-lingui-id: utsXG8
#: src/pages/settings/security/SettingsSecurity.tsx
msgid "Configure fallback login methods for users with SSO bypass permissions"
@@ -3396,11 +3380,6 @@ msgstr "Configure this widget to display fields"
msgid "Configure when this function should be executed"
msgstr "Configure when this function should be executed"
#. js-lingui-id: hzDiM0
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Configure your default AI model"
msgstr "Configure your default AI model"
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@@ -3529,7 +3508,7 @@ msgstr "Content"
#. js-lingui-id: M73whl
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Context"
@@ -3727,16 +3706,21 @@ msgstr "Core Objects"
msgid "Cost"
msgstr "Cost"
#. js-lingui-id: Iw/ard
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Cost / 1M"
msgstr "Cost / 1M"
#. js-lingui-id: 3kzLg2
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
msgid "Cost / 1M tokens"
msgstr "Cost / 1M tokens"
#. js-lingui-id: iX2opZ
#: src/modules/settings/billing/components/SettingsBillingCreditsSection.tsx
msgid "Cost per 1k Extra Credits"
msgstr "Cost per 1k Extra Credits"
#. js-lingui-id: Z9Z9PX
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
msgid "Cost per 1M tokens"
msgstr "Cost per 1M tokens"
#. js-lingui-id: 3X5ngu
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
msgid "Cost per million tokens (USD)"
@@ -4274,6 +4258,7 @@ msgstr "Dashboard duplicated successfully"
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Data"
msgstr "Data"
@@ -4326,7 +4311,7 @@ msgid "Data on display"
msgstr "Data on display"
#. js-lingui-id: Ix/CMz
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Data residency"
msgstr "Data residency"
@@ -4489,7 +4474,6 @@ msgid "default"
msgstr "default"
#. js-lingui-id: ovBPCi
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
msgid "Default"
@@ -4828,11 +4812,6 @@ msgstr "Deleted record"
msgid "Deleting this method will remove it permanently from your account."
msgstr "Deleting this method will remove it permanently from your account."
#. js-lingui-id: Ssdrw4
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
msgid "Deprecated"
msgstr "Deprecated"
#. js-lingui-id: O3LJh6
#: src/modules/side-panel/pages/page-layout/utils/getSortLabelSuffixForFieldType.ts
#: src/modules/side-panel/pages/page-layout/utils/getSortLabelSuffixForFieldType.ts
@@ -4868,12 +4847,6 @@ msgstr "Describe what you want the AI to do..."
msgid "Description"
msgstr "Description"
#. js-lingui-id: BBqGS9
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
msgid "Desktop"
msgstr "Desktop"
#. js-lingui-id: +ow7t4
#: src/modules/settings/roles/role-permissions/object-level-permissions/utils/objectPermissionKeyToHumanReadableText.ts
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
@@ -4896,7 +4869,7 @@ msgid "Detach"
msgstr "Detach"
#. js-lingui-id: URmyfc
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Details"
msgstr "Details"
@@ -5331,8 +5304,6 @@ msgstr "Editable Profile Fields"
#. js-lingui-id: uBAxNB
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/FieldWidgetLayoutDropdownContent.tsx
msgid "Editor"
msgstr "Editor"
@@ -6088,8 +6059,8 @@ msgid "Evaluations"
msgstr "Evaluations"
#. js-lingui-id: 0pC/y6
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/modules/activities/calendar/components/CalendarEventDetails.tsx
msgid "Event"
msgstr "Event"
@@ -6208,11 +6179,6 @@ msgstr "Exclude non-professional emails"
msgid "Exclude the following people and domains from my email sync. Internal conversations will not be imported"
msgstr "Exclude the following people and domains from my email sync. Internal conversations will not be imported"
#. js-lingui-id: B0clc7
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Execution ID"
msgstr "Execution ID"
#. js-lingui-id: YzI8cc
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsSelect.tsx
msgid "Existing Field"
@@ -6542,8 +6508,6 @@ msgstr "Failed to update model"
#. js-lingui-id: W7Ff/4
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Failed to update model availability"
msgstr "Failed to update model availability"
@@ -6553,11 +6517,6 @@ msgstr "Failed to update model availability"
msgid "Failed to update model recommendation"
msgstr "Failed to update model recommendation"
#. js-lingui-id: q1MtjM
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
msgid "Failed to update model recommendations"
msgstr "Failed to update model recommendations"
#. js-lingui-id: rCUG3c
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Failed to update model selection mode"
@@ -7048,11 +7007,6 @@ msgstr "Front Components"
msgid "Full access"
msgstr "Full access"
#. js-lingui-id: YMZBxa
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Function"
msgstr "Function"
#. js-lingui-id: AHOl4W
#: src/modules/settings/logic-functions/components/SettingsLogicFunctionLabelContainer.tsx
msgid "Function name"
@@ -8403,7 +8357,6 @@ msgstr "Launch manually"
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldsSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Layout"
@@ -8477,11 +8430,6 @@ msgstr "Legend"
msgid "Less than or equal"
msgstr "Less than or equal"
#. js-lingui-id: oCHfGC
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Level"
msgstr "Level"
#. js-lingui-id: 3qg5Ro
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
@@ -8916,7 +8864,7 @@ msgstr "Max import capacity: {formatSpreadsheetMaxRecordImportCapacity} records.
#. js-lingui-id: S8w4XA
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Max output"
msgstr "Max output"
@@ -9026,11 +8974,6 @@ msgstr "Merge records"
msgid "Merging..."
msgstr "Merging..."
#. js-lingui-id: xDAtGP
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Message"
msgstr "Message"
#. js-lingui-id: U15XwX
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Message not found"
@@ -9128,12 +9071,6 @@ msgstr "Missing email draft permission."
msgid "Mission accomplished!"
msgstr "Mission accomplished!"
#. js-lingui-id: dMsM20
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
msgid "Mobile"
msgstr "Mobile"
#. js-lingui-id: scu3wk
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPromptTab.tsx
msgid "Model"
@@ -9163,6 +9100,7 @@ msgstr "Model ID is required"
#. js-lingui-id: //nm2/
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Models"
msgstr "Models"
@@ -9387,12 +9325,12 @@ msgstr "mySkill"
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
#: src/modules/settings/data-model/new-object/components/SettingsAvailableStandardObjectsSection.tsx
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/config-variables/components/SettingsAdminConfigVariablesTable.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Name"
msgstr "Name"
@@ -10057,12 +9995,6 @@ msgstr "No permissions configured for this application."
msgid "No permissions have been set for individual objects."
msgstr "No permissions have been set for individual objects."
#. js-lingui-id: V/+aTW
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordFieldChip.tsx
msgid "No record"
msgstr "No record"
#. js-lingui-id: ePgApM
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerManual.tsx
msgid "No record is required to trigger this workflow"
@@ -10074,6 +10006,11 @@ msgstr "No record is required to trigger this workflow"
msgid "No record selected"
msgstr "No record selected"
#. js-lingui-id: X8wJTR
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
msgid "No records"
msgstr "No records"
#. js-lingui-id: EqGTpW
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateReadOnly.tsx
#: src/modules/object-record/record-picker/components/RecordPickerNoRecordFoundMenuItem.tsx
@@ -10387,7 +10324,7 @@ msgid "Object Events"
msgstr "Object Events"
#. js-lingui-id: 79D4Az
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
msgid "Object ID"
msgstr "Object ID"
@@ -11341,8 +11278,8 @@ msgid "Prompt"
msgstr "Prompt"
#. js-lingui-id: l/UFPv
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
msgid "Properties"
msgstr "Properties"
@@ -11365,8 +11302,8 @@ msgstr "Provide your OIDC provider details"
#. js-lingui-id: aemBRq
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Provider"
msgstr "Provider"
@@ -11592,7 +11529,7 @@ msgid "Record filter rule options"
msgstr "Record filter rule options"
#. js-lingui-id: xSAYIn
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
msgid "Record ID"
msgstr "Record ID"
@@ -11620,6 +11557,12 @@ msgstr "Record Page"
msgid "Record Selection"
msgstr "Record Selection"
#. js-lingui-id: J9Cfll
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutDashboardWidgetTypeSelect.tsx
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
msgid "Record Table"
msgstr "Record Table"
#. js-lingui-id: NxW0+c
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
msgid "Record Table Settings"
@@ -11988,7 +11931,7 @@ msgid "Reset variable"
msgstr "Reset variable"
#. js-lingui-id: esl+Tv
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
msgid "Resource Type"
msgstr "Resource Type"
@@ -13004,7 +12947,6 @@ msgstr "Setting up your database..."
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsSection.tsx
#: src/modules/settings/roles/role/components/SettingsRole.tsx
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
@@ -13861,7 +13803,6 @@ msgstr "Tab Settings"
#. js-lingui-id: 4hJhzz
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
msgid "Table"
@@ -14406,10 +14347,9 @@ msgid "Timeout"
msgstr "Timeout"
#. js-lingui-id: 8TMaZI
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Timestamp"
msgstr "Timestamp"
@@ -15253,9 +15193,9 @@ msgstr "Useful for pivot/junction tables"
#. js-lingui-id: 7PzzBU
#: src/pages/settings/SettingsTwoFactorAuthenticationMethod.tsx
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
#: src/pages/settings/ai/SettingsAIPrompts.tsx
@@ -15438,9 +15378,7 @@ msgid "view"
msgstr "view"
#. js-lingui-id: jpctdh
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutDashboardWidgetTypeSelect.tsx
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
@@ -15608,11 +15546,6 @@ msgstr "Violet"
msgid "Visibility"
msgstr "Visibility"
#. js-lingui-id: gkAApJ
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
msgid "Visibility Restriction"
msgstr "Visibility Restriction"
#. js-lingui-id: zYTdqe
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
+49 -116
View File
@@ -158,16 +158,6 @@ msgstr "{0, plural, one {No tienes permiso para acceder al campo {fieldsList}} o
msgid "{0} credits"
msgstr "{0} créditos"
#. js-lingui-id: peiknr
#. placeholder {0}: activeVisibleFieldLabels.length
#. placeholder {0}: activeFilterLabels.length
#. placeholder {0}: activeSortLabels.length
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
msgid "{0} shown"
msgstr ""
#. js-lingui-id: r4l/MK
#. placeholder {0}: formatUsageValue(totalCredits)
#: src/pages/settings/SettingsUsageUserDetail.tsx
@@ -1785,12 +1775,6 @@ msgstr "Y"
msgid "Any {fieldLabel} field"
msgstr "Cualquier campo {fieldLabel}"
#. js-lingui-id: COyjuu
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
msgid "Any device"
msgstr ""
#. js-lingui-id: I8f+hC
#: src/modules/views/components/AnyFieldSearchChip.tsx
msgid "Any field"
@@ -1964,11 +1948,6 @@ msgstr "Detalles de la aplicación"
msgid "Application installed successfully."
msgstr "Aplicación instalada con éxito."
#. js-lingui-id: LllWIc
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
msgid "Application Logs"
msgstr ""
#. js-lingui-id: +tE2x9
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
msgid "Application successfully uninstalled."
@@ -3356,6 +3335,11 @@ msgstr "Configura los ajustes de CalDAV para sincronizar tus eventos de calendar
msgid "Configure date, time, number, timezone, and calendar start day"
msgstr "Configurar fecha, hora, número, zona horaria y día de inicio del calendario"
#. js-lingui-id: +SQwHr
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Configure default AI models and availability"
msgstr "Configura los modelos de IA predeterminados y su disponibilidad"
#. js-lingui-id: utsXG8
#: src/pages/settings/security/SettingsSecurity.tsx
msgid "Configure fallback login methods for users with SSO bypass permissions"
@@ -3401,11 +3385,6 @@ msgstr "Configura este widget para visualizar campos"
msgid "Configure when this function should be executed"
msgstr "Configura cuándo debe ejecutarse esta función"
#. js-lingui-id: hzDiM0
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Configure your default AI model"
msgstr ""
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@@ -3534,7 +3513,7 @@ msgstr "Contenido"
#. js-lingui-id: M73whl
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Context"
@@ -3732,16 +3711,21 @@ msgstr "Objetos principales"
msgid "Cost"
msgstr "Costo"
#. js-lingui-id: Iw/ard
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Cost / 1M"
msgstr "Costo / 1M"
#. js-lingui-id: 3kzLg2
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
msgid "Cost / 1M tokens"
msgstr "Costo / 1M tokens"
#. js-lingui-id: iX2opZ
#: src/modules/settings/billing/components/SettingsBillingCreditsSection.tsx
msgid "Cost per 1k Extra Credits"
msgstr "Costo por cada 1k Créditos Extra"
#. js-lingui-id: Z9Z9PX
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
msgid "Cost per 1M tokens"
msgstr ""
#. js-lingui-id: 3X5ngu
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
msgid "Cost per million tokens (USD)"
@@ -4279,6 +4263,7 @@ msgstr "Se duplicó el tablero con éxito"
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Data"
msgstr "Datos"
@@ -4331,7 +4316,7 @@ msgid "Data on display"
msgstr "Datos en pantalla"
#. js-lingui-id: Ix/CMz
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Data residency"
msgstr "Residencia de datos"
@@ -4494,7 +4479,6 @@ msgid "default"
msgstr ""
#. js-lingui-id: ovBPCi
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
msgid "Default"
@@ -4833,11 +4817,6 @@ msgstr "Registro eliminado"
msgid "Deleting this method will remove it permanently from your account."
msgstr "Eliminar este método lo eliminará permanentemente de tu cuenta."
#. js-lingui-id: Ssdrw4
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
msgid "Deprecated"
msgstr ""
#. js-lingui-id: O3LJh6
#: src/modules/side-panel/pages/page-layout/utils/getSortLabelSuffixForFieldType.ts
#: src/modules/side-panel/pages/page-layout/utils/getSortLabelSuffixForFieldType.ts
@@ -4873,12 +4852,6 @@ msgstr "Describa lo que quiere que la IA haga..."
msgid "Description"
msgstr "Descripción"
#. js-lingui-id: BBqGS9
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
msgid "Desktop"
msgstr ""
#. js-lingui-id: +ow7t4
#: src/modules/settings/roles/role-permissions/object-level-permissions/utils/objectPermissionKeyToHumanReadableText.ts
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
@@ -4901,7 +4874,7 @@ msgid "Detach"
msgstr "Desvincular"
#. js-lingui-id: URmyfc
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Details"
msgstr "Detalles"
@@ -5336,8 +5309,6 @@ msgstr "Campos de Perfil Editables"
#. js-lingui-id: uBAxNB
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/FieldWidgetLayoutDropdownContent.tsx
msgid "Editor"
msgstr "Editor"
@@ -6093,8 +6064,8 @@ msgid "Evaluations"
msgstr ""
#. js-lingui-id: 0pC/y6
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/modules/activities/calendar/components/CalendarEventDetails.tsx
msgid "Event"
msgstr "Evento"
@@ -6213,11 +6184,6 @@ msgstr "Excluir correos electrónicos no profesionales"
msgid "Exclude the following people and domains from my email sync. Internal conversations will not be imported"
msgstr "Excluir las siguientes personas y dominios de mi sincronización de correo electrónico. Las conversaciones internas no se importarán"
#. js-lingui-id: B0clc7
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Execution ID"
msgstr ""
#. js-lingui-id: YzI8cc
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsSelect.tsx
msgid "Existing Field"
@@ -6547,8 +6513,6 @@ msgstr "Error al actualizar el modelo"
#. js-lingui-id: W7Ff/4
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Failed to update model availability"
msgstr "Error al actualizar la disponibilidad del modelo"
@@ -6558,11 +6522,6 @@ msgstr "Error al actualizar la disponibilidad del modelo"
msgid "Failed to update model recommendation"
msgstr "Error al actualizar la recomendación del modelo"
#. js-lingui-id: q1MtjM
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
msgid "Failed to update model recommendations"
msgstr ""
#. js-lingui-id: rCUG3c
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Failed to update model selection mode"
@@ -7053,11 +7012,6 @@ msgstr "Componentes de frontend"
msgid "Full access"
msgstr "Acceso total"
#. js-lingui-id: YMZBxa
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Function"
msgstr ""
#. js-lingui-id: AHOl4W
#: src/modules/settings/logic-functions/components/SettingsLogicFunctionLabelContainer.tsx
msgid "Function name"
@@ -8408,7 +8362,6 @@ msgstr "Lanzar manualmente"
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldsSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Layout"
@@ -8482,11 +8435,6 @@ msgstr ""
msgid "Less than or equal"
msgstr "Menor o igual"
#. js-lingui-id: oCHfGC
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Level"
msgstr ""
#. js-lingui-id: 3qg5Ro
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
@@ -8921,7 +8869,7 @@ msgstr "Capacidad máxima de importación: {formatSpreadsheetMaxRecordImportCapa
#. js-lingui-id: S8w4XA
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Max output"
msgstr "Salida máxima"
@@ -9031,11 +8979,6 @@ msgstr "Fusionar registros"
msgid "Merging..."
msgstr "Fusionando..."
#. js-lingui-id: xDAtGP
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Message"
msgstr ""
#. js-lingui-id: U15XwX
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Message not found"
@@ -9133,12 +9076,6 @@ msgstr "Falta el permiso para crear borradores de correos electrónicos."
msgid "Mission accomplished!"
msgstr "¡Misión cumplida!"
#. js-lingui-id: dMsM20
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
msgid "Mobile"
msgstr ""
#. js-lingui-id: scu3wk
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPromptTab.tsx
msgid "Model"
@@ -9168,6 +9105,7 @@ msgstr "El ID del modelo es obligatorio"
#. js-lingui-id: //nm2/
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Models"
msgstr "Modelos"
@@ -9392,12 +9330,12 @@ msgstr "mySkill"
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
#: src/modules/settings/data-model/new-object/components/SettingsAvailableStandardObjectsSection.tsx
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/config-variables/components/SettingsAdminConfigVariablesTable.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Name"
msgstr "Nombre"
@@ -10062,12 +10000,6 @@ msgstr "No hay permisos configurados para esta aplicación."
msgid "No permissions have been set for individual objects."
msgstr "No se han establecido permisos para objetos individuales."
#. js-lingui-id: V/+aTW
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordFieldChip.tsx
msgid "No record"
msgstr ""
#. js-lingui-id: ePgApM
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerManual.tsx
msgid "No record is required to trigger this workflow"
@@ -10079,6 +10011,11 @@ msgstr "No se requiere ningún registro para activar este flujo de trabajo"
msgid "No record selected"
msgstr ""
#. js-lingui-id: X8wJTR
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
msgid "No records"
msgstr "No hay registros"
#. js-lingui-id: EqGTpW
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateReadOnly.tsx
#: src/modules/object-record/record-picker/components/RecordPickerNoRecordFoundMenuItem.tsx
@@ -10392,7 +10329,7 @@ msgid "Object Events"
msgstr "Eventos de objetos"
#. js-lingui-id: 79D4Az
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
msgid "Object ID"
msgstr "ID del objeto"
@@ -11346,8 +11283,8 @@ msgid "Prompt"
msgstr ""
#. js-lingui-id: l/UFPv
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
msgid "Properties"
msgstr "Propiedades"
@@ -11370,8 +11307,8 @@ msgstr "Proporcione los detalles de su proveedor OIDC"
#. js-lingui-id: aemBRq
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Provider"
msgstr "Proveedor"
@@ -11597,7 +11534,7 @@ msgid "Record filter rule options"
msgstr "Opciones de reglas de filtro de registros"
#. js-lingui-id: xSAYIn
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
msgid "Record ID"
msgstr "ID de registro"
@@ -11625,6 +11562,12 @@ msgstr "Página de registro"
msgid "Record Selection"
msgstr "Selección de registros"
#. js-lingui-id: J9Cfll
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutDashboardWidgetTypeSelect.tsx
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
msgid "Record Table"
msgstr "Tabla de registros"
#. js-lingui-id: NxW0+c
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
msgid "Record Table Settings"
@@ -11993,7 +11936,7 @@ msgid "Reset variable"
msgstr "Restablecer variable"
#. js-lingui-id: esl+Tv
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
msgid "Resource Type"
msgstr "Tipo de recurso"
@@ -13009,7 +12952,6 @@ msgstr "Configurando su base de datos..."
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsSection.tsx
#: src/modules/settings/roles/role/components/SettingsRole.tsx
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
@@ -13866,7 +13808,6 @@ msgstr "Configuración de la pestaña"
#. js-lingui-id: 4hJhzz
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
msgid "Table"
@@ -14411,10 +14352,9 @@ msgid "Timeout"
msgstr "Tiempo de espera"
#. js-lingui-id: 8TMaZI
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Timestamp"
msgstr "Marca de tiempo"
@@ -15258,9 +15198,9 @@ msgstr "Útil para tablas pivote/de unión"
#. js-lingui-id: 7PzzBU
#: src/pages/settings/SettingsTwoFactorAuthenticationMethod.tsx
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
#: src/pages/settings/ai/SettingsAIPrompts.tsx
@@ -15443,9 +15383,7 @@ msgid "view"
msgstr "vista"
#. js-lingui-id: jpctdh
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutDashboardWidgetTypeSelect.tsx
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
@@ -15613,11 +15551,6 @@ msgstr "Violeta"
msgid "Visibility"
msgstr "Visibilidad"
#. js-lingui-id: gkAApJ
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
msgid "Visibility Restriction"
msgstr ""
#. js-lingui-id: zYTdqe
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
+49 -116
View File
@@ -158,16 +158,6 @@ msgstr "{0, plural, one {Sinulla ei ole oikeuksia käyttää kenttää {fieldsLi
msgid "{0} credits"
msgstr "{0} krediittiä"
#. js-lingui-id: peiknr
#. placeholder {0}: activeVisibleFieldLabels.length
#. placeholder {0}: activeFilterLabels.length
#. placeholder {0}: activeSortLabels.length
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
msgid "{0} shown"
msgstr ""
#. js-lingui-id: r4l/MK
#. placeholder {0}: formatUsageValue(totalCredits)
#: src/pages/settings/SettingsUsageUserDetail.tsx
@@ -1785,12 +1775,6 @@ msgstr "Ja"
msgid "Any {fieldLabel} field"
msgstr "Mikä tahansa {fieldLabel}-kenttä"
#. js-lingui-id: COyjuu
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
msgid "Any device"
msgstr ""
#. js-lingui-id: I8f+hC
#: src/modules/views/components/AnyFieldSearchChip.tsx
msgid "Any field"
@@ -1964,11 +1948,6 @@ msgstr "Sovelluksen tiedot"
msgid "Application installed successfully."
msgstr "Sovellus asennettu onnistuneesti."
#. js-lingui-id: LllWIc
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
msgid "Application Logs"
msgstr ""
#. js-lingui-id: +tE2x9
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
msgid "Application successfully uninstalled."
@@ -3356,6 +3335,11 @@ msgstr "Määritä CalDAV-asetukset synkronoidaksesi kalenteritapahtumasi."
msgid "Configure date, time, number, timezone, and calendar start day"
msgstr "Aseta päivämäärä, aika, numero, aikavyöhyke ja kalenterin aloituspäivä"
#. js-lingui-id: +SQwHr
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Configure default AI models and availability"
msgstr "Määritä oletus-AI-mallit ja niiden saatavuus"
#. js-lingui-id: utsXG8
#: src/pages/settings/security/SettingsSecurity.tsx
msgid "Configure fallback login methods for users with SSO bypass permissions"
@@ -3401,11 +3385,6 @@ msgstr "Määritä tämä pienoisohjelma näyttämään kenttiä"
msgid "Configure when this function should be executed"
msgstr "Määritä, milloin tämä funktio suoritetaan"
#. js-lingui-id: hzDiM0
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Configure your default AI model"
msgstr ""
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@@ -3534,7 +3513,7 @@ msgstr "Sisältö"
#. js-lingui-id: M73whl
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Context"
@@ -3732,16 +3711,21 @@ msgstr "Ydinobjektit"
msgid "Cost"
msgstr "Kustannus"
#. js-lingui-id: Iw/ard
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Cost / 1M"
msgstr "Hinta / 1 M"
#. js-lingui-id: 3kzLg2
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
msgid "Cost / 1M tokens"
msgstr "Hinta / 1 M tokenia"
#. js-lingui-id: iX2opZ
#: src/modules/settings/billing/components/SettingsBillingCreditsSection.tsx
msgid "Cost per 1k Extra Credits"
msgstr "Kustannus per 1k ylimääräiset hyvitykset"
#. js-lingui-id: Z9Z9PX
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
msgid "Cost per 1M tokens"
msgstr ""
#. js-lingui-id: 3X5ngu
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
msgid "Cost per million tokens (USD)"
@@ -4279,6 +4263,7 @@ msgstr "Hallintapaneeli monistettiin onnistuneesti"
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Data"
msgstr "Data"
@@ -4331,7 +4316,7 @@ msgid "Data on display"
msgstr "Näytettävä data"
#. js-lingui-id: Ix/CMz
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Data residency"
msgstr "Tietojen sijainti"
@@ -4494,7 +4479,6 @@ msgid "default"
msgstr ""
#. js-lingui-id: ovBPCi
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
msgid "Default"
@@ -4833,11 +4817,6 @@ msgstr "Poistettu tietue"
msgid "Deleting this method will remove it permanently from your account."
msgstr "Tämän menetelmän poistaminen poistaa sen pysyvästi tililtäsi."
#. js-lingui-id: Ssdrw4
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
msgid "Deprecated"
msgstr ""
#. js-lingui-id: O3LJh6
#: src/modules/side-panel/pages/page-layout/utils/getSortLabelSuffixForFieldType.ts
#: src/modules/side-panel/pages/page-layout/utils/getSortLabelSuffixForFieldType.ts
@@ -4873,12 +4852,6 @@ msgstr "Kuvaile mitä haluat, että tekoäly tekee..."
msgid "Description"
msgstr "Kuvaus"
#. js-lingui-id: BBqGS9
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
msgid "Desktop"
msgstr ""
#. js-lingui-id: +ow7t4
#: src/modules/settings/roles/role-permissions/object-level-permissions/utils/objectPermissionKeyToHumanReadableText.ts
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
@@ -4901,7 +4874,7 @@ msgid "Detach"
msgstr "Irrota"
#. js-lingui-id: URmyfc
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Details"
msgstr "Tiedot"
@@ -5336,8 +5309,6 @@ msgstr ""
#. js-lingui-id: uBAxNB
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/FieldWidgetLayoutDropdownContent.tsx
msgid "Editor"
msgstr "Editori"
@@ -6093,8 +6064,8 @@ msgid "Evaluations"
msgstr ""
#. js-lingui-id: 0pC/y6
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/modules/activities/calendar/components/CalendarEventDetails.tsx
msgid "Event"
msgstr "Tapahtuma"
@@ -6213,11 +6184,6 @@ msgstr "Jätä ei-ammattimaiset sähköpostit pois"
msgid "Exclude the following people and domains from my email sync. Internal conversations will not be imported"
msgstr "Pois sulje seuraavat henkilöt ja verkkotunnukset sähköpostisynkronoinnistani. Sisäisiä keskusteluja ei tuoda"
#. js-lingui-id: B0clc7
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Execution ID"
msgstr ""
#. js-lingui-id: YzI8cc
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsSelect.tsx
msgid "Existing Field"
@@ -6547,8 +6513,6 @@ msgstr "Mallin päivittäminen epäonnistui"
#. js-lingui-id: W7Ff/4
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Failed to update model availability"
msgstr "Mallin saatavuuden päivittäminen epäonnistui"
@@ -6558,11 +6522,6 @@ msgstr "Mallin saatavuuden päivittäminen epäonnistui"
msgid "Failed to update model recommendation"
msgstr "Mallisuosituksen päivittäminen epäonnistui"
#. js-lingui-id: q1MtjM
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
msgid "Failed to update model recommendations"
msgstr ""
#. js-lingui-id: rCUG3c
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Failed to update model selection mode"
@@ -7053,11 +7012,6 @@ msgstr "Käyttöliittymäkomponentit"
msgid "Full access"
msgstr "Täysi pääsy"
#. js-lingui-id: YMZBxa
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Function"
msgstr ""
#. js-lingui-id: AHOl4W
#: src/modules/settings/logic-functions/components/SettingsLogicFunctionLabelContainer.tsx
msgid "Function name"
@@ -8408,7 +8362,6 @@ msgstr "Käynnistä manuaalisesti"
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldsSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Layout"
@@ -8482,11 +8435,6 @@ msgstr ""
msgid "Less than or equal"
msgstr "Pienempi tai yhtä suuri"
#. js-lingui-id: oCHfGC
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Level"
msgstr ""
#. js-lingui-id: 3qg5Ro
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
@@ -8921,7 +8869,7 @@ msgstr "Enimmäistuontikapasiteetti: {formatSpreadsheetMaxRecordImportCapacity}
#. js-lingui-id: S8w4XA
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Max output"
msgstr "Enimmäistuloste"
@@ -9031,11 +8979,6 @@ msgstr "Yhdistä tietueet"
msgid "Merging..."
msgstr "Yhdistetään..."
#. js-lingui-id: xDAtGP
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Message"
msgstr ""
#. js-lingui-id: U15XwX
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Message not found"
@@ -9133,12 +9076,6 @@ msgstr "Käyttöoikeus sähköpostiluonnosten laatimiseen puuttuu."
msgid "Mission accomplished!"
msgstr "Tehtävä suoritettu!"
#. js-lingui-id: dMsM20
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
msgid "Mobile"
msgstr ""
#. js-lingui-id: scu3wk
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPromptTab.tsx
msgid "Model"
@@ -9168,6 +9105,7 @@ msgstr "Mallin tunnus on pakollinen"
#. js-lingui-id: //nm2/
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Models"
msgstr "Mallit"
@@ -9392,12 +9330,12 @@ msgstr "mySkill"
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
#: src/modules/settings/data-model/new-object/components/SettingsAvailableStandardObjectsSection.tsx
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/config-variables/components/SettingsAdminConfigVariablesTable.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Name"
msgstr "Nimi"
@@ -10062,12 +10000,6 @@ msgstr "Tälle sovellukselle ei ole määritetty käyttöoikeuksia."
msgid "No permissions have been set for individual objects."
msgstr "Yksittäisille kohteille ei ole asetettu käyttöoikeuksia."
#. js-lingui-id: V/+aTW
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordFieldChip.tsx
msgid "No record"
msgstr ""
#. js-lingui-id: ePgApM
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerManual.tsx
msgid "No record is required to trigger this workflow"
@@ -10079,6 +10011,11 @@ msgstr "Ei tietuetta tarvita tämän työnkulun käynnistämiseen"
msgid "No record selected"
msgstr ""
#. js-lingui-id: X8wJTR
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
msgid "No records"
msgstr "Ei tietueita"
#. js-lingui-id: EqGTpW
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateReadOnly.tsx
#: src/modules/object-record/record-picker/components/RecordPickerNoRecordFoundMenuItem.tsx
@@ -10392,7 +10329,7 @@ msgid "Object Events"
msgstr "Objektitapahtumat"
#. js-lingui-id: 79D4Az
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
msgid "Object ID"
msgstr "Objektin ID"
@@ -11346,8 +11283,8 @@ msgid "Prompt"
msgstr ""
#. js-lingui-id: l/UFPv
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
msgid "Properties"
msgstr "Ominaisuudet"
@@ -11370,8 +11307,8 @@ msgstr "Anna OIDC-tarjoajan tiedot"
#. js-lingui-id: aemBRq
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Provider"
msgstr "Tarjoaja"
@@ -11597,7 +11534,7 @@ msgid "Record filter rule options"
msgstr "Tietuesuodattimen säännön valinnat"
#. js-lingui-id: xSAYIn
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
msgid "Record ID"
msgstr "Tietueen ID"
@@ -11625,6 +11562,12 @@ msgstr "Tietuesivu"
msgid "Record Selection"
msgstr "Valitse tietueet"
#. js-lingui-id: J9Cfll
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutDashboardWidgetTypeSelect.tsx
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
msgid "Record Table"
msgstr "Tietuetaulukko"
#. js-lingui-id: NxW0+c
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
msgid "Record Table Settings"
@@ -11993,7 +11936,7 @@ msgid "Reset variable"
msgstr "Palauta muuttuja"
#. js-lingui-id: esl+Tv
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
msgid "Resource Type"
msgstr "Resurssityyppi"
@@ -13009,7 +12952,6 @@ msgstr "Asetetaan tietokantaasi..."
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsSection.tsx
#: src/modules/settings/roles/role/components/SettingsRole.tsx
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
@@ -13866,7 +13808,6 @@ msgstr "Välilehden asetukset"
#. js-lingui-id: 4hJhzz
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
msgid "Table"
@@ -14409,10 +14350,9 @@ msgid "Timeout"
msgstr "Aikakatkaisu"
#. js-lingui-id: 8TMaZI
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Timestamp"
msgstr "Aikaleima"
@@ -15256,9 +15196,9 @@ msgstr "Hyödyllinen pivot-/liitostauluille"
#. js-lingui-id: 7PzzBU
#: src/pages/settings/SettingsTwoFactorAuthenticationMethod.tsx
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
#: src/pages/settings/ai/SettingsAIPrompts.tsx
@@ -15441,9 +15381,7 @@ msgid "view"
msgstr "näkymä"
#. js-lingui-id: jpctdh
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutDashboardWidgetTypeSelect.tsx
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
@@ -15611,11 +15549,6 @@ msgstr "Violetti"
msgid "Visibility"
msgstr "Näkyvyys"
#. js-lingui-id: gkAApJ
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
msgid "Visibility Restriction"
msgstr ""
#. js-lingui-id: zYTdqe
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
+49 -116
View File
@@ -158,16 +158,6 @@ msgstr "{0, plural, one {Vous n'avez pas la permission d'accéder au champ {fiel
msgid "{0} credits"
msgstr "{0} crédits"
#. js-lingui-id: peiknr
#. placeholder {0}: activeVisibleFieldLabels.length
#. placeholder {0}: activeFilterLabels.length
#. placeholder {0}: activeSortLabels.length
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
msgid "{0} shown"
msgstr ""
#. js-lingui-id: r4l/MK
#. placeholder {0}: formatUsageValue(totalCredits)
#: src/pages/settings/SettingsUsageUserDetail.tsx
@@ -1785,12 +1775,6 @@ msgstr "Et"
msgid "Any {fieldLabel} field"
msgstr "Tout champ {fieldLabel}"
#. js-lingui-id: COyjuu
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
msgid "Any device"
msgstr ""
#. js-lingui-id: I8f+hC
#: src/modules/views/components/AnyFieldSearchChip.tsx
msgid "Any field"
@@ -1964,11 +1948,6 @@ msgstr "Détails de l'application"
msgid "Application installed successfully."
msgstr "Application installée avec succès."
#. js-lingui-id: LllWIc
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
msgid "Application Logs"
msgstr ""
#. js-lingui-id: +tE2x9
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
msgid "Application successfully uninstalled."
@@ -3356,6 +3335,11 @@ msgstr "Configurez les paramètres de CalDAV pour synchroniser vos événements
msgid "Configure date, time, number, timezone, and calendar start day"
msgstr "Configurer la date, l'heure, le nombre, le fuseau horaire et le jour de début du calendrier"
#. js-lingui-id: +SQwHr
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Configure default AI models and availability"
msgstr "Configurer les modèles d'IA par défaut et leur disponibilité"
#. js-lingui-id: utsXG8
#: src/pages/settings/security/SettingsSecurity.tsx
msgid "Configure fallback login methods for users with SSO bypass permissions"
@@ -3401,11 +3385,6 @@ msgstr "Configurez ce widget pour afficher des champs"
msgid "Configure when this function should be executed"
msgstr "Configurez le moment où cette fonction doit être exécutée"
#. js-lingui-id: hzDiM0
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Configure your default AI model"
msgstr ""
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@@ -3534,7 +3513,7 @@ msgstr "Contenu"
#. js-lingui-id: M73whl
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Context"
@@ -3732,16 +3711,21 @@ msgstr "Objets de base"
msgid "Cost"
msgstr "Coût"
#. js-lingui-id: Iw/ard
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Cost / 1M"
msgstr "Coût / 1 M"
#. js-lingui-id: 3kzLg2
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
msgid "Cost / 1M tokens"
msgstr "Coût / 1 M de jetons"
#. js-lingui-id: iX2opZ
#: src/modules/settings/billing/components/SettingsBillingCreditsSection.tsx
msgid "Cost per 1k Extra Credits"
msgstr "Coût pour 1k de crédits supplémentaires"
#. js-lingui-id: Z9Z9PX
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
msgid "Cost per 1M tokens"
msgstr ""
#. js-lingui-id: 3X5ngu
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
msgid "Cost per million tokens (USD)"
@@ -4279,6 +4263,7 @@ msgstr "Tableau de bord dupliqué avec succès"
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Data"
msgstr "Données"
@@ -4331,7 +4316,7 @@ msgid "Data on display"
msgstr "Données affichées"
#. js-lingui-id: Ix/CMz
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Data residency"
msgstr "Résidence des données"
@@ -4494,7 +4479,6 @@ msgid "default"
msgstr ""
#. js-lingui-id: ovBPCi
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
msgid "Default"
@@ -4833,11 +4817,6 @@ msgstr "Enregistrement supprimé"
msgid "Deleting this method will remove it permanently from your account."
msgstr "La suppression de cette méthode l'éliminera définitivement de votre compte."
#. js-lingui-id: Ssdrw4
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
msgid "Deprecated"
msgstr ""
#. js-lingui-id: O3LJh6
#: src/modules/side-panel/pages/page-layout/utils/getSortLabelSuffixForFieldType.ts
#: src/modules/side-panel/pages/page-layout/utils/getSortLabelSuffixForFieldType.ts
@@ -4873,12 +4852,6 @@ msgstr "Décrivez ce que vous voulez que l'IA fasse..."
msgid "Description"
msgstr "Description"
#. js-lingui-id: BBqGS9
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
msgid "Desktop"
msgstr ""
#. js-lingui-id: +ow7t4
#: src/modules/settings/roles/role-permissions/object-level-permissions/utils/objectPermissionKeyToHumanReadableText.ts
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
@@ -4901,7 +4874,7 @@ msgid "Detach"
msgstr "Détacher"
#. js-lingui-id: URmyfc
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Details"
msgstr "Détails"
@@ -5336,8 +5309,6 @@ msgstr ""
#. js-lingui-id: uBAxNB
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/FieldWidgetLayoutDropdownContent.tsx
msgid "Editor"
msgstr "Éditeur"
@@ -6093,8 +6064,8 @@ msgid "Evaluations"
msgstr ""
#. js-lingui-id: 0pC/y6
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/modules/activities/calendar/components/CalendarEventDetails.tsx
msgid "Event"
msgstr "Événement"
@@ -6213,11 +6184,6 @@ msgstr "Exclure les emails non professionnels"
msgid "Exclude the following people and domains from my email sync. Internal conversations will not be imported"
msgstr "Exclure les personnes et domaines suivants de ma synchronisation de courriels. Les conversations internes ne seront pas importées"
#. js-lingui-id: B0clc7
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Execution ID"
msgstr ""
#. js-lingui-id: YzI8cc
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsSelect.tsx
msgid "Existing Field"
@@ -6547,8 +6513,6 @@ msgstr "Échec de la mise à jour du modèle"
#. js-lingui-id: W7Ff/4
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Failed to update model availability"
msgstr "Échec de la mise à jour de la disponibilité du modèle"
@@ -6558,11 +6522,6 @@ msgstr "Échec de la mise à jour de la disponibilité du modèle"
msgid "Failed to update model recommendation"
msgstr "Échec de la mise à jour de la recommandation de modèle"
#. js-lingui-id: q1MtjM
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
msgid "Failed to update model recommendations"
msgstr ""
#. js-lingui-id: rCUG3c
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Failed to update model selection mode"
@@ -7053,11 +7012,6 @@ msgstr "Composants frontaux"
msgid "Full access"
msgstr "Accès complet"
#. js-lingui-id: YMZBxa
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Function"
msgstr ""
#. js-lingui-id: AHOl4W
#: src/modules/settings/logic-functions/components/SettingsLogicFunctionLabelContainer.tsx
msgid "Function name"
@@ -8408,7 +8362,6 @@ msgstr "Lancer manuellement"
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldsSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Layout"
@@ -8482,11 +8435,6 @@ msgstr ""
msgid "Less than or equal"
msgstr "Inférieur ou égal à"
#. js-lingui-id: oCHfGC
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Level"
msgstr ""
#. js-lingui-id: 3qg5Ro
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
@@ -8921,7 +8869,7 @@ msgstr "Capacité d'importation maximale : {formatSpreadsheetMaxRecordImportCapa
#. js-lingui-id: S8w4XA
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Max output"
msgstr "Sortie maximale"
@@ -9031,11 +8979,6 @@ msgstr "Fusionner les enregistrements"
msgid "Merging..."
msgstr "Fusion en cours..."
#. js-lingui-id: xDAtGP
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Message"
msgstr ""
#. js-lingui-id: U15XwX
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Message not found"
@@ -9133,12 +9076,6 @@ msgstr "Autorisation manquante pour rédiger des brouillons d'e-mails."
msgid "Mission accomplished!"
msgstr "Mission accomplie !"
#. js-lingui-id: dMsM20
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
msgid "Mobile"
msgstr ""
#. js-lingui-id: scu3wk
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPromptTab.tsx
msgid "Model"
@@ -9168,6 +9105,7 @@ msgstr "L'ID du modèle est requis"
#. js-lingui-id: //nm2/
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Models"
msgstr "Modèles"
@@ -9392,12 +9330,12 @@ msgstr "mySkill"
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
#: src/modules/settings/data-model/new-object/components/SettingsAvailableStandardObjectsSection.tsx
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/config-variables/components/SettingsAdminConfigVariablesTable.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Name"
msgstr "Nom"
@@ -10062,12 +10000,6 @@ msgstr "Aucune autorisation configurée pour cette application."
msgid "No permissions have been set for individual objects."
msgstr "Aucune autorisation n'a été définie pour les objets individuels."
#. js-lingui-id: V/+aTW
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordFieldChip.tsx
msgid "No record"
msgstr ""
#. js-lingui-id: ePgApM
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerManual.tsx
msgid "No record is required to trigger this workflow"
@@ -10079,6 +10011,11 @@ msgstr "Aucun enregistrement n'est requis pour déclencher ce flux de travail"
msgid "No record selected"
msgstr ""
#. js-lingui-id: X8wJTR
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
msgid "No records"
msgstr "Aucun enregistrement"
#. js-lingui-id: EqGTpW
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateReadOnly.tsx
#: src/modules/object-record/record-picker/components/RecordPickerNoRecordFoundMenuItem.tsx
@@ -10392,7 +10329,7 @@ msgid "Object Events"
msgstr "Événements d'objet"
#. js-lingui-id: 79D4Az
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
msgid "Object ID"
msgstr "ID de l'objet"
@@ -11346,8 +11283,8 @@ msgid "Prompt"
msgstr ""
#. js-lingui-id: l/UFPv
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
msgid "Properties"
msgstr "Propriétés"
@@ -11370,8 +11307,8 @@ msgstr "Fournissez les détails de votre fournisseur OIDC"
#. js-lingui-id: aemBRq
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Provider"
msgstr "Fournisseur"
@@ -11597,7 +11534,7 @@ msgid "Record filter rule options"
msgstr "Options des règles de filtrage des enregistrements"
#. js-lingui-id: xSAYIn
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
msgid "Record ID"
msgstr "ID de l'enregistrement"
@@ -11625,6 +11562,12 @@ msgstr "Page d'enregistrement"
msgid "Record Selection"
msgstr "Sélection des enregistrements"
#. js-lingui-id: J9Cfll
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutDashboardWidgetTypeSelect.tsx
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
msgid "Record Table"
msgstr "Table des enregistrements"
#. js-lingui-id: NxW0+c
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
msgid "Record Table Settings"
@@ -11993,7 +11936,7 @@ msgid "Reset variable"
msgstr "Réinitialiser la variable"
#. js-lingui-id: esl+Tv
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
msgid "Resource Type"
msgstr "Type de ressource"
@@ -13009,7 +12952,6 @@ msgstr "Configuration de votre base de données..."
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsSection.tsx
#: src/modules/settings/roles/role/components/SettingsRole.tsx
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
@@ -13866,7 +13808,6 @@ msgstr "Paramètres de l'onglet"
#. js-lingui-id: 4hJhzz
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
msgid "Table"
@@ -14411,10 +14352,9 @@ msgid "Timeout"
msgstr "Délai dexpiration"
#. js-lingui-id: 8TMaZI
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Timestamp"
msgstr "Horodatage"
@@ -15258,9 +15198,9 @@ msgstr "Utile pour les tables pivot/de jonction"
#. js-lingui-id: 7PzzBU
#: src/pages/settings/SettingsTwoFactorAuthenticationMethod.tsx
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
#: src/pages/settings/ai/SettingsAIPrompts.tsx
@@ -15443,9 +15383,7 @@ msgid "view"
msgstr "vue"
#. js-lingui-id: jpctdh
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutDashboardWidgetTypeSelect.tsx
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
@@ -15613,11 +15551,6 @@ msgstr "Violet"
msgid "Visibility"
msgstr "Visibilité"
#. js-lingui-id: gkAApJ
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
msgid "Visibility Restriction"
msgstr ""
#. js-lingui-id: zYTdqe
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
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
+49 -116
View File
@@ -158,16 +158,6 @@ msgstr "{0, plural, one {אין לך גישה לשדה {fieldsList}} two {אין
msgid "{0} credits"
msgstr "{0} קרדיטים"
#. js-lingui-id: peiknr
#. placeholder {0}: activeVisibleFieldLabels.length
#. placeholder {0}: activeFilterLabels.length
#. placeholder {0}: activeSortLabels.length
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
msgid "{0} shown"
msgstr ""
#. js-lingui-id: r4l/MK
#. placeholder {0}: formatUsageValue(totalCredits)
#: src/pages/settings/SettingsUsageUserDetail.tsx
@@ -1785,12 +1775,6 @@ msgstr "וגם"
msgid "Any {fieldLabel} field"
msgstr "כל שדה {fieldLabel}"
#. js-lingui-id: COyjuu
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
msgid "Any device"
msgstr ""
#. js-lingui-id: I8f+hC
#: src/modules/views/components/AnyFieldSearchChip.tsx
msgid "Any field"
@@ -1964,11 +1948,6 @@ msgstr "פרטי היישום"
msgid "Application installed successfully."
msgstr "היישום הותקן בהצלחה."
#. js-lingui-id: LllWIc
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
msgid "Application Logs"
msgstr ""
#. js-lingui-id: +tE2x9
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
msgid "Application successfully uninstalled."
@@ -3356,6 +3335,11 @@ msgstr "הגדר את הגדרות CalDAV לסנכרון אירועי לוח ה
msgid "Configure date, time, number, timezone, and calendar start day"
msgstr "הגדרת תאריך, שעה, מספר, אזור זמן ויום התחלת לוח שנה"
#. js-lingui-id: +SQwHr
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Configure default AI models and availability"
msgstr "הגדר את מודלי ה-AI כברירת מחדל ואת זמינותם"
#. js-lingui-id: utsXG8
#: src/pages/settings/security/SettingsSecurity.tsx
msgid "Configure fallback login methods for users with SSO bypass permissions"
@@ -3401,11 +3385,6 @@ msgstr "הגדירו את הווידג'ט הזה כדי להציג שדות"
msgid "Configure when this function should be executed"
msgstr "הגדר מתי יש להפעיל פונקציה זו"
#. js-lingui-id: hzDiM0
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Configure your default AI model"
msgstr ""
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@@ -3534,7 +3513,7 @@ msgstr "תוכן"
#. js-lingui-id: M73whl
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Context"
@@ -3732,16 +3711,21 @@ msgstr "אובייקטי ליבה"
msgid "Cost"
msgstr "עלות"
#. js-lingui-id: Iw/ard
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Cost / 1M"
msgstr "עלות / 1M"
#. js-lingui-id: 3kzLg2
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
msgid "Cost / 1M tokens"
msgstr "עלות / 1M אסימונים"
#. js-lingui-id: iX2opZ
#: src/modules/settings/billing/components/SettingsBillingCreditsSection.tsx
msgid "Cost per 1k Extra Credits"
msgstr "עלות לכל אלף נקודות"
#. js-lingui-id: Z9Z9PX
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
msgid "Cost per 1M tokens"
msgstr ""
#. js-lingui-id: 3X5ngu
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
msgid "Cost per million tokens (USD)"
@@ -4279,6 +4263,7 @@ msgstr "לוח הבקרה שוכפל בהצלחה"
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Data"
msgstr "מידע"
@@ -4331,7 +4316,7 @@ msgid "Data on display"
msgstr "הנתונים בתצוגה"
#. js-lingui-id: Ix/CMz
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Data residency"
msgstr "ריבונות נתונים"
@@ -4494,7 +4479,6 @@ msgid "default"
msgstr ""
#. js-lingui-id: ovBPCi
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
msgid "Default"
@@ -4833,11 +4817,6 @@ msgstr "רשומה שנמחקה"
msgid "Deleting this method will remove it permanently from your account."
msgstr "מחיקת שיטה זו תסיר אותה לצמיתות מחשבונך."
#. js-lingui-id: Ssdrw4
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
msgid "Deprecated"
msgstr ""
#. js-lingui-id: O3LJh6
#: src/modules/side-panel/pages/page-layout/utils/getSortLabelSuffixForFieldType.ts
#: src/modules/side-panel/pages/page-layout/utils/getSortLabelSuffixForFieldType.ts
@@ -4873,12 +4852,6 @@ msgstr "תאר מה אתה רוצה שהבינה המלאכותית תעשה..."
msgid "Description"
msgstr "תיאור"
#. js-lingui-id: BBqGS9
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
msgid "Desktop"
msgstr ""
#. js-lingui-id: +ow7t4
#: src/modules/settings/roles/role-permissions/object-level-permissions/utils/objectPermissionKeyToHumanReadableText.ts
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
@@ -4901,7 +4874,7 @@ msgid "Detach"
msgstr "נתק"
#. js-lingui-id: URmyfc
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Details"
msgstr "פרטים"
@@ -5336,8 +5309,6 @@ msgstr ""
#. js-lingui-id: uBAxNB
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/FieldWidgetLayoutDropdownContent.tsx
msgid "Editor"
msgstr "עורך"
@@ -6093,8 +6064,8 @@ msgid "Evaluations"
msgstr ""
#. js-lingui-id: 0pC/y6
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/modules/activities/calendar/components/CalendarEventDetails.tsx
msgid "Event"
msgstr "אירוע"
@@ -6213,11 +6184,6 @@ msgstr "התעלם מכתובות דוא\"ל לא מקצועיות"
msgid "Exclude the following people and domains from my email sync. Internal conversations will not be imported"
msgstr "לא לכלול את האנשים והדומיינים הבאים מהסנכרון של הדוא\"ל שלי. שיחות פנימיות לא ייובאו"
#. js-lingui-id: B0clc7
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Execution ID"
msgstr ""
#. js-lingui-id: YzI8cc
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsSelect.tsx
msgid "Existing Field"
@@ -6547,8 +6513,6 @@ msgstr "העדכון של המודל נכשל"
#. js-lingui-id: W7Ff/4
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Failed to update model availability"
msgstr "העדכון של זמינות המודל נכשל"
@@ -6558,11 +6522,6 @@ msgstr "העדכון של זמינות המודל נכשל"
msgid "Failed to update model recommendation"
msgstr "עדכון המלצת המודל נכשל"
#. js-lingui-id: q1MtjM
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
msgid "Failed to update model recommendations"
msgstr ""
#. js-lingui-id: rCUG3c
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Failed to update model selection mode"
@@ -7053,11 +7012,6 @@ msgstr "רכיבי פרונטאנד"
msgid "Full access"
msgstr "גישה מלאה"
#. js-lingui-id: YMZBxa
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Function"
msgstr ""
#. js-lingui-id: AHOl4W
#: src/modules/settings/logic-functions/components/SettingsLogicFunctionLabelContainer.tsx
msgid "Function name"
@@ -8408,7 +8362,6 @@ msgstr "הפעל ידנית"
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldsSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Layout"
@@ -8482,11 +8435,6 @@ msgstr ""
msgid "Less than or equal"
msgstr "או קטן יותר"
#. js-lingui-id: oCHfGC
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Level"
msgstr ""
#. js-lingui-id: 3qg5Ro
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
@@ -8921,7 +8869,7 @@ msgstr "קיבולת ייבוא מקסימלית: {formatSpreadsheetMaxRecordImp
#. js-lingui-id: S8w4XA
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Max output"
msgstr "פלט מרבי"
@@ -9031,11 +8979,6 @@ msgstr "מזג רשומות"
msgid "Merging..."
msgstr "ממזג..."
#. js-lingui-id: xDAtGP
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Message"
msgstr ""
#. js-lingui-id: U15XwX
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Message not found"
@@ -9133,12 +9076,6 @@ msgstr "אין הרשאה ליצירת טיוטות אימייל."
msgid "Mission accomplished!"
msgstr "המשימה הושלמה!"
#. js-lingui-id: dMsM20
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
msgid "Mobile"
msgstr ""
#. js-lingui-id: scu3wk
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPromptTab.tsx
msgid "Model"
@@ -9168,6 +9105,7 @@ msgstr "נדרש מזהה מודל"
#. js-lingui-id: //nm2/
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Models"
msgstr "מודלים"
@@ -9392,12 +9330,12 @@ msgstr "mySkill"
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
#: src/modules/settings/data-model/new-object/components/SettingsAvailableStandardObjectsSection.tsx
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/config-variables/components/SettingsAdminConfigVariablesTable.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Name"
msgstr "שם"
@@ -10062,12 +10000,6 @@ msgstr "לא הוגדרו הרשאות עבור יישום זה."
msgid "No permissions have been set for individual objects."
msgstr "לא הוגדרו הרשאות עבור אובייקטים בודדים."
#. js-lingui-id: V/+aTW
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordFieldChip.tsx
msgid "No record"
msgstr ""
#. js-lingui-id: ePgApM
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerManual.tsx
msgid "No record is required to trigger this workflow"
@@ -10079,6 +10011,11 @@ msgstr "לא נדרש תיעוד להפעלת תהליך עבודה זה"
msgid "No record selected"
msgstr ""
#. js-lingui-id: X8wJTR
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
msgid "No records"
msgstr "אין רשומות"
#. js-lingui-id: EqGTpW
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateReadOnly.tsx
#: src/modules/object-record/record-picker/components/RecordPickerNoRecordFoundMenuItem.tsx
@@ -10392,7 +10329,7 @@ msgid "Object Events"
msgstr "אירועי אובייקט"
#. js-lingui-id: 79D4Az
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
msgid "Object ID"
msgstr "מזהה אובייקט"
@@ -11346,8 +11283,8 @@ msgid "Prompt"
msgstr ""
#. js-lingui-id: l/UFPv
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
msgid "Properties"
msgstr "מאפיינים"
@@ -11370,8 +11307,8 @@ msgstr "ספק את פרטי ספק OIDC שלך"
#. js-lingui-id: aemBRq
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Provider"
msgstr "ספק"
@@ -11597,7 +11534,7 @@ msgid "Record filter rule options"
msgstr "אפשרויות כלל מסנן רשומות"
#. js-lingui-id: xSAYIn
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
msgid "Record ID"
msgstr "מזהה רשומה"
@@ -11625,6 +11562,12 @@ msgstr "דף רישום"
msgid "Record Selection"
msgstr "\\"
#. js-lingui-id: J9Cfll
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutDashboardWidgetTypeSelect.tsx
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
msgid "Record Table"
msgstr "טבלת רשומות"
#. js-lingui-id: NxW0+c
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
msgid "Record Table Settings"
@@ -11993,7 +11936,7 @@ msgid "Reset variable"
msgstr "אפס משתנה"
#. js-lingui-id: esl+Tv
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
msgid "Resource Type"
msgstr "סוג משאב"
@@ -13009,7 +12952,6 @@ msgstr "מגדיר את מסד הנתונים שלך..."
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsSection.tsx
#: src/modules/settings/roles/role/components/SettingsRole.tsx
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
@@ -13866,7 +13808,6 @@ msgstr "הגדרות כרטיסייה"
#. js-lingui-id: 4hJhzz
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
msgid "Table"
@@ -14409,10 +14350,9 @@ msgid "Timeout"
msgstr "מגבלת זמן"
#. js-lingui-id: 8TMaZI
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Timestamp"
msgstr "חותמת זמן"
@@ -15256,9 +15196,9 @@ msgstr "שימושי עבור טבלאות ציר/קישור"
#. js-lingui-id: 7PzzBU
#: src/pages/settings/SettingsTwoFactorAuthenticationMethod.tsx
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
#: src/pages/settings/ai/SettingsAIPrompts.tsx
@@ -15441,9 +15381,7 @@ msgid "view"
msgstr "תצוגה"
#. js-lingui-id: jpctdh
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutDashboardWidgetTypeSelect.tsx
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
@@ -15611,11 +15549,6 @@ msgstr "ויולט"
msgid "Visibility"
msgstr "נראות"
#. js-lingui-id: gkAApJ
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
msgid "Visibility Restriction"
msgstr ""
#. js-lingui-id: zYTdqe
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
+49 -116
View File
@@ -158,16 +158,6 @@ msgstr "{0, plural, one {Nincs jogosultsága a(z) {fieldsList} mező eléréséh
msgid "{0} credits"
msgstr "{0} kredit"
#. js-lingui-id: peiknr
#. placeholder {0}: activeVisibleFieldLabels.length
#. placeholder {0}: activeFilterLabels.length
#. placeholder {0}: activeSortLabels.length
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
msgid "{0} shown"
msgstr ""
#. js-lingui-id: r4l/MK
#. placeholder {0}: formatUsageValue(totalCredits)
#: src/pages/settings/SettingsUsageUserDetail.tsx
@@ -1785,12 +1775,6 @@ msgstr "És"
msgid "Any {fieldLabel} field"
msgstr "Bármely {fieldLabel} mező"
#. js-lingui-id: COyjuu
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
msgid "Any device"
msgstr ""
#. js-lingui-id: I8f+hC
#: src/modules/views/components/AnyFieldSearchChip.tsx
msgid "Any field"
@@ -1964,11 +1948,6 @@ msgstr "Alkalmazás részletei"
msgid "Application installed successfully."
msgstr "Az alkalmazás sikeresen telepítve."
#. js-lingui-id: LllWIc
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
msgid "Application Logs"
msgstr ""
#. js-lingui-id: +tE2x9
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
msgid "Application successfully uninstalled."
@@ -3356,6 +3335,11 @@ msgstr "A CalDAV beállítások konfigurálása a naptáresemények szinkronizá
msgid "Configure date, time, number, timezone, and calendar start day"
msgstr "Dátum, idő, szám, időzóna és a naptár kezdőnapjának konfigurálása"
#. js-lingui-id: +SQwHr
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Configure default AI models and availability"
msgstr "Alapértelmezett AI modellek és elérhetőségük beállítása"
#. js-lingui-id: utsXG8
#: src/pages/settings/security/SettingsSecurity.tsx
msgid "Configure fallback login methods for users with SSO bypass permissions"
@@ -3401,11 +3385,6 @@ msgstr "Konfigurálja ezt a widgetet a mezők megjelenítéséhez"
msgid "Configure when this function should be executed"
msgstr "Állítsa be, mikor fusson ez a függvény"
#. js-lingui-id: hzDiM0
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Configure your default AI model"
msgstr ""
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@@ -3534,7 +3513,7 @@ msgstr "Tartalom"
#. js-lingui-id: M73whl
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Context"
@@ -3732,16 +3711,21 @@ msgstr "Alap objektumok"
msgid "Cost"
msgstr "Költség"
#. js-lingui-id: Iw/ard
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Cost / 1M"
msgstr "Költség / 1M"
#. js-lingui-id: 3kzLg2
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
msgid "Cost / 1M tokens"
msgstr "Költség / 1M token"
#. js-lingui-id: iX2opZ
#: src/modules/settings/billing/components/SettingsBillingCreditsSection.tsx
msgid "Cost per 1k Extra Credits"
msgstr "Költség 1k extra kreditenként"
#. js-lingui-id: Z9Z9PX
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
msgid "Cost per 1M tokens"
msgstr ""
#. js-lingui-id: 3X5ngu
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
msgid "Cost per million tokens (USD)"
@@ -4279,6 +4263,7 @@ msgstr "Irányítópult sikeresen duplikálva"
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Data"
msgstr "Adat"
@@ -4331,7 +4316,7 @@ msgid "Data on display"
msgstr "Megjelenő adatok"
#. js-lingui-id: Ix/CMz
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Data residency"
msgstr "Adatrezidencia"
@@ -4494,7 +4479,6 @@ msgid "default"
msgstr ""
#. js-lingui-id: ovBPCi
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
msgid "Default"
@@ -4833,11 +4817,6 @@ msgstr "Törölt rekord"
msgid "Deleting this method will remove it permanently from your account."
msgstr "Ha ezt a módszert törli, az véglegesen eltávolításra kerül a fiókjából."
#. js-lingui-id: Ssdrw4
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
msgid "Deprecated"
msgstr ""
#. js-lingui-id: O3LJh6
#: src/modules/side-panel/pages/page-layout/utils/getSortLabelSuffixForFieldType.ts
#: src/modules/side-panel/pages/page-layout/utils/getSortLabelSuffixForFieldType.ts
@@ -4873,12 +4852,6 @@ msgstr "Írja le, mit szeretne, hogy az AI végrehajtson..."
msgid "Description"
msgstr "Leírás"
#. js-lingui-id: BBqGS9
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
msgid "Desktop"
msgstr ""
#. js-lingui-id: +ow7t4
#: src/modules/settings/roles/role-permissions/object-level-permissions/utils/objectPermissionKeyToHumanReadableText.ts
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
@@ -4901,7 +4874,7 @@ msgid "Detach"
msgstr "Leválasztás"
#. js-lingui-id: URmyfc
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Details"
msgstr "Részletek"
@@ -5336,8 +5309,6 @@ msgstr ""
#. js-lingui-id: uBAxNB
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/FieldWidgetLayoutDropdownContent.tsx
msgid "Editor"
msgstr "Szerkesztő"
@@ -6093,8 +6064,8 @@ msgid "Evaluations"
msgstr ""
#. js-lingui-id: 0pC/y6
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/modules/activities/calendar/components/CalendarEventDetails.tsx
msgid "Event"
msgstr "Esemény"
@@ -6213,11 +6184,6 @@ msgstr "Nem-professzionális emailek kizárása"
msgid "Exclude the following people and domains from my email sync. Internal conversations will not be imported"
msgstr "Zárja ki a következő embereket és domaineket az e-mail szinkronizálásomból. A belső beszélgetések nem lesznek importálva"
#. js-lingui-id: B0clc7
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Execution ID"
msgstr ""
#. js-lingui-id: YzI8cc
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsSelect.tsx
msgid "Existing Field"
@@ -6547,8 +6513,6 @@ msgstr "Nem sikerült frissíteni a modellt"
#. js-lingui-id: W7Ff/4
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Failed to update model availability"
msgstr "Nem sikerült frissíteni a modell elérhetőségét"
@@ -6558,11 +6522,6 @@ msgstr "Nem sikerült frissíteni a modell elérhetőségét"
msgid "Failed to update model recommendation"
msgstr "Nem sikerült frissíteni a modellajánlást"
#. js-lingui-id: q1MtjM
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
msgid "Failed to update model recommendations"
msgstr ""
#. js-lingui-id: rCUG3c
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Failed to update model selection mode"
@@ -7053,11 +7012,6 @@ msgstr "Front komponensek"
msgid "Full access"
msgstr "Teljes hozzáférés"
#. js-lingui-id: YMZBxa
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Function"
msgstr ""
#. js-lingui-id: AHOl4W
#: src/modules/settings/logic-functions/components/SettingsLogicFunctionLabelContainer.tsx
msgid "Function name"
@@ -8408,7 +8362,6 @@ msgstr "Indítás manuálisan"
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldsSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Layout"
@@ -8482,11 +8435,6 @@ msgstr ""
msgid "Less than or equal"
msgstr "Kisebb vagy egyenlő"
#. js-lingui-id: oCHfGC
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Level"
msgstr ""
#. js-lingui-id: 3qg5Ro
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
@@ -8921,7 +8869,7 @@ msgstr "Maximális importálási kapacitás: {formatSpreadsheetMaxRecordImportCa
#. js-lingui-id: S8w4XA
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Max output"
msgstr "Maximális kimenet"
@@ -9031,11 +8979,6 @@ msgstr "Rekordok összevonása"
msgid "Merging..."
msgstr "Egyesítés..."
#. js-lingui-id: xDAtGP
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Message"
msgstr ""
#. js-lingui-id: U15XwX
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Message not found"
@@ -9133,12 +9076,6 @@ msgstr "Hiányzik az e-mail-piszkozatok létrehozásához szükséges engedély.
msgid "Mission accomplished!"
msgstr "Küldetés teljesítve!"
#. js-lingui-id: dMsM20
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
msgid "Mobile"
msgstr ""
#. js-lingui-id: scu3wk
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPromptTab.tsx
msgid "Model"
@@ -9168,6 +9105,7 @@ msgstr "A modellazonosító megadása kötelező"
#. js-lingui-id: //nm2/
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Models"
msgstr "Modellek"
@@ -9392,12 +9330,12 @@ msgstr "mySkill"
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
#: src/modules/settings/data-model/new-object/components/SettingsAvailableStandardObjectsSection.tsx
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/config-variables/components/SettingsAdminConfigVariablesTable.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Name"
msgstr "Név"
@@ -10062,12 +10000,6 @@ msgstr "Ehhez az alkalmazáshoz nincsenek jogosultságok beállítva."
msgid "No permissions have been set for individual objects."
msgstr "Nincs jogosultság beállítva az egyes objektumokhoz."
#. js-lingui-id: V/+aTW
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordFieldChip.tsx
msgid "No record"
msgstr ""
#. js-lingui-id: ePgApM
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerManual.tsx
msgid "No record is required to trigger this workflow"
@@ -10079,6 +10011,11 @@ msgstr "Nincs szükség rekordra ennek a munkafolyamatnak a elindításához"
msgid "No record selected"
msgstr ""
#. js-lingui-id: X8wJTR
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
msgid "No records"
msgstr "Nincsenek rekordok"
#. js-lingui-id: EqGTpW
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateReadOnly.tsx
#: src/modules/object-record/record-picker/components/RecordPickerNoRecordFoundMenuItem.tsx
@@ -10392,7 +10329,7 @@ msgid "Object Events"
msgstr "Objektumesemények"
#. js-lingui-id: 79D4Az
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
msgid "Object ID"
msgstr "Objektum azonosító"
@@ -11346,8 +11283,8 @@ msgid "Prompt"
msgstr ""
#. js-lingui-id: l/UFPv
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
msgid "Properties"
msgstr "Tulajdonságok"
@@ -11370,8 +11307,8 @@ msgstr "Adja meg OIDC szolgáltatói adatait"
#. js-lingui-id: aemBRq
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Provider"
msgstr "Szolgáltató"
@@ -11597,7 +11534,7 @@ msgid "Record filter rule options"
msgstr "Rekordszűrő szabály beállításai"
#. js-lingui-id: xSAYIn
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
msgid "Record ID"
msgstr "Rekordazonosító"
@@ -11625,6 +11562,12 @@ msgstr "Felvételi oldal"
msgid "Record Selection"
msgstr "Bejegyzések kiválasztása"
#. js-lingui-id: J9Cfll
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutDashboardWidgetTypeSelect.tsx
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
msgid "Record Table"
msgstr "Rekordtábla"
#. js-lingui-id: NxW0+c
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
msgid "Record Table Settings"
@@ -11993,7 +11936,7 @@ msgid "Reset variable"
msgstr "Változó visszaállítása"
#. js-lingui-id: esl+Tv
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
msgid "Resource Type"
msgstr "Erőforrás típusa"
@@ -13009,7 +12952,6 @@ msgstr "Az adatbázis beállítása..."
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsSection.tsx
#: src/modules/settings/roles/role/components/SettingsRole.tsx
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
@@ -13866,7 +13808,6 @@ msgstr "Fül beállítások"
#. js-lingui-id: 4hJhzz
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
msgid "Table"
@@ -14409,10 +14350,9 @@ msgid "Timeout"
msgstr "Időkorlát"
#. js-lingui-id: 8TMaZI
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Timestamp"
msgstr "Időbélyeg"
@@ -15256,9 +15196,9 @@ msgstr "Hasznos pivot/kapcsoló táblákhoz"
#. js-lingui-id: 7PzzBU
#: src/pages/settings/SettingsTwoFactorAuthenticationMethod.tsx
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
#: src/pages/settings/ai/SettingsAIPrompts.tsx
@@ -15441,9 +15381,7 @@ msgid "view"
msgstr "nézet"
#. js-lingui-id: jpctdh
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutDashboardWidgetTypeSelect.tsx
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
@@ -15611,11 +15549,6 @@ msgstr "Ibolya"
msgid "Visibility"
msgstr "Láthatóság"
#. js-lingui-id: gkAApJ
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
msgid "Visibility Restriction"
msgstr ""
#. js-lingui-id: zYTdqe
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
+49 -116
View File
@@ -158,16 +158,6 @@ msgstr "{0, plural, one {Non hai il permesso di accedere al campo {fieldsList}}
msgid "{0} credits"
msgstr "{0} crediti"
#. js-lingui-id: peiknr
#. placeholder {0}: activeVisibleFieldLabels.length
#. placeholder {0}: activeFilterLabels.length
#. placeholder {0}: activeSortLabels.length
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
msgid "{0} shown"
msgstr ""
#. js-lingui-id: r4l/MK
#. placeholder {0}: formatUsageValue(totalCredits)
#: src/pages/settings/SettingsUsageUserDetail.tsx
@@ -1785,12 +1775,6 @@ msgstr "E"
msgid "Any {fieldLabel} field"
msgstr "Qualsiasi campo {fieldLabel}"
#. js-lingui-id: COyjuu
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
msgid "Any device"
msgstr ""
#. js-lingui-id: I8f+hC
#: src/modules/views/components/AnyFieldSearchChip.tsx
msgid "Any field"
@@ -1964,11 +1948,6 @@ msgstr "Dettagli dell'applicazione"
msgid "Application installed successfully."
msgstr "Applicazione installata con successo."
#. js-lingui-id: LllWIc
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
msgid "Application Logs"
msgstr ""
#. js-lingui-id: +tE2x9
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
msgid "Application successfully uninstalled."
@@ -3356,6 +3335,11 @@ msgstr "Configura le impostazioni CalDAV per sincronizzare i tuoi eventi del cal
msgid "Configure date, time, number, timezone, and calendar start day"
msgstr "Configura data, ora, numero, fuso orario e giorno di inizio calendario"
#. js-lingui-id: +SQwHr
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Configure default AI models and availability"
msgstr "Configura i modelli IA predefiniti e la disponibilità"
#. js-lingui-id: utsXG8
#: src/pages/settings/security/SettingsSecurity.tsx
msgid "Configure fallback login methods for users with SSO bypass permissions"
@@ -3401,11 +3385,6 @@ msgstr "Configura questo widget per visualizzare i campi"
msgid "Configure when this function should be executed"
msgstr "Configura quando questa funzione deve essere eseguita"
#. js-lingui-id: hzDiM0
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Configure your default AI model"
msgstr ""
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@@ -3534,7 +3513,7 @@ msgstr "Contenuto"
#. js-lingui-id: M73whl
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Context"
@@ -3732,16 +3711,21 @@ msgstr "Oggetti principali"
msgid "Cost"
msgstr "Costo"
#. js-lingui-id: Iw/ard
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Cost / 1M"
msgstr "Costo / 1M"
#. js-lingui-id: 3kzLg2
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
msgid "Cost / 1M tokens"
msgstr "Costo / 1M token"
#. js-lingui-id: iX2opZ
#: src/modules/settings/billing/components/SettingsBillingCreditsSection.tsx
msgid "Cost per 1k Extra Credits"
msgstr "Costo per 1k crediti extra"
#. js-lingui-id: Z9Z9PX
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
msgid "Cost per 1M tokens"
msgstr ""
#. js-lingui-id: 3X5ngu
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
msgid "Cost per million tokens (USD)"
@@ -4279,6 +4263,7 @@ msgstr "Cruscotto duplicato con successo"
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Data"
msgstr "Dati"
@@ -4331,7 +4316,7 @@ msgid "Data on display"
msgstr "Dati visualizzati"
#. js-lingui-id: Ix/CMz
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Data residency"
msgstr "Residenza dei dati"
@@ -4494,7 +4479,6 @@ msgid "default"
msgstr ""
#. js-lingui-id: ovBPCi
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
msgid "Default"
@@ -4833,11 +4817,6 @@ msgstr "Record eliminato"
msgid "Deleting this method will remove it permanently from your account."
msgstr "Eliminando questo metodo verrà rimosso definitivamente dal tuo account."
#. js-lingui-id: Ssdrw4
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
msgid "Deprecated"
msgstr ""
#. js-lingui-id: O3LJh6
#: src/modules/side-panel/pages/page-layout/utils/getSortLabelSuffixForFieldType.ts
#: src/modules/side-panel/pages/page-layout/utils/getSortLabelSuffixForFieldType.ts
@@ -4873,12 +4852,6 @@ msgstr "Descrivi cosa vuoi che l'AI faccia..."
msgid "Description"
msgstr "Descrizione"
#. js-lingui-id: BBqGS9
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
msgid "Desktop"
msgstr ""
#. js-lingui-id: +ow7t4
#: src/modules/settings/roles/role-permissions/object-level-permissions/utils/objectPermissionKeyToHumanReadableText.ts
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
@@ -4901,7 +4874,7 @@ msgid "Detach"
msgstr "Dissocia"
#. js-lingui-id: URmyfc
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Details"
msgstr "Dettagli"
@@ -5336,8 +5309,6 @@ msgstr ""
#. js-lingui-id: uBAxNB
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/FieldWidgetLayoutDropdownContent.tsx
msgid "Editor"
msgstr "Editor"
@@ -6093,8 +6064,8 @@ msgid "Evaluations"
msgstr ""
#. js-lingui-id: 0pC/y6
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/modules/activities/calendar/components/CalendarEventDetails.tsx
msgid "Event"
msgstr "Evento"
@@ -6213,11 +6184,6 @@ msgstr "Escludi email non professionali"
msgid "Exclude the following people and domains from my email sync. Internal conversations will not be imported"
msgstr "Escludi le seguenti persone e domini dalla mia sincronizzazione email. Le conversazioni interne non saranno importate"
#. js-lingui-id: B0clc7
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Execution ID"
msgstr ""
#. js-lingui-id: YzI8cc
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsSelect.tsx
msgid "Existing Field"
@@ -6547,8 +6513,6 @@ msgstr "Impossibile aggiornare il modello"
#. js-lingui-id: W7Ff/4
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Failed to update model availability"
msgstr "Impossibile aggiornare la disponibilità del modello"
@@ -6558,11 +6522,6 @@ msgstr "Impossibile aggiornare la disponibilità del modello"
msgid "Failed to update model recommendation"
msgstr "Impossibile aggiornare la raccomandazione del modello"
#. js-lingui-id: q1MtjM
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
msgid "Failed to update model recommendations"
msgstr ""
#. js-lingui-id: rCUG3c
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Failed to update model selection mode"
@@ -7053,11 +7012,6 @@ msgstr "Componenti front-end"
msgid "Full access"
msgstr "Accesso completo"
#. js-lingui-id: YMZBxa
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Function"
msgstr ""
#. js-lingui-id: AHOl4W
#: src/modules/settings/logic-functions/components/SettingsLogicFunctionLabelContainer.tsx
msgid "Function name"
@@ -8408,7 +8362,6 @@ msgstr "Avvia manualmente"
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldsSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Layout"
@@ -8482,11 +8435,6 @@ msgstr ""
msgid "Less than or equal"
msgstr "Minore o uguale"
#. js-lingui-id: oCHfGC
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Level"
msgstr ""
#. js-lingui-id: 3qg5Ro
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
@@ -8921,7 +8869,7 @@ msgstr "Capacità massima d'importazione: {formatSpreadsheetMaxRecordImportCapac
#. js-lingui-id: S8w4XA
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Max output"
msgstr "Output massimo"
@@ -9031,11 +8979,6 @@ msgstr "Unisci record"
msgid "Merging..."
msgstr "Unione in corso..."
#. js-lingui-id: xDAtGP
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Message"
msgstr ""
#. js-lingui-id: U15XwX
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Message not found"
@@ -9133,12 +9076,6 @@ msgstr "Manca l'autorizzazione a creare bozze di email."
msgid "Mission accomplished!"
msgstr "Missione compiuta!"
#. js-lingui-id: dMsM20
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
msgid "Mobile"
msgstr ""
#. js-lingui-id: scu3wk
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPromptTab.tsx
msgid "Model"
@@ -9168,6 +9105,7 @@ msgstr "L'ID del modello è obbligatorio"
#. js-lingui-id: //nm2/
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Models"
msgstr "Modelli"
@@ -9392,12 +9330,12 @@ msgstr "mySkill"
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
#: src/modules/settings/data-model/new-object/components/SettingsAvailableStandardObjectsSection.tsx
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/config-variables/components/SettingsAdminConfigVariablesTable.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Name"
msgstr "Nome"
@@ -10062,12 +10000,6 @@ msgstr "Nessun permesso configurato per questa applicazione."
msgid "No permissions have been set for individual objects."
msgstr "Nessuna autorizzazione è stata impostata per gli oggetti individuali."
#. js-lingui-id: V/+aTW
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordFieldChip.tsx
msgid "No record"
msgstr ""
#. js-lingui-id: ePgApM
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerManual.tsx
msgid "No record is required to trigger this workflow"
@@ -10079,6 +10011,11 @@ msgstr "Non è richiesto alcun record per attivare questo flusso di lavoro"
msgid "No record selected"
msgstr ""
#. js-lingui-id: X8wJTR
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
msgid "No records"
msgstr "Nessun record"
#. js-lingui-id: EqGTpW
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateReadOnly.tsx
#: src/modules/object-record/record-picker/components/RecordPickerNoRecordFoundMenuItem.tsx
@@ -10392,7 +10329,7 @@ msgid "Object Events"
msgstr "Eventi degli oggetti"
#. js-lingui-id: 79D4Az
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
msgid "Object ID"
msgstr "ID dell'oggetto"
@@ -11346,8 +11283,8 @@ msgid "Prompt"
msgstr ""
#. js-lingui-id: l/UFPv
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
msgid "Properties"
msgstr "Proprietà"
@@ -11370,8 +11307,8 @@ msgstr "Fornisci i dettagli del tuo provider OIDC"
#. js-lingui-id: aemBRq
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Provider"
msgstr "Provider"
@@ -11597,7 +11534,7 @@ msgid "Record filter rule options"
msgstr "Opzioni della regola di filtro del record"
#. js-lingui-id: xSAYIn
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
msgid "Record ID"
msgstr "ID del record"
@@ -11625,6 +11562,12 @@ msgstr "Pagina del record"
msgid "Record Selection"
msgstr "Selezione record"
#. js-lingui-id: J9Cfll
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutDashboardWidgetTypeSelect.tsx
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
msgid "Record Table"
msgstr "Tabella dei record"
#. js-lingui-id: NxW0+c
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
msgid "Record Table Settings"
@@ -11993,7 +11936,7 @@ msgid "Reset variable"
msgstr "Ripristina variabile"
#. js-lingui-id: esl+Tv
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
msgid "Resource Type"
msgstr "Tipo di risorsa"
@@ -13009,7 +12952,6 @@ msgstr "Configurazione del tuo database..."
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsSection.tsx
#: src/modules/settings/roles/role/components/SettingsRole.tsx
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
@@ -13866,7 +13808,6 @@ msgstr "Impostazioni scheda"
#. js-lingui-id: 4hJhzz
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
msgid "Table"
@@ -14411,10 +14352,9 @@ msgid "Timeout"
msgstr "Timeout"
#. js-lingui-id: 8TMaZI
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Timestamp"
msgstr "Timestamp"
@@ -15258,9 +15198,9 @@ msgstr "Utile per tabelle pivot/di giunzione"
#. js-lingui-id: 7PzzBU
#: src/pages/settings/SettingsTwoFactorAuthenticationMethod.tsx
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
#: src/pages/settings/ai/SettingsAIPrompts.tsx
@@ -15443,9 +15383,7 @@ msgid "view"
msgstr "vista"
#. js-lingui-id: jpctdh
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutDashboardWidgetTypeSelect.tsx
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
@@ -15613,11 +15551,6 @@ msgstr "Violetto"
msgid "Visibility"
msgstr "Visibilità"
#. js-lingui-id: gkAApJ
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
msgid "Visibility Restriction"
msgstr ""
#. js-lingui-id: zYTdqe
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
+49 -116
View File
@@ -158,16 +158,6 @@ msgstr "{0, plural, other {フィールド {fieldsList} にアクセスする権
msgid "{0} credits"
msgstr "{0} クレジット"
#. js-lingui-id: peiknr
#. placeholder {0}: activeVisibleFieldLabels.length
#. placeholder {0}: activeFilterLabels.length
#. placeholder {0}: activeSortLabels.length
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
msgid "{0} shown"
msgstr ""
#. js-lingui-id: r4l/MK
#. placeholder {0}: formatUsageValue(totalCredits)
#: src/pages/settings/SettingsUsageUserDetail.tsx
@@ -1785,12 +1775,6 @@ msgstr "および"
msgid "Any {fieldLabel} field"
msgstr "任意の {fieldLabel} フィールド"
#. js-lingui-id: COyjuu
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
msgid "Any device"
msgstr ""
#. js-lingui-id: I8f+hC
#: src/modules/views/components/AnyFieldSearchChip.tsx
msgid "Any field"
@@ -1964,11 +1948,6 @@ msgstr "アプリケーション詳細"
msgid "Application installed successfully."
msgstr "アプリケーションが正常にインストールされました。"
#. js-lingui-id: LllWIc
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
msgid "Application Logs"
msgstr ""
#. js-lingui-id: +tE2x9
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
msgid "Application successfully uninstalled."
@@ -3356,6 +3335,11 @@ msgstr "カレンダーイベントを同期するためにCalDAV設定を構成
msgid "Configure date, time, number, timezone, and calendar start day"
msgstr "日付、時間、数値、タイムゾーン、カレンダー開始日を設定する"
#. js-lingui-id: +SQwHr
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Configure default AI models and availability"
msgstr "デフォルトの AI モデルと可用性を設定"
#. js-lingui-id: utsXG8
#: src/pages/settings/security/SettingsSecurity.tsx
msgid "Configure fallback login methods for users with SSO bypass permissions"
@@ -3401,11 +3385,6 @@ msgstr "フィールドを表示するには、このウィジェットを設定
msgid "Configure when this function should be executed"
msgstr "この関数が実行されるタイミングを設定します"
#. js-lingui-id: hzDiM0
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Configure your default AI model"
msgstr ""
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@@ -3534,7 +3513,7 @@ msgstr "コンテンツ"
#. js-lingui-id: M73whl
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Context"
@@ -3732,16 +3711,21 @@ msgstr "コアオブジェクト"
msgid "Cost"
msgstr "コスト"
#. js-lingui-id: Iw/ard
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Cost / 1M"
msgstr "100万あたりのコスト"
#. js-lingui-id: 3kzLg2
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
msgid "Cost / 1M tokens"
msgstr "100万トークンあたりのコスト"
#. js-lingui-id: iX2opZ
#: src/modules/settings/billing/components/SettingsBillingCreditsSection.tsx
msgid "Cost per 1k Extra Credits"
msgstr "1k追加クレジットあたりのコスト"
#. js-lingui-id: Z9Z9PX
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
msgid "Cost per 1M tokens"
msgstr ""
#. js-lingui-id: 3X5ngu
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
msgid "Cost per million tokens (USD)"
@@ -4279,6 +4263,7 @@ msgstr "ダッシュボードが正常に複製されました"
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Data"
msgstr "データ"
@@ -4331,7 +4316,7 @@ msgid "Data on display"
msgstr "表示中のデータ"
#. js-lingui-id: Ix/CMz
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Data residency"
msgstr "データレジデンシー"
@@ -4494,7 +4479,6 @@ msgid "default"
msgstr ""
#. js-lingui-id: ovBPCi
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
msgid "Default"
@@ -4833,11 +4817,6 @@ msgstr "削除されたレコード"
msgid "Deleting this method will remove it permanently from your account."
msgstr "この方法を削除すると、アカウントから永久に削除されます。"
#. js-lingui-id: Ssdrw4
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
msgid "Deprecated"
msgstr ""
#. js-lingui-id: O3LJh6
#: src/modules/side-panel/pages/page-layout/utils/getSortLabelSuffixForFieldType.ts
#: src/modules/side-panel/pages/page-layout/utils/getSortLabelSuffixForFieldType.ts
@@ -4873,12 +4852,6 @@ msgstr "AIにさせたいことを説明してください..."
msgid "Description"
msgstr "説明"
#. js-lingui-id: BBqGS9
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
msgid "Desktop"
msgstr ""
#. js-lingui-id: +ow7t4
#: src/modules/settings/roles/role-permissions/object-level-permissions/utils/objectPermissionKeyToHumanReadableText.ts
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
@@ -4901,7 +4874,7 @@ msgid "Detach"
msgstr "関連付けを解除"
#. js-lingui-id: URmyfc
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Details"
msgstr "詳細"
@@ -5336,8 +5309,6 @@ msgstr ""
#. js-lingui-id: uBAxNB
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/FieldWidgetLayoutDropdownContent.tsx
msgid "Editor"
msgstr "エディター"
@@ -6093,8 +6064,8 @@ msgid "Evaluations"
msgstr ""
#. js-lingui-id: 0pC/y6
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/modules/activities/calendar/components/CalendarEventDetails.tsx
msgid "Event"
msgstr "イベント"
@@ -6213,11 +6184,6 @@ msgstr "非プロのメールを除外する"
msgid "Exclude the following people and domains from my email sync. Internal conversations will not be imported"
msgstr "以下の人物とドメインをメール同期から除外します。内部の会話はインポートされません"
#. js-lingui-id: B0clc7
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Execution ID"
msgstr ""
#. js-lingui-id: YzI8cc
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsSelect.tsx
msgid "Existing Field"
@@ -6547,8 +6513,6 @@ msgstr "モデルの更新に失敗しました"
#. js-lingui-id: W7Ff/4
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Failed to update model availability"
msgstr "モデルの可用性の更新に失敗しました"
@@ -6558,11 +6522,6 @@ msgstr "モデルの可用性の更新に失敗しました"
msgid "Failed to update model recommendation"
msgstr "モデルの推奨設定の更新に失敗しました"
#. js-lingui-id: q1MtjM
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
msgid "Failed to update model recommendations"
msgstr ""
#. js-lingui-id: rCUG3c
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Failed to update model selection mode"
@@ -7053,11 +7012,6 @@ msgstr "フロントエンドコンポーネント"
msgid "Full access"
msgstr "フルアクセス"
#. js-lingui-id: YMZBxa
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Function"
msgstr ""
#. js-lingui-id: AHOl4W
#: src/modules/settings/logic-functions/components/SettingsLogicFunctionLabelContainer.tsx
msgid "Function name"
@@ -8408,7 +8362,6 @@ msgstr "手動で起動"
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldsSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Layout"
@@ -8482,11 +8435,6 @@ msgstr ""
msgid "Less than or equal"
msgstr "以下"
#. js-lingui-id: oCHfGC
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Level"
msgstr ""
#. js-lingui-id: 3qg5Ro
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
@@ -8921,7 +8869,7 @@ msgstr "最大インポート容量: {formatSpreadsheetMaxRecordImportCapacity}
#. js-lingui-id: S8w4XA
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Max output"
msgstr "最大出力"
@@ -9031,11 +8979,6 @@ msgstr "レコードをマージ"
msgid "Merging..."
msgstr "マージ中..."
#. js-lingui-id: xDAtGP
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Message"
msgstr ""
#. js-lingui-id: U15XwX
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Message not found"
@@ -9133,12 +9076,6 @@ msgstr "メールの下書き権限がありません。"
msgid "Mission accomplished!"
msgstr "任務完了!"
#. js-lingui-id: dMsM20
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
msgid "Mobile"
msgstr ""
#. js-lingui-id: scu3wk
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPromptTab.tsx
msgid "Model"
@@ -9168,6 +9105,7 @@ msgstr "モデル ID は必須です"
#. js-lingui-id: //nm2/
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Models"
msgstr "モデル"
@@ -9392,12 +9330,12 @@ msgstr "mySkill"
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
#: src/modules/settings/data-model/new-object/components/SettingsAvailableStandardObjectsSection.tsx
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/config-variables/components/SettingsAdminConfigVariablesTable.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Name"
msgstr "名前"
@@ -10062,12 +10000,6 @@ msgstr "このアプリケーションには権限が設定されていません
msgid "No permissions have been set for individual objects."
msgstr "個々のオブジェクトに対して権限が設定されていません。"
#. js-lingui-id: V/+aTW
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordFieldChip.tsx
msgid "No record"
msgstr ""
#. js-lingui-id: ePgApM
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerManual.tsx
msgid "No record is required to trigger this workflow"
@@ -10079,6 +10011,11 @@ msgstr "このワークフローを起動するために必要なレコードは
msgid "No record selected"
msgstr ""
#. js-lingui-id: X8wJTR
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
msgid "No records"
msgstr "レコードがありません"
#. js-lingui-id: EqGTpW
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateReadOnly.tsx
#: src/modules/object-record/record-picker/components/RecordPickerNoRecordFoundMenuItem.tsx
@@ -10392,7 +10329,7 @@ msgid "Object Events"
msgstr "オブジェクトのイベント"
#. js-lingui-id: 79D4Az
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
msgid "Object ID"
msgstr "オブジェクトID"
@@ -11346,8 +11283,8 @@ msgid "Prompt"
msgstr ""
#. js-lingui-id: l/UFPv
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
msgid "Properties"
msgstr "プロパティ"
@@ -11370,8 +11307,8 @@ msgstr "OIDCプロバイダーの詳細を提供してください"
#. js-lingui-id: aemBRq
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Provider"
msgstr "プロバイダー"
@@ -11597,7 +11534,7 @@ msgid "Record filter rule options"
msgstr "レコードフィルターのルールオプション"
#. js-lingui-id: xSAYIn
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
msgid "Record ID"
msgstr "レコード ID"
@@ -11625,6 +11562,12 @@ msgstr "レコードページ"
msgid "Record Selection"
msgstr "レコード選択"
#. js-lingui-id: J9Cfll
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutDashboardWidgetTypeSelect.tsx
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
msgid "Record Table"
msgstr "レコードテーブル},{"
#. js-lingui-id: NxW0+c
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
msgid "Record Table Settings"
@@ -11993,7 +11936,7 @@ msgid "Reset variable"
msgstr "変数をリセット"
#. js-lingui-id: esl+Tv
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
msgid "Resource Type"
msgstr "リソースタイプ"
@@ -13009,7 +12952,6 @@ msgstr "データベースのセットアップ..."
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsSection.tsx
#: src/modules/settings/roles/role/components/SettingsRole.tsx
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
@@ -13866,7 +13808,6 @@ msgstr "タブ設定"
#. js-lingui-id: 4hJhzz
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
msgid "Table"
@@ -14409,10 +14350,9 @@ msgid "Timeout"
msgstr "タイムアウト"
#. js-lingui-id: 8TMaZI
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Timestamp"
msgstr "タイムスタンプ"
@@ -15256,9 +15196,9 @@ msgstr "ピボット/ジャンクションテーブルに有用です"
#. js-lingui-id: 7PzzBU
#: src/pages/settings/SettingsTwoFactorAuthenticationMethod.tsx
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
#: src/pages/settings/ai/SettingsAIPrompts.tsx
@@ -15441,9 +15381,7 @@ msgid "view"
msgstr "ビュー"
#. js-lingui-id: jpctdh
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutDashboardWidgetTypeSelect.tsx
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
@@ -15611,11 +15549,6 @@ msgstr "バイオレット"
msgid "Visibility"
msgstr "可視性"
#. js-lingui-id: gkAApJ
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
msgid "Visibility Restriction"
msgstr ""
#. js-lingui-id: zYTdqe
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
+49 -116
View File
@@ -158,16 +158,6 @@ msgstr "{0, plural, other {귀하는 {fieldsList} 필드를 액세스할 권한
msgid "{0} credits"
msgstr "{0} 크레딧"
#. js-lingui-id: peiknr
#. placeholder {0}: activeVisibleFieldLabels.length
#. placeholder {0}: activeFilterLabels.length
#. placeholder {0}: activeSortLabels.length
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
msgid "{0} shown"
msgstr ""
#. js-lingui-id: r4l/MK
#. placeholder {0}: formatUsageValue(totalCredits)
#: src/pages/settings/SettingsUsageUserDetail.tsx
@@ -1785,12 +1775,6 @@ msgstr "및"
msgid "Any {fieldLabel} field"
msgstr "모든 {fieldLabel} 필드"
#. js-lingui-id: COyjuu
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
msgid "Any device"
msgstr ""
#. js-lingui-id: I8f+hC
#: src/modules/views/components/AnyFieldSearchChip.tsx
msgid "Any field"
@@ -1964,11 +1948,6 @@ msgstr "응용 프로그램 세부정보"
msgid "Application installed successfully."
msgstr "응용 프로그램이 성공적으로 설치되었습니다."
#. js-lingui-id: LllWIc
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
msgid "Application Logs"
msgstr ""
#. js-lingui-id: +tE2x9
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
msgid "Application successfully uninstalled."
@@ -3356,6 +3335,11 @@ msgstr "CalDAV 설정을 구성하여 캘린더 이벤트를 동기화하세요.
msgid "Configure date, time, number, timezone, and calendar start day"
msgstr "날짜, 시간, 숫자, 시간대 및 캘린더 시작일 구성"
#. js-lingui-id: +SQwHr
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Configure default AI models and availability"
msgstr "기본 AI 모델과 사용 가능 여부를 설정합니다"
#. js-lingui-id: utsXG8
#: src/pages/settings/security/SettingsSecurity.tsx
msgid "Configure fallback login methods for users with SSO bypass permissions"
@@ -3401,11 +3385,6 @@ msgstr "필드를 표시하도록 이 위젯을 구성하세요"
msgid "Configure when this function should be executed"
msgstr "이 함수의 실행 시점을 구성하세요"
#. js-lingui-id: hzDiM0
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Configure your default AI model"
msgstr ""
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@@ -3534,7 +3513,7 @@ msgstr "내용"
#. js-lingui-id: M73whl
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Context"
@@ -3732,16 +3711,21 @@ msgstr "핵심 객체"
msgid "Cost"
msgstr "비용"
#. js-lingui-id: Iw/ard
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Cost / 1M"
msgstr "비용 / 100만"
#. js-lingui-id: 3kzLg2
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
msgid "Cost / 1M tokens"
msgstr "비용 / 100만 토큰"
#. js-lingui-id: iX2opZ
#: src/modules/settings/billing/components/SettingsBillingCreditsSection.tsx
msgid "Cost per 1k Extra Credits"
msgstr "1천 크레딧 추가 비용"
#. js-lingui-id: Z9Z9PX
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
msgid "Cost per 1M tokens"
msgstr ""
#. js-lingui-id: 3X5ngu
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
msgid "Cost per million tokens (USD)"
@@ -4279,6 +4263,7 @@ msgstr "대시보드가 성공적으로 복제되었습니다"
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Data"
msgstr "데이터"
@@ -4331,7 +4316,7 @@ msgid "Data on display"
msgstr "표시된 데이터"
#. js-lingui-id: Ix/CMz
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Data residency"
msgstr "데이터 레지던시"
@@ -4494,7 +4479,6 @@ msgid "default"
msgstr ""
#. js-lingui-id: ovBPCi
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
msgid "Default"
@@ -4833,11 +4817,6 @@ msgstr "삭제된 레코드"
msgid "Deleting this method will remove it permanently from your account."
msgstr "이 방법을 삭제하면 계정에서 영구적으로 제거됩니다."
#. js-lingui-id: Ssdrw4
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
msgid "Deprecated"
msgstr ""
#. js-lingui-id: O3LJh6
#: src/modules/side-panel/pages/page-layout/utils/getSortLabelSuffixForFieldType.ts
#: src/modules/side-panel/pages/page-layout/utils/getSortLabelSuffixForFieldType.ts
@@ -4873,12 +4852,6 @@ msgstr "AI에 원하는 작업을 설명하세요..."
msgid "Description"
msgstr "설명"
#. js-lingui-id: BBqGS9
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
msgid "Desktop"
msgstr ""
#. js-lingui-id: +ow7t4
#: src/modules/settings/roles/role-permissions/object-level-permissions/utils/objectPermissionKeyToHumanReadableText.ts
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
@@ -4901,7 +4874,7 @@ msgid "Detach"
msgstr "연결 해제"
#. js-lingui-id: URmyfc
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Details"
msgstr "세부정보"
@@ -5336,8 +5309,6 @@ msgstr ""
#. js-lingui-id: uBAxNB
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/FieldWidgetLayoutDropdownContent.tsx
msgid "Editor"
msgstr "편집기"
@@ -6093,8 +6064,8 @@ msgid "Evaluations"
msgstr ""
#. js-lingui-id: 0pC/y6
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/modules/activities/calendar/components/CalendarEventDetails.tsx
msgid "Event"
msgstr "이벤트"
@@ -6213,11 +6184,6 @@ msgstr "비업무용 이메일 제외"
msgid "Exclude the following people and domains from my email sync. Internal conversations will not be imported"
msgstr "다음 사람들과 도메인을 이메일 동기화에서 제외합니다. 내부 대화는 가져오지 않습니다"
#. js-lingui-id: B0clc7
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Execution ID"
msgstr ""
#. js-lingui-id: YzI8cc
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsSelect.tsx
msgid "Existing Field"
@@ -6547,8 +6513,6 @@ msgstr "모델을 업데이트하지 못했습니다"
#. js-lingui-id: W7Ff/4
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Failed to update model availability"
msgstr "모델의 사용 가능 여부를 업데이트하지 못했습니다"
@@ -6558,11 +6522,6 @@ msgstr "모델의 사용 가능 여부를 업데이트하지 못했습니다"
msgid "Failed to update model recommendation"
msgstr "모델 추천을 업데이트하지 못했습니다"
#. js-lingui-id: q1MtjM
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
msgid "Failed to update model recommendations"
msgstr ""
#. js-lingui-id: rCUG3c
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Failed to update model selection mode"
@@ -7053,11 +7012,6 @@ msgstr "프런트 컴포넌트"
msgid "Full access"
msgstr "전체 접근"
#. js-lingui-id: YMZBxa
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Function"
msgstr ""
#. js-lingui-id: AHOl4W
#: src/modules/settings/logic-functions/components/SettingsLogicFunctionLabelContainer.tsx
msgid "Function name"
@@ -8408,7 +8362,6 @@ msgstr "수동 실행"
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldsSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Layout"
@@ -8482,11 +8435,6 @@ msgstr ""
msgid "Less than or equal"
msgstr "이하"
#. js-lingui-id: oCHfGC
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Level"
msgstr ""
#. js-lingui-id: 3qg5Ro
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
@@ -8921,7 +8869,7 @@ msgstr "최대 가져오기 용량: {formatSpreadsheetMaxRecordImportCapacity}
#. js-lingui-id: S8w4XA
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Max output"
msgstr "최대 출력"
@@ -9031,11 +8979,6 @@ msgstr "레코드 병합"
msgid "Merging..."
msgstr "병합 중..."
#. js-lingui-id: xDAtGP
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Message"
msgstr ""
#. js-lingui-id: U15XwX
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Message not found"
@@ -9133,12 +9076,6 @@ msgstr "이메일 초안 작성 권한이 없습니다."
msgid "Mission accomplished!"
msgstr "임무 완료!"
#. js-lingui-id: dMsM20
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
msgid "Mobile"
msgstr ""
#. js-lingui-id: scu3wk
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPromptTab.tsx
msgid "Model"
@@ -9168,6 +9105,7 @@ msgstr "모델 ID가 필요합니다"
#. js-lingui-id: //nm2/
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Models"
msgstr "모델"
@@ -9392,12 +9330,12 @@ msgstr "mySkill"
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
#: src/modules/settings/data-model/new-object/components/SettingsAvailableStandardObjectsSection.tsx
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/config-variables/components/SettingsAdminConfigVariablesTable.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Name"
msgstr "이름"
@@ -10062,12 +10000,6 @@ msgstr "이 애플리케이션에 대해 구성된 권한이 없습니다."
msgid "No permissions have been set for individual objects."
msgstr "개별 객체에 대한 권한이 설정되지 않았습니다."
#. js-lingui-id: V/+aTW
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordFieldChip.tsx
msgid "No record"
msgstr ""
#. js-lingui-id: ePgApM
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerManual.tsx
msgid "No record is required to trigger this workflow"
@@ -10079,6 +10011,11 @@ msgstr "이 워크플로우를 트리거하기 위해 기록이 필요하지 않
msgid "No record selected"
msgstr ""
#. js-lingui-id: X8wJTR
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
msgid "No records"
msgstr "레코드 없음"
#. js-lingui-id: EqGTpW
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateReadOnly.tsx
#: src/modules/object-record/record-picker/components/RecordPickerNoRecordFoundMenuItem.tsx
@@ -10392,7 +10329,7 @@ msgid "Object Events"
msgstr "객체 이벤트"
#. js-lingui-id: 79D4Az
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
msgid "Object ID"
msgstr "객체 ID"
@@ -11346,8 +11283,8 @@ msgid "Prompt"
msgstr ""
#. js-lingui-id: l/UFPv
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
msgid "Properties"
msgstr "속성"
@@ -11370,8 +11307,8 @@ msgstr "OIDC 공급자 세부정보를 제공하세요"
#. js-lingui-id: aemBRq
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Provider"
msgstr "공급자"
@@ -11597,7 +11534,7 @@ msgid "Record filter rule options"
msgstr "레코드 필터 규칙 옵션"
#. js-lingui-id: xSAYIn
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
msgid "Record ID"
msgstr "레코드 ID"
@@ -11625,6 +11562,12 @@ msgstr "레코드 페이지"
msgid "Record Selection"
msgstr "레코드 선택"
#. js-lingui-id: J9Cfll
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutDashboardWidgetTypeSelect.tsx
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
msgid "Record Table"
msgstr "레코드 테이블"
#. js-lingui-id: NxW0+c
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
msgid "Record Table Settings"
@@ -11993,7 +11936,7 @@ msgid "Reset variable"
msgstr "변수 재설정"
#. js-lingui-id: esl+Tv
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
msgid "Resource Type"
msgstr "리소스 유형"
@@ -13009,7 +12952,6 @@ msgstr "데이터베이스 설정 중..."
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsSection.tsx
#: src/modules/settings/roles/role/components/SettingsRole.tsx
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
@@ -13866,7 +13808,6 @@ msgstr "탭 설정"
#. js-lingui-id: 4hJhzz
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
msgid "Table"
@@ -14409,10 +14350,9 @@ msgid "Timeout"
msgstr "시간 제한"
#. js-lingui-id: 8TMaZI
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Timestamp"
msgstr "타임스탬프"
@@ -15256,9 +15196,9 @@ msgstr "피벗/정션 테이블에 유용합니다"
#. js-lingui-id: 7PzzBU
#: src/pages/settings/SettingsTwoFactorAuthenticationMethod.tsx
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
#: src/pages/settings/ai/SettingsAIPrompts.tsx
@@ -15441,9 +15381,7 @@ msgid "view"
msgstr "보기"
#. js-lingui-id: jpctdh
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutDashboardWidgetTypeSelect.tsx
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
@@ -15611,11 +15549,6 @@ msgstr "바이올렛"
msgid "Visibility"
msgstr "가시성"
#. js-lingui-id: gkAApJ
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
msgid "Visibility Restriction"
msgstr ""
#. js-lingui-id: zYTdqe
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
+49 -116
View File
@@ -158,16 +158,6 @@ msgstr "{0, plural, one {U heeft geen toestemming om toegang te krijgen tot het
msgid "{0} credits"
msgstr "{0} credits"
#. js-lingui-id: peiknr
#. placeholder {0}: activeVisibleFieldLabels.length
#. placeholder {0}: activeFilterLabels.length
#. placeholder {0}: activeSortLabels.length
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
msgid "{0} shown"
msgstr ""
#. js-lingui-id: r4l/MK
#. placeholder {0}: formatUsageValue(totalCredits)
#: src/pages/settings/SettingsUsageUserDetail.tsx
@@ -1785,12 +1775,6 @@ msgstr "En"
msgid "Any {fieldLabel} field"
msgstr "Elk {fieldLabel}-veld"
#. js-lingui-id: COyjuu
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
msgid "Any device"
msgstr ""
#. js-lingui-id: I8f+hC
#: src/modules/views/components/AnyFieldSearchChip.tsx
msgid "Any field"
@@ -1964,11 +1948,6 @@ msgstr "Applicatiedetails"
msgid "Application installed successfully."
msgstr "Applicatie succesvol geïnstalleerd."
#. js-lingui-id: LllWIc
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
msgid "Application Logs"
msgstr ""
#. js-lingui-id: +tE2x9
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
msgid "Application successfully uninstalled."
@@ -3356,6 +3335,11 @@ msgstr "Configureer CalDAV-instellingen om uw agenda-evenementen te synchroniser
msgid "Configure date, time, number, timezone, and calendar start day"
msgstr "Configureer datum, tijd, nummer, tijdzone en startdag van de kalender"
#. js-lingui-id: +SQwHr
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Configure default AI models and availability"
msgstr "Standaard AI-modellen en beschikbaarheid configureren"
#. js-lingui-id: utsXG8
#: src/pages/settings/security/SettingsSecurity.tsx
msgid "Configure fallback login methods for users with SSO bypass permissions"
@@ -3401,11 +3385,6 @@ msgstr "Configureer deze widget om velden weer te geven"
msgid "Configure when this function should be executed"
msgstr "Configureer wanneer deze functie moet worden uitgevoerd"
#. js-lingui-id: hzDiM0
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Configure your default AI model"
msgstr ""
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@@ -3534,7 +3513,7 @@ msgstr "Inhoud"
#. js-lingui-id: M73whl
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Context"
@@ -3732,16 +3711,21 @@ msgstr "Kernobjecten"
msgid "Cost"
msgstr "Kosten"
#. js-lingui-id: Iw/ard
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Cost / 1M"
msgstr "Kosten / 1M"
#. js-lingui-id: 3kzLg2
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
msgid "Cost / 1M tokens"
msgstr "Kosten / 1M tokens"
#. js-lingui-id: iX2opZ
#: src/modules/settings/billing/components/SettingsBillingCreditsSection.tsx
msgid "Cost per 1k Extra Credits"
msgstr "Kosten per 1k extra credits"
#. js-lingui-id: Z9Z9PX
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
msgid "Cost per 1M tokens"
msgstr ""
#. js-lingui-id: 3X5ngu
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
msgid "Cost per million tokens (USD)"
@@ -4279,6 +4263,7 @@ msgstr "Dashboard succesvol gedupliceerd"
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Data"
msgstr "Data"
@@ -4331,7 +4316,7 @@ msgid "Data on display"
msgstr "Data op display"
#. js-lingui-id: Ix/CMz
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Data residency"
msgstr "Gegevensresidentie"
@@ -4494,7 +4479,6 @@ msgid "default"
msgstr ""
#. js-lingui-id: ovBPCi
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
msgid "Default"
@@ -4833,11 +4817,6 @@ msgstr "Verwijderd record"
msgid "Deleting this method will remove it permanently from your account."
msgstr "Het verwijderen van deze methode zal het permanent van uw account verwijderen."
#. js-lingui-id: Ssdrw4
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
msgid "Deprecated"
msgstr ""
#. js-lingui-id: O3LJh6
#: src/modules/side-panel/pages/page-layout/utils/getSortLabelSuffixForFieldType.ts
#: src/modules/side-panel/pages/page-layout/utils/getSortLabelSuffixForFieldType.ts
@@ -4873,12 +4852,6 @@ msgstr "Beschrijf wat je wilt dat de AI doet..."
msgid "Description"
msgstr "Beschrijving"
#. js-lingui-id: BBqGS9
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
msgid "Desktop"
msgstr ""
#. js-lingui-id: +ow7t4
#: src/modules/settings/roles/role-permissions/object-level-permissions/utils/objectPermissionKeyToHumanReadableText.ts
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
@@ -4901,7 +4874,7 @@ msgid "Detach"
msgstr "Loskoppelen"
#. js-lingui-id: URmyfc
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Details"
msgstr "Details"
@@ -5336,8 +5309,6 @@ msgstr ""
#. js-lingui-id: uBAxNB
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/FieldWidgetLayoutDropdownContent.tsx
msgid "Editor"
msgstr "Editor"
@@ -6093,8 +6064,8 @@ msgid "Evaluations"
msgstr ""
#. js-lingui-id: 0pC/y6
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/modules/activities/calendar/components/CalendarEventDetails.tsx
msgid "Event"
msgstr "Evenement"
@@ -6213,11 +6184,6 @@ msgstr "Niet-professionele e-mails uitsluiten"
msgid "Exclude the following people and domains from my email sync. Internal conversations will not be imported"
msgstr "Sluit de volgende mensen en domeinen uit van mijn e-mailsynchronisatie. Interne gesprekken worden niet geïmporteerd"
#. js-lingui-id: B0clc7
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Execution ID"
msgstr ""
#. js-lingui-id: YzI8cc
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsSelect.tsx
msgid "Existing Field"
@@ -6547,8 +6513,6 @@ msgstr "Fout bij het bijwerken van het model"
#. js-lingui-id: W7Ff/4
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Failed to update model availability"
msgstr "Fout bij het bijwerken van de beschikbaarheid van het model"
@@ -6558,11 +6522,6 @@ msgstr "Fout bij het bijwerken van de beschikbaarheid van het model"
msgid "Failed to update model recommendation"
msgstr "Het bijwerken van de modelaanbeveling is mislukt"
#. js-lingui-id: q1MtjM
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
msgid "Failed to update model recommendations"
msgstr ""
#. js-lingui-id: rCUG3c
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Failed to update model selection mode"
@@ -7053,11 +7012,6 @@ msgstr "Frontendcomponenten"
msgid "Full access"
msgstr "Volledige toegang"
#. js-lingui-id: YMZBxa
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Function"
msgstr ""
#. js-lingui-id: AHOl4W
#: src/modules/settings/logic-functions/components/SettingsLogicFunctionLabelContainer.tsx
msgid "Function name"
@@ -8408,7 +8362,6 @@ msgstr "Handmatig starten"
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldsSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Layout"
@@ -8482,11 +8435,6 @@ msgstr ""
msgid "Less than or equal"
msgstr "Kleiner dan of gelijk aan"
#. js-lingui-id: oCHfGC
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Level"
msgstr ""
#. js-lingui-id: 3qg5Ro
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
@@ -8921,7 +8869,7 @@ msgstr "Maximale importcapaciteit: {formatSpreadsheetMaxRecordImportCapacity} re
#. js-lingui-id: S8w4XA
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Max output"
msgstr "Maximale uitvoer"
@@ -9031,11 +8979,6 @@ msgstr "Records samenvoegen"
msgid "Merging..."
msgstr "Samenvoegen..."
#. js-lingui-id: xDAtGP
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Message"
msgstr ""
#. js-lingui-id: U15XwX
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Message not found"
@@ -9133,12 +9076,6 @@ msgstr "Toestemming voor het opstellen van e-mailconcepten ontbreekt."
msgid "Mission accomplished!"
msgstr "Missie volbracht!"
#. js-lingui-id: dMsM20
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
msgid "Mobile"
msgstr ""
#. js-lingui-id: scu3wk
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPromptTab.tsx
msgid "Model"
@@ -9168,6 +9105,7 @@ msgstr "Model-ID is vereist"
#. js-lingui-id: //nm2/
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Models"
msgstr "Modellen"
@@ -9392,12 +9330,12 @@ msgstr "mySkill"
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
#: src/modules/settings/data-model/new-object/components/SettingsAvailableStandardObjectsSection.tsx
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/config-variables/components/SettingsAdminConfigVariablesTable.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Name"
msgstr "Naam"
@@ -10062,12 +10000,6 @@ msgstr "Geen machtigingen geconfigureerd voor deze app."
msgid "No permissions have been set for individual objects."
msgstr "Er zijn geen machtigingen ingesteld voor afzonderlijke objecten."
#. js-lingui-id: V/+aTW
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordFieldChip.tsx
msgid "No record"
msgstr ""
#. js-lingui-id: ePgApM
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerManual.tsx
msgid "No record is required to trigger this workflow"
@@ -10079,6 +10011,11 @@ msgstr "Er is geen record vereist om deze workflow te activeren"
msgid "No record selected"
msgstr ""
#. js-lingui-id: X8wJTR
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
msgid "No records"
msgstr "Geen records"
#. js-lingui-id: EqGTpW
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateReadOnly.tsx
#: src/modules/object-record/record-picker/components/RecordPickerNoRecordFoundMenuItem.tsx
@@ -10392,7 +10329,7 @@ msgid "Object Events"
msgstr "Objectgebeurtenissen"
#. js-lingui-id: 79D4Az
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
msgid "Object ID"
msgstr "Object-ID"
@@ -11346,8 +11283,8 @@ msgid "Prompt"
msgstr ""
#. js-lingui-id: l/UFPv
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
msgid "Properties"
msgstr "Eigenschappen"
@@ -11370,8 +11307,8 @@ msgstr "Geef uw OIDC-providerdetails"
#. js-lingui-id: aemBRq
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Provider"
msgstr "Aanbieder"
@@ -11597,7 +11534,7 @@ msgid "Record filter rule options"
msgstr "Opties voor recordfilterregel"
#. js-lingui-id: xSAYIn
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
msgid "Record ID"
msgstr "Record-ID"
@@ -11625,6 +11562,12 @@ msgstr "Recordpagina"
msgid "Record Selection"
msgstr "Selectie opnemen"
#. js-lingui-id: J9Cfll
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutDashboardWidgetTypeSelect.tsx
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
msgid "Record Table"
msgstr "Recordtabel"
#. js-lingui-id: NxW0+c
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
msgid "Record Table Settings"
@@ -11993,7 +11936,7 @@ msgid "Reset variable"
msgstr "Variabele resetten"
#. js-lingui-id: esl+Tv
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
msgid "Resource Type"
msgstr "Resourcetype"
@@ -13009,7 +12952,6 @@ msgstr "Uw database opzetten..."
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsSection.tsx
#: src/modules/settings/roles/role/components/SettingsRole.tsx
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
@@ -13866,7 +13808,6 @@ msgstr "Tabblad Instellingen"
#. js-lingui-id: 4hJhzz
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
msgid "Table"
@@ -14411,10 +14352,9 @@ msgid "Timeout"
msgstr "Time-out"
#. js-lingui-id: 8TMaZI
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Timestamp"
msgstr "Tijdstempel"
@@ -15258,9 +15198,9 @@ msgstr "Handig voor pivot-/koppeltabellen"
#. js-lingui-id: 7PzzBU
#: src/pages/settings/SettingsTwoFactorAuthenticationMethod.tsx
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
#: src/pages/settings/ai/SettingsAIPrompts.tsx
@@ -15443,9 +15383,7 @@ msgid "view"
msgstr "weergave"
#. js-lingui-id: jpctdh
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutDashboardWidgetTypeSelect.tsx
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
@@ -15613,11 +15551,6 @@ msgstr "Violet"
msgid "Visibility"
msgstr "Zichtbaarheid"
#. js-lingui-id: gkAApJ
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
msgid "Visibility Restriction"
msgstr ""
#. js-lingui-id: zYTdqe
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
+49 -116
View File
@@ -158,16 +158,6 @@ msgstr "{0, plural, one {Du har ikke tillatelse til å få tilgang til feltet {f
msgid "{0} credits"
msgstr "{0} kreditter"
#. js-lingui-id: peiknr
#. placeholder {0}: activeVisibleFieldLabels.length
#. placeholder {0}: activeFilterLabels.length
#. placeholder {0}: activeSortLabels.length
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
msgid "{0} shown"
msgstr ""
#. js-lingui-id: r4l/MK
#. placeholder {0}: formatUsageValue(totalCredits)
#: src/pages/settings/SettingsUsageUserDetail.tsx
@@ -1785,12 +1775,6 @@ msgstr "Og"
msgid "Any {fieldLabel} field"
msgstr "Ethvert {fieldLabel}-felt"
#. js-lingui-id: COyjuu
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
msgid "Any device"
msgstr ""
#. js-lingui-id: I8f+hC
#: src/modules/views/components/AnyFieldSearchChip.tsx
msgid "Any field"
@@ -1964,11 +1948,6 @@ msgstr "Applikasjonsdetaljer"
msgid "Application installed successfully."
msgstr "Applikasjonen ble installert vellykket."
#. js-lingui-id: LllWIc
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
msgid "Application Logs"
msgstr ""
#. js-lingui-id: +tE2x9
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
msgid "Application successfully uninstalled."
@@ -3356,6 +3335,11 @@ msgstr "Konfigurer CalDAV-innstillinger for å synkronisere kalenderhendelsene d
msgid "Configure date, time, number, timezone, and calendar start day"
msgstr "Konfigurer dato, tid, nummer, tidssone og kalenders startdag"
#. js-lingui-id: +SQwHr
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Configure default AI models and availability"
msgstr "Konfigurer standard AI-modeller og tilgjengelighet"
#. js-lingui-id: utsXG8
#: src/pages/settings/security/SettingsSecurity.tsx
msgid "Configure fallback login methods for users with SSO bypass permissions"
@@ -3401,11 +3385,6 @@ msgstr "Konfigurer denne widgeten for å vise felt"
msgid "Configure when this function should be executed"
msgstr "Konfigurer når denne funksjonen skal kjøres"
#. js-lingui-id: hzDiM0
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Configure your default AI model"
msgstr ""
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@@ -3534,7 +3513,7 @@ msgstr "Innhold"
#. js-lingui-id: M73whl
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Context"
@@ -3732,16 +3711,21 @@ msgstr "Kjerneobjekter"
msgid "Cost"
msgstr "Kostnad"
#. js-lingui-id: Iw/ard
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Cost / 1M"
msgstr "Kostnad / 1M"
#. js-lingui-id: 3kzLg2
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
msgid "Cost / 1M tokens"
msgstr "Kostnad / 1M tokens"
#. js-lingui-id: iX2opZ
#: src/modules/settings/billing/components/SettingsBillingCreditsSection.tsx
msgid "Cost per 1k Extra Credits"
msgstr "Kostnad per 1k ekstra kreditter"
#. js-lingui-id: Z9Z9PX
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
msgid "Cost per 1M tokens"
msgstr ""
#. js-lingui-id: 3X5ngu
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
msgid "Cost per million tokens (USD)"
@@ -4279,6 +4263,7 @@ msgstr "Dashbordet ble duplisert"
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Data"
msgstr "Data"
@@ -4331,7 +4316,7 @@ msgid "Data on display"
msgstr "Data på skjerm"
#. js-lingui-id: Ix/CMz
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Data residency"
msgstr "Dataresidens"
@@ -4494,7 +4479,6 @@ msgid "default"
msgstr ""
#. js-lingui-id: ovBPCi
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
msgid "Default"
@@ -4833,11 +4817,6 @@ msgstr "Slettet oppføring"
msgid "Deleting this method will remove it permanently from your account."
msgstr "Å slette denne metoden vil fjerne den permanent fra kontoen din."
#. js-lingui-id: Ssdrw4
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
msgid "Deprecated"
msgstr ""
#. js-lingui-id: O3LJh6
#: src/modules/side-panel/pages/page-layout/utils/getSortLabelSuffixForFieldType.ts
#: src/modules/side-panel/pages/page-layout/utils/getSortLabelSuffixForFieldType.ts
@@ -4873,12 +4852,6 @@ msgstr "Beskriv hva du vil at AI skal gjøre..."
msgid "Description"
msgstr "Beskrivelse"
#. js-lingui-id: BBqGS9
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
msgid "Desktop"
msgstr ""
#. js-lingui-id: +ow7t4
#: src/modules/settings/roles/role-permissions/object-level-permissions/utils/objectPermissionKeyToHumanReadableText.ts
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
@@ -4901,7 +4874,7 @@ msgid "Detach"
msgstr "Koble fra"
#. js-lingui-id: URmyfc
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Details"
msgstr "Detaljer"
@@ -5336,8 +5309,6 @@ msgstr ""
#. js-lingui-id: uBAxNB
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/FieldWidgetLayoutDropdownContent.tsx
msgid "Editor"
msgstr "Redigerer"
@@ -6093,8 +6064,8 @@ msgid "Evaluations"
msgstr ""
#. js-lingui-id: 0pC/y6
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/modules/activities/calendar/components/CalendarEventDetails.tsx
msgid "Event"
msgstr "Hendelse"
@@ -6213,11 +6184,6 @@ msgstr "Ekskluder ikke-profesjonelle e-poster"
msgid "Exclude the following people and domains from my email sync. Internal conversations will not be imported"
msgstr "Ekskluder følgende personer og domener fra e-postsynkroniseringen min. Interne samtaler vil ikke bli importert"
#. js-lingui-id: B0clc7
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Execution ID"
msgstr ""
#. js-lingui-id: YzI8cc
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsSelect.tsx
msgid "Existing Field"
@@ -6547,8 +6513,6 @@ msgstr "Kunne ikke oppdatere modell"
#. js-lingui-id: W7Ff/4
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Failed to update model availability"
msgstr "Kunne ikke oppdatere modelltilgjengelighet"
@@ -6558,11 +6522,6 @@ msgstr "Kunne ikke oppdatere modelltilgjengelighet"
msgid "Failed to update model recommendation"
msgstr "Kunne ikke oppdatere modellanbefaling"
#. js-lingui-id: q1MtjM
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
msgid "Failed to update model recommendations"
msgstr ""
#. js-lingui-id: rCUG3c
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Failed to update model selection mode"
@@ -7053,11 +7012,6 @@ msgstr "Frontkomponenter"
msgid "Full access"
msgstr "Full tilgang"
#. js-lingui-id: YMZBxa
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Function"
msgstr ""
#. js-lingui-id: AHOl4W
#: src/modules/settings/logic-functions/components/SettingsLogicFunctionLabelContainer.tsx
msgid "Function name"
@@ -8408,7 +8362,6 @@ msgstr "Start manuelt"
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldsSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Layout"
@@ -8482,11 +8435,6 @@ msgstr ""
msgid "Less than or equal"
msgstr "Mindre enn eller lik"
#. js-lingui-id: oCHfGC
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Level"
msgstr ""
#. js-lingui-id: 3qg5Ro
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
@@ -8921,7 +8869,7 @@ msgstr "Maksimal importkapasitet: {formatSpreadsheetMaxRecordImportCapacity} pos
#. js-lingui-id: S8w4XA
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Max output"
msgstr "Maks utdata"
@@ -9031,11 +8979,6 @@ msgstr "Slå sammen oppføringer"
msgid "Merging..."
msgstr "Slår sammen..."
#. js-lingui-id: xDAtGP
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Message"
msgstr ""
#. js-lingui-id: U15XwX
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Message not found"
@@ -9133,12 +9076,6 @@ msgstr "Mangler tillatelse til å opprette e-postutkast."
msgid "Mission accomplished!"
msgstr "Oppdrag utført!"
#. js-lingui-id: dMsM20
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
msgid "Mobile"
msgstr ""
#. js-lingui-id: scu3wk
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPromptTab.tsx
msgid "Model"
@@ -9168,6 +9105,7 @@ msgstr "Modell-ID er påkrevd"
#. js-lingui-id: //nm2/
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Models"
msgstr "Modeller"
@@ -9392,12 +9330,12 @@ msgstr "mySkill"
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
#: src/modules/settings/data-model/new-object/components/SettingsAvailableStandardObjectsSection.tsx
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/config-variables/components/SettingsAdminConfigVariablesTable.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Name"
msgstr "Navn"
@@ -10062,12 +10000,6 @@ msgstr "Ingen tillatelser er konfigurert for denne appen."
msgid "No permissions have been set for individual objects."
msgstr "Ingen tillatelser er satt for individuelle objekter."
#. js-lingui-id: V/+aTW
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordFieldChip.tsx
msgid "No record"
msgstr ""
#. js-lingui-id: ePgApM
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerManual.tsx
msgid "No record is required to trigger this workflow"
@@ -10079,6 +10011,11 @@ msgstr "Ingen post er nødvendig for å utløse denne arbeidsflyten"
msgid "No record selected"
msgstr ""
#. js-lingui-id: X8wJTR
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
msgid "No records"
msgstr "Ingen poster"
#. js-lingui-id: EqGTpW
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateReadOnly.tsx
#: src/modules/object-record/record-picker/components/RecordPickerNoRecordFoundMenuItem.tsx
@@ -10392,7 +10329,7 @@ msgid "Object Events"
msgstr "Objekthendelser"
#. js-lingui-id: 79D4Az
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
msgid "Object ID"
msgstr "Objekt-ID"
@@ -11346,8 +11283,8 @@ msgid "Prompt"
msgstr ""
#. js-lingui-id: l/UFPv
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
msgid "Properties"
msgstr "Egenskaper"
@@ -11370,8 +11307,8 @@ msgstr "Oppgi detaljene til din OIDC-leverandør"
#. js-lingui-id: aemBRq
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Provider"
msgstr "Tilbyder"
@@ -11597,7 +11534,7 @@ msgid "Record filter rule options"
msgstr "Alternativer for oppføringsfilterregel"
#. js-lingui-id: xSAYIn
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
msgid "Record ID"
msgstr "Oppførings-ID"
@@ -11625,6 +11562,12 @@ msgstr "Opptak side"
msgid "Record Selection"
msgstr "Velg poster"
#. js-lingui-id: J9Cfll
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutDashboardWidgetTypeSelect.tsx
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
msgid "Record Table"
msgstr "Oppføringstabell"
#. js-lingui-id: NxW0+c
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
msgid "Record Table Settings"
@@ -11993,7 +11936,7 @@ msgid "Reset variable"
msgstr "Nullstill variabel"
#. js-lingui-id: esl+Tv
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
msgid "Resource Type"
msgstr "Ressurstype"
@@ -13009,7 +12952,6 @@ msgstr "Konfigurere databasen din..."
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsSection.tsx
#: src/modules/settings/roles/role/components/SettingsRole.tsx
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
@@ -13866,7 +13808,6 @@ msgstr "Faneinnstillinger"
#. js-lingui-id: 4hJhzz
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
msgid "Table"
@@ -14409,10 +14350,9 @@ msgid "Timeout"
msgstr "Tidsavbrudd"
#. js-lingui-id: 8TMaZI
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Timestamp"
msgstr "Tidsstempel"
@@ -15256,9 +15196,9 @@ msgstr "Nyttig for pivot-/koblingstabeller"
#. js-lingui-id: 7PzzBU
#: src/pages/settings/SettingsTwoFactorAuthenticationMethod.tsx
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
#: src/pages/settings/ai/SettingsAIPrompts.tsx
@@ -15441,9 +15381,7 @@ msgid "view"
msgstr "vis"
#. js-lingui-id: jpctdh
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutDashboardWidgetTypeSelect.tsx
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
@@ -15611,11 +15549,6 @@ msgstr "Fiolett"
msgid "Visibility"
msgstr "Synlighet"
#. js-lingui-id: gkAApJ
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
msgid "Visibility Restriction"
msgstr ""
#. js-lingui-id: zYTdqe
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
+49 -116
View File
@@ -158,16 +158,6 @@ msgstr "{0, plural, one {Nie masz uprawnienia do dostępu do pola {fieldsList}}
msgid "{0} credits"
msgstr "{0} kredytów"
#. js-lingui-id: peiknr
#. placeholder {0}: activeVisibleFieldLabels.length
#. placeholder {0}: activeFilterLabels.length
#. placeholder {0}: activeSortLabels.length
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
msgid "{0} shown"
msgstr ""
#. js-lingui-id: r4l/MK
#. placeholder {0}: formatUsageValue(totalCredits)
#: src/pages/settings/SettingsUsageUserDetail.tsx
@@ -1785,12 +1775,6 @@ msgstr "I"
msgid "Any {fieldLabel} field"
msgstr "Dowolne pole {fieldLabel}"
#. js-lingui-id: COyjuu
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
msgid "Any device"
msgstr ""
#. js-lingui-id: I8f+hC
#: src/modules/views/components/AnyFieldSearchChip.tsx
msgid "Any field"
@@ -1964,11 +1948,6 @@ msgstr "Szczegóły aplikacji"
msgid "Application installed successfully."
msgstr "Aplikacja została pomyślnie zainstalowana."
#. js-lingui-id: LllWIc
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
msgid "Application Logs"
msgstr ""
#. js-lingui-id: +tE2x9
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
msgid "Application successfully uninstalled."
@@ -3356,6 +3335,11 @@ msgstr "Skonfiguruj ustawienia CalDAV, aby synchronizować wydarzenia w kalendar
msgid "Configure date, time, number, timezone, and calendar start day"
msgstr "Skonfiguruj datę, godzinę, liczbę, strefę czasową i dzień rozpoczęcia kalendarza"
#. js-lingui-id: +SQwHr
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Configure default AI models and availability"
msgstr "Skonfiguruj domyślne modele AI i ich dostępność"
#. js-lingui-id: utsXG8
#: src/pages/settings/security/SettingsSecurity.tsx
msgid "Configure fallback login methods for users with SSO bypass permissions"
@@ -3401,11 +3385,6 @@ msgstr "Skonfiguruj ten widżet, aby wyświetlał pola"
msgid "Configure when this function should be executed"
msgstr "Skonfiguruj, kiedy ta funkcja powinna być wykonywana"
#. js-lingui-id: hzDiM0
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Configure your default AI model"
msgstr ""
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@@ -3534,7 +3513,7 @@ msgstr "Zawartość"
#. js-lingui-id: M73whl
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Context"
@@ -3732,16 +3711,21 @@ msgstr "Obiekty podstawowe"
msgid "Cost"
msgstr "Koszt"
#. js-lingui-id: Iw/ard
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Cost / 1M"
msgstr "Koszt / 1 mln"
#. js-lingui-id: 3kzLg2
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
msgid "Cost / 1M tokens"
msgstr "Koszt / 1 mln tokenów"
#. js-lingui-id: iX2opZ
#: src/modules/settings/billing/components/SettingsBillingCreditsSection.tsx
msgid "Cost per 1k Extra Credits"
msgstr "Koszt za 1k dodatkowych kredytów"
#. js-lingui-id: Z9Z9PX
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
msgid "Cost per 1M tokens"
msgstr ""
#. js-lingui-id: 3X5ngu
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
msgid "Cost per million tokens (USD)"
@@ -4279,6 +4263,7 @@ msgstr "Panel został zduplikowany pomyślnie"
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Data"
msgstr "Dane"
@@ -4331,7 +4316,7 @@ msgid "Data on display"
msgstr "Dane na wyświetlaczu"
#. js-lingui-id: Ix/CMz
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Data residency"
msgstr "Rezydencja danych"
@@ -4494,7 +4479,6 @@ msgid "default"
msgstr ""
#. js-lingui-id: ovBPCi
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
msgid "Default"
@@ -4833,11 +4817,6 @@ msgstr "Usunięty rekord"
msgid "Deleting this method will remove it permanently from your account."
msgstr "Usunięcie tej metody spowoduje jej trwałe usunięcie z Twojego konta."
#. js-lingui-id: Ssdrw4
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
msgid "Deprecated"
msgstr ""
#. js-lingui-id: O3LJh6
#: src/modules/side-panel/pages/page-layout/utils/getSortLabelSuffixForFieldType.ts
#: src/modules/side-panel/pages/page-layout/utils/getSortLabelSuffixForFieldType.ts
@@ -4873,12 +4852,6 @@ msgstr "Opisz, co chcesz, aby AI zrobiło..."
msgid "Description"
msgstr "Opis"
#. js-lingui-id: BBqGS9
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
msgid "Desktop"
msgstr ""
#. js-lingui-id: +ow7t4
#: src/modules/settings/roles/role-permissions/object-level-permissions/utils/objectPermissionKeyToHumanReadableText.ts
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
@@ -4901,7 +4874,7 @@ msgid "Detach"
msgstr "Odłącz"
#. js-lingui-id: URmyfc
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Details"
msgstr "Szczegóły"
@@ -5336,8 +5309,6 @@ msgstr ""
#. js-lingui-id: uBAxNB
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/FieldWidgetLayoutDropdownContent.tsx
msgid "Editor"
msgstr "Edytor"
@@ -6093,8 +6064,8 @@ msgid "Evaluations"
msgstr ""
#. js-lingui-id: 0pC/y6
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/modules/activities/calendar/components/CalendarEventDetails.tsx
msgid "Event"
msgstr "Wydarzenie"
@@ -6213,11 +6184,6 @@ msgstr "Wyklucz nieprofesjonalne emaile"
msgid "Exclude the following people and domains from my email sync. Internal conversations will not be imported"
msgstr "Wyklucz następujące osoby i domeny z synchronizacji mojej poczty. Rozmowy wewnętrzne nie będą importowane"
#. js-lingui-id: B0clc7
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Execution ID"
msgstr ""
#. js-lingui-id: YzI8cc
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsSelect.tsx
msgid "Existing Field"
@@ -6547,8 +6513,6 @@ msgstr "Nie udało się zaktualizować modelu"
#. js-lingui-id: W7Ff/4
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Failed to update model availability"
msgstr "Nie udało się zaktualizować dostępności modelu"
@@ -6558,11 +6522,6 @@ msgstr "Nie udało się zaktualizować dostępności modelu"
msgid "Failed to update model recommendation"
msgstr "Nie udało się zaktualizować rekomendacji modelu"
#. js-lingui-id: q1MtjM
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
msgid "Failed to update model recommendations"
msgstr ""
#. js-lingui-id: rCUG3c
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Failed to update model selection mode"
@@ -7053,11 +7012,6 @@ msgstr "Komponenty frontowe"
msgid "Full access"
msgstr "Pełny dostęp"
#. js-lingui-id: YMZBxa
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Function"
msgstr ""
#. js-lingui-id: AHOl4W
#: src/modules/settings/logic-functions/components/SettingsLogicFunctionLabelContainer.tsx
msgid "Function name"
@@ -8408,7 +8362,6 @@ msgstr "Uruchom ręcznie"
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldsSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Layout"
@@ -8482,11 +8435,6 @@ msgstr ""
msgid "Less than or equal"
msgstr "Mniejsze lub równe"
#. js-lingui-id: oCHfGC
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Level"
msgstr ""
#. js-lingui-id: 3qg5Ro
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
@@ -8921,7 +8869,7 @@ msgstr "Maksymalna pojemność importu: {formatSpreadsheetMaxRecordImportCapacit
#. js-lingui-id: S8w4XA
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Max output"
msgstr "Maksymalne wyjście"
@@ -9031,11 +8979,6 @@ msgstr "Scal rekordy"
msgid "Merging..."
msgstr "Scalanie..."
#. js-lingui-id: xDAtGP
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Message"
msgstr ""
#. js-lingui-id: U15XwX
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Message not found"
@@ -9133,12 +9076,6 @@ msgstr "Brak uprawnień do tworzenia szkiców wiadomości e-mail."
msgid "Mission accomplished!"
msgstr "Misja zakończona!"
#. js-lingui-id: dMsM20
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
msgid "Mobile"
msgstr ""
#. js-lingui-id: scu3wk
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPromptTab.tsx
msgid "Model"
@@ -9168,6 +9105,7 @@ msgstr "Identyfikator modelu jest wymagany"
#. js-lingui-id: //nm2/
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Models"
msgstr "Modele"
@@ -9392,12 +9330,12 @@ msgstr "mySkill"
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
#: src/modules/settings/data-model/new-object/components/SettingsAvailableStandardObjectsSection.tsx
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/config-variables/components/SettingsAdminConfigVariablesTable.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Name"
msgstr "Nazwa"
@@ -10062,12 +10000,6 @@ msgstr "Brak skonfigurowanych uprawnień dla tej aplikacji."
msgid "No permissions have been set for individual objects."
msgstr "Nie ustawiono uprawnień dla poszczególnych obiektów."
#. js-lingui-id: V/+aTW
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordFieldChip.tsx
msgid "No record"
msgstr ""
#. js-lingui-id: ePgApM
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerManual.tsx
msgid "No record is required to trigger this workflow"
@@ -10079,6 +10011,11 @@ msgstr "Do uruchomienia tego procesu roboczego nie jest wymagany żaden zapis"
msgid "No record selected"
msgstr ""
#. js-lingui-id: X8wJTR
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
msgid "No records"
msgstr "Brak rekordów"
#. js-lingui-id: EqGTpW
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateReadOnly.tsx
#: src/modules/object-record/record-picker/components/RecordPickerNoRecordFoundMenuItem.tsx
@@ -10392,7 +10329,7 @@ msgid "Object Events"
msgstr "Zdarzenia obiektów"
#. js-lingui-id: 79D4Az
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
msgid "Object ID"
msgstr "Identyfikator obiektu"
@@ -11346,8 +11283,8 @@ msgid "Prompt"
msgstr ""
#. js-lingui-id: l/UFPv
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
msgid "Properties"
msgstr "Właściwości"
@@ -11370,8 +11307,8 @@ msgstr "Podaj szczegóły dostawcy OIDC"
#. js-lingui-id: aemBRq
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Provider"
msgstr "Dostawca"
@@ -11597,7 +11534,7 @@ msgid "Record filter rule options"
msgstr "Opcje reguł filtra rekordu"
#. js-lingui-id: xSAYIn
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
msgid "Record ID"
msgstr "Identyfikator rekordu"
@@ -11625,6 +11562,12 @@ msgstr "Strona Rekordu"
msgid "Record Selection"
msgstr "Wybór rekordu"
#. js-lingui-id: J9Cfll
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutDashboardWidgetTypeSelect.tsx
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
msgid "Record Table"
msgstr "Tabela rekordów"
#. js-lingui-id: NxW0+c
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
msgid "Record Table Settings"
@@ -11993,7 +11936,7 @@ msgid "Reset variable"
msgstr "Zresetuj zmienną"
#. js-lingui-id: esl+Tv
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
msgid "Resource Type"
msgstr "Typ zasobu"
@@ -13009,7 +12952,6 @@ msgstr "Ustawianie twojej bazy danych..."
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsSection.tsx
#: src/modules/settings/roles/role/components/SettingsRole.tsx
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
@@ -13866,7 +13808,6 @@ msgstr "Ustawienia Zakładki"
#. js-lingui-id: 4hJhzz
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
msgid "Table"
@@ -14409,10 +14350,9 @@ msgid "Timeout"
msgstr "Limit czasu"
#. js-lingui-id: 8TMaZI
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Timestamp"
msgstr "Znak czasu"
@@ -15256,9 +15196,9 @@ msgstr "Przydatne w przypadku tabel przestawnych/łącznikowych"
#. js-lingui-id: 7PzzBU
#: src/pages/settings/SettingsTwoFactorAuthenticationMethod.tsx
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
#: src/pages/settings/ai/SettingsAIPrompts.tsx
@@ -15441,9 +15381,7 @@ msgid "view"
msgstr "widok"
#. js-lingui-id: jpctdh
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutDashboardWidgetTypeSelect.tsx
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
@@ -15611,11 +15549,6 @@ msgstr "Fioletowy"
msgid "Visibility"
msgstr "Widoczność"
#. js-lingui-id: gkAApJ
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
msgid "Visibility Restriction"
msgstr ""
#. js-lingui-id: zYTdqe
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
+49 -116
View File
@@ -153,16 +153,6 @@ msgstr ""
msgid "{0} credits"
msgstr ""
#. js-lingui-id: peiknr
#. placeholder {0}: activeVisibleFieldLabels.length
#. placeholder {0}: activeFilterLabels.length
#. placeholder {0}: activeSortLabels.length
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
msgid "{0} shown"
msgstr ""
#. js-lingui-id: r4l/MK
#. placeholder {0}: formatUsageValue(totalCredits)
#: src/pages/settings/SettingsUsageUserDetail.tsx
@@ -1780,12 +1770,6 @@ msgstr ""
msgid "Any {fieldLabel} field"
msgstr ""
#. js-lingui-id: COyjuu
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
msgid "Any device"
msgstr ""
#. js-lingui-id: I8f+hC
#: src/modules/views/components/AnyFieldSearchChip.tsx
msgid "Any field"
@@ -1959,11 +1943,6 @@ msgstr ""
msgid "Application installed successfully."
msgstr ""
#. js-lingui-id: LllWIc
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
msgid "Application Logs"
msgstr ""
#. js-lingui-id: +tE2x9
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
msgid "Application successfully uninstalled."
@@ -3351,6 +3330,11 @@ msgstr ""
msgid "Configure date, time, number, timezone, and calendar start day"
msgstr ""
#. js-lingui-id: +SQwHr
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Configure default AI models and availability"
msgstr ""
#. js-lingui-id: utsXG8
#: src/pages/settings/security/SettingsSecurity.tsx
msgid "Configure fallback login methods for users with SSO bypass permissions"
@@ -3396,11 +3380,6 @@ msgstr ""
msgid "Configure when this function should be executed"
msgstr ""
#. js-lingui-id: hzDiM0
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Configure your default AI model"
msgstr ""
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@@ -3529,7 +3508,7 @@ msgstr ""
#. js-lingui-id: M73whl
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Context"
@@ -3727,16 +3706,21 @@ msgstr ""
msgid "Cost"
msgstr ""
#. js-lingui-id: Iw/ard
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Cost / 1M"
msgstr ""
#. js-lingui-id: 3kzLg2
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
msgid "Cost / 1M tokens"
msgstr ""
#. js-lingui-id: iX2opZ
#: src/modules/settings/billing/components/SettingsBillingCreditsSection.tsx
msgid "Cost per 1k Extra Credits"
msgstr ""
#. js-lingui-id: Z9Z9PX
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
msgid "Cost per 1M tokens"
msgstr ""
#. js-lingui-id: 3X5ngu
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
msgid "Cost per million tokens (USD)"
@@ -4274,6 +4258,7 @@ msgstr ""
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Data"
msgstr ""
@@ -4326,7 +4311,7 @@ msgid "Data on display"
msgstr ""
#. js-lingui-id: Ix/CMz
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Data residency"
msgstr ""
@@ -4489,7 +4474,6 @@ msgid "default"
msgstr ""
#. js-lingui-id: ovBPCi
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
msgid "Default"
@@ -4828,11 +4812,6 @@ msgstr ""
msgid "Deleting this method will remove it permanently from your account."
msgstr ""
#. js-lingui-id: Ssdrw4
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
msgid "Deprecated"
msgstr ""
#. js-lingui-id: O3LJh6
#: src/modules/side-panel/pages/page-layout/utils/getSortLabelSuffixForFieldType.ts
#: src/modules/side-panel/pages/page-layout/utils/getSortLabelSuffixForFieldType.ts
@@ -4868,12 +4847,6 @@ msgstr ""
msgid "Description"
msgstr ""
#. js-lingui-id: BBqGS9
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
msgid "Desktop"
msgstr ""
#. js-lingui-id: +ow7t4
#: src/modules/settings/roles/role-permissions/object-level-permissions/utils/objectPermissionKeyToHumanReadableText.ts
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
@@ -4896,7 +4869,7 @@ msgid "Detach"
msgstr ""
#. js-lingui-id: URmyfc
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Details"
msgstr ""
@@ -5331,8 +5304,6 @@ msgstr ""
#. js-lingui-id: uBAxNB
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/FieldWidgetLayoutDropdownContent.tsx
msgid "Editor"
msgstr ""
@@ -6088,8 +6059,8 @@ msgid "Evaluations"
msgstr ""
#. js-lingui-id: 0pC/y6
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/modules/activities/calendar/components/CalendarEventDetails.tsx
msgid "Event"
msgstr ""
@@ -6208,11 +6179,6 @@ msgstr ""
msgid "Exclude the following people and domains from my email sync. Internal conversations will not be imported"
msgstr ""
#. js-lingui-id: B0clc7
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Execution ID"
msgstr ""
#. js-lingui-id: YzI8cc
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsSelect.tsx
msgid "Existing Field"
@@ -6542,8 +6508,6 @@ msgstr ""
#. js-lingui-id: W7Ff/4
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Failed to update model availability"
msgstr ""
@@ -6553,11 +6517,6 @@ msgstr ""
msgid "Failed to update model recommendation"
msgstr ""
#. js-lingui-id: q1MtjM
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
msgid "Failed to update model recommendations"
msgstr ""
#. js-lingui-id: rCUG3c
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Failed to update model selection mode"
@@ -7048,11 +7007,6 @@ msgstr ""
msgid "Full access"
msgstr ""
#. js-lingui-id: YMZBxa
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Function"
msgstr ""
#. js-lingui-id: AHOl4W
#: src/modules/settings/logic-functions/components/SettingsLogicFunctionLabelContainer.tsx
msgid "Function name"
@@ -8403,7 +8357,6 @@ msgstr ""
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldsSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Layout"
@@ -8477,11 +8430,6 @@ msgstr ""
msgid "Less than or equal"
msgstr ""
#. js-lingui-id: oCHfGC
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Level"
msgstr ""
#. js-lingui-id: 3qg5Ro
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
@@ -8916,7 +8864,7 @@ msgstr ""
#. js-lingui-id: S8w4XA
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Max output"
msgstr ""
@@ -9026,11 +8974,6 @@ msgstr ""
msgid "Merging..."
msgstr ""
#. js-lingui-id: xDAtGP
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Message"
msgstr ""
#. js-lingui-id: U15XwX
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Message not found"
@@ -9128,12 +9071,6 @@ msgstr ""
msgid "Mission accomplished!"
msgstr ""
#. js-lingui-id: dMsM20
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
msgid "Mobile"
msgstr ""
#. js-lingui-id: scu3wk
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPromptTab.tsx
msgid "Model"
@@ -9163,6 +9100,7 @@ msgstr ""
#. js-lingui-id: //nm2/
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Models"
msgstr ""
@@ -9387,12 +9325,12 @@ msgstr ""
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
#: src/modules/settings/data-model/new-object/components/SettingsAvailableStandardObjectsSection.tsx
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/config-variables/components/SettingsAdminConfigVariablesTable.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Name"
msgstr ""
@@ -10057,12 +9995,6 @@ msgstr ""
msgid "No permissions have been set for individual objects."
msgstr ""
#. js-lingui-id: V/+aTW
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordFieldChip.tsx
msgid "No record"
msgstr ""
#. js-lingui-id: ePgApM
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerManual.tsx
msgid "No record is required to trigger this workflow"
@@ -10074,6 +10006,11 @@ msgstr ""
msgid "No record selected"
msgstr ""
#. js-lingui-id: X8wJTR
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
msgid "No records"
msgstr ""
#. js-lingui-id: EqGTpW
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateReadOnly.tsx
#: src/modules/object-record/record-picker/components/RecordPickerNoRecordFoundMenuItem.tsx
@@ -10387,7 +10324,7 @@ msgid "Object Events"
msgstr ""
#. js-lingui-id: 79D4Az
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
msgid "Object ID"
msgstr ""
@@ -11341,8 +11278,8 @@ msgid "Prompt"
msgstr ""
#. js-lingui-id: l/UFPv
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
msgid "Properties"
msgstr ""
@@ -11365,8 +11302,8 @@ msgstr ""
#. js-lingui-id: aemBRq
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Provider"
msgstr ""
@@ -11592,7 +11529,7 @@ msgid "Record filter rule options"
msgstr ""
#. js-lingui-id: xSAYIn
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
msgid "Record ID"
msgstr ""
@@ -11620,6 +11557,12 @@ msgstr ""
msgid "Record Selection"
msgstr ""
#. js-lingui-id: J9Cfll
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutDashboardWidgetTypeSelect.tsx
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
msgid "Record Table"
msgstr ""
#. js-lingui-id: NxW0+c
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
msgid "Record Table Settings"
@@ -11988,7 +11931,7 @@ msgid "Reset variable"
msgstr ""
#. js-lingui-id: esl+Tv
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
msgid "Resource Type"
msgstr ""
@@ -13004,7 +12947,6 @@ msgstr ""
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsSection.tsx
#: src/modules/settings/roles/role/components/SettingsRole.tsx
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
@@ -13861,7 +13803,6 @@ msgstr ""
#. js-lingui-id: 4hJhzz
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
msgid "Table"
@@ -14404,10 +14345,9 @@ msgid "Timeout"
msgstr ""
#. js-lingui-id: 8TMaZI
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Timestamp"
msgstr ""
@@ -15251,9 +15191,9 @@ msgstr ""
#. js-lingui-id: 7PzzBU
#: src/pages/settings/SettingsTwoFactorAuthenticationMethod.tsx
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
#: src/pages/settings/ai/SettingsAIPrompts.tsx
@@ -15436,9 +15376,7 @@ msgid "view"
msgstr ""
#. js-lingui-id: jpctdh
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutDashboardWidgetTypeSelect.tsx
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
@@ -15606,11 +15544,6 @@ msgstr ""
msgid "Visibility"
msgstr ""
#. js-lingui-id: gkAApJ
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
msgid "Visibility Restriction"
msgstr ""
#. js-lingui-id: zYTdqe
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
+49 -116
View File
@@ -158,16 +158,6 @@ msgstr "{0, plural, one {Você não tem permissão para acessar o campo {fieldsL
msgid "{0} credits"
msgstr "{0} créditos"
#. js-lingui-id: peiknr
#. placeholder {0}: activeVisibleFieldLabels.length
#. placeholder {0}: activeFilterLabels.length
#. placeholder {0}: activeSortLabels.length
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
msgid "{0} shown"
msgstr ""
#. js-lingui-id: r4l/MK
#. placeholder {0}: formatUsageValue(totalCredits)
#: src/pages/settings/SettingsUsageUserDetail.tsx
@@ -1785,12 +1775,6 @@ msgstr "E"
msgid "Any {fieldLabel} field"
msgstr "Qualquer campo {fieldLabel}"
#. js-lingui-id: COyjuu
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
msgid "Any device"
msgstr ""
#. js-lingui-id: I8f+hC
#: src/modules/views/components/AnyFieldSearchChip.tsx
msgid "Any field"
@@ -1964,11 +1948,6 @@ msgstr "Detalhes da aplicação"
msgid "Application installed successfully."
msgstr "Aplicação instalada com sucesso."
#. js-lingui-id: LllWIc
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
msgid "Application Logs"
msgstr ""
#. js-lingui-id: +tE2x9
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
msgid "Application successfully uninstalled."
@@ -3356,6 +3335,11 @@ msgstr "Configure as configurações do CalDAV para sincronizar seus eventos de
msgid "Configure date, time, number, timezone, and calendar start day"
msgstr "Configurar data, hora, número, fuso horário e dia de início do calendário"
#. js-lingui-id: +SQwHr
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Configure default AI models and availability"
msgstr "Configurar os modelos de IA padrão e a disponibilidade"
#. js-lingui-id: utsXG8
#: src/pages/settings/security/SettingsSecurity.tsx
msgid "Configure fallback login methods for users with SSO bypass permissions"
@@ -3401,11 +3385,6 @@ msgstr "Configure este widget para exibir campos"
msgid "Configure when this function should be executed"
msgstr "Configure quando esta função deve ser executada"
#. js-lingui-id: hzDiM0
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Configure your default AI model"
msgstr ""
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@@ -3534,7 +3513,7 @@ msgstr "Conteúdo"
#. js-lingui-id: M73whl
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Context"
@@ -3732,16 +3711,21 @@ msgstr "Objetos principais"
msgid "Cost"
msgstr "Custo"
#. js-lingui-id: Iw/ard
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Cost / 1M"
msgstr "Custo / 1M"
#. js-lingui-id: 3kzLg2
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
msgid "Cost / 1M tokens"
msgstr "Custo / 1M tokens"
#. js-lingui-id: iX2opZ
#: src/modules/settings/billing/components/SettingsBillingCreditsSection.tsx
msgid "Cost per 1k Extra Credits"
msgstr "Custo por 1k Créditos Extras"
#. js-lingui-id: Z9Z9PX
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
msgid "Cost per 1M tokens"
msgstr ""
#. js-lingui-id: 3X5ngu
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
msgid "Cost per million tokens (USD)"
@@ -4279,6 +4263,7 @@ msgstr "Painel duplicado com sucesso"
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Data"
msgstr "Data"
@@ -4331,7 +4316,7 @@ msgid "Data on display"
msgstr "Dados em exibição"
#. js-lingui-id: Ix/CMz
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Data residency"
msgstr "Residência de dados"
@@ -4494,7 +4479,6 @@ msgid "default"
msgstr ""
#. js-lingui-id: ovBPCi
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
msgid "Default"
@@ -4833,11 +4817,6 @@ msgstr "Registro excluído"
msgid "Deleting this method will remove it permanently from your account."
msgstr "Excluir este método irá removê-lo permanentemente da sua conta."
#. js-lingui-id: Ssdrw4
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
msgid "Deprecated"
msgstr ""
#. js-lingui-id: O3LJh6
#: src/modules/side-panel/pages/page-layout/utils/getSortLabelSuffixForFieldType.ts
#: src/modules/side-panel/pages/page-layout/utils/getSortLabelSuffixForFieldType.ts
@@ -4873,12 +4852,6 @@ msgstr "Descreva o que você quer que a IA faça..."
msgid "Description"
msgstr "Descrição"
#. js-lingui-id: BBqGS9
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
msgid "Desktop"
msgstr ""
#. js-lingui-id: +ow7t4
#: src/modules/settings/roles/role-permissions/object-level-permissions/utils/objectPermissionKeyToHumanReadableText.ts
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
@@ -4901,7 +4874,7 @@ msgid "Detach"
msgstr "Desvincular"
#. js-lingui-id: URmyfc
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Details"
msgstr "Detalhes"
@@ -5336,8 +5309,6 @@ msgstr ""
#. js-lingui-id: uBAxNB
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/FieldWidgetLayoutDropdownContent.tsx
msgid "Editor"
msgstr "Editor"
@@ -6093,8 +6064,8 @@ msgid "Evaluations"
msgstr ""
#. js-lingui-id: 0pC/y6
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/modules/activities/calendar/components/CalendarEventDetails.tsx
msgid "Event"
msgstr "Evento"
@@ -6213,11 +6184,6 @@ msgstr "Excluir E-mails Não Profissionais"
msgid "Exclude the following people and domains from my email sync. Internal conversations will not be imported"
msgstr "Excluir as seguintes pessoas e domínios da sincronização do meu e-mail. Conversas internas não serão importadas"
#. js-lingui-id: B0clc7
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Execution ID"
msgstr ""
#. js-lingui-id: YzI8cc
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsSelect.tsx
msgid "Existing Field"
@@ -6547,8 +6513,6 @@ msgstr "Falha ao atualizar o modelo"
#. js-lingui-id: W7Ff/4
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Failed to update model availability"
msgstr "Falha ao atualizar a disponibilidade do modelo"
@@ -6558,11 +6522,6 @@ msgstr "Falha ao atualizar a disponibilidade do modelo"
msgid "Failed to update model recommendation"
msgstr "Falha ao atualizar a recomendação do modelo"
#. js-lingui-id: q1MtjM
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
msgid "Failed to update model recommendations"
msgstr ""
#. js-lingui-id: rCUG3c
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Failed to update model selection mode"
@@ -7053,11 +7012,6 @@ msgstr "Componentes de front-end"
msgid "Full access"
msgstr "Acesso total"
#. js-lingui-id: YMZBxa
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Function"
msgstr ""
#. js-lingui-id: AHOl4W
#: src/modules/settings/logic-functions/components/SettingsLogicFunctionLabelContainer.tsx
msgid "Function name"
@@ -8408,7 +8362,6 @@ msgstr "Executar manualmente"
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldsSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Layout"
@@ -8482,11 +8435,6 @@ msgstr ""
msgid "Less than or equal"
msgstr "Menor ou igual"
#. js-lingui-id: oCHfGC
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Level"
msgstr ""
#. js-lingui-id: 3qg5Ro
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
@@ -8921,7 +8869,7 @@ msgstr "Capacidade máxima de importação: {formatSpreadsheetMaxRecordImportCap
#. js-lingui-id: S8w4XA
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Max output"
msgstr "Saída máxima"
@@ -9031,11 +8979,6 @@ msgstr "Mesclar registros"
msgid "Merging..."
msgstr "Mesclando..."
#. js-lingui-id: xDAtGP
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Message"
msgstr ""
#. js-lingui-id: U15XwX
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Message not found"
@@ -9133,12 +9076,6 @@ msgstr "Falta permissão para criar rascunhos de e-mail."
msgid "Mission accomplished!"
msgstr "Missão cumprida!"
#. js-lingui-id: dMsM20
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
msgid "Mobile"
msgstr ""
#. js-lingui-id: scu3wk
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPromptTab.tsx
msgid "Model"
@@ -9168,6 +9105,7 @@ msgstr "O ID do modelo é obrigatório"
#. js-lingui-id: //nm2/
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Models"
msgstr "Modelos"
@@ -9392,12 +9330,12 @@ msgstr "mySkill"
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
#: src/modules/settings/data-model/new-object/components/SettingsAvailableStandardObjectsSection.tsx
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/config-variables/components/SettingsAdminConfigVariablesTable.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Name"
msgstr "Nome"
@@ -10062,12 +10000,6 @@ msgstr ""
msgid "No permissions have been set for individual objects."
msgstr "Nenhuma permissão foi definida para objetos individuais."
#. js-lingui-id: V/+aTW
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordFieldChip.tsx
msgid "No record"
msgstr ""
#. js-lingui-id: ePgApM
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerManual.tsx
msgid "No record is required to trigger this workflow"
@@ -10079,6 +10011,11 @@ msgstr "Nenhum registro é necessário para acionar este fluxo de trabalho"
msgid "No record selected"
msgstr ""
#. js-lingui-id: X8wJTR
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
msgid "No records"
msgstr "Sem registros"
#. js-lingui-id: EqGTpW
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateReadOnly.tsx
#: src/modules/object-record/record-picker/components/RecordPickerNoRecordFoundMenuItem.tsx
@@ -10392,7 +10329,7 @@ msgid "Object Events"
msgstr "Eventos de objeto"
#. js-lingui-id: 79D4Az
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
msgid "Object ID"
msgstr "ID do objeto"
@@ -11346,8 +11283,8 @@ msgid "Prompt"
msgstr ""
#. js-lingui-id: l/UFPv
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
msgid "Properties"
msgstr "Propriedades"
@@ -11370,8 +11307,8 @@ msgstr "Forneça os detalhes do seu provedor OIDC"
#. js-lingui-id: aemBRq
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Provider"
msgstr "Provedor"
@@ -11597,7 +11534,7 @@ msgid "Record filter rule options"
msgstr "Opções de regras de filtro de registros"
#. js-lingui-id: xSAYIn
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
msgid "Record ID"
msgstr "ID do registro"
@@ -11625,6 +11562,12 @@ msgstr "Página do Registro"
msgid "Record Selection"
msgstr "Seleção de registros"
#. js-lingui-id: J9Cfll
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutDashboardWidgetTypeSelect.tsx
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
msgid "Record Table"
msgstr "Tabela de registros"
#. js-lingui-id: NxW0+c
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
msgid "Record Table Settings"
@@ -11993,7 +11936,7 @@ msgid "Reset variable"
msgstr "Redefinir variável"
#. js-lingui-id: esl+Tv
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
msgid "Resource Type"
msgstr "Tipo de recurso"
@@ -13009,7 +12952,6 @@ msgstr "Configurando seu banco de dados..."
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsSection.tsx
#: src/modules/settings/roles/role/components/SettingsRole.tsx
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
@@ -13866,7 +13808,6 @@ msgstr "Configurações da Aba"
#. js-lingui-id: 4hJhzz
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
msgid "Table"
@@ -14409,10 +14350,9 @@ msgid "Timeout"
msgstr "Tempo limite"
#. js-lingui-id: 8TMaZI
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Timestamp"
msgstr "Carimbo de Data"
@@ -15256,9 +15196,9 @@ msgstr "Útil para tabelas pivô/de junção"
#. js-lingui-id: 7PzzBU
#: src/pages/settings/SettingsTwoFactorAuthenticationMethod.tsx
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
#: src/pages/settings/ai/SettingsAIPrompts.tsx
@@ -15441,9 +15381,7 @@ msgid "view"
msgstr "visualização"
#. js-lingui-id: jpctdh
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutDashboardWidgetTypeSelect.tsx
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
@@ -15611,11 +15549,6 @@ msgstr "Violeta"
msgid "Visibility"
msgstr "Visibilidade"
#. js-lingui-id: gkAApJ
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
msgid "Visibility Restriction"
msgstr ""
#. js-lingui-id: zYTdqe
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
+49 -116
View File
@@ -158,16 +158,6 @@ msgstr "{0, plural, one {Você não tem permissão para acessar o campo {fieldsL
msgid "{0} credits"
msgstr "{0} créditos"
#. js-lingui-id: peiknr
#. placeholder {0}: activeVisibleFieldLabels.length
#. placeholder {0}: activeFilterLabels.length
#. placeholder {0}: activeSortLabels.length
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
msgid "{0} shown"
msgstr ""
#. js-lingui-id: r4l/MK
#. placeholder {0}: formatUsageValue(totalCredits)
#: src/pages/settings/SettingsUsageUserDetail.tsx
@@ -1785,12 +1775,6 @@ msgstr "E"
msgid "Any {fieldLabel} field"
msgstr "Qualquer campo {fieldLabel}"
#. js-lingui-id: COyjuu
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
msgid "Any device"
msgstr ""
#. js-lingui-id: I8f+hC
#: src/modules/views/components/AnyFieldSearchChip.tsx
msgid "Any field"
@@ -1964,11 +1948,6 @@ msgstr "Detalhes da aplicação"
msgid "Application installed successfully."
msgstr "Aplicação instalada com sucesso."
#. js-lingui-id: LllWIc
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
msgid "Application Logs"
msgstr ""
#. js-lingui-id: +tE2x9
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
msgid "Application successfully uninstalled."
@@ -3356,6 +3335,11 @@ msgstr "Configure as definições CalDAV para sincronizar os seus eventos de cal
msgid "Configure date, time, number, timezone, and calendar start day"
msgstr "Configure a data, hora, número, fuso horário e dia de início do calendário"
#. js-lingui-id: +SQwHr
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Configure default AI models and availability"
msgstr "Configurar modelos de IA padrão e disponibilidade"
#. js-lingui-id: utsXG8
#: src/pages/settings/security/SettingsSecurity.tsx
msgid "Configure fallback login methods for users with SSO bypass permissions"
@@ -3401,11 +3385,6 @@ msgstr "Configure este widget para exibir campos"
msgid "Configure when this function should be executed"
msgstr "Configure quando esta função deve ser executada"
#. js-lingui-id: hzDiM0
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Configure your default AI model"
msgstr ""
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@@ -3534,7 +3513,7 @@ msgstr "Conteúdo"
#. js-lingui-id: M73whl
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Context"
@@ -3732,16 +3711,21 @@ msgstr "Objetos principais"
msgid "Cost"
msgstr "Custo"
#. js-lingui-id: Iw/ard
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Cost / 1M"
msgstr "Custo / 1M"
#. js-lingui-id: 3kzLg2
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
msgid "Cost / 1M tokens"
msgstr "Custo / 1M tokens"
#. js-lingui-id: iX2opZ
#: src/modules/settings/billing/components/SettingsBillingCreditsSection.tsx
msgid "Cost per 1k Extra Credits"
msgstr "Custo por 1k Créditos Extras"
#. js-lingui-id: Z9Z9PX
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
msgid "Cost per 1M tokens"
msgstr ""
#. js-lingui-id: 3X5ngu
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
msgid "Cost per million tokens (USD)"
@@ -4279,6 +4263,7 @@ msgstr "Painel duplicado com sucesso"
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Data"
msgstr "Data"
@@ -4331,7 +4316,7 @@ msgid "Data on display"
msgstr "Dados em exibição"
#. js-lingui-id: Ix/CMz
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Data residency"
msgstr "Residência de dados"
@@ -4494,7 +4479,6 @@ msgid "default"
msgstr ""
#. js-lingui-id: ovBPCi
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
msgid "Default"
@@ -4833,11 +4817,6 @@ msgstr "Registo eliminado"
msgid "Deleting this method will remove it permanently from your account."
msgstr "Excluir este método o removerá permanentemente da sua conta."
#. js-lingui-id: Ssdrw4
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
msgid "Deprecated"
msgstr ""
#. js-lingui-id: O3LJh6
#: src/modules/side-panel/pages/page-layout/utils/getSortLabelSuffixForFieldType.ts
#: src/modules/side-panel/pages/page-layout/utils/getSortLabelSuffixForFieldType.ts
@@ -4873,12 +4852,6 @@ msgstr "Descreva o que você quer que a AI faça..."
msgid "Description"
msgstr "Descrição"
#. js-lingui-id: BBqGS9
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
msgid "Desktop"
msgstr ""
#. js-lingui-id: +ow7t4
#: src/modules/settings/roles/role-permissions/object-level-permissions/utils/objectPermissionKeyToHumanReadableText.ts
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
@@ -4901,7 +4874,7 @@ msgid "Detach"
msgstr "Desassociar"
#. js-lingui-id: URmyfc
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Details"
msgstr "Detalhes"
@@ -5336,8 +5309,6 @@ msgstr ""
#. js-lingui-id: uBAxNB
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/FieldWidgetLayoutDropdownContent.tsx
msgid "Editor"
msgstr "Editor"
@@ -6093,8 +6064,8 @@ msgid "Evaluations"
msgstr ""
#. js-lingui-id: 0pC/y6
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/modules/activities/calendar/components/CalendarEventDetails.tsx
msgid "Event"
msgstr "Evento"
@@ -6213,11 +6184,6 @@ msgstr "Excluir emails não profissionais"
msgid "Exclude the following people and domains from my email sync. Internal conversations will not be imported"
msgstr "Excluir as seguintes pessoas e domínios da minha sincronização de e-mail. Conversas internas não serão importadas"
#. js-lingui-id: B0clc7
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Execution ID"
msgstr ""
#. js-lingui-id: YzI8cc
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsSelect.tsx
msgid "Existing Field"
@@ -6547,8 +6513,6 @@ msgstr "Falha ao atualizar o modelo"
#. js-lingui-id: W7Ff/4
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Failed to update model availability"
msgstr "Falha ao atualizar a disponibilidade do modelo"
@@ -6558,11 +6522,6 @@ msgstr "Falha ao atualizar a disponibilidade do modelo"
msgid "Failed to update model recommendation"
msgstr "Falha ao atualizar a recomendação de modelo"
#. js-lingui-id: q1MtjM
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
msgid "Failed to update model recommendations"
msgstr ""
#. js-lingui-id: rCUG3c
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Failed to update model selection mode"
@@ -7053,11 +7012,6 @@ msgstr "Componentes de front-end"
msgid "Full access"
msgstr "Acesso total"
#. js-lingui-id: YMZBxa
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Function"
msgstr ""
#. js-lingui-id: AHOl4W
#: src/modules/settings/logic-functions/components/SettingsLogicFunctionLabelContainer.tsx
msgid "Function name"
@@ -8408,7 +8362,6 @@ msgstr "Iniciar manualmente"
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldsSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Layout"
@@ -8482,11 +8435,6 @@ msgstr ""
msgid "Less than or equal"
msgstr "Menor que ou igual"
#. js-lingui-id: oCHfGC
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Level"
msgstr ""
#. js-lingui-id: 3qg5Ro
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
@@ -8921,7 +8869,7 @@ msgstr "Capacidade máxima de importação: {formatSpreadsheetMaxRecordImportCap
#. js-lingui-id: S8w4XA
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Max output"
msgstr "Saída máxima"
@@ -9031,11 +8979,6 @@ msgstr "Mesclar registros"
msgid "Merging..."
msgstr "A fundir..."
#. js-lingui-id: xDAtGP
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Message"
msgstr ""
#. js-lingui-id: U15XwX
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Message not found"
@@ -9133,12 +9076,6 @@ msgstr "Falta permissão para criar rascunhos de e-mail."
msgid "Mission accomplished!"
msgstr "Missão cumprida!"
#. js-lingui-id: dMsM20
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
msgid "Mobile"
msgstr ""
#. js-lingui-id: scu3wk
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPromptTab.tsx
msgid "Model"
@@ -9168,6 +9105,7 @@ msgstr "O ID do modelo é obrigatório"
#. js-lingui-id: //nm2/
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Models"
msgstr "Modelos"
@@ -9392,12 +9330,12 @@ msgstr "mySkill"
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
#: src/modules/settings/data-model/new-object/components/SettingsAvailableStandardObjectsSection.tsx
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/config-variables/components/SettingsAdminConfigVariablesTable.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Name"
msgstr "Nome"
@@ -10062,12 +10000,6 @@ msgstr "Nenhuma permissão configurada para esta aplicação."
msgid "No permissions have been set for individual objects."
msgstr "Nenhuma permissão foi definida para objetos individuais."
#. js-lingui-id: V/+aTW
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordFieldChip.tsx
msgid "No record"
msgstr ""
#. js-lingui-id: ePgApM
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerManual.tsx
msgid "No record is required to trigger this workflow"
@@ -10079,6 +10011,11 @@ msgstr "Nenhum registro é necessário para acionar este fluxo de trabalho"
msgid "No record selected"
msgstr ""
#. js-lingui-id: X8wJTR
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
msgid "No records"
msgstr "Sem registros"
#. js-lingui-id: EqGTpW
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateReadOnly.tsx
#: src/modules/object-record/record-picker/components/RecordPickerNoRecordFoundMenuItem.tsx
@@ -10392,7 +10329,7 @@ msgid "Object Events"
msgstr "Eventos de objeto"
#. js-lingui-id: 79D4Az
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
msgid "Object ID"
msgstr "ID do objeto"
@@ -11346,8 +11283,8 @@ msgid "Prompt"
msgstr ""
#. js-lingui-id: l/UFPv
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
msgid "Properties"
msgstr "Propriedades"
@@ -11370,8 +11307,8 @@ msgstr "Forneça os detalhes do seu provedor OIDC"
#. js-lingui-id: aemBRq
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Provider"
msgstr "Provedor"
@@ -11597,7 +11534,7 @@ msgid "Record filter rule options"
msgstr "Opções de regra de filtro de registo"
#. js-lingui-id: xSAYIn
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
msgid "Record ID"
msgstr "ID do registo"
@@ -11625,6 +11562,12 @@ msgstr "Página de Registro"
msgid "Record Selection"
msgstr "Seleção de registos"
#. js-lingui-id: J9Cfll
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutDashboardWidgetTypeSelect.tsx
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
msgid "Record Table"
msgstr "Tabela de Registos"
#. js-lingui-id: NxW0+c
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
msgid "Record Table Settings"
@@ -11993,7 +11936,7 @@ msgid "Reset variable"
msgstr "Redefinir variável"
#. js-lingui-id: esl+Tv
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
msgid "Resource Type"
msgstr "Tipo de Recurso"
@@ -13009,7 +12952,6 @@ msgstr "Configurando seu banco de dados..."
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsSection.tsx
#: src/modules/settings/roles/role/components/SettingsRole.tsx
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
@@ -13866,7 +13808,6 @@ msgstr "Definições da Aba"
#. js-lingui-id: 4hJhzz
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
msgid "Table"
@@ -14409,10 +14350,9 @@ msgid "Timeout"
msgstr "Tempo limite"
#. js-lingui-id: 8TMaZI
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Timestamp"
msgstr "Registro de Tempo"
@@ -15256,9 +15196,9 @@ msgstr "Útil para tabelas de pivô/junção"
#. js-lingui-id: 7PzzBU
#: src/pages/settings/SettingsTwoFactorAuthenticationMethod.tsx
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
#: src/pages/settings/ai/SettingsAIPrompts.tsx
@@ -15441,9 +15381,7 @@ msgid "view"
msgstr "vista"
#. js-lingui-id: jpctdh
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutDashboardWidgetTypeSelect.tsx
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
@@ -15611,11 +15549,6 @@ msgstr "Violeta"
msgid "Visibility"
msgstr "Visibilidade"
#. js-lingui-id: gkAApJ
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
msgid "Visibility Restriction"
msgstr ""
#. js-lingui-id: zYTdqe
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
+49 -116
View File
@@ -158,16 +158,6 @@ msgstr "{0, plural, one {Nu aveți permisiunea de a accesa câmpul {fieldsList}}
msgid "{0} credits"
msgstr "{0} credite"
#. js-lingui-id: peiknr
#. placeholder {0}: activeVisibleFieldLabels.length
#. placeholder {0}: activeFilterLabels.length
#. placeholder {0}: activeSortLabels.length
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
msgid "{0} shown"
msgstr ""
#. js-lingui-id: r4l/MK
#. placeholder {0}: formatUsageValue(totalCredits)
#: src/pages/settings/SettingsUsageUserDetail.tsx
@@ -1785,12 +1775,6 @@ msgstr "Și"
msgid "Any {fieldLabel} field"
msgstr "Orice câmp {fieldLabel}"
#. js-lingui-id: COyjuu
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
msgid "Any device"
msgstr ""
#. js-lingui-id: I8f+hC
#: src/modules/views/components/AnyFieldSearchChip.tsx
msgid "Any field"
@@ -1964,11 +1948,6 @@ msgstr "Detalii aplicație"
msgid "Application installed successfully."
msgstr "Aplicația a fost instalată cu succes."
#. js-lingui-id: LllWIc
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
msgid "Application Logs"
msgstr ""
#. js-lingui-id: +tE2x9
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
msgid "Application successfully uninstalled."
@@ -3356,6 +3335,11 @@ msgstr "Configurați setările CalDAV pentru a sincroniza evenimentele calendaru
msgid "Configure date, time, number, timezone, and calendar start day"
msgstr "Configurați data, ora, numărul, fusul orar și ziua de început a calendarului"
#. js-lingui-id: +SQwHr
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Configure default AI models and availability"
msgstr "Configurează modelele AI implicite și disponibilitatea"
#. js-lingui-id: utsXG8
#: src/pages/settings/security/SettingsSecurity.tsx
msgid "Configure fallback login methods for users with SSO bypass permissions"
@@ -3401,11 +3385,6 @@ msgstr "Configurați acest widget pentru a afișa câmpuri"
msgid "Configure when this function should be executed"
msgstr "Configurați când trebuie executată această funcție"
#. js-lingui-id: hzDiM0
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Configure your default AI model"
msgstr ""
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@@ -3534,7 +3513,7 @@ msgstr "Conținut"
#. js-lingui-id: M73whl
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Context"
@@ -3732,16 +3711,21 @@ msgstr "Obiecte de bază"
msgid "Cost"
msgstr "Cost"
#. js-lingui-id: Iw/ard
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Cost / 1M"
msgstr "Cost / 1M"
#. js-lingui-id: 3kzLg2
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
msgid "Cost / 1M tokens"
msgstr "Cost / 1M jetoane"
#. js-lingui-id: iX2opZ
#: src/modules/settings/billing/components/SettingsBillingCreditsSection.tsx
msgid "Cost per 1k Extra Credits"
msgstr "Cost per 1k credite suplimentare"
#. js-lingui-id: Z9Z9PX
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
msgid "Cost per 1M tokens"
msgstr ""
#. js-lingui-id: 3X5ngu
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
msgid "Cost per million tokens (USD)"
@@ -4279,6 +4263,7 @@ msgstr "Tabloul de bord a fost duplicat cu succes"
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Data"
msgstr "Date"
@@ -4331,7 +4316,7 @@ msgid "Data on display"
msgstr "Date afișate"
#. js-lingui-id: Ix/CMz
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Data residency"
msgstr "Rezidența datelor"
@@ -4494,7 +4479,6 @@ msgid "default"
msgstr ""
#. js-lingui-id: ovBPCi
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
msgid "Default"
@@ -4833,11 +4817,6 @@ msgstr "Înregistrare ștearsă"
msgid "Deleting this method will remove it permanently from your account."
msgstr "Ștergerea acestei metode o va elimina permanent din contul tău."
#. js-lingui-id: Ssdrw4
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
msgid "Deprecated"
msgstr ""
#. js-lingui-id: O3LJh6
#: src/modules/side-panel/pages/page-layout/utils/getSortLabelSuffixForFieldType.ts
#: src/modules/side-panel/pages/page-layout/utils/getSortLabelSuffixForFieldType.ts
@@ -4873,12 +4852,6 @@ msgstr "Descrie ce dorești ca AI să facă..."
msgid "Description"
msgstr "Descriere"
#. js-lingui-id: BBqGS9
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
msgid "Desktop"
msgstr ""
#. js-lingui-id: +ow7t4
#: src/modules/settings/roles/role-permissions/object-level-permissions/utils/objectPermissionKeyToHumanReadableText.ts
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
@@ -4901,7 +4874,7 @@ msgid "Detach"
msgstr "Detașează"
#. js-lingui-id: URmyfc
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Details"
msgstr "Detalii"
@@ -5336,8 +5309,6 @@ msgstr ""
#. js-lingui-id: uBAxNB
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/FieldWidgetLayoutDropdownContent.tsx
msgid "Editor"
msgstr "Editor"
@@ -6093,8 +6064,8 @@ msgid "Evaluations"
msgstr ""
#. js-lingui-id: 0pC/y6
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/modules/activities/calendar/components/CalendarEventDetails.tsx
msgid "Event"
msgstr "Eveniment"
@@ -6213,11 +6184,6 @@ msgstr "Excludeți emailurile neprofesionale"
msgid "Exclude the following people and domains from my email sync. Internal conversations will not be imported"
msgstr "Exclude următoarele persoane și domenii din sincronizarea mea de email. Conversațiile interne nu vor fi importate"
#. js-lingui-id: B0clc7
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Execution ID"
msgstr ""
#. js-lingui-id: YzI8cc
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsSelect.tsx
msgid "Existing Field"
@@ -6547,8 +6513,6 @@ msgstr "Eroare la actualizarea modelului"
#. js-lingui-id: W7Ff/4
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Failed to update model availability"
msgstr "Eroare la actualizarea disponibilității modelului"
@@ -6558,11 +6522,6 @@ msgstr "Eroare la actualizarea disponibilității modelului"
msgid "Failed to update model recommendation"
msgstr "Eroare la actualizarea recomandării de model"
#. js-lingui-id: q1MtjM
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
msgid "Failed to update model recommendations"
msgstr ""
#. js-lingui-id: rCUG3c
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Failed to update model selection mode"
@@ -7053,11 +7012,6 @@ msgstr "Componente Front"
msgid "Full access"
msgstr "Acces complet"
#. js-lingui-id: YMZBxa
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Function"
msgstr ""
#. js-lingui-id: AHOl4W
#: src/modules/settings/logic-functions/components/SettingsLogicFunctionLabelContainer.tsx
msgid "Function name"
@@ -8408,7 +8362,6 @@ msgstr "Lansează manual"
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldsSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Layout"
@@ -8482,11 +8435,6 @@ msgstr ""
msgid "Less than or equal"
msgstr "Mai mic sau egal"
#. js-lingui-id: oCHfGC
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Level"
msgstr ""
#. js-lingui-id: 3qg5Ro
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
@@ -8921,7 +8869,7 @@ msgstr "Capacitatea maximă de import: {formatSpreadsheetMaxRecordImportCapacity
#. js-lingui-id: S8w4XA
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Max output"
msgstr "Ieșire maximă"
@@ -9031,11 +8979,6 @@ msgstr "Îmbină înregistrările"
msgid "Merging..."
msgstr "Se îmbină..."
#. js-lingui-id: xDAtGP
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Message"
msgstr ""
#. js-lingui-id: U15XwX
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Message not found"
@@ -9133,12 +9076,6 @@ msgstr "Lipsește permisiunea de a redacta e-mailuri."
msgid "Mission accomplished!"
msgstr "Misiune îndeplinită!"
#. js-lingui-id: dMsM20
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
msgid "Mobile"
msgstr ""
#. js-lingui-id: scu3wk
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPromptTab.tsx
msgid "Model"
@@ -9168,6 +9105,7 @@ msgstr "ID-ul modelului este necesar"
#. js-lingui-id: //nm2/
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Models"
msgstr "Modele"
@@ -9392,12 +9330,12 @@ msgstr "mySkill"
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
#: src/modules/settings/data-model/new-object/components/SettingsAvailableStandardObjectsSection.tsx
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/config-variables/components/SettingsAdminConfigVariablesTable.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Name"
msgstr "Nume"
@@ -10062,12 +10000,6 @@ msgstr "Nu există permisiuni configurate pentru această aplicație."
msgid "No permissions have been set for individual objects."
msgstr "Nu s-au setat permisiuni pentru obiectele individuale."
#. js-lingui-id: V/+aTW
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordFieldChip.tsx
msgid "No record"
msgstr ""
#. js-lingui-id: ePgApM
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerManual.tsx
msgid "No record is required to trigger this workflow"
@@ -10079,6 +10011,11 @@ msgstr "Nu este necesară nicio înregistrare pentru a declanșa acest flux de l
msgid "No record selected"
msgstr ""
#. js-lingui-id: X8wJTR
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
msgid "No records"
msgstr "Nicio înregistrare"
#. js-lingui-id: EqGTpW
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateReadOnly.tsx
#: src/modules/object-record/record-picker/components/RecordPickerNoRecordFoundMenuItem.tsx
@@ -10392,7 +10329,7 @@ msgid "Object Events"
msgstr "Evenimente obiect"
#. js-lingui-id: 79D4Az
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
msgid "Object ID"
msgstr "ID-ul obiectului"
@@ -11346,8 +11283,8 @@ msgid "Prompt"
msgstr ""
#. js-lingui-id: l/UFPv
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
msgid "Properties"
msgstr "Proprietăți"
@@ -11370,8 +11307,8 @@ msgstr "Furnizați detaliile furnizorului OIDC"
#. js-lingui-id: aemBRq
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Provider"
msgstr "Furnizor"
@@ -11597,7 +11534,7 @@ msgid "Record filter rule options"
msgstr "Opțiuni pentru regulile de filtrare a înregistrărilor"
#. js-lingui-id: xSAYIn
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
msgid "Record ID"
msgstr "ID-ul înregistrării"
@@ -11625,6 +11562,12 @@ msgstr "Pagina de înregistrare"
msgid "Record Selection"
msgstr "Selecția înregistrărilor"
#. js-lingui-id: J9Cfll
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutDashboardWidgetTypeSelect.tsx
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
msgid "Record Table"
msgstr "Tabel de înregistrări"
#. js-lingui-id: NxW0+c
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
msgid "Record Table Settings"
@@ -11993,7 +11936,7 @@ msgid "Reset variable"
msgstr "Resetați variabila"
#. js-lingui-id: esl+Tv
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
msgid "Resource Type"
msgstr "Tip de resursă"
@@ -13009,7 +12952,6 @@ msgstr "Configurarea bazei tale de date..."
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsSection.tsx
#: src/modules/settings/roles/role/components/SettingsRole.tsx
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
@@ -13866,7 +13808,6 @@ msgstr "Setări Tab"
#. js-lingui-id: 4hJhzz
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
msgid "Table"
@@ -14409,10 +14350,9 @@ msgid "Timeout"
msgstr "Timp de expirare"
#. js-lingui-id: 8TMaZI
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Timestamp"
msgstr "Marcaj temporal"
@@ -15256,9 +15196,9 @@ msgstr "Util pentru tabele pivot/de legătură"
#. js-lingui-id: 7PzzBU
#: src/pages/settings/SettingsTwoFactorAuthenticationMethod.tsx
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
#: src/pages/settings/ai/SettingsAIPrompts.tsx
@@ -15441,9 +15381,7 @@ msgid "view"
msgstr "vizualizare"
#. js-lingui-id: jpctdh
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutDashboardWidgetTypeSelect.tsx
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
@@ -15611,11 +15549,6 @@ msgstr "Violet"
msgid "Visibility"
msgstr "Vizibilitate"
#. js-lingui-id: gkAApJ
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
msgid "Visibility Restriction"
msgstr ""
#. js-lingui-id: zYTdqe
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
Binary file not shown.
+49 -116
View File
@@ -158,16 +158,6 @@ msgstr "{0, plural, one {Немате дозволу за приступ пољ
msgid "{0} credits"
msgstr "{0} кредита"
#. js-lingui-id: peiknr
#. placeholder {0}: activeVisibleFieldLabels.length
#. placeholder {0}: activeFilterLabels.length
#. placeholder {0}: activeSortLabels.length
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
msgid "{0} shown"
msgstr ""
#. js-lingui-id: r4l/MK
#. placeholder {0}: formatUsageValue(totalCredits)
#: src/pages/settings/SettingsUsageUserDetail.tsx
@@ -1785,12 +1775,6 @@ msgstr "И"
msgid "Any {fieldLabel} field"
msgstr "Било које поље {fieldLabel}"
#. js-lingui-id: COyjuu
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
msgid "Any device"
msgstr ""
#. js-lingui-id: I8f+hC
#: src/modules/views/components/AnyFieldSearchChip.tsx
msgid "Any field"
@@ -1964,11 +1948,6 @@ msgstr "Детаљи апликације"
msgid "Application installed successfully."
msgstr "Апликација је успешно инсталирана."
#. js-lingui-id: LllWIc
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
msgid "Application Logs"
msgstr ""
#. js-lingui-id: +tE2x9
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
msgid "Application successfully uninstalled."
@@ -3356,6 +3335,11 @@ msgstr "Конфигуришите CalDAV подешавања за синхро
msgid "Configure date, time, number, timezone, and calendar start day"
msgstr "Конфигуриши датум, време, број, временска зона и почетак календара"
#. js-lingui-id: +SQwHr
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Configure default AI models and availability"
msgstr "Подесите подразумеване AI моделе и доступност"
#. js-lingui-id: utsXG8
#: src/pages/settings/security/SettingsSecurity.tsx
msgid "Configure fallback login methods for users with SSO bypass permissions"
@@ -3401,11 +3385,6 @@ msgstr "Подесите овај виџет за приказ поља"
msgid "Configure when this function should be executed"
msgstr "Конфигуришите када ова функција треба да се изврши"
#. js-lingui-id: hzDiM0
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Configure your default AI model"
msgstr ""
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@@ -3534,7 +3513,7 @@ msgstr "Садржај"
#. js-lingui-id: M73whl
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Context"
@@ -3732,16 +3711,21 @@ msgstr "Основни објекти"
msgid "Cost"
msgstr "Цена"
#. js-lingui-id: Iw/ard
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Cost / 1M"
msgstr "Цена / 1M"
#. js-lingui-id: 3kzLg2
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
msgid "Cost / 1M tokens"
msgstr "Цена / 1M токена"
#. js-lingui-id: iX2opZ
#: src/modules/settings/billing/components/SettingsBillingCreditsSection.tsx
msgid "Cost per 1k Extra Credits"
msgstr "Цена по 1к додатних кредита"
#. js-lingui-id: Z9Z9PX
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
msgid "Cost per 1M tokens"
msgstr ""
#. js-lingui-id: 3X5ngu
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
msgid "Cost per million tokens (USD)"
@@ -4279,6 +4263,7 @@ msgstr "Контролна табла је успешно дуплирана"
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Data"
msgstr "Подаци"
@@ -4331,7 +4316,7 @@ msgid "Data on display"
msgstr "Приказ података"
#. js-lingui-id: Ix/CMz
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Data residency"
msgstr "Резиденција података"
@@ -4494,7 +4479,6 @@ msgid "default"
msgstr ""
#. js-lingui-id: ovBPCi
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
msgid "Default"
@@ -4833,11 +4817,6 @@ msgstr "Избрисан запис"
msgid "Deleting this method will remove it permanently from your account."
msgstr "Брисањем овог метода трајно ћете га уклонити са вашег налога."
#. js-lingui-id: Ssdrw4
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
msgid "Deprecated"
msgstr ""
#. js-lingui-id: O3LJh6
#: src/modules/side-panel/pages/page-layout/utils/getSortLabelSuffixForFieldType.ts
#: src/modules/side-panel/pages/page-layout/utils/getSortLabelSuffixForFieldType.ts
@@ -4873,12 +4852,6 @@ msgstr "Опишите шта желите да AI уради..."
msgid "Description"
msgstr "Опис"
#. js-lingui-id: BBqGS9
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
msgid "Desktop"
msgstr ""
#. js-lingui-id: +ow7t4
#: src/modules/settings/roles/role-permissions/object-level-permissions/utils/objectPermissionKeyToHumanReadableText.ts
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
@@ -4901,7 +4874,7 @@ msgid "Detach"
msgstr "Отпоји"
#. js-lingui-id: URmyfc
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Details"
msgstr "Детаљи"
@@ -5336,8 +5309,6 @@ msgstr ""
#. js-lingui-id: uBAxNB
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/FieldWidgetLayoutDropdownContent.tsx
msgid "Editor"
msgstr "Уређивач"
@@ -6093,8 +6064,8 @@ msgid "Evaluations"
msgstr ""
#. js-lingui-id: 0pC/y6
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/modules/activities/calendar/components/CalendarEventDetails.tsx
msgid "Event"
msgstr "Догађај"
@@ -6213,11 +6184,6 @@ msgstr "Изузми непрофесионалне имејлове"
msgid "Exclude the following people and domains from my email sync. Internal conversations will not be imported"
msgstr "Искључи следеће особе и домене из моје синхронизације е-поште. Интерни разговори неће бити увезени"
#. js-lingui-id: B0clc7
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Execution ID"
msgstr ""
#. js-lingui-id: YzI8cc
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsSelect.tsx
msgid "Existing Field"
@@ -6547,8 +6513,6 @@ msgstr "Није успело ажурирање модела"
#. js-lingui-id: W7Ff/4
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Failed to update model availability"
msgstr "Није успело ажурирање доступности модела"
@@ -6558,11 +6522,6 @@ msgstr "Није успело ажурирање доступности моде
msgid "Failed to update model recommendation"
msgstr "Није успело ажурирање препоруке модела"
#. js-lingui-id: q1MtjM
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
msgid "Failed to update model recommendations"
msgstr ""
#. js-lingui-id: rCUG3c
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Failed to update model selection mode"
@@ -7053,11 +7012,6 @@ msgstr "Фронтенд компоненте"
msgid "Full access"
msgstr "Потпун приступ"
#. js-lingui-id: YMZBxa
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Function"
msgstr ""
#. js-lingui-id: AHOl4W
#: src/modules/settings/logic-functions/components/SettingsLogicFunctionLabelContainer.tsx
msgid "Function name"
@@ -8408,7 +8362,6 @@ msgstr "Покрени ручно"
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldsSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Layout"
@@ -8482,11 +8435,6 @@ msgstr ""
msgid "Less than or equal"
msgstr "Мање или једнако"
#. js-lingui-id: oCHfGC
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Level"
msgstr ""
#. js-lingui-id: 3qg5Ro
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
@@ -8921,7 +8869,7 @@ msgstr "Максимални капацитет увоза: {formatSpreadsheetMa
#. js-lingui-id: S8w4XA
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Max output"
msgstr "Максимални излаз"
@@ -9031,11 +8979,6 @@ msgstr "Споји записе"
msgid "Merging..."
msgstr "Спајање..."
#. js-lingui-id: xDAtGP
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Message"
msgstr ""
#. js-lingui-id: U15XwX
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Message not found"
@@ -9133,12 +9076,6 @@ msgstr "Недостаје дозвола за креирање нацрта и
msgid "Mission accomplished!"
msgstr "Мисија завршена!"
#. js-lingui-id: dMsM20
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
msgid "Mobile"
msgstr ""
#. js-lingui-id: scu3wk
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPromptTab.tsx
msgid "Model"
@@ -9168,6 +9105,7 @@ msgstr "ID модела је обавезан"
#. js-lingui-id: //nm2/
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Models"
msgstr "Модели"
@@ -9392,12 +9330,12 @@ msgstr "mySkill"
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
#: src/modules/settings/data-model/new-object/components/SettingsAvailableStandardObjectsSection.tsx
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/config-variables/components/SettingsAdminConfigVariablesTable.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Name"
msgstr "Име"
@@ -10062,12 +10000,6 @@ msgstr "Нема конфигурисаних дозвола за ову апл
msgid "No permissions have been set for individual objects."
msgstr "Нема постављених дозвола за појединачне објекте."
#. js-lingui-id: V/+aTW
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordFieldChip.tsx
msgid "No record"
msgstr ""
#. js-lingui-id: ePgApM
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerManual.tsx
msgid "No record is required to trigger this workflow"
@@ -10079,6 +10011,11 @@ msgstr "Запис није потребан за покретање овог р
msgid "No record selected"
msgstr ""
#. js-lingui-id: X8wJTR
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
msgid "No records"
msgstr "Нема записа"
#. js-lingui-id: EqGTpW
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateReadOnly.tsx
#: src/modules/object-record/record-picker/components/RecordPickerNoRecordFoundMenuItem.tsx
@@ -10392,7 +10329,7 @@ msgid "Object Events"
msgstr "Догађаји објекта"
#. js-lingui-id: 79D4Az
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
msgid "Object ID"
msgstr "Идентификатор објекта"
@@ -11346,8 +11283,8 @@ msgid "Prompt"
msgstr ""
#. js-lingui-id: l/UFPv
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
msgid "Properties"
msgstr "Својства"
@@ -11370,8 +11307,8 @@ msgstr "Пружите детаље о вашем OIDC провајдеру"
#. js-lingui-id: aemBRq
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Provider"
msgstr "Провајдер"
@@ -11597,7 +11534,7 @@ msgid "Record filter rule options"
msgstr "Опције правила филтера записа"
#. js-lingui-id: xSAYIn
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
msgid "Record ID"
msgstr "Идентификатор записа"
@@ -11625,6 +11562,12 @@ msgstr "Страница са записима"
msgid "Record Selection"
msgstr "Избор записа"
#. js-lingui-id: J9Cfll
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutDashboardWidgetTypeSelect.tsx
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
msgid "Record Table"
msgstr "Табела записа"
#. js-lingui-id: NxW0+c
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
msgid "Record Table Settings"
@@ -11993,7 +11936,7 @@ msgid "Reset variable"
msgstr "Ресетуј променљиву"
#. js-lingui-id: esl+Tv
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
msgid "Resource Type"
msgstr "Тип ресурса"
@@ -13009,7 +12952,6 @@ msgstr "Подешавање ваше базе података..."
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsSection.tsx
#: src/modules/settings/roles/role/components/SettingsRole.tsx
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
@@ -13866,7 +13808,6 @@ msgstr "Подешавања таба"
#. js-lingui-id: 4hJhzz
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
msgid "Table"
@@ -14409,10 +14350,9 @@ msgid "Timeout"
msgstr "Истек времена"
#. js-lingui-id: 8TMaZI
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Timestamp"
msgstr "Временска ознака"
@@ -15256,9 +15196,9 @@ msgstr "Корисно за спојне/везне табеле"
#. js-lingui-id: 7PzzBU
#: src/pages/settings/SettingsTwoFactorAuthenticationMethod.tsx
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
#: src/pages/settings/ai/SettingsAIPrompts.tsx
@@ -15441,9 +15381,7 @@ msgid "view"
msgstr "преглед"
#. js-lingui-id: jpctdh
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutDashboardWidgetTypeSelect.tsx
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
@@ -15611,11 +15549,6 @@ msgstr "Љубичаста"
msgid "Visibility"
msgstr "Видљивост"
#. js-lingui-id: gkAApJ
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
msgid "Visibility Restriction"
msgstr ""
#. js-lingui-id: zYTdqe
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
+49 -116
View File
@@ -158,16 +158,6 @@ msgstr "{0, plural, one {Du har inte behörighet att komma åt {fieldsList} fäl
msgid "{0} credits"
msgstr "{0} krediter"
#. js-lingui-id: peiknr
#. placeholder {0}: activeVisibleFieldLabels.length
#. placeholder {0}: activeFilterLabels.length
#. placeholder {0}: activeSortLabels.length
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
msgid "{0} shown"
msgstr ""
#. js-lingui-id: r4l/MK
#. placeholder {0}: formatUsageValue(totalCredits)
#: src/pages/settings/SettingsUsageUserDetail.tsx
@@ -1785,12 +1775,6 @@ msgstr "Och"
msgid "Any {fieldLabel} field"
msgstr "Vilket {fieldLabel}-fält som helst"
#. js-lingui-id: COyjuu
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
msgid "Any device"
msgstr ""
#. js-lingui-id: I8f+hC
#: src/modules/views/components/AnyFieldSearchChip.tsx
msgid "Any field"
@@ -1964,11 +1948,6 @@ msgstr "Applikationsdetaljer"
msgid "Application installed successfully."
msgstr "Applikationen installerades framgångsrikt."
#. js-lingui-id: LllWIc
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
msgid "Application Logs"
msgstr ""
#. js-lingui-id: +tE2x9
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
msgid "Application successfully uninstalled."
@@ -3356,6 +3335,11 @@ msgstr "Konfigurera CalDAV-inställningar för att synkronisera dina kalendereve
msgid "Configure date, time, number, timezone, and calendar start day"
msgstr "Konfigurera datum, tid, nummer, tidszon och kalendarens startdag"
#. js-lingui-id: +SQwHr
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Configure default AI models and availability"
msgstr ""
#. js-lingui-id: utsXG8
#: src/pages/settings/security/SettingsSecurity.tsx
msgid "Configure fallback login methods for users with SSO bypass permissions"
@@ -3401,11 +3385,6 @@ msgstr "Konfigurera den här widgeten för att visa fält"
msgid "Configure when this function should be executed"
msgstr "Konfigurera när denna funktion ska köras"
#. js-lingui-id: hzDiM0
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Configure your default AI model"
msgstr ""
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@@ -3534,7 +3513,7 @@ msgstr "Innehåll"
#. js-lingui-id: M73whl
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Context"
@@ -3732,16 +3711,21 @@ msgstr "Kärnobjekt"
msgid "Cost"
msgstr "Kostnad"
#. js-lingui-id: Iw/ard
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Cost / 1M"
msgstr "Kostnad / 1M"
#. js-lingui-id: 3kzLg2
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
msgid "Cost / 1M tokens"
msgstr "Kostnad / 1M tokens"
#. js-lingui-id: iX2opZ
#: src/modules/settings/billing/components/SettingsBillingCreditsSection.tsx
msgid "Cost per 1k Extra Credits"
msgstr "Kostnad per 1k extra krediter"
#. js-lingui-id: Z9Z9PX
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
msgid "Cost per 1M tokens"
msgstr ""
#. js-lingui-id: 3X5ngu
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
msgid "Cost per million tokens (USD)"
@@ -4279,6 +4263,7 @@ msgstr "Instrumentpanelen duplicerades framgångsrikt"
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Data"
msgstr "Data"
@@ -4331,7 +4316,7 @@ msgid "Data on display"
msgstr "Data som visas"
#. js-lingui-id: Ix/CMz
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Data residency"
msgstr "Datahemvist"
@@ -4494,7 +4479,6 @@ msgid "default"
msgstr ""
#. js-lingui-id: ovBPCi
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
msgid "Default"
@@ -4833,11 +4817,6 @@ msgstr "Raderad post"
msgid "Deleting this method will remove it permanently from your account."
msgstr "Genom att radera denna metod kommer den permanent att tas bort från ditt konto."
#. js-lingui-id: Ssdrw4
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
msgid "Deprecated"
msgstr ""
#. js-lingui-id: O3LJh6
#: src/modules/side-panel/pages/page-layout/utils/getSortLabelSuffixForFieldType.ts
#: src/modules/side-panel/pages/page-layout/utils/getSortLabelSuffixForFieldType.ts
@@ -4873,12 +4852,6 @@ msgstr "Beskriv vad du vill att AI:n ska göra..."
msgid "Description"
msgstr "Beskrivning"
#. js-lingui-id: BBqGS9
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
msgid "Desktop"
msgstr ""
#. js-lingui-id: +ow7t4
#: src/modules/settings/roles/role-permissions/object-level-permissions/utils/objectPermissionKeyToHumanReadableText.ts
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
@@ -4901,7 +4874,7 @@ msgid "Detach"
msgstr "Koppla från"
#. js-lingui-id: URmyfc
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Details"
msgstr "Detaljer"
@@ -5336,8 +5309,6 @@ msgstr ""
#. js-lingui-id: uBAxNB
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/FieldWidgetLayoutDropdownContent.tsx
msgid "Editor"
msgstr "Redigerare"
@@ -6093,8 +6064,8 @@ msgid "Evaluations"
msgstr ""
#. js-lingui-id: 0pC/y6
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/modules/activities/calendar/components/CalendarEventDetails.tsx
msgid "Event"
msgstr "Händelse"
@@ -6213,11 +6184,6 @@ msgstr "Exkludera icke-professionella e-postmeddelanden"
msgid "Exclude the following people and domains from my email sync. Internal conversations will not be imported"
msgstr "Uteslut följande personer och domäner från min e-postsynk. Interna konversationer kommer inte att importeras"
#. js-lingui-id: B0clc7
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Execution ID"
msgstr ""
#. js-lingui-id: YzI8cc
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsSelect.tsx
msgid "Existing Field"
@@ -6547,8 +6513,6 @@ msgstr ""
#. js-lingui-id: W7Ff/4
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Failed to update model availability"
msgstr ""
@@ -6558,11 +6522,6 @@ msgstr ""
msgid "Failed to update model recommendation"
msgstr "Det gick inte att uppdatera modellrekommendationen"
#. js-lingui-id: q1MtjM
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
msgid "Failed to update model recommendations"
msgstr ""
#. js-lingui-id: rCUG3c
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Failed to update model selection mode"
@@ -7053,11 +7012,6 @@ msgstr "Frontendkomponenter"
msgid "Full access"
msgstr "Full tillgång"
#. js-lingui-id: YMZBxa
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Function"
msgstr ""
#. js-lingui-id: AHOl4W
#: src/modules/settings/logic-functions/components/SettingsLogicFunctionLabelContainer.tsx
msgid "Function name"
@@ -8408,7 +8362,6 @@ msgstr "Starta manuellt"
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldsSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Layout"
@@ -8482,11 +8435,6 @@ msgstr ""
msgid "Less than or equal"
msgstr "Mindre än eller lika med"
#. js-lingui-id: oCHfGC
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Level"
msgstr ""
#. js-lingui-id: 3qg5Ro
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
@@ -8921,7 +8869,7 @@ msgstr "Maximal importkapacitet: {formatSpreadsheetMaxRecordImportCapacity} post
#. js-lingui-id: S8w4XA
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Max output"
msgstr "Max utdata"
@@ -9031,11 +8979,6 @@ msgstr "Sammanfoga poster"
msgid "Merging..."
msgstr "Slår samman..."
#. js-lingui-id: xDAtGP
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Message"
msgstr ""
#. js-lingui-id: U15XwX
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Message not found"
@@ -9133,12 +9076,6 @@ msgstr "Behörighet för e-postutkast saknas."
msgid "Mission accomplished!"
msgstr "Uppdrag slutfört!"
#. js-lingui-id: dMsM20
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
msgid "Mobile"
msgstr ""
#. js-lingui-id: scu3wk
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPromptTab.tsx
msgid "Model"
@@ -9168,6 +9105,7 @@ msgstr "Modell-ID krävs"
#. js-lingui-id: //nm2/
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Models"
msgstr "Modeller"
@@ -9394,12 +9332,12 @@ msgstr "mySkill"
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
#: src/modules/settings/data-model/new-object/components/SettingsAvailableStandardObjectsSection.tsx
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/config-variables/components/SettingsAdminConfigVariablesTable.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Name"
msgstr "Namn"
@@ -10064,12 +10002,6 @@ msgstr "Inga behörigheter har konfigurerats för den här appen."
msgid "No permissions have been set for individual objects."
msgstr "Inga behörigheter har satts för enskilda objekt."
#. js-lingui-id: V/+aTW
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordFieldChip.tsx
msgid "No record"
msgstr ""
#. js-lingui-id: ePgApM
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerManual.tsx
msgid "No record is required to trigger this workflow"
@@ -10081,6 +10013,11 @@ msgstr "Ingen post krävs för att utlösa detta arbetsflöde"
msgid "No record selected"
msgstr ""
#. js-lingui-id: X8wJTR
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
msgid "No records"
msgstr "Inga poster"
#. js-lingui-id: EqGTpW
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateReadOnly.tsx
#: src/modules/object-record/record-picker/components/RecordPickerNoRecordFoundMenuItem.tsx
@@ -10394,7 +10331,7 @@ msgid "Object Events"
msgstr "Objekthändelser"
#. js-lingui-id: 79D4Az
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
msgid "Object ID"
msgstr "Objekt-ID"
@@ -11348,8 +11285,8 @@ msgid "Prompt"
msgstr ""
#. js-lingui-id: l/UFPv
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
msgid "Properties"
msgstr "Egenskaper"
@@ -11372,8 +11309,8 @@ msgstr "Ange dina OIDC-leverantörsdetaljer"
#. js-lingui-id: aemBRq
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Provider"
msgstr "Leverantör"
@@ -11599,7 +11536,7 @@ msgid "Record filter rule options"
msgstr "Alternativ för postfilterregel"
#. js-lingui-id: xSAYIn
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
msgid "Record ID"
msgstr "Post-ID"
@@ -11627,6 +11564,12 @@ msgstr "Inspelningssida"
msgid "Record Selection"
msgstr "Välj post"
#. js-lingui-id: J9Cfll
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutDashboardWidgetTypeSelect.tsx
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
msgid "Record Table"
msgstr "Posttabell"
#. js-lingui-id: NxW0+c
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
msgid "Record Table Settings"
@@ -11995,7 +11938,7 @@ msgid "Reset variable"
msgstr "Återställ variabel"
#. js-lingui-id: esl+Tv
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
msgid "Resource Type"
msgstr "Resurstyp"
@@ -13013,7 +12956,6 @@ msgstr "Konfigurerar din databas..."
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsSection.tsx
#: src/modules/settings/roles/role/components/SettingsRole.tsx
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
@@ -13872,7 +13814,6 @@ msgstr "Flikinställningar"
#. js-lingui-id: 4hJhzz
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
msgid "Table"
@@ -14417,10 +14358,9 @@ msgid "Timeout"
msgstr "Tidsgräns"
#. js-lingui-id: 8TMaZI
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Timestamp"
msgstr "Tidsstämpel"
@@ -15264,9 +15204,9 @@ msgstr "Användbart för pivot-/kopplingstabeller"
#. js-lingui-id: 7PzzBU
#: src/pages/settings/SettingsTwoFactorAuthenticationMethod.tsx
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
#: src/pages/settings/ai/SettingsAIPrompts.tsx
@@ -15449,9 +15389,7 @@ msgid "view"
msgstr "vy"
#. js-lingui-id: jpctdh
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutDashboardWidgetTypeSelect.tsx
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
@@ -15619,11 +15557,6 @@ msgstr "Violett"
msgid "Visibility"
msgstr "Synlighet"
#. js-lingui-id: gkAApJ
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
msgid "Visibility Restriction"
msgstr ""
#. js-lingui-id: zYTdqe
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
+49 -116
View File
@@ -158,16 +158,6 @@ msgstr "{0, plural, one {{fieldsList} alanına erişim izniniz yok} other {{fiel
msgid "{0} credits"
msgstr "{0} kredi"
#. js-lingui-id: peiknr
#. placeholder {0}: activeVisibleFieldLabels.length
#. placeholder {0}: activeFilterLabels.length
#. placeholder {0}: activeSortLabels.length
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
msgid "{0} shown"
msgstr ""
#. js-lingui-id: r4l/MK
#. placeholder {0}: formatUsageValue(totalCredits)
#: src/pages/settings/SettingsUsageUserDetail.tsx
@@ -1785,12 +1775,6 @@ msgstr "Ve"
msgid "Any {fieldLabel} field"
msgstr "Herhangi bir {fieldLabel} alanı"
#. js-lingui-id: COyjuu
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
msgid "Any device"
msgstr ""
#. js-lingui-id: I8f+hC
#: src/modules/views/components/AnyFieldSearchChip.tsx
msgid "Any field"
@@ -1964,11 +1948,6 @@ msgstr "Uygulama detayları"
msgid "Application installed successfully."
msgstr "Uygulama başarıyla yüklendi."
#. js-lingui-id: LllWIc
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
msgid "Application Logs"
msgstr ""
#. js-lingui-id: +tE2x9
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
msgid "Application successfully uninstalled."
@@ -3356,6 +3335,11 @@ msgstr "CalDAV ayarlarını takvim etkinliklerinizi senkronize etmek için yapı
msgid "Configure date, time, number, timezone, and calendar start day"
msgstr "Tarih, saat, numara, saat dilimi ve takvim başlangıç gününü yapılandır"
#. js-lingui-id: +SQwHr
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Configure default AI models and availability"
msgstr "Varsayılan Yapay Zeka modellerini ve kullanılabilirliklerini yapılandır"
#. js-lingui-id: utsXG8
#: src/pages/settings/security/SettingsSecurity.tsx
msgid "Configure fallback login methods for users with SSO bypass permissions"
@@ -3401,11 +3385,6 @@ msgstr "Alanları görüntülemek için bu widget'ı yapılandırın."
msgid "Configure when this function should be executed"
msgstr "Bu fonksiyonun ne zaman çalıştırılacağını yapılandırın"
#. js-lingui-id: hzDiM0
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Configure your default AI model"
msgstr ""
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@@ -3534,7 +3513,7 @@ msgstr "İçerik"
#. js-lingui-id: M73whl
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Context"
@@ -3732,16 +3711,21 @@ msgstr "Temel Nesneler"
msgid "Cost"
msgstr "Maliyet"
#. js-lingui-id: Iw/ard
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Cost / 1M"
msgstr "Maliyet / 1M"
#. js-lingui-id: 3kzLg2
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
msgid "Cost / 1M tokens"
msgstr "Maliyet / 1M token"
#. js-lingui-id: iX2opZ
#: src/modules/settings/billing/components/SettingsBillingCreditsSection.tsx
msgid "Cost per 1k Extra Credits"
msgstr "1k Ekstra Kredi Başına Maliyet"
#. js-lingui-id: Z9Z9PX
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
msgid "Cost per 1M tokens"
msgstr ""
#. js-lingui-id: 3X5ngu
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
msgid "Cost per million tokens (USD)"
@@ -4279,6 +4263,7 @@ msgstr "Gösterge paneli başarıyla çoğaltıldı"
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Data"
msgstr "Veri"
@@ -4331,7 +4316,7 @@ msgid "Data on display"
msgstr "Görüntülenen veriler"
#. js-lingui-id: Ix/CMz
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Data residency"
msgstr "Veri yerleşimi"
@@ -4494,7 +4479,6 @@ msgid "default"
msgstr ""
#. js-lingui-id: ovBPCi
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
msgid "Default"
@@ -4833,11 +4817,6 @@ msgstr "Silinmiş kayıt"
msgid "Deleting this method will remove it permanently from your account."
msgstr "Bu yöntemi silmek, hesabınızdan kalıcı olarak kaldıracaktır."
#. js-lingui-id: Ssdrw4
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
msgid "Deprecated"
msgstr ""
#. js-lingui-id: O3LJh6
#: src/modules/side-panel/pages/page-layout/utils/getSortLabelSuffixForFieldType.ts
#: src/modules/side-panel/pages/page-layout/utils/getSortLabelSuffixForFieldType.ts
@@ -4873,12 +4852,6 @@ msgstr "AI'nın ne yapmasını istediğinizi tarif edin..."
msgid "Description"
msgstr "Açıklama"
#. js-lingui-id: BBqGS9
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
msgid "Desktop"
msgstr ""
#. js-lingui-id: +ow7t4
#: src/modules/settings/roles/role-permissions/object-level-permissions/utils/objectPermissionKeyToHumanReadableText.ts
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
@@ -4901,7 +4874,7 @@ msgid "Detach"
msgstr "Ayır"
#. js-lingui-id: URmyfc
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Details"
msgstr "Ayrıntılar"
@@ -5336,8 +5309,6 @@ msgstr ""
#. js-lingui-id: uBAxNB
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/FieldWidgetLayoutDropdownContent.tsx
msgid "Editor"
msgstr "Düzenleyici"
@@ -6093,8 +6064,8 @@ msgid "Evaluations"
msgstr ""
#. js-lingui-id: 0pC/y6
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/modules/activities/calendar/components/CalendarEventDetails.tsx
msgid "Event"
msgstr "Etkinlik"
@@ -6213,11 +6184,6 @@ msgstr "Profesyonel olmayan e-postaları hariç tut"
msgid "Exclude the following people and domains from my email sync. Internal conversations will not be imported"
msgstr "E-posta senkronizasyonumdan aşağıdaki kişileri ve alan adlarını hariç tut. Dahili konuşmalar aktarılmayacak"
#. js-lingui-id: B0clc7
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Execution ID"
msgstr ""
#. js-lingui-id: YzI8cc
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsSelect.tsx
msgid "Existing Field"
@@ -6547,8 +6513,6 @@ msgstr "Model güncellenemedi"
#. js-lingui-id: W7Ff/4
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Failed to update model availability"
msgstr "Model kullanılabilirliği güncellenemedi"
@@ -6558,11 +6522,6 @@ msgstr "Model kullanılabilirliği güncellenemedi"
msgid "Failed to update model recommendation"
msgstr "Model önerisi güncellenemedi"
#. js-lingui-id: q1MtjM
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
msgid "Failed to update model recommendations"
msgstr ""
#. js-lingui-id: rCUG3c
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Failed to update model selection mode"
@@ -7053,11 +7012,6 @@ msgstr "Ön uç bileşenleri"
msgid "Full access"
msgstr "Tam erişim"
#. js-lingui-id: YMZBxa
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Function"
msgstr ""
#. js-lingui-id: AHOl4W
#: src/modules/settings/logic-functions/components/SettingsLogicFunctionLabelContainer.tsx
msgid "Function name"
@@ -8408,7 +8362,6 @@ msgstr "Manuel olarak başlat"
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldsSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Layout"
@@ -8482,11 +8435,6 @@ msgstr ""
msgid "Less than or equal"
msgstr "Küçük veya eşit"
#. js-lingui-id: oCHfGC
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Level"
msgstr ""
#. js-lingui-id: 3qg5Ro
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
@@ -8921,7 +8869,7 @@ msgstr "Maksimum içe aktarma kapasitesi: {formatSpreadsheetMaxRecordImportCapac
#. js-lingui-id: S8w4XA
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Max output"
msgstr "Maksimum çıktı"
@@ -9031,11 +8979,6 @@ msgstr "Kayıtları birleştir"
msgid "Merging..."
msgstr "Birleştiriliyor..."
#. js-lingui-id: xDAtGP
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Message"
msgstr ""
#. js-lingui-id: U15XwX
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Message not found"
@@ -9133,12 +9076,6 @@ msgstr "E-posta taslağı oluşturma izni eksik."
msgid "Mission accomplished!"
msgstr "Görev tamamlandı!"
#. js-lingui-id: dMsM20
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
msgid "Mobile"
msgstr ""
#. js-lingui-id: scu3wk
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPromptTab.tsx
msgid "Model"
@@ -9168,6 +9105,7 @@ msgstr "Model kimliği gerekli"
#. js-lingui-id: //nm2/
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Models"
msgstr "Modeller"
@@ -9392,12 +9330,12 @@ msgstr "mySkill"
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
#: src/modules/settings/data-model/new-object/components/SettingsAvailableStandardObjectsSection.tsx
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/config-variables/components/SettingsAdminConfigVariablesTable.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Name"
msgstr "İsim"
@@ -10062,12 +10000,6 @@ msgstr "Bu uygulama için yapılandırılmış izin yok."
msgid "No permissions have been set for individual objects."
msgstr "Bireysel nesneler için izinler ayarlanmadı."
#. js-lingui-id: V/+aTW
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordFieldChip.tsx
msgid "No record"
msgstr ""
#. js-lingui-id: ePgApM
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerManual.tsx
msgid "No record is required to trigger this workflow"
@@ -10079,6 +10011,11 @@ msgstr "Bu iş akışını tetiklemek için bir kayda gerek yok"
msgid "No record selected"
msgstr ""
#. js-lingui-id: X8wJTR
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
msgid "No records"
msgstr "Kayıt yok"
#. js-lingui-id: EqGTpW
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateReadOnly.tsx
#: src/modules/object-record/record-picker/components/RecordPickerNoRecordFoundMenuItem.tsx
@@ -10392,7 +10329,7 @@ msgid "Object Events"
msgstr "Nesne Olayları"
#. js-lingui-id: 79D4Az
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
msgid "Object ID"
msgstr "Nesne Kimliği"
@@ -11346,8 +11283,8 @@ msgid "Prompt"
msgstr ""
#. js-lingui-id: l/UFPv
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
msgid "Properties"
msgstr "Özellikler"
@@ -11370,8 +11307,8 @@ msgstr "OIDC sağlayıcısı bilgilerinizi sağlayın"
#. js-lingui-id: aemBRq
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Provider"
msgstr "Sağlayıcı"
@@ -11597,7 +11534,7 @@ msgid "Record filter rule options"
msgstr "Kayıt filtre kuralı seçenekleri"
#. js-lingui-id: xSAYIn
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
msgid "Record ID"
msgstr "Kayıt Kimliği"
@@ -11625,6 +11562,12 @@ msgstr "Kayıt Sayfası"
msgid "Record Selection"
msgstr "Kayıt Seçimi"
#. js-lingui-id: J9Cfll
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutDashboardWidgetTypeSelect.tsx
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
msgid "Record Table"
msgstr "Kayıt Tablosu"
#. js-lingui-id: NxW0+c
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
msgid "Record Table Settings"
@@ -11993,7 +11936,7 @@ msgid "Reset variable"
msgstr "Değişkeni sıfırla"
#. js-lingui-id: esl+Tv
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
msgid "Resource Type"
msgstr "Kaynak Türü"
@@ -13009,7 +12952,6 @@ msgstr "Veritabanınızı ayarlama..."
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsSection.tsx
#: src/modules/settings/roles/role/components/SettingsRole.tsx
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
@@ -13866,7 +13808,6 @@ msgstr "Sekme Ayarları"
#. js-lingui-id: 4hJhzz
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
msgid "Table"
@@ -14409,10 +14350,9 @@ msgid "Timeout"
msgstr "Zaman aşımı"
#. js-lingui-id: 8TMaZI
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Timestamp"
msgstr "Zaman damgası"
@@ -15256,9 +15196,9 @@ msgstr "Pivot/bağlantı tabloları için kullanışlıdır"
#. js-lingui-id: 7PzzBU
#: src/pages/settings/SettingsTwoFactorAuthenticationMethod.tsx
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
#: src/pages/settings/ai/SettingsAIPrompts.tsx
@@ -15441,9 +15381,7 @@ msgid "view"
msgstr "görünüm"
#. js-lingui-id: jpctdh
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutDashboardWidgetTypeSelect.tsx
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
@@ -15611,11 +15549,6 @@ msgstr "Menekşe"
msgid "Visibility"
msgstr "Görünürlük"
#. js-lingui-id: gkAApJ
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
msgid "Visibility Restriction"
msgstr ""
#. js-lingui-id: zYTdqe
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
+49 -116
View File
@@ -158,16 +158,6 @@ msgstr "{0, plural, one {Ви не маєте доступу до поля {fiel
msgid "{0} credits"
msgstr "{0} кредитів"
#. js-lingui-id: peiknr
#. placeholder {0}: activeVisibleFieldLabels.length
#. placeholder {0}: activeFilterLabels.length
#. placeholder {0}: activeSortLabels.length
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
msgid "{0} shown"
msgstr ""
#. js-lingui-id: r4l/MK
#. placeholder {0}: formatUsageValue(totalCredits)
#: src/pages/settings/SettingsUsageUserDetail.tsx
@@ -1785,12 +1775,6 @@ msgstr "Та"
msgid "Any {fieldLabel} field"
msgstr "Будь-яке поле {fieldLabel}"
#. js-lingui-id: COyjuu
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
msgid "Any device"
msgstr ""
#. js-lingui-id: I8f+hC
#: src/modules/views/components/AnyFieldSearchChip.tsx
msgid "Any field"
@@ -1964,11 +1948,6 @@ msgstr "Деталі застосування"
msgid "Application installed successfully."
msgstr "Застосунок успішно встановлено."
#. js-lingui-id: LllWIc
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
msgid "Application Logs"
msgstr ""
#. js-lingui-id: +tE2x9
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
msgid "Application successfully uninstalled."
@@ -3356,6 +3335,11 @@ msgstr "Налаштуйте параметри CalDAV для синхроніз
msgid "Configure date, time, number, timezone, and calendar start day"
msgstr "Налаштувати дату, час, число, часовий пояс і початок дня календаря"
#. js-lingui-id: +SQwHr
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Configure default AI models and availability"
msgstr "Налаштуйте моделі ШІ за замовчуванням та їхню доступність"
#. js-lingui-id: utsXG8
#: src/pages/settings/security/SettingsSecurity.tsx
msgid "Configure fallback login methods for users with SSO bypass permissions"
@@ -3401,11 +3385,6 @@ msgstr "Налаштуйте цей віджет для відображення
msgid "Configure when this function should be executed"
msgstr "Налаштуйте, коли ця функція має виконуватися"
#. js-lingui-id: hzDiM0
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Configure your default AI model"
msgstr ""
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@@ -3534,7 +3513,7 @@ msgstr "Вміст"
#. js-lingui-id: M73whl
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Context"
@@ -3732,16 +3711,21 @@ msgstr "Основні об'єкти"
msgid "Cost"
msgstr "Вартість"
#. js-lingui-id: Iw/ard
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Cost / 1M"
msgstr "Вартість / 1 млн"
#. js-lingui-id: 3kzLg2
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
msgid "Cost / 1M tokens"
msgstr "Вартість / 1 млн токенів"
#. js-lingui-id: iX2opZ
#: src/modules/settings/billing/components/SettingsBillingCreditsSection.tsx
msgid "Cost per 1k Extra Credits"
msgstr "Вартість за 1k додаткових кредитів"
#. js-lingui-id: Z9Z9PX
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
msgid "Cost per 1M tokens"
msgstr ""
#. js-lingui-id: 3X5ngu
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
msgid "Cost per million tokens (USD)"
@@ -4279,6 +4263,7 @@ msgstr "Інформаційну панель успішно продубльо
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Data"
msgstr "Дані"
@@ -4331,7 +4316,7 @@ msgid "Data on display"
msgstr "Дані на екрані"
#. js-lingui-id: Ix/CMz
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Data residency"
msgstr "Розміщення даних"
@@ -4494,7 +4479,6 @@ msgid "default"
msgstr ""
#. js-lingui-id: ovBPCi
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
msgid "Default"
@@ -4833,11 +4817,6 @@ msgstr "Видалений запис"
msgid "Deleting this method will remove it permanently from your account."
msgstr "Видалення цього методу назавжди усуне його з вашого облікового запису."
#. js-lingui-id: Ssdrw4
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
msgid "Deprecated"
msgstr ""
#. js-lingui-id: O3LJh6
#: src/modules/side-panel/pages/page-layout/utils/getSortLabelSuffixForFieldType.ts
#: src/modules/side-panel/pages/page-layout/utils/getSortLabelSuffixForFieldType.ts
@@ -4873,12 +4852,6 @@ msgstr "Опишіть, що ви хочете, щоб AI зробив..."
msgid "Description"
msgstr "Опис"
#. js-lingui-id: BBqGS9
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
msgid "Desktop"
msgstr ""
#. js-lingui-id: +ow7t4
#: src/modules/settings/roles/role-permissions/object-level-permissions/utils/objectPermissionKeyToHumanReadableText.ts
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
@@ -4901,7 +4874,7 @@ msgid "Detach"
msgstr "Від’єднати"
#. js-lingui-id: URmyfc
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Details"
msgstr "Деталі"
@@ -5336,8 +5309,6 @@ msgstr ""
#. js-lingui-id: uBAxNB
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/FieldWidgetLayoutDropdownContent.tsx
msgid "Editor"
msgstr "Редактор"
@@ -6093,8 +6064,8 @@ msgid "Evaluations"
msgstr ""
#. js-lingui-id: 0pC/y6
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/modules/activities/calendar/components/CalendarEventDetails.tsx
msgid "Event"
msgstr "Подія"
@@ -6213,11 +6184,6 @@ msgstr "Виключити непрофесійні електронні лис
msgid "Exclude the following people and domains from my email sync. Internal conversations will not be imported"
msgstr "Виключити наступних осіб та домени з моєї синхронізації електронної пошти. Внутрішні розмови не будуть імпортовані"
#. js-lingui-id: B0clc7
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Execution ID"
msgstr ""
#. js-lingui-id: YzI8cc
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsSelect.tsx
msgid "Existing Field"
@@ -6547,8 +6513,6 @@ msgstr "Не вдалося оновити модель"
#. js-lingui-id: W7Ff/4
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Failed to update model availability"
msgstr "Не вдалося оновити доступність моделі"
@@ -6558,11 +6522,6 @@ msgstr "Не вдалося оновити доступність моделі"
msgid "Failed to update model recommendation"
msgstr "Не вдалося оновити рекомендацію моделі"
#. js-lingui-id: q1MtjM
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
msgid "Failed to update model recommendations"
msgstr ""
#. js-lingui-id: rCUG3c
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Failed to update model selection mode"
@@ -7053,11 +7012,6 @@ msgstr "Компоненти фронтенду"
msgid "Full access"
msgstr "Повний доступ"
#. js-lingui-id: YMZBxa
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Function"
msgstr ""
#. js-lingui-id: AHOl4W
#: src/modules/settings/logic-functions/components/SettingsLogicFunctionLabelContainer.tsx
msgid "Function name"
@@ -8408,7 +8362,6 @@ msgstr "Запустити вручну"
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldsSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Layout"
@@ -8482,11 +8435,6 @@ msgstr ""
msgid "Less than or equal"
msgstr "Менше або дорівнює"
#. js-lingui-id: oCHfGC
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Level"
msgstr ""
#. js-lingui-id: 3qg5Ro
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
@@ -8921,7 +8869,7 @@ msgstr "Макс. ємність імпорту: {formatSpreadsheetMaxRecordImpo
#. js-lingui-id: S8w4XA
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Max output"
msgstr "Максимальний вивід"
@@ -9031,11 +8979,6 @@ msgstr "Обʼєднати записи"
msgid "Merging..."
msgstr "Об’єднання..."
#. js-lingui-id: xDAtGP
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Message"
msgstr ""
#. js-lingui-id: U15XwX
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Message not found"
@@ -9133,12 +9076,6 @@ msgstr "Відсутній дозвіл на створення чернеток
msgid "Mission accomplished!"
msgstr "Місію виконано!"
#. js-lingui-id: dMsM20
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
msgid "Mobile"
msgstr ""
#. js-lingui-id: scu3wk
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPromptTab.tsx
msgid "Model"
@@ -9168,6 +9105,7 @@ msgstr "Потрібно вказати ID моделі"
#. js-lingui-id: //nm2/
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Models"
msgstr "Моделі"
@@ -9392,12 +9330,12 @@ msgstr "mySkill"
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
#: src/modules/settings/data-model/new-object/components/SettingsAvailableStandardObjectsSection.tsx
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/config-variables/components/SettingsAdminConfigVariablesTable.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Name"
msgstr "Ім'я"
@@ -10062,12 +10000,6 @@ msgstr "Для цього застосунку не налаштовано до
msgid "No permissions have been set for individual objects."
msgstr "‎Не встановлено дозволів для окремих об'єктів."
#. js-lingui-id: V/+aTW
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordFieldChip.tsx
msgid "No record"
msgstr ""
#. js-lingui-id: ePgApM
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerManual.tsx
msgid "No record is required to trigger this workflow"
@@ -10079,6 +10011,11 @@ msgstr "Для запуску цього робочого процесу не п
msgid "No record selected"
msgstr ""
#. js-lingui-id: X8wJTR
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
msgid "No records"
msgstr "Немає записів"
#. js-lingui-id: EqGTpW
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateReadOnly.tsx
#: src/modules/object-record/record-picker/components/RecordPickerNoRecordFoundMenuItem.tsx
@@ -10392,7 +10329,7 @@ msgid "Object Events"
msgstr "Події об'єктів"
#. js-lingui-id: 79D4Az
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
msgid "Object ID"
msgstr "ID об'єкта"
@@ -11346,8 +11283,8 @@ msgid "Prompt"
msgstr ""
#. js-lingui-id: l/UFPv
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
msgid "Properties"
msgstr "Властивості"
@@ -11370,8 +11307,8 @@ msgstr "Надайте деталі вашого OIDC провайдера"
#. js-lingui-id: aemBRq
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Provider"
msgstr "Провайдер"
@@ -11597,7 +11534,7 @@ msgid "Record filter rule options"
msgstr "Параметри правила фільтра записів"
#. js-lingui-id: xSAYIn
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
msgid "Record ID"
msgstr "ID запису"
@@ -11625,6 +11562,12 @@ msgstr "Сторінка запису"
msgid "Record Selection"
msgstr "Вибір запису"
#. js-lingui-id: J9Cfll
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutDashboardWidgetTypeSelect.tsx
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
msgid "Record Table"
msgstr "Таблиця записів"
#. js-lingui-id: NxW0+c
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
msgid "Record Table Settings"
@@ -11993,7 +11936,7 @@ msgid "Reset variable"
msgstr "Скинути змінну"
#. js-lingui-id: esl+Tv
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
msgid "Resource Type"
msgstr "Тип ресурсу"
@@ -13009,7 +12952,6 @@ msgstr "Налаштування вашої бази даних..."
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsSection.tsx
#: src/modules/settings/roles/role/components/SettingsRole.tsx
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
@@ -13866,7 +13808,6 @@ msgstr "Налаштування вкладки"
#. js-lingui-id: 4hJhzz
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
msgid "Table"
@@ -14411,10 +14352,9 @@ msgid "Timeout"
msgstr "Тайм-аут"
#. js-lingui-id: 8TMaZI
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Timestamp"
msgstr "Мітка часу"
@@ -15258,9 +15198,9 @@ msgstr "Корисно для проміжних/зв’язувальних т
#. js-lingui-id: 7PzzBU
#: src/pages/settings/SettingsTwoFactorAuthenticationMethod.tsx
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
#: src/pages/settings/ai/SettingsAIPrompts.tsx
@@ -15443,9 +15383,7 @@ msgid "view"
msgstr "перегляд"
#. js-lingui-id: jpctdh
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutDashboardWidgetTypeSelect.tsx
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
@@ -15613,11 +15551,6 @@ msgstr "Фіалковий"
msgid "Visibility"
msgstr "Видимість"
#. js-lingui-id: gkAApJ
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
msgid "Visibility Restriction"
msgstr ""
#. js-lingui-id: zYTdqe
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
+49 -116
View File
@@ -158,16 +158,6 @@ msgstr "{0, plural, other {Bạn không có quyền truy cập vào trường {f
msgid "{0} credits"
msgstr "{0} tín dụng"
#. js-lingui-id: peiknr
#. placeholder {0}: activeVisibleFieldLabels.length
#. placeholder {0}: activeFilterLabels.length
#. placeholder {0}: activeSortLabels.length
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
msgid "{0} shown"
msgstr ""
#. js-lingui-id: r4l/MK
#. placeholder {0}: formatUsageValue(totalCredits)
#: src/pages/settings/SettingsUsageUserDetail.tsx
@@ -1785,12 +1775,6 @@ msgstr "Và"
msgid "Any {fieldLabel} field"
msgstr "Bất kỳ trường {fieldLabel} nào"
#. js-lingui-id: COyjuu
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
msgid "Any device"
msgstr ""
#. js-lingui-id: I8f+hC
#: src/modules/views/components/AnyFieldSearchChip.tsx
msgid "Any field"
@@ -1964,11 +1948,6 @@ msgstr "Chi tiết ứng dụng"
msgid "Application installed successfully."
msgstr "Đã cài đặt ứng dụng thành công."
#. js-lingui-id: LllWIc
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
msgid "Application Logs"
msgstr ""
#. js-lingui-id: +tE2x9
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
msgid "Application successfully uninstalled."
@@ -3356,6 +3335,11 @@ msgstr "Cấu hình cài đặt CalDAV để đồng bộ sự kiện lịch c
msgid "Configure date, time, number, timezone, and calendar start day"
msgstr "Cấu hình ngày, giờ, số, múi giờ, và ngày bắt đầu của lịch"
#. js-lingui-id: +SQwHr
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Configure default AI models and availability"
msgstr "Cấu hình các mô hình AI mặc định và trạng thái khả dụng"
#. js-lingui-id: utsXG8
#: src/pages/settings/security/SettingsSecurity.tsx
msgid "Configure fallback login methods for users with SSO bypass permissions"
@@ -3401,11 +3385,6 @@ msgstr "Cấu hình tiện ích này để hiển thị các trường"
msgid "Configure when this function should be executed"
msgstr "Cấu hình thời điểm thực thi hàm này"
#. js-lingui-id: hzDiM0
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Configure your default AI model"
msgstr ""
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@@ -3534,7 +3513,7 @@ msgstr "Nội dung"
#. js-lingui-id: M73whl
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Context"
@@ -3732,16 +3711,21 @@ msgstr "Đối tượng cốt lõi"
msgid "Cost"
msgstr "Chi phí"
#. js-lingui-id: Iw/ard
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Cost / 1M"
msgstr "Chi phí / 1M"
#. js-lingui-id: 3kzLg2
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
msgid "Cost / 1M tokens"
msgstr "Chi phí / 1M token"
#. js-lingui-id: iX2opZ
#: src/modules/settings/billing/components/SettingsBillingCreditsSection.tsx
msgid "Cost per 1k Extra Credits"
msgstr "Chi phí cho 1k Tín Dụng Thêm"
#. js-lingui-id: Z9Z9PX
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
msgid "Cost per 1M tokens"
msgstr ""
#. js-lingui-id: 3X5ngu
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
msgid "Cost per million tokens (USD)"
@@ -4279,6 +4263,7 @@ msgstr "Nhân bản thành công bảng điều khiển"
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Data"
msgstr "Dữ liệu"
@@ -4331,7 +4316,7 @@ msgid "Data on display"
msgstr "Dữ liệu hiển thị"
#. js-lingui-id: Ix/CMz
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Data residency"
msgstr "Khu vực lưu trữ dữ liệu"
@@ -4494,7 +4479,6 @@ msgid "default"
msgstr ""
#. js-lingui-id: ovBPCi
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
msgid "Default"
@@ -4833,11 +4817,6 @@ msgstr "Bản ghi đã xóa"
msgid "Deleting this method will remove it permanently from your account."
msgstr "Xóa phương thức này sẽ xóa vĩnh viễn khỏi tài khoản của bạn."
#. js-lingui-id: Ssdrw4
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
msgid "Deprecated"
msgstr ""
#. js-lingui-id: O3LJh6
#: src/modules/side-panel/pages/page-layout/utils/getSortLabelSuffixForFieldType.ts
#: src/modules/side-panel/pages/page-layout/utils/getSortLabelSuffixForFieldType.ts
@@ -4873,12 +4852,6 @@ msgstr "Mô tả điều bạn muốn AI làm gì..."
msgid "Description"
msgstr "Mô tả"
#. js-lingui-id: BBqGS9
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
msgid "Desktop"
msgstr ""
#. js-lingui-id: +ow7t4
#: src/modules/settings/roles/role-permissions/object-level-permissions/utils/objectPermissionKeyToHumanReadableText.ts
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
@@ -4901,7 +4874,7 @@ msgid "Detach"
msgstr "Tách ra"
#. js-lingui-id: URmyfc
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Details"
msgstr "Chi tiết"
@@ -5336,8 +5309,6 @@ msgstr ""
#. js-lingui-id: uBAxNB
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/FieldWidgetLayoutDropdownContent.tsx
msgid "Editor"
msgstr "Trình soạn thảo"
@@ -6093,8 +6064,8 @@ msgid "Evaluations"
msgstr ""
#. js-lingui-id: 0pC/y6
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/modules/activities/calendar/components/CalendarEventDetails.tsx
msgid "Event"
msgstr "Sự kiện"
@@ -6213,11 +6184,6 @@ msgstr "Loại trừ email không chuyên nghiệp"
msgid "Exclude the following people and domains from my email sync. Internal conversations will not be imported"
msgstr "Loại trừ những người và miền sau từ đồng bộ email của tôi. Các cuộc trò chuyện nội bộ sẽ không được nhập khẩu"
#. js-lingui-id: B0clc7
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Execution ID"
msgstr ""
#. js-lingui-id: YzI8cc
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsSelect.tsx
msgid "Existing Field"
@@ -6547,8 +6513,6 @@ msgstr "Cập nhật mô hình thất bại"
#. js-lingui-id: W7Ff/4
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Failed to update model availability"
msgstr "Cập nhật trạng thái khả dụng của mô hình thất bại"
@@ -6558,11 +6522,6 @@ msgstr "Cập nhật trạng thái khả dụng của mô hình thất bại"
msgid "Failed to update model recommendation"
msgstr "Cập nhật đề xuất mô hình thất bại"
#. js-lingui-id: q1MtjM
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
msgid "Failed to update model recommendations"
msgstr ""
#. js-lingui-id: rCUG3c
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Failed to update model selection mode"
@@ -7053,11 +7012,6 @@ msgstr "Các thành phần giao diện"
msgid "Full access"
msgstr "\\"
#. js-lingui-id: YMZBxa
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Function"
msgstr ""
#. js-lingui-id: AHOl4W
#: src/modules/settings/logic-functions/components/SettingsLogicFunctionLabelContainer.tsx
msgid "Function name"
@@ -8408,7 +8362,6 @@ msgstr "Khởi chạy thủ công"
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldsSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Layout"
@@ -8482,11 +8435,6 @@ msgstr ""
msgid "Less than or equal"
msgstr "Nhỏ hơn hoặc bằng"
#. js-lingui-id: oCHfGC
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Level"
msgstr ""
#. js-lingui-id: 3qg5Ro
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
@@ -8921,7 +8869,7 @@ msgstr "Dung lượng nhập tối đa: {formatSpreadsheetMaxRecordImportCapacit
#. js-lingui-id: S8w4XA
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Max output"
msgstr "Đầu ra tối đa"
@@ -9031,11 +8979,6 @@ msgstr "Ghép hồ sơ"
msgid "Merging..."
msgstr "Đang hợp nhất..."
#. js-lingui-id: xDAtGP
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Message"
msgstr ""
#. js-lingui-id: U15XwX
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Message not found"
@@ -9133,12 +9076,6 @@ msgstr "Thiếu quyền soạn thảo email."
msgid "Mission accomplished!"
msgstr "Nhiệm vụ đã hoàn thành!"
#. js-lingui-id: dMsM20
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
msgid "Mobile"
msgstr ""
#. js-lingui-id: scu3wk
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPromptTab.tsx
msgid "Model"
@@ -9168,6 +9105,7 @@ msgstr "ID mô hình là bắt buộc"
#. js-lingui-id: //nm2/
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Models"
msgstr "Mô hình"
@@ -9392,12 +9330,12 @@ msgstr "mySkill"
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
#: src/modules/settings/data-model/new-object/components/SettingsAvailableStandardObjectsSection.tsx
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/config-variables/components/SettingsAdminConfigVariablesTable.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Name"
msgstr "Tên"
@@ -10062,12 +10000,6 @@ msgstr "Không có quyền nào được cấu hình cho ứng dụng này."
msgid "No permissions have been set for individual objects."
msgstr "Chưa thiết lập quyền cho các đối tượng cá nhân."
#. js-lingui-id: V/+aTW
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordFieldChip.tsx
msgid "No record"
msgstr ""
#. js-lingui-id: ePgApM
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerManual.tsx
msgid "No record is required to trigger this workflow"
@@ -10079,6 +10011,11 @@ msgstr "Không cần bản ghi nào để kích hoạt quy trình công việc n
msgid "No record selected"
msgstr ""
#. js-lingui-id: X8wJTR
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
msgid "No records"
msgstr "Không có bản ghi"
#. js-lingui-id: EqGTpW
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateReadOnly.tsx
#: src/modules/object-record/record-picker/components/RecordPickerNoRecordFoundMenuItem.tsx
@@ -10392,7 +10329,7 @@ msgid "Object Events"
msgstr "Sự kiện đối tượng"
#. js-lingui-id: 79D4Az
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
msgid "Object ID"
msgstr "ID đối tượng"
@@ -11346,8 +11283,8 @@ msgid "Prompt"
msgstr ""
#. js-lingui-id: l/UFPv
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
msgid "Properties"
msgstr "Thuộc tính"
@@ -11370,8 +11307,8 @@ msgstr "Cung cấp chi tiết nhà cung cấp OIDC của bạn"
#. js-lingui-id: aemBRq
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Provider"
msgstr "Nhà cung cấp"
@@ -11597,7 +11534,7 @@ msgid "Record filter rule options"
msgstr "Tùy chọn quy tắc lọc bản ghi"
#. js-lingui-id: xSAYIn
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
msgid "Record ID"
msgstr "ID bản ghi"
@@ -11625,6 +11562,12 @@ msgstr "Trang hồ sơ"
msgid "Record Selection"
msgstr "Chọn Lọc Hồ sơ"
#. js-lingui-id: J9Cfll
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutDashboardWidgetTypeSelect.tsx
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
msgid "Record Table"
msgstr "Bảng bản ghi"
#. js-lingui-id: NxW0+c
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
msgid "Record Table Settings"
@@ -11993,7 +11936,7 @@ msgid "Reset variable"
msgstr "Đặt lại biến"
#. js-lingui-id: esl+Tv
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
msgid "Resource Type"
msgstr "Loại tài nguyên"
@@ -13009,7 +12952,6 @@ msgstr "Thiết lập cơ sở dữ liệu của bạn..."
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsSection.tsx
#: src/modules/settings/roles/role/components/SettingsRole.tsx
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
@@ -13866,7 +13808,6 @@ msgstr "Cài đặt Tab"
#. js-lingui-id: 4hJhzz
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
msgid "Table"
@@ -14409,10 +14350,9 @@ msgid "Timeout"
msgstr "Thời gian chờ"
#. js-lingui-id: 8TMaZI
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Timestamp"
msgstr "Dấu thời gian"
@@ -15256,9 +15196,9 @@ msgstr "Hữu ích cho các bảng trung gian/liên kết"
#. js-lingui-id: 7PzzBU
#: src/pages/settings/SettingsTwoFactorAuthenticationMethod.tsx
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
#: src/pages/settings/ai/SettingsAIPrompts.tsx
@@ -15441,9 +15381,7 @@ msgid "view"
msgstr "xem"
#. js-lingui-id: jpctdh
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutDashboardWidgetTypeSelect.tsx
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
@@ -15611,11 +15549,6 @@ msgstr "Tím"
msgid "Visibility"
msgstr "Tính khả dụng"
#. js-lingui-id: gkAApJ
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
msgid "Visibility Restriction"
msgstr ""
#. js-lingui-id: zYTdqe
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
+49 -116
View File
@@ -158,16 +158,6 @@ msgstr "{0, plural, other {您无权访问 {fieldsList} 字段}}"
msgid "{0} credits"
msgstr "{0} 积分"
#. js-lingui-id: peiknr
#. placeholder {0}: activeVisibleFieldLabels.length
#. placeholder {0}: activeFilterLabels.length
#. placeholder {0}: activeSortLabels.length
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
msgid "{0} shown"
msgstr ""
#. js-lingui-id: r4l/MK
#. placeholder {0}: formatUsageValue(totalCredits)
#: src/pages/settings/SettingsUsageUserDetail.tsx
@@ -1785,12 +1775,6 @@ msgstr "且"
msgid "Any {fieldLabel} field"
msgstr "任意 {fieldLabel} 字段"
#. js-lingui-id: COyjuu
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
msgid "Any device"
msgstr ""
#. js-lingui-id: I8f+hC
#: src/modules/views/components/AnyFieldSearchChip.tsx
msgid "Any field"
@@ -1964,11 +1948,6 @@ msgstr "应用程序详情"
msgid "Application installed successfully."
msgstr "应用程序安装成功。"
#. js-lingui-id: LllWIc
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
msgid "Application Logs"
msgstr ""
#. js-lingui-id: +tE2x9
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
msgid "Application successfully uninstalled."
@@ -3356,6 +3335,11 @@ msgstr "配置 CalDAV 设置以同步您的日历事件。"
msgid "Configure date, time, number, timezone, and calendar start day"
msgstr "配置日期、时间、数字、时区和日历起始日"
#. js-lingui-id: +SQwHr
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Configure default AI models and availability"
msgstr "配置默认 AI 模型和可用性"
#. js-lingui-id: utsXG8
#: src/pages/settings/security/SettingsSecurity.tsx
msgid "Configure fallback login methods for users with SSO bypass permissions"
@@ -3401,11 +3385,6 @@ msgstr "配置此小部件以显示字段"
msgid "Configure when this function should be executed"
msgstr "配置何时执行此函数"
#. js-lingui-id: hzDiM0
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Configure your default AI model"
msgstr ""
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@@ -3534,7 +3513,7 @@ msgstr "内容"
#. js-lingui-id: M73whl
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Context"
@@ -3732,16 +3711,21 @@ msgstr "核心对象"
msgid "Cost"
msgstr "成本"
#. js-lingui-id: Iw/ard
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Cost / 1M"
msgstr "成本 / 100 万"
#. js-lingui-id: 3kzLg2
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
msgid "Cost / 1M tokens"
msgstr "成本 / 100 万 token"
#. js-lingui-id: iX2opZ
#: src/modules/settings/billing/components/SettingsBillingCreditsSection.tsx
msgid "Cost per 1k Extra Credits"
msgstr "每千额外积分的成本"
#. js-lingui-id: Z9Z9PX
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
msgid "Cost per 1M tokens"
msgstr ""
#. js-lingui-id: 3X5ngu
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
msgid "Cost per million tokens (USD)"
@@ -4279,6 +4263,7 @@ msgstr "仪表板复制成功"
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
msgid "Data"
msgstr "数据"
@@ -4331,7 +4316,7 @@ msgid "Data on display"
msgstr "显示的数据"
#. js-lingui-id: Ix/CMz
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Data residency"
msgstr "数据驻留"
@@ -4494,7 +4479,6 @@ msgid "default"
msgstr ""
#. js-lingui-id: ovBPCi
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
msgid "Default"
@@ -4833,11 +4817,6 @@ msgstr "已删除记录"
msgid "Deleting this method will remove it permanently from your account."
msgstr "删除此方法将永久从您的账户中移除。"
#. js-lingui-id: Ssdrw4
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
msgid "Deprecated"
msgstr ""
#. js-lingui-id: O3LJh6
#: src/modules/side-panel/pages/page-layout/utils/getSortLabelSuffixForFieldType.ts
#: src/modules/side-panel/pages/page-layout/utils/getSortLabelSuffixForFieldType.ts
@@ -4873,12 +4852,6 @@ msgstr "描述你希望 AI 执行的操作..."
msgid "Description"
msgstr "描述"
#. js-lingui-id: BBqGS9
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
msgid "Desktop"
msgstr ""
#. js-lingui-id: +ow7t4
#: src/modules/settings/roles/role-permissions/object-level-permissions/utils/objectPermissionKeyToHumanReadableText.ts
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
@@ -4901,7 +4874,7 @@ msgid "Detach"
msgstr "取消关联"
#. js-lingui-id: URmyfc
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Details"
msgstr "详情"
@@ -5336,8 +5309,6 @@ msgstr ""
#. js-lingui-id: uBAxNB
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/FieldWidgetLayoutDropdownContent.tsx
msgid "Editor"
msgstr "编辑器"
@@ -6093,8 +6064,8 @@ msgid "Evaluations"
msgstr ""
#. js-lingui-id: 0pC/y6
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/modules/activities/calendar/components/CalendarEventDetails.tsx
msgid "Event"
msgstr "事件"
@@ -6213,11 +6184,6 @@ msgstr "排除非专业电子邮件"
msgid "Exclude the following people and domains from my email sync. Internal conversations will not be imported"
msgstr "从我的电子邮件同步中排除以下人员和域名。内部对话将不会被导入"
#. js-lingui-id: B0clc7
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Execution ID"
msgstr ""
#. js-lingui-id: YzI8cc
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsSelect.tsx
msgid "Existing Field"
@@ -6547,8 +6513,6 @@ msgstr "更新模型失败"
#. js-lingui-id: W7Ff/4
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Failed to update model availability"
msgstr "更新模型可用性失败"
@@ -6558,11 +6522,6 @@ msgstr "更新模型可用性失败"
msgid "Failed to update model recommendation"
msgstr "更新模型推荐失败"
#. js-lingui-id: q1MtjM
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
msgid "Failed to update model recommendations"
msgstr ""
#. js-lingui-id: rCUG3c
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Failed to update model selection mode"
@@ -7053,11 +7012,6 @@ msgstr "前端组件"
msgid "Full access"
msgstr "完全访问"
#. js-lingui-id: YMZBxa
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Function"
msgstr ""
#. js-lingui-id: AHOl4W
#: src/modules/settings/logic-functions/components/SettingsLogicFunctionLabelContainer.tsx
msgid "Function name"
@@ -8408,7 +8362,6 @@ msgstr "手动启动"
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldsSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Layout"
@@ -8482,11 +8435,6 @@ msgstr ""
msgid "Less than or equal"
msgstr "小于或等于"
#. js-lingui-id: oCHfGC
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Level"
msgstr ""
#. js-lingui-id: 3qg5Ro
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
@@ -8921,7 +8869,7 @@ msgstr "最大导入容量:{formatSpreadsheetMaxRecordImportCapacity} 记录
#. js-lingui-id: S8w4XA
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Max output"
msgstr "最大输出"
@@ -9031,11 +8979,6 @@ msgstr "合并记录"
msgid "Merging..."
msgstr "正在合并…"
#. js-lingui-id: xDAtGP
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
msgid "Message"
msgstr ""
#. js-lingui-id: U15XwX
#: src/modules/activities/timeline-activities/rows/message/components/EventCardMessage.tsx
msgid "Message not found"
@@ -9133,12 +9076,6 @@ msgstr "缺少电子邮件草稿权限。"
msgid "Mission accomplished!"
msgstr "任务完成!"
#. js-lingui-id: dMsM20
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
msgid "Mobile"
msgstr ""
#. js-lingui-id: scu3wk
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPromptTab.tsx
msgid "Model"
@@ -9168,6 +9105,7 @@ msgstr "模型 ID 为必填项"
#. js-lingui-id: //nm2/
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Models"
msgstr "模型"
@@ -9392,12 +9330,12 @@ msgstr "mySkill"
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
#: src/modules/settings/data-model/new-object/components/SettingsAvailableStandardObjectsSection.tsx
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/config-variables/components/SettingsAdminConfigVariablesTable.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Name"
msgstr "名称"
@@ -10062,12 +10000,6 @@ msgstr "未为此应用程序配置权限。"
msgid "No permissions have been set for individual objects."
msgstr "尚未为个人对象设置权限。"
#. js-lingui-id: V/+aTW
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordFieldChip.tsx
msgid "No record"
msgstr ""
#. js-lingui-id: ePgApM
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerManual.tsx
msgid "No record is required to trigger this workflow"
@@ -10079,6 +10011,11 @@ msgstr "不需要记录即可触发此工作流"
msgid "No record selected"
msgstr ""
#. js-lingui-id: X8wJTR
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
msgid "No records"
msgstr "无记录"
#. js-lingui-id: EqGTpW
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateReadOnly.tsx
#: src/modules/object-record/record-picker/components/RecordPickerNoRecordFoundMenuItem.tsx
@@ -10392,7 +10329,7 @@ msgid "Object Events"
msgstr "对象事件"
#. js-lingui-id: 79D4Az
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
msgid "Object ID"
msgstr "对象 ID"
@@ -11346,8 +11283,8 @@ msgid "Prompt"
msgstr ""
#. js-lingui-id: l/UFPv
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
msgid "Properties"
msgstr "属性"
@@ -11370,8 +11307,8 @@ msgstr "提供您的 OIDC 提供商详情"
#. js-lingui-id: aemBRq
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
msgid "Provider"
msgstr "提供商"
@@ -11597,7 +11534,7 @@ msgid "Record filter rule options"
msgstr "记录筛选规则选项"
#. js-lingui-id: xSAYIn
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
msgid "Record ID"
msgstr "记录 ID"
@@ -11625,6 +11562,12 @@ msgstr "记录页面"
msgid "Record Selection"
msgstr "记录选择"
#. js-lingui-id: J9Cfll
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutDashboardWidgetTypeSelect.tsx
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
msgid "Record Table"
msgstr "记录表"
#. js-lingui-id: NxW0+c
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
msgid "Record Table Settings"
@@ -11993,7 +11936,7 @@ msgid "Reset variable"
msgstr "重置变量"
#. js-lingui-id: esl+Tv
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
msgid "Resource Type"
msgstr "资源类型"
@@ -13009,7 +12952,6 @@ msgstr "正在设置您的数据库..."
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsSection.tsx
#: src/modules/settings/roles/role/components/SettingsRole.tsx
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
@@ -13866,7 +13808,6 @@ msgstr "标签设置"
#. js-lingui-id: 4hJhzz
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
msgid "Table"
@@ -14409,10 +14350,9 @@ msgid "Timeout"
msgstr "超时"
#. js-lingui-id: 8TMaZI
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Timestamp"
msgstr "时间戳"
@@ -15256,9 +15196,9 @@ msgstr "适用于中间/连接表"
#. js-lingui-id: 7PzzBU
#: src/pages/settings/SettingsTwoFactorAuthenticationMethod.tsx
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
#: src/pages/settings/ai/SettingsAIPrompts.tsx
@@ -15441,9 +15381,7 @@ msgid "view"
msgstr "视图"
#. js-lingui-id: jpctdh
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutDashboardWidgetTypeSelect.tsx
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
@@ -15611,11 +15549,6 @@ msgstr "紫罗兰色"
msgid "Visibility"
msgstr "可见性"
#. js-lingui-id: gkAApJ
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
msgid "Visibility Restriction"
msgstr ""
#. js-lingui-id: zYTdqe
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx

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