Compare commits
24
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
da11f44847 | ||
|
|
8fde5d9da3 | ||
|
|
afdd914b83 | ||
|
|
77498d2f73 | ||
|
|
9bea5f73f1 | ||
|
|
c54747379a | ||
|
|
00208dbf1f | ||
|
|
e411f076f1 | ||
|
|
07745947ee | ||
|
|
082822b790 | ||
|
|
0c7712926d | ||
|
|
086256eb8d | ||
|
|
93eeeb2397 | ||
|
|
36fbfca069 | ||
|
|
5116002ca2 | ||
|
|
caac791421 | ||
|
|
d3a1f45027 | ||
|
|
a5174c0519 | ||
|
|
50c5a1a8de | ||
|
|
74e26ae635 | ||
|
|
5e3cf7cd2b | ||
|
|
16e145b036 | ||
|
|
1e908e5f0f | ||
|
|
d495a9f412 |
@@ -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:typeorm migration:generate src/database/typeorm/core/migrations/[name] -d src/database/typeorm/core/core.datasource.ts
|
||||
npx nx run twenty-server:database:migrate:generate
|
||||
|
||||
# Workspace
|
||||
```
|
||||
|
||||
@@ -11,14 +11,12 @@ 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 + TypeORM command from the project root:
|
||||
- Use the Nx command from the project root:
|
||||
|
||||
```bash
|
||||
npx nx run twenty-server:typeorm migration:generate src/database/typeorm/core/migrations/common/[name] -d src/database/typeorm/core/core.datasource.ts
|
||||
npx nx run twenty-server:database:migrate:generate
|
||||
```
|
||||
|
||||
- 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.
|
||||
|
||||
@@ -139,11 +139,19 @@ jobs:
|
||||
cd /tmp/e2e-test-workspace/test-app
|
||||
npx --no-install twenty --version
|
||||
|
||||
- name: Create test database
|
||||
run: PGPASSWORD=postgres psql -h localhost -p 5432 -U postgres -d postgres -c 'CREATE DATABASE "test";'
|
||||
- name: Setup server environment
|
||||
run: npx nx reset:env:e2e-testing-server twenty-server
|
||||
|
||||
- name: Setup database and start server
|
||||
run: npx nx run twenty-server:database:reset && nohup npx nx start:ci twenty-server &
|
||||
- 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: Wait for server to be ready
|
||||
run: npx wait-on http://localhost:3000/healthz --timeout 120000 --interval 1000
|
||||
|
||||
@@ -133,11 +133,19 @@ jobs:
|
||||
cd /tmp/e2e-test-workspace/test-app
|
||||
npx --no-install twenty --version
|
||||
|
||||
- name: Create test database
|
||||
run: PGPASSWORD=postgres psql -h localhost -p 5432 -U postgres -d postgres -c 'CREATE DATABASE "test";'
|
||||
- name: Setup server environment
|
||||
run: npx nx reset:env:e2e-testing-server twenty-server
|
||||
|
||||
- name: Setup database and start server
|
||||
run: npx nx run twenty-server:database:reset && nohup npx nx start:ci twenty-server &
|
||||
- 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: Wait for server to be ready
|
||||
run: npx wait-on http://localhost:3000/healthz --timeout 120000 --interval 1000
|
||||
@@ -147,17 +155,7 @@ 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: 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
|
||||
- name: Run scaffolded app integration test (deploys, installs, and verifies the app)
|
||||
run: |
|
||||
cd /tmp/e2e-test-workspace/test-app
|
||||
yarn test
|
||||
|
||||
@@ -137,11 +137,19 @@ jobs:
|
||||
cd /tmp/e2e-test-workspace/test-app
|
||||
npx --no-install twenty --version
|
||||
|
||||
- name: Create test database
|
||||
run: PGPASSWORD=postgres psql -h localhost -p 5432 -U postgres -d postgres -c 'CREATE DATABASE "test";'
|
||||
- name: Setup server environment
|
||||
run: npx nx reset:env:e2e-testing-server twenty-server
|
||||
|
||||
- name: Setup database and start server
|
||||
run: npx nx run twenty-server:database:reset && nohup npx nx start:ci twenty-server &
|
||||
- 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: Wait for server to be ready
|
||||
run: npx wait-on http://localhost:3000/healthz --timeout 120000 --interval 1000
|
||||
|
||||
@@ -62,11 +62,19 @@ jobs:
|
||||
- name: Build SDK packages
|
||||
run: npx nx build twenty-sdk
|
||||
|
||||
- name: Create test database
|
||||
run: PGPASSWORD=postgres psql -h localhost -p 5432 -U postgres -d postgres -c 'CREATE DATABASE "test";'
|
||||
- name: Setup server environment
|
||||
run: npx nx reset:env:e2e-testing-server twenty-server
|
||||
|
||||
- name: Setup database and start server
|
||||
run: npx nx run twenty-server:database:reset && nohup npx nx start:ci twenty-server &
|
||||
- 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: Wait for server to be ready
|
||||
run: npx wait-on http://localhost:3000/healthz --timeout 120000 --interval 1000
|
||||
|
||||
@@ -62,11 +62,19 @@ jobs:
|
||||
- name: Build SDK packages
|
||||
run: npx nx build twenty-sdk
|
||||
|
||||
- name: Create test database
|
||||
run: PGPASSWORD=postgres psql -h localhost -p 5432 -U postgres -d postgres -c 'CREATE DATABASE "test";'
|
||||
- name: Setup server environment
|
||||
run: npx nx reset:env:e2e-testing-server twenty-server
|
||||
|
||||
- name: Setup database and start server
|
||||
run: npx nx run twenty-server:database:reset && nohup npx nx start:ci twenty-server &
|
||||
- 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: Wait for server to be ready
|
||||
run: npx wait-on http://localhost:3000/healthz --timeout 120000 --interval 1000
|
||||
|
||||
@@ -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 (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
|
||||
# Generate migration
|
||||
npx nx run twenty-server:database:migrate:generate
|
||||
```
|
||||
|
||||
### Database Inspection (Postgres MCP)
|
||||
|
||||
@@ -1169,6 +1169,7 @@ type FieldConfiguration {
|
||||
"""Display mode for field configuration widgets"""
|
||||
enum FieldDisplayMode {
|
||||
CARD
|
||||
EDITOR
|
||||
FIELD
|
||||
VIEW
|
||||
}
|
||||
@@ -1634,12 +1635,15 @@ type ClientAIModelConfig {
|
||||
modelFamily: ModelFamily
|
||||
modelFamilyLabel: String
|
||||
sdkPackage: String
|
||||
inputCostPerMillionTokensInCredits: Float!
|
||||
outputCostPerMillionTokensInCredits: Float!
|
||||
inputCostPerMillionTokens: Float
|
||||
outputCostPerMillionTokens: Float
|
||||
nativeCapabilities: NativeModelCapabilities
|
||||
isDeprecated: Boolean
|
||||
isRecommended: Boolean
|
||||
providerName: String
|
||||
providerLabel: String
|
||||
contextWindowTokens: Float
|
||||
maxOutputTokens: Float
|
||||
dataResidency: String
|
||||
}
|
||||
|
||||
@@ -2790,6 +2794,34 @@ 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
|
||||
@@ -3208,6 +3240,7 @@ type Query {
|
||||
myMessageFolders(messageChannelId: UUID): [MessageFolder!]!
|
||||
myMessageChannels(connectedAccountId: UUID): [MessageChannel!]!
|
||||
myConnectedAccounts: [ConnectedAccountDTO!]!
|
||||
connectedAccountById(id: UUID!): ConnectedAccountPublicDTO
|
||||
connectedAccounts: [ConnectedAccountDTO!]!
|
||||
myCalendarChannels(connectedAccountId: UUID): [CalendarChannel!]!
|
||||
webhooks: [Webhook!]!
|
||||
@@ -3352,6 +3385,7 @@ enum EventLogTable {
|
||||
PAGEVIEW
|
||||
OBJECT_EVENT
|
||||
USAGE_EVENT
|
||||
APPLICATION_LOG
|
||||
}
|
||||
|
||||
input EventLogFiltersInput {
|
||||
@@ -3579,7 +3613,9 @@ 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!
|
||||
@@ -3996,6 +4032,7 @@ input CreatePageLayoutWidgetInput {
|
||||
}
|
||||
|
||||
input UpdatePageLayoutWidgetInput {
|
||||
pageLayoutTabId: UUID
|
||||
title: String
|
||||
type: WidgetType
|
||||
objectMetadataId: UUID
|
||||
|
||||
@@ -886,7 +886,7 @@ export interface FieldConfiguration {
|
||||
|
||||
|
||||
/** Display mode for field configuration widgets */
|
||||
export type FieldDisplayMode = 'CARD' | 'FIELD' | 'VIEW'
|
||||
export type FieldDisplayMode = 'CARD' | 'EDITOR' | 'FIELD' | 'VIEW'
|
||||
|
||||
export interface FieldRichTextConfiguration {
|
||||
configurationType: WidgetConfigurationType
|
||||
@@ -1345,12 +1345,15 @@ export interface ClientAIModelConfig {
|
||||
modelFamily?: ModelFamily
|
||||
modelFamilyLabel?: Scalars['String']
|
||||
sdkPackage?: Scalars['String']
|
||||
inputCostPerMillionTokensInCredits: Scalars['Float']
|
||||
outputCostPerMillionTokensInCredits: Scalars['Float']
|
||||
inputCostPerMillionTokens?: Scalars['Float']
|
||||
outputCostPerMillionTokens?: 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'
|
||||
}
|
||||
@@ -2449,6 +2452,37 @@ 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']
|
||||
@@ -2775,6 +2809,7 @@ export interface Query {
|
||||
myMessageFolders: MessageFolder[]
|
||||
myMessageChannels: MessageChannel[]
|
||||
myConnectedAccounts: ConnectedAccountDTO[]
|
||||
connectedAccountById?: ConnectedAccountPublicDTO
|
||||
connectedAccounts: ConnectedAccountDTO[]
|
||||
myCalendarChannels: CalendarChannel[]
|
||||
webhooks: Webhook[]
|
||||
@@ -2845,7 +2880,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'
|
||||
export type EventLogTable = 'WORKSPACE_EVENT' | 'PAGEVIEW' | 'OBJECT_EVENT' | 'USAGE_EVENT' | 'APPLICATION_LOG'
|
||||
|
||||
export type UsageOperationType = 'AI_CHAT_TOKEN' | 'AI_WORKFLOW_TOKEN' | 'WORKFLOW_EXECUTION' | 'CODE_EXECUTION' | 'WEB_SEARCH'
|
||||
|
||||
@@ -3031,7 +3066,9 @@ 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']
|
||||
@@ -4482,12 +4519,15 @@ export interface ClientAIModelConfigGenqlSelection{
|
||||
modelFamily?: boolean | number
|
||||
modelFamilyLabel?: boolean | number
|
||||
sdkPackage?: boolean | number
|
||||
inputCostPerMillionTokensInCredits?: boolean | number
|
||||
outputCostPerMillionTokensInCredits?: boolean | number
|
||||
inputCostPerMillionTokens?: boolean | number
|
||||
outputCostPerMillionTokens?: 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
|
||||
@@ -5681,6 +5721,40 @@ 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
|
||||
@@ -6023,6 +6097,7 @@ 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
|
||||
@@ -6304,7 +6379,9 @@ 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']} }
|
||||
@@ -6482,7 +6559,7 @@ export interface GridPositionInput {row: Scalars['Float'],column: 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 {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 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)}
|
||||
|
||||
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)}
|
||||
|
||||
@@ -8589,6 +8666,30 @@ 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"')
|
||||
@@ -9102,6 +9203,7 @@ export const enumBarChartLayout = {
|
||||
|
||||
export const enumFieldDisplayMode = {
|
||||
CARD: 'CARD' as const,
|
||||
EDITOR: 'EDITOR' as const,
|
||||
FIELD: 'FIELD' as const,
|
||||
VIEW: 'VIEW' as const
|
||||
}
|
||||
@@ -9518,7 +9620,8 @@ 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
|
||||
USAGE_EVENT: 'USAGE_EVENT' as const,
|
||||
APPLICATION_LOG: 'APPLICATION_LOG' as const
|
||||
}
|
||||
|
||||
export const enumUsageOperationType = {
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
+1
-1
@@ -47,7 +47,7 @@ npx nx run twenty-server:database:reset
|
||||
#### For objects in Core/Metadata schemas (TypeORM)
|
||||
|
||||
```bash
|
||||
npx nx run twenty-server:typeorm migration:generate src/database/typeorm/core/migrations/nameOfYourMigration -d src/database/typeorm/core/core.datasource.ts
|
||||
npx nx run twenty-server:database:migrate:generate
|
||||
```
|
||||
|
||||
## Tech Stack
|
||||
|
||||
+1
-1
@@ -47,7 +47,7 @@ npx nx run twenty-server:database:reset
|
||||
#### للكائنات داخل مخططات Core/Metadata (TypeORM)
|
||||
|
||||
```bash
|
||||
npx nx run twenty-server:typeorm migration:generate src/database/typeorm/core/migrations/nameOfYourMigration -d src/database/typeorm/core/core.datasource.ts
|
||||
npx nx run twenty-server:database:migrate:generate
|
||||
```
|
||||
|
||||
## "التقنية المستخدمة"
|
||||
|
||||
@@ -66,16 +66,16 @@ yarn twenty deploy
|
||||
|
||||
### إدارة الإصدارات
|
||||
|
||||
عند تحديث تطبيق tarball منشور مسبقًا، يشترط الخادم أن تكون قيمة `version` في `package.json` **أعلى قطعًا** (وفق ترتيب [الإصدار الدلالي](https://semver.org)) من الإصدار المنشور حاليًا. 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.
|
||||
عند تحديث تطبيق tarball منشور مسبقًا، يشترط الخادم أن تكون قيمة `version` في `package.json` **أعلى قطعًا** (وفق ترتيب [الإصدار الدلالي](https://semver.org)) من الإصدار المنشور حاليًا. إعادة نشر الإصدار نفسه، أو دفع إصدار أدنى، يُرفَض قبل تخزين ملف tarball — سترى خطأ `VERSION_ALREADY_EXISTS` من CLI.
|
||||
|
||||
لطرح تحديث:
|
||||
|
||||
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. قم بزيادة الحقل `version` في ملف `package.json` (مثلًا: `1.2.3` → `1.2.4`، `1.3.0`، أو `2.0.0`)
|
||||
2. شغّل `yarn twenty deploy` (أو `yarn twenty deploy --remote production`)
|
||||
3. سترى مساحات العمل التي ثبّتت التطبيق الترقية متاحة في إعداداتها
|
||||
|
||||
<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.
|
||||
علامات ما قبل الإصدار تعمل كما هو متوقع: زيادة `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 */}
|
||||
@@ -197,10 +197,10 @@ yarn twenty install
|
||||
```
|
||||
|
||||
<Note>
|
||||
The server enforces semver versioning on install, mirroring the rules on deploy:
|
||||
يفرض الخادم اعتماد إصدارات semver عند التثبيت، بما يعكس القواعد المطبّقة عند النشر:
|
||||
|
||||
* 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.
|
||||
* تثبيت الإصدار نفسه المثبّت بالفعل في مساحة عملك يُرفَض بخطأ `APP_ALREADY_INSTALLED`.
|
||||
* تثبيت إصدار أدنى من الإصدار المثبّت حاليًا يُرفَض بخطأ `CANNOT_DOWNGRADE_APPLICATION`.
|
||||
|
||||
To install a newer version, deploy or publish it first, then re-run `yarn twenty install`.
|
||||
لتثبيت إصدار أحدث، انشره (deploy) أو انشره إلى السجل (publish) أولًا، ثم أعد تشغيل `yarn twenty install`.
|
||||
</Note>
|
||||
|
||||
+1
-1
@@ -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:typeorm migration:generate src/database/typeorm/core/migrations/nameOfYourMigration -d src/database/typeorm/core/core.datasource.ts
|
||||
npx nx run twenty-server:database:migrate:generate
|
||||
```
|
||||
|
||||
## Technologický stack
|
||||
|
||||
@@ -66,16 +66,16 @@ 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. 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.
|
||||
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. Bump the `version` field in your `package.json` (e.g. `1.2.3` → `1.2.4`, `1.3.0`, or `2.0.0`)
|
||||
1. Zvyšte hodnotu pole `version` v souboru `package.json` (např. `1.2.3` → `1.2.4`, `1.3.0` nebo `2.0.0`)
|
||||
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>
|
||||
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.
|
||||
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 */}
|
||||
@@ -197,10 +197,10 @@ yarn twenty install
|
||||
```
|
||||
|
||||
<Note>
|
||||
The server enforces semver versioning on install, mirroring the rules on deploy:
|
||||
Server při instalaci vynucuje verzování semver a zrcadlí pravidla pro nasazení:
|
||||
|
||||
* 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.
|
||||
* 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`.
|
||||
|
||||
To install a newer version, deploy or publish it first, then re-run `yarn twenty install`.
|
||||
K instalaci novější verze ji nejprve nasaďte nebo publikujte, poté znovu spusťte `yarn twenty install`.
|
||||
</Note>
|
||||
|
||||
+1
-1
@@ -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:typeorm migration:generate src/database/typeorm/core/migrations/nameOfYourMigration -d src/database/typeorm/core/core.datasource.ts
|
||||
npx nx run twenty-server:database:migrate:generate
|
||||
```
|
||||
|
||||
## Technologie-Stack
|
||||
|
||||
@@ -66,16 +66,16 @@ 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. 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.
|
||||
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. Bump the `version` field in your `package.json` (e.g. `1.2.3` → `1.2.4`, `1.3.0`, or `2.0.0`)
|
||||
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`).
|
||||
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 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.
|
||||
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 */}
|
||||
@@ -197,10 +197,10 @@ yarn twenty install
|
||||
```
|
||||
|
||||
<Note>
|
||||
The server enforces semver versioning on install, mirroring the rules on deploy:
|
||||
Der Server erzwingt bei der Installation semver-Versionierung und spiegelt damit die Regeln beim Bereitstellen wider:
|
||||
|
||||
* 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.
|
||||
* 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.
|
||||
|
||||
To install a newer version, deploy or publish it first, then re-run `yarn twenty install`.
|
||||
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>
|
||||
|
||||
+1
-1
@@ -47,7 +47,7 @@ npx nx run twenty-server:database:reset
|
||||
#### Para objetos en esquemas Core/Metadata (TypeORM)
|
||||
|
||||
```bash
|
||||
npx nx run twenty-server:typeorm migration:generate src/database/typeorm/core/migrations/nameOfYourMigration -d src/database/typeorm/core/core.datasource.ts
|
||||
npx nx run twenty-server:database:migrate:generate
|
||||
```
|
||||
|
||||
## Stack Tecnológico
|
||||
|
||||
+1
-1
@@ -47,7 +47,7 @@ npx nx run twenty-server:database:reset
|
||||
#### Per oggetti negli schemi Core/Metadata (TypeORM)
|
||||
|
||||
```bash
|
||||
npx nx run twenty-server:typeorm migration:generate src/database/typeorm/core/migrations/nameOfYourMigration -d src/database/typeorm/core/core.datasource.ts
|
||||
npx nx run twenty-server:database:migrate:generate
|
||||
```
|
||||
|
||||
## Tech Stack
|
||||
|
||||
@@ -66,16 +66,16 @@ 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. 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.
|
||||
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. Bump the `version` field in your `package.json` (e.g. `1.2.3` → `1.2.4`, `1.3.0`, or `2.0.0`)
|
||||
1. Incrementa il campo `version` nel tuo `package.json` (ad es. `1.2.3` → `1.2.4`, `1.3.0` o `2.0.0`).
|
||||
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>
|
||||
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.
|
||||
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 */}
|
||||
@@ -197,10 +197,10 @@ yarn twenty install
|
||||
```
|
||||
|
||||
<Note>
|
||||
The server enforces semver versioning on install, mirroring the rules on deploy:
|
||||
Il server applica il versioning semver durante l’installazione, rispecchiando le regole del 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.
|
||||
* L’installazione della stessa versione già installata nel tuo spazio di lavoro viene rifiutata con un errore `APP_ALREADY_INSTALLED`.
|
||||
* L’installazione di una versione inferiore rispetto a quella attualmente installata viene rifiutata con un errore `CANNOT_DOWNGRADE_APPLICATION`.
|
||||
|
||||
To install a newer version, deploy or publish it first, then re-run `yarn twenty install`.
|
||||
Per installare una versione più recente, effettua prima il deploy o la pubblicazione, quindi riesegui `yarn twenty install`.
|
||||
</Note>
|
||||
|
||||
+1
-1
@@ -47,7 +47,7 @@ npx nx run twenty-server:database:reset
|
||||
#### Para objetos nos esquemas Core/Metadata (TypeORM)
|
||||
|
||||
```bash
|
||||
npx nx run twenty-server:typeorm migration:generate src/database/typeorm/core/migrations/nameOfYourMigration -d src/database/typeorm/core/core.datasource.ts
|
||||
npx nx run twenty-server:database:migrate:generate
|
||||
```
|
||||
|
||||
## Pilha de Tecnologias
|
||||
|
||||
@@ -66,16 +66,16 @@ 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. 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.
|
||||
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. Bump the `version` field in your `package.json` (e.g. `1.2.3` → `1.2.4`, `1.3.0`, or `2.0.0`)
|
||||
1. Atualize o campo `version` no seu `package.json` (por exemplo, `1.2.3` → `1.2.4`, `1.3.0` ou `2.0.0`)
|
||||
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>
|
||||
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.
|
||||
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 */}
|
||||
@@ -197,10 +197,10 @@ yarn twenty install
|
||||
```
|
||||
|
||||
<Note>
|
||||
The server enforces semver versioning on install, mirroring the rules on deploy:
|
||||
O servidor impõe o versionamento semver na instalação, espelhando as regras da implantação:
|
||||
|
||||
* 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.
|
||||
* 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`.
|
||||
|
||||
To install a newer version, deploy or publish it first, then re-run `yarn twenty install`.
|
||||
Para instalar uma versão mais recente, implante ou publique-a primeiro e, em seguida, execute novamente `yarn twenty install`.
|
||||
</Note>
|
||||
|
||||
+1
-1
@@ -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:typeorm migration:generate src/database/typeorm/core/migrations/nameOfYourMigration -d src/database/typeorm/core/core.datasource.ts
|
||||
npx nx run twenty-server:database:migrate:generate
|
||||
```
|
||||
|
||||
## Tehnologii Utilizate
|
||||
|
||||
+1
-1
@@ -47,7 +47,7 @@ npx nx run twenty-server:database:reset
|
||||
#### Для объектов в схемах Core/Metadata (TypeORM)
|
||||
|
||||
```bash
|
||||
npx nx run twenty-server:typeorm migration:generate src/database/typeorm/core/migrations/nameOfYourMigration -d src/database/typeorm/core/core.datasource.ts
|
||||
npx nx run twenty-server:database:migrate:generate
|
||||
```
|
||||
|
||||
## Технологический стек
|
||||
|
||||
@@ -66,16 +66,16 @@ 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. 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.
|
||||
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. Bump the `version` field in your `package.json` (e.g. `1.2.3` → `1.2.4`, `1.3.0`, or `2.0.0`)
|
||||
1. Увеличьте значение поля `version` в вашем `package.json` (например: `1.2.3` → `1.2.4`, `1.3.0` или `2.0.0`).
|
||||
2. Выполните `yarn twenty deploy` (или `yarn twenty deploy --remote production`)
|
||||
3. Рабочие пространства, в которых установлено приложение, увидят доступное обновление в своих настройках
|
||||
|
||||
<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.
|
||||
Пререлизные теги работают как ожидается: повышение версии `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 */}
|
||||
@@ -197,10 +197,10 @@ yarn twenty install
|
||||
```
|
||||
|
||||
<Note>
|
||||
The server enforces semver versioning on install, mirroring the rules on deploy:
|
||||
Сервер при установке применяет версионирование semver, аналогичное правилам при развёртывании:
|
||||
|
||||
* 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.
|
||||
* Установка той же версии, которая уже установлена в вашем рабочем пространстве, отклоняется с ошибкой `APP_ALREADY_INSTALLED`.
|
||||
* Установка версии ниже текущей отклоняется с ошибкой `CANNOT_DOWNGRADE_APPLICATION`.
|
||||
|
||||
To install a newer version, deploy or publish it first, then re-run `yarn twenty install`.
|
||||
Чтобы установить более новую версию, сначала разверните или опубликуйте её, затем снова выполните `yarn twenty install`.
|
||||
</Note>
|
||||
|
||||
+1
-1
@@ -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:typeorm migration:generate src/database/typeorm/core/migrations/nameOfYourMigration -d src/database/typeorm/core/core.datasource.ts
|
||||
npx nx run twenty-server:database:migrate:generate
|
||||
```
|
||||
|
||||
## Teknoloji Yığını
|
||||
|
||||
@@ -66,16 +66,16 @@ Paylaşım bağlantısı, sunucunun temel URL’sini (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. 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.
|
||||
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. Bump the `version` field in your `package.json` (e.g. `1.2.3` → `1.2.4`, `1.3.0`, or `2.0.0`)
|
||||
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`)
|
||||
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>
|
||||
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.
|
||||
Ö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 */}
|
||||
@@ -197,10 +197,10 @@ yarn twenty install
|
||||
```
|
||||
|
||||
<Note>
|
||||
The server enforces semver versioning on install, mirroring the rules on deploy:
|
||||
Sunucu, kurulum sırasında semver sürümlemesini zorunlu kılar ve dağıtımdaki kuralları yansıtır:
|
||||
|
||||
* 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.
|
||||
* Ç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.
|
||||
|
||||
To install a newer version, deploy or publish it first, then re-run `yarn twenty install`.
|
||||
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>
|
||||
|
||||
@@ -867,16 +867,19 @@ export type CheckUserExist = {
|
||||
|
||||
export type ClientAiModelConfig = {
|
||||
__typename?: 'ClientAIModelConfig';
|
||||
contextWindowTokens?: Maybe<Scalars['Float']>;
|
||||
dataResidency?: Maybe<Scalars['String']>;
|
||||
inputCostPerMillionTokensInCredits: Scalars['Float'];
|
||||
inputCostPerMillionTokens?: Maybe<Scalars['Float']>;
|
||||
isDeprecated?: Maybe<Scalars['Boolean']>;
|
||||
isRecommended?: Maybe<Scalars['Boolean']>;
|
||||
label: Scalars['String'];
|
||||
maxOutputTokens?: Maybe<Scalars['Float']>;
|
||||
modelFamily?: Maybe<ModelFamily>;
|
||||
modelFamilyLabel?: Maybe<Scalars['String']>;
|
||||
modelId: Scalars['String'];
|
||||
nativeCapabilities?: Maybe<NativeModelCapabilities>;
|
||||
outputCostPerMillionTokensInCredits: Scalars['Float'];
|
||||
outputCostPerMillionTokens?: Maybe<Scalars['Float']>;
|
||||
providerLabel?: Maybe<Scalars['String']>;
|
||||
providerName?: Maybe<Scalars['String']>;
|
||||
sdkPackage?: Maybe<Scalars['String']>;
|
||||
};
|
||||
@@ -1035,6 +1038,22 @@ export type ConnectedAccountDto = {
|
||||
userWorkspaceId: Scalars['UUID'];
|
||||
};
|
||||
|
||||
export type ConnectedAccountPublicDto = {
|
||||
__typename?: 'ConnectedAccountPublicDTO';
|
||||
authFailedAt?: Maybe<Scalars['DateTime']>;
|
||||
connectionParameters?: Maybe<PublicImapSmtpCaldavConnectionParameters>;
|
||||
createdAt: Scalars['DateTime'];
|
||||
handle: Scalars['String'];
|
||||
handleAliases?: Maybe<Array<Scalars['String']>>;
|
||||
id: Scalars['UUID'];
|
||||
lastCredentialsRefreshedAt?: Maybe<Scalars['DateTime']>;
|
||||
lastSignedInAt?: Maybe<Scalars['DateTime']>;
|
||||
provider: Scalars['String'];
|
||||
scopes?: Maybe<Array<Scalars['String']>>;
|
||||
updatedAt: Scalars['DateTime'];
|
||||
userWorkspaceId: Scalars['UUID'];
|
||||
};
|
||||
|
||||
export type ConnectedImapSmtpCaldavAccount = {
|
||||
__typename?: 'ConnectedImapSmtpCaldavAccount';
|
||||
connectionParameters?: Maybe<ImapSmtpCaldavConnectionParameters>;
|
||||
@@ -1706,6 +1725,7 @@ export type EventLogRecord = {
|
||||
};
|
||||
|
||||
export enum EventLogTable {
|
||||
APPLICATION_LOG = 'APPLICATION_LOG',
|
||||
OBJECT_EVENT = 'OBJECT_EVENT',
|
||||
PAGEVIEW = 'PAGEVIEW',
|
||||
USAGE_EVENT = 'USAGE_EVENT',
|
||||
@@ -1799,6 +1819,7 @@ export type FieldConnection = {
|
||||
/** Display mode for field configuration widgets */
|
||||
export enum FieldDisplayMode {
|
||||
CARD = 'CARD',
|
||||
EDITOR = 'EDITOR',
|
||||
FIELD = 'FIELD',
|
||||
VIEW = 'VIEW'
|
||||
}
|
||||
@@ -2649,6 +2670,8 @@ export type Mutation = {
|
||||
sendInvitations: SendInvitations;
|
||||
setAdminAiModelEnabled: Scalars['Boolean'];
|
||||
setAdminAiModelRecommended: Scalars['Boolean'];
|
||||
setAdminAiModelsEnabled: Scalars['Boolean'];
|
||||
setAdminAiModelsRecommended: Scalars['Boolean'];
|
||||
setAdminDefaultAiModel: Scalars['Boolean'];
|
||||
setEnterpriseKey: EnterpriseLicenseInfoDto;
|
||||
setMaintenanceMode: Scalars['Boolean'];
|
||||
@@ -3396,6 +3419,18 @@ export type MutationSetAdminAiModelRecommendedArgs = {
|
||||
};
|
||||
|
||||
|
||||
export type MutationSetAdminAiModelsEnabledArgs = {
|
||||
enabled: Scalars['Boolean'];
|
||||
modelIds: Array<Scalars['String']>;
|
||||
};
|
||||
|
||||
|
||||
export type MutationSetAdminAiModelsRecommendedArgs = {
|
||||
modelIds: Array<Scalars['String']>;
|
||||
recommended: Scalars['Boolean'];
|
||||
};
|
||||
|
||||
|
||||
export type MutationSetAdminDefaultAiModelArgs = {
|
||||
modelId: Scalars['String'];
|
||||
role: AiModelRole;
|
||||
@@ -4223,6 +4258,14 @@ export type PublicApplicationRegistration = {
|
||||
websiteUrl?: Maybe<Scalars['String']>;
|
||||
};
|
||||
|
||||
export type PublicConnectionParametersOutput = {
|
||||
__typename?: 'PublicConnectionParametersOutput';
|
||||
host: Scalars['String'];
|
||||
port: Scalars['Float'];
|
||||
secure?: Maybe<Scalars['Boolean']>;
|
||||
username?: Maybe<Scalars['String']>;
|
||||
};
|
||||
|
||||
export type PublicDomain = {
|
||||
__typename?: 'PublicDomain';
|
||||
createdAt: Scalars['DateTime'];
|
||||
@@ -4244,6 +4287,13 @@ export type PublicFeatureFlagMetadata = {
|
||||
label: Scalars['String'];
|
||||
};
|
||||
|
||||
export type PublicImapSmtpCaldavConnectionParameters = {
|
||||
__typename?: 'PublicImapSmtpCaldavConnectionParameters';
|
||||
CALDAV?: Maybe<PublicConnectionParametersOutput>;
|
||||
IMAP?: Maybe<PublicConnectionParametersOutput>;
|
||||
SMTP?: Maybe<PublicConnectionParametersOutput>;
|
||||
};
|
||||
|
||||
export type PublicWorkspaceData = {
|
||||
__typename?: 'PublicWorkspaceData';
|
||||
authBypassProviders?: Maybe<AuthBypassProviders>;
|
||||
@@ -4270,6 +4320,7 @@ export type Query = {
|
||||
checkWorkspaceInviteHashIsValid: WorkspaceInviteHashValid;
|
||||
commandMenuItem?: Maybe<CommandMenuItem>;
|
||||
commandMenuItems: Array<CommandMenuItem>;
|
||||
connectedAccountById?: Maybe<ConnectedAccountPublicDto>;
|
||||
connectedAccounts: Array<ConnectedAccountDto>;
|
||||
currentUser: User;
|
||||
currentWorkspace: Workspace;
|
||||
@@ -4434,6 +4485,11 @@ export type QueryCommandMenuItemArgs = {
|
||||
};
|
||||
|
||||
|
||||
export type QueryConnectedAccountByIdArgs = {
|
||||
id: Scalars['UUID'];
|
||||
};
|
||||
|
||||
|
||||
export type QueryEnterpriseCheckoutSessionArgs = {
|
||||
billingInterval?: InputMaybe<Scalars['String']>;
|
||||
};
|
||||
@@ -5456,6 +5512,7 @@ export type UpdatePageLayoutWidgetInput = {
|
||||
configuration?: InputMaybe<Scalars['JSON']>;
|
||||
gridPosition?: InputMaybe<GridPositionInput>;
|
||||
objectMetadataId?: InputMaybe<Scalars['UUID']>;
|
||||
pageLayoutTabId?: InputMaybe<Scalars['UUID']>;
|
||||
position?: InputMaybe<Scalars['JSON']>;
|
||||
title?: InputMaybe<Scalars['String']>;
|
||||
type?: InputMaybe<WidgetType>;
|
||||
@@ -7096,6 +7153,15 @@ export type UpdateMessageFoldersMutationVariables = Exact<{
|
||||
|
||||
export type UpdateMessageFoldersMutation = { __typename?: 'Mutation', updateMessageFolders: Array<{ __typename?: 'MessageFolder', id: string, isSynced: boolean }> };
|
||||
|
||||
export type PublicConnectionParamsFragment = { __typename?: 'PublicConnectionParametersOutput', host: string, port: number, secure?: boolean | null, username?: string | null };
|
||||
|
||||
export type ConnectedAccountByIdQueryVariables = Exact<{
|
||||
id: Scalars['UUID'];
|
||||
}>;
|
||||
|
||||
|
||||
export type ConnectedAccountByIdQuery = { __typename?: 'Query', connectedAccountById?: { __typename?: 'ConnectedAccountPublicDTO', id: string, handle: string, provider: string, scopes?: Array<string> | null, userWorkspaceId: string, connectionParameters?: { __typename?: 'PublicImapSmtpCaldavConnectionParameters', IMAP?: { __typename?: 'PublicConnectionParametersOutput', host: string, port: number, secure?: boolean | null, username?: string | null } | null, SMTP?: { __typename?: 'PublicConnectionParametersOutput', host: string, port: number, secure?: boolean | null, username?: string | null } | null, CALDAV?: { __typename?: 'PublicConnectionParametersOutput', host: string, port: number, secure?: boolean | null, username?: string | null } | null } | null } | null };
|
||||
|
||||
export type GetConnectedImapSmtpCaldavAccountQueryVariables = Exact<{
|
||||
id: Scalars['UUID'];
|
||||
}>;
|
||||
@@ -7176,6 +7242,22 @@ export type SetAdminAiModelRecommendedMutationVariables = Exact<{
|
||||
|
||||
export type SetAdminAiModelRecommendedMutation = { __typename?: 'Mutation', setAdminAiModelRecommended: boolean };
|
||||
|
||||
export type SetAdminAiModelsEnabledMutationVariables = Exact<{
|
||||
modelIds: Array<Scalars['String']> | Scalars['String'];
|
||||
enabled: Scalars['Boolean'];
|
||||
}>;
|
||||
|
||||
|
||||
export type SetAdminAiModelsEnabledMutation = { __typename?: 'Mutation', setAdminAiModelsEnabled: boolean };
|
||||
|
||||
export type SetAdminAiModelsRecommendedMutationVariables = Exact<{
|
||||
modelIds: Array<Scalars['String']> | Scalars['String'];
|
||||
recommended: Scalars['Boolean'];
|
||||
}>;
|
||||
|
||||
|
||||
export type SetAdminAiModelsRecommendedMutation = { __typename?: 'Mutation', setAdminAiModelsRecommended: boolean };
|
||||
|
||||
export type SetAdminDefaultAiModelMutationVariables = Exact<{
|
||||
role: AiModelRole;
|
||||
modelId: Scalars['String'];
|
||||
@@ -8281,6 +8363,7 @@ export const MarketplaceAppDetailFieldsFragmentDoc = {"kind":"Document","definit
|
||||
export const MarketplaceAppFieldsFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"MarketplaceAppFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"MarketplaceApp"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"author"}},{"kind":"Field","name":{"kind":"Name","value":"category"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"sourcePackage"}},{"kind":"Field","name":{"kind":"Name","value":"isFeatured"}}]}}]} as unknown as DocumentNode<MarketplaceAppFieldsFragment, unknown>;
|
||||
export const NavigationMenuItemFieldsFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"NavigationMenuItemFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"NavigationMenuItem"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"userWorkspaceId"}},{"kind":"Field","name":{"kind":"Name","value":"targetRecordId"}},{"kind":"Field","name":{"kind":"Name","value":"targetObjectMetadataId"}},{"kind":"Field","name":{"kind":"Name","value":"viewId"}},{"kind":"Field","name":{"kind":"Name","value":"folderId"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"link"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"position"}},{"kind":"Field","name":{"kind":"Name","value":"applicationId"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}}]}}]} as unknown as DocumentNode<NavigationMenuItemFieldsFragment, unknown>;
|
||||
export const NavigationMenuItemQueryFieldsFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"NavigationMenuItemQueryFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"NavigationMenuItem"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"NavigationMenuItemFields"}},{"kind":"Field","name":{"kind":"Name","value":"targetRecordIdentifier"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"labelIdentifier"}},{"kind":"Field","name":{"kind":"Name","value":"imageIdentifier"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"NavigationMenuItemFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"NavigationMenuItem"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"userWorkspaceId"}},{"kind":"Field","name":{"kind":"Name","value":"targetRecordId"}},{"kind":"Field","name":{"kind":"Name","value":"targetObjectMetadataId"}},{"kind":"Field","name":{"kind":"Name","value":"viewId"}},{"kind":"Field","name":{"kind":"Name","value":"folderId"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"link"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"position"}},{"kind":"Field","name":{"kind":"Name","value":"applicationId"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}}]}}]} as unknown as DocumentNode<NavigationMenuItemQueryFieldsFragment, unknown>;
|
||||
export const PublicConnectionParamsFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"PublicConnectionParams"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PublicConnectionParametersOutput"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"host"}},{"kind":"Field","name":{"kind":"Name","value":"port"}},{"kind":"Field","name":{"kind":"Name","value":"secure"}},{"kind":"Field","name":{"kind":"Name","value":"username"}}]}}]} as unknown as DocumentNode<PublicConnectionParamsFragment, unknown>;
|
||||
export const ApplicationRegistrationFragmentFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ApplicationRegistrationFragment"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ApplicationRegistration"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"universalIdentifier"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"oAuthClientId"}},{"kind":"Field","name":{"kind":"Name","value":"oAuthRedirectUris"}},{"kind":"Field","name":{"kind":"Name","value":"oAuthScopes"}},{"kind":"Field","name":{"kind":"Name","value":"sourceType"}},{"kind":"Field","name":{"kind":"Name","value":"sourcePackage"}},{"kind":"Field","name":{"kind":"Name","value":"latestAvailableVersion"}},{"kind":"Field","name":{"kind":"Name","value":"isListed"}},{"kind":"Field","name":{"kind":"Name","value":"isFeatured"}},{"kind":"Field","name":{"kind":"Name","value":"ownerWorkspaceId"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}}]}}]} as unknown as DocumentNode<ApplicationRegistrationFragmentFragment, unknown>;
|
||||
export const BillingPriceLicensedFragmentFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"BillingPriceLicensedFragment"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"BillingPriceLicensed"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"stripePriceId"}},{"kind":"Field","name":{"kind":"Name","value":"unitAmount"}},{"kind":"Field","name":{"kind":"Name","value":"recurringInterval"}},{"kind":"Field","name":{"kind":"Name","value":"priceUsageType"}}]}}]} as unknown as DocumentNode<BillingPriceLicensedFragmentFragment, unknown>;
|
||||
export const BillingPriceMeteredFragmentFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"BillingPriceMeteredFragment"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"BillingPriceMetered"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"priceUsageType"}},{"kind":"Field","name":{"kind":"Name","value":"recurringInterval"}},{"kind":"Field","name":{"kind":"Name","value":"stripePriceId"}},{"kind":"Field","name":{"kind":"Name","value":"tiers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"flatAmount"}},{"kind":"Field","name":{"kind":"Name","value":"unitAmount"}},{"kind":"Field","name":{"kind":"Name","value":"upTo"}}]}}]}}]} as unknown as DocumentNode<BillingPriceMeteredFragmentFragment, unknown>;
|
||||
@@ -8419,6 +8502,7 @@ export const UpdateCalendarChannelDocument = {"kind":"Document","definitions":[{
|
||||
export const UpdateMessageChannelDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"UpdateMessageChannel"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"input"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"UpdateMessageChannelInput"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"updateMessageChannel"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"input"},"value":{"kind":"Variable","name":{"kind":"Name","value":"input"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"visibility"}},{"kind":"Field","name":{"kind":"Name","value":"contactAutoCreationPolicy"}},{"kind":"Field","name":{"kind":"Name","value":"excludeNonProfessionalEmails"}},{"kind":"Field","name":{"kind":"Name","value":"excludeGroupEmails"}},{"kind":"Field","name":{"kind":"Name","value":"messageFolderImportPolicy"}}]}}]}}]} as unknown as DocumentNode<UpdateMessageChannelMutation, UpdateMessageChannelMutationVariables>;
|
||||
export const UpdateMessageFolderDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"UpdateMessageFolder"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"input"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"UpdateMessageFolderInput"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"updateMessageFolder"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"input"},"value":{"kind":"Variable","name":{"kind":"Name","value":"input"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"isSynced"}}]}}]}}]} as unknown as DocumentNode<UpdateMessageFolderMutation, UpdateMessageFolderMutationVariables>;
|
||||
export const UpdateMessageFoldersDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"UpdateMessageFolders"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"input"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"UpdateMessageFoldersInput"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"updateMessageFolders"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"input"},"value":{"kind":"Variable","name":{"kind":"Name","value":"input"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"isSynced"}}]}}]}}]} as unknown as DocumentNode<UpdateMessageFoldersMutation, UpdateMessageFoldersMutationVariables>;
|
||||
export const ConnectedAccountByIdDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"ConnectedAccountById"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"id"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"UUID"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"connectedAccountById"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"id"},"value":{"kind":"Variable","name":{"kind":"Name","value":"id"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"handle"}},{"kind":"Field","name":{"kind":"Name","value":"provider"}},{"kind":"Field","name":{"kind":"Name","value":"scopes"}},{"kind":"Field","name":{"kind":"Name","value":"userWorkspaceId"}},{"kind":"Field","name":{"kind":"Name","value":"connectionParameters"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"IMAP"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"PublicConnectionParams"}}]}},{"kind":"Field","name":{"kind":"Name","value":"SMTP"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"PublicConnectionParams"}}]}},{"kind":"Field","name":{"kind":"Name","value":"CALDAV"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"PublicConnectionParams"}}]}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"PublicConnectionParams"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PublicConnectionParametersOutput"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"host"}},{"kind":"Field","name":{"kind":"Name","value":"port"}},{"kind":"Field","name":{"kind":"Name","value":"secure"}},{"kind":"Field","name":{"kind":"Name","value":"username"}}]}}]} as unknown as DocumentNode<ConnectedAccountByIdQuery, ConnectedAccountByIdQueryVariables>;
|
||||
export const GetConnectedImapSmtpCaldavAccountDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"GetConnectedImapSmtpCaldavAccount"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"id"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"UUID"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"getConnectedImapSmtpCaldavAccount"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"id"},"value":{"kind":"Variable","name":{"kind":"Name","value":"id"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"handle"}},{"kind":"Field","name":{"kind":"Name","value":"provider"}},{"kind":"Field","name":{"kind":"Name","value":"userWorkspaceId"}},{"kind":"Field","name":{"kind":"Name","value":"connectionParameters"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"IMAP"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"host"}},{"kind":"Field","name":{"kind":"Name","value":"port"}},{"kind":"Field","name":{"kind":"Name","value":"secure"}},{"kind":"Field","name":{"kind":"Name","value":"username"}},{"kind":"Field","name":{"kind":"Name","value":"password"}}]}},{"kind":"Field","name":{"kind":"Name","value":"SMTP"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"host"}},{"kind":"Field","name":{"kind":"Name","value":"username"}},{"kind":"Field","name":{"kind":"Name","value":"port"}},{"kind":"Field","name":{"kind":"Name","value":"secure"}},{"kind":"Field","name":{"kind":"Name","value":"password"}}]}},{"kind":"Field","name":{"kind":"Name","value":"CALDAV"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"host"}},{"kind":"Field","name":{"kind":"Name","value":"port"}},{"kind":"Field","name":{"kind":"Name","value":"secure"}},{"kind":"Field","name":{"kind":"Name","value":"username"}},{"kind":"Field","name":{"kind":"Name","value":"password"}}]}}]}}]}}]}}]} as unknown as DocumentNode<GetConnectedImapSmtpCaldavAccountQuery, GetConnectedImapSmtpCaldavAccountQueryVariables>;
|
||||
export const MyCalendarChannelsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"MyCalendarChannels"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"connectedAccountId"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"UUID"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"myCalendarChannels"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"connectedAccountId"},"value":{"kind":"Variable","name":{"kind":"Name","value":"connectedAccountId"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"handle"}},{"kind":"Field","name":{"kind":"Name","value":"visibility"}},{"kind":"Field","name":{"kind":"Name","value":"syncStatus"}},{"kind":"Field","name":{"kind":"Name","value":"syncStage"}},{"kind":"Field","name":{"kind":"Name","value":"syncStageStartedAt"}},{"kind":"Field","name":{"kind":"Name","value":"isContactAutoCreationEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"contactAutoCreationPolicy"}},{"kind":"Field","name":{"kind":"Name","value":"isSyncEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"connectedAccountId"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}}]}}]}}]} as unknown as DocumentNode<MyCalendarChannelsQuery, MyCalendarChannelsQueryVariables>;
|
||||
export const MyConnectedAccountsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"MyConnectedAccounts"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"myConnectedAccounts"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"handle"}},{"kind":"Field","name":{"kind":"Name","value":"provider"}},{"kind":"Field","name":{"kind":"Name","value":"authFailedAt"}},{"kind":"Field","name":{"kind":"Name","value":"scopes"}},{"kind":"Field","name":{"kind":"Name","value":"handleAliases"}},{"kind":"Field","name":{"kind":"Name","value":"lastSignedInAt"}},{"kind":"Field","name":{"kind":"Name","value":"userWorkspaceId"}},{"kind":"Field","name":{"kind":"Name","value":"connectionParameters"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"IMAP"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"host"}},{"kind":"Field","name":{"kind":"Name","value":"port"}},{"kind":"Field","name":{"kind":"Name","value":"secure"}},{"kind":"Field","name":{"kind":"Name","value":"username"}},{"kind":"Field","name":{"kind":"Name","value":"password"}}]}},{"kind":"Field","name":{"kind":"Name","value":"SMTP"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"host"}},{"kind":"Field","name":{"kind":"Name","value":"port"}},{"kind":"Field","name":{"kind":"Name","value":"secure"}},{"kind":"Field","name":{"kind":"Name","value":"username"}},{"kind":"Field","name":{"kind":"Name","value":"password"}}]}},{"kind":"Field","name":{"kind":"Name","value":"CALDAV"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"host"}},{"kind":"Field","name":{"kind":"Name","value":"username"}},{"kind":"Field","name":{"kind":"Name","value":"password"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}}]}}]}}]} as unknown as DocumentNode<MyConnectedAccountsQuery, MyConnectedAccountsQueryVariables>;
|
||||
@@ -8430,6 +8514,8 @@ export const RemoveAiProviderDocument = {"kind":"Document","definitions":[{"kind
|
||||
export const RemoveModelFromProviderDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"RemoveModelFromProvider"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"providerName"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"modelName"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"removeModelFromProvider"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"providerName"},"value":{"kind":"Variable","name":{"kind":"Name","value":"providerName"}}},{"kind":"Argument","name":{"kind":"Name","value":"modelName"},"value":{"kind":"Variable","name":{"kind":"Name","value":"modelName"}}}]}]}}]} as unknown as DocumentNode<RemoveModelFromProviderMutation, RemoveModelFromProviderMutationVariables>;
|
||||
export const SetAdminAiModelEnabledDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"SetAdminAiModelEnabled"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"modelId"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"enabled"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"setAdminAiModelEnabled"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"modelId"},"value":{"kind":"Variable","name":{"kind":"Name","value":"modelId"}}},{"kind":"Argument","name":{"kind":"Name","value":"enabled"},"value":{"kind":"Variable","name":{"kind":"Name","value":"enabled"}}}]}]}}]} as unknown as DocumentNode<SetAdminAiModelEnabledMutation, SetAdminAiModelEnabledMutationVariables>;
|
||||
export const SetAdminAiModelRecommendedDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"SetAdminAiModelRecommended"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"modelId"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"recommended"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"setAdminAiModelRecommended"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"modelId"},"value":{"kind":"Variable","name":{"kind":"Name","value":"modelId"}}},{"kind":"Argument","name":{"kind":"Name","value":"recommended"},"value":{"kind":"Variable","name":{"kind":"Name","value":"recommended"}}}]}]}}]} as unknown as DocumentNode<SetAdminAiModelRecommendedMutation, SetAdminAiModelRecommendedMutationVariables>;
|
||||
export const SetAdminAiModelsEnabledDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"SetAdminAiModelsEnabled"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"modelIds"}},"type":{"kind":"NonNullType","type":{"kind":"ListType","type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"enabled"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"setAdminAiModelsEnabled"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"modelIds"},"value":{"kind":"Variable","name":{"kind":"Name","value":"modelIds"}}},{"kind":"Argument","name":{"kind":"Name","value":"enabled"},"value":{"kind":"Variable","name":{"kind":"Name","value":"enabled"}}}]}]}}]} as unknown as DocumentNode<SetAdminAiModelsEnabledMutation, SetAdminAiModelsEnabledMutationVariables>;
|
||||
export const SetAdminAiModelsRecommendedDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"SetAdminAiModelsRecommended"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"modelIds"}},"type":{"kind":"NonNullType","type":{"kind":"ListType","type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"recommended"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"setAdminAiModelsRecommended"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"modelIds"},"value":{"kind":"Variable","name":{"kind":"Name","value":"modelIds"}}},{"kind":"Argument","name":{"kind":"Name","value":"recommended"},"value":{"kind":"Variable","name":{"kind":"Name","value":"recommended"}}}]}]}}]} as unknown as DocumentNode<SetAdminAiModelsRecommendedMutation, SetAdminAiModelsRecommendedMutationVariables>;
|
||||
export const SetAdminDefaultAiModelDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"SetAdminDefaultAiModel"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"role"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"AiModelRole"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"modelId"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"setAdminDefaultAiModel"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"role"},"value":{"kind":"Variable","name":{"kind":"Name","value":"role"}}},{"kind":"Argument","name":{"kind":"Name","value":"modelId"},"value":{"kind":"Variable","name":{"kind":"Name","value":"modelId"}}}]}]}}]} as unknown as DocumentNode<SetAdminDefaultAiModelMutation, SetAdminDefaultAiModelMutationVariables>;
|
||||
export const GetAdminAiModelsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"GetAdminAiModels"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"getAdminAiModels"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"defaultSmartModelId"}},{"kind":"Field","name":{"kind":"Name","value":"defaultFastModelId"}},{"kind":"Field","name":{"kind":"Name","value":"models"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"modelId"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"modelFamily"}},{"kind":"Field","name":{"kind":"Name","value":"sdkPackage"}},{"kind":"Field","name":{"kind":"Name","value":"isAvailable"}},{"kind":"Field","name":{"kind":"Name","value":"isAdminEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"isDeprecated"}},{"kind":"Field","name":{"kind":"Name","value":"isRecommended"}},{"kind":"Field","name":{"kind":"Name","value":"contextWindowTokens"}},{"kind":"Field","name":{"kind":"Name","value":"maxOutputTokens"}},{"kind":"Field","name":{"kind":"Name","value":"inputCostPerMillionTokens"}},{"kind":"Field","name":{"kind":"Name","value":"outputCostPerMillionTokens"}},{"kind":"Field","name":{"kind":"Name","value":"providerName"}},{"kind":"Field","name":{"kind":"Name","value":"providerLabel"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"dataResidency"}}]}}]}}]}}]} as unknown as DocumentNode<GetAdminAiModelsQuery, GetAdminAiModelsQueryVariables>;
|
||||
export const GetAdminAiUsageByWorkspaceDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"GetAdminAiUsageByWorkspace"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"periodStart"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DateTime"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"periodEnd"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"DateTime"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"getAdminAiUsageByWorkspace"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"periodStart"},"value":{"kind":"Variable","name":{"kind":"Name","value":"periodStart"}}},{"kind":"Argument","name":{"kind":"Name","value":"periodEnd"},"value":{"kind":"Variable","name":{"kind":"Name","value":"periodEnd"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"key"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"creditsUsed"}}]}}]}}]} as unknown as DocumentNode<GetAdminAiUsageByWorkspaceQuery, GetAdminAiUsageByWorkspaceQueryVariables>;
|
||||
|
||||
@@ -1958,6 +1958,11 @@ 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."
|
||||
@@ -3345,11 +3350,6 @@ 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"
|
||||
@@ -3395,6 +3395,11 @@ 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."
|
||||
@@ -3523,7 +3528,7 @@ msgstr "Inhoud"
|
||||
|
||||
#. js-lingui-id: M73whl
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
@@ -3721,21 +3726,16 @@ 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)"
|
||||
@@ -4325,7 +4325,7 @@ msgid "Data on display"
|
||||
msgstr "Data op vertoon"
|
||||
|
||||
#. js-lingui-id: Ix/CMz
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Data residency"
|
||||
msgstr "Data-ligging"
|
||||
|
||||
@@ -4488,6 +4488,7 @@ 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"
|
||||
@@ -4826,6 +4827,11 @@ 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
|
||||
@@ -4883,7 +4889,7 @@ msgid "Detach"
|
||||
msgstr "Ontkoppel"
|
||||
|
||||
#. js-lingui-id: URmyfc
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Details"
|
||||
msgstr "Besonderhede"
|
||||
@@ -5318,6 +5324,8 @@ 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"
|
||||
|
||||
@@ -6073,8 +6081,8 @@ msgid "Evaluations"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 0pC/y6
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/modules/activities/calendar/components/CalendarEventDetails.tsx
|
||||
msgid "Event"
|
||||
msgstr "Geleentheid"
|
||||
@@ -6193,6 +6201,11 @@ 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"
|
||||
@@ -6522,6 +6535,8 @@ 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"
|
||||
@@ -6531,6 +6546,11 @@ 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"
|
||||
@@ -7021,6 +7041,11 @@ 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"
|
||||
@@ -8445,6 +8470,11 @@ 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
|
||||
@@ -8879,7 +8909,7 @@ msgstr "Maksimum invoer kapasiteit: {formatSpreadsheetMaxRecordImportCapacity} r
|
||||
|
||||
#. js-lingui-id: S8w4XA
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Max output"
|
||||
msgstr "Maksimum uitset"
|
||||
|
||||
@@ -8989,6 +9019,11 @@ 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"
|
||||
@@ -9115,7 +9150,6 @@ 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"
|
||||
@@ -9340,12 +9374,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"
|
||||
|
||||
@@ -10010,6 +10044,12 @@ 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"
|
||||
@@ -10021,11 +10061,6 @@ 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
|
||||
@@ -10339,7 +10374,7 @@ msgid "Object Events"
|
||||
msgstr "Objekgebeurtenisse"
|
||||
|
||||
#. js-lingui-id: 79D4Az
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Object ID"
|
||||
msgstr "Objek-ID"
|
||||
|
||||
@@ -11293,8 +11328,8 @@ msgid "Prompt"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: l/UFPv
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Properties"
|
||||
msgstr "Eienskappe"
|
||||
|
||||
@@ -11317,8 +11352,8 @@ msgstr "Verskaf jou OIDC verskafferdetaljes"
|
||||
|
||||
#. js-lingui-id: aemBRq
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Provider"
|
||||
msgstr "Verskaffer"
|
||||
|
||||
@@ -11544,7 +11579,7 @@ msgid "Record filter rule options"
|
||||
msgstr "Opsies vir rekordfilterreël"
|
||||
|
||||
#. js-lingui-id: xSAYIn
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
|
||||
msgid "Record ID"
|
||||
msgstr "Rekord-ID"
|
||||
@@ -11940,7 +11975,7 @@ msgid "Reset variable"
|
||||
msgstr "Herstel veranderlike"
|
||||
|
||||
#. js-lingui-id: esl+Tv
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Resource Type"
|
||||
msgstr "Hulpbrontipe"
|
||||
|
||||
@@ -14356,9 +14391,10 @@ msgid "Timeout"
|
||||
msgstr "Tydsverloop"
|
||||
|
||||
#. js-lingui-id: 8TMaZI
|
||||
#: 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/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/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
|
||||
msgid "Timestamp"
|
||||
msgstr "Tydstempel"
|
||||
@@ -15202,9 +15238,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/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.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/profile/appearance/components/SettingsExperience.tsx
|
||||
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
|
||||
@@ -1958,6 +1958,11 @@ 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."
|
||||
@@ -3345,11 +3350,6 @@ 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"
|
||||
@@ -3395,6 +3395,11 @@ 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."
|
||||
@@ -3523,7 +3528,7 @@ msgstr "المحتوى"
|
||||
|
||||
#. js-lingui-id: M73whl
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
@@ -3721,21 +3726,16 @@ 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)"
|
||||
@@ -4325,7 +4325,7 @@ msgid "Data on display"
|
||||
msgstr "البيانات المعروضة"
|
||||
|
||||
#. js-lingui-id: Ix/CMz
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Data residency"
|
||||
msgstr "إقامة البيانات"
|
||||
|
||||
@@ -4488,6 +4488,7 @@ 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"
|
||||
@@ -4826,6 +4827,11 @@ 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
|
||||
@@ -4883,7 +4889,7 @@ msgid "Detach"
|
||||
msgstr "فصل"
|
||||
|
||||
#. js-lingui-id: URmyfc
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Details"
|
||||
msgstr "تفاصيل"
|
||||
@@ -5318,6 +5324,8 @@ 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 "محرر"
|
||||
|
||||
@@ -6073,8 +6081,8 @@ msgid "Evaluations"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 0pC/y6
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/modules/activities/calendar/components/CalendarEventDetails.tsx
|
||||
msgid "Event"
|
||||
msgstr "حدث"
|
||||
@@ -6193,6 +6201,11 @@ 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"
|
||||
@@ -6522,6 +6535,8 @@ 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 "فشل في تحديث توفر النموذج"
|
||||
@@ -6531,6 +6546,11 @@ 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"
|
||||
@@ -7021,6 +7041,11 @@ 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"
|
||||
@@ -8445,6 +8470,11 @@ 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
|
||||
@@ -8879,7 +8909,7 @@ msgstr "الحد الأقصى لقدرة الاستيراد: {formatSpreadsheetM
|
||||
|
||||
#. js-lingui-id: S8w4XA
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Max output"
|
||||
msgstr "الحد الأقصى للمخرجات"
|
||||
|
||||
@@ -8989,6 +9019,11 @@ 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"
|
||||
@@ -9115,7 +9150,6 @@ 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 "النماذج"
|
||||
@@ -9340,12 +9374,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 "الاسم"
|
||||
|
||||
@@ -10010,6 +10044,12 @@ 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"
|
||||
@@ -10021,11 +10061,6 @@ 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
|
||||
@@ -10339,7 +10374,7 @@ msgid "Object Events"
|
||||
msgstr "أحداث الكائنات"
|
||||
|
||||
#. js-lingui-id: 79D4Az
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Object ID"
|
||||
msgstr "معرّف الكائن"
|
||||
|
||||
@@ -11293,8 +11328,8 @@ msgid "Prompt"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: l/UFPv
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Properties"
|
||||
msgstr "الخصائص"
|
||||
|
||||
@@ -11317,8 +11352,8 @@ msgstr "قدّم تفاصيل موفّر OIDC الخاص بك"
|
||||
|
||||
#. js-lingui-id: aemBRq
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Provider"
|
||||
msgstr "المزود"
|
||||
|
||||
@@ -11544,7 +11579,7 @@ msgid "Record filter rule options"
|
||||
msgstr "خيارات قواعد تصفية السجل"
|
||||
|
||||
#. js-lingui-id: xSAYIn
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
|
||||
msgid "Record ID"
|
||||
msgstr "معرّف السجل"
|
||||
@@ -11940,7 +11975,7 @@ msgid "Reset variable"
|
||||
msgstr "إعادة تعيين المتغير"
|
||||
|
||||
#. js-lingui-id: esl+Tv
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Resource Type"
|
||||
msgstr "نوع المورد"
|
||||
|
||||
@@ -14356,9 +14391,10 @@ msgid "Timeout"
|
||||
msgstr "المهلة"
|
||||
|
||||
#. js-lingui-id: 8TMaZI
|
||||
#: 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/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/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
|
||||
msgid "Timestamp"
|
||||
msgstr "الطابع الزمني"
|
||||
@@ -15202,9 +15238,9 @@ msgstr "مفيد لجداول الربط/المحورية"
|
||||
#. js-lingui-id: 7PzzBU
|
||||
#: src/pages/settings/SettingsTwoFactorAuthenticationMethod.tsx
|
||||
#: src/pages/settings/SettingsProfile.tsx
|
||||
#: 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/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/profile/appearance/components/SettingsExperience.tsx
|
||||
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
|
||||
@@ -1958,6 +1958,11 @@ 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."
|
||||
@@ -3345,11 +3350,6 @@ 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"
|
||||
@@ -3395,6 +3395,11 @@ 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."
|
||||
@@ -3523,7 +3528,7 @@ msgstr "Contingut"
|
||||
|
||||
#. js-lingui-id: M73whl
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
@@ -3721,21 +3726,16 @@ 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)"
|
||||
@@ -4325,7 +4325,7 @@ msgid "Data on display"
|
||||
msgstr "Dades a mostrar"
|
||||
|
||||
#. js-lingui-id: Ix/CMz
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Data residency"
|
||||
msgstr "Residència de dades"
|
||||
|
||||
@@ -4488,6 +4488,7 @@ 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"
|
||||
@@ -4826,6 +4827,11 @@ 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
|
||||
@@ -4883,7 +4889,7 @@ msgid "Detach"
|
||||
msgstr "Desvincula"
|
||||
|
||||
#. js-lingui-id: URmyfc
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Details"
|
||||
msgstr "Detalls"
|
||||
@@ -5318,6 +5324,8 @@ 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"
|
||||
|
||||
@@ -6073,8 +6081,8 @@ msgid "Evaluations"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 0pC/y6
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/modules/activities/calendar/components/CalendarEventDetails.tsx
|
||||
msgid "Event"
|
||||
msgstr "Esdeveniment"
|
||||
@@ -6193,6 +6201,11 @@ 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"
|
||||
@@ -6522,6 +6535,8 @@ 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"
|
||||
@@ -6531,6 +6546,11 @@ 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"
|
||||
@@ -7021,6 +7041,11 @@ 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"
|
||||
@@ -8445,6 +8470,11 @@ 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
|
||||
@@ -8879,7 +8909,7 @@ msgstr "Capacitat màxima d'importació: {formatSpreadsheetMaxRecordImportCapaci
|
||||
|
||||
#. js-lingui-id: S8w4XA
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Max output"
|
||||
msgstr "Sortida màxima"
|
||||
|
||||
@@ -8989,6 +9019,11 @@ 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"
|
||||
@@ -9115,7 +9150,6 @@ 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"
|
||||
@@ -9340,12 +9374,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"
|
||||
|
||||
@@ -10010,6 +10044,12 @@ 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"
|
||||
@@ -10021,11 +10061,6 @@ 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
|
||||
@@ -10339,7 +10374,7 @@ msgid "Object Events"
|
||||
msgstr "Esdeveniments de l'objecte"
|
||||
|
||||
#. js-lingui-id: 79D4Az
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Object ID"
|
||||
msgstr "ID de l'objecte"
|
||||
|
||||
@@ -11293,8 +11328,8 @@ msgid "Prompt"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: l/UFPv
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Properties"
|
||||
msgstr "Propietats"
|
||||
|
||||
@@ -11317,8 +11352,8 @@ msgstr "Proporciona els detalls del teu proveïdor OIDC"
|
||||
|
||||
#. js-lingui-id: aemBRq
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Provider"
|
||||
msgstr "Proveïdor"
|
||||
|
||||
@@ -11544,7 +11579,7 @@ msgid "Record filter rule options"
|
||||
msgstr "Opcions de regles del filtre de registres"
|
||||
|
||||
#. js-lingui-id: xSAYIn
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
|
||||
msgid "Record ID"
|
||||
msgstr "ID del registre"
|
||||
@@ -11940,7 +11975,7 @@ msgid "Reset variable"
|
||||
msgstr "Restablir variable"
|
||||
|
||||
#. js-lingui-id: esl+Tv
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Resource Type"
|
||||
msgstr "Tipus de recurs"
|
||||
|
||||
@@ -14356,9 +14391,10 @@ msgid "Timeout"
|
||||
msgstr "Temps d'espera"
|
||||
|
||||
#. js-lingui-id: 8TMaZI
|
||||
#: 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/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/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
|
||||
msgid "Timestamp"
|
||||
msgstr "Marca de temps"
|
||||
@@ -15202,9 +15238,9 @@ msgstr "Útil per a taules pivot/d’enllaç"
|
||||
#. js-lingui-id: 7PzzBU
|
||||
#: src/pages/settings/SettingsTwoFactorAuthenticationMethod.tsx
|
||||
#: src/pages/settings/SettingsProfile.tsx
|
||||
#: 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/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/profile/appearance/components/SettingsExperience.tsx
|
||||
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
|
||||
@@ -1958,6 +1958,11 @@ 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."
|
||||
@@ -3345,11 +3350,6 @@ 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"
|
||||
@@ -3395,6 +3395,11 @@ 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."
|
||||
@@ -3523,7 +3528,7 @@ msgstr "Obsah"
|
||||
|
||||
#. js-lingui-id: M73whl
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
@@ -3721,21 +3726,16 @@ 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)"
|
||||
@@ -4325,7 +4325,7 @@ msgid "Data on display"
|
||||
msgstr "Data na displeji"
|
||||
|
||||
#. js-lingui-id: Ix/CMz
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Data residency"
|
||||
msgstr "Umístění dat"
|
||||
|
||||
@@ -4488,6 +4488,7 @@ 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"
|
||||
@@ -4826,6 +4827,11 @@ 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
|
||||
@@ -4883,7 +4889,7 @@ msgid "Detach"
|
||||
msgstr "Odpojit"
|
||||
|
||||
#. js-lingui-id: URmyfc
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Details"
|
||||
msgstr "Podrobnosti"
|
||||
@@ -5318,6 +5324,8 @@ 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"
|
||||
|
||||
@@ -6073,8 +6081,8 @@ msgid "Evaluations"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 0pC/y6
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/modules/activities/calendar/components/CalendarEventDetails.tsx
|
||||
msgid "Event"
|
||||
msgstr "Událost"
|
||||
@@ -6193,6 +6201,11 @@ 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"
|
||||
@@ -6522,6 +6535,8 @@ 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"
|
||||
@@ -6531,6 +6546,11 @@ 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"
|
||||
@@ -7021,6 +7041,11 @@ 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"
|
||||
@@ -8445,6 +8470,11 @@ 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
|
||||
@@ -8879,7 +8909,7 @@ msgstr "Maximální kapacita importu: {formatSpreadsheetMaxRecordImportCapacity}
|
||||
|
||||
#. js-lingui-id: S8w4XA
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Max output"
|
||||
msgstr "Maximální výstup"
|
||||
|
||||
@@ -8989,6 +9019,11 @@ 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"
|
||||
@@ -9115,7 +9150,6 @@ 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"
|
||||
@@ -9340,12 +9374,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"
|
||||
|
||||
@@ -10010,6 +10044,12 @@ 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"
|
||||
@@ -10021,11 +10061,6 @@ 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
|
||||
@@ -10339,7 +10374,7 @@ msgid "Object Events"
|
||||
msgstr "Události objektů"
|
||||
|
||||
#. js-lingui-id: 79D4Az
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Object ID"
|
||||
msgstr "ID objektu"
|
||||
|
||||
@@ -11293,8 +11328,8 @@ msgid "Prompt"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: l/UFPv
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Properties"
|
||||
msgstr "Vlastnosti"
|
||||
|
||||
@@ -11317,8 +11352,8 @@ msgstr "Uveďte údaje o vašem poskytovateli OIDC"
|
||||
|
||||
#. js-lingui-id: aemBRq
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Provider"
|
||||
msgstr "Poskytovatel"
|
||||
|
||||
@@ -11544,7 +11579,7 @@ msgid "Record filter rule options"
|
||||
msgstr "Možnosti pravidel filtru záznamu"
|
||||
|
||||
#. js-lingui-id: xSAYIn
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
|
||||
msgid "Record ID"
|
||||
msgstr "ID záznamu"
|
||||
@@ -11940,7 +11975,7 @@ msgid "Reset variable"
|
||||
msgstr "Obnovit proměnnou"
|
||||
|
||||
#. js-lingui-id: esl+Tv
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Resource Type"
|
||||
msgstr "Typ prostředku"
|
||||
|
||||
@@ -14356,9 +14391,10 @@ msgid "Timeout"
|
||||
msgstr "Časový limit"
|
||||
|
||||
#. js-lingui-id: 8TMaZI
|
||||
#: 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/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/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
|
||||
msgid "Timestamp"
|
||||
msgstr "Časové razítko"
|
||||
@@ -15202,9 +15238,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/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.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/profile/appearance/components/SettingsExperience.tsx
|
||||
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
|
||||
@@ -1958,6 +1958,11 @@ 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."
|
||||
@@ -3345,11 +3350,6 @@ 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"
|
||||
@@ -3395,6 +3395,11 @@ 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."
|
||||
@@ -3523,7 +3528,7 @@ msgstr "Indhold"
|
||||
|
||||
#. js-lingui-id: M73whl
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
@@ -3721,21 +3726,16 @@ 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)"
|
||||
@@ -4325,7 +4325,7 @@ msgid "Data on display"
|
||||
msgstr "Data på displayet"
|
||||
|
||||
#. js-lingui-id: Ix/CMz
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Data residency"
|
||||
msgstr "Datalokation"
|
||||
|
||||
@@ -4488,6 +4488,7 @@ 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"
|
||||
@@ -4826,6 +4827,11 @@ 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
|
||||
@@ -4883,7 +4889,7 @@ msgid "Detach"
|
||||
msgstr "Fjern tilknytning"
|
||||
|
||||
#. js-lingui-id: URmyfc
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Details"
|
||||
msgstr "Detaljer"
|
||||
@@ -5318,6 +5324,8 @@ 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"
|
||||
|
||||
@@ -6073,8 +6081,8 @@ msgid "Evaluations"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 0pC/y6
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/modules/activities/calendar/components/CalendarEventDetails.tsx
|
||||
msgid "Event"
|
||||
msgstr "Begivenhed"
|
||||
@@ -6193,6 +6201,11 @@ 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"
|
||||
@@ -6522,6 +6535,8 @@ 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"
|
||||
@@ -6531,6 +6546,11 @@ 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"
|
||||
@@ -7021,6 +7041,11 @@ 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"
|
||||
@@ -8445,6 +8470,11 @@ 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
|
||||
@@ -8879,7 +8909,7 @@ msgstr "Maksimal importkapacitet: {formatSpreadsheetMaxRecordImportCapacity} pos
|
||||
|
||||
#. js-lingui-id: S8w4XA
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Max output"
|
||||
msgstr "Maksimalt output"
|
||||
|
||||
@@ -8989,6 +9019,11 @@ 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"
|
||||
@@ -9115,7 +9150,6 @@ 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"
|
||||
@@ -9340,12 +9374,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"
|
||||
|
||||
@@ -10010,6 +10044,12 @@ 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"
|
||||
@@ -10021,11 +10061,6 @@ 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
|
||||
@@ -10339,7 +10374,7 @@ msgid "Object Events"
|
||||
msgstr "Objekthændelser"
|
||||
|
||||
#. js-lingui-id: 79D4Az
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Object ID"
|
||||
msgstr "Objekt-ID"
|
||||
|
||||
@@ -11293,8 +11328,8 @@ msgid "Prompt"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: l/UFPv
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Properties"
|
||||
msgstr "Egenskaber"
|
||||
|
||||
@@ -11317,8 +11352,8 @@ msgstr "Angiv dine OIDC-udbyderdetaljer"
|
||||
|
||||
#. js-lingui-id: aemBRq
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Provider"
|
||||
msgstr "Udbyder"
|
||||
|
||||
@@ -11544,7 +11579,7 @@ msgid "Record filter rule options"
|
||||
msgstr "Indstillinger for postfilterregler"
|
||||
|
||||
#. js-lingui-id: xSAYIn
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
|
||||
msgid "Record ID"
|
||||
msgstr "Post-ID"
|
||||
@@ -11940,7 +11975,7 @@ msgid "Reset variable"
|
||||
msgstr "Nulstil variabel"
|
||||
|
||||
#. js-lingui-id: esl+Tv
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Resource Type"
|
||||
msgstr "Ressourcetype"
|
||||
|
||||
@@ -14358,9 +14393,10 @@ msgid "Timeout"
|
||||
msgstr "Tidsgrænse"
|
||||
|
||||
#. js-lingui-id: 8TMaZI
|
||||
#: 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/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/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
|
||||
msgid "Timestamp"
|
||||
msgstr "Tidstempel"
|
||||
@@ -15204,9 +15240,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/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.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/profile/appearance/components/SettingsExperience.tsx
|
||||
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
|
||||
@@ -1958,6 +1958,11 @@ 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."
|
||||
@@ -3345,11 +3350,6 @@ 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"
|
||||
@@ -3395,6 +3395,11 @@ 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."
|
||||
@@ -3523,7 +3528,7 @@ msgstr "Inhalt"
|
||||
|
||||
#. js-lingui-id: M73whl
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
@@ -3721,21 +3726,16 @@ 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)"
|
||||
@@ -4325,7 +4325,7 @@ msgid "Data on display"
|
||||
msgstr "Angezeigte Daten"
|
||||
|
||||
#. js-lingui-id: Ix/CMz
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Data residency"
|
||||
msgstr "Datenresidenz"
|
||||
|
||||
@@ -4488,6 +4488,7 @@ 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"
|
||||
@@ -4826,6 +4827,11 @@ 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
|
||||
@@ -4883,7 +4889,7 @@ msgid "Detach"
|
||||
msgstr "Trennen"
|
||||
|
||||
#. js-lingui-id: URmyfc
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Details"
|
||||
msgstr "Details"
|
||||
@@ -5318,6 +5324,8 @@ 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"
|
||||
|
||||
@@ -6073,8 +6081,8 @@ msgid "Evaluations"
|
||||
msgstr "Auswertung"
|
||||
|
||||
#. js-lingui-id: 0pC/y6
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/modules/activities/calendar/components/CalendarEventDetails.tsx
|
||||
msgid "Event"
|
||||
msgstr "Ereignis"
|
||||
@@ -6193,6 +6201,11 @@ 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"
|
||||
@@ -6522,6 +6535,8 @@ 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"
|
||||
@@ -6531,6 +6546,11 @@ 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"
|
||||
@@ -7021,6 +7041,11 @@ 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"
|
||||
@@ -8445,6 +8470,11 @@ 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
|
||||
@@ -8879,7 +8909,7 @@ msgstr "Maximale Importkapazität: {formatSpreadsheetMaxRecordImportCapacity} Da
|
||||
|
||||
#. js-lingui-id: S8w4XA
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Max output"
|
||||
msgstr "Maximale Ausgabe"
|
||||
|
||||
@@ -8989,6 +9019,11 @@ 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"
|
||||
@@ -9115,7 +9150,6 @@ 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"
|
||||
@@ -9340,12 +9374,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"
|
||||
|
||||
@@ -10010,6 +10044,12 @@ 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"
|
||||
@@ -10021,11 +10061,6 @@ 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
|
||||
@@ -10339,7 +10374,7 @@ msgid "Object Events"
|
||||
msgstr "Objekt-Ereignisse"
|
||||
|
||||
#. js-lingui-id: 79D4Az
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Object ID"
|
||||
msgstr "Objekt-ID"
|
||||
|
||||
@@ -11293,8 +11328,8 @@ msgid "Prompt"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: l/UFPv
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Properties"
|
||||
msgstr "Eigenschaften"
|
||||
|
||||
@@ -11317,8 +11352,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/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Provider"
|
||||
msgstr "Anbieter"
|
||||
|
||||
@@ -11544,7 +11579,7 @@ msgid "Record filter rule options"
|
||||
msgstr "Optionen für Datensatzfilterregel"
|
||||
|
||||
#. js-lingui-id: xSAYIn
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
|
||||
msgid "Record ID"
|
||||
msgstr "Datensatz-ID"
|
||||
@@ -11940,7 +11975,7 @@ msgid "Reset variable"
|
||||
msgstr "Variable zurücksetzen"
|
||||
|
||||
#. js-lingui-id: esl+Tv
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Resource Type"
|
||||
msgstr "Ressourcentyp"
|
||||
|
||||
@@ -14356,9 +14391,10 @@ msgid "Timeout"
|
||||
msgstr "Zeitlimit"
|
||||
|
||||
#. js-lingui-id: 8TMaZI
|
||||
#: 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/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/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
|
||||
msgid "Timestamp"
|
||||
msgstr "Zeitstempel"
|
||||
@@ -15202,9 +15238,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/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.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/profile/appearance/components/SettingsExperience.tsx
|
||||
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
|
||||
@@ -1958,6 +1958,11 @@ 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."
|
||||
@@ -3345,11 +3350,6 @@ 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"
|
||||
@@ -3395,6 +3395,11 @@ 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."
|
||||
@@ -3523,7 +3528,7 @@ msgstr "Περιεχόμενο"
|
||||
|
||||
#. js-lingui-id: M73whl
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
@@ -3721,21 +3726,16 @@ 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)"
|
||||
@@ -4325,7 +4325,7 @@ msgid "Data on display"
|
||||
msgstr "Δεδομένα στην οθόνη"
|
||||
|
||||
#. js-lingui-id: Ix/CMz
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Data residency"
|
||||
msgstr "Τοποθεσία δεδομένων"
|
||||
|
||||
@@ -4488,6 +4488,7 @@ 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"
|
||||
@@ -4826,6 +4827,11 @@ 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
|
||||
@@ -4883,7 +4889,7 @@ msgid "Detach"
|
||||
msgstr "Αποσύνδεση"
|
||||
|
||||
#. js-lingui-id: URmyfc
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Details"
|
||||
msgstr "Λεπτομέρειες"
|
||||
@@ -5318,6 +5324,8 @@ 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 "Επεξεργαστής"
|
||||
|
||||
@@ -6073,8 +6081,8 @@ msgid "Evaluations"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 0pC/y6
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/modules/activities/calendar/components/CalendarEventDetails.tsx
|
||||
msgid "Event"
|
||||
msgstr "Συμβάν"
|
||||
@@ -6193,6 +6201,11 @@ 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"
|
||||
@@ -6522,6 +6535,8 @@ 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 "Αποτυχία ενημέρωσης διαθεσιμότητας μοντέλου"
|
||||
@@ -6531,6 +6546,11 @@ 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"
|
||||
@@ -7021,6 +7041,11 @@ 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"
|
||||
@@ -8445,6 +8470,11 @@ 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
|
||||
@@ -8879,7 +8909,7 @@ msgstr "Ανώτατη χωρητικότητα εισαγωγής: {formatSprea
|
||||
|
||||
#. js-lingui-id: S8w4XA
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Max output"
|
||||
msgstr "Μέγιστη έξοδος"
|
||||
|
||||
@@ -8989,6 +9019,11 @@ 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"
|
||||
@@ -9115,7 +9150,6 @@ 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 "Μοντέλα"
|
||||
@@ -9340,12 +9374,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 "Όνομα"
|
||||
|
||||
@@ -10010,6 +10044,12 @@ 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"
|
||||
@@ -10021,11 +10061,6 @@ 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
|
||||
@@ -10339,7 +10374,7 @@ msgid "Object Events"
|
||||
msgstr "Συμβάντα αντικειμένων"
|
||||
|
||||
#. js-lingui-id: 79D4Az
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Object ID"
|
||||
msgstr "Αναγνωριστικό αντικειμένου"
|
||||
|
||||
@@ -11293,8 +11328,8 @@ msgid "Prompt"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: l/UFPv
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Properties"
|
||||
msgstr "Ιδιότητες"
|
||||
|
||||
@@ -11317,8 +11352,8 @@ msgstr "Παρέχετε τις λεπτομέρειες του παρόχου O
|
||||
|
||||
#. js-lingui-id: aemBRq
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Provider"
|
||||
msgstr "Πάροχος"
|
||||
|
||||
@@ -11544,7 +11579,7 @@ msgid "Record filter rule options"
|
||||
msgstr "Επιλογές κανόνα φίλτρου εγγραφών"
|
||||
|
||||
#. js-lingui-id: xSAYIn
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
|
||||
msgid "Record ID"
|
||||
msgstr "Αναγνωριστικό εγγραφής"
|
||||
@@ -11940,7 +11975,7 @@ msgid "Reset variable"
|
||||
msgstr "Επαναφορά μεταβλητής"
|
||||
|
||||
#. js-lingui-id: esl+Tv
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Resource Type"
|
||||
msgstr "Τύπος πόρου"
|
||||
|
||||
@@ -14360,9 +14395,10 @@ msgid "Timeout"
|
||||
msgstr "Χρονικό όριο"
|
||||
|
||||
#. js-lingui-id: 8TMaZI
|
||||
#: 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/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/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
|
||||
msgid "Timestamp"
|
||||
msgstr "Χρονική Σήμανση"
|
||||
@@ -15206,9 +15242,9 @@ msgstr "Χρήσιμο για πίνακες pivot/junction"
|
||||
#. js-lingui-id: 7PzzBU
|
||||
#: src/pages/settings/SettingsTwoFactorAuthenticationMethod.tsx
|
||||
#: src/pages/settings/SettingsProfile.tsx
|
||||
#: 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/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/profile/appearance/components/SettingsExperience.tsx
|
||||
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
|
||||
@@ -1953,6 +1953,11 @@ 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."
|
||||
@@ -3340,11 +3345,6 @@ 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"
|
||||
@@ -3390,6 +3390,11 @@ 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."
|
||||
@@ -3518,7 +3523,7 @@ msgstr "Content"
|
||||
|
||||
#. js-lingui-id: M73whl
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
@@ -3716,21 +3721,16 @@ 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)"
|
||||
@@ -4320,7 +4320,7 @@ msgid "Data on display"
|
||||
msgstr "Data on display"
|
||||
|
||||
#. js-lingui-id: Ix/CMz
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Data residency"
|
||||
msgstr "Data residency"
|
||||
|
||||
@@ -4483,6 +4483,7 @@ 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"
|
||||
@@ -4821,6 +4822,11 @@ 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
|
||||
@@ -4878,7 +4884,7 @@ msgid "Detach"
|
||||
msgstr "Detach"
|
||||
|
||||
#. js-lingui-id: URmyfc
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Details"
|
||||
msgstr "Details"
|
||||
@@ -5313,6 +5319,8 @@ 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"
|
||||
|
||||
@@ -6068,8 +6076,8 @@ msgid "Evaluations"
|
||||
msgstr "Evaluations"
|
||||
|
||||
#. js-lingui-id: 0pC/y6
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/modules/activities/calendar/components/CalendarEventDetails.tsx
|
||||
msgid "Event"
|
||||
msgstr "Event"
|
||||
@@ -6188,6 +6196,11 @@ 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"
|
||||
@@ -6517,6 +6530,8 @@ 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"
|
||||
@@ -6526,6 +6541,11 @@ 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"
|
||||
@@ -7016,6 +7036,11 @@ 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"
|
||||
@@ -8440,6 +8465,11 @@ 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
|
||||
@@ -8874,7 +8904,7 @@ msgstr "Max import capacity: {formatSpreadsheetMaxRecordImportCapacity} records.
|
||||
|
||||
#. js-lingui-id: S8w4XA
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Max output"
|
||||
msgstr "Max output"
|
||||
|
||||
@@ -8984,6 +9014,11 @@ 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"
|
||||
@@ -9110,7 +9145,6 @@ 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"
|
||||
@@ -9335,12 +9369,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"
|
||||
|
||||
@@ -10005,6 +10039,12 @@ 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"
|
||||
@@ -10016,11 +10056,6 @@ 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
|
||||
@@ -10334,7 +10369,7 @@ msgid "Object Events"
|
||||
msgstr "Object Events"
|
||||
|
||||
#. js-lingui-id: 79D4Az
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Object ID"
|
||||
msgstr "Object ID"
|
||||
|
||||
@@ -11288,8 +11323,8 @@ msgid "Prompt"
|
||||
msgstr "Prompt"
|
||||
|
||||
#. js-lingui-id: l/UFPv
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Properties"
|
||||
msgstr "Properties"
|
||||
|
||||
@@ -11312,8 +11347,8 @@ msgstr "Provide your OIDC provider details"
|
||||
|
||||
#. js-lingui-id: aemBRq
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Provider"
|
||||
msgstr "Provider"
|
||||
|
||||
@@ -11539,7 +11574,7 @@ msgid "Record filter rule options"
|
||||
msgstr "Record filter rule options"
|
||||
|
||||
#. js-lingui-id: xSAYIn
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
|
||||
msgid "Record ID"
|
||||
msgstr "Record ID"
|
||||
@@ -11935,7 +11970,7 @@ msgid "Reset variable"
|
||||
msgstr "Reset variable"
|
||||
|
||||
#. js-lingui-id: esl+Tv
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Resource Type"
|
||||
msgstr "Resource Type"
|
||||
|
||||
@@ -14353,9 +14388,10 @@ msgid "Timeout"
|
||||
msgstr "Timeout"
|
||||
|
||||
#. js-lingui-id: 8TMaZI
|
||||
#: 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/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/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
|
||||
msgid "Timestamp"
|
||||
msgstr "Timestamp"
|
||||
@@ -15199,9 +15235,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/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.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/profile/appearance/components/SettingsExperience.tsx
|
||||
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
|
||||
@@ -1958,6 +1958,11 @@ 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."
|
||||
@@ -3345,11 +3350,6 @@ 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"
|
||||
@@ -3395,6 +3395,11 @@ 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."
|
||||
@@ -3523,7 +3528,7 @@ msgstr "Contenido"
|
||||
|
||||
#. js-lingui-id: M73whl
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
@@ -3721,21 +3726,16 @@ 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)"
|
||||
@@ -4325,7 +4325,7 @@ msgid "Data on display"
|
||||
msgstr "Datos en pantalla"
|
||||
|
||||
#. js-lingui-id: Ix/CMz
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Data residency"
|
||||
msgstr "Residencia de datos"
|
||||
|
||||
@@ -4488,6 +4488,7 @@ 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"
|
||||
@@ -4826,6 +4827,11 @@ 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
|
||||
@@ -4883,7 +4889,7 @@ msgid "Detach"
|
||||
msgstr "Desvincular"
|
||||
|
||||
#. js-lingui-id: URmyfc
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Details"
|
||||
msgstr "Detalles"
|
||||
@@ -5318,6 +5324,8 @@ 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"
|
||||
|
||||
@@ -6073,8 +6081,8 @@ msgid "Evaluations"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 0pC/y6
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/modules/activities/calendar/components/CalendarEventDetails.tsx
|
||||
msgid "Event"
|
||||
msgstr "Evento"
|
||||
@@ -6193,6 +6201,11 @@ 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"
|
||||
@@ -6522,6 +6535,8 @@ 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"
|
||||
@@ -6531,6 +6546,11 @@ 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"
|
||||
@@ -7021,6 +7041,11 @@ 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"
|
||||
@@ -8445,6 +8470,11 @@ 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
|
||||
@@ -8879,7 +8909,7 @@ msgstr "Capacidad máxima de importación: {formatSpreadsheetMaxRecordImportCapa
|
||||
|
||||
#. js-lingui-id: S8w4XA
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Max output"
|
||||
msgstr "Salida máxima"
|
||||
|
||||
@@ -8989,6 +9019,11 @@ 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"
|
||||
@@ -9115,7 +9150,6 @@ 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"
|
||||
@@ -9340,12 +9374,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"
|
||||
|
||||
@@ -10010,6 +10044,12 @@ 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"
|
||||
@@ -10021,11 +10061,6 @@ 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
|
||||
@@ -10339,7 +10374,7 @@ msgid "Object Events"
|
||||
msgstr "Eventos de objetos"
|
||||
|
||||
#. js-lingui-id: 79D4Az
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Object ID"
|
||||
msgstr "ID del objeto"
|
||||
|
||||
@@ -11293,8 +11328,8 @@ msgid "Prompt"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: l/UFPv
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Properties"
|
||||
msgstr "Propiedades"
|
||||
|
||||
@@ -11317,8 +11352,8 @@ msgstr "Proporcione los detalles de su proveedor OIDC"
|
||||
|
||||
#. js-lingui-id: aemBRq
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Provider"
|
||||
msgstr "Proveedor"
|
||||
|
||||
@@ -11544,7 +11579,7 @@ msgid "Record filter rule options"
|
||||
msgstr "Opciones de reglas de filtro de registros"
|
||||
|
||||
#. js-lingui-id: xSAYIn
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
|
||||
msgid "Record ID"
|
||||
msgstr "ID de registro"
|
||||
@@ -11940,7 +11975,7 @@ msgid "Reset variable"
|
||||
msgstr "Restablecer variable"
|
||||
|
||||
#. js-lingui-id: esl+Tv
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Resource Type"
|
||||
msgstr "Tipo de recurso"
|
||||
|
||||
@@ -14358,9 +14393,10 @@ msgid "Timeout"
|
||||
msgstr "Tiempo de espera"
|
||||
|
||||
#. js-lingui-id: 8TMaZI
|
||||
#: 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/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/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
|
||||
msgid "Timestamp"
|
||||
msgstr "Marca de tiempo"
|
||||
@@ -15204,9 +15240,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/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.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/profile/appearance/components/SettingsExperience.tsx
|
||||
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
|
||||
@@ -1958,6 +1958,11 @@ 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."
|
||||
@@ -3345,11 +3350,6 @@ 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"
|
||||
@@ -3395,6 +3395,11 @@ 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."
|
||||
@@ -3523,7 +3528,7 @@ msgstr "Sisältö"
|
||||
|
||||
#. js-lingui-id: M73whl
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
@@ -3721,21 +3726,16 @@ 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)"
|
||||
@@ -4325,7 +4325,7 @@ msgid "Data on display"
|
||||
msgstr "Näytettävä data"
|
||||
|
||||
#. js-lingui-id: Ix/CMz
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Data residency"
|
||||
msgstr "Tietojen sijainti"
|
||||
|
||||
@@ -4488,6 +4488,7 @@ 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"
|
||||
@@ -4826,6 +4827,11 @@ 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
|
||||
@@ -4883,7 +4889,7 @@ msgid "Detach"
|
||||
msgstr "Irrota"
|
||||
|
||||
#. js-lingui-id: URmyfc
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Details"
|
||||
msgstr "Tiedot"
|
||||
@@ -5318,6 +5324,8 @@ 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"
|
||||
|
||||
@@ -6073,8 +6081,8 @@ msgid "Evaluations"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 0pC/y6
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/modules/activities/calendar/components/CalendarEventDetails.tsx
|
||||
msgid "Event"
|
||||
msgstr "Tapahtuma"
|
||||
@@ -6193,6 +6201,11 @@ 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"
|
||||
@@ -6522,6 +6535,8 @@ 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"
|
||||
@@ -6531,6 +6546,11 @@ 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"
|
||||
@@ -7021,6 +7041,11 @@ 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"
|
||||
@@ -8445,6 +8470,11 @@ 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
|
||||
@@ -8879,7 +8909,7 @@ msgstr "Enimmäistuontikapasiteetti: {formatSpreadsheetMaxRecordImportCapacity}
|
||||
|
||||
#. js-lingui-id: S8w4XA
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Max output"
|
||||
msgstr "Enimmäistuloste"
|
||||
|
||||
@@ -8989,6 +9019,11 @@ 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"
|
||||
@@ -9115,7 +9150,6 @@ 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"
|
||||
@@ -9340,12 +9374,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"
|
||||
|
||||
@@ -10010,6 +10044,12 @@ 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"
|
||||
@@ -10021,11 +10061,6 @@ 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
|
||||
@@ -10339,7 +10374,7 @@ msgid "Object Events"
|
||||
msgstr "Objektitapahtumat"
|
||||
|
||||
#. js-lingui-id: 79D4Az
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Object ID"
|
||||
msgstr "Objektin ID"
|
||||
|
||||
@@ -11293,8 +11328,8 @@ msgid "Prompt"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: l/UFPv
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Properties"
|
||||
msgstr "Ominaisuudet"
|
||||
|
||||
@@ -11317,8 +11352,8 @@ msgstr "Anna OIDC-tarjoajan tiedot"
|
||||
|
||||
#. js-lingui-id: aemBRq
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Provider"
|
||||
msgstr "Tarjoaja"
|
||||
|
||||
@@ -11544,7 +11579,7 @@ msgid "Record filter rule options"
|
||||
msgstr "Tietuesuodattimen säännön valinnat"
|
||||
|
||||
#. js-lingui-id: xSAYIn
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
|
||||
msgid "Record ID"
|
||||
msgstr "Tietueen ID"
|
||||
@@ -11940,7 +11975,7 @@ msgid "Reset variable"
|
||||
msgstr "Palauta muuttuja"
|
||||
|
||||
#. js-lingui-id: esl+Tv
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Resource Type"
|
||||
msgstr "Resurssityyppi"
|
||||
|
||||
@@ -14356,9 +14391,10 @@ msgid "Timeout"
|
||||
msgstr "Aikakatkaisu"
|
||||
|
||||
#. js-lingui-id: 8TMaZI
|
||||
#: 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/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/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
|
||||
msgid "Timestamp"
|
||||
msgstr "Aikaleima"
|
||||
@@ -15202,9 +15238,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/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.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/profile/appearance/components/SettingsExperience.tsx
|
||||
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
|
||||
@@ -1958,6 +1958,11 @@ 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."
|
||||
@@ -3345,11 +3350,6 @@ 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"
|
||||
@@ -3395,6 +3395,11 @@ 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."
|
||||
@@ -3523,7 +3528,7 @@ msgstr "Contenu"
|
||||
|
||||
#. js-lingui-id: M73whl
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
@@ -3721,21 +3726,16 @@ 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)"
|
||||
@@ -4325,7 +4325,7 @@ msgid "Data on display"
|
||||
msgstr "Données affichées"
|
||||
|
||||
#. js-lingui-id: Ix/CMz
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Data residency"
|
||||
msgstr "Résidence des données"
|
||||
|
||||
@@ -4488,6 +4488,7 @@ 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"
|
||||
@@ -4826,6 +4827,11 @@ 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
|
||||
@@ -4883,7 +4889,7 @@ msgid "Detach"
|
||||
msgstr "Détacher"
|
||||
|
||||
#. js-lingui-id: URmyfc
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Details"
|
||||
msgstr "Détails"
|
||||
@@ -5318,6 +5324,8 @@ 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"
|
||||
|
||||
@@ -6073,8 +6081,8 @@ msgid "Evaluations"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 0pC/y6
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/modules/activities/calendar/components/CalendarEventDetails.tsx
|
||||
msgid "Event"
|
||||
msgstr "Événement"
|
||||
@@ -6193,6 +6201,11 @@ 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"
|
||||
@@ -6522,6 +6535,8 @@ 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"
|
||||
@@ -6531,6 +6546,11 @@ 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"
|
||||
@@ -7021,6 +7041,11 @@ 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"
|
||||
@@ -8445,6 +8470,11 @@ 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
|
||||
@@ -8879,7 +8909,7 @@ msgstr "Capacité d'importation maximale : {formatSpreadsheetMaxRecordImportCapa
|
||||
|
||||
#. js-lingui-id: S8w4XA
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Max output"
|
||||
msgstr "Sortie maximale"
|
||||
|
||||
@@ -8989,6 +9019,11 @@ 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"
|
||||
@@ -9115,7 +9150,6 @@ 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"
|
||||
@@ -9340,12 +9374,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"
|
||||
|
||||
@@ -10010,6 +10044,12 @@ 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"
|
||||
@@ -10021,11 +10061,6 @@ 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
|
||||
@@ -10339,7 +10374,7 @@ msgid "Object Events"
|
||||
msgstr "Événements d'objet"
|
||||
|
||||
#. js-lingui-id: 79D4Az
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Object ID"
|
||||
msgstr "ID de l'objet"
|
||||
|
||||
@@ -11293,8 +11328,8 @@ msgid "Prompt"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: l/UFPv
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Properties"
|
||||
msgstr "Propriétés"
|
||||
|
||||
@@ -11317,8 +11352,8 @@ msgstr "Fournissez les détails de votre fournisseur OIDC"
|
||||
|
||||
#. js-lingui-id: aemBRq
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Provider"
|
||||
msgstr "Fournisseur"
|
||||
|
||||
@@ -11544,7 +11579,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/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
|
||||
msgid "Record ID"
|
||||
msgstr "ID de l'enregistrement"
|
||||
@@ -11940,7 +11975,7 @@ msgid "Reset variable"
|
||||
msgstr "Réinitialiser la variable"
|
||||
|
||||
#. js-lingui-id: esl+Tv
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Resource Type"
|
||||
msgstr "Type de ressource"
|
||||
|
||||
@@ -14358,9 +14393,10 @@ msgid "Timeout"
|
||||
msgstr "Délai d’expiration"
|
||||
|
||||
#. js-lingui-id: 8TMaZI
|
||||
#: 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/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/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
|
||||
msgid "Timestamp"
|
||||
msgstr "Horodatage"
|
||||
@@ -15204,9 +15240,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/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.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/profile/appearance/components/SettingsExperience.tsx
|
||||
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.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
@@ -1958,6 +1958,11 @@ 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."
|
||||
@@ -3345,11 +3350,6 @@ 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"
|
||||
@@ -3395,6 +3395,11 @@ 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."
|
||||
@@ -3523,7 +3528,7 @@ msgstr "תוכן"
|
||||
|
||||
#. js-lingui-id: M73whl
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
@@ -3721,21 +3726,16 @@ 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)"
|
||||
@@ -4325,7 +4325,7 @@ msgid "Data on display"
|
||||
msgstr "הנתונים בתצוגה"
|
||||
|
||||
#. js-lingui-id: Ix/CMz
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Data residency"
|
||||
msgstr "ריבונות נתונים"
|
||||
|
||||
@@ -4488,6 +4488,7 @@ 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"
|
||||
@@ -4826,6 +4827,11 @@ 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
|
||||
@@ -4883,7 +4889,7 @@ msgid "Detach"
|
||||
msgstr "נתק"
|
||||
|
||||
#. js-lingui-id: URmyfc
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Details"
|
||||
msgstr "פרטים"
|
||||
@@ -5318,6 +5324,8 @@ 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 "עורך"
|
||||
|
||||
@@ -6073,8 +6081,8 @@ msgid "Evaluations"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 0pC/y6
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/modules/activities/calendar/components/CalendarEventDetails.tsx
|
||||
msgid "Event"
|
||||
msgstr "אירוע"
|
||||
@@ -6193,6 +6201,11 @@ 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"
|
||||
@@ -6522,6 +6535,8 @@ 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 "העדכון של זמינות המודל נכשל"
|
||||
@@ -6531,6 +6546,11 @@ 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"
|
||||
@@ -7021,6 +7041,11 @@ 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"
|
||||
@@ -8445,6 +8470,11 @@ 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
|
||||
@@ -8879,7 +8909,7 @@ msgstr "קיבולת ייבוא מקסימלית: {formatSpreadsheetMaxRecordImp
|
||||
|
||||
#. js-lingui-id: S8w4XA
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Max output"
|
||||
msgstr "פלט מרבי"
|
||||
|
||||
@@ -8989,6 +9019,11 @@ 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"
|
||||
@@ -9115,7 +9150,6 @@ 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 "מודלים"
|
||||
@@ -9340,12 +9374,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 "שם"
|
||||
|
||||
@@ -10010,6 +10044,12 @@ 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"
|
||||
@@ -10021,11 +10061,6 @@ 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
|
||||
@@ -10339,7 +10374,7 @@ msgid "Object Events"
|
||||
msgstr "אירועי אובייקט"
|
||||
|
||||
#. js-lingui-id: 79D4Az
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Object ID"
|
||||
msgstr "מזהה אובייקט"
|
||||
|
||||
@@ -11293,8 +11328,8 @@ msgid "Prompt"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: l/UFPv
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Properties"
|
||||
msgstr "מאפיינים"
|
||||
|
||||
@@ -11317,8 +11352,8 @@ msgstr "ספק את פרטי ספק OIDC שלך"
|
||||
|
||||
#. js-lingui-id: aemBRq
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Provider"
|
||||
msgstr "ספק"
|
||||
|
||||
@@ -11544,7 +11579,7 @@ msgid "Record filter rule options"
|
||||
msgstr "אפשרויות כלל מסנן רשומות"
|
||||
|
||||
#. js-lingui-id: xSAYIn
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
|
||||
msgid "Record ID"
|
||||
msgstr "מזהה רשומה"
|
||||
@@ -11940,7 +11975,7 @@ msgid "Reset variable"
|
||||
msgstr "אפס משתנה"
|
||||
|
||||
#. js-lingui-id: esl+Tv
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Resource Type"
|
||||
msgstr "סוג משאב"
|
||||
|
||||
@@ -14356,9 +14391,10 @@ msgid "Timeout"
|
||||
msgstr "מגבלת זמן"
|
||||
|
||||
#. js-lingui-id: 8TMaZI
|
||||
#: 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/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/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
|
||||
msgid "Timestamp"
|
||||
msgstr "חותמת זמן"
|
||||
@@ -15202,9 +15238,9 @@ msgstr "שימושי עבור טבלאות ציר/קישור"
|
||||
#. js-lingui-id: 7PzzBU
|
||||
#: src/pages/settings/SettingsTwoFactorAuthenticationMethod.tsx
|
||||
#: src/pages/settings/SettingsProfile.tsx
|
||||
#: 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/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/profile/appearance/components/SettingsExperience.tsx
|
||||
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
|
||||
@@ -1958,6 +1958,11 @@ 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."
|
||||
@@ -3345,11 +3350,6 @@ 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"
|
||||
@@ -3395,6 +3395,11 @@ 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."
|
||||
@@ -3523,7 +3528,7 @@ msgstr "Tartalom"
|
||||
|
||||
#. js-lingui-id: M73whl
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
@@ -3721,21 +3726,16 @@ 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)"
|
||||
@@ -4325,7 +4325,7 @@ msgid "Data on display"
|
||||
msgstr "Megjelenő adatok"
|
||||
|
||||
#. js-lingui-id: Ix/CMz
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Data residency"
|
||||
msgstr "Adatrezidencia"
|
||||
|
||||
@@ -4488,6 +4488,7 @@ 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"
|
||||
@@ -4826,6 +4827,11 @@ 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
|
||||
@@ -4883,7 +4889,7 @@ msgid "Detach"
|
||||
msgstr "Leválasztás"
|
||||
|
||||
#. js-lingui-id: URmyfc
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Details"
|
||||
msgstr "Részletek"
|
||||
@@ -5318,6 +5324,8 @@ 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ő"
|
||||
|
||||
@@ -6073,8 +6081,8 @@ msgid "Evaluations"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 0pC/y6
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/modules/activities/calendar/components/CalendarEventDetails.tsx
|
||||
msgid "Event"
|
||||
msgstr "Esemény"
|
||||
@@ -6193,6 +6201,11 @@ 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"
|
||||
@@ -6522,6 +6535,8 @@ 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"
|
||||
@@ -6531,6 +6546,11 @@ 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"
|
||||
@@ -7021,6 +7041,11 @@ 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"
|
||||
@@ -8445,6 +8470,11 @@ 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
|
||||
@@ -8879,7 +8909,7 @@ msgstr "Maximális importálási kapacitás: {formatSpreadsheetMaxRecordImportCa
|
||||
|
||||
#. js-lingui-id: S8w4XA
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Max output"
|
||||
msgstr "Maximális kimenet"
|
||||
|
||||
@@ -8989,6 +9019,11 @@ 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"
|
||||
@@ -9115,7 +9150,6 @@ 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"
|
||||
@@ -9340,12 +9374,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"
|
||||
|
||||
@@ -10010,6 +10044,12 @@ 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"
|
||||
@@ -10021,11 +10061,6 @@ 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
|
||||
@@ -10339,7 +10374,7 @@ msgid "Object Events"
|
||||
msgstr "Objektumesemények"
|
||||
|
||||
#. js-lingui-id: 79D4Az
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Object ID"
|
||||
msgstr "Objektum azonosító"
|
||||
|
||||
@@ -11293,8 +11328,8 @@ msgid "Prompt"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: l/UFPv
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Properties"
|
||||
msgstr "Tulajdonságok"
|
||||
|
||||
@@ -11317,8 +11352,8 @@ msgstr "Adja meg OIDC szolgáltatói adatait"
|
||||
|
||||
#. js-lingui-id: aemBRq
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Provider"
|
||||
msgstr "Szolgáltató"
|
||||
|
||||
@@ -11544,7 +11579,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/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
|
||||
msgid "Record ID"
|
||||
msgstr "Rekordazonosító"
|
||||
@@ -11940,7 +11975,7 @@ msgid "Reset variable"
|
||||
msgstr "Változó visszaállítása"
|
||||
|
||||
#. js-lingui-id: esl+Tv
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Resource Type"
|
||||
msgstr "Erőforrás típusa"
|
||||
|
||||
@@ -14356,9 +14391,10 @@ msgid "Timeout"
|
||||
msgstr "Időkorlát"
|
||||
|
||||
#. js-lingui-id: 8TMaZI
|
||||
#: 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/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/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
|
||||
msgid "Timestamp"
|
||||
msgstr "Időbélyeg"
|
||||
@@ -15202,9 +15238,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/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.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/profile/appearance/components/SettingsExperience.tsx
|
||||
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
|
||||
@@ -1958,6 +1958,11 @@ 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."
|
||||
@@ -3345,11 +3350,6 @@ 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"
|
||||
@@ -3395,6 +3395,11 @@ 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."
|
||||
@@ -3523,7 +3528,7 @@ msgstr "Contenuto"
|
||||
|
||||
#. js-lingui-id: M73whl
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
@@ -3721,21 +3726,16 @@ 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)"
|
||||
@@ -4325,7 +4325,7 @@ msgid "Data on display"
|
||||
msgstr "Dati visualizzati"
|
||||
|
||||
#. js-lingui-id: Ix/CMz
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Data residency"
|
||||
msgstr "Residenza dei dati"
|
||||
|
||||
@@ -4488,6 +4488,7 @@ 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"
|
||||
@@ -4826,6 +4827,11 @@ 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
|
||||
@@ -4883,7 +4889,7 @@ msgid "Detach"
|
||||
msgstr "Dissocia"
|
||||
|
||||
#. js-lingui-id: URmyfc
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Details"
|
||||
msgstr "Dettagli"
|
||||
@@ -5318,6 +5324,8 @@ 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"
|
||||
|
||||
@@ -6073,8 +6081,8 @@ msgid "Evaluations"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 0pC/y6
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/modules/activities/calendar/components/CalendarEventDetails.tsx
|
||||
msgid "Event"
|
||||
msgstr "Evento"
|
||||
@@ -6193,6 +6201,11 @@ 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"
|
||||
@@ -6522,6 +6535,8 @@ 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"
|
||||
@@ -6531,6 +6546,11 @@ 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"
|
||||
@@ -7021,6 +7041,11 @@ 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"
|
||||
@@ -8445,6 +8470,11 @@ 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
|
||||
@@ -8879,7 +8909,7 @@ msgstr "Capacità massima d'importazione: {formatSpreadsheetMaxRecordImportCapac
|
||||
|
||||
#. js-lingui-id: S8w4XA
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Max output"
|
||||
msgstr "Output massimo"
|
||||
|
||||
@@ -8989,6 +9019,11 @@ 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"
|
||||
@@ -9115,7 +9150,6 @@ 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"
|
||||
@@ -9340,12 +9374,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"
|
||||
|
||||
@@ -10010,6 +10044,12 @@ 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"
|
||||
@@ -10021,11 +10061,6 @@ 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
|
||||
@@ -10339,7 +10374,7 @@ msgid "Object Events"
|
||||
msgstr "Eventi degli oggetti"
|
||||
|
||||
#. js-lingui-id: 79D4Az
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Object ID"
|
||||
msgstr "ID dell'oggetto"
|
||||
|
||||
@@ -11293,8 +11328,8 @@ msgid "Prompt"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: l/UFPv
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Properties"
|
||||
msgstr "Proprietà"
|
||||
|
||||
@@ -11317,8 +11352,8 @@ msgstr "Fornisci i dettagli del tuo provider OIDC"
|
||||
|
||||
#. js-lingui-id: aemBRq
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Provider"
|
||||
msgstr "Provider"
|
||||
|
||||
@@ -11544,7 +11579,7 @@ msgid "Record filter rule options"
|
||||
msgstr "Opzioni della regola di filtro del record"
|
||||
|
||||
#. js-lingui-id: xSAYIn
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
|
||||
msgid "Record ID"
|
||||
msgstr "ID del record"
|
||||
@@ -11940,7 +11975,7 @@ msgid "Reset variable"
|
||||
msgstr "Ripristina variabile"
|
||||
|
||||
#. js-lingui-id: esl+Tv
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Resource Type"
|
||||
msgstr "Tipo di risorsa"
|
||||
|
||||
@@ -14358,9 +14393,10 @@ msgid "Timeout"
|
||||
msgstr "Timeout"
|
||||
|
||||
#. js-lingui-id: 8TMaZI
|
||||
#: 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/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/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
|
||||
msgid "Timestamp"
|
||||
msgstr "Timestamp"
|
||||
@@ -15204,9 +15240,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/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.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/profile/appearance/components/SettingsExperience.tsx
|
||||
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
|
||||
@@ -1958,6 +1958,11 @@ 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."
|
||||
@@ -3345,11 +3350,6 @@ 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"
|
||||
@@ -3395,6 +3395,11 @@ 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."
|
||||
@@ -3523,7 +3528,7 @@ msgstr "コンテンツ"
|
||||
|
||||
#. js-lingui-id: M73whl
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
@@ -3721,21 +3726,16 @@ 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)"
|
||||
@@ -4325,7 +4325,7 @@ msgid "Data on display"
|
||||
msgstr "表示中のデータ"
|
||||
|
||||
#. js-lingui-id: Ix/CMz
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Data residency"
|
||||
msgstr "データレジデンシー"
|
||||
|
||||
@@ -4488,6 +4488,7 @@ 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"
|
||||
@@ -4826,6 +4827,11 @@ 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
|
||||
@@ -4883,7 +4889,7 @@ msgid "Detach"
|
||||
msgstr "関連付けを解除"
|
||||
|
||||
#. js-lingui-id: URmyfc
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Details"
|
||||
msgstr "詳細"
|
||||
@@ -5318,6 +5324,8 @@ 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 "エディター"
|
||||
|
||||
@@ -6073,8 +6081,8 @@ msgid "Evaluations"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 0pC/y6
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/modules/activities/calendar/components/CalendarEventDetails.tsx
|
||||
msgid "Event"
|
||||
msgstr "イベント"
|
||||
@@ -6193,6 +6201,11 @@ 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"
|
||||
@@ -6522,6 +6535,8 @@ 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 "モデルの可用性の更新に失敗しました"
|
||||
@@ -6531,6 +6546,11 @@ 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"
|
||||
@@ -7021,6 +7041,11 @@ 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"
|
||||
@@ -8445,6 +8470,11 @@ 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
|
||||
@@ -8879,7 +8909,7 @@ msgstr "最大インポート容量: {formatSpreadsheetMaxRecordImportCapacity}
|
||||
|
||||
#. js-lingui-id: S8w4XA
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Max output"
|
||||
msgstr "最大出力"
|
||||
|
||||
@@ -8989,6 +9019,11 @@ 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"
|
||||
@@ -9115,7 +9150,6 @@ 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 "モデル"
|
||||
@@ -9340,12 +9374,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 "名前"
|
||||
|
||||
@@ -10010,6 +10044,12 @@ 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"
|
||||
@@ -10021,11 +10061,6 @@ 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
|
||||
@@ -10339,7 +10374,7 @@ msgid "Object Events"
|
||||
msgstr "オブジェクトのイベント"
|
||||
|
||||
#. js-lingui-id: 79D4Az
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Object ID"
|
||||
msgstr "オブジェクトID"
|
||||
|
||||
@@ -11293,8 +11328,8 @@ msgid "Prompt"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: l/UFPv
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Properties"
|
||||
msgstr "プロパティ"
|
||||
|
||||
@@ -11317,8 +11352,8 @@ msgstr "OIDCプロバイダーの詳細を提供してください"
|
||||
|
||||
#. js-lingui-id: aemBRq
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Provider"
|
||||
msgstr "プロバイダー"
|
||||
|
||||
@@ -11544,7 +11579,7 @@ msgid "Record filter rule options"
|
||||
msgstr "レコードフィルターのルールオプション"
|
||||
|
||||
#. js-lingui-id: xSAYIn
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
|
||||
msgid "Record ID"
|
||||
msgstr "レコード ID"
|
||||
@@ -11940,7 +11975,7 @@ msgid "Reset variable"
|
||||
msgstr "変数をリセット"
|
||||
|
||||
#. js-lingui-id: esl+Tv
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Resource Type"
|
||||
msgstr "リソースタイプ"
|
||||
|
||||
@@ -14356,9 +14391,10 @@ msgid "Timeout"
|
||||
msgstr "タイムアウト"
|
||||
|
||||
#. js-lingui-id: 8TMaZI
|
||||
#: 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/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/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
|
||||
msgid "Timestamp"
|
||||
msgstr "タイムスタンプ"
|
||||
@@ -15202,9 +15238,9 @@ msgstr "ピボット/ジャンクションテーブルに有用です"
|
||||
#. js-lingui-id: 7PzzBU
|
||||
#: src/pages/settings/SettingsTwoFactorAuthenticationMethod.tsx
|
||||
#: src/pages/settings/SettingsProfile.tsx
|
||||
#: 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/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/profile/appearance/components/SettingsExperience.tsx
|
||||
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
|
||||
@@ -1958,6 +1958,11 @@ 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."
|
||||
@@ -3345,11 +3350,6 @@ 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"
|
||||
@@ -3395,6 +3395,11 @@ 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."
|
||||
@@ -3523,7 +3528,7 @@ msgstr "내용"
|
||||
|
||||
#. js-lingui-id: M73whl
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
@@ -3721,21 +3726,16 @@ 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)"
|
||||
@@ -4325,7 +4325,7 @@ msgid "Data on display"
|
||||
msgstr "표시된 데이터"
|
||||
|
||||
#. js-lingui-id: Ix/CMz
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Data residency"
|
||||
msgstr "데이터 레지던시"
|
||||
|
||||
@@ -4488,6 +4488,7 @@ 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"
|
||||
@@ -4826,6 +4827,11 @@ 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
|
||||
@@ -4883,7 +4889,7 @@ msgid "Detach"
|
||||
msgstr "연결 해제"
|
||||
|
||||
#. js-lingui-id: URmyfc
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Details"
|
||||
msgstr "세부정보"
|
||||
@@ -5318,6 +5324,8 @@ 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 "편집기"
|
||||
|
||||
@@ -6073,8 +6081,8 @@ msgid "Evaluations"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 0pC/y6
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/modules/activities/calendar/components/CalendarEventDetails.tsx
|
||||
msgid "Event"
|
||||
msgstr "이벤트"
|
||||
@@ -6193,6 +6201,11 @@ 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"
|
||||
@@ -6522,6 +6535,8 @@ 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 "모델의 사용 가능 여부를 업데이트하지 못했습니다"
|
||||
@@ -6531,6 +6546,11 @@ 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"
|
||||
@@ -7021,6 +7041,11 @@ 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"
|
||||
@@ -8445,6 +8470,11 @@ 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
|
||||
@@ -8879,7 +8909,7 @@ msgstr "최대 가져오기 용량: {formatSpreadsheetMaxRecordImportCapacity}
|
||||
|
||||
#. js-lingui-id: S8w4XA
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Max output"
|
||||
msgstr "최대 출력"
|
||||
|
||||
@@ -8989,6 +9019,11 @@ 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"
|
||||
@@ -9115,7 +9150,6 @@ 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 "모델"
|
||||
@@ -9340,12 +9374,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 "이름"
|
||||
|
||||
@@ -10010,6 +10044,12 @@ 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"
|
||||
@@ -10021,11 +10061,6 @@ 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
|
||||
@@ -10339,7 +10374,7 @@ msgid "Object Events"
|
||||
msgstr "객체 이벤트"
|
||||
|
||||
#. js-lingui-id: 79D4Az
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Object ID"
|
||||
msgstr "객체 ID"
|
||||
|
||||
@@ -11293,8 +11328,8 @@ msgid "Prompt"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: l/UFPv
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Properties"
|
||||
msgstr "속성"
|
||||
|
||||
@@ -11317,8 +11352,8 @@ msgstr "OIDC 공급자 세부정보를 제공하세요"
|
||||
|
||||
#. js-lingui-id: aemBRq
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Provider"
|
||||
msgstr "공급자"
|
||||
|
||||
@@ -11544,7 +11579,7 @@ msgid "Record filter rule options"
|
||||
msgstr "레코드 필터 규칙 옵션"
|
||||
|
||||
#. js-lingui-id: xSAYIn
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
|
||||
msgid "Record ID"
|
||||
msgstr "레코드 ID"
|
||||
@@ -11940,7 +11975,7 @@ msgid "Reset variable"
|
||||
msgstr "변수 재설정"
|
||||
|
||||
#. js-lingui-id: esl+Tv
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Resource Type"
|
||||
msgstr "리소스 유형"
|
||||
|
||||
@@ -14356,9 +14391,10 @@ msgid "Timeout"
|
||||
msgstr "시간 제한"
|
||||
|
||||
#. js-lingui-id: 8TMaZI
|
||||
#: 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/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/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
|
||||
msgid "Timestamp"
|
||||
msgstr "타임스탬프"
|
||||
@@ -15202,9 +15238,9 @@ msgstr "피벗/정션 테이블에 유용합니다"
|
||||
#. js-lingui-id: 7PzzBU
|
||||
#: src/pages/settings/SettingsTwoFactorAuthenticationMethod.tsx
|
||||
#: src/pages/settings/SettingsProfile.tsx
|
||||
#: 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/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/profile/appearance/components/SettingsExperience.tsx
|
||||
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
|
||||
@@ -1958,6 +1958,11 @@ 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."
|
||||
@@ -3345,11 +3350,6 @@ 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"
|
||||
@@ -3395,6 +3395,11 @@ 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."
|
||||
@@ -3523,7 +3528,7 @@ msgstr "Inhoud"
|
||||
|
||||
#. js-lingui-id: M73whl
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
@@ -3721,21 +3726,16 @@ 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)"
|
||||
@@ -4325,7 +4325,7 @@ msgid "Data on display"
|
||||
msgstr "Data op display"
|
||||
|
||||
#. js-lingui-id: Ix/CMz
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Data residency"
|
||||
msgstr "Gegevensresidentie"
|
||||
|
||||
@@ -4488,6 +4488,7 @@ 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"
|
||||
@@ -4826,6 +4827,11 @@ 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
|
||||
@@ -4883,7 +4889,7 @@ msgid "Detach"
|
||||
msgstr "Loskoppelen"
|
||||
|
||||
#. js-lingui-id: URmyfc
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Details"
|
||||
msgstr "Details"
|
||||
@@ -5318,6 +5324,8 @@ 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"
|
||||
|
||||
@@ -6073,8 +6081,8 @@ msgid "Evaluations"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 0pC/y6
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/modules/activities/calendar/components/CalendarEventDetails.tsx
|
||||
msgid "Event"
|
||||
msgstr "Evenement"
|
||||
@@ -6193,6 +6201,11 @@ 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"
|
||||
@@ -6522,6 +6535,8 @@ 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"
|
||||
@@ -6531,6 +6546,11 @@ 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"
|
||||
@@ -7021,6 +7041,11 @@ 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"
|
||||
@@ -8445,6 +8470,11 @@ 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
|
||||
@@ -8879,7 +8909,7 @@ msgstr "Maximale importcapaciteit: {formatSpreadsheetMaxRecordImportCapacity} re
|
||||
|
||||
#. js-lingui-id: S8w4XA
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Max output"
|
||||
msgstr "Maximale uitvoer"
|
||||
|
||||
@@ -8989,6 +9019,11 @@ 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"
|
||||
@@ -9115,7 +9150,6 @@ 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"
|
||||
@@ -9340,12 +9374,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"
|
||||
|
||||
@@ -10010,6 +10044,12 @@ 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"
|
||||
@@ -10021,11 +10061,6 @@ 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
|
||||
@@ -10339,7 +10374,7 @@ msgid "Object Events"
|
||||
msgstr "Objectgebeurtenissen"
|
||||
|
||||
#. js-lingui-id: 79D4Az
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Object ID"
|
||||
msgstr "Object-ID"
|
||||
|
||||
@@ -11293,8 +11328,8 @@ msgid "Prompt"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: l/UFPv
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Properties"
|
||||
msgstr "Eigenschappen"
|
||||
|
||||
@@ -11317,8 +11352,8 @@ msgstr "Geef uw OIDC-providerdetails"
|
||||
|
||||
#. js-lingui-id: aemBRq
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Provider"
|
||||
msgstr "Aanbieder"
|
||||
|
||||
@@ -11544,7 +11579,7 @@ msgid "Record filter rule options"
|
||||
msgstr "Opties voor recordfilterregel"
|
||||
|
||||
#. js-lingui-id: xSAYIn
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
|
||||
msgid "Record ID"
|
||||
msgstr "Record-ID"
|
||||
@@ -11940,7 +11975,7 @@ msgid "Reset variable"
|
||||
msgstr "Variabele resetten"
|
||||
|
||||
#. js-lingui-id: esl+Tv
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Resource Type"
|
||||
msgstr "Resourcetype"
|
||||
|
||||
@@ -14358,9 +14393,10 @@ msgid "Timeout"
|
||||
msgstr "Time-out"
|
||||
|
||||
#. js-lingui-id: 8TMaZI
|
||||
#: 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/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/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
|
||||
msgid "Timestamp"
|
||||
msgstr "Tijdstempel"
|
||||
@@ -15204,9 +15240,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/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.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/profile/appearance/components/SettingsExperience.tsx
|
||||
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
|
||||
@@ -1958,6 +1958,11 @@ 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."
|
||||
@@ -3345,11 +3350,6 @@ 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"
|
||||
@@ -3395,6 +3395,11 @@ 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."
|
||||
@@ -3523,7 +3528,7 @@ msgstr "Innhold"
|
||||
|
||||
#. js-lingui-id: M73whl
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
@@ -3721,21 +3726,16 @@ 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)"
|
||||
@@ -4325,7 +4325,7 @@ msgid "Data on display"
|
||||
msgstr "Data på skjerm"
|
||||
|
||||
#. js-lingui-id: Ix/CMz
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Data residency"
|
||||
msgstr "Dataresidens"
|
||||
|
||||
@@ -4488,6 +4488,7 @@ 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"
|
||||
@@ -4826,6 +4827,11 @@ 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
|
||||
@@ -4883,7 +4889,7 @@ msgid "Detach"
|
||||
msgstr "Koble fra"
|
||||
|
||||
#. js-lingui-id: URmyfc
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Details"
|
||||
msgstr "Detaljer"
|
||||
@@ -5318,6 +5324,8 @@ 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"
|
||||
|
||||
@@ -6073,8 +6081,8 @@ msgid "Evaluations"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 0pC/y6
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/modules/activities/calendar/components/CalendarEventDetails.tsx
|
||||
msgid "Event"
|
||||
msgstr "Hendelse"
|
||||
@@ -6193,6 +6201,11 @@ 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"
|
||||
@@ -6522,6 +6535,8 @@ 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"
|
||||
@@ -6531,6 +6546,11 @@ 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"
|
||||
@@ -7021,6 +7041,11 @@ 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"
|
||||
@@ -8445,6 +8470,11 @@ 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
|
||||
@@ -8879,7 +8909,7 @@ msgstr "Maksimal importkapasitet: {formatSpreadsheetMaxRecordImportCapacity} pos
|
||||
|
||||
#. js-lingui-id: S8w4XA
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Max output"
|
||||
msgstr "Maks utdata"
|
||||
|
||||
@@ -8989,6 +9019,11 @@ 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"
|
||||
@@ -9115,7 +9150,6 @@ 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"
|
||||
@@ -9340,12 +9374,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"
|
||||
|
||||
@@ -10010,6 +10044,12 @@ 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"
|
||||
@@ -10021,11 +10061,6 @@ 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
|
||||
@@ -10339,7 +10374,7 @@ msgid "Object Events"
|
||||
msgstr "Objekthendelser"
|
||||
|
||||
#. js-lingui-id: 79D4Az
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Object ID"
|
||||
msgstr "Objekt-ID"
|
||||
|
||||
@@ -11293,8 +11328,8 @@ msgid "Prompt"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: l/UFPv
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Properties"
|
||||
msgstr "Egenskaper"
|
||||
|
||||
@@ -11317,8 +11352,8 @@ msgstr "Oppgi detaljene til din OIDC-leverandør"
|
||||
|
||||
#. js-lingui-id: aemBRq
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Provider"
|
||||
msgstr "Tilbyder"
|
||||
|
||||
@@ -11544,7 +11579,7 @@ msgid "Record filter rule options"
|
||||
msgstr "Alternativer for oppføringsfilterregel"
|
||||
|
||||
#. js-lingui-id: xSAYIn
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
|
||||
msgid "Record ID"
|
||||
msgstr "Oppførings-ID"
|
||||
@@ -11940,7 +11975,7 @@ msgid "Reset variable"
|
||||
msgstr "Nullstill variabel"
|
||||
|
||||
#. js-lingui-id: esl+Tv
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Resource Type"
|
||||
msgstr "Ressurstype"
|
||||
|
||||
@@ -14356,9 +14391,10 @@ msgid "Timeout"
|
||||
msgstr "Tidsavbrudd"
|
||||
|
||||
#. js-lingui-id: 8TMaZI
|
||||
#: 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/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/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
|
||||
msgid "Timestamp"
|
||||
msgstr "Tidsstempel"
|
||||
@@ -15202,9 +15238,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/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.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/profile/appearance/components/SettingsExperience.tsx
|
||||
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
|
||||
@@ -1958,6 +1958,11 @@ 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."
|
||||
@@ -3345,11 +3350,6 @@ 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"
|
||||
@@ -3395,6 +3395,11 @@ 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."
|
||||
@@ -3523,7 +3528,7 @@ msgstr "Zawartość"
|
||||
|
||||
#. js-lingui-id: M73whl
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
@@ -3721,21 +3726,16 @@ 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)"
|
||||
@@ -4325,7 +4325,7 @@ msgid "Data on display"
|
||||
msgstr "Dane na wyświetlaczu"
|
||||
|
||||
#. js-lingui-id: Ix/CMz
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Data residency"
|
||||
msgstr "Rezydencja danych"
|
||||
|
||||
@@ -4488,6 +4488,7 @@ 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"
|
||||
@@ -4826,6 +4827,11 @@ 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
|
||||
@@ -4883,7 +4889,7 @@ msgid "Detach"
|
||||
msgstr "Odłącz"
|
||||
|
||||
#. js-lingui-id: URmyfc
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Details"
|
||||
msgstr "Szczegóły"
|
||||
@@ -5318,6 +5324,8 @@ 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"
|
||||
|
||||
@@ -6073,8 +6081,8 @@ msgid "Evaluations"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 0pC/y6
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/modules/activities/calendar/components/CalendarEventDetails.tsx
|
||||
msgid "Event"
|
||||
msgstr "Wydarzenie"
|
||||
@@ -6193,6 +6201,11 @@ 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"
|
||||
@@ -6522,6 +6535,8 @@ 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"
|
||||
@@ -6531,6 +6546,11 @@ 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"
|
||||
@@ -7021,6 +7041,11 @@ 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"
|
||||
@@ -8445,6 +8470,11 @@ 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
|
||||
@@ -8879,7 +8909,7 @@ msgstr "Maksymalna pojemność importu: {formatSpreadsheetMaxRecordImportCapacit
|
||||
|
||||
#. js-lingui-id: S8w4XA
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Max output"
|
||||
msgstr "Maksymalne wyjście"
|
||||
|
||||
@@ -8989,6 +9019,11 @@ 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"
|
||||
@@ -9115,7 +9150,6 @@ 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"
|
||||
@@ -9340,12 +9374,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"
|
||||
|
||||
@@ -10010,6 +10044,12 @@ 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"
|
||||
@@ -10021,11 +10061,6 @@ 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
|
||||
@@ -10339,7 +10374,7 @@ msgid "Object Events"
|
||||
msgstr "Zdarzenia obiektów"
|
||||
|
||||
#. js-lingui-id: 79D4Az
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Object ID"
|
||||
msgstr "Identyfikator obiektu"
|
||||
|
||||
@@ -11293,8 +11328,8 @@ msgid "Prompt"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: l/UFPv
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Properties"
|
||||
msgstr "Właściwości"
|
||||
|
||||
@@ -11317,8 +11352,8 @@ msgstr "Podaj szczegóły dostawcy OIDC"
|
||||
|
||||
#. js-lingui-id: aemBRq
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Provider"
|
||||
msgstr "Dostawca"
|
||||
|
||||
@@ -11544,7 +11579,7 @@ msgid "Record filter rule options"
|
||||
msgstr "Opcje reguł filtra rekordu"
|
||||
|
||||
#. js-lingui-id: xSAYIn
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
|
||||
msgid "Record ID"
|
||||
msgstr "Identyfikator rekordu"
|
||||
@@ -11940,7 +11975,7 @@ msgid "Reset variable"
|
||||
msgstr "Zresetuj zmienną"
|
||||
|
||||
#. js-lingui-id: esl+Tv
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Resource Type"
|
||||
msgstr "Typ zasobu"
|
||||
|
||||
@@ -14356,9 +14391,10 @@ msgid "Timeout"
|
||||
msgstr "Limit czasu"
|
||||
|
||||
#. js-lingui-id: 8TMaZI
|
||||
#: 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/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/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
|
||||
msgid "Timestamp"
|
||||
msgstr "Znak czasu"
|
||||
@@ -15202,9 +15238,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/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.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/profile/appearance/components/SettingsExperience.tsx
|
||||
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
|
||||
@@ -1953,6 +1953,11 @@ 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."
|
||||
@@ -3340,11 +3345,6 @@ 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"
|
||||
@@ -3390,6 +3390,11 @@ 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."
|
||||
@@ -3518,7 +3523,7 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: M73whl
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
@@ -3716,21 +3721,16 @@ 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)"
|
||||
@@ -4320,7 +4320,7 @@ msgid "Data on display"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Ix/CMz
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Data residency"
|
||||
msgstr ""
|
||||
|
||||
@@ -4483,6 +4483,7 @@ 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"
|
||||
@@ -4821,6 +4822,11 @@ 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
|
||||
@@ -4878,7 +4884,7 @@ msgid "Detach"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: URmyfc
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Details"
|
||||
msgstr ""
|
||||
@@ -5313,6 +5319,8 @@ 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 ""
|
||||
|
||||
@@ -6068,8 +6076,8 @@ msgid "Evaluations"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 0pC/y6
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/modules/activities/calendar/components/CalendarEventDetails.tsx
|
||||
msgid "Event"
|
||||
msgstr ""
|
||||
@@ -6188,6 +6196,11 @@ 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"
|
||||
@@ -6517,6 +6530,8 @@ 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 ""
|
||||
@@ -6526,6 +6541,11 @@ 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"
|
||||
@@ -7016,6 +7036,11 @@ 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"
|
||||
@@ -8440,6 +8465,11 @@ 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
|
||||
@@ -8874,7 +8904,7 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: S8w4XA
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Max output"
|
||||
msgstr ""
|
||||
|
||||
@@ -8984,6 +9014,11 @@ 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"
|
||||
@@ -9110,7 +9145,6 @@ 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 ""
|
||||
@@ -9335,12 +9369,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 ""
|
||||
|
||||
@@ -10005,6 +10039,12 @@ 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"
|
||||
@@ -10016,11 +10056,6 @@ 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
|
||||
@@ -10334,7 +10369,7 @@ msgid "Object Events"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 79D4Az
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Object ID"
|
||||
msgstr ""
|
||||
|
||||
@@ -11288,8 +11323,8 @@ msgid "Prompt"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: l/UFPv
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Properties"
|
||||
msgstr ""
|
||||
|
||||
@@ -11312,8 +11347,8 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: aemBRq
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Provider"
|
||||
msgstr ""
|
||||
|
||||
@@ -11539,7 +11574,7 @@ msgid "Record filter rule options"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: xSAYIn
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
|
||||
msgid "Record ID"
|
||||
msgstr ""
|
||||
@@ -11935,7 +11970,7 @@ msgid "Reset variable"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: esl+Tv
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Resource Type"
|
||||
msgstr ""
|
||||
|
||||
@@ -14351,9 +14386,10 @@ msgid "Timeout"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8TMaZI
|
||||
#: 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/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/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
|
||||
msgid "Timestamp"
|
||||
msgstr ""
|
||||
@@ -15197,9 +15233,9 @@ msgstr ""
|
||||
#. js-lingui-id: 7PzzBU
|
||||
#: src/pages/settings/SettingsTwoFactorAuthenticationMethod.tsx
|
||||
#: src/pages/settings/SettingsProfile.tsx
|
||||
#: 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/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/profile/appearance/components/SettingsExperience.tsx
|
||||
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
|
||||
@@ -1958,6 +1958,11 @@ 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."
|
||||
@@ -3345,11 +3350,6 @@ 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"
|
||||
@@ -3395,6 +3395,11 @@ 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."
|
||||
@@ -3523,7 +3528,7 @@ msgstr "Conteúdo"
|
||||
|
||||
#. js-lingui-id: M73whl
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
@@ -3721,21 +3726,16 @@ 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)"
|
||||
@@ -4325,7 +4325,7 @@ msgid "Data on display"
|
||||
msgstr "Dados em exibição"
|
||||
|
||||
#. js-lingui-id: Ix/CMz
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Data residency"
|
||||
msgstr "Residência de dados"
|
||||
|
||||
@@ -4488,6 +4488,7 @@ 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"
|
||||
@@ -4826,6 +4827,11 @@ 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
|
||||
@@ -4883,7 +4889,7 @@ msgid "Detach"
|
||||
msgstr "Desvincular"
|
||||
|
||||
#. js-lingui-id: URmyfc
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Details"
|
||||
msgstr "Detalhes"
|
||||
@@ -5318,6 +5324,8 @@ 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"
|
||||
|
||||
@@ -6073,8 +6081,8 @@ msgid "Evaluations"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 0pC/y6
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/modules/activities/calendar/components/CalendarEventDetails.tsx
|
||||
msgid "Event"
|
||||
msgstr "Evento"
|
||||
@@ -6193,6 +6201,11 @@ 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"
|
||||
@@ -6522,6 +6535,8 @@ 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"
|
||||
@@ -6531,6 +6546,11 @@ 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"
|
||||
@@ -7021,6 +7041,11 @@ 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"
|
||||
@@ -8445,6 +8470,11 @@ 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
|
||||
@@ -8879,7 +8909,7 @@ msgstr "Capacidade máxima de importação: {formatSpreadsheetMaxRecordImportCap
|
||||
|
||||
#. js-lingui-id: S8w4XA
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Max output"
|
||||
msgstr "Saída máxima"
|
||||
|
||||
@@ -8989,6 +9019,11 @@ 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"
|
||||
@@ -9115,7 +9150,6 @@ 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"
|
||||
@@ -9340,12 +9374,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"
|
||||
|
||||
@@ -10010,6 +10044,12 @@ 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"
|
||||
@@ -10021,11 +10061,6 @@ 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
|
||||
@@ -10339,7 +10374,7 @@ msgid "Object Events"
|
||||
msgstr "Eventos de objeto"
|
||||
|
||||
#. js-lingui-id: 79D4Az
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Object ID"
|
||||
msgstr "ID do objeto"
|
||||
|
||||
@@ -11293,8 +11328,8 @@ msgid "Prompt"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: l/UFPv
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Properties"
|
||||
msgstr "Propriedades"
|
||||
|
||||
@@ -11317,8 +11352,8 @@ msgstr "Forneça os detalhes do seu provedor OIDC"
|
||||
|
||||
#. js-lingui-id: aemBRq
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Provider"
|
||||
msgstr "Provedor"
|
||||
|
||||
@@ -11544,7 +11579,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/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
|
||||
msgid "Record ID"
|
||||
msgstr "ID do registro"
|
||||
@@ -11940,7 +11975,7 @@ msgid "Reset variable"
|
||||
msgstr "Redefinir variável"
|
||||
|
||||
#. js-lingui-id: esl+Tv
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Resource Type"
|
||||
msgstr "Tipo de recurso"
|
||||
|
||||
@@ -14356,9 +14391,10 @@ msgid "Timeout"
|
||||
msgstr "Tempo limite"
|
||||
|
||||
#. js-lingui-id: 8TMaZI
|
||||
#: 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/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/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
|
||||
msgid "Timestamp"
|
||||
msgstr "Carimbo de Data"
|
||||
@@ -15202,9 +15238,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/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.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/profile/appearance/components/SettingsExperience.tsx
|
||||
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
|
||||
@@ -1958,6 +1958,11 @@ 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."
|
||||
@@ -3345,11 +3350,6 @@ 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"
|
||||
@@ -3395,6 +3395,11 @@ 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."
|
||||
@@ -3523,7 +3528,7 @@ msgstr "Conteúdo"
|
||||
|
||||
#. js-lingui-id: M73whl
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
@@ -3721,21 +3726,16 @@ 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)"
|
||||
@@ -4325,7 +4325,7 @@ msgid "Data on display"
|
||||
msgstr "Dados em exibição"
|
||||
|
||||
#. js-lingui-id: Ix/CMz
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Data residency"
|
||||
msgstr "Residência de dados"
|
||||
|
||||
@@ -4488,6 +4488,7 @@ 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"
|
||||
@@ -4826,6 +4827,11 @@ 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
|
||||
@@ -4883,7 +4889,7 @@ msgid "Detach"
|
||||
msgstr "Desassociar"
|
||||
|
||||
#. js-lingui-id: URmyfc
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Details"
|
||||
msgstr "Detalhes"
|
||||
@@ -5318,6 +5324,8 @@ 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"
|
||||
|
||||
@@ -6073,8 +6081,8 @@ msgid "Evaluations"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 0pC/y6
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/modules/activities/calendar/components/CalendarEventDetails.tsx
|
||||
msgid "Event"
|
||||
msgstr "Evento"
|
||||
@@ -6193,6 +6201,11 @@ 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"
|
||||
@@ -6522,6 +6535,8 @@ 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"
|
||||
@@ -6531,6 +6546,11 @@ 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"
|
||||
@@ -7021,6 +7041,11 @@ 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"
|
||||
@@ -8445,6 +8470,11 @@ 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
|
||||
@@ -8879,7 +8909,7 @@ msgstr "Capacidade máxima de importação: {formatSpreadsheetMaxRecordImportCap
|
||||
|
||||
#. js-lingui-id: S8w4XA
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Max output"
|
||||
msgstr "Saída máxima"
|
||||
|
||||
@@ -8989,6 +9019,11 @@ 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"
|
||||
@@ -9115,7 +9150,6 @@ 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"
|
||||
@@ -9340,12 +9374,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"
|
||||
|
||||
@@ -10010,6 +10044,12 @@ 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"
|
||||
@@ -10021,11 +10061,6 @@ 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
|
||||
@@ -10339,7 +10374,7 @@ msgid "Object Events"
|
||||
msgstr "Eventos de objeto"
|
||||
|
||||
#. js-lingui-id: 79D4Az
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Object ID"
|
||||
msgstr "ID do objeto"
|
||||
|
||||
@@ -11293,8 +11328,8 @@ msgid "Prompt"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: l/UFPv
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Properties"
|
||||
msgstr "Propriedades"
|
||||
|
||||
@@ -11317,8 +11352,8 @@ msgstr "Forneça os detalhes do seu provedor OIDC"
|
||||
|
||||
#. js-lingui-id: aemBRq
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Provider"
|
||||
msgstr "Provedor"
|
||||
|
||||
@@ -11544,7 +11579,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/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
|
||||
msgid "Record ID"
|
||||
msgstr "ID do registo"
|
||||
@@ -11940,7 +11975,7 @@ msgid "Reset variable"
|
||||
msgstr "Redefinir variável"
|
||||
|
||||
#. js-lingui-id: esl+Tv
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Resource Type"
|
||||
msgstr "Tipo de Recurso"
|
||||
|
||||
@@ -14356,9 +14391,10 @@ msgid "Timeout"
|
||||
msgstr "Tempo limite"
|
||||
|
||||
#. js-lingui-id: 8TMaZI
|
||||
#: 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/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/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
|
||||
msgid "Timestamp"
|
||||
msgstr "Registro de Tempo"
|
||||
@@ -15202,9 +15238,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/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.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/profile/appearance/components/SettingsExperience.tsx
|
||||
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
|
||||
@@ -1958,6 +1958,11 @@ 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."
|
||||
@@ -3345,11 +3350,6 @@ 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"
|
||||
@@ -3395,6 +3395,11 @@ 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."
|
||||
@@ -3523,7 +3528,7 @@ msgstr "Conținut"
|
||||
|
||||
#. js-lingui-id: M73whl
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
@@ -3721,21 +3726,16 @@ 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)"
|
||||
@@ -4325,7 +4325,7 @@ msgid "Data on display"
|
||||
msgstr "Date afișate"
|
||||
|
||||
#. js-lingui-id: Ix/CMz
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Data residency"
|
||||
msgstr "Rezidența datelor"
|
||||
|
||||
@@ -4488,6 +4488,7 @@ 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"
|
||||
@@ -4826,6 +4827,11 @@ 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
|
||||
@@ -4883,7 +4889,7 @@ msgid "Detach"
|
||||
msgstr "Detașează"
|
||||
|
||||
#. js-lingui-id: URmyfc
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Details"
|
||||
msgstr "Detalii"
|
||||
@@ -5318,6 +5324,8 @@ 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"
|
||||
|
||||
@@ -6073,8 +6081,8 @@ msgid "Evaluations"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 0pC/y6
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/modules/activities/calendar/components/CalendarEventDetails.tsx
|
||||
msgid "Event"
|
||||
msgstr "Eveniment"
|
||||
@@ -6193,6 +6201,11 @@ 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"
|
||||
@@ -6522,6 +6535,8 @@ 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"
|
||||
@@ -6531,6 +6546,11 @@ 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"
|
||||
@@ -7021,6 +7041,11 @@ 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"
|
||||
@@ -8445,6 +8470,11 @@ 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
|
||||
@@ -8879,7 +8909,7 @@ msgstr "Capacitatea maximă de import: {formatSpreadsheetMaxRecordImportCapacity
|
||||
|
||||
#. js-lingui-id: S8w4XA
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Max output"
|
||||
msgstr "Ieșire maximă"
|
||||
|
||||
@@ -8989,6 +9019,11 @@ 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"
|
||||
@@ -9115,7 +9150,6 @@ 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"
|
||||
@@ -9340,12 +9374,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"
|
||||
|
||||
@@ -10010,6 +10044,12 @@ 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"
|
||||
@@ -10021,11 +10061,6 @@ 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
|
||||
@@ -10339,7 +10374,7 @@ msgid "Object Events"
|
||||
msgstr "Evenimente obiect"
|
||||
|
||||
#. js-lingui-id: 79D4Az
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Object ID"
|
||||
msgstr "ID-ul obiectului"
|
||||
|
||||
@@ -11293,8 +11328,8 @@ msgid "Prompt"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: l/UFPv
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Properties"
|
||||
msgstr "Proprietăți"
|
||||
|
||||
@@ -11317,8 +11352,8 @@ msgstr "Furnizați detaliile furnizorului OIDC"
|
||||
|
||||
#. js-lingui-id: aemBRq
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Provider"
|
||||
msgstr "Furnizor"
|
||||
|
||||
@@ -11544,7 +11579,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/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
|
||||
msgid "Record ID"
|
||||
msgstr "ID-ul înregistrării"
|
||||
@@ -11940,7 +11975,7 @@ msgid "Reset variable"
|
||||
msgstr "Resetați variabila"
|
||||
|
||||
#. js-lingui-id: esl+Tv
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Resource Type"
|
||||
msgstr "Tip de resursă"
|
||||
|
||||
@@ -14356,9 +14391,10 @@ msgid "Timeout"
|
||||
msgstr "Timp de expirare"
|
||||
|
||||
#. js-lingui-id: 8TMaZI
|
||||
#: 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/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/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
|
||||
msgid "Timestamp"
|
||||
msgstr "Marcaj temporal"
|
||||
@@ -15202,9 +15238,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/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.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/profile/appearance/components/SettingsExperience.tsx
|
||||
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
|
||||
Binary file not shown.
@@ -1958,6 +1958,11 @@ 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."
|
||||
@@ -3345,11 +3350,6 @@ 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"
|
||||
@@ -3395,6 +3395,11 @@ 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."
|
||||
@@ -3523,7 +3528,7 @@ msgstr "Садржај"
|
||||
|
||||
#. js-lingui-id: M73whl
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
@@ -3721,21 +3726,16 @@ 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)"
|
||||
@@ -4325,7 +4325,7 @@ msgid "Data on display"
|
||||
msgstr "Приказ података"
|
||||
|
||||
#. js-lingui-id: Ix/CMz
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Data residency"
|
||||
msgstr "Резиденција података"
|
||||
|
||||
@@ -4488,6 +4488,7 @@ 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"
|
||||
@@ -4826,6 +4827,11 @@ 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
|
||||
@@ -4883,7 +4889,7 @@ msgid "Detach"
|
||||
msgstr "Отпоји"
|
||||
|
||||
#. js-lingui-id: URmyfc
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Details"
|
||||
msgstr "Детаљи"
|
||||
@@ -5318,6 +5324,8 @@ 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 "Уређивач"
|
||||
|
||||
@@ -6073,8 +6081,8 @@ msgid "Evaluations"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 0pC/y6
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/modules/activities/calendar/components/CalendarEventDetails.tsx
|
||||
msgid "Event"
|
||||
msgstr "Догађај"
|
||||
@@ -6193,6 +6201,11 @@ 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"
|
||||
@@ -6522,6 +6535,8 @@ 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 "Није успело ажурирање доступности модела"
|
||||
@@ -6531,6 +6546,11 @@ 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"
|
||||
@@ -7021,6 +7041,11 @@ 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"
|
||||
@@ -8445,6 +8470,11 @@ 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
|
||||
@@ -8879,7 +8909,7 @@ msgstr "Максимални капацитет увоза: {formatSpreadsheetMa
|
||||
|
||||
#. js-lingui-id: S8w4XA
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Max output"
|
||||
msgstr "Максимални излаз"
|
||||
|
||||
@@ -8989,6 +9019,11 @@ 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"
|
||||
@@ -9115,7 +9150,6 @@ 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 "Модели"
|
||||
@@ -9340,12 +9374,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 "Име"
|
||||
|
||||
@@ -10010,6 +10044,12 @@ 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"
|
||||
@@ -10021,11 +10061,6 @@ 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
|
||||
@@ -10339,7 +10374,7 @@ msgid "Object Events"
|
||||
msgstr "Догађаји објекта"
|
||||
|
||||
#. js-lingui-id: 79D4Az
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Object ID"
|
||||
msgstr "Идентификатор објекта"
|
||||
|
||||
@@ -11293,8 +11328,8 @@ msgid "Prompt"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: l/UFPv
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Properties"
|
||||
msgstr "Својства"
|
||||
|
||||
@@ -11317,8 +11352,8 @@ msgstr "Пружите детаље о вашем OIDC провајдеру"
|
||||
|
||||
#. js-lingui-id: aemBRq
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Provider"
|
||||
msgstr "Провајдер"
|
||||
|
||||
@@ -11544,7 +11579,7 @@ msgid "Record filter rule options"
|
||||
msgstr "Опције правила филтера записа"
|
||||
|
||||
#. js-lingui-id: xSAYIn
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
|
||||
msgid "Record ID"
|
||||
msgstr "Идентификатор записа"
|
||||
@@ -11940,7 +11975,7 @@ msgid "Reset variable"
|
||||
msgstr "Ресетуј променљиву"
|
||||
|
||||
#. js-lingui-id: esl+Tv
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Resource Type"
|
||||
msgstr "Тип ресурса"
|
||||
|
||||
@@ -14356,9 +14391,10 @@ msgid "Timeout"
|
||||
msgstr "Истек времена"
|
||||
|
||||
#. js-lingui-id: 8TMaZI
|
||||
#: 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/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/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
|
||||
msgid "Timestamp"
|
||||
msgstr "Временска ознака"
|
||||
@@ -15202,9 +15238,9 @@ msgstr "Корисно за спојне/везне табеле"
|
||||
#. js-lingui-id: 7PzzBU
|
||||
#: src/pages/settings/SettingsTwoFactorAuthenticationMethod.tsx
|
||||
#: src/pages/settings/SettingsProfile.tsx
|
||||
#: 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/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/profile/appearance/components/SettingsExperience.tsx
|
||||
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
|
||||
@@ -1958,6 +1958,11 @@ 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."
|
||||
@@ -3345,11 +3350,6 @@ 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"
|
||||
@@ -3395,6 +3395,11 @@ 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."
|
||||
@@ -3523,7 +3528,7 @@ msgstr "Innehåll"
|
||||
|
||||
#. js-lingui-id: M73whl
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
@@ -3721,21 +3726,16 @@ 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)"
|
||||
@@ -4325,7 +4325,7 @@ msgid "Data on display"
|
||||
msgstr "Data som visas"
|
||||
|
||||
#. js-lingui-id: Ix/CMz
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Data residency"
|
||||
msgstr "Datahemvist"
|
||||
|
||||
@@ -4488,6 +4488,7 @@ 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"
|
||||
@@ -4826,6 +4827,11 @@ 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
|
||||
@@ -4883,7 +4889,7 @@ msgid "Detach"
|
||||
msgstr "Koppla från"
|
||||
|
||||
#. js-lingui-id: URmyfc
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Details"
|
||||
msgstr "Detaljer"
|
||||
@@ -5318,6 +5324,8 @@ 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"
|
||||
|
||||
@@ -6073,8 +6081,8 @@ msgid "Evaluations"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 0pC/y6
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/modules/activities/calendar/components/CalendarEventDetails.tsx
|
||||
msgid "Event"
|
||||
msgstr "Händelse"
|
||||
@@ -6193,6 +6201,11 @@ 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"
|
||||
@@ -6522,6 +6535,8 @@ 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 ""
|
||||
@@ -6531,6 +6546,11 @@ 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"
|
||||
@@ -7021,6 +7041,11 @@ 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"
|
||||
@@ -8445,6 +8470,11 @@ 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
|
||||
@@ -8879,7 +8909,7 @@ msgstr "Maximal importkapacitet: {formatSpreadsheetMaxRecordImportCapacity} post
|
||||
|
||||
#. js-lingui-id: S8w4XA
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Max output"
|
||||
msgstr "Max utdata"
|
||||
|
||||
@@ -8989,6 +9019,11 @@ 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"
|
||||
@@ -9115,7 +9150,6 @@ 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"
|
||||
@@ -9342,12 +9376,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"
|
||||
|
||||
@@ -10012,6 +10046,12 @@ 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"
|
||||
@@ -10023,11 +10063,6 @@ 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
|
||||
@@ -10341,7 +10376,7 @@ msgid "Object Events"
|
||||
msgstr "Objekthändelser"
|
||||
|
||||
#. js-lingui-id: 79D4Az
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Object ID"
|
||||
msgstr "Objekt-ID"
|
||||
|
||||
@@ -11295,8 +11330,8 @@ msgid "Prompt"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: l/UFPv
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Properties"
|
||||
msgstr "Egenskaper"
|
||||
|
||||
@@ -11319,8 +11354,8 @@ msgstr "Ange dina OIDC-leverantörsdetaljer"
|
||||
|
||||
#. js-lingui-id: aemBRq
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Provider"
|
||||
msgstr "Leverantör"
|
||||
|
||||
@@ -11546,7 +11581,7 @@ msgid "Record filter rule options"
|
||||
msgstr "Alternativ för postfilterregel"
|
||||
|
||||
#. js-lingui-id: xSAYIn
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
|
||||
msgid "Record ID"
|
||||
msgstr "Post-ID"
|
||||
@@ -11942,7 +11977,7 @@ msgid "Reset variable"
|
||||
msgstr "Återställ variabel"
|
||||
|
||||
#. js-lingui-id: esl+Tv
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Resource Type"
|
||||
msgstr "Resurstyp"
|
||||
|
||||
@@ -14364,9 +14399,10 @@ msgid "Timeout"
|
||||
msgstr "Tidsgräns"
|
||||
|
||||
#. js-lingui-id: 8TMaZI
|
||||
#: 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/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/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
|
||||
msgid "Timestamp"
|
||||
msgstr "Tidsstämpel"
|
||||
@@ -15210,9 +15246,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/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.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/profile/appearance/components/SettingsExperience.tsx
|
||||
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
|
||||
@@ -1958,6 +1958,11 @@ 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."
|
||||
@@ -3345,11 +3350,6 @@ 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"
|
||||
@@ -3395,6 +3395,11 @@ 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."
|
||||
@@ -3523,7 +3528,7 @@ msgstr "İçerik"
|
||||
|
||||
#. js-lingui-id: M73whl
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
@@ -3721,21 +3726,16 @@ 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)"
|
||||
@@ -4325,7 +4325,7 @@ msgid "Data on display"
|
||||
msgstr "Görüntülenen veriler"
|
||||
|
||||
#. js-lingui-id: Ix/CMz
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Data residency"
|
||||
msgstr "Veri yerleşimi"
|
||||
|
||||
@@ -4488,6 +4488,7 @@ 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"
|
||||
@@ -4826,6 +4827,11 @@ 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
|
||||
@@ -4883,7 +4889,7 @@ msgid "Detach"
|
||||
msgstr "Ayır"
|
||||
|
||||
#. js-lingui-id: URmyfc
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Details"
|
||||
msgstr "Ayrıntılar"
|
||||
@@ -5318,6 +5324,8 @@ 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"
|
||||
|
||||
@@ -6073,8 +6081,8 @@ msgid "Evaluations"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 0pC/y6
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/modules/activities/calendar/components/CalendarEventDetails.tsx
|
||||
msgid "Event"
|
||||
msgstr "Etkinlik"
|
||||
@@ -6193,6 +6201,11 @@ 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"
|
||||
@@ -6522,6 +6535,8 @@ 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"
|
||||
@@ -6531,6 +6546,11 @@ 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"
|
||||
@@ -7021,6 +7041,11 @@ 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"
|
||||
@@ -8445,6 +8470,11 @@ 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
|
||||
@@ -8879,7 +8909,7 @@ msgstr "Maksimum içe aktarma kapasitesi: {formatSpreadsheetMaxRecordImportCapac
|
||||
|
||||
#. js-lingui-id: S8w4XA
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Max output"
|
||||
msgstr "Maksimum çıktı"
|
||||
|
||||
@@ -8989,6 +9019,11 @@ 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"
|
||||
@@ -9115,7 +9150,6 @@ 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"
|
||||
@@ -9340,12 +9374,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"
|
||||
|
||||
@@ -10010,6 +10044,12 @@ 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"
|
||||
@@ -10021,11 +10061,6 @@ 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
|
||||
@@ -10339,7 +10374,7 @@ msgid "Object Events"
|
||||
msgstr "Nesne Olayları"
|
||||
|
||||
#. js-lingui-id: 79D4Az
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Object ID"
|
||||
msgstr "Nesne Kimliği"
|
||||
|
||||
@@ -11293,8 +11328,8 @@ msgid "Prompt"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: l/UFPv
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Properties"
|
||||
msgstr "Özellikler"
|
||||
|
||||
@@ -11317,8 +11352,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/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Provider"
|
||||
msgstr "Sağlayıcı"
|
||||
|
||||
@@ -11544,7 +11579,7 @@ msgid "Record filter rule options"
|
||||
msgstr "Kayıt filtre kuralı seçenekleri"
|
||||
|
||||
#. js-lingui-id: xSAYIn
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
|
||||
msgid "Record ID"
|
||||
msgstr "Kayıt Kimliği"
|
||||
@@ -11940,7 +11975,7 @@ msgid "Reset variable"
|
||||
msgstr "Değişkeni sıfırla"
|
||||
|
||||
#. js-lingui-id: esl+Tv
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Resource Type"
|
||||
msgstr "Kaynak Türü"
|
||||
|
||||
@@ -14356,9 +14391,10 @@ msgid "Timeout"
|
||||
msgstr "Zaman aşımı"
|
||||
|
||||
#. js-lingui-id: 8TMaZI
|
||||
#: 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/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/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
|
||||
msgid "Timestamp"
|
||||
msgstr "Zaman damgası"
|
||||
@@ -15202,9 +15238,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/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.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/profile/appearance/components/SettingsExperience.tsx
|
||||
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
|
||||
@@ -1958,6 +1958,11 @@ 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."
|
||||
@@ -3345,11 +3350,6 @@ 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"
|
||||
@@ -3395,6 +3395,11 @@ 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."
|
||||
@@ -3523,7 +3528,7 @@ msgstr "Вміст"
|
||||
|
||||
#. js-lingui-id: M73whl
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
@@ -3721,21 +3726,16 @@ 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)"
|
||||
@@ -4325,7 +4325,7 @@ msgid "Data on display"
|
||||
msgstr "Дані на екрані"
|
||||
|
||||
#. js-lingui-id: Ix/CMz
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Data residency"
|
||||
msgstr "Розміщення даних"
|
||||
|
||||
@@ -4488,6 +4488,7 @@ 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"
|
||||
@@ -4826,6 +4827,11 @@ 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
|
||||
@@ -4883,7 +4889,7 @@ msgid "Detach"
|
||||
msgstr "Від’єднати"
|
||||
|
||||
#. js-lingui-id: URmyfc
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Details"
|
||||
msgstr "Деталі"
|
||||
@@ -5318,6 +5324,8 @@ 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 "Редактор"
|
||||
|
||||
@@ -6073,8 +6081,8 @@ msgid "Evaluations"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 0pC/y6
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/modules/activities/calendar/components/CalendarEventDetails.tsx
|
||||
msgid "Event"
|
||||
msgstr "Подія"
|
||||
@@ -6193,6 +6201,11 @@ 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"
|
||||
@@ -6522,6 +6535,8 @@ 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 "Не вдалося оновити доступність моделі"
|
||||
@@ -6531,6 +6546,11 @@ 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"
|
||||
@@ -7021,6 +7041,11 @@ 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"
|
||||
@@ -8445,6 +8470,11 @@ 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
|
||||
@@ -8879,7 +8909,7 @@ msgstr "Макс. ємність імпорту: {formatSpreadsheetMaxRecordImpo
|
||||
|
||||
#. js-lingui-id: S8w4XA
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Max output"
|
||||
msgstr "Максимальний вивід"
|
||||
|
||||
@@ -8989,6 +9019,11 @@ 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"
|
||||
@@ -9115,7 +9150,6 @@ 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 "Моделі"
|
||||
@@ -9340,12 +9374,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 "Ім'я"
|
||||
|
||||
@@ -10010,6 +10044,12 @@ 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"
|
||||
@@ -10021,11 +10061,6 @@ 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
|
||||
@@ -10339,7 +10374,7 @@ msgid "Object Events"
|
||||
msgstr "Події об'єктів"
|
||||
|
||||
#. js-lingui-id: 79D4Az
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Object ID"
|
||||
msgstr "ID об'єкта"
|
||||
|
||||
@@ -11293,8 +11328,8 @@ msgid "Prompt"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: l/UFPv
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Properties"
|
||||
msgstr "Властивості"
|
||||
|
||||
@@ -11317,8 +11352,8 @@ msgstr "Надайте деталі вашого OIDC провайдера"
|
||||
|
||||
#. js-lingui-id: aemBRq
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Provider"
|
||||
msgstr "Провайдер"
|
||||
|
||||
@@ -11544,7 +11579,7 @@ msgid "Record filter rule options"
|
||||
msgstr "Параметри правила фільтра записів"
|
||||
|
||||
#. js-lingui-id: xSAYIn
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
|
||||
msgid "Record ID"
|
||||
msgstr "ID запису"
|
||||
@@ -11940,7 +11975,7 @@ msgid "Reset variable"
|
||||
msgstr "Скинути змінну"
|
||||
|
||||
#. js-lingui-id: esl+Tv
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Resource Type"
|
||||
msgstr "Тип ресурсу"
|
||||
|
||||
@@ -14358,9 +14393,10 @@ msgid "Timeout"
|
||||
msgstr "Тайм-аут"
|
||||
|
||||
#. js-lingui-id: 8TMaZI
|
||||
#: 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/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/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
|
||||
msgid "Timestamp"
|
||||
msgstr "Мітка часу"
|
||||
@@ -15204,9 +15240,9 @@ msgstr "Корисно для проміжних/зв’язувальних т
|
||||
#. js-lingui-id: 7PzzBU
|
||||
#: src/pages/settings/SettingsTwoFactorAuthenticationMethod.tsx
|
||||
#: src/pages/settings/SettingsProfile.tsx
|
||||
#: 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/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/profile/appearance/components/SettingsExperience.tsx
|
||||
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
|
||||
@@ -1958,6 +1958,11 @@ 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."
|
||||
@@ -3345,11 +3350,6 @@ 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"
|
||||
@@ -3395,6 +3395,11 @@ 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."
|
||||
@@ -3523,7 +3528,7 @@ msgstr "Nội dung"
|
||||
|
||||
#. js-lingui-id: M73whl
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
@@ -3721,21 +3726,16 @@ 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)"
|
||||
@@ -4325,7 +4325,7 @@ msgid "Data on display"
|
||||
msgstr "Dữ liệu hiển thị"
|
||||
|
||||
#. js-lingui-id: Ix/CMz
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Data residency"
|
||||
msgstr "Khu vực lưu trữ dữ liệu"
|
||||
|
||||
@@ -4488,6 +4488,7 @@ 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"
|
||||
@@ -4826,6 +4827,11 @@ 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
|
||||
@@ -4883,7 +4889,7 @@ msgid "Detach"
|
||||
msgstr "Tách ra"
|
||||
|
||||
#. js-lingui-id: URmyfc
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Details"
|
||||
msgstr "Chi tiết"
|
||||
@@ -5318,6 +5324,8 @@ 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"
|
||||
|
||||
@@ -6073,8 +6081,8 @@ msgid "Evaluations"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 0pC/y6
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/modules/activities/calendar/components/CalendarEventDetails.tsx
|
||||
msgid "Event"
|
||||
msgstr "Sự kiện"
|
||||
@@ -6193,6 +6201,11 @@ 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"
|
||||
@@ -6522,6 +6535,8 @@ 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"
|
||||
@@ -6531,6 +6546,11 @@ 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"
|
||||
@@ -7021,6 +7041,11 @@ 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"
|
||||
@@ -8445,6 +8470,11 @@ 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
|
||||
@@ -8879,7 +8909,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/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Max output"
|
||||
msgstr "Đầu ra tối đa"
|
||||
|
||||
@@ -8989,6 +9019,11 @@ 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"
|
||||
@@ -9115,7 +9150,6 @@ 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"
|
||||
@@ -9340,12 +9374,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"
|
||||
|
||||
@@ -10010,6 +10044,12 @@ 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"
|
||||
@@ -10021,11 +10061,6 @@ 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
|
||||
@@ -10339,7 +10374,7 @@ msgid "Object Events"
|
||||
msgstr "Sự kiện đối tượng"
|
||||
|
||||
#. js-lingui-id: 79D4Az
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Object ID"
|
||||
msgstr "ID đối tượng"
|
||||
|
||||
@@ -11293,8 +11328,8 @@ msgid "Prompt"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: l/UFPv
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Properties"
|
||||
msgstr "Thuộc tính"
|
||||
|
||||
@@ -11317,8 +11352,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/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Provider"
|
||||
msgstr "Nhà cung cấp"
|
||||
|
||||
@@ -11544,7 +11579,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/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
|
||||
msgid "Record ID"
|
||||
msgstr "ID bản ghi"
|
||||
@@ -11940,7 +11975,7 @@ msgid "Reset variable"
|
||||
msgstr "Đặt lại biến"
|
||||
|
||||
#. js-lingui-id: esl+Tv
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Resource Type"
|
||||
msgstr "Loại tài nguyên"
|
||||
|
||||
@@ -14356,9 +14391,10 @@ msgid "Timeout"
|
||||
msgstr "Thời gian chờ"
|
||||
|
||||
#. js-lingui-id: 8TMaZI
|
||||
#: 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/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/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
|
||||
msgid "Timestamp"
|
||||
msgstr "Dấu thời gian"
|
||||
@@ -15202,9 +15238,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/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.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/profile/appearance/components/SettingsExperience.tsx
|
||||
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
|
||||
@@ -1958,6 +1958,11 @@ 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."
|
||||
@@ -3345,11 +3350,6 @@ 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"
|
||||
@@ -3395,6 +3395,11 @@ 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."
|
||||
@@ -3523,7 +3528,7 @@ msgstr "内容"
|
||||
|
||||
#. js-lingui-id: M73whl
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
@@ -3721,21 +3726,16 @@ 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)"
|
||||
@@ -4325,7 +4325,7 @@ msgid "Data on display"
|
||||
msgstr "显示的数据"
|
||||
|
||||
#. js-lingui-id: Ix/CMz
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Data residency"
|
||||
msgstr "数据驻留"
|
||||
|
||||
@@ -4488,6 +4488,7 @@ 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"
|
||||
@@ -4826,6 +4827,11 @@ 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
|
||||
@@ -4883,7 +4889,7 @@ msgid "Detach"
|
||||
msgstr "取消关联"
|
||||
|
||||
#. js-lingui-id: URmyfc
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Details"
|
||||
msgstr "详情"
|
||||
@@ -5318,6 +5324,8 @@ 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 "编辑器"
|
||||
|
||||
@@ -6073,8 +6081,8 @@ msgid "Evaluations"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 0pC/y6
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/modules/activities/calendar/components/CalendarEventDetails.tsx
|
||||
msgid "Event"
|
||||
msgstr "事件"
|
||||
@@ -6193,6 +6201,11 @@ 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"
|
||||
@@ -6522,6 +6535,8 @@ 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 "更新模型可用性失败"
|
||||
@@ -6531,6 +6546,11 @@ 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"
|
||||
@@ -7021,6 +7041,11 @@ 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"
|
||||
@@ -8445,6 +8470,11 @@ 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
|
||||
@@ -8879,7 +8909,7 @@ msgstr "最大导入容量:{formatSpreadsheetMaxRecordImportCapacity} 记录
|
||||
|
||||
#. js-lingui-id: S8w4XA
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Max output"
|
||||
msgstr "最大输出"
|
||||
|
||||
@@ -8989,6 +9019,11 @@ 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"
|
||||
@@ -9115,7 +9150,6 @@ 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 "模型"
|
||||
@@ -9340,12 +9374,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 "名称"
|
||||
|
||||
@@ -10010,6 +10044,12 @@ 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"
|
||||
@@ -10021,11 +10061,6 @@ 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
|
||||
@@ -10339,7 +10374,7 @@ msgid "Object Events"
|
||||
msgstr "对象事件"
|
||||
|
||||
#. js-lingui-id: 79D4Az
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Object ID"
|
||||
msgstr "对象 ID"
|
||||
|
||||
@@ -11293,8 +11328,8 @@ msgid "Prompt"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: l/UFPv
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Properties"
|
||||
msgstr "属性"
|
||||
|
||||
@@ -11317,8 +11352,8 @@ msgstr "提供您的 OIDC 提供商详情"
|
||||
|
||||
#. js-lingui-id: aemBRq
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Provider"
|
||||
msgstr "提供商"
|
||||
|
||||
@@ -11544,7 +11579,7 @@ msgid "Record filter rule options"
|
||||
msgstr "记录筛选规则选项"
|
||||
|
||||
#. js-lingui-id: xSAYIn
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
|
||||
msgid "Record ID"
|
||||
msgstr "记录 ID"
|
||||
@@ -11940,7 +11975,7 @@ msgid "Reset variable"
|
||||
msgstr "重置变量"
|
||||
|
||||
#. js-lingui-id: esl+Tv
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Resource Type"
|
||||
msgstr "资源类型"
|
||||
|
||||
@@ -14356,9 +14391,10 @@ msgid "Timeout"
|
||||
msgstr "超时"
|
||||
|
||||
#. js-lingui-id: 8TMaZI
|
||||
#: 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/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/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
|
||||
msgid "Timestamp"
|
||||
msgstr "时间戳"
|
||||
@@ -15202,9 +15238,9 @@ msgstr "适用于中间/连接表"
|
||||
#. js-lingui-id: 7PzzBU
|
||||
#: src/pages/settings/SettingsTwoFactorAuthenticationMethod.tsx
|
||||
#: src/pages/settings/SettingsProfile.tsx
|
||||
#: 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/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/profile/appearance/components/SettingsExperience.tsx
|
||||
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
|
||||
@@ -1958,6 +1958,11 @@ 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."
|
||||
@@ -3345,11 +3350,6 @@ 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"
|
||||
@@ -3395,6 +3395,11 @@ 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."
|
||||
@@ -3523,7 +3528,7 @@ msgstr "內容"
|
||||
|
||||
#. js-lingui-id: M73whl
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
@@ -3721,21 +3726,16 @@ 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)"
|
||||
@@ -4325,7 +4325,7 @@ msgid "Data on display"
|
||||
msgstr "顯示的數據"
|
||||
|
||||
#. js-lingui-id: Ix/CMz
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Data residency"
|
||||
msgstr "資料駐留"
|
||||
|
||||
@@ -4488,6 +4488,7 @@ 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"
|
||||
@@ -4826,6 +4827,11 @@ 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
|
||||
@@ -4883,7 +4889,7 @@ msgid "Detach"
|
||||
msgstr "解除連結"
|
||||
|
||||
#. js-lingui-id: URmyfc
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Details"
|
||||
msgstr "詳細資訊"
|
||||
@@ -5318,6 +5324,8 @@ 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 "編輯器"
|
||||
|
||||
@@ -6073,8 +6081,8 @@ msgid "Evaluations"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 0pC/y6
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/modules/activities/calendar/components/CalendarEventDetails.tsx
|
||||
msgid "Event"
|
||||
msgstr "事件"
|
||||
@@ -6193,6 +6201,11 @@ 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"
|
||||
@@ -6522,6 +6535,8 @@ 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 "更新模型可用性失敗"
|
||||
@@ -6531,6 +6546,11 @@ 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"
|
||||
@@ -7021,6 +7041,11 @@ 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"
|
||||
@@ -8445,6 +8470,11 @@ 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
|
||||
@@ -8879,7 +8909,7 @@ msgstr "最大匯入容量:{formatSpreadsheetMaxRecordImportCapacity} 紀錄
|
||||
|
||||
#. js-lingui-id: S8w4XA
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Max output"
|
||||
msgstr "最大輸出"
|
||||
|
||||
@@ -8989,6 +9019,11 @@ 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"
|
||||
@@ -9115,7 +9150,6 @@ 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 "模型"
|
||||
@@ -9340,12 +9374,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 "名稱"
|
||||
|
||||
@@ -10010,6 +10044,12 @@ 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"
|
||||
@@ -10021,11 +10061,6 @@ 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
|
||||
@@ -10339,7 +10374,7 @@ msgid "Object Events"
|
||||
msgstr "對象事件"
|
||||
|
||||
#. js-lingui-id: 79D4Az
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Object ID"
|
||||
msgstr "對象 ID"
|
||||
|
||||
@@ -11293,8 +11328,8 @@ msgid "Prompt"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: l/UFPv
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Properties"
|
||||
msgstr "屬性"
|
||||
|
||||
@@ -11317,8 +11352,8 @@ msgstr "提供您的 OIDC 提供者詳細信息"
|
||||
|
||||
#. js-lingui-id: aemBRq
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Provider"
|
||||
msgstr "供應商"
|
||||
|
||||
@@ -11544,7 +11579,7 @@ msgid "Record filter rule options"
|
||||
msgstr "記錄篩選規則選項"
|
||||
|
||||
#. js-lingui-id: xSAYIn
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
|
||||
msgid "Record ID"
|
||||
msgstr "記錄 ID"
|
||||
@@ -11940,7 +11975,7 @@ msgid "Reset variable"
|
||||
msgstr "重置變量"
|
||||
|
||||
#. js-lingui-id: esl+Tv
|
||||
#: src/pages/settings/security/event-logs/components/EventLogResultsTable.tsx
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Resource Type"
|
||||
msgstr "資源類型"
|
||||
|
||||
@@ -14356,9 +14391,10 @@ msgid "Timeout"
|
||||
msgstr "逾時"
|
||||
|
||||
#. js-lingui-id: 8TMaZI
|
||||
#: 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/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/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
|
||||
msgid "Timestamp"
|
||||
msgstr "時間戳"
|
||||
@@ -15202,9 +15238,9 @@ msgstr "適用於樞紐/聯結表"
|
||||
#. js-lingui-id: 7PzzBU
|
||||
#: src/pages/settings/SettingsTwoFactorAuthenticationMethod.tsx
|
||||
#: src/pages/settings/SettingsProfile.tsx
|
||||
#: 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/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/profile/appearance/components/SettingsExperience.tsx
|
||||
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
|
||||
@@ -5,7 +5,7 @@ import { ConnectedAccountProvider } from 'twenty-shared/types';
|
||||
import { assertUnreachable, isDefined } from 'twenty-shared/utils';
|
||||
|
||||
export const getMissingDraftEmailScopes = (
|
||||
connectedAccount: ConnectedAccount,
|
||||
connectedAccount: Pick<ConnectedAccount, 'provider' | 'scopes'>,
|
||||
): string[] => {
|
||||
const scopes = connectedAccount.scopes;
|
||||
|
||||
|
||||
+52
-7
@@ -1,6 +1,6 @@
|
||||
import { useAtomValue, useStore } from 'jotai';
|
||||
import { useEffect } from 'react';
|
||||
import { isDefined } from 'twenty-shared/utils';
|
||||
import { isDefined, isValidUuid } from 'twenty-shared/utils';
|
||||
|
||||
import {
|
||||
AGENT_CHAT_NEW_THREAD_DRAFT_KEY,
|
||||
@@ -14,13 +14,26 @@ import { currentAIChatThreadState } from '@/ai/states/currentAIChatThreadState';
|
||||
import { currentAIChatThreadTitleState } from '@/ai/states/currentAIChatThreadTitleState';
|
||||
import { hasInitializedAgentChatThreadsState } from '@/ai/states/hasInitializedAgentChatThreadsState';
|
||||
import { hasTriggeredCreateForDraftState } from '@/ai/states/hasTriggeredCreateForDraftState';
|
||||
import { useUpdateMetadataStoreDraft } from '@/metadata-store/hooks/useUpdateMetadataStoreDraft';
|
||||
import { metadataStoreState } from '@/metadata-store/states/metadataStoreState';
|
||||
import { type FlatAgentChatThread } from '@/metadata-store/types/FlatAgentChatThread';
|
||||
import { useHasPermissionFlag } from '@/settings/roles/hooks/useHasPermissionFlag';
|
||||
import { useAtomState } from '@/ui/utilities/state/jotai/hooks/useAtomState';
|
||||
import { useAtomStateValue } from '@/ui/utilities/state/jotai/hooks/useAtomStateValue';
|
||||
import { useSetAtomState } from '@/ui/utilities/state/jotai/hooks/useSetAtomState';
|
||||
import { useApolloClient } from '@apollo/client/react';
|
||||
import {
|
||||
GetChatThreadsDocument,
|
||||
PermissionFlagType,
|
||||
} from '~/generated-metadata/graphql';
|
||||
|
||||
export const AgentChatThreadInitializationEffect = () => {
|
||||
const client = useApolloClient();
|
||||
const { replaceDraft, applyChanges } = useUpdateMetadataStoreDraft();
|
||||
const hasAiSettingsPermission = useHasPermissionFlag(
|
||||
PermissionFlagType.AI_SETTINGS,
|
||||
);
|
||||
|
||||
const currentAIChatThread = useAtomStateValue(currentAIChatThreadState);
|
||||
const setCurrentAIChatThread = useSetAtomState(currentAIChatThreadState);
|
||||
const setAgentChatInput = useSetAtomState(agentChatInputState);
|
||||
@@ -40,15 +53,46 @@ export const AgentChatThreadInitializationEffect = () => {
|
||||
useAtomState(hasInitializedAgentChatThreadsState);
|
||||
|
||||
useEffect(() => {
|
||||
setAgentChatThreadsLoading(storeEntry.status === 'empty');
|
||||
}, [storeEntry.status, setAgentChatThreadsLoading]);
|
||||
|
||||
useEffect(() => {
|
||||
if (hasInitializedAgentChatThreads || isDefined(currentAIChatThread)) {
|
||||
if (storeEntry.status !== 'empty' || !hasAiSettingsPermission) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (storeEntry.status === 'empty') {
|
||||
client
|
||||
.query({
|
||||
query: GetChatThreadsDocument,
|
||||
variables: { paging: { first: 500 } },
|
||||
fetchPolicy: 'network-only',
|
||||
})
|
||||
.then((result) => {
|
||||
if (!isDefined(result.data?.chatThreads?.edges)) {
|
||||
return;
|
||||
}
|
||||
|
||||
const threads = result.data.chatThreads.edges.map((edge) => edge.node);
|
||||
|
||||
replaceDraft('agentChatThreads', threads);
|
||||
applyChanges();
|
||||
});
|
||||
}, [
|
||||
storeEntry.status,
|
||||
hasAiSettingsPermission,
|
||||
client,
|
||||
replaceDraft,
|
||||
applyChanges,
|
||||
]);
|
||||
|
||||
useEffect(() => {
|
||||
setAgentChatThreadsLoading(
|
||||
storeEntry.status === 'empty' && hasAiSettingsPermission,
|
||||
);
|
||||
}, [storeEntry.status, hasAiSettingsPermission, setAgentChatThreadsLoading]);
|
||||
|
||||
useEffect(() => {
|
||||
if (hasInitializedAgentChatThreads || isValidUuid(currentAIChatThread)) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (storeEntry.status === 'empty' && hasAiSettingsPermission) {
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -99,6 +143,7 @@ export const AgentChatThreadInitializationEffect = () => {
|
||||
}, [
|
||||
agentChatThreads,
|
||||
currentAIChatThread,
|
||||
hasAiSettingsPermission,
|
||||
hasInitializedAgentChatThreads,
|
||||
setHasInitializedAgentChatThreads,
|
||||
storeEntry.status,
|
||||
|
||||
@@ -5,7 +5,7 @@ import { type SelectOption } from 'twenty-ui/input';
|
||||
import { useWorkspaceAiModelAvailability } from '@/ai/hooks/useWorkspaceAiModelAvailability';
|
||||
import { currentWorkspaceState } from '@/auth/states/currentWorkspaceState';
|
||||
import { aiModelsState } from '@/client-config/states/aiModelsState';
|
||||
import { getModelIcon } from '@/settings/admin-panel/ai/utils/getModelIcon';
|
||||
import { getModelIcon } from '@/settings/ai/utils/getModelIcon';
|
||||
import { useAtomStateValue } from '@/ui/utilities/state/jotai/hooks/useAtomStateValue';
|
||||
|
||||
type UseAiModelOptionsVariant = 'all' | 'pinned-default';
|
||||
|
||||
@@ -42,7 +42,7 @@ export const useProcessUIToolCallMessage = () => {
|
||||
continue;
|
||||
}
|
||||
|
||||
if (toolExecutionPart.output.result.success !== true) {
|
||||
if (toolExecutionPart.output.success !== true) {
|
||||
continue;
|
||||
}
|
||||
|
||||
@@ -51,7 +51,7 @@ export const useProcessUIToolCallMessage = () => {
|
||||
toolExecutionPart.toolCallId,
|
||||
]);
|
||||
|
||||
const navigateAppOutput = toolExecutionPart.output.result.result;
|
||||
const navigateAppOutput = toolExecutionPart.output.result;
|
||||
|
||||
switch (navigateAppOutput.action) {
|
||||
case 'navigateToObject': {
|
||||
|
||||
@@ -3,49 +3,25 @@ import { isAutoSelectModelId } from 'twenty-shared/utils';
|
||||
import { currentWorkspaceState } from '@/auth/states/currentWorkspaceState';
|
||||
import { aiModelsState } from '@/client-config/states/aiModelsState';
|
||||
import { useAtomStateValue } from '@/ui/utilities/state/jotai/hooks/useAtomStateValue';
|
||||
import { type ClientAiModelConfig } from '~/generated-metadata/graphql';
|
||||
|
||||
export const useWorkspaceAiModelAvailability = () => {
|
||||
const aiModels = useAtomStateValue(aiModelsState);
|
||||
const currentWorkspace = useAtomStateValue(currentWorkspaceState);
|
||||
|
||||
const useRecommendedModels = currentWorkspace?.useRecommendedModels ?? true;
|
||||
const enabledAiModelIds = currentWorkspace?.enabledAiModelIds ?? [];
|
||||
|
||||
const isModelEnabled = (
|
||||
modelId: string,
|
||||
model?: ClientAiModelConfig,
|
||||
): boolean => {
|
||||
if (isAutoSelectModelId(modelId)) {
|
||||
return true;
|
||||
}
|
||||
|
||||
if (useRecommendedModels) {
|
||||
return model?.isRecommended === true;
|
||||
}
|
||||
|
||||
return enabledAiModelIds.includes(modelId);
|
||||
};
|
||||
const enabledAiModelIds = new Set(currentWorkspace?.enabledAiModelIds ?? []);
|
||||
|
||||
const realModels = aiModels.filter(
|
||||
(model) => !isAutoSelectModelId(model.modelId) && !model.isDeprecated,
|
||||
);
|
||||
|
||||
const enabledModels = realModels.filter((model) =>
|
||||
isModelEnabled(model.modelId, model),
|
||||
);
|
||||
|
||||
const allModelsWithAvailability = realModels.map((model) => ({
|
||||
...model,
|
||||
isEnabled: isModelEnabled(model.modelId, model),
|
||||
}));
|
||||
const enabledModels = useRecommendedModels
|
||||
? realModels.filter((model) => model.isRecommended === true)
|
||||
: realModels.filter((model) => enabledAiModelIds.has(model.modelId));
|
||||
|
||||
return {
|
||||
isModelEnabled,
|
||||
enabledModels,
|
||||
realModels,
|
||||
allModelsWithAvailability,
|
||||
useRecommendedModels,
|
||||
enabledAiModelIds,
|
||||
};
|
||||
};
|
||||
|
||||
@@ -5,11 +5,8 @@ export type AgentChatMessageUIToolCallPart = {
|
||||
toolCallId: string;
|
||||
state: string;
|
||||
output: {
|
||||
toolName: string;
|
||||
result: {
|
||||
message: string;
|
||||
result: NavigateAppToolOutput;
|
||||
success: boolean;
|
||||
};
|
||||
success: boolean;
|
||||
message: string;
|
||||
result: NavigateAppToolOutput;
|
||||
};
|
||||
};
|
||||
|
||||
@@ -1,8 +1,6 @@
|
||||
import { type ConnectedAccount } from '@/accounts/types/ConnectedAccount';
|
||||
import { currentUserState } from '@/auth/states/currentUserState';
|
||||
import { type InformationBannerKeys } from '@/information-banner/types/InformationBannerKeys';
|
||||
import { CoreObjectNameSingular } from 'twenty-shared/types';
|
||||
import { useFindOneRecord } from '@/object-record/hooks/useFindOneRecord';
|
||||
import { useMyConnectedAccounts } from '@/settings/accounts/hooks/useMyConnectedAccounts';
|
||||
import { useAtomStateValue } from '@/ui/utilities/state/jotai/hooks/useAtomStateValue';
|
||||
|
||||
export const useAccountToReconnect = (key: InformationBannerKeys) => {
|
||||
@@ -12,13 +10,13 @@ export const useAccountToReconnect = (key: InformationBannerKeys) => {
|
||||
|
||||
const firstAccountIdToReconnect = userVars?.[key]?.[0];
|
||||
|
||||
const accountToReconnect = useFindOneRecord<ConnectedAccount>({
|
||||
objectNameSingular: CoreObjectNameSingular.ConnectedAccount,
|
||||
objectRecordId: firstAccountIdToReconnect,
|
||||
skip: !firstAccountIdToReconnect,
|
||||
});
|
||||
const { accounts } = useMyConnectedAccounts();
|
||||
|
||||
const accountToReconnect = accounts.find(
|
||||
(account) => account.id === firstAccountIdToReconnect,
|
||||
);
|
||||
|
||||
return {
|
||||
accountToReconnect: accountToReconnect?.record,
|
||||
accountToReconnect,
|
||||
};
|
||||
};
|
||||
|
||||
+1
-27
@@ -5,12 +5,10 @@ import { splitPageLayoutWithRelated } from '@/metadata-store/utils/splitPageLayo
|
||||
import { splitViewWithRelated } from '@/metadata-store/utils/splitViewWithRelated';
|
||||
import { FIND_MANY_OBJECT_METADATA_ITEMS } from '@/object-metadata/graphql/queries';
|
||||
import { transformPageLayout } from '@/page-layout/utils/transformPageLayout';
|
||||
import { useIsFeatureEnabled } from '@/workspace/hooks/useIsFeatureEnabled';
|
||||
import { useApolloClient } from '@apollo/client/react';
|
||||
import { useCallback } from 'react';
|
||||
import { isDefined } from 'twenty-shared/utils';
|
||||
import {
|
||||
FeatureFlagKey,
|
||||
FindAllViewsDocument,
|
||||
FindManyCommandMenuItemsDocument,
|
||||
FindAllRecordPageLayoutsDocument,
|
||||
@@ -18,7 +16,6 @@ import {
|
||||
FindManyFrontComponentsDocument,
|
||||
FindManyLogicFunctionsDocument,
|
||||
FindManyNavigationMenuItemsDocument,
|
||||
GetChatThreadsDocument,
|
||||
type ObjectMetadataItemsQuery,
|
||||
ViewType,
|
||||
} from '~/generated-metadata/graphql';
|
||||
@@ -56,7 +53,6 @@ const hasOverlap = (
|
||||
export const useLoadStaleMetadataEntities = () => {
|
||||
const client = useApolloClient();
|
||||
const { replaceDraft, applyChanges } = useUpdateMetadataStoreDraft();
|
||||
const isAiEnabled = useIsFeatureEnabled(FeatureFlagKey.IS_AI_ENABLED);
|
||||
|
||||
const loadStaleMetadataEntities = useCallback(
|
||||
async (staleEntityKeys: MetadataEntityKey[]) => {
|
||||
@@ -226,32 +222,10 @@ export const useLoadStaleMetadataEntities = () => {
|
||||
);
|
||||
}
|
||||
|
||||
if (staleEntityKeys.includes('agentChatThreads') && isAiEnabled) {
|
||||
fetchPromises.push(
|
||||
client
|
||||
.query({
|
||||
query: GetChatThreadsDocument,
|
||||
variables: { paging: { first: 500 } },
|
||||
fetchPolicy: 'network-only',
|
||||
})
|
||||
.then((result) => {
|
||||
if (!isDefined(result.data?.chatThreads?.edges)) {
|
||||
return;
|
||||
}
|
||||
|
||||
const threads = result.data.chatThreads.edges.map(
|
||||
(edge) => edge.node,
|
||||
);
|
||||
|
||||
replaceDraft('agentChatThreads', threads);
|
||||
}),
|
||||
);
|
||||
}
|
||||
|
||||
await Promise.all(fetchPromises);
|
||||
applyChanges();
|
||||
},
|
||||
[client, replaceDraft, applyChanges, isAiEnabled],
|
||||
[client, replaceDraft, applyChanges],
|
||||
);
|
||||
|
||||
return { loadStaleMetadataEntities };
|
||||
|
||||
+6
-6
@@ -1,16 +1,15 @@
|
||||
import { useDraftNavigationMenuItems } from '@/navigation-menu-item/edit/hooks/useDraftNavigationMenuItems';
|
||||
import { useNavigationMenuObjectMetadataFromDraft } from '@/navigation-menu-item/edit/hooks/useNavigationMenuObjectMetadataFromDraft';
|
||||
import { SidePanelNewSidebarItemViewSystemSubView } from '@/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView';
|
||||
import { getAvailableObjectMetadataForNewSidebarItem } from '@/navigation-menu-item/edit/side-panel/utils/getAvailableObjectMetadataForNewSidebarItem';
|
||||
import { isViewDisplayableInNavigationMenu } from '@/navigation-menu-item/edit/side-panel/utils/isViewDisplayableInNavigationMenu';
|
||||
import { useFilteredObjectMetadataItems } from '@/object-metadata/hooks/useFilteredObjectMetadataItems';
|
||||
import { useObjectMetadataItems } from '@/object-metadata/hooks/useObjectMetadataItems';
|
||||
import { type EnrichedObjectMetadataItem } from '@/object-metadata/types/EnrichedObjectMetadataItem';
|
||||
import { useSidePanelSubPageHistory } from '@/side-panel/hooks/useSidePanelSubPageHistory';
|
||||
import { SidePanelNewSidebarItemViewSystemSubView } from '@/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView';
|
||||
import { getAvailableObjectMetadataForNewSidebarItem } from '@/navigation-menu-item/edit/side-panel/utils/getAvailableObjectMetadataForNewSidebarItem';
|
||||
import { selectedObjectMetadataIdForViewFlowState } from '@/side-panel/states/selectedObjectMetadataIdForViewFlowState';
|
||||
import { SidePanelSubPages } from '@/side-panel/types/SidePanelSubPages';
|
||||
import { useSetAtomComponentState } from '@/ui/utilities/state/jotai/hooks/useSetAtomComponentState';
|
||||
import { ViewKey } from '@/views/types/ViewKey';
|
||||
import { ViewType } from '@/views/types/ViewType';
|
||||
import { useState } from 'react';
|
||||
|
||||
export const SidePanelNewSidebarItemViewSystemPickerSubPage = () => {
|
||||
@@ -24,14 +23,15 @@ export const SidePanelNewSidebarItemViewSystemPickerSubPage = () => {
|
||||
const { objectMetadataItems } = useObjectMetadataItems();
|
||||
const { activeNonSystemObjectMetadataItems } =
|
||||
useFilteredObjectMetadataItems();
|
||||
const { views, objectMetadataIdsWithIndexView } =
|
||||
const { views, objectMetadataIdsWithIndexView, viewIdsInWorkspace } =
|
||||
useNavigationMenuObjectMetadataFromDraft(currentDraft);
|
||||
|
||||
const objectMetadataIdsWithDisplayableViews = new Set(
|
||||
views
|
||||
.filter(
|
||||
(view) =>
|
||||
view.key !== ViewKey.INDEX && view.type !== ViewType.FIELDS_WIDGET,
|
||||
isViewDisplayableInNavigationMenu(view) &&
|
||||
!viewIdsInWorkspace.has(view.id),
|
||||
)
|
||||
.map((view) => view.objectMetadataId),
|
||||
);
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user