Compare commits
21
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f5b2c71943 | ||
|
|
74e6e20921 | ||
|
|
c3ee312d26 | ||
|
|
6cdca784fd | ||
|
|
2612145436 | ||
|
|
4c97642258 | ||
|
|
08f019e9c9 | ||
|
|
888fa271f0 | ||
|
|
bb5c64952c | ||
|
|
6dedb35a1f | ||
|
|
436333f110 | ||
|
|
ec283b8f2d | ||
|
|
c3b969ab74 | ||
|
|
287fe90ce9 | ||
|
|
d10c0a6439 | ||
|
|
9573e11879 | ||
|
|
717989d36d | ||
|
|
e6cfa46998 | ||
|
|
d4acf77338 | ||
|
|
220b32b19b | ||
|
|
f8d92f9626 |
@@ -0,0 +1,23 @@
|
||||
{
|
||||
"version": "0.0.1",
|
||||
"configurations": [
|
||||
{
|
||||
"name": "twenty-front",
|
||||
"runtimeExecutable": "npx",
|
||||
"runtimeArgs": ["nx", "start", "twenty-front"],
|
||||
"port": 3001
|
||||
},
|
||||
{
|
||||
"name": "twenty-server",
|
||||
"runtimeExecutable": "npx",
|
||||
"runtimeArgs": ["nx", "start", "twenty-server"],
|
||||
"port": 3000
|
||||
},
|
||||
{
|
||||
"name": "twenty-worker",
|
||||
"runtimeExecutable": "npx",
|
||||
"runtimeArgs": ["nx", "run", "twenty-server:worker"],
|
||||
"port": 0
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,7 +1,7 @@
|
||||
## Base documentation
|
||||
|
||||
- Documentation: https://docs.twenty.com/developers/extend/capabilities/apps
|
||||
- Rich app example: https://github.com/twentyhq/twenty/tree/main/packages/twenty-sdk/src/app-seeds/rich-app
|
||||
- Rich app example: https://github.com/twentyhq/twenty/tree/main/packages/twenty-apps/fixtures/postcard-app
|
||||
|
||||
## UUID requirement
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
## Base documentation
|
||||
|
||||
- Documentation: https://docs.twenty.com/developers/extend/capabilities/apps
|
||||
- Rich app example: https://github.com/twentyhq/twenty/tree/main/packages/twenty-sdk/src/app-seeds/rich-app
|
||||
- Rich app example: https://github.com/twentyhq/twenty/tree/main/packages/twenty-apps/fixtures/postcard-app
|
||||
|
||||
## UUID requirement
|
||||
- All generated UUIDs must be valid UUID v4.
|
||||
|
||||
+18
@@ -0,0 +1,18 @@
|
||||
import {
|
||||
defineField,
|
||||
FieldType,
|
||||
STANDARD_OBJECT_UNIVERSAL_IDENTIFIERS,
|
||||
} from 'twenty-sdk';
|
||||
|
||||
// Field on existing company object
|
||||
export default defineField({
|
||||
universalIdentifier: 'f922fdb8-10a9-4f11-a1d0-992a779f6dff',
|
||||
objectUniversalIdentifier:
|
||||
STANDARD_OBJECT_UNIVERSAL_IDENTIFIERS.company.universalIdentifier,
|
||||
type: FieldType.BOOLEAN,
|
||||
name: 'canReceivePostcards',
|
||||
label: 'Can Receive Postcards',
|
||||
description: 'Whether the company can receive postcards',
|
||||
icon: 'IconMailbox',
|
||||
defaultValue: false,
|
||||
});
|
||||
@@ -6,6 +6,9 @@ export const RECIPIENT_UNIVERSAL_IDENTIFIER =
|
||||
export const RECIPIENT_EMAIL_FIELD_UNIVERSAL_IDENTIFIER =
|
||||
'd2a2b3c4-5e6f-4a7b-8c9d-0e1f2a3b4c5d';
|
||||
|
||||
export const RECIPIENT_ADDRESS_FIELD_UNIVERSAL_IDENTIFIER =
|
||||
'd3a2b3c4-5e6f-4a7b-8c9d-0e1f2a3b4c5d';
|
||||
|
||||
export default defineObject({
|
||||
universalIdentifier: RECIPIENT_UNIVERSAL_IDENTIFIER,
|
||||
nameSingular: 'recipient',
|
||||
@@ -23,7 +26,7 @@ export default defineObject({
|
||||
icon: 'IconMail',
|
||||
},
|
||||
{
|
||||
universalIdentifier: 'd3a2b3c4-5e6f-4a7b-8c9d-0e1f2a3b4c5d',
|
||||
universalIdentifier: RECIPIENT_ADDRESS_FIELD_UNIVERSAL_IDENTIFIER,
|
||||
type: FieldType.ADDRESS,
|
||||
label: 'Mailing Address',
|
||||
name: 'mailingAddress',
|
||||
|
||||
+7
-3
@@ -1,13 +1,16 @@
|
||||
import { defineView } from 'twenty-sdk';
|
||||
import { ViewType } from 'twenty-shared/types';
|
||||
import {
|
||||
POST_CARD_RECIPIENT_UNIVERSAL_IDENTIFIER,
|
||||
SENT_AT_FIELD_UNIVERSAL_IDENTIFIER,
|
||||
} from '../objects/post-card-recipient.object';
|
||||
import { defineView } from 'twenty-sdk';
|
||||
import { ViewType } from 'twenty-shared/types';
|
||||
|
||||
export const ALL_POST_CARD_RECIPIENTS_VIEW_ID =
|
||||
'b1a2b3c4-0003-4a7b-8c9d-0e1f2a3b4c5d';
|
||||
|
||||
export const POST_CARD_RECIPIENT_SENT_AT_FIELD_UNIVERSAL_IDENTIFIER =
|
||||
'fd959c6f-3465-4a3a-b7ad-3f4004fffc9a';
|
||||
|
||||
export default defineView({
|
||||
universalIdentifier: ALL_POST_CARD_RECIPIENTS_VIEW_ID,
|
||||
name: 'All Post Card Recipients',
|
||||
@@ -17,7 +20,8 @@ export default defineView({
|
||||
position: 2,
|
||||
fields: [
|
||||
{
|
||||
universalIdentifier: 'bf1a2b3c-0004-4a7b-8c9d-0e1f2a3b4c5d',
|
||||
universalIdentifier:
|
||||
POST_CARD_RECIPIENT_SENT_AT_FIELD_UNIVERSAL_IDENTIFIER,
|
||||
fieldMetadataUniversalIdentifier: SENT_AT_FIELD_UNIVERSAL_IDENTIFIER,
|
||||
position: 0,
|
||||
isVisible: true,
|
||||
|
||||
@@ -1,9 +1,10 @@
|
||||
import { defineView } from 'twenty-sdk';
|
||||
import { ViewType } from 'twenty-shared/types';
|
||||
import {
|
||||
RECIPIENT_ADDRESS_FIELD_UNIVERSAL_IDENTIFIER,
|
||||
RECIPIENT_EMAIL_FIELD_UNIVERSAL_IDENTIFIER,
|
||||
RECIPIENT_UNIVERSAL_IDENTIFIER,
|
||||
} from '../objects/recipient.object';
|
||||
import { defineView } from 'twenty-sdk';
|
||||
import { ViewType } from 'twenty-shared/types';
|
||||
|
||||
export const ALL_RECIPIENTS_VIEW_ID = 'b1a2b3c4-0002-4a7b-8c9d-0e1f2a3b4c5d';
|
||||
|
||||
@@ -23,5 +24,13 @@ export default defineView({
|
||||
isVisible: true,
|
||||
size: 200,
|
||||
},
|
||||
{
|
||||
universalIdentifier: 'bf1a2b3c-0004-4a7b-8c9d-0e1f2a3b4c5d',
|
||||
fieldMetadataUniversalIdentifier:
|
||||
RECIPIENT_ADDRESS_FIELD_UNIVERSAL_IDENTIFIER,
|
||||
position: 1,
|
||||
isVisible: true,
|
||||
size: 150,
|
||||
},
|
||||
],
|
||||
});
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
## Base documentation
|
||||
|
||||
- Documentation: https://docs.twenty.com/developers/extend/capabilities/apps
|
||||
- Rich app example: https://github.com/twentyhq/twenty/tree/main/packages/twenty-sdk/src/app-seeds/rich-app
|
||||
- Rich app example: https://github.com/twentyhq/twenty/tree/main/packages/twenty-apps/fixtures/postcard-app
|
||||
|
||||
## UUID requirement
|
||||
|
||||
|
||||
@@ -14,7 +14,8 @@ export default defineObject({
|
||||
labelPlural: 'Example items',
|
||||
description: 'A sample custom object',
|
||||
icon: 'IconBox',
|
||||
labelIdentifierFieldMetadataUniversalIdentifier: NAME_FIELD_UNIVERSAL_IDENTIFIER,
|
||||
labelIdentifierFieldMetadataUniversalIdentifier:
|
||||
NAME_FIELD_UNIVERSAL_IDENTIFIER,
|
||||
fields: [
|
||||
{
|
||||
universalIdentifier: NAME_FIELD_UNIVERSAL_IDENTIFIER,
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
## Base documentation
|
||||
|
||||
- Documentation: https://docs.twenty.com/developers/extend/capabilities/apps
|
||||
- Rich app example: https://github.com/twentyhq/twenty/tree/main/packages/twenty-sdk/src/app-seeds/rich-app
|
||||
- Rich app example: https://github.com/twentyhq/twenty/tree/main/packages/twenty-apps/fixtures/postcard-app
|
||||
|
||||
## Common Pitfalls
|
||||
|
||||
|
||||
@@ -2787,10 +2787,12 @@ type AgentChatThread {
|
||||
type AgentMessage {
|
||||
id: UUID!
|
||||
threadId: UUID!
|
||||
turnId: UUID!
|
||||
turnId: UUID
|
||||
agentId: UUID
|
||||
role: String!
|
||||
status: String!
|
||||
parts: [AgentMessagePart!]!
|
||||
processedAt: DateTime
|
||||
createdAt: DateTime!
|
||||
}
|
||||
|
||||
|
||||
@@ -2448,10 +2448,12 @@ export interface AgentChatThread {
|
||||
export interface AgentMessage {
|
||||
id: Scalars['UUID']
|
||||
threadId: Scalars['UUID']
|
||||
turnId: Scalars['UUID']
|
||||
turnId?: Scalars['UUID']
|
||||
agentId?: Scalars['UUID']
|
||||
role: Scalars['String']
|
||||
status: Scalars['String']
|
||||
parts: AgentMessagePart[]
|
||||
processedAt?: Scalars['DateTime']
|
||||
createdAt: Scalars['DateTime']
|
||||
__typename: 'AgentMessage'
|
||||
}
|
||||
@@ -5598,7 +5600,9 @@ export interface AgentMessageGenqlSelection{
|
||||
turnId?: boolean | number
|
||||
agentId?: boolean | number
|
||||
role?: boolean | number
|
||||
status?: boolean | number
|
||||
parts?: AgentMessagePartGenqlSelection
|
||||
processedAt?: boolean | number
|
||||
createdAt?: boolean | number
|
||||
__typename?: boolean | number
|
||||
__scalar?: boolean | number
|
||||
|
||||
@@ -5543,9 +5543,15 @@ export default {
|
||||
"role": [
|
||||
1
|
||||
],
|
||||
"status": [
|
||||
1
|
||||
],
|
||||
"parts": [
|
||||
296
|
||||
],
|
||||
"processedAt": [
|
||||
4
|
||||
],
|
||||
"createdAt": [
|
||||
4
|
||||
],
|
||||
|
||||
|
Before Width: | Height: | Size: 124 KiB After Width: | Height: | Size: 124 KiB |
|
Before Width: | Height: | Size: 32 KiB After Width: | Height: | Size: 32 KiB |
@@ -171,9 +171,11 @@ export type AgentMessage = {
|
||||
createdAt: Scalars['DateTime'];
|
||||
id: Scalars['UUID'];
|
||||
parts: Array<AgentMessagePart>;
|
||||
processedAt?: Maybe<Scalars['DateTime']>;
|
||||
role: Scalars['String'];
|
||||
status: Scalars['String'];
|
||||
threadId: Scalars['UUID'];
|
||||
turnId: Scalars['UUID'];
|
||||
turnId?: Maybe<Scalars['UUID']>;
|
||||
};
|
||||
|
||||
export type AgentMessagePart = {
|
||||
@@ -6281,7 +6283,7 @@ export type GetChatMessagesQueryVariables = Exact<{
|
||||
}>;
|
||||
|
||||
|
||||
export type GetChatMessagesQuery = { __typename?: 'Query', chatMessages: Array<{ __typename?: 'AgentMessage', id: string, threadId: string, turnId: string, role: string, createdAt: string, parts: Array<{ __typename?: 'AgentMessagePart', id: string, messageId: string, orderIndex: number, type: string, textContent?: string | null, reasoningContent?: string | null, toolName?: string | null, toolCallId?: string | null, toolInput?: any | null, toolOutput?: any | null, state?: string | null, errorMessage?: string | null, errorDetails?: any | null, sourceUrlSourceId?: string | null, sourceUrlUrl?: string | null, sourceUrlTitle?: string | null, sourceDocumentSourceId?: string | null, sourceDocumentMediaType?: string | null, sourceDocumentTitle?: string | null, sourceDocumentFilename?: string | null, fileMediaType?: string | null, fileFilename?: string | null, fileUrl?: string | null, fileId?: string | null, providerMetadata?: any | null, createdAt: string }> }> };
|
||||
export type GetChatMessagesQuery = { __typename?: 'Query', chatMessages: Array<{ __typename?: 'AgentMessage', id: string, threadId: string, turnId?: string | null, role: string, status: string, createdAt: string, parts: Array<{ __typename?: 'AgentMessagePart', id: string, messageId: string, orderIndex: number, type: string, textContent?: string | null, reasoningContent?: string | null, toolName?: string | null, toolCallId?: string | null, toolInput?: any | null, toolOutput?: any | null, state?: string | null, errorMessage?: string | null, errorDetails?: any | null, sourceUrlSourceId?: string | null, sourceUrlUrl?: string | null, sourceUrlTitle?: string | null, sourceDocumentSourceId?: string | null, sourceDocumentMediaType?: string | null, sourceDocumentTitle?: string | null, sourceDocumentFilename?: string | null, fileMediaType?: string | null, fileFilename?: string | null, fileUrl?: string | null, fileId?: string | null, providerMetadata?: any | null, createdAt: string }> }> };
|
||||
|
||||
export type GetChatThreadsQueryVariables = Exact<{
|
||||
paging?: InputMaybe<CursorPaging>;
|
||||
@@ -8119,7 +8121,7 @@ export const FindManySkillsDocument = {"kind":"Document","definitions":[{"kind":
|
||||
export const FindOneAgentDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"FindOneAgent"},"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":"findOneAgent"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"input"},"value":{"kind":"ObjectValue","fields":[{"kind":"ObjectField","name":{"kind":"Name","value":"id"},"value":{"kind":"Variable","name":{"kind":"Name","value":"id"}}}]}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"AgentFields"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"AgentFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Agent"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"prompt"}},{"kind":"Field","name":{"kind":"Name","value":"modelId"}},{"kind":"Field","name":{"kind":"Name","value":"responseFormat"}},{"kind":"Field","name":{"kind":"Name","value":"roleId"}},{"kind":"Field","name":{"kind":"Name","value":"isCustom"}},{"kind":"Field","name":{"kind":"Name","value":"modelConfiguration"}},{"kind":"Field","name":{"kind":"Name","value":"evaluationInputs"}},{"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<FindOneAgentQuery, FindOneAgentQueryVariables>;
|
||||
export const FindOneSkillDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"FindOneSkill"},"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":"skill"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"id"},"value":{"kind":"Variable","name":{"kind":"Name","value":"id"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"SkillFields"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"SkillFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Skill"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"content"}},{"kind":"Field","name":{"kind":"Name","value":"isCustom"}},{"kind":"Field","name":{"kind":"Name","value":"isActive"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}}]}}]} as unknown as DocumentNode<FindOneSkillQuery, FindOneSkillQueryVariables>;
|
||||
export const GetAgentTurnsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"GetAgentTurns"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"agentId"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"UUID"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"agentTurns"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"agentId"},"value":{"kind":"Variable","name":{"kind":"Name","value":"agentId"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"threadId"}},{"kind":"Field","name":{"kind":"Name","value":"agentId"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"evaluations"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"score"}},{"kind":"Field","name":{"kind":"Name","value":"comment"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}}]}},{"kind":"Field","name":{"kind":"Name","value":"messages"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"role"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"parts"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"textContent"}},{"kind":"Field","name":{"kind":"Name","value":"reasoningContent"}},{"kind":"Field","name":{"kind":"Name","value":"toolName"}},{"kind":"Field","name":{"kind":"Name","value":"toolCallId"}},{"kind":"Field","name":{"kind":"Name","value":"toolInput"}},{"kind":"Field","name":{"kind":"Name","value":"toolOutput"}},{"kind":"Field","name":{"kind":"Name","value":"errorMessage"}},{"kind":"Field","name":{"kind":"Name","value":"state"}},{"kind":"Field","name":{"kind":"Name","value":"errorDetails"}},{"kind":"Field","name":{"kind":"Name","value":"sourceUrlSourceId"}},{"kind":"Field","name":{"kind":"Name","value":"sourceUrlUrl"}},{"kind":"Field","name":{"kind":"Name","value":"sourceUrlTitle"}},{"kind":"Field","name":{"kind":"Name","value":"sourceDocumentSourceId"}},{"kind":"Field","name":{"kind":"Name","value":"sourceDocumentMediaType"}},{"kind":"Field","name":{"kind":"Name","value":"sourceDocumentTitle"}},{"kind":"Field","name":{"kind":"Name","value":"sourceDocumentFilename"}},{"kind":"Field","name":{"kind":"Name","value":"fileMediaType"}},{"kind":"Field","name":{"kind":"Name","value":"fileFilename"}},{"kind":"Field","name":{"kind":"Name","value":"fileUrl"}},{"kind":"Field","name":{"kind":"Name","value":"providerMetadata"}}]}}]}}]}}]}}]} as unknown as DocumentNode<GetAgentTurnsQuery, GetAgentTurnsQueryVariables>;
|
||||
export const GetChatMessagesDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"GetChatMessages"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"threadId"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"UUID"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"chatMessages"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"threadId"},"value":{"kind":"Variable","name":{"kind":"Name","value":"threadId"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"threadId"}},{"kind":"Field","name":{"kind":"Name","value":"turnId"}},{"kind":"Field","name":{"kind":"Name","value":"role"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"parts"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"messageId"}},{"kind":"Field","name":{"kind":"Name","value":"orderIndex"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"textContent"}},{"kind":"Field","name":{"kind":"Name","value":"reasoningContent"}},{"kind":"Field","name":{"kind":"Name","value":"toolName"}},{"kind":"Field","name":{"kind":"Name","value":"toolCallId"}},{"kind":"Field","name":{"kind":"Name","value":"toolInput"}},{"kind":"Field","name":{"kind":"Name","value":"toolOutput"}},{"kind":"Field","name":{"kind":"Name","value":"state"}},{"kind":"Field","name":{"kind":"Name","value":"errorMessage"}},{"kind":"Field","name":{"kind":"Name","value":"errorDetails"}},{"kind":"Field","name":{"kind":"Name","value":"sourceUrlSourceId"}},{"kind":"Field","name":{"kind":"Name","value":"sourceUrlUrl"}},{"kind":"Field","name":{"kind":"Name","value":"sourceUrlTitle"}},{"kind":"Field","name":{"kind":"Name","value":"sourceDocumentSourceId"}},{"kind":"Field","name":{"kind":"Name","value":"sourceDocumentMediaType"}},{"kind":"Field","name":{"kind":"Name","value":"sourceDocumentTitle"}},{"kind":"Field","name":{"kind":"Name","value":"sourceDocumentFilename"}},{"kind":"Field","name":{"kind":"Name","value":"fileMediaType"}},{"kind":"Field","name":{"kind":"Name","value":"fileFilename"}},{"kind":"Field","name":{"kind":"Name","value":"fileUrl"}},{"kind":"Field","name":{"kind":"Name","value":"fileId"}},{"kind":"Field","name":{"kind":"Name","value":"providerMetadata"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}}]}}]}}]}}]} as unknown as DocumentNode<GetChatMessagesQuery, GetChatMessagesQueryVariables>;
|
||||
export const GetChatMessagesDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"GetChatMessages"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"threadId"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"UUID"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"chatMessages"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"threadId"},"value":{"kind":"Variable","name":{"kind":"Name","value":"threadId"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"threadId"}},{"kind":"Field","name":{"kind":"Name","value":"turnId"}},{"kind":"Field","name":{"kind":"Name","value":"role"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"parts"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"messageId"}},{"kind":"Field","name":{"kind":"Name","value":"orderIndex"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"textContent"}},{"kind":"Field","name":{"kind":"Name","value":"reasoningContent"}},{"kind":"Field","name":{"kind":"Name","value":"toolName"}},{"kind":"Field","name":{"kind":"Name","value":"toolCallId"}},{"kind":"Field","name":{"kind":"Name","value":"toolInput"}},{"kind":"Field","name":{"kind":"Name","value":"toolOutput"}},{"kind":"Field","name":{"kind":"Name","value":"state"}},{"kind":"Field","name":{"kind":"Name","value":"errorMessage"}},{"kind":"Field","name":{"kind":"Name","value":"errorDetails"}},{"kind":"Field","name":{"kind":"Name","value":"sourceUrlSourceId"}},{"kind":"Field","name":{"kind":"Name","value":"sourceUrlUrl"}},{"kind":"Field","name":{"kind":"Name","value":"sourceUrlTitle"}},{"kind":"Field","name":{"kind":"Name","value":"sourceDocumentSourceId"}},{"kind":"Field","name":{"kind":"Name","value":"sourceDocumentMediaType"}},{"kind":"Field","name":{"kind":"Name","value":"sourceDocumentTitle"}},{"kind":"Field","name":{"kind":"Name","value":"sourceDocumentFilename"}},{"kind":"Field","name":{"kind":"Name","value":"fileMediaType"}},{"kind":"Field","name":{"kind":"Name","value":"fileFilename"}},{"kind":"Field","name":{"kind":"Name","value":"fileUrl"}},{"kind":"Field","name":{"kind":"Name","value":"fileId"}},{"kind":"Field","name":{"kind":"Name","value":"providerMetadata"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}}]}}]}}]}}]} as unknown as DocumentNode<GetChatMessagesQuery, GetChatMessagesQueryVariables>;
|
||||
export const GetChatThreadsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"GetChatThreads"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"paging"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CursorPaging"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"chatThreads"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"paging"},"value":{"kind":"Variable","name":{"kind":"Name","value":"paging"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"edges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"node"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"totalInputTokens"}},{"kind":"Field","name":{"kind":"Name","value":"totalOutputTokens"}},{"kind":"Field","name":{"kind":"Name","value":"contextWindowTokens"}},{"kind":"Field","name":{"kind":"Name","value":"conversationSize"}},{"kind":"Field","name":{"kind":"Name","value":"totalInputCredits"}},{"kind":"Field","name":{"kind":"Name","value":"totalOutputCredits"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}}]}},{"kind":"Field","name":{"kind":"Name","value":"cursor"}}]}},{"kind":"Field","name":{"kind":"Name","value":"pageInfo"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"endCursor"}},{"kind":"Field","name":{"kind":"Name","value":"hasNextPage"}}]}}]}}]}}]} as unknown as DocumentNode<GetChatThreadsQuery, GetChatThreadsQueryVariables>;
|
||||
export const GetToolIndexDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"GetToolIndex"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"getToolIndex"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"category"}},{"kind":"Field","name":{"kind":"Name","value":"objectName"}}]}}]}}]} as unknown as DocumentNode<GetToolIndexQuery, GetToolIndexQueryVariables>;
|
||||
export const GetToolInputSchemaDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"GetToolInputSchema"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"toolName"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"getToolInputSchema"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"toolName"},"value":{"kind":"Variable","name":{"kind":"Name","value":"toolName"}}}]}]}}]} as unknown as DocumentNode<GetToolInputSchemaQuery, GetToolInputSchemaQueryVariables>;
|
||||
|
||||
@@ -671,10 +671,10 @@ msgstr "Toegangsleutel-ID"
|
||||
msgid "Access workspace data"
|
||||
msgstr "Toegang tot werkruimtedata"
|
||||
|
||||
#. js-lingui-id: W5nhmk
|
||||
#. js-lingui-id: c2UA7k
|
||||
#: src/pages/settings/ai/components/SettingsAIMCP.tsx
|
||||
msgid "Access your workspace data from your favorite MCP client like Claude Desktop, Claude Code, Cursor, or ChatGPT. Once connected, try: \"Show me the 5 most recently created companies\" or \"Create a new person named Jane Doe\"."
|
||||
msgstr "Kry toegang tot jou werkspasie-data vanaf jou gunsteling MCP-kliënt soos Claude Desktop, Claude Code, Cursor of ChatGPT. Sodra jy gekoppel is, probeer: \"Wys vir my die 5 mees onlangs geskepte maatskappye\" of \"Skep 'n nuwe persoon met die naam Jane Doe\"."
|
||||
msgid "Access your workspace data from your favorite MCP client like Claude Desktop, Windsurf or Cursor."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: u2Cycw
|
||||
#: src/modules/settings/logic-functions/components/SettingsLogicFunctionTabEnvironmentVariablesSection.tsx
|
||||
@@ -899,7 +899,7 @@ msgid "Add custom endpoints, private gateways, or additional regions."
|
||||
msgstr "Voeg pasgemaakte eindpunte, privaat-gateways, of bykomende streke by."
|
||||
|
||||
#. js-lingui-id: GuJvBr
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Add custom instructions specific to your workspace (appended to system prompt)"
|
||||
msgstr "Voeg pasgemaakte instruksies by wat spesifiek is vir jou werkruimte (aangeheg by die stelselprompt)"
|
||||
|
||||
@@ -1176,11 +1176,6 @@ msgstr "Bygevoeg {beautifyPastDateRelative}"
|
||||
msgid "Added to blocklist"
|
||||
msgstr "By swartlys gevoeg"
|
||||
|
||||
#. js-lingui-id: y5mJau
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Additional Instructions"
|
||||
msgstr "Addisionele Instruksies"
|
||||
|
||||
#. js-lingui-id: hW/fMg
|
||||
#: src/modules/ui/field/input/components/AddressInput.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/constants/DefaultSelectionAddressWithMessages.ts
|
||||
@@ -2279,11 +2274,6 @@ msgstr "Magtiging"
|
||||
msgid "Authentication failed"
|
||||
msgstr "Magtiging het misluk"
|
||||
|
||||
#. js-lingui-id: TxT0ER
|
||||
#: src/pages/settings/ai/components/SettingsAIMCP.tsx
|
||||
msgid "Authentication method"
|
||||
msgstr "Outentikasie-metode"
|
||||
|
||||
#. js-lingui-id: H7qgYQ
|
||||
#: src/pages/settings/SettingsTwoFactorAuthenticationMethod.tsx
|
||||
msgid "Authenticator app"
|
||||
@@ -3292,7 +3282,6 @@ msgid "Configuration"
|
||||
msgstr "Konfigurasie"
|
||||
|
||||
#. js-lingui-id: iAL9tI
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
|
||||
msgid "Configure"
|
||||
msgstr "Stel op"
|
||||
@@ -5219,7 +5208,7 @@ msgid "e.g. OpenAI EU"
|
||||
msgstr "bv. OpenAI EU"
|
||||
|
||||
#. js-lingui-id: p5P8NB
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "E.g., \"We are a B2B SaaS company. Always use formal language...\""
|
||||
msgstr "Byvoorbeeld: \"Ons is 'n B2B SaaS-maatskappy. Gebruik altyd formele taal...\""
|
||||
|
||||
@@ -6622,7 +6611,7 @@ msgid "Failed to save role permissions: {errorMessage}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 9ryUyP
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Failed to save workspace instructions"
|
||||
msgstr "Kon nie werkruimte-instruksies stoor nie"
|
||||
|
||||
@@ -10470,11 +10459,6 @@ msgstr "OAuth"
|
||||
msgid "OAuth Credentials"
|
||||
msgstr "OAuth-geloofsbriewe"
|
||||
|
||||
#. js-lingui-id: LNLTJB
|
||||
#: src/pages/settings/ai/components/SettingsAIMCP.tsx
|
||||
msgid "OAuth or API Key"
|
||||
msgstr "OAuth of API-sleutel"
|
||||
|
||||
#. js-lingui-id: pNEViR
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
@@ -10708,6 +10692,7 @@ msgid "Only the timestamp & participants will be shared with your team."
|
||||
msgstr "Slegs die tydstempel en deelnemers sal met jou span gedeel word."
|
||||
|
||||
#. js-lingui-id: 1TNIig
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
#: src/modules/command-menu-item/components/RecordShowSidePanelOpenRecordButton.tsx
|
||||
msgid "Open"
|
||||
@@ -11656,6 +11641,22 @@ msgstr "Lees die veranderingslogboek"
|
||||
msgid "Read documentation"
|
||||
msgstr "Lees dokumentasie"
|
||||
|
||||
#. js-lingui-id: U26cMX
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Read system prompts"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: EKsFda
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Read the system prompts to understand how the AI works"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 0URVx8
|
||||
#. placeholder {0}: formatNumber( systemPromptTokenCount, { abbreviate: true, decimals: 1, }, )
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Read the system prompts to understand how the AI works (~{0} tokens)"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: afMuDE
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
msgid "Read your profile"
|
||||
@@ -11708,6 +11709,7 @@ msgstr "rekord"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/navigation-menu-item/display/object/components/NavigationDrawerItemForObjectMetadataItem.tsx
|
||||
msgid "Record"
|
||||
msgstr "Rekord"
|
||||
|
||||
@@ -12820,6 +12822,11 @@ msgstr "Sien aktiewe weergawe"
|
||||
msgid "See all {relationLabelPlural} linked to this record"
|
||||
msgstr "Sien al die {relationLabelPlural} wat aan hierdie rekord gekoppel is"
|
||||
|
||||
#. js-lingui-id: sFsCOG
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
msgid "See data model settings"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: f4Lu+X
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "See deleted dashboards"
|
||||
@@ -12850,6 +12857,12 @@ msgstr "Sien verwyderde werkvloeie"
|
||||
msgid "See Fields"
|
||||
msgstr "Sien Velde"
|
||||
|
||||
#. js-lingui-id: vn4aKq
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
|
||||
msgid "See records"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: irbH/8
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
msgid "See Records on All Objects"
|
||||
@@ -14042,11 +14055,10 @@ msgstr ""
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/forms/components/SettingsAIAgentForm.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "System Prompt"
|
||||
msgstr "Stelsel Prompt"
|
||||
|
||||
@@ -15672,11 +15684,6 @@ msgstr ""
|
||||
msgid "View all evaluations"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 3JjgWt
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
msgid "View and customize AI instructions"
|
||||
msgstr "Bekyk en pas KI-instruksies aan"
|
||||
|
||||
#. js-lingui-id: XVf/G7
|
||||
#: src/pages/settings/security/SettingsSecurity.tsx
|
||||
msgid "View and filter events, page views, object changes"
|
||||
@@ -15782,11 +15789,6 @@ msgstr ""
|
||||
msgid "view sort"
|
||||
msgstr "bekyk Sorteer"
|
||||
|
||||
#. js-lingui-id: FNDoRH
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
msgid "View the AI system prompt and add custom instructions"
|
||||
msgstr "Bekyk die KI-stelselprompt en voeg pasgemaakte instruksies by"
|
||||
|
||||
#. js-lingui-id: bJAIqT
|
||||
#: src/modules/views/view-picker/components/ViewPickerContentCreateMode.tsx
|
||||
msgid "View type"
|
||||
@@ -16219,8 +16221,8 @@ msgid "Workspace Info"
|
||||
msgstr "Werkruimte-inligting"
|
||||
|
||||
#. js-lingui-id: BYrMT0
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Workspace Instructions"
|
||||
msgstr "Werkruimte-instruksies"
|
||||
|
||||
|
||||
@@ -671,10 +671,10 @@ msgstr "معرّف مفتاح الوصول"
|
||||
msgid "Access workspace data"
|
||||
msgstr "الوصول إلى بيانات مساحة العمل"
|
||||
|
||||
#. js-lingui-id: W5nhmk
|
||||
#. js-lingui-id: c2UA7k
|
||||
#: src/pages/settings/ai/components/SettingsAIMCP.tsx
|
||||
msgid "Access your workspace data from your favorite MCP client like Claude Desktop, Claude Code, Cursor, or ChatGPT. Once connected, try: \"Show me the 5 most recently created companies\" or \"Create a new person named Jane Doe\"."
|
||||
msgstr "يمكنك الوصول إلى بيانات مساحة العمل الخاصة بك من عميل MCP المفضل لديك مثل Claude Desktop, Claude Code, Cursor أو ChatGPT. بعد الاتصال, جرّب: \"أرني أحدث 5 شركات تم إنشاؤها\" أو \"أنشئ شخص جديد باسم Jane Doe\"."
|
||||
msgid "Access your workspace data from your favorite MCP client like Claude Desktop, Windsurf or Cursor."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: u2Cycw
|
||||
#: src/modules/settings/logic-functions/components/SettingsLogicFunctionTabEnvironmentVariablesSection.tsx
|
||||
@@ -899,7 +899,7 @@ msgid "Add custom endpoints, private gateways, or additional regions."
|
||||
msgstr "أضف نقاط نهاية مخصصة، وبوابات خاصة، أو مناطق إضافية."
|
||||
|
||||
#. js-lingui-id: GuJvBr
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Add custom instructions specific to your workspace (appended to system prompt)"
|
||||
msgstr "أضف تعليمات مخصصة خاصة بمساحة العمل لديك (تُلحق بموجّه النظام)"
|
||||
|
||||
@@ -1176,11 +1176,6 @@ msgstr "تم الإضافة {beautifyPastDateRelative}"
|
||||
msgid "Added to blocklist"
|
||||
msgstr "أضيف إلى القائمة السوداء"
|
||||
|
||||
#. js-lingui-id: y5mJau
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Additional Instructions"
|
||||
msgstr "تعليمات إضافية"
|
||||
|
||||
#. js-lingui-id: hW/fMg
|
||||
#: src/modules/ui/field/input/components/AddressInput.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/constants/DefaultSelectionAddressWithMessages.ts
|
||||
@@ -2279,11 +2274,6 @@ msgstr "المصادقة"
|
||||
msgid "Authentication failed"
|
||||
msgstr "فشل المصادقة"
|
||||
|
||||
#. js-lingui-id: TxT0ER
|
||||
#: src/pages/settings/ai/components/SettingsAIMCP.tsx
|
||||
msgid "Authentication method"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: H7qgYQ
|
||||
#: src/pages/settings/SettingsTwoFactorAuthenticationMethod.tsx
|
||||
msgid "Authenticator app"
|
||||
@@ -3292,7 +3282,6 @@ msgid "Configuration"
|
||||
msgstr "التكوين"
|
||||
|
||||
#. js-lingui-id: iAL9tI
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
|
||||
msgid "Configure"
|
||||
msgstr "تكوين"
|
||||
@@ -5219,7 +5208,7 @@ msgid "e.g. OpenAI EU"
|
||||
msgstr "مثال: OpenAI EU"
|
||||
|
||||
#. js-lingui-id: p5P8NB
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "E.g., \"We are a B2B SaaS company. Always use formal language...\""
|
||||
msgstr "مثال: \"نحن شركة B2B SaaS. استخدِم دائمًا لغة رسمية...\""
|
||||
|
||||
@@ -6622,7 +6611,7 @@ msgid "Failed to save role permissions: {errorMessage}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 9ryUyP
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Failed to save workspace instructions"
|
||||
msgstr "تعذّر حفظ تعليمات مساحة العمل"
|
||||
|
||||
@@ -10470,11 +10459,6 @@ msgstr "OAuth"
|
||||
msgid "OAuth Credentials"
|
||||
msgstr "بيانات اعتماد OAuth"
|
||||
|
||||
#. js-lingui-id: LNLTJB
|
||||
#: src/pages/settings/ai/components/SettingsAIMCP.tsx
|
||||
msgid "OAuth or API Key"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: pNEViR
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
@@ -10708,6 +10692,7 @@ msgid "Only the timestamp & participants will be shared with your team."
|
||||
msgstr "سيتم مشاركة الطابع الزمني والمشاركين فقط مع فريقك."
|
||||
|
||||
#. js-lingui-id: 1TNIig
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
#: src/modules/command-menu-item/components/RecordShowSidePanelOpenRecordButton.tsx
|
||||
msgid "Open"
|
||||
@@ -11656,6 +11641,22 @@ msgstr "اطّلع على سجلّ التغييرات"
|
||||
msgid "Read documentation"
|
||||
msgstr "اقرأ الوثائق"
|
||||
|
||||
#. js-lingui-id: U26cMX
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Read system prompts"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: EKsFda
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Read the system prompts to understand how the AI works"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 0URVx8
|
||||
#. placeholder {0}: formatNumber( systemPromptTokenCount, { abbreviate: true, decimals: 1, }, )
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Read the system prompts to understand how the AI works (~{0} tokens)"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: afMuDE
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
msgid "Read your profile"
|
||||
@@ -11708,6 +11709,7 @@ msgstr "السجل"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/navigation-menu-item/display/object/components/NavigationDrawerItemForObjectMetadataItem.tsx
|
||||
msgid "Record"
|
||||
msgstr "السجل"
|
||||
|
||||
@@ -12820,6 +12822,11 @@ msgstr "\\\\"
|
||||
msgid "See all {relationLabelPlural} linked to this record"
|
||||
msgstr "عرض جميع {relationLabelPlural} المرتبطة بهذا السجل"
|
||||
|
||||
#. js-lingui-id: sFsCOG
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
msgid "See data model settings"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: f4Lu+X
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "See deleted dashboards"
|
||||
@@ -12850,6 +12857,12 @@ msgstr "رؤية مجرى العمل المحذوفة"
|
||||
msgid "See Fields"
|
||||
msgstr "عرض الحقول"
|
||||
|
||||
#. js-lingui-id: vn4aKq
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
|
||||
msgid "See records"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: irbH/8
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
msgid "See Records on All Objects"
|
||||
@@ -14042,11 +14055,10 @@ msgstr ""
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/forms/components/SettingsAIAgentForm.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "System Prompt"
|
||||
msgstr "أمر النظام"
|
||||
|
||||
@@ -15672,11 +15684,6 @@ msgstr ""
|
||||
msgid "View all evaluations"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 3JjgWt
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
msgid "View and customize AI instructions"
|
||||
msgstr "عرض وتخصيص تعليمات الذكاء الاصطناعي"
|
||||
|
||||
#. js-lingui-id: XVf/G7
|
||||
#: src/pages/settings/security/SettingsSecurity.tsx
|
||||
msgid "View and filter events, page views, object changes"
|
||||
@@ -15782,11 +15789,6 @@ msgstr ""
|
||||
msgid "view sort"
|
||||
msgstr "فرز العرض"
|
||||
|
||||
#. js-lingui-id: FNDoRH
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
msgid "View the AI system prompt and add custom instructions"
|
||||
msgstr "عرض موجّه نظام الذكاء الاصطناعي وإضافة تعليمات مخصصة"
|
||||
|
||||
#. js-lingui-id: bJAIqT
|
||||
#: src/modules/views/view-picker/components/ViewPickerContentCreateMode.tsx
|
||||
msgid "View type"
|
||||
@@ -16217,8 +16219,8 @@ msgid "Workspace Info"
|
||||
msgstr "معلومات مساحة العمل"
|
||||
|
||||
#. js-lingui-id: BYrMT0
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Workspace Instructions"
|
||||
msgstr "تعليمات مساحة العمل"
|
||||
|
||||
|
||||
@@ -671,10 +671,10 @@ msgstr "ID de la clau d'accés"
|
||||
msgid "Access workspace data"
|
||||
msgstr "Accedir a les dades de l'espai de treball"
|
||||
|
||||
#. js-lingui-id: W5nhmk
|
||||
#. js-lingui-id: c2UA7k
|
||||
#: src/pages/settings/ai/components/SettingsAIMCP.tsx
|
||||
msgid "Access your workspace data from your favorite MCP client like Claude Desktop, Claude Code, Cursor, or ChatGPT. Once connected, try: \"Show me the 5 most recently created companies\" or \"Create a new person named Jane Doe\"."
|
||||
msgstr "Accedeix a les dades del teu espai de treball des del teu client MCP preferit, com ara Claude Desktop, Claude Code, Cursor o ChatGPT. Un cop t'hagis connectat, prova: \"Mostra'm les 5 empreses creades més recentment\" o \"Crea una persona nova anomenada Jane Doe\"."
|
||||
msgid "Access your workspace data from your favorite MCP client like Claude Desktop, Windsurf or Cursor."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: u2Cycw
|
||||
#: src/modules/settings/logic-functions/components/SettingsLogicFunctionTabEnvironmentVariablesSection.tsx
|
||||
@@ -899,7 +899,7 @@ msgid "Add custom endpoints, private gateways, or additional regions."
|
||||
msgstr "Afegeix punts finals personalitzats, passarel·les privades o regions addicionals."
|
||||
|
||||
#. js-lingui-id: GuJvBr
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Add custom instructions specific to your workspace (appended to system prompt)"
|
||||
msgstr "Afegeix instruccions personalitzades específiques del teu espai de treball (que s'afegiran al prompt del sistema)"
|
||||
|
||||
@@ -1176,11 +1176,6 @@ msgstr "Afegit {beautifyPastDateRelative}"
|
||||
msgid "Added to blocklist"
|
||||
msgstr "Afegit a la llista de bloqueig"
|
||||
|
||||
#. js-lingui-id: y5mJau
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Additional Instructions"
|
||||
msgstr "Instruccions addicionals"
|
||||
|
||||
#. js-lingui-id: hW/fMg
|
||||
#: src/modules/ui/field/input/components/AddressInput.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/constants/DefaultSelectionAddressWithMessages.ts
|
||||
@@ -2279,11 +2274,6 @@ msgstr "Autenticació"
|
||||
msgid "Authentication failed"
|
||||
msgstr "Error en l'autenticació"
|
||||
|
||||
#. js-lingui-id: TxT0ER
|
||||
#: src/pages/settings/ai/components/SettingsAIMCP.tsx
|
||||
msgid "Authentication method"
|
||||
msgstr "Mètode d'autenticació"
|
||||
|
||||
#. js-lingui-id: H7qgYQ
|
||||
#: src/pages/settings/SettingsTwoFactorAuthenticationMethod.tsx
|
||||
msgid "Authenticator app"
|
||||
@@ -3292,7 +3282,6 @@ msgid "Configuration"
|
||||
msgstr "Configuració"
|
||||
|
||||
#. js-lingui-id: iAL9tI
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
|
||||
msgid "Configure"
|
||||
msgstr "Configura"
|
||||
@@ -5219,7 +5208,7 @@ msgid "e.g. OpenAI EU"
|
||||
msgstr "p. ex., OpenAI EU"
|
||||
|
||||
#. js-lingui-id: p5P8NB
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "E.g., \"We are a B2B SaaS company. Always use formal language...\""
|
||||
msgstr "P. ex., \"Som una empresa SaaS B2B. Utilitza sempre un llenguatge formal...\""
|
||||
|
||||
@@ -6622,7 +6611,7 @@ msgid "Failed to save role permissions: {errorMessage}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 9ryUyP
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Failed to save workspace instructions"
|
||||
msgstr "No s'han pogut desar les instruccions de l'espai de treball"
|
||||
|
||||
@@ -10470,11 +10459,6 @@ msgstr "OAuth"
|
||||
msgid "OAuth Credentials"
|
||||
msgstr "Credencials d'OAuth"
|
||||
|
||||
#. js-lingui-id: LNLTJB
|
||||
#: src/pages/settings/ai/components/SettingsAIMCP.tsx
|
||||
msgid "OAuth or API Key"
|
||||
msgstr "OAuth o clau de l'API"
|
||||
|
||||
#. js-lingui-id: pNEViR
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
@@ -10708,6 +10692,7 @@ msgid "Only the timestamp & participants will be shared with your team."
|
||||
msgstr "Només la marca de temps i els participants seran compartits amb el teu equip."
|
||||
|
||||
#. js-lingui-id: 1TNIig
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
#: src/modules/command-menu-item/components/RecordShowSidePanelOpenRecordButton.tsx
|
||||
msgid "Open"
|
||||
@@ -11656,6 +11641,22 @@ msgstr "Consulta el registre de canvis"
|
||||
msgid "Read documentation"
|
||||
msgstr "Llegeix la documentació"
|
||||
|
||||
#. js-lingui-id: U26cMX
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Read system prompts"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: EKsFda
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Read the system prompts to understand how the AI works"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 0URVx8
|
||||
#. placeholder {0}: formatNumber( systemPromptTokenCount, { abbreviate: true, decimals: 1, }, )
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Read the system prompts to understand how the AI works (~{0} tokens)"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: afMuDE
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
msgid "Read your profile"
|
||||
@@ -11708,6 +11709,7 @@ msgstr "registre"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/navigation-menu-item/display/object/components/NavigationDrawerItemForObjectMetadataItem.tsx
|
||||
msgid "Record"
|
||||
msgstr "Registre"
|
||||
|
||||
@@ -12820,6 +12822,11 @@ msgstr "Veure la versió activa"
|
||||
msgid "See all {relationLabelPlural} linked to this record"
|
||||
msgstr "Mostra tots els {relationLabelPlural} vinculats a aquest registre"
|
||||
|
||||
#. js-lingui-id: sFsCOG
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
msgid "See data model settings"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: f4Lu+X
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "See deleted dashboards"
|
||||
@@ -12850,6 +12857,12 @@ msgstr "Veure fluxos de treball eliminats"
|
||||
msgid "See Fields"
|
||||
msgstr "Veure camps"
|
||||
|
||||
#. js-lingui-id: vn4aKq
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
|
||||
msgid "See records"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: irbH/8
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
msgid "See Records on All Objects"
|
||||
@@ -14042,11 +14055,10 @@ msgstr ""
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/forms/components/SettingsAIAgentForm.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "System Prompt"
|
||||
msgstr "Indicador del Sistema"
|
||||
|
||||
@@ -15672,11 +15684,6 @@ msgstr ""
|
||||
msgid "View all evaluations"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 3JjgWt
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
msgid "View and customize AI instructions"
|
||||
msgstr "Visualitza i personalitza les instruccions d'IA"
|
||||
|
||||
#. js-lingui-id: XVf/G7
|
||||
#: src/pages/settings/security/SettingsSecurity.tsx
|
||||
msgid "View and filter events, page views, object changes"
|
||||
@@ -15782,11 +15789,6 @@ msgstr ""
|
||||
msgid "view sort"
|
||||
msgstr "ordenació de vista"
|
||||
|
||||
#. js-lingui-id: FNDoRH
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
msgid "View the AI system prompt and add custom instructions"
|
||||
msgstr "Visualitza el prompt del sistema d'IA i afegeix instruccions personalitzades"
|
||||
|
||||
#. js-lingui-id: bJAIqT
|
||||
#: src/modules/views/view-picker/components/ViewPickerContentCreateMode.tsx
|
||||
msgid "View type"
|
||||
@@ -16219,8 +16221,8 @@ msgid "Workspace Info"
|
||||
msgstr "Informació de l'espai de treball"
|
||||
|
||||
#. js-lingui-id: BYrMT0
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Workspace Instructions"
|
||||
msgstr "Instruccions de l'espai de treball"
|
||||
|
||||
|
||||
@@ -671,9 +671,9 @@ msgstr "ID přístupového klíče"
|
||||
msgid "Access workspace data"
|
||||
msgstr "Přístup k datům pracovního prostoru"
|
||||
|
||||
#. js-lingui-id: W5nhmk
|
||||
#. js-lingui-id: c2UA7k
|
||||
#: src/pages/settings/ai/components/SettingsAIMCP.tsx
|
||||
msgid "Access your workspace data from your favorite MCP client like Claude Desktop, Claude Code, Cursor, or ChatGPT. Once connected, try: \"Show me the 5 most recently created companies\" or \"Create a new person named Jane Doe\"."
|
||||
msgid "Access your workspace data from your favorite MCP client like Claude Desktop, Windsurf or Cursor."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: u2Cycw
|
||||
@@ -899,7 +899,7 @@ msgid "Add custom endpoints, private gateways, or additional regions."
|
||||
msgstr "Přidejte vlastní koncové body, privátní brány nebo další regiony."
|
||||
|
||||
#. js-lingui-id: GuJvBr
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Add custom instructions specific to your workspace (appended to system prompt)"
|
||||
msgstr "Přidejte vlastní pokyny specifické pro váš pracovní prostor (připojené k systémovému promptu)"
|
||||
|
||||
@@ -1176,11 +1176,6 @@ msgstr "Přidáno {beautifyPastDateRelative}"
|
||||
msgid "Added to blocklist"
|
||||
msgstr "Přidáno do blokovaného seznamu"
|
||||
|
||||
#. js-lingui-id: y5mJau
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Additional Instructions"
|
||||
msgstr "Dodatečné pokyny"
|
||||
|
||||
#. js-lingui-id: hW/fMg
|
||||
#: src/modules/ui/field/input/components/AddressInput.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/constants/DefaultSelectionAddressWithMessages.ts
|
||||
@@ -2279,11 +2274,6 @@ msgstr "Ověření"
|
||||
msgid "Authentication failed"
|
||||
msgstr "Ověření selhalo"
|
||||
|
||||
#. js-lingui-id: TxT0ER
|
||||
#: src/pages/settings/ai/components/SettingsAIMCP.tsx
|
||||
msgid "Authentication method"
|
||||
msgstr "Metoda ověření"
|
||||
|
||||
#. js-lingui-id: H7qgYQ
|
||||
#: src/pages/settings/SettingsTwoFactorAuthenticationMethod.tsx
|
||||
msgid "Authenticator app"
|
||||
@@ -3292,7 +3282,6 @@ msgid "Configuration"
|
||||
msgstr "Konfigurace"
|
||||
|
||||
#. js-lingui-id: iAL9tI
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
|
||||
msgid "Configure"
|
||||
msgstr "Nastavit"
|
||||
@@ -5219,7 +5208,7 @@ msgid "e.g. OpenAI EU"
|
||||
msgstr "např. OpenAI EU"
|
||||
|
||||
#. js-lingui-id: p5P8NB
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "E.g., \"We are a B2B SaaS company. Always use formal language...\""
|
||||
msgstr "Např.: \"Jsme B2B SaaS společnost. Vždy používejte formální jazyk...\""
|
||||
|
||||
@@ -6622,7 +6611,7 @@ msgid "Failed to save role permissions: {errorMessage}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 9ryUyP
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Failed to save workspace instructions"
|
||||
msgstr "Nepodařilo se uložit pokyny pracovního prostoru"
|
||||
|
||||
@@ -10470,11 +10459,6 @@ msgstr "OAuth"
|
||||
msgid "OAuth Credentials"
|
||||
msgstr "Přihlašovací údaje OAuth"
|
||||
|
||||
#. js-lingui-id: LNLTJB
|
||||
#: src/pages/settings/ai/components/SettingsAIMCP.tsx
|
||||
msgid "OAuth or API Key"
|
||||
msgstr "OAuth nebo klíč API"
|
||||
|
||||
#. js-lingui-id: pNEViR
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
@@ -10708,6 +10692,7 @@ msgid "Only the timestamp & participants will be shared with your team."
|
||||
msgstr "Pouze časová značka a účastníci budou sdíleni s vaším týmem."
|
||||
|
||||
#. js-lingui-id: 1TNIig
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
#: src/modules/command-menu-item/components/RecordShowSidePanelOpenRecordButton.tsx
|
||||
msgid "Open"
|
||||
@@ -11656,6 +11641,22 @@ msgstr "Přečíst si seznam změn"
|
||||
msgid "Read documentation"
|
||||
msgstr "Přečtěte si dokumentaci"
|
||||
|
||||
#. js-lingui-id: U26cMX
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Read system prompts"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: EKsFda
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Read the system prompts to understand how the AI works"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 0URVx8
|
||||
#. placeholder {0}: formatNumber( systemPromptTokenCount, { abbreviate: true, decimals: 1, }, )
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Read the system prompts to understand how the AI works (~{0} tokens)"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: afMuDE
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
msgid "Read your profile"
|
||||
@@ -11708,6 +11709,7 @@ msgstr "záznam"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/navigation-menu-item/display/object/components/NavigationDrawerItemForObjectMetadataItem.tsx
|
||||
msgid "Record"
|
||||
msgstr "Záznam"
|
||||
|
||||
@@ -12820,6 +12822,11 @@ msgstr "Zobrazit aktivní verzi"
|
||||
msgid "See all {relationLabelPlural} linked to this record"
|
||||
msgstr "Zobrazit všechny {relationLabelPlural} propojené s tímto záznamem"
|
||||
|
||||
#. js-lingui-id: sFsCOG
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
msgid "See data model settings"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: f4Lu+X
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "See deleted dashboards"
|
||||
@@ -12850,6 +12857,12 @@ msgstr "Zobrazit smazané pracovní postupy"
|
||||
msgid "See Fields"
|
||||
msgstr "Vidět pole"
|
||||
|
||||
#. js-lingui-id: vn4aKq
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
|
||||
msgid "See records"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: irbH/8
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
msgid "See Records on All Objects"
|
||||
@@ -14042,11 +14055,10 @@ msgstr ""
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/forms/components/SettingsAIAgentForm.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "System Prompt"
|
||||
msgstr "Systémová výzva"
|
||||
|
||||
@@ -15672,11 +15684,6 @@ msgstr ""
|
||||
msgid "View all evaluations"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 3JjgWt
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
msgid "View and customize AI instructions"
|
||||
msgstr "Zobrazit a přizpůsobit pokyny pro AI"
|
||||
|
||||
#. js-lingui-id: XVf/G7
|
||||
#: src/pages/settings/security/SettingsSecurity.tsx
|
||||
msgid "View and filter events, page views, object changes"
|
||||
@@ -15782,11 +15789,6 @@ msgstr ""
|
||||
msgid "view sort"
|
||||
msgstr "řazení pohledu"
|
||||
|
||||
#. js-lingui-id: FNDoRH
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
msgid "View the AI system prompt and add custom instructions"
|
||||
msgstr "Zobrazit systémový prompt AI a přidat vlastní pokyny"
|
||||
|
||||
#. js-lingui-id: bJAIqT
|
||||
#: src/modules/views/view-picker/components/ViewPickerContentCreateMode.tsx
|
||||
msgid "View type"
|
||||
@@ -16219,8 +16221,8 @@ msgid "Workspace Info"
|
||||
msgstr "Informace o pracovním prostoru"
|
||||
|
||||
#. js-lingui-id: BYrMT0
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Workspace Instructions"
|
||||
msgstr "Pokyny pro pracovní prostor"
|
||||
|
||||
|
||||
@@ -671,10 +671,10 @@ msgstr "Access Key ID"
|
||||
msgid "Access workspace data"
|
||||
msgstr "Få adgang til data i arbejdsområdet"
|
||||
|
||||
#. js-lingui-id: W5nhmk
|
||||
#. js-lingui-id: c2UA7k
|
||||
#: src/pages/settings/ai/components/SettingsAIMCP.tsx
|
||||
msgid "Access your workspace data from your favorite MCP client like Claude Desktop, Claude Code, Cursor, or ChatGPT. Once connected, try: \"Show me the 5 most recently created companies\" or \"Create a new person named Jane Doe\"."
|
||||
msgstr "Få adgang til data i dit arbejdsområde fra din foretrukne MCP-klient som Claude Desktop, Claude Code, Cursor eller ChatGPT. Når du har oprettet forbindelse, prøv: \"Vis mig de 5 senest oprettede virksomheder\" eller \"Opret en ny person ved navn Jane Doe\"."
|
||||
msgid "Access your workspace data from your favorite MCP client like Claude Desktop, Windsurf or Cursor."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: u2Cycw
|
||||
#: src/modules/settings/logic-functions/components/SettingsLogicFunctionTabEnvironmentVariablesSection.tsx
|
||||
@@ -899,7 +899,7 @@ msgid "Add custom endpoints, private gateways, or additional regions."
|
||||
msgstr "Tilføj brugerdefinerede slutpunkter, private gateways eller yderligere regioner."
|
||||
|
||||
#. js-lingui-id: GuJvBr
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Add custom instructions specific to your workspace (appended to system prompt)"
|
||||
msgstr "Tilføj brugerdefinerede instruktioner, der er specifikke for dit arbejdsområde (tilføjes til systemprompten)"
|
||||
|
||||
@@ -1176,11 +1176,6 @@ msgstr "Tilføjet {beautifyPastDateRelative}"
|
||||
msgid "Added to blocklist"
|
||||
msgstr "Tilføjet til blokeringsliste"
|
||||
|
||||
#. js-lingui-id: y5mJau
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Additional Instructions"
|
||||
msgstr "Yderligere instruktioner"
|
||||
|
||||
#. js-lingui-id: hW/fMg
|
||||
#: src/modules/ui/field/input/components/AddressInput.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/constants/DefaultSelectionAddressWithMessages.ts
|
||||
@@ -2279,11 +2274,6 @@ msgstr "Godkendelse"
|
||||
msgid "Authentication failed"
|
||||
msgstr "Godkendelse mislykkedes"
|
||||
|
||||
#. js-lingui-id: TxT0ER
|
||||
#: src/pages/settings/ai/components/SettingsAIMCP.tsx
|
||||
msgid "Authentication method"
|
||||
msgstr "Godkendelsesmetode"
|
||||
|
||||
#. js-lingui-id: H7qgYQ
|
||||
#: src/pages/settings/SettingsTwoFactorAuthenticationMethod.tsx
|
||||
msgid "Authenticator app"
|
||||
@@ -3292,7 +3282,6 @@ msgid "Configuration"
|
||||
msgstr "Konfiguration"
|
||||
|
||||
#. js-lingui-id: iAL9tI
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
|
||||
msgid "Configure"
|
||||
msgstr "Konfigurer"
|
||||
@@ -5219,7 +5208,7 @@ msgid "e.g. OpenAI EU"
|
||||
msgstr "f.eks. OpenAI EU"
|
||||
|
||||
#. js-lingui-id: p5P8NB
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "E.g., \"We are a B2B SaaS company. Always use formal language...\""
|
||||
msgstr "F.eks.: \"Vi er en B2B SaaS-virksomhed. Brug altid formelt sprog...\""
|
||||
|
||||
@@ -6622,7 +6611,7 @@ msgid "Failed to save role permissions: {errorMessage}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 9ryUyP
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Failed to save workspace instructions"
|
||||
msgstr "Kunne ikke gemme instruktioner for arbejdsområdet"
|
||||
|
||||
@@ -10470,11 +10459,6 @@ msgstr "OAuth"
|
||||
msgid "OAuth Credentials"
|
||||
msgstr "OAuth-legitimationsoplysninger"
|
||||
|
||||
#. js-lingui-id: LNLTJB
|
||||
#: src/pages/settings/ai/components/SettingsAIMCP.tsx
|
||||
msgid "OAuth or API Key"
|
||||
msgstr "OAuth eller API-nøgle"
|
||||
|
||||
#. js-lingui-id: pNEViR
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
@@ -10708,6 +10692,7 @@ msgid "Only the timestamp & participants will be shared with your team."
|
||||
msgstr "Kun tidsstempel og deltagere vil blive delt med dit team."
|
||||
|
||||
#. js-lingui-id: 1TNIig
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
#: src/modules/command-menu-item/components/RecordShowSidePanelOpenRecordButton.tsx
|
||||
msgid "Open"
|
||||
@@ -11656,6 +11641,22 @@ msgstr "Læs ændringsloggen"
|
||||
msgid "Read documentation"
|
||||
msgstr "Læs dokumentation"
|
||||
|
||||
#. js-lingui-id: U26cMX
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Read system prompts"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: EKsFda
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Read the system prompts to understand how the AI works"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 0URVx8
|
||||
#. placeholder {0}: formatNumber( systemPromptTokenCount, { abbreviate: true, decimals: 1, }, )
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Read the system prompts to understand how the AI works (~{0} tokens)"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: afMuDE
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
msgid "Read your profile"
|
||||
@@ -11708,6 +11709,7 @@ msgstr "post"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/navigation-menu-item/display/object/components/NavigationDrawerItemForObjectMetadataItem.tsx
|
||||
msgid "Record"
|
||||
msgstr "Registrering"
|
||||
|
||||
@@ -12820,6 +12822,11 @@ msgstr "Se aktiv version"
|
||||
msgid "See all {relationLabelPlural} linked to this record"
|
||||
msgstr "Se alle {relationLabelPlural}, der er knyttet til denne post"
|
||||
|
||||
#. js-lingui-id: sFsCOG
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
msgid "See data model settings"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: f4Lu+X
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "See deleted dashboards"
|
||||
@@ -12850,6 +12857,12 @@ msgstr "Se slettede arbejdsprocesser"
|
||||
msgid "See Fields"
|
||||
msgstr "Se Felter"
|
||||
|
||||
#. js-lingui-id: vn4aKq
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
|
||||
msgid "See records"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: irbH/8
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
msgid "See Records on All Objects"
|
||||
@@ -14042,11 +14055,10 @@ msgstr ""
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/forms/components/SettingsAIAgentForm.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "System Prompt"
|
||||
msgstr "Systemprompt"
|
||||
|
||||
@@ -15674,11 +15686,6 @@ msgstr ""
|
||||
msgid "View all evaluations"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 3JjgWt
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
msgid "View and customize AI instructions"
|
||||
msgstr "Se og tilpas AI-instruktioner"
|
||||
|
||||
#. js-lingui-id: XVf/G7
|
||||
#: src/pages/settings/security/SettingsSecurity.tsx
|
||||
msgid "View and filter events, page views, object changes"
|
||||
@@ -15784,11 +15791,6 @@ msgstr ""
|
||||
msgid "view sort"
|
||||
msgstr "vis sortering"
|
||||
|
||||
#. js-lingui-id: FNDoRH
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
msgid "View the AI system prompt and add custom instructions"
|
||||
msgstr "Se AI-systemprompten og tilføj brugerdefinerede instruktioner"
|
||||
|
||||
#. js-lingui-id: bJAIqT
|
||||
#: src/modules/views/view-picker/components/ViewPickerContentCreateMode.tsx
|
||||
msgid "View type"
|
||||
@@ -16221,8 +16223,8 @@ msgid "Workspace Info"
|
||||
msgstr "Arbejdsområde Info"
|
||||
|
||||
#. js-lingui-id: BYrMT0
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Workspace Instructions"
|
||||
msgstr "Instruktioner for arbejdsområdet"
|
||||
|
||||
|
||||
@@ -671,9 +671,9 @@ msgstr "Zugriffsschlüssel-ID"
|
||||
msgid "Access workspace data"
|
||||
msgstr "Auf Arbeitsbereichsdaten zugreifen"
|
||||
|
||||
#. js-lingui-id: W5nhmk
|
||||
#. js-lingui-id: c2UA7k
|
||||
#: src/pages/settings/ai/components/SettingsAIMCP.tsx
|
||||
msgid "Access your workspace data from your favorite MCP client like Claude Desktop, Claude Code, Cursor, or ChatGPT. Once connected, try: \"Show me the 5 most recently created companies\" or \"Create a new person named Jane Doe\"."
|
||||
msgid "Access your workspace data from your favorite MCP client like Claude Desktop, Windsurf or Cursor."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: u2Cycw
|
||||
@@ -899,7 +899,7 @@ msgid "Add custom endpoints, private gateways, or additional regions."
|
||||
msgstr "Fügen Sie benutzerdefinierte Endpunkte, private Gateways oder zusätzliche Regionen hinzu."
|
||||
|
||||
#. js-lingui-id: GuJvBr
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Add custom instructions specific to your workspace (appended to system prompt)"
|
||||
msgstr "Fügen Sie arbeitsbereichsspezifische benutzerdefinierte Anweisungen hinzu (an den Systemprompt angehängt)"
|
||||
|
||||
@@ -1176,11 +1176,6 @@ msgstr "Hinzugefügt am {beautifyPastDateRelative}"
|
||||
msgid "Added to blocklist"
|
||||
msgstr "Zur Blockliste hinzugefügt"
|
||||
|
||||
#. js-lingui-id: y5mJau
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Additional Instructions"
|
||||
msgstr "Zusätzliche Anweisungen"
|
||||
|
||||
#. js-lingui-id: hW/fMg
|
||||
#: src/modules/ui/field/input/components/AddressInput.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/constants/DefaultSelectionAddressWithMessages.ts
|
||||
@@ -2279,11 +2274,6 @@ msgstr "Authentifizierung"
|
||||
msgid "Authentication failed"
|
||||
msgstr "Authentifizierung fehlgeschlagen"
|
||||
|
||||
#. js-lingui-id: TxT0ER
|
||||
#: src/pages/settings/ai/components/SettingsAIMCP.tsx
|
||||
msgid "Authentication method"
|
||||
msgstr "Authentifizierungsmethode"
|
||||
|
||||
#. js-lingui-id: H7qgYQ
|
||||
#: src/pages/settings/SettingsTwoFactorAuthenticationMethod.tsx
|
||||
msgid "Authenticator app"
|
||||
@@ -3292,7 +3282,6 @@ msgid "Configuration"
|
||||
msgstr "Konfiguration"
|
||||
|
||||
#. js-lingui-id: iAL9tI
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
|
||||
msgid "Configure"
|
||||
msgstr "Konfigurieren"
|
||||
@@ -5219,7 +5208,7 @@ msgid "e.g. OpenAI EU"
|
||||
msgstr "z. B. OpenAI EU"
|
||||
|
||||
#. js-lingui-id: p5P8NB
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "E.g., \"We are a B2B SaaS company. Always use formal language...\""
|
||||
msgstr "Z. B.: \"Wir sind ein B2B-SaaS-Unternehmen. Verwenden Sie immer eine formelle Sprache...\""
|
||||
|
||||
@@ -6622,7 +6611,7 @@ msgid "Failed to save role permissions: {errorMessage}"
|
||||
msgstr "Fehler beim Speichern der Rollenberechtigungen: {errorMessage}"
|
||||
|
||||
#. js-lingui-id: 9ryUyP
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Failed to save workspace instructions"
|
||||
msgstr "Fehler beim Speichern der Arbeitsbereichsanweisungen"
|
||||
|
||||
@@ -10470,11 +10459,6 @@ msgstr "OAuth"
|
||||
msgid "OAuth Credentials"
|
||||
msgstr "OAuth-Anmeldedaten"
|
||||
|
||||
#. js-lingui-id: LNLTJB
|
||||
#: src/pages/settings/ai/components/SettingsAIMCP.tsx
|
||||
msgid "OAuth or API Key"
|
||||
msgstr "OAuth oder API-Schlüssel"
|
||||
|
||||
#. js-lingui-id: pNEViR
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
@@ -10708,6 +10692,7 @@ msgid "Only the timestamp & participants will be shared with your team."
|
||||
msgstr "Nur der Zeitstempel & Teilnehmer werden mit Ihrem Team geteilt."
|
||||
|
||||
#. js-lingui-id: 1TNIig
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
#: src/modules/command-menu-item/components/RecordShowSidePanelOpenRecordButton.tsx
|
||||
msgid "Open"
|
||||
@@ -11656,6 +11641,22 @@ msgstr "Änderungsprotokoll lesen"
|
||||
msgid "Read documentation"
|
||||
msgstr "Dokumentation lesen"
|
||||
|
||||
#. js-lingui-id: U26cMX
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Read system prompts"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: EKsFda
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Read the system prompts to understand how the AI works"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 0URVx8
|
||||
#. placeholder {0}: formatNumber( systemPromptTokenCount, { abbreviate: true, decimals: 1, }, )
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Read the system prompts to understand how the AI works (~{0} tokens)"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: afMuDE
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
msgid "Read your profile"
|
||||
@@ -11708,6 +11709,7 @@ msgstr "Datensatz"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/navigation-menu-item/display/object/components/NavigationDrawerItemForObjectMetadataItem.tsx
|
||||
msgid "Record"
|
||||
msgstr "Datensatz"
|
||||
|
||||
@@ -12820,6 +12822,11 @@ msgstr "Aktive Version anzeigen"
|
||||
msgid "See all {relationLabelPlural} linked to this record"
|
||||
msgstr "Alle {relationLabelPlural}, die mit diesem Datensatz verknüpft sind, anzeigen"
|
||||
|
||||
#. js-lingui-id: sFsCOG
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
msgid "See data model settings"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: f4Lu+X
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "See deleted dashboards"
|
||||
@@ -12850,6 +12857,12 @@ msgstr "Gelöschte Workflows anzeigen"
|
||||
msgid "See Fields"
|
||||
msgstr "Felder sehen"
|
||||
|
||||
#. js-lingui-id: vn4aKq
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
|
||||
msgid "See records"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: irbH/8
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
msgid "See Records on All Objects"
|
||||
@@ -14042,11 +14055,10 @@ msgstr ""
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/forms/components/SettingsAIAgentForm.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "System Prompt"
|
||||
msgstr "Systemaufforderung"
|
||||
|
||||
@@ -15672,11 +15684,6 @@ msgstr ""
|
||||
msgid "View all evaluations"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 3JjgWt
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
msgid "View and customize AI instructions"
|
||||
msgstr "KI-Anweisungen anzeigen und anpassen"
|
||||
|
||||
#. js-lingui-id: XVf/G7
|
||||
#: src/pages/settings/security/SettingsSecurity.tsx
|
||||
msgid "View and filter events, page views, object changes"
|
||||
@@ -15782,11 +15789,6 @@ msgstr ""
|
||||
msgid "view sort"
|
||||
msgstr "Ansichtssortierung"
|
||||
|
||||
#. js-lingui-id: FNDoRH
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
msgid "View the AI system prompt and add custom instructions"
|
||||
msgstr "Den Systemprompt der KI anzeigen und benutzerdefinierte Anweisungen hinzufügen"
|
||||
|
||||
#. js-lingui-id: bJAIqT
|
||||
#: src/modules/views/view-picker/components/ViewPickerContentCreateMode.tsx
|
||||
msgid "View type"
|
||||
@@ -16219,8 +16221,8 @@ msgid "Workspace Info"
|
||||
msgstr "Arbeitsbereichsinfo"
|
||||
|
||||
#. js-lingui-id: BYrMT0
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Workspace Instructions"
|
||||
msgstr "Arbeitsbereichsanweisungen"
|
||||
|
||||
|
||||
@@ -671,10 +671,10 @@ msgstr "Access Key ID"
|
||||
msgid "Access workspace data"
|
||||
msgstr "Πρόσβαση στα δεδομένα του χώρου εργασίας"
|
||||
|
||||
#. js-lingui-id: W5nhmk
|
||||
#. js-lingui-id: c2UA7k
|
||||
#: src/pages/settings/ai/components/SettingsAIMCP.tsx
|
||||
msgid "Access your workspace data from your favorite MCP client like Claude Desktop, Claude Code, Cursor, or ChatGPT. Once connected, try: \"Show me the 5 most recently created companies\" or \"Create a new person named Jane Doe\"."
|
||||
msgstr "Αποκτήστε πρόσβαση στα δεδομένα του χώρου εργασίας σας μέσω του αγαπημένου σας MCP client, όπως το Claude Desktop, το Claude Code, το Cursor ή το ChatGPT. Μόλις συνδεθείτε, δοκιμάστε: \"Δείξε μου τις 5 πιο πρόσφατα δημιουργημένες εταιρείες\" ή \"Δημιούργησε ένα νέο άτομο με το όνομα Jane Doe\"."
|
||||
msgid "Access your workspace data from your favorite MCP client like Claude Desktop, Windsurf or Cursor."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: u2Cycw
|
||||
#: src/modules/settings/logic-functions/components/SettingsLogicFunctionTabEnvironmentVariablesSection.tsx
|
||||
@@ -899,7 +899,7 @@ msgid "Add custom endpoints, private gateways, or additional regions."
|
||||
msgstr "Προσθέστε προσαρμοσμένα endpoints, ιδιωτικά gateways ή επιπλέον περιοχές."
|
||||
|
||||
#. js-lingui-id: GuJvBr
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Add custom instructions specific to your workspace (appended to system prompt)"
|
||||
msgstr "Προσθέστε προσαρμοσμένες οδηγίες που αφορούν ειδικά τον χώρο εργασίας σας (προστίθενται στην προτροπή συστήματος)"
|
||||
|
||||
@@ -1176,11 +1176,6 @@ msgstr "Προστέθηκε {beautifyPastDateRelative}"
|
||||
msgid "Added to blocklist"
|
||||
msgstr "Προστέθηκε στη λίστα αποκλεισμού"
|
||||
|
||||
#. js-lingui-id: y5mJau
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Additional Instructions"
|
||||
msgstr "Πρόσθετες οδηγίες"
|
||||
|
||||
#. js-lingui-id: hW/fMg
|
||||
#: src/modules/ui/field/input/components/AddressInput.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/constants/DefaultSelectionAddressWithMessages.ts
|
||||
@@ -2279,11 +2274,6 @@ msgstr "Ταυτοποίηση"
|
||||
msgid "Authentication failed"
|
||||
msgstr "Αποτυχία ταυτοποίησης"
|
||||
|
||||
#. js-lingui-id: TxT0ER
|
||||
#: src/pages/settings/ai/components/SettingsAIMCP.tsx
|
||||
msgid "Authentication method"
|
||||
msgstr "Μέθοδος ταυτοποίησης"
|
||||
|
||||
#. js-lingui-id: H7qgYQ
|
||||
#: src/pages/settings/SettingsTwoFactorAuthenticationMethod.tsx
|
||||
msgid "Authenticator app"
|
||||
@@ -3292,7 +3282,6 @@ msgid "Configuration"
|
||||
msgstr "Διαμόρφωση"
|
||||
|
||||
#. js-lingui-id: iAL9tI
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
|
||||
msgid "Configure"
|
||||
msgstr "Διαμόρφωση"
|
||||
@@ -5219,7 +5208,7 @@ msgid "e.g. OpenAI EU"
|
||||
msgstr "π.χ. OpenAI EU"
|
||||
|
||||
#. js-lingui-id: p5P8NB
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "E.g., \"We are a B2B SaaS company. Always use formal language...\""
|
||||
msgstr "Π.χ., \"Είμαστε μια εταιρεία B2B SaaS. Να χρησιμοποιείτε πάντα επίσημη γλώσσα...\""
|
||||
|
||||
@@ -6622,7 +6611,7 @@ msgid "Failed to save role permissions: {errorMessage}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 9ryUyP
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Failed to save workspace instructions"
|
||||
msgstr "Αποτυχία αποθήκευσης των οδηγιών του χώρου εργασίας"
|
||||
|
||||
@@ -10470,11 +10459,6 @@ msgstr "OAuth"
|
||||
msgid "OAuth Credentials"
|
||||
msgstr "Διαπιστευτήρια OAuth"
|
||||
|
||||
#. js-lingui-id: LNLTJB
|
||||
#: src/pages/settings/ai/components/SettingsAIMCP.tsx
|
||||
msgid "OAuth or API Key"
|
||||
msgstr "OAuth ή κλειδί API"
|
||||
|
||||
#. js-lingui-id: pNEViR
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
@@ -10708,6 +10692,7 @@ msgid "Only the timestamp & participants will be shared with your team."
|
||||
msgstr "Μόνο η χρονική σήμανση και οι συμμετέχοντες θα μοιραστούν με την ομάδα σας."
|
||||
|
||||
#. js-lingui-id: 1TNIig
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
#: src/modules/command-menu-item/components/RecordShowSidePanelOpenRecordButton.tsx
|
||||
msgid "Open"
|
||||
@@ -11656,6 +11641,22 @@ msgstr "Διαβάστε το ιστορικό αλλαγών"
|
||||
msgid "Read documentation"
|
||||
msgstr "Διαβάστε την τεκμηρίωση"
|
||||
|
||||
#. js-lingui-id: U26cMX
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Read system prompts"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: EKsFda
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Read the system prompts to understand how the AI works"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 0URVx8
|
||||
#. placeholder {0}: formatNumber( systemPromptTokenCount, { abbreviate: true, decimals: 1, }, )
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Read the system prompts to understand how the AI works (~{0} tokens)"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: afMuDE
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
msgid "Read your profile"
|
||||
@@ -11708,6 +11709,7 @@ msgstr "εγγραφή"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/navigation-menu-item/display/object/components/NavigationDrawerItemForObjectMetadataItem.tsx
|
||||
msgid "Record"
|
||||
msgstr "Εγγραφή"
|
||||
|
||||
@@ -12820,6 +12822,11 @@ msgstr "Δείτε την ενεργή έκδοση"
|
||||
msgid "See all {relationLabelPlural} linked to this record"
|
||||
msgstr "Δείτε όλα τα {relationLabelPlural} που συνδέονται με αυτήν την εγγραφή"
|
||||
|
||||
#. js-lingui-id: sFsCOG
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
msgid "See data model settings"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: f4Lu+X
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "See deleted dashboards"
|
||||
@@ -12850,6 +12857,12 @@ msgstr "Δείτε διαγραμμένα workflows"
|
||||
msgid "See Fields"
|
||||
msgstr "Δείτε Πεδία"
|
||||
|
||||
#. js-lingui-id: vn4aKq
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
|
||||
msgid "See records"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: irbH/8
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
msgid "See Records on All Objects"
|
||||
@@ -14044,11 +14057,10 @@ msgstr ""
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/forms/components/SettingsAIAgentForm.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "System Prompt"
|
||||
msgstr "Σύστημα Προτροπής"
|
||||
|
||||
@@ -15676,11 +15688,6 @@ msgstr ""
|
||||
msgid "View all evaluations"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 3JjgWt
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
msgid "View and customize AI instructions"
|
||||
msgstr "Προβολή και προσαρμογή οδηγιών AI"
|
||||
|
||||
#. js-lingui-id: XVf/G7
|
||||
#: src/pages/settings/security/SettingsSecurity.tsx
|
||||
msgid "View and filter events, page views, object changes"
|
||||
@@ -15786,11 +15793,6 @@ msgstr ""
|
||||
msgid "view sort"
|
||||
msgstr "ταξινόμηση προβολής"
|
||||
|
||||
#. js-lingui-id: FNDoRH
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
msgid "View the AI system prompt and add custom instructions"
|
||||
msgstr "Δείτε την προτροπή συστήματος του AI και προσθέστε προσαρμοσμένες οδηγίες"
|
||||
|
||||
#. js-lingui-id: bJAIqT
|
||||
#: src/modules/views/view-picker/components/ViewPickerContentCreateMode.tsx
|
||||
msgid "View type"
|
||||
@@ -16223,8 +16225,8 @@ msgid "Workspace Info"
|
||||
msgstr "Πληροφορίες Χώρου Εργασίας"
|
||||
|
||||
#. js-lingui-id: BYrMT0
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Workspace Instructions"
|
||||
msgstr "Οδηγίες Χώρου Εργασίας"
|
||||
|
||||
|
||||
@@ -666,10 +666,10 @@ msgstr "Access Key ID"
|
||||
msgid "Access workspace data"
|
||||
msgstr "Access workspace data"
|
||||
|
||||
#. js-lingui-id: W5nhmk
|
||||
#. js-lingui-id: c2UA7k
|
||||
#: src/pages/settings/ai/components/SettingsAIMCP.tsx
|
||||
msgid "Access your workspace data from your favorite MCP client like Claude Desktop, Claude Code, Cursor, or ChatGPT. Once connected, try: \"Show me the 5 most recently created companies\" or \"Create a new person named Jane Doe\"."
|
||||
msgstr "Access your workspace data from your favorite MCP client like Claude Desktop, Claude Code, Cursor, or ChatGPT. Once connected, try: \"Show me the 5 most recently created companies\" or \"Create a new person named Jane Doe\"."
|
||||
msgid "Access your workspace data from your favorite MCP client like Claude Desktop, Windsurf or Cursor."
|
||||
msgstr "Access your workspace data from your favorite MCP client like Claude Desktop, Windsurf or Cursor."
|
||||
|
||||
#. js-lingui-id: u2Cycw
|
||||
#: src/modules/settings/logic-functions/components/SettingsLogicFunctionTabEnvironmentVariablesSection.tsx
|
||||
@@ -894,7 +894,7 @@ msgid "Add custom endpoints, private gateways, or additional regions."
|
||||
msgstr "Add custom endpoints, private gateways, or additional regions."
|
||||
|
||||
#. js-lingui-id: GuJvBr
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Add custom instructions specific to your workspace (appended to system prompt)"
|
||||
msgstr "Add custom instructions specific to your workspace (appended to system prompt)"
|
||||
|
||||
@@ -1171,11 +1171,6 @@ msgstr "Added {beautifyPastDateRelative}"
|
||||
msgid "Added to blocklist"
|
||||
msgstr "Added to blocklist"
|
||||
|
||||
#. js-lingui-id: y5mJau
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Additional Instructions"
|
||||
msgstr "Additional Instructions"
|
||||
|
||||
#. js-lingui-id: hW/fMg
|
||||
#: src/modules/ui/field/input/components/AddressInput.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/constants/DefaultSelectionAddressWithMessages.ts
|
||||
@@ -2274,11 +2269,6 @@ msgstr "Authentication"
|
||||
msgid "Authentication failed"
|
||||
msgstr "Authentication failed"
|
||||
|
||||
#. js-lingui-id: TxT0ER
|
||||
#: src/pages/settings/ai/components/SettingsAIMCP.tsx
|
||||
msgid "Authentication method"
|
||||
msgstr "Authentication method"
|
||||
|
||||
#. js-lingui-id: H7qgYQ
|
||||
#: src/pages/settings/SettingsTwoFactorAuthenticationMethod.tsx
|
||||
msgid "Authenticator app"
|
||||
@@ -3287,7 +3277,6 @@ msgid "Configuration"
|
||||
msgstr "Configuration"
|
||||
|
||||
#. js-lingui-id: iAL9tI
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
|
||||
msgid "Configure"
|
||||
msgstr "Configure"
|
||||
@@ -5214,7 +5203,7 @@ msgid "e.g. OpenAI EU"
|
||||
msgstr "e.g. OpenAI EU"
|
||||
|
||||
#. js-lingui-id: p5P8NB
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "E.g., \"We are a B2B SaaS company. Always use formal language...\""
|
||||
msgstr "E.g., \"We are a B2B SaaS company. Always use formal language...\""
|
||||
|
||||
@@ -6617,7 +6606,7 @@ msgid "Failed to save role permissions: {errorMessage}"
|
||||
msgstr "Failed to save role permissions: {errorMessage}"
|
||||
|
||||
#. js-lingui-id: 9ryUyP
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Failed to save workspace instructions"
|
||||
msgstr "Failed to save workspace instructions"
|
||||
|
||||
@@ -10465,11 +10454,6 @@ msgstr "OAuth"
|
||||
msgid "OAuth Credentials"
|
||||
msgstr "OAuth Credentials"
|
||||
|
||||
#. js-lingui-id: LNLTJB
|
||||
#: src/pages/settings/ai/components/SettingsAIMCP.tsx
|
||||
msgid "OAuth or API Key"
|
||||
msgstr "OAuth or API Key"
|
||||
|
||||
#. js-lingui-id: pNEViR
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
@@ -10703,6 +10687,7 @@ msgid "Only the timestamp & participants will be shared with your team."
|
||||
msgstr "Only the timestamp & participants will be shared with your team."
|
||||
|
||||
#. js-lingui-id: 1TNIig
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
#: src/modules/command-menu-item/components/RecordShowSidePanelOpenRecordButton.tsx
|
||||
msgid "Open"
|
||||
@@ -11651,6 +11636,22 @@ msgstr "Read changelog"
|
||||
msgid "Read documentation"
|
||||
msgstr "Read documentation"
|
||||
|
||||
#. js-lingui-id: U26cMX
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Read system prompts"
|
||||
msgstr "Read system prompts"
|
||||
|
||||
#. js-lingui-id: EKsFda
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Read the system prompts to understand how the AI works"
|
||||
msgstr "Read the system prompts to understand how the AI works"
|
||||
|
||||
#. js-lingui-id: 0URVx8
|
||||
#. placeholder {0}: formatNumber( systemPromptTokenCount, { abbreviate: true, decimals: 1, }, )
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Read the system prompts to understand how the AI works (~{0} tokens)"
|
||||
msgstr "Read the system prompts to understand how the AI works (~{0} tokens)"
|
||||
|
||||
#. js-lingui-id: afMuDE
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
msgid "Read your profile"
|
||||
@@ -11703,6 +11704,7 @@ msgstr "record"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/navigation-menu-item/display/object/components/NavigationDrawerItemForObjectMetadataItem.tsx
|
||||
msgid "Record"
|
||||
msgstr "Record"
|
||||
|
||||
@@ -12815,6 +12817,11 @@ msgstr "See active version"
|
||||
msgid "See all {relationLabelPlural} linked to this record"
|
||||
msgstr "See all {relationLabelPlural} linked to this record"
|
||||
|
||||
#. js-lingui-id: sFsCOG
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
msgid "See data model settings"
|
||||
msgstr "See data model settings"
|
||||
|
||||
#. js-lingui-id: f4Lu+X
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "See deleted dashboards"
|
||||
@@ -12845,6 +12852,12 @@ msgstr "See deleted workflows"
|
||||
msgid "See Fields"
|
||||
msgstr "See Fields"
|
||||
|
||||
#. js-lingui-id: vn4aKq
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
|
||||
msgid "See records"
|
||||
msgstr "See records"
|
||||
|
||||
#. js-lingui-id: irbH/8
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
msgid "See Records on All Objects"
|
||||
@@ -14037,11 +14050,10 @@ msgstr "System objects"
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/forms/components/SettingsAIAgentForm.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "System Prompt"
|
||||
msgstr "System Prompt"
|
||||
|
||||
@@ -15669,11 +15681,6 @@ msgstr "View AI usage breakdown"
|
||||
msgid "View all evaluations"
|
||||
msgstr "View all evaluations"
|
||||
|
||||
#. js-lingui-id: 3JjgWt
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
msgid "View and customize AI instructions"
|
||||
msgstr "View and customize AI instructions"
|
||||
|
||||
#. js-lingui-id: XVf/G7
|
||||
#: src/pages/settings/security/SettingsSecurity.tsx
|
||||
msgid "View and filter events, page views, object changes"
|
||||
@@ -15779,11 +15786,6 @@ msgstr "View Role"
|
||||
msgid "view sort"
|
||||
msgstr "view sort"
|
||||
|
||||
#. js-lingui-id: FNDoRH
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
msgid "View the AI system prompt and add custom instructions"
|
||||
msgstr "View the AI system prompt and add custom instructions"
|
||||
|
||||
#. js-lingui-id: bJAIqT
|
||||
#: src/modules/views/view-picker/components/ViewPickerContentCreateMode.tsx
|
||||
msgid "View type"
|
||||
@@ -16216,8 +16218,8 @@ msgid "Workspace Info"
|
||||
msgstr "Workspace Info"
|
||||
|
||||
#. js-lingui-id: BYrMT0
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Workspace Instructions"
|
||||
msgstr "Workspace Instructions"
|
||||
|
||||
|
||||
@@ -671,10 +671,10 @@ msgstr "ID de clave de acceso"
|
||||
msgid "Access workspace data"
|
||||
msgstr "Acceder a los datos del espacio de trabajo"
|
||||
|
||||
#. js-lingui-id: W5nhmk
|
||||
#. js-lingui-id: c2UA7k
|
||||
#: src/pages/settings/ai/components/SettingsAIMCP.tsx
|
||||
msgid "Access your workspace data from your favorite MCP client like Claude Desktop, Claude Code, Cursor, or ChatGPT. Once connected, try: \"Show me the 5 most recently created companies\" or \"Create a new person named Jane Doe\"."
|
||||
msgstr "Accede a los datos de tu espacio de trabajo desde tu cliente MCP favorito, como Claude Desktop, Claude Code, Cursor o ChatGPT. Una vez conectado, prueba: \"Muéstrame las 5 empresas creadas más recientemente\" o \"Crea una nueva persona llamada Jane Doe\"."
|
||||
msgid "Access your workspace data from your favorite MCP client like Claude Desktop, Windsurf or Cursor."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: u2Cycw
|
||||
#: src/modules/settings/logic-functions/components/SettingsLogicFunctionTabEnvironmentVariablesSection.tsx
|
||||
@@ -899,7 +899,7 @@ msgid "Add custom endpoints, private gateways, or additional regions."
|
||||
msgstr "Añade endpoints personalizados, puertas de enlace privadas o regiones adicionales."
|
||||
|
||||
#. js-lingui-id: GuJvBr
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Add custom instructions specific to your workspace (appended to system prompt)"
|
||||
msgstr "Añade instrucciones personalizadas específicas de tu espacio de trabajo (se añaden al prompt del sistema)"
|
||||
|
||||
@@ -1176,11 +1176,6 @@ msgstr "Añadido {beautifyPastDateRelative}"
|
||||
msgid "Added to blocklist"
|
||||
msgstr "Añadido a la lista de bloqueo"
|
||||
|
||||
#. js-lingui-id: y5mJau
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Additional Instructions"
|
||||
msgstr "Instrucciones adicionales"
|
||||
|
||||
#. js-lingui-id: hW/fMg
|
||||
#: src/modules/ui/field/input/components/AddressInput.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/constants/DefaultSelectionAddressWithMessages.ts
|
||||
@@ -2279,11 +2274,6 @@ msgstr "Autenticación"
|
||||
msgid "Authentication failed"
|
||||
msgstr "Autenticación fallida"
|
||||
|
||||
#. js-lingui-id: TxT0ER
|
||||
#: src/pages/settings/ai/components/SettingsAIMCP.tsx
|
||||
msgid "Authentication method"
|
||||
msgstr "Método de autenticación"
|
||||
|
||||
#. js-lingui-id: H7qgYQ
|
||||
#: src/pages/settings/SettingsTwoFactorAuthenticationMethod.tsx
|
||||
msgid "Authenticator app"
|
||||
@@ -3292,7 +3282,6 @@ msgid "Configuration"
|
||||
msgstr "Configuración"
|
||||
|
||||
#. js-lingui-id: iAL9tI
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
|
||||
msgid "Configure"
|
||||
msgstr "Configurar"
|
||||
@@ -5219,7 +5208,7 @@ msgid "e.g. OpenAI EU"
|
||||
msgstr "p. ej., OpenAI EU"
|
||||
|
||||
#. js-lingui-id: p5P8NB
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "E.g., \"We are a B2B SaaS company. Always use formal language...\""
|
||||
msgstr "p. ej., \"Somos una empresa SaaS B2B. Utiliza siempre un lenguaje formal...\""
|
||||
|
||||
@@ -6622,7 +6611,7 @@ msgid "Failed to save role permissions: {errorMessage}"
|
||||
msgstr "Error al guardar los permisos de rol: {errorMessage}"
|
||||
|
||||
#. js-lingui-id: 9ryUyP
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Failed to save workspace instructions"
|
||||
msgstr "Error al guardar las instrucciones del espacio de trabajo"
|
||||
|
||||
@@ -10470,11 +10459,6 @@ msgstr "OAuth"
|
||||
msgid "OAuth Credentials"
|
||||
msgstr "Credenciales de OAuth"
|
||||
|
||||
#. js-lingui-id: LNLTJB
|
||||
#: src/pages/settings/ai/components/SettingsAIMCP.tsx
|
||||
msgid "OAuth or API Key"
|
||||
msgstr "OAuth o clave de API"
|
||||
|
||||
#. js-lingui-id: pNEViR
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
@@ -10708,6 +10692,7 @@ msgid "Only the timestamp & participants will be shared with your team."
|
||||
msgstr "Solo la marca de tiempo y los participantes se compartirán con tu equipo."
|
||||
|
||||
#. js-lingui-id: 1TNIig
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
#: src/modules/command-menu-item/components/RecordShowSidePanelOpenRecordButton.tsx
|
||||
msgid "Open"
|
||||
@@ -11656,6 +11641,22 @@ msgstr "Leer el registro de cambios"
|
||||
msgid "Read documentation"
|
||||
msgstr "Leer documentación"
|
||||
|
||||
#. js-lingui-id: U26cMX
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Read system prompts"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: EKsFda
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Read the system prompts to understand how the AI works"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 0URVx8
|
||||
#. placeholder {0}: formatNumber( systemPromptTokenCount, { abbreviate: true, decimals: 1, }, )
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Read the system prompts to understand how the AI works (~{0} tokens)"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: afMuDE
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
msgid "Read your profile"
|
||||
@@ -11708,6 +11709,7 @@ msgstr "registro"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/navigation-menu-item/display/object/components/NavigationDrawerItemForObjectMetadataItem.tsx
|
||||
msgid "Record"
|
||||
msgstr "Registro"
|
||||
|
||||
@@ -12820,6 +12822,11 @@ msgstr "Ver versión activa"
|
||||
msgid "See all {relationLabelPlural} linked to this record"
|
||||
msgstr "Ver todos los {relationLabelPlural} vinculados a este registro"
|
||||
|
||||
#. js-lingui-id: sFsCOG
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
msgid "See data model settings"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: f4Lu+X
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "See deleted dashboards"
|
||||
@@ -12850,6 +12857,12 @@ msgstr "Ver workflows eliminados"
|
||||
msgid "See Fields"
|
||||
msgstr "Ver Campos"
|
||||
|
||||
#. js-lingui-id: vn4aKq
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
|
||||
msgid "See records"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: irbH/8
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
msgid "See Records on All Objects"
|
||||
@@ -14042,11 +14055,10 @@ msgstr "Objetos del sistema"
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/forms/components/SettingsAIAgentForm.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "System Prompt"
|
||||
msgstr "Aviso del sistema"
|
||||
|
||||
@@ -15674,11 +15686,6 @@ msgstr ""
|
||||
msgid "View all evaluations"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 3JjgWt
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
msgid "View and customize AI instructions"
|
||||
msgstr "Ver y personalizar las instrucciones de la IA"
|
||||
|
||||
#. js-lingui-id: XVf/G7
|
||||
#: src/pages/settings/security/SettingsSecurity.tsx
|
||||
msgid "View and filter events, page views, object changes"
|
||||
@@ -15784,11 +15791,6 @@ msgstr ""
|
||||
msgid "view sort"
|
||||
msgstr "orden de la vista"
|
||||
|
||||
#. js-lingui-id: FNDoRH
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
msgid "View the AI system prompt and add custom instructions"
|
||||
msgstr "Ver el prompt del sistema de la IA y añadir instrucciones personalizadas"
|
||||
|
||||
#. js-lingui-id: bJAIqT
|
||||
#: src/modules/views/view-picker/components/ViewPickerContentCreateMode.tsx
|
||||
msgid "View type"
|
||||
@@ -16221,8 +16223,8 @@ msgid "Workspace Info"
|
||||
msgstr "Información del espacio de trabajo"
|
||||
|
||||
#. js-lingui-id: BYrMT0
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Workspace Instructions"
|
||||
msgstr "Instrucciones del espacio de trabajo"
|
||||
|
||||
|
||||
@@ -671,10 +671,10 @@ msgstr "Käyttöavaimen tunnus"
|
||||
msgid "Access workspace data"
|
||||
msgstr "Pääsy työtilan tietoihin"
|
||||
|
||||
#. js-lingui-id: W5nhmk
|
||||
#. js-lingui-id: c2UA7k
|
||||
#: src/pages/settings/ai/components/SettingsAIMCP.tsx
|
||||
msgid "Access your workspace data from your favorite MCP client like Claude Desktop, Claude Code, Cursor, or ChatGPT. Once connected, try: \"Show me the 5 most recently created companies\" or \"Create a new person named Jane Doe\"."
|
||||
msgstr "Käytä työtilasi tietoja suosikkisi MCP-asiakasohjelmasta, kuten Claude Desktop, Claude Code, Cursor tai ChatGPT. Kun yhteys on muodostettu, kokeile: \"Näytä minulle 5 viimeksi luotua yritystä\" tai \"Luo uusi henkilö nimeltä Jane Doe\"."
|
||||
msgid "Access your workspace data from your favorite MCP client like Claude Desktop, Windsurf or Cursor."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: u2Cycw
|
||||
#: src/modules/settings/logic-functions/components/SettingsLogicFunctionTabEnvironmentVariablesSection.tsx
|
||||
@@ -899,7 +899,7 @@ msgid "Add custom endpoints, private gateways, or additional regions."
|
||||
msgstr "Lisää mukautettuja päätepisteitä, yksityisiä yhdyskäytäviä tai lisäalueita."
|
||||
|
||||
#. js-lingui-id: GuJvBr
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Add custom instructions specific to your workspace (appended to system prompt)"
|
||||
msgstr "Lisää työtilaasi koskevia mukautettuja ohjeita (lisätään järjestelmäkehotteeseen)"
|
||||
|
||||
@@ -1176,11 +1176,6 @@ msgstr "Lisätty {beautifyPastDateRelative}"
|
||||
msgid "Added to blocklist"
|
||||
msgstr "Lisätty estolistalle"
|
||||
|
||||
#. js-lingui-id: y5mJau
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Additional Instructions"
|
||||
msgstr "Lisäohjeet"
|
||||
|
||||
#. js-lingui-id: hW/fMg
|
||||
#: src/modules/ui/field/input/components/AddressInput.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/constants/DefaultSelectionAddressWithMessages.ts
|
||||
@@ -2279,11 +2274,6 @@ msgstr "Todennus"
|
||||
msgid "Authentication failed"
|
||||
msgstr "Todennus epäonnistui"
|
||||
|
||||
#. js-lingui-id: TxT0ER
|
||||
#: src/pages/settings/ai/components/SettingsAIMCP.tsx
|
||||
msgid "Authentication method"
|
||||
msgstr "Todennusmenetelmä"
|
||||
|
||||
#. js-lingui-id: H7qgYQ
|
||||
#: src/pages/settings/SettingsTwoFactorAuthenticationMethod.tsx
|
||||
msgid "Authenticator app"
|
||||
@@ -3292,7 +3282,6 @@ msgid "Configuration"
|
||||
msgstr "Kokoonpano"
|
||||
|
||||
#. js-lingui-id: iAL9tI
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
|
||||
msgid "Configure"
|
||||
msgstr "Määritä"
|
||||
@@ -5219,7 +5208,7 @@ msgid "e.g. OpenAI EU"
|
||||
msgstr "esim. OpenAI EU"
|
||||
|
||||
#. js-lingui-id: p5P8NB
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "E.g., \"We are a B2B SaaS company. Always use formal language...\""
|
||||
msgstr "Esim. \"Olemme B2B SaaS -yritys. Käytä aina muodollista kieltä...\""
|
||||
|
||||
@@ -6622,7 +6611,7 @@ msgid "Failed to save role permissions: {errorMessage}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 9ryUyP
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Failed to save workspace instructions"
|
||||
msgstr "Työtilan ohjeiden tallentaminen epäonnistui"
|
||||
|
||||
@@ -10470,11 +10459,6 @@ msgstr "OAuth"
|
||||
msgid "OAuth Credentials"
|
||||
msgstr "OAuth-tunnistetiedot"
|
||||
|
||||
#. js-lingui-id: LNLTJB
|
||||
#: src/pages/settings/ai/components/SettingsAIMCP.tsx
|
||||
msgid "OAuth or API Key"
|
||||
msgstr "OAuth tai API-avain"
|
||||
|
||||
#. js-lingui-id: pNEViR
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
@@ -10708,6 +10692,7 @@ msgid "Only the timestamp & participants will be shared with your team."
|
||||
msgstr "Vain aikaleima ja osallistujat jaetaan tiimisi kanssa."
|
||||
|
||||
#. js-lingui-id: 1TNIig
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
#: src/modules/command-menu-item/components/RecordShowSidePanelOpenRecordButton.tsx
|
||||
msgid "Open"
|
||||
@@ -11656,6 +11641,22 @@ msgstr "Lue muutosloki"
|
||||
msgid "Read documentation"
|
||||
msgstr "Lue dokumentaatio"
|
||||
|
||||
#. js-lingui-id: U26cMX
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Read system prompts"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: EKsFda
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Read the system prompts to understand how the AI works"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 0URVx8
|
||||
#. placeholder {0}: formatNumber( systemPromptTokenCount, { abbreviate: true, decimals: 1, }, )
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Read the system prompts to understand how the AI works (~{0} tokens)"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: afMuDE
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
msgid "Read your profile"
|
||||
@@ -11708,6 +11709,7 @@ msgstr "tietue"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/navigation-menu-item/display/object/components/NavigationDrawerItemForObjectMetadataItem.tsx
|
||||
msgid "Record"
|
||||
msgstr "Tietue"
|
||||
|
||||
@@ -12820,6 +12822,11 @@ msgstr "Näytä aktiivinen versio"
|
||||
msgid "See all {relationLabelPlural} linked to this record"
|
||||
msgstr "Näytä kaikki tähän tietueeseen linkitetyt {relationLabelPlural}"
|
||||
|
||||
#. js-lingui-id: sFsCOG
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
msgid "See data model settings"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: f4Lu+X
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "See deleted dashboards"
|
||||
@@ -12850,6 +12857,12 @@ msgstr "Näytä poistetut työnkulut"
|
||||
msgid "See Fields"
|
||||
msgstr "Nähdä kentät"
|
||||
|
||||
#. js-lingui-id: vn4aKq
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
|
||||
msgid "See records"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: irbH/8
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
msgid "See Records on All Objects"
|
||||
@@ -14042,11 +14055,10 @@ msgstr ""
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/forms/components/SettingsAIAgentForm.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "System Prompt"
|
||||
msgstr "Järjestelmäkehotus"
|
||||
|
||||
@@ -15672,11 +15684,6 @@ msgstr ""
|
||||
msgid "View all evaluations"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 3JjgWt
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
msgid "View and customize AI instructions"
|
||||
msgstr "Näytä ja mukauta AI-ohjeita"
|
||||
|
||||
#. js-lingui-id: XVf/G7
|
||||
#: src/pages/settings/security/SettingsSecurity.tsx
|
||||
msgid "View and filter events, page views, object changes"
|
||||
@@ -15782,11 +15789,6 @@ msgstr ""
|
||||
msgid "view sort"
|
||||
msgstr "näkymän lajittelu"
|
||||
|
||||
#. js-lingui-id: FNDoRH
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
msgid "View the AI system prompt and add custom instructions"
|
||||
msgstr "Näytä AI-järjestelmäkehote ja lisää mukautettuja ohjeita"
|
||||
|
||||
#. js-lingui-id: bJAIqT
|
||||
#: src/modules/views/view-picker/components/ViewPickerContentCreateMode.tsx
|
||||
msgid "View type"
|
||||
@@ -16219,8 +16221,8 @@ msgid "Workspace Info"
|
||||
msgstr "Työtilan tiedot"
|
||||
|
||||
#. js-lingui-id: BYrMT0
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Workspace Instructions"
|
||||
msgstr "Työtilan ohjeet"
|
||||
|
||||
|
||||
@@ -671,9 +671,9 @@ msgstr "ID de clé d'accès"
|
||||
msgid "Access workspace data"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: W5nhmk
|
||||
#. js-lingui-id: c2UA7k
|
||||
#: src/pages/settings/ai/components/SettingsAIMCP.tsx
|
||||
msgid "Access your workspace data from your favorite MCP client like Claude Desktop, Claude Code, Cursor, or ChatGPT. Once connected, try: \"Show me the 5 most recently created companies\" or \"Create a new person named Jane Doe\"."
|
||||
msgid "Access your workspace data from your favorite MCP client like Claude Desktop, Windsurf or Cursor."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: u2Cycw
|
||||
@@ -899,7 +899,7 @@ msgid "Add custom endpoints, private gateways, or additional regions."
|
||||
msgstr "Ajouter des points de terminaison personnalisés, des passerelles privées ou des régions supplémentaires."
|
||||
|
||||
#. js-lingui-id: GuJvBr
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Add custom instructions specific to your workspace (appended to system prompt)"
|
||||
msgstr "Ajouter des instructions personnalisées propres à votre espace de travail (ajoutées à l'invite système)"
|
||||
|
||||
@@ -1176,11 +1176,6 @@ msgstr "Ajouté {beautifyPastDateRelative}"
|
||||
msgid "Added to blocklist"
|
||||
msgstr "Ajouté à la liste de blocage"
|
||||
|
||||
#. js-lingui-id: y5mJau
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Additional Instructions"
|
||||
msgstr "Instructions supplémentaires"
|
||||
|
||||
#. js-lingui-id: hW/fMg
|
||||
#: src/modules/ui/field/input/components/AddressInput.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/constants/DefaultSelectionAddressWithMessages.ts
|
||||
@@ -2279,11 +2274,6 @@ msgstr "Authentification"
|
||||
msgid "Authentication failed"
|
||||
msgstr "Authentification échouée"
|
||||
|
||||
#. js-lingui-id: TxT0ER
|
||||
#: src/pages/settings/ai/components/SettingsAIMCP.tsx
|
||||
msgid "Authentication method"
|
||||
msgstr "Méthode d'authentification"
|
||||
|
||||
#. js-lingui-id: H7qgYQ
|
||||
#: src/pages/settings/SettingsTwoFactorAuthenticationMethod.tsx
|
||||
msgid "Authenticator app"
|
||||
@@ -3292,7 +3282,6 @@ msgid "Configuration"
|
||||
msgstr "Configuration"
|
||||
|
||||
#. js-lingui-id: iAL9tI
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
|
||||
msgid "Configure"
|
||||
msgstr "Configurer"
|
||||
@@ -5219,7 +5208,7 @@ msgid "e.g. OpenAI EU"
|
||||
msgstr "p. ex. OpenAI UE"
|
||||
|
||||
#. js-lingui-id: p5P8NB
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "E.g., \"We are a B2B SaaS company. Always use formal language...\""
|
||||
msgstr "Par exemple, \"Nous sommes une entreprise SaaS B2B. Utilisez toujours un langage formel...\""
|
||||
|
||||
@@ -6622,7 +6611,7 @@ msgid "Failed to save role permissions: {errorMessage}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 9ryUyP
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Failed to save workspace instructions"
|
||||
msgstr "Impossible d'enregistrer les instructions de l'espace de travail"
|
||||
|
||||
@@ -10470,11 +10459,6 @@ msgstr "OAuth"
|
||||
msgid "OAuth Credentials"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LNLTJB
|
||||
#: src/pages/settings/ai/components/SettingsAIMCP.tsx
|
||||
msgid "OAuth or API Key"
|
||||
msgstr "OAuth ou clé API"
|
||||
|
||||
#. js-lingui-id: pNEViR
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
@@ -10708,6 +10692,7 @@ msgid "Only the timestamp & participants will be shared with your team."
|
||||
msgstr "Seuls l'horodatage et les participants seront partagés avec votre équipe."
|
||||
|
||||
#. js-lingui-id: 1TNIig
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
#: src/modules/command-menu-item/components/RecordShowSidePanelOpenRecordButton.tsx
|
||||
msgid "Open"
|
||||
@@ -11656,6 +11641,22 @@ msgstr "Lire le journal des modifications"
|
||||
msgid "Read documentation"
|
||||
msgstr "Lire la documentation"
|
||||
|
||||
#. js-lingui-id: U26cMX
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Read system prompts"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: EKsFda
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Read the system prompts to understand how the AI works"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 0URVx8
|
||||
#. placeholder {0}: formatNumber( systemPromptTokenCount, { abbreviate: true, decimals: 1, }, )
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Read the system prompts to understand how the AI works (~{0} tokens)"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: afMuDE
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
msgid "Read your profile"
|
||||
@@ -11708,6 +11709,7 @@ msgstr "enregistrement"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/navigation-menu-item/display/object/components/NavigationDrawerItemForObjectMetadataItem.tsx
|
||||
msgid "Record"
|
||||
msgstr "Enregistrer"
|
||||
|
||||
@@ -12820,6 +12822,11 @@ msgstr "Voir la version active"
|
||||
msgid "See all {relationLabelPlural} linked to this record"
|
||||
msgstr "Voir tous les {relationLabelPlural} liés à cet enregistrement"
|
||||
|
||||
#. js-lingui-id: sFsCOG
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
msgid "See data model settings"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: f4Lu+X
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "See deleted dashboards"
|
||||
@@ -12850,6 +12857,12 @@ msgstr "Voir les workflows supprimés"
|
||||
msgid "See Fields"
|
||||
msgstr "Voir les champs"
|
||||
|
||||
#. js-lingui-id: vn4aKq
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
|
||||
msgid "See records"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: irbH/8
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
msgid "See Records on All Objects"
|
||||
@@ -14042,11 +14055,10 @@ msgstr ""
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/forms/components/SettingsAIAgentForm.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "System Prompt"
|
||||
msgstr "Invite système"
|
||||
|
||||
@@ -15674,11 +15686,6 @@ msgstr ""
|
||||
msgid "View all evaluations"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 3JjgWt
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
msgid "View and customize AI instructions"
|
||||
msgstr "Afficher et personnaliser les instructions de l'IA"
|
||||
|
||||
#. js-lingui-id: XVf/G7
|
||||
#: src/pages/settings/security/SettingsSecurity.tsx
|
||||
msgid "View and filter events, page views, object changes"
|
||||
@@ -15784,11 +15791,6 @@ msgstr ""
|
||||
msgid "view sort"
|
||||
msgstr "tri de vue"
|
||||
|
||||
#. js-lingui-id: FNDoRH
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
msgid "View the AI system prompt and add custom instructions"
|
||||
msgstr "Afficher l'invite système de l'IA et ajouter des instructions personnalisées"
|
||||
|
||||
#. js-lingui-id: bJAIqT
|
||||
#: src/modules/views/view-picker/components/ViewPickerContentCreateMode.tsx
|
||||
msgid "View type"
|
||||
@@ -16221,8 +16223,8 @@ msgid "Workspace Info"
|
||||
msgstr "Infos sur l'espace de travail"
|
||||
|
||||
#. js-lingui-id: BYrMT0
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Workspace Instructions"
|
||||
msgstr "Instructions de l'espace de travail"
|
||||
|
||||
|
||||
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
@@ -671,10 +671,10 @@ msgstr "מזהה מפתח גישה"
|
||||
msgid "Access workspace data"
|
||||
msgstr "גישה לנתוני מרחב העבודה"
|
||||
|
||||
#. js-lingui-id: W5nhmk
|
||||
#. js-lingui-id: c2UA7k
|
||||
#: src/pages/settings/ai/components/SettingsAIMCP.tsx
|
||||
msgid "Access your workspace data from your favorite MCP client like Claude Desktop, Claude Code, Cursor, or ChatGPT. Once connected, try: \"Show me the 5 most recently created companies\" or \"Create a new person named Jane Doe\"."
|
||||
msgstr "גש/י אל נתוני סביבת העבודה שלך באמצעות לקוח ה-MCP המועדף עליך, כגון Claude Desktop, Claude Code, Cursor או ChatGPT. לאחר ההתחברות, נסה/י: \"הצג את 5 החברות שנוצרו לאחרונה\" או \"צור אדם חדש בשם Jane Doe\"."
|
||||
msgid "Access your workspace data from your favorite MCP client like Claude Desktop, Windsurf or Cursor."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: u2Cycw
|
||||
#: src/modules/settings/logic-functions/components/SettingsLogicFunctionTabEnvironmentVariablesSection.tsx
|
||||
@@ -899,7 +899,7 @@ msgid "Add custom endpoints, private gateways, or additional regions."
|
||||
msgstr "הוסף נקודות קצה מותאמות אישית, שערים פרטיים או אזורים נוספים."
|
||||
|
||||
#. js-lingui-id: GuJvBr
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Add custom instructions specific to your workspace (appended to system prompt)"
|
||||
msgstr "הוסף הנחיות מותאמות אישית ספציפיות לסביבת העבודה שלך (מצורפות להנחיית המערכת)"
|
||||
|
||||
@@ -1176,11 +1176,6 @@ msgstr "נוסף ב-{beautifyPastDateRelative}"
|
||||
msgid "Added to blocklist"
|
||||
msgstr "הוסף לרשימת החסימה"
|
||||
|
||||
#. js-lingui-id: y5mJau
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Additional Instructions"
|
||||
msgstr "הנחיות נוספות"
|
||||
|
||||
#. js-lingui-id: hW/fMg
|
||||
#: src/modules/ui/field/input/components/AddressInput.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/constants/DefaultSelectionAddressWithMessages.ts
|
||||
@@ -2279,11 +2274,6 @@ msgstr "אימות"
|
||||
msgid "Authentication failed"
|
||||
msgstr "האימות נכשל"
|
||||
|
||||
#. js-lingui-id: TxT0ER
|
||||
#: src/pages/settings/ai/components/SettingsAIMCP.tsx
|
||||
msgid "Authentication method"
|
||||
msgstr "שיטת אימות"
|
||||
|
||||
#. js-lingui-id: H7qgYQ
|
||||
#: src/pages/settings/SettingsTwoFactorAuthenticationMethod.tsx
|
||||
msgid "Authenticator app"
|
||||
@@ -3292,7 +3282,6 @@ msgid "Configuration"
|
||||
msgstr "הגדרה"
|
||||
|
||||
#. js-lingui-id: iAL9tI
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
|
||||
msgid "Configure"
|
||||
msgstr "הגדר"
|
||||
@@ -5219,7 +5208,7 @@ msgid "e.g. OpenAI EU"
|
||||
msgstr "לדוגמה OpenAI EU"
|
||||
|
||||
#. js-lingui-id: p5P8NB
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "E.g., \"We are a B2B SaaS company. Always use formal language...\""
|
||||
msgstr "למשל, \"אנחנו חברת B2B SaaS. השתמש תמיד בשפה רשמית...\""
|
||||
|
||||
@@ -6622,7 +6611,7 @@ msgid "Failed to save role permissions: {errorMessage}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 9ryUyP
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Failed to save workspace instructions"
|
||||
msgstr "אירע כשל בשמירת הנחיות סביבת העבודה"
|
||||
|
||||
@@ -10470,11 +10459,6 @@ msgstr "OAuth"
|
||||
msgid "OAuth Credentials"
|
||||
msgstr "אישורי OAuth"
|
||||
|
||||
#. js-lingui-id: LNLTJB
|
||||
#: src/pages/settings/ai/components/SettingsAIMCP.tsx
|
||||
msgid "OAuth or API Key"
|
||||
msgstr "OAuth או מפתח API"
|
||||
|
||||
#. js-lingui-id: pNEViR
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
@@ -10708,6 +10692,7 @@ msgid "Only the timestamp & participants will be shared with your team."
|
||||
msgstr "רק חותמת הזמן והמשתתפים ישותפו עם הצוות שלך."
|
||||
|
||||
#. js-lingui-id: 1TNIig
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
#: src/modules/command-menu-item/components/RecordShowSidePanelOpenRecordButton.tsx
|
||||
msgid "Open"
|
||||
@@ -11656,6 +11641,22 @@ msgstr "קראו את יומן השינויים"
|
||||
msgid "Read documentation"
|
||||
msgstr "עיין/י בתיעוד"
|
||||
|
||||
#. js-lingui-id: U26cMX
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Read system prompts"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: EKsFda
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Read the system prompts to understand how the AI works"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 0URVx8
|
||||
#. placeholder {0}: formatNumber( systemPromptTokenCount, { abbreviate: true, decimals: 1, }, )
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Read the system prompts to understand how the AI works (~{0} tokens)"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: afMuDE
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
msgid "Read your profile"
|
||||
@@ -11708,6 +11709,7 @@ msgstr "רשומה"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/navigation-menu-item/display/object/components/NavigationDrawerItemForObjectMetadataItem.tsx
|
||||
msgid "Record"
|
||||
msgstr "רשומה"
|
||||
|
||||
@@ -12820,6 +12822,11 @@ msgstr "\\"
|
||||
msgid "See all {relationLabelPlural} linked to this record"
|
||||
msgstr "הצג את כל {relationLabelPlural} המקושרים לרשומה זו"
|
||||
|
||||
#. js-lingui-id: sFsCOG
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
msgid "See data model settings"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: f4Lu+X
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "See deleted dashboards"
|
||||
@@ -12850,6 +12857,12 @@ msgstr "ראה זרימות עבודה שנמחקו"
|
||||
msgid "See Fields"
|
||||
msgstr "ראה שדות"
|
||||
|
||||
#. js-lingui-id: vn4aKq
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
|
||||
msgid "See records"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: irbH/8
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
msgid "See Records on All Objects"
|
||||
@@ -14042,11 +14055,10 @@ msgstr ""
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/forms/components/SettingsAIAgentForm.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "System Prompt"
|
||||
msgstr "הנחיית מערכת"
|
||||
|
||||
@@ -15672,11 +15684,6 @@ msgstr ""
|
||||
msgid "View all evaluations"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 3JjgWt
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
msgid "View and customize AI instructions"
|
||||
msgstr "הצג והתאם אישית הנחיות AI"
|
||||
|
||||
#. js-lingui-id: XVf/G7
|
||||
#: src/pages/settings/security/SettingsSecurity.tsx
|
||||
msgid "View and filter events, page views, object changes"
|
||||
@@ -15782,11 +15789,6 @@ msgstr ""
|
||||
msgid "view sort"
|
||||
msgstr "מיון תצוגה"
|
||||
|
||||
#. js-lingui-id: FNDoRH
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
msgid "View the AI system prompt and add custom instructions"
|
||||
msgstr "הצג את הנחיית המערכת של ה-AI והוסף הנחיות מותאמות אישית"
|
||||
|
||||
#. js-lingui-id: bJAIqT
|
||||
#: src/modules/views/view-picker/components/ViewPickerContentCreateMode.tsx
|
||||
msgid "View type"
|
||||
@@ -16219,8 +16221,8 @@ msgid "Workspace Info"
|
||||
msgstr "מידע על סביבת העבודה"
|
||||
|
||||
#. js-lingui-id: BYrMT0
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Workspace Instructions"
|
||||
msgstr "הנחיות סביבת עבודה"
|
||||
|
||||
|
||||
@@ -671,9 +671,9 @@ msgstr "Hozzáférési kulcsazonosító"
|
||||
msgid "Access workspace data"
|
||||
msgstr "Hozzáférés a munkaterület adataihoz"
|
||||
|
||||
#. js-lingui-id: W5nhmk
|
||||
#. js-lingui-id: c2UA7k
|
||||
#: src/pages/settings/ai/components/SettingsAIMCP.tsx
|
||||
msgid "Access your workspace data from your favorite MCP client like Claude Desktop, Claude Code, Cursor, or ChatGPT. Once connected, try: \"Show me the 5 most recently created companies\" or \"Create a new person named Jane Doe\"."
|
||||
msgid "Access your workspace data from your favorite MCP client like Claude Desktop, Windsurf or Cursor."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: u2Cycw
|
||||
@@ -899,7 +899,7 @@ msgid "Add custom endpoints, private gateways, or additional regions."
|
||||
msgstr "Adjon hozzá egyéni végpontokat, privát átjárókat vagy további régiókat."
|
||||
|
||||
#. js-lingui-id: GuJvBr
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Add custom instructions specific to your workspace (appended to system prompt)"
|
||||
msgstr "Adjon hozzá a munkaterületére jellemző egyéni utasításokat (a rendszerprompthoz hozzáfűzve)"
|
||||
|
||||
@@ -1176,11 +1176,6 @@ msgstr "Hozzáadva {beautifyPastDateRelative}"
|
||||
msgid "Added to blocklist"
|
||||
msgstr "Hozzáadva a tiltólistához"
|
||||
|
||||
#. js-lingui-id: y5mJau
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Additional Instructions"
|
||||
msgstr "További utasítások"
|
||||
|
||||
#. js-lingui-id: hW/fMg
|
||||
#: src/modules/ui/field/input/components/AddressInput.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/constants/DefaultSelectionAddressWithMessages.ts
|
||||
@@ -2279,11 +2274,6 @@ msgstr "Hitelesítés"
|
||||
msgid "Authentication failed"
|
||||
msgstr "Hitelesítés sikertelen"
|
||||
|
||||
#. js-lingui-id: TxT0ER
|
||||
#: src/pages/settings/ai/components/SettingsAIMCP.tsx
|
||||
msgid "Authentication method"
|
||||
msgstr "Hitelesítési mód"
|
||||
|
||||
#. js-lingui-id: H7qgYQ
|
||||
#: src/pages/settings/SettingsTwoFactorAuthenticationMethod.tsx
|
||||
msgid "Authenticator app"
|
||||
@@ -3292,7 +3282,6 @@ msgid "Configuration"
|
||||
msgstr "Konfiguráció"
|
||||
|
||||
#. js-lingui-id: iAL9tI
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
|
||||
msgid "Configure"
|
||||
msgstr "Konfigurálás"
|
||||
@@ -5219,7 +5208,7 @@ msgid "e.g. OpenAI EU"
|
||||
msgstr "pl. OpenAI EU"
|
||||
|
||||
#. js-lingui-id: p5P8NB
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "E.g., \"We are a B2B SaaS company. Always use formal language...\""
|
||||
msgstr "Például: \"B2B SaaS vállalat vagyunk. Mindig használjon formális nyelvezetet...\""
|
||||
|
||||
@@ -6622,7 +6611,7 @@ msgid "Failed to save role permissions: {errorMessage}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 9ryUyP
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Failed to save workspace instructions"
|
||||
msgstr "Nem sikerült menteni a munkaterületre vonatkozó utasításokat"
|
||||
|
||||
@@ -10470,11 +10459,6 @@ msgstr "OAuth"
|
||||
msgid "OAuth Credentials"
|
||||
msgstr "OAuth hitelesítő adatok"
|
||||
|
||||
#. js-lingui-id: LNLTJB
|
||||
#: src/pages/settings/ai/components/SettingsAIMCP.tsx
|
||||
msgid "OAuth or API Key"
|
||||
msgstr "OAuth vagy API-kulcs"
|
||||
|
||||
#. js-lingui-id: pNEViR
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
@@ -10708,6 +10692,7 @@ msgid "Only the timestamp & participants will be shared with your team."
|
||||
msgstr "Csak az időbélyeg és résztvevők lesznek megosztva a csapatával."
|
||||
|
||||
#. js-lingui-id: 1TNIig
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
#: src/modules/command-menu-item/components/RecordShowSidePanelOpenRecordButton.tsx
|
||||
msgid "Open"
|
||||
@@ -11656,6 +11641,22 @@ msgstr "Változási napló megtekintése"
|
||||
msgid "Read documentation"
|
||||
msgstr "Dokumentáció olvasása"
|
||||
|
||||
#. js-lingui-id: U26cMX
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Read system prompts"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: EKsFda
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Read the system prompts to understand how the AI works"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 0URVx8
|
||||
#. placeholder {0}: formatNumber( systemPromptTokenCount, { abbreviate: true, decimals: 1, }, )
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Read the system prompts to understand how the AI works (~{0} tokens)"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: afMuDE
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
msgid "Read your profile"
|
||||
@@ -11708,6 +11709,7 @@ msgstr "rekord"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/navigation-menu-item/display/object/components/NavigationDrawerItemForObjectMetadataItem.tsx
|
||||
msgid "Record"
|
||||
msgstr "Rekord"
|
||||
|
||||
@@ -12820,6 +12822,11 @@ msgstr "Aktív verzió megtekintése"
|
||||
msgid "See all {relationLabelPlural} linked to this record"
|
||||
msgstr "Az ehhez a rekordhoz kapcsolódó összes {relationLabelPlural} megtekintése"
|
||||
|
||||
#. js-lingui-id: sFsCOG
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
msgid "See data model settings"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: f4Lu+X
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "See deleted dashboards"
|
||||
@@ -12850,6 +12857,12 @@ msgstr "Törölt munkafolyamatok megtekintése"
|
||||
msgid "See Fields"
|
||||
msgstr "Mezők megtekintése"
|
||||
|
||||
#. js-lingui-id: vn4aKq
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
|
||||
msgid "See records"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: irbH/8
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
msgid "See Records on All Objects"
|
||||
@@ -14042,11 +14055,10 @@ msgstr ""
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/forms/components/SettingsAIAgentForm.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "System Prompt"
|
||||
msgstr "Rendszer parancs"
|
||||
|
||||
@@ -15672,11 +15684,6 @@ msgstr ""
|
||||
msgid "View all evaluations"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 3JjgWt
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
msgid "View and customize AI instructions"
|
||||
msgstr "AI-utasítások megtekintése és testreszabása"
|
||||
|
||||
#. js-lingui-id: XVf/G7
|
||||
#: src/pages/settings/security/SettingsSecurity.tsx
|
||||
msgid "View and filter events, page views, object changes"
|
||||
@@ -15782,11 +15789,6 @@ msgstr ""
|
||||
msgid "view sort"
|
||||
msgstr "rendezés megtekintése"
|
||||
|
||||
#. js-lingui-id: FNDoRH
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
msgid "View the AI system prompt and add custom instructions"
|
||||
msgstr "Tekintse meg az AI rendszerpromptot, és adjon hozzá egyéni utasításokat"
|
||||
|
||||
#. js-lingui-id: bJAIqT
|
||||
#: src/modules/views/view-picker/components/ViewPickerContentCreateMode.tsx
|
||||
msgid "View type"
|
||||
@@ -16219,8 +16221,8 @@ msgid "Workspace Info"
|
||||
msgstr "Munkaterület információ"
|
||||
|
||||
#. js-lingui-id: BYrMT0
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Workspace Instructions"
|
||||
msgstr "Munkaterületre vonatkozó utasítások"
|
||||
|
||||
|
||||
@@ -671,10 +671,10 @@ msgstr "ID chiave di accesso"
|
||||
msgid "Access workspace data"
|
||||
msgstr "Accedere ai dati dello spazio di lavoro"
|
||||
|
||||
#. js-lingui-id: W5nhmk
|
||||
#. js-lingui-id: c2UA7k
|
||||
#: src/pages/settings/ai/components/SettingsAIMCP.tsx
|
||||
msgid "Access your workspace data from your favorite MCP client like Claude Desktop, Claude Code, Cursor, or ChatGPT. Once connected, try: \"Show me the 5 most recently created companies\" or \"Create a new person named Jane Doe\"."
|
||||
msgstr "Accedi ai dati del tuo spazio di lavoro dal tuo client MCP preferito, come Claude Desktop, Claude Code, Cursor o ChatGPT. Una volta connesso, prova: \"Mostrami le 5 aziende create più di recente\" oppure \"Crea una nuova persona di nome Jane Doe\"."
|
||||
msgid "Access your workspace data from your favorite MCP client like Claude Desktop, Windsurf or Cursor."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: u2Cycw
|
||||
#: src/modules/settings/logic-functions/components/SettingsLogicFunctionTabEnvironmentVariablesSection.tsx
|
||||
@@ -899,7 +899,7 @@ msgid "Add custom endpoints, private gateways, or additional regions."
|
||||
msgstr "Aggiungi endpoint personalizzati, gateway privati o regioni aggiuntive."
|
||||
|
||||
#. js-lingui-id: GuJvBr
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Add custom instructions specific to your workspace (appended to system prompt)"
|
||||
msgstr "Aggiungi istruzioni personalizzate specifiche per il tuo spazio di lavoro (aggiunte al prompt di sistema)"
|
||||
|
||||
@@ -1176,11 +1176,6 @@ msgstr "Aggiunto {beautifyPastDateRelative}"
|
||||
msgid "Added to blocklist"
|
||||
msgstr "Aggiunto alla lista di blocco"
|
||||
|
||||
#. js-lingui-id: y5mJau
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Additional Instructions"
|
||||
msgstr "Istruzioni aggiuntive"
|
||||
|
||||
#. js-lingui-id: hW/fMg
|
||||
#: src/modules/ui/field/input/components/AddressInput.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/constants/DefaultSelectionAddressWithMessages.ts
|
||||
@@ -2279,11 +2274,6 @@ msgstr "Autenticazione"
|
||||
msgid "Authentication failed"
|
||||
msgstr "Autenticazione fallita"
|
||||
|
||||
#. js-lingui-id: TxT0ER
|
||||
#: src/pages/settings/ai/components/SettingsAIMCP.tsx
|
||||
msgid "Authentication method"
|
||||
msgstr "Metodo di autenticazione"
|
||||
|
||||
#. js-lingui-id: H7qgYQ
|
||||
#: src/pages/settings/SettingsTwoFactorAuthenticationMethod.tsx
|
||||
msgid "Authenticator app"
|
||||
@@ -3292,7 +3282,6 @@ msgid "Configuration"
|
||||
msgstr "Configurazione"
|
||||
|
||||
#. js-lingui-id: iAL9tI
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
|
||||
msgid "Configure"
|
||||
msgstr "Configura"
|
||||
@@ -5219,7 +5208,7 @@ msgid "e.g. OpenAI EU"
|
||||
msgstr "ad es. OpenAI EU"
|
||||
|
||||
#. js-lingui-id: p5P8NB
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "E.g., \"We are a B2B SaaS company. Always use formal language...\""
|
||||
msgstr "Ad es., \"Siamo un'azienda SaaS B2B. Usa sempre un linguaggio formale...\""
|
||||
|
||||
@@ -6622,7 +6611,7 @@ msgid "Failed to save role permissions: {errorMessage}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 9ryUyP
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Failed to save workspace instructions"
|
||||
msgstr "Impossibile salvare le istruzioni dello spazio di lavoro"
|
||||
|
||||
@@ -10470,11 +10459,6 @@ msgstr "OAuth"
|
||||
msgid "OAuth Credentials"
|
||||
msgstr "Credenziali OAuth"
|
||||
|
||||
#. js-lingui-id: LNLTJB
|
||||
#: src/pages/settings/ai/components/SettingsAIMCP.tsx
|
||||
msgid "OAuth or API Key"
|
||||
msgstr "OAuth o chiave API"
|
||||
|
||||
#. js-lingui-id: pNEViR
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
@@ -10708,6 +10692,7 @@ msgid "Only the timestamp & participants will be shared with your team."
|
||||
msgstr "Solo il timestamp e i partecipanti verranno condivisi con il tuo team."
|
||||
|
||||
#. js-lingui-id: 1TNIig
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
#: src/modules/command-menu-item/components/RecordShowSidePanelOpenRecordButton.tsx
|
||||
msgid "Open"
|
||||
@@ -11656,6 +11641,22 @@ msgstr "Leggi il changelog"
|
||||
msgid "Read documentation"
|
||||
msgstr "Leggi la documentazione"
|
||||
|
||||
#. js-lingui-id: U26cMX
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Read system prompts"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: EKsFda
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Read the system prompts to understand how the AI works"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 0URVx8
|
||||
#. placeholder {0}: formatNumber( systemPromptTokenCount, { abbreviate: true, decimals: 1, }, )
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Read the system prompts to understand how the AI works (~{0} tokens)"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: afMuDE
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
msgid "Read your profile"
|
||||
@@ -11708,6 +11709,7 @@ msgstr "record"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/navigation-menu-item/display/object/components/NavigationDrawerItemForObjectMetadataItem.tsx
|
||||
msgid "Record"
|
||||
msgstr "Registro"
|
||||
|
||||
@@ -12820,6 +12822,11 @@ msgstr "Vedi versione attiva"
|
||||
msgid "See all {relationLabelPlural} linked to this record"
|
||||
msgstr "Visualizza tutti i {relationLabelPlural} collegati a questo record"
|
||||
|
||||
#. js-lingui-id: sFsCOG
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
msgid "See data model settings"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: f4Lu+X
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "See deleted dashboards"
|
||||
@@ -12850,6 +12857,12 @@ msgstr "Vedi workflow eliminati"
|
||||
msgid "See Fields"
|
||||
msgstr "Vedi Campi"
|
||||
|
||||
#. js-lingui-id: vn4aKq
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
|
||||
msgid "See records"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: irbH/8
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
msgid "See Records on All Objects"
|
||||
@@ -14042,11 +14055,10 @@ msgstr ""
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/forms/components/SettingsAIAgentForm.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "System Prompt"
|
||||
msgstr "Prompt di Sistema"
|
||||
|
||||
@@ -15674,11 +15686,6 @@ msgstr ""
|
||||
msgid "View all evaluations"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 3JjgWt
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
msgid "View and customize AI instructions"
|
||||
msgstr "Visualizza e personalizza le istruzioni dell'IA"
|
||||
|
||||
#. js-lingui-id: XVf/G7
|
||||
#: src/pages/settings/security/SettingsSecurity.tsx
|
||||
msgid "View and filter events, page views, object changes"
|
||||
@@ -15784,11 +15791,6 @@ msgstr ""
|
||||
msgid "view sort"
|
||||
msgstr "ordinamento vista"
|
||||
|
||||
#. js-lingui-id: FNDoRH
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
msgid "View the AI system prompt and add custom instructions"
|
||||
msgstr "Visualizza il prompt di sistema dell'IA e aggiungi istruzioni personalizzate"
|
||||
|
||||
#. js-lingui-id: bJAIqT
|
||||
#: src/modules/views/view-picker/components/ViewPickerContentCreateMode.tsx
|
||||
msgid "View type"
|
||||
@@ -16221,8 +16223,8 @@ msgid "Workspace Info"
|
||||
msgstr "Informazioni dello spazio di lavoro"
|
||||
|
||||
#. js-lingui-id: BYrMT0
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Workspace Instructions"
|
||||
msgstr "Istruzioni dello spazio di lavoro"
|
||||
|
||||
|
||||
@@ -671,10 +671,10 @@ msgstr "アクセスキー ID"
|
||||
msgid "Access workspace data"
|
||||
msgstr "ワークスペースのデータにアクセス"
|
||||
|
||||
#. js-lingui-id: W5nhmk
|
||||
#. js-lingui-id: c2UA7k
|
||||
#: src/pages/settings/ai/components/SettingsAIMCP.tsx
|
||||
msgid "Access your workspace data from your favorite MCP client like Claude Desktop, Claude Code, Cursor, or ChatGPT. Once connected, try: \"Show me the 5 most recently created companies\" or \"Create a new person named Jane Doe\"."
|
||||
msgstr "お好みの MCP クライアント(Claude Desktop、Claude Code、Cursor、または ChatGPT)からワークスペースのデータにアクセスできます。接続後、次を試してください: \"作成日が最新の会社を5件表示して\" または \"Jane Doe という名前の新しい人を作成して\"。"
|
||||
msgid "Access your workspace data from your favorite MCP client like Claude Desktop, Windsurf or Cursor."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: u2Cycw
|
||||
#: src/modules/settings/logic-functions/components/SettingsLogicFunctionTabEnvironmentVariablesSection.tsx
|
||||
@@ -899,7 +899,7 @@ msgid "Add custom endpoints, private gateways, or additional regions."
|
||||
msgstr "カスタムエンドポイント、プライベートゲートウェイ、または追加のリージョンを追加します。"
|
||||
|
||||
#. js-lingui-id: GuJvBr
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Add custom instructions specific to your workspace (appended to system prompt)"
|
||||
msgstr "ワークスペース固有のカスタム指示を追加(システムプロンプトに追記されます)"
|
||||
|
||||
@@ -1176,11 +1176,6 @@ msgstr "{beautifyPastDateRelative}に追加"
|
||||
msgid "Added to blocklist"
|
||||
msgstr "ブロックリストに追加済み"
|
||||
|
||||
#. js-lingui-id: y5mJau
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Additional Instructions"
|
||||
msgstr "追加の指示"
|
||||
|
||||
#. js-lingui-id: hW/fMg
|
||||
#: src/modules/ui/field/input/components/AddressInput.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/constants/DefaultSelectionAddressWithMessages.ts
|
||||
@@ -2279,11 +2274,6 @@ msgstr "認証"
|
||||
msgid "Authentication failed"
|
||||
msgstr "認証に失敗しました"
|
||||
|
||||
#. js-lingui-id: TxT0ER
|
||||
#: src/pages/settings/ai/components/SettingsAIMCP.tsx
|
||||
msgid "Authentication method"
|
||||
msgstr "認証方法"
|
||||
|
||||
#. js-lingui-id: H7qgYQ
|
||||
#: src/pages/settings/SettingsTwoFactorAuthenticationMethod.tsx
|
||||
msgid "Authenticator app"
|
||||
@@ -3292,7 +3282,6 @@ msgid "Configuration"
|
||||
msgstr "構成"
|
||||
|
||||
#. js-lingui-id: iAL9tI
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
|
||||
msgid "Configure"
|
||||
msgstr "設定"
|
||||
@@ -5219,7 +5208,7 @@ msgid "e.g. OpenAI EU"
|
||||
msgstr "例: OpenAI EU"
|
||||
|
||||
#. js-lingui-id: p5P8NB
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "E.g., \"We are a B2B SaaS company. Always use formal language...\""
|
||||
msgstr "例:\"当社は B2B SaaS 企業です。常にフォーマルな言葉遣いを使用してください...\""
|
||||
|
||||
@@ -6622,7 +6611,7 @@ msgid "Failed to save role permissions: {errorMessage}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 9ryUyP
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Failed to save workspace instructions"
|
||||
msgstr "ワークスペースの指示を保存できませんでした"
|
||||
|
||||
@@ -10470,11 +10459,6 @@ msgstr "OAuth"
|
||||
msgid "OAuth Credentials"
|
||||
msgstr "OAuth 認証情報"
|
||||
|
||||
#. js-lingui-id: LNLTJB
|
||||
#: src/pages/settings/ai/components/SettingsAIMCP.tsx
|
||||
msgid "OAuth or API Key"
|
||||
msgstr "OAuth または API キー"
|
||||
|
||||
#. js-lingui-id: pNEViR
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
@@ -10708,6 +10692,7 @@ msgid "Only the timestamp & participants will be shared with your team."
|
||||
msgstr "タイムスタンプと参加者だけがチームと共有されます。"
|
||||
|
||||
#. js-lingui-id: 1TNIig
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
#: src/modules/command-menu-item/components/RecordShowSidePanelOpenRecordButton.tsx
|
||||
msgid "Open"
|
||||
@@ -11656,6 +11641,22 @@ msgstr "変更履歴を確認する"
|
||||
msgid "Read documentation"
|
||||
msgstr "ドキュメントを読む"
|
||||
|
||||
#. js-lingui-id: U26cMX
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Read system prompts"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: EKsFda
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Read the system prompts to understand how the AI works"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 0URVx8
|
||||
#. placeholder {0}: formatNumber( systemPromptTokenCount, { abbreviate: true, decimals: 1, }, )
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Read the system prompts to understand how the AI works (~{0} tokens)"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: afMuDE
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
msgid "Read your profile"
|
||||
@@ -11708,6 +11709,7 @@ msgstr "レコード"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/navigation-menu-item/display/object/components/NavigationDrawerItemForObjectMetadataItem.tsx
|
||||
msgid "Record"
|
||||
msgstr "記録"
|
||||
|
||||
@@ -12820,6 +12822,11 @@ msgstr "アクティブバージョンを見る"
|
||||
msgid "See all {relationLabelPlural} linked to this record"
|
||||
msgstr "このレコードにリンクされている{relationLabelPlural}をすべて表示"
|
||||
|
||||
#. js-lingui-id: sFsCOG
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
msgid "See data model settings"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: f4Lu+X
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "See deleted dashboards"
|
||||
@@ -12850,6 +12857,12 @@ msgstr "削除されたワークフローを見る"
|
||||
msgid "See Fields"
|
||||
msgstr "フィールドを見る"
|
||||
|
||||
#. js-lingui-id: vn4aKq
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
|
||||
msgid "See records"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: irbH/8
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
msgid "See Records on All Objects"
|
||||
@@ -14042,11 +14055,10 @@ msgstr ""
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/forms/components/SettingsAIAgentForm.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "System Prompt"
|
||||
msgstr "システムプロンプト"
|
||||
|
||||
@@ -15672,11 +15684,6 @@ msgstr ""
|
||||
msgid "View all evaluations"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 3JjgWt
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
msgid "View and customize AI instructions"
|
||||
msgstr "AI の指示を表示してカスタマイズ"
|
||||
|
||||
#. js-lingui-id: XVf/G7
|
||||
#: src/pages/settings/security/SettingsSecurity.tsx
|
||||
msgid "View and filter events, page views, object changes"
|
||||
@@ -15782,11 +15789,6 @@ msgstr ""
|
||||
msgid "view sort"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: FNDoRH
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
msgid "View the AI system prompt and add custom instructions"
|
||||
msgstr "AI のシステムプロンプトを表示し、カスタム指示を追加"
|
||||
|
||||
#. js-lingui-id: bJAIqT
|
||||
#: src/modules/views/view-picker/components/ViewPickerContentCreateMode.tsx
|
||||
msgid "View type"
|
||||
@@ -16219,8 +16221,8 @@ msgid "Workspace Info"
|
||||
msgstr "ワークスペース情報"
|
||||
|
||||
#. js-lingui-id: BYrMT0
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Workspace Instructions"
|
||||
msgstr "ワークスペースの指示"
|
||||
|
||||
|
||||
@@ -671,10 +671,10 @@ msgstr "액세스 키 ID"
|
||||
msgid "Access workspace data"
|
||||
msgstr "워크스페이스 데이터에 접근"
|
||||
|
||||
#. js-lingui-id: W5nhmk
|
||||
#. js-lingui-id: c2UA7k
|
||||
#: src/pages/settings/ai/components/SettingsAIMCP.tsx
|
||||
msgid "Access your workspace data from your favorite MCP client like Claude Desktop, Claude Code, Cursor, or ChatGPT. Once connected, try: \"Show me the 5 most recently created companies\" or \"Create a new person named Jane Doe\"."
|
||||
msgstr "Claude Desktop, Claude Code, Cursor 또는 ChatGPT와 같은 선호하는 MCP 클라이언트에서 워크스페이스 데이터에 액세스하세요. 연결되면 다음을 시도해 보세요: \"가장 최근에 생성된 회사 5개를 보여 주세요\" 또는 \"Jane Doe라는 이름의 새 개인을 생성해 주세요\"."
|
||||
msgid "Access your workspace data from your favorite MCP client like Claude Desktop, Windsurf or Cursor."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: u2Cycw
|
||||
#: src/modules/settings/logic-functions/components/SettingsLogicFunctionTabEnvironmentVariablesSection.tsx
|
||||
@@ -899,7 +899,7 @@ msgid "Add custom endpoints, private gateways, or additional regions."
|
||||
msgstr "사용자 지정 엔드포인트, 프라이빗 게이트웨이 또는 추가 리전을 추가하세요."
|
||||
|
||||
#. js-lingui-id: GuJvBr
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Add custom instructions specific to your workspace (appended to system prompt)"
|
||||
msgstr "워크스페이스에 특화된 맞춤 지침을 추가하세요 (시스템 프롬프트에 추가됨)"
|
||||
|
||||
@@ -1176,11 +1176,6 @@ msgstr "{beautifyPastDateRelative} 추가"
|
||||
msgid "Added to blocklist"
|
||||
msgstr "차단 목록에 추가됨"
|
||||
|
||||
#. js-lingui-id: y5mJau
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Additional Instructions"
|
||||
msgstr "추가 지침"
|
||||
|
||||
#. js-lingui-id: hW/fMg
|
||||
#: src/modules/ui/field/input/components/AddressInput.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/constants/DefaultSelectionAddressWithMessages.ts
|
||||
@@ -2279,11 +2274,6 @@ msgstr "인증"
|
||||
msgid "Authentication failed"
|
||||
msgstr "인증 실패"
|
||||
|
||||
#. js-lingui-id: TxT0ER
|
||||
#: src/pages/settings/ai/components/SettingsAIMCP.tsx
|
||||
msgid "Authentication method"
|
||||
msgstr "인증 방법"
|
||||
|
||||
#. js-lingui-id: H7qgYQ
|
||||
#: src/pages/settings/SettingsTwoFactorAuthenticationMethod.tsx
|
||||
msgid "Authenticator app"
|
||||
@@ -3292,7 +3282,6 @@ msgid "Configuration"
|
||||
msgstr "구성"
|
||||
|
||||
#. js-lingui-id: iAL9tI
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
|
||||
msgid "Configure"
|
||||
msgstr "구성"
|
||||
@@ -5219,7 +5208,7 @@ msgid "e.g. OpenAI EU"
|
||||
msgstr "예: OpenAI EU"
|
||||
|
||||
#. js-lingui-id: p5P8NB
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "E.g., \"We are a B2B SaaS company. Always use formal language...\""
|
||||
msgstr "예: \"당사는 B2B SaaS 회사입니다. 항상 격식을 갖춘 언어를 사용하세요...\""
|
||||
|
||||
@@ -6622,7 +6611,7 @@ msgid "Failed to save role permissions: {errorMessage}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 9ryUyP
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Failed to save workspace instructions"
|
||||
msgstr "워크스페이스 지침을 저장하지 못했습니다"
|
||||
|
||||
@@ -10470,11 +10459,6 @@ msgstr "OAuth"
|
||||
msgid "OAuth Credentials"
|
||||
msgstr "OAuth 자격 증명"
|
||||
|
||||
#. js-lingui-id: LNLTJB
|
||||
#: src/pages/settings/ai/components/SettingsAIMCP.tsx
|
||||
msgid "OAuth or API Key"
|
||||
msgstr "OAuth 또는 API 키"
|
||||
|
||||
#. js-lingui-id: pNEViR
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
@@ -10708,6 +10692,7 @@ msgid "Only the timestamp & participants will be shared with your team."
|
||||
msgstr "타임스탬프 및 참가자만 팀과 공유됩니다."
|
||||
|
||||
#. js-lingui-id: 1TNIig
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
#: src/modules/command-menu-item/components/RecordShowSidePanelOpenRecordButton.tsx
|
||||
msgid "Open"
|
||||
@@ -11656,6 +11641,22 @@ msgstr "변경 로그 보기"
|
||||
msgid "Read documentation"
|
||||
msgstr "문서 읽기"
|
||||
|
||||
#. js-lingui-id: U26cMX
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Read system prompts"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: EKsFda
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Read the system prompts to understand how the AI works"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 0URVx8
|
||||
#. placeholder {0}: formatNumber( systemPromptTokenCount, { abbreviate: true, decimals: 1, }, )
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Read the system prompts to understand how the AI works (~{0} tokens)"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: afMuDE
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
msgid "Read your profile"
|
||||
@@ -11708,6 +11709,7 @@ msgstr "기록"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/navigation-menu-item/display/object/components/NavigationDrawerItemForObjectMetadataItem.tsx
|
||||
msgid "Record"
|
||||
msgstr "기록"
|
||||
|
||||
@@ -12820,6 +12822,11 @@ msgstr "활성 버전 보기"
|
||||
msgid "See all {relationLabelPlural} linked to this record"
|
||||
msgstr "이 레코드에 연결된 {relationLabelPlural} 모두 보기"
|
||||
|
||||
#. js-lingui-id: sFsCOG
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
msgid "See data model settings"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: f4Lu+X
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "See deleted dashboards"
|
||||
@@ -12850,6 +12857,12 @@ msgstr "삭제된 워크플로 보기"
|
||||
msgid "See Fields"
|
||||
msgstr "필드 보기"
|
||||
|
||||
#. js-lingui-id: vn4aKq
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
|
||||
msgid "See records"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: irbH/8
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
msgid "See Records on All Objects"
|
||||
@@ -14042,11 +14055,10 @@ msgstr ""
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/forms/components/SettingsAIAgentForm.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "System Prompt"
|
||||
msgstr "시스템 프롬프트"
|
||||
|
||||
@@ -15672,11 +15684,6 @@ msgstr ""
|
||||
msgid "View all evaluations"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 3JjgWt
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
msgid "View and customize AI instructions"
|
||||
msgstr "AI 지침 보기 및 사용자 지정"
|
||||
|
||||
#. js-lingui-id: XVf/G7
|
||||
#: src/pages/settings/security/SettingsSecurity.tsx
|
||||
msgid "View and filter events, page views, object changes"
|
||||
@@ -15782,11 +15789,6 @@ msgstr ""
|
||||
msgid "view sort"
|
||||
msgstr "보기 정렬"
|
||||
|
||||
#. js-lingui-id: FNDoRH
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
msgid "View the AI system prompt and add custom instructions"
|
||||
msgstr "AI 시스템 프롬프트를 보고 맞춤 지침을 추가하세요"
|
||||
|
||||
#. js-lingui-id: bJAIqT
|
||||
#: src/modules/views/view-picker/components/ViewPickerContentCreateMode.tsx
|
||||
msgid "View type"
|
||||
@@ -16219,8 +16221,8 @@ msgid "Workspace Info"
|
||||
msgstr "워크스페이스 정보"
|
||||
|
||||
#. js-lingui-id: BYrMT0
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Workspace Instructions"
|
||||
msgstr "워크스페이스 지침"
|
||||
|
||||
|
||||
@@ -671,10 +671,10 @@ msgstr "Toegangssleutel-ID"
|
||||
msgid "Access workspace data"
|
||||
msgstr "Toegang tot werkruimtegegevens"
|
||||
|
||||
#. js-lingui-id: W5nhmk
|
||||
#. js-lingui-id: c2UA7k
|
||||
#: src/pages/settings/ai/components/SettingsAIMCP.tsx
|
||||
msgid "Access your workspace data from your favorite MCP client like Claude Desktop, Claude Code, Cursor, or ChatGPT. Once connected, try: \"Show me the 5 most recently created companies\" or \"Create a new person named Jane Doe\"."
|
||||
msgstr "Krijg toegang tot je werkruimtegegevens via je favoriete MCP-client, zoals Claude Desktop, Claude Code, Cursor of ChatGPT. Zodra je verbinding hebt gemaakt, probeer dan: \"Toon mij de 5 meest recent aangemaakte bedrijven\" of \"Maak een nieuwe persoon met de naam Jane Doe\"."
|
||||
msgid "Access your workspace data from your favorite MCP client like Claude Desktop, Windsurf or Cursor."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: u2Cycw
|
||||
#: src/modules/settings/logic-functions/components/SettingsLogicFunctionTabEnvironmentVariablesSection.tsx
|
||||
@@ -899,7 +899,7 @@ msgid "Add custom endpoints, private gateways, or additional regions."
|
||||
msgstr "Voeg aangepaste eindpunten, privé-gateways of extra regio's toe."
|
||||
|
||||
#. js-lingui-id: GuJvBr
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Add custom instructions specific to your workspace (appended to system prompt)"
|
||||
msgstr "Voeg aangepaste instructies toe die specifiek zijn voor je werkruimte (toegevoegd aan de systeemprompt)"
|
||||
|
||||
@@ -1176,11 +1176,6 @@ msgstr "Toegevoegd {beautifyPastDateRelative}"
|
||||
msgid "Added to blocklist"
|
||||
msgstr "Toegevoegd aan blokkeerlijst"
|
||||
|
||||
#. js-lingui-id: y5mJau
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Additional Instructions"
|
||||
msgstr "Aanvullende instructies"
|
||||
|
||||
#. js-lingui-id: hW/fMg
|
||||
#: src/modules/ui/field/input/components/AddressInput.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/constants/DefaultSelectionAddressWithMessages.ts
|
||||
@@ -2279,11 +2274,6 @@ msgstr "Authenticatie"
|
||||
msgid "Authentication failed"
|
||||
msgstr "Authenticatie mislukt"
|
||||
|
||||
#. js-lingui-id: TxT0ER
|
||||
#: src/pages/settings/ai/components/SettingsAIMCP.tsx
|
||||
msgid "Authentication method"
|
||||
msgstr "Authenticatiemethode"
|
||||
|
||||
#. js-lingui-id: H7qgYQ
|
||||
#: src/pages/settings/SettingsTwoFactorAuthenticationMethod.tsx
|
||||
msgid "Authenticator app"
|
||||
@@ -3292,7 +3282,6 @@ msgid "Configuration"
|
||||
msgstr "Configuratie"
|
||||
|
||||
#. js-lingui-id: iAL9tI
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
|
||||
msgid "Configure"
|
||||
msgstr "Configureren"
|
||||
@@ -5219,7 +5208,7 @@ msgid "e.g. OpenAI EU"
|
||||
msgstr "bijv. OpenAI EU"
|
||||
|
||||
#. js-lingui-id: p5P8NB
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "E.g., \"We are a B2B SaaS company. Always use formal language...\""
|
||||
msgstr "Bijv.: \"Wij zijn een B2B SaaS-bedrijf. Gebruik altijd formele taal...\""
|
||||
|
||||
@@ -6622,7 +6611,7 @@ msgid "Failed to save role permissions: {errorMessage}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 9ryUyP
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Failed to save workspace instructions"
|
||||
msgstr "Het opslaan van werkruimte-instructies is mislukt"
|
||||
|
||||
@@ -10470,11 +10459,6 @@ msgstr "OAuth"
|
||||
msgid "OAuth Credentials"
|
||||
msgstr "OAuth-referenties"
|
||||
|
||||
#. js-lingui-id: LNLTJB
|
||||
#: src/pages/settings/ai/components/SettingsAIMCP.tsx
|
||||
msgid "OAuth or API Key"
|
||||
msgstr "OAuth of API-sleutel"
|
||||
|
||||
#. js-lingui-id: pNEViR
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
@@ -10708,6 +10692,7 @@ msgid "Only the timestamp & participants will be shared with your team."
|
||||
msgstr "Alleen de tijdstempel & deelnemers worden gedeeld met uw team."
|
||||
|
||||
#. js-lingui-id: 1TNIig
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
#: src/modules/command-menu-item/components/RecordShowSidePanelOpenRecordButton.tsx
|
||||
msgid "Open"
|
||||
@@ -11656,6 +11641,22 @@ msgstr "Lees de changelog"
|
||||
msgid "Read documentation"
|
||||
msgstr "Lees documentatie"
|
||||
|
||||
#. js-lingui-id: U26cMX
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Read system prompts"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: EKsFda
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Read the system prompts to understand how the AI works"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 0URVx8
|
||||
#. placeholder {0}: formatNumber( systemPromptTokenCount, { abbreviate: true, decimals: 1, }, )
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Read the system prompts to understand how the AI works (~{0} tokens)"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: afMuDE
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
msgid "Read your profile"
|
||||
@@ -11708,6 +11709,7 @@ msgstr "record"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/navigation-menu-item/display/object/components/NavigationDrawerItemForObjectMetadataItem.tsx
|
||||
msgid "Record"
|
||||
msgstr "Record"
|
||||
|
||||
@@ -12820,6 +12822,11 @@ msgstr "Bekijk actieve versie"
|
||||
msgid "See all {relationLabelPlural} linked to this record"
|
||||
msgstr "Alle {relationLabelPlural} weergeven die aan dit record zijn gekoppeld"
|
||||
|
||||
#. js-lingui-id: sFsCOG
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
msgid "See data model settings"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: f4Lu+X
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "See deleted dashboards"
|
||||
@@ -12850,6 +12857,12 @@ msgstr "Bekijk verwijderde workflows"
|
||||
msgid "See Fields"
|
||||
msgstr "Zie Velden"
|
||||
|
||||
#. js-lingui-id: vn4aKq
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
|
||||
msgid "See records"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: irbH/8
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
msgid "See Records on All Objects"
|
||||
@@ -14042,11 +14055,10 @@ msgstr ""
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/forms/components/SettingsAIAgentForm.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "System Prompt"
|
||||
msgstr "Systeemopdracht"
|
||||
|
||||
@@ -15674,11 +15686,6 @@ msgstr ""
|
||||
msgid "View all evaluations"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 3JjgWt
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
msgid "View and customize AI instructions"
|
||||
msgstr "AI-instructies bekijken en aanpassen"
|
||||
|
||||
#. js-lingui-id: XVf/G7
|
||||
#: src/pages/settings/security/SettingsSecurity.tsx
|
||||
msgid "View and filter events, page views, object changes"
|
||||
@@ -15784,11 +15791,6 @@ msgstr ""
|
||||
msgid "view sort"
|
||||
msgstr "weergavesortering"
|
||||
|
||||
#. js-lingui-id: FNDoRH
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
msgid "View the AI system prompt and add custom instructions"
|
||||
msgstr "De AI-systeemprompt bekijken en aangepaste instructies toevoegen"
|
||||
|
||||
#. js-lingui-id: bJAIqT
|
||||
#: src/modules/views/view-picker/components/ViewPickerContentCreateMode.tsx
|
||||
msgid "View type"
|
||||
@@ -16221,8 +16223,8 @@ msgid "Workspace Info"
|
||||
msgstr "Werkruimte Info"
|
||||
|
||||
#. js-lingui-id: BYrMT0
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Workspace Instructions"
|
||||
msgstr "Werkruimte-instructies"
|
||||
|
||||
|
||||
@@ -671,9 +671,9 @@ msgstr "Access Key ID"
|
||||
msgid "Access workspace data"
|
||||
msgstr "Tilgang til data i arbeidsområdet"
|
||||
|
||||
#. js-lingui-id: W5nhmk
|
||||
#. js-lingui-id: c2UA7k
|
||||
#: src/pages/settings/ai/components/SettingsAIMCP.tsx
|
||||
msgid "Access your workspace data from your favorite MCP client like Claude Desktop, Claude Code, Cursor, or ChatGPT. Once connected, try: \"Show me the 5 most recently created companies\" or \"Create a new person named Jane Doe\"."
|
||||
msgid "Access your workspace data from your favorite MCP client like Claude Desktop, Windsurf or Cursor."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: u2Cycw
|
||||
@@ -899,7 +899,7 @@ msgid "Add custom endpoints, private gateways, or additional regions."
|
||||
msgstr "Legg til egendefinerte endepunkter, private gateways eller ekstra regioner."
|
||||
|
||||
#. js-lingui-id: GuJvBr
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Add custom instructions specific to your workspace (appended to system prompt)"
|
||||
msgstr "Legg til egendefinerte instruksjoner som er spesifikke for arbeidsområdet ditt (legges til systemprompten)"
|
||||
|
||||
@@ -1176,11 +1176,6 @@ msgstr "Lagt til {beautifyPastDateRelative}"
|
||||
msgid "Added to blocklist"
|
||||
msgstr "Lagt til i blokkeringsliste"
|
||||
|
||||
#. js-lingui-id: y5mJau
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Additional Instructions"
|
||||
msgstr "Ytterligere instruksjoner"
|
||||
|
||||
#. js-lingui-id: hW/fMg
|
||||
#: src/modules/ui/field/input/components/AddressInput.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/constants/DefaultSelectionAddressWithMessages.ts
|
||||
@@ -2279,11 +2274,6 @@ msgstr "Autentisering"
|
||||
msgid "Authentication failed"
|
||||
msgstr "Autentisering mislyktes"
|
||||
|
||||
#. js-lingui-id: TxT0ER
|
||||
#: src/pages/settings/ai/components/SettingsAIMCP.tsx
|
||||
msgid "Authentication method"
|
||||
msgstr "Autentiseringsmetode"
|
||||
|
||||
#. js-lingui-id: H7qgYQ
|
||||
#: src/pages/settings/SettingsTwoFactorAuthenticationMethod.tsx
|
||||
msgid "Authenticator app"
|
||||
@@ -3292,7 +3282,6 @@ msgid "Configuration"
|
||||
msgstr "Konfigurasjon"
|
||||
|
||||
#. js-lingui-id: iAL9tI
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
|
||||
msgid "Configure"
|
||||
msgstr "Konfigurer"
|
||||
@@ -5219,7 +5208,7 @@ msgid "e.g. OpenAI EU"
|
||||
msgstr "f.eks. OpenAI EU"
|
||||
|
||||
#. js-lingui-id: p5P8NB
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "E.g., \"We are a B2B SaaS company. Always use formal language...\""
|
||||
msgstr "F.eks. \"Vi er et B2B SaaS-selskap. Bruk alltid formelt språk...\""
|
||||
|
||||
@@ -6622,7 +6611,7 @@ msgid "Failed to save role permissions: {errorMessage}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 9ryUyP
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Failed to save workspace instructions"
|
||||
msgstr "Kunne ikke lagre instruksjoner for arbeidsområdet"
|
||||
|
||||
@@ -10470,11 +10459,6 @@ msgstr "OAuth"
|
||||
msgid "OAuth Credentials"
|
||||
msgstr "OAuth-legitimasjon"
|
||||
|
||||
#. js-lingui-id: LNLTJB
|
||||
#: src/pages/settings/ai/components/SettingsAIMCP.tsx
|
||||
msgid "OAuth or API Key"
|
||||
msgstr "OAuth eller API-nøkkel"
|
||||
|
||||
#. js-lingui-id: pNEViR
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
@@ -10708,6 +10692,7 @@ msgid "Only the timestamp & participants will be shared with your team."
|
||||
msgstr "Bare tidsstempel og deltakere vil bli delt med teamet ditt."
|
||||
|
||||
#. js-lingui-id: 1TNIig
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
#: src/modules/command-menu-item/components/RecordShowSidePanelOpenRecordButton.tsx
|
||||
msgid "Open"
|
||||
@@ -11656,6 +11641,22 @@ msgstr "Les endringsloggen"
|
||||
msgid "Read documentation"
|
||||
msgstr "Les dokumentasjonen"
|
||||
|
||||
#. js-lingui-id: U26cMX
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Read system prompts"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: EKsFda
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Read the system prompts to understand how the AI works"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 0URVx8
|
||||
#. placeholder {0}: formatNumber( systemPromptTokenCount, { abbreviate: true, decimals: 1, }, )
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Read the system prompts to understand how the AI works (~{0} tokens)"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: afMuDE
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
msgid "Read your profile"
|
||||
@@ -11708,6 +11709,7 @@ msgstr "oppføring"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/navigation-menu-item/display/object/components/NavigationDrawerItemForObjectMetadataItem.tsx
|
||||
msgid "Record"
|
||||
msgstr "Oppføring"
|
||||
|
||||
@@ -12820,6 +12822,11 @@ msgstr "Se aktiv versjon"
|
||||
msgid "See all {relationLabelPlural} linked to this record"
|
||||
msgstr "Se alle {relationLabelPlural} som er tilknyttet denne oppføringen"
|
||||
|
||||
#. js-lingui-id: sFsCOG
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
msgid "See data model settings"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: f4Lu+X
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "See deleted dashboards"
|
||||
@@ -12850,6 +12857,12 @@ msgstr "Se slettede arbeidsflyter"
|
||||
msgid "See Fields"
|
||||
msgstr "Se felter"
|
||||
|
||||
#. js-lingui-id: vn4aKq
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
|
||||
msgid "See records"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: irbH/8
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
msgid "See Records on All Objects"
|
||||
@@ -14042,11 +14055,10 @@ msgstr ""
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/forms/components/SettingsAIAgentForm.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "System Prompt"
|
||||
msgstr "Systemprompt"
|
||||
|
||||
@@ -15672,11 +15684,6 @@ msgstr ""
|
||||
msgid "View all evaluations"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 3JjgWt
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
msgid "View and customize AI instructions"
|
||||
msgstr "Vis og tilpass AI-instruksjoner"
|
||||
|
||||
#. js-lingui-id: XVf/G7
|
||||
#: src/pages/settings/security/SettingsSecurity.tsx
|
||||
msgid "View and filter events, page views, object changes"
|
||||
@@ -15782,11 +15789,6 @@ msgstr ""
|
||||
msgid "view sort"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: FNDoRH
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
msgid "View the AI system prompt and add custom instructions"
|
||||
msgstr "Vis AI-systemprompten og legg til egendefinerte instruksjoner"
|
||||
|
||||
#. js-lingui-id: bJAIqT
|
||||
#: src/modules/views/view-picker/components/ViewPickerContentCreateMode.tsx
|
||||
msgid "View type"
|
||||
@@ -16219,8 +16221,8 @@ msgid "Workspace Info"
|
||||
msgstr "Arbeidsområdeinfo"
|
||||
|
||||
#. js-lingui-id: BYrMT0
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Workspace Instructions"
|
||||
msgstr "Instruksjoner for arbeidsområdet"
|
||||
|
||||
|
||||
@@ -671,10 +671,10 @@ msgstr "ID klucza dostępu"
|
||||
msgid "Access workspace data"
|
||||
msgstr "Dostęp do danych przestrzeni roboczej"
|
||||
|
||||
#. js-lingui-id: W5nhmk
|
||||
#. js-lingui-id: c2UA7k
|
||||
#: src/pages/settings/ai/components/SettingsAIMCP.tsx
|
||||
msgid "Access your workspace data from your favorite MCP client like Claude Desktop, Claude Code, Cursor, or ChatGPT. Once connected, try: \"Show me the 5 most recently created companies\" or \"Create a new person named Jane Doe\"."
|
||||
msgstr "Uzyskaj dostęp do danych swojego obszaru roboczego z ulubionego klienta MCP, takiego jak Claude Desktop, Claude Code, Cursor lub ChatGPT. Po połączeniu spróbuj: \"Pokaż mi 5 ostatnio utworzonych firm\" lub \"Utwórz nową osobę o imieniu Jane Doe\"."
|
||||
msgid "Access your workspace data from your favorite MCP client like Claude Desktop, Windsurf or Cursor."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: u2Cycw
|
||||
#: src/modules/settings/logic-functions/components/SettingsLogicFunctionTabEnvironmentVariablesSection.tsx
|
||||
@@ -899,7 +899,7 @@ msgid "Add custom endpoints, private gateways, or additional regions."
|
||||
msgstr "Dodaj niestandardowe punkty końcowe, prywatne bramy lub dodatkowe regiony."
|
||||
|
||||
#. js-lingui-id: GuJvBr
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Add custom instructions specific to your workspace (appended to system prompt)"
|
||||
msgstr "Dodaj niestandardowe instrukcje specyficzne dla Twojego obszaru roboczego (dołączane do podpowiedzi systemowej)"
|
||||
|
||||
@@ -1176,11 +1176,6 @@ msgstr "Dodano {beautifyPastDateRelative}"
|
||||
msgid "Added to blocklist"
|
||||
msgstr "Dodano do listy blokowanych"
|
||||
|
||||
#. js-lingui-id: y5mJau
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Additional Instructions"
|
||||
msgstr "Dodatkowe instrukcje"
|
||||
|
||||
#. js-lingui-id: hW/fMg
|
||||
#: src/modules/ui/field/input/components/AddressInput.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/constants/DefaultSelectionAddressWithMessages.ts
|
||||
@@ -2279,11 +2274,6 @@ msgstr "Uwierzytelnianie"
|
||||
msgid "Authentication failed"
|
||||
msgstr "Uwierzytelnianie nie powiodło się"
|
||||
|
||||
#. js-lingui-id: TxT0ER
|
||||
#: src/pages/settings/ai/components/SettingsAIMCP.tsx
|
||||
msgid "Authentication method"
|
||||
msgstr "Metoda uwierzytelniania"
|
||||
|
||||
#. js-lingui-id: H7qgYQ
|
||||
#: src/pages/settings/SettingsTwoFactorAuthenticationMethod.tsx
|
||||
msgid "Authenticator app"
|
||||
@@ -3292,7 +3282,6 @@ msgid "Configuration"
|
||||
msgstr "Konfiguracja"
|
||||
|
||||
#. js-lingui-id: iAL9tI
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
|
||||
msgid "Configure"
|
||||
msgstr "Skonfiguruj"
|
||||
@@ -5219,7 +5208,7 @@ msgid "e.g. OpenAI EU"
|
||||
msgstr "np. OpenAI EU"
|
||||
|
||||
#. js-lingui-id: p5P8NB
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "E.g., \"We are a B2B SaaS company. Always use formal language...\""
|
||||
msgstr "Np.: \"Jesteśmy firmą B2B SaaS. Zawsze używaj języka formalnego...\""
|
||||
|
||||
@@ -6622,7 +6611,7 @@ msgid "Failed to save role permissions: {errorMessage}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 9ryUyP
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Failed to save workspace instructions"
|
||||
msgstr "Nie udało się zapisać instrukcji dla obszaru roboczego"
|
||||
|
||||
@@ -10470,11 +10459,6 @@ msgstr "OAuth"
|
||||
msgid "OAuth Credentials"
|
||||
msgstr "Dane uwierzytelniające OAuth"
|
||||
|
||||
#. js-lingui-id: LNLTJB
|
||||
#: src/pages/settings/ai/components/SettingsAIMCP.tsx
|
||||
msgid "OAuth or API Key"
|
||||
msgstr "OAuth lub klucz API"
|
||||
|
||||
#. js-lingui-id: pNEViR
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
@@ -10708,6 +10692,7 @@ msgid "Only the timestamp & participants will be shared with your team."
|
||||
msgstr "Tylko znacznik czasu i uczestnicy zostaną udostępnieni twojemu zespołowi."
|
||||
|
||||
#. js-lingui-id: 1TNIig
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
#: src/modules/command-menu-item/components/RecordShowSidePanelOpenRecordButton.tsx
|
||||
msgid "Open"
|
||||
@@ -11656,6 +11641,22 @@ msgstr "Przeczytaj listę zmian"
|
||||
msgid "Read documentation"
|
||||
msgstr "Przeczytaj dokumentację"
|
||||
|
||||
#. js-lingui-id: U26cMX
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Read system prompts"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: EKsFda
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Read the system prompts to understand how the AI works"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 0URVx8
|
||||
#. placeholder {0}: formatNumber( systemPromptTokenCount, { abbreviate: true, decimals: 1, }, )
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Read the system prompts to understand how the AI works (~{0} tokens)"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: afMuDE
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
msgid "Read your profile"
|
||||
@@ -11708,6 +11709,7 @@ msgstr "rekord"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/navigation-menu-item/display/object/components/NavigationDrawerItemForObjectMetadataItem.tsx
|
||||
msgid "Record"
|
||||
msgstr "Rekord"
|
||||
|
||||
@@ -12820,6 +12822,11 @@ msgstr "Zobacz aktywną wersję"
|
||||
msgid "See all {relationLabelPlural} linked to this record"
|
||||
msgstr "Zobacz wszystkie {relationLabelPlural} dotyczące tego rekordu"
|
||||
|
||||
#. js-lingui-id: sFsCOG
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
msgid "See data model settings"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: f4Lu+X
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "See deleted dashboards"
|
||||
@@ -12850,6 +12857,12 @@ msgstr "Zobacz usunięte przepływy pracy"
|
||||
msgid "See Fields"
|
||||
msgstr "Pola widoku"
|
||||
|
||||
#. js-lingui-id: vn4aKq
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
|
||||
msgid "See records"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: irbH/8
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
msgid "See Records on All Objects"
|
||||
@@ -14042,11 +14055,10 @@ msgstr ""
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/forms/components/SettingsAIAgentForm.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "System Prompt"
|
||||
msgstr "Polecenie Systemowe"
|
||||
|
||||
@@ -15672,11 +15684,6 @@ msgstr ""
|
||||
msgid "View all evaluations"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 3JjgWt
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
msgid "View and customize AI instructions"
|
||||
msgstr "Wyświetl i dostosuj instrukcje AI"
|
||||
|
||||
#. js-lingui-id: XVf/G7
|
||||
#: src/pages/settings/security/SettingsSecurity.tsx
|
||||
msgid "View and filter events, page views, object changes"
|
||||
@@ -15782,11 +15789,6 @@ msgstr ""
|
||||
msgid "view sort"
|
||||
msgstr "sortowanie widoku"
|
||||
|
||||
#. js-lingui-id: FNDoRH
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
msgid "View the AI system prompt and add custom instructions"
|
||||
msgstr "Wyświetl podpowiedź systemową AI i dodaj niestandardowe instrukcje"
|
||||
|
||||
#. js-lingui-id: bJAIqT
|
||||
#: src/modules/views/view-picker/components/ViewPickerContentCreateMode.tsx
|
||||
msgid "View type"
|
||||
@@ -16219,8 +16221,8 @@ msgid "Workspace Info"
|
||||
msgstr "Informacje o przestrzeni roboczej"
|
||||
|
||||
#. js-lingui-id: BYrMT0
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Workspace Instructions"
|
||||
msgstr "Instrukcje obszaru roboczego"
|
||||
|
||||
|
||||
@@ -666,9 +666,9 @@ msgstr ""
|
||||
msgid "Access workspace data"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: W5nhmk
|
||||
#. js-lingui-id: c2UA7k
|
||||
#: src/pages/settings/ai/components/SettingsAIMCP.tsx
|
||||
msgid "Access your workspace data from your favorite MCP client like Claude Desktop, Claude Code, Cursor, or ChatGPT. Once connected, try: \"Show me the 5 most recently created companies\" or \"Create a new person named Jane Doe\"."
|
||||
msgid "Access your workspace data from your favorite MCP client like Claude Desktop, Windsurf or Cursor."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: u2Cycw
|
||||
@@ -894,7 +894,7 @@ msgid "Add custom endpoints, private gateways, or additional regions."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: GuJvBr
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Add custom instructions specific to your workspace (appended to system prompt)"
|
||||
msgstr ""
|
||||
|
||||
@@ -1171,11 +1171,6 @@ msgstr ""
|
||||
msgid "Added to blocklist"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: y5mJau
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Additional Instructions"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: hW/fMg
|
||||
#: src/modules/ui/field/input/components/AddressInput.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/constants/DefaultSelectionAddressWithMessages.ts
|
||||
@@ -2274,11 +2269,6 @@ msgstr ""
|
||||
msgid "Authentication failed"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: TxT0ER
|
||||
#: src/pages/settings/ai/components/SettingsAIMCP.tsx
|
||||
msgid "Authentication method"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: H7qgYQ
|
||||
#: src/pages/settings/SettingsTwoFactorAuthenticationMethod.tsx
|
||||
msgid "Authenticator app"
|
||||
@@ -3287,7 +3277,6 @@ msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: iAL9tI
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
|
||||
msgid "Configure"
|
||||
msgstr ""
|
||||
@@ -5214,7 +5203,7 @@ msgid "e.g. OpenAI EU"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: p5P8NB
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "E.g., \"We are a B2B SaaS company. Always use formal language...\""
|
||||
msgstr ""
|
||||
|
||||
@@ -6617,7 +6606,7 @@ msgid "Failed to save role permissions: {errorMessage}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 9ryUyP
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Failed to save workspace instructions"
|
||||
msgstr ""
|
||||
|
||||
@@ -10465,11 +10454,6 @@ msgstr ""
|
||||
msgid "OAuth Credentials"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LNLTJB
|
||||
#: src/pages/settings/ai/components/SettingsAIMCP.tsx
|
||||
msgid "OAuth or API Key"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: pNEViR
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
@@ -10703,6 +10687,7 @@ msgid "Only the timestamp & participants will be shared with your team."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1TNIig
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
#: src/modules/command-menu-item/components/RecordShowSidePanelOpenRecordButton.tsx
|
||||
msgid "Open"
|
||||
@@ -11651,6 +11636,22 @@ msgstr ""
|
||||
msgid "Read documentation"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: U26cMX
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Read system prompts"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: EKsFda
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Read the system prompts to understand how the AI works"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 0URVx8
|
||||
#. placeholder {0}: formatNumber( systemPromptTokenCount, { abbreviate: true, decimals: 1, }, )
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Read the system prompts to understand how the AI works (~{0} tokens)"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: afMuDE
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
msgid "Read your profile"
|
||||
@@ -11703,6 +11704,7 @@ msgstr ""
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/navigation-menu-item/display/object/components/NavigationDrawerItemForObjectMetadataItem.tsx
|
||||
msgid "Record"
|
||||
msgstr ""
|
||||
|
||||
@@ -12815,6 +12817,11 @@ msgstr ""
|
||||
msgid "See all {relationLabelPlural} linked to this record"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: sFsCOG
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
msgid "See data model settings"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: f4Lu+X
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "See deleted dashboards"
|
||||
@@ -12845,6 +12852,12 @@ msgstr ""
|
||||
msgid "See Fields"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: vn4aKq
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
|
||||
msgid "See records"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: irbH/8
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
msgid "See Records on All Objects"
|
||||
@@ -14037,11 +14050,10 @@ msgstr ""
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/forms/components/SettingsAIAgentForm.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "System Prompt"
|
||||
msgstr ""
|
||||
|
||||
@@ -15667,11 +15679,6 @@ msgstr ""
|
||||
msgid "View all evaluations"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 3JjgWt
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
msgid "View and customize AI instructions"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XVf/G7
|
||||
#: src/pages/settings/security/SettingsSecurity.tsx
|
||||
msgid "View and filter events, page views, object changes"
|
||||
@@ -15777,11 +15784,6 @@ msgstr ""
|
||||
msgid "view sort"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: FNDoRH
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
msgid "View the AI system prompt and add custom instructions"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: bJAIqT
|
||||
#: src/modules/views/view-picker/components/ViewPickerContentCreateMode.tsx
|
||||
msgid "View type"
|
||||
@@ -16212,8 +16214,8 @@ msgid "Workspace Info"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: BYrMT0
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Workspace Instructions"
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -671,10 +671,10 @@ msgstr "ID da chave de acesso"
|
||||
msgid "Access workspace data"
|
||||
msgstr "Acessar dados do espaço de trabalho"
|
||||
|
||||
#. js-lingui-id: W5nhmk
|
||||
#. js-lingui-id: c2UA7k
|
||||
#: src/pages/settings/ai/components/SettingsAIMCP.tsx
|
||||
msgid "Access your workspace data from your favorite MCP client like Claude Desktop, Claude Code, Cursor, or ChatGPT. Once connected, try: \"Show me the 5 most recently created companies\" or \"Create a new person named Jane Doe\"."
|
||||
msgstr "Acesse os dados do seu espaço de trabalho a partir do seu cliente MCP favorito, como Claude Desktop, Claude Code, Cursor ou ChatGPT. Depois de se conectar, experimente: \"Mostre as 5 empresas criadas mais recentemente\" ou \"Crie uma nova pessoa chamada Jane Doe\"."
|
||||
msgid "Access your workspace data from your favorite MCP client like Claude Desktop, Windsurf or Cursor."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: u2Cycw
|
||||
#: src/modules/settings/logic-functions/components/SettingsLogicFunctionTabEnvironmentVariablesSection.tsx
|
||||
@@ -899,7 +899,7 @@ msgid "Add custom endpoints, private gateways, or additional regions."
|
||||
msgstr "Adicione endpoints personalizados, gateways privados ou regiões adicionais."
|
||||
|
||||
#. js-lingui-id: GuJvBr
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Add custom instructions specific to your workspace (appended to system prompt)"
|
||||
msgstr "Adicione instruções personalizadas específicas para o seu espaço de trabalho (acrescentadas ao prompt do sistema)"
|
||||
|
||||
@@ -1176,11 +1176,6 @@ msgstr "Adicionado {beautifyPastDateRelative}"
|
||||
msgid "Added to blocklist"
|
||||
msgstr "Adicionado à Lista de Bloqueio"
|
||||
|
||||
#. js-lingui-id: y5mJau
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Additional Instructions"
|
||||
msgstr "Instruções adicionais"
|
||||
|
||||
#. js-lingui-id: hW/fMg
|
||||
#: src/modules/ui/field/input/components/AddressInput.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/constants/DefaultSelectionAddressWithMessages.ts
|
||||
@@ -2279,11 +2274,6 @@ msgstr "Autenticação"
|
||||
msgid "Authentication failed"
|
||||
msgstr "Falha na autenticação"
|
||||
|
||||
#. js-lingui-id: TxT0ER
|
||||
#: src/pages/settings/ai/components/SettingsAIMCP.tsx
|
||||
msgid "Authentication method"
|
||||
msgstr "Método de autenticação"
|
||||
|
||||
#. js-lingui-id: H7qgYQ
|
||||
#: src/pages/settings/SettingsTwoFactorAuthenticationMethod.tsx
|
||||
msgid "Authenticator app"
|
||||
@@ -3292,7 +3282,6 @@ msgid "Configuration"
|
||||
msgstr "Configuração"
|
||||
|
||||
#. js-lingui-id: iAL9tI
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
|
||||
msgid "Configure"
|
||||
msgstr "Configurar"
|
||||
@@ -5219,7 +5208,7 @@ msgid "e.g. OpenAI EU"
|
||||
msgstr "ex.: OpenAI EU"
|
||||
|
||||
#. js-lingui-id: p5P8NB
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "E.g., \"We are a B2B SaaS company. Always use formal language...\""
|
||||
msgstr "Ex.: \"Somos uma empresa B2B SaaS. Sempre use linguagem formal...\""
|
||||
|
||||
@@ -6622,7 +6611,7 @@ msgid "Failed to save role permissions: {errorMessage}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 9ryUyP
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Failed to save workspace instructions"
|
||||
msgstr "Falha ao salvar as instruções do espaço de trabalho"
|
||||
|
||||
@@ -10470,11 +10459,6 @@ msgstr "OAuth"
|
||||
msgid "OAuth Credentials"
|
||||
msgstr "Credenciais OAuth"
|
||||
|
||||
#. js-lingui-id: LNLTJB
|
||||
#: src/pages/settings/ai/components/SettingsAIMCP.tsx
|
||||
msgid "OAuth or API Key"
|
||||
msgstr "OAuth ou chave de API"
|
||||
|
||||
#. js-lingui-id: pNEViR
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
@@ -10708,6 +10692,7 @@ msgid "Only the timestamp & participants will be shared with your team."
|
||||
msgstr "Apenas o timestamp & participantes serão compartilhados com sua equipe."
|
||||
|
||||
#. js-lingui-id: 1TNIig
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
#: src/modules/command-menu-item/components/RecordShowSidePanelOpenRecordButton.tsx
|
||||
msgid "Open"
|
||||
@@ -11656,6 +11641,22 @@ msgstr "Leia o registro de alterações"
|
||||
msgid "Read documentation"
|
||||
msgstr "Ler documentação"
|
||||
|
||||
#. js-lingui-id: U26cMX
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Read system prompts"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: EKsFda
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Read the system prompts to understand how the AI works"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 0URVx8
|
||||
#. placeholder {0}: formatNumber( systemPromptTokenCount, { abbreviate: true, decimals: 1, }, )
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Read the system prompts to understand how the AI works (~{0} tokens)"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: afMuDE
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
msgid "Read your profile"
|
||||
@@ -11708,6 +11709,7 @@ msgstr "registro"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/navigation-menu-item/display/object/components/NavigationDrawerItemForObjectMetadataItem.tsx
|
||||
msgid "Record"
|
||||
msgstr "Gravação"
|
||||
|
||||
@@ -12820,6 +12822,11 @@ msgstr "Ver versão ativa"
|
||||
msgid "See all {relationLabelPlural} linked to this record"
|
||||
msgstr "Ver todos os {relationLabelPlural} vinculados a este registro"
|
||||
|
||||
#. js-lingui-id: sFsCOG
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
msgid "See data model settings"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: f4Lu+X
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "See deleted dashboards"
|
||||
@@ -12850,6 +12857,12 @@ msgstr "Ver workflows excluídos"
|
||||
msgid "See Fields"
|
||||
msgstr "Ver Campos"
|
||||
|
||||
#. js-lingui-id: vn4aKq
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
|
||||
msgid "See records"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: irbH/8
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
msgid "See Records on All Objects"
|
||||
@@ -14042,11 +14055,10 @@ msgstr ""
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/forms/components/SettingsAIAgentForm.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "System Prompt"
|
||||
msgstr "Prompt do sistema"
|
||||
|
||||
@@ -15672,11 +15684,6 @@ msgstr ""
|
||||
msgid "View all evaluations"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 3JjgWt
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
msgid "View and customize AI instructions"
|
||||
msgstr "Visualize e personalize as instruções de IA"
|
||||
|
||||
#. js-lingui-id: XVf/G7
|
||||
#: src/pages/settings/security/SettingsSecurity.tsx
|
||||
msgid "View and filter events, page views, object changes"
|
||||
@@ -15782,11 +15789,6 @@ msgstr ""
|
||||
msgid "view sort"
|
||||
msgstr "ordenação de visualização"
|
||||
|
||||
#. js-lingui-id: FNDoRH
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
msgid "View the AI system prompt and add custom instructions"
|
||||
msgstr "Visualize o prompt do sistema de IA e adicione instruções personalizadas"
|
||||
|
||||
#. js-lingui-id: bJAIqT
|
||||
#: src/modules/views/view-picker/components/ViewPickerContentCreateMode.tsx
|
||||
msgid "View type"
|
||||
@@ -16219,8 +16221,8 @@ msgid "Workspace Info"
|
||||
msgstr "Informações do espaço de trabalho"
|
||||
|
||||
#. js-lingui-id: BYrMT0
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Workspace Instructions"
|
||||
msgstr "Instruções do espaço de trabalho"
|
||||
|
||||
|
||||
@@ -671,10 +671,10 @@ msgstr "ID da chave de acesso"
|
||||
msgid "Access workspace data"
|
||||
msgstr "Aceder aos dados do espaço de trabalho"
|
||||
|
||||
#. js-lingui-id: W5nhmk
|
||||
#. js-lingui-id: c2UA7k
|
||||
#: src/pages/settings/ai/components/SettingsAIMCP.tsx
|
||||
msgid "Access your workspace data from your favorite MCP client like Claude Desktop, Claude Code, Cursor, or ChatGPT. Once connected, try: \"Show me the 5 most recently created companies\" or \"Create a new person named Jane Doe\"."
|
||||
msgstr "Acesse os dados do seu espaço de trabalho a partir do seu cliente MCP favorito, como o Claude Desktop, o Claude Code, o Cursor ou o ChatGPT. Depois de se conectar, tente: \"Mostre-me as 5 empresas criadas mais recentemente\" ou \"Crie uma nova pessoa chamada Jane Doe\"."
|
||||
msgid "Access your workspace data from your favorite MCP client like Claude Desktop, Windsurf or Cursor."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: u2Cycw
|
||||
#: src/modules/settings/logic-functions/components/SettingsLogicFunctionTabEnvironmentVariablesSection.tsx
|
||||
@@ -899,7 +899,7 @@ msgid "Add custom endpoints, private gateways, or additional regions."
|
||||
msgstr "Adicione endpoints personalizados, gateways privados ou regiões adicionais."
|
||||
|
||||
#. js-lingui-id: GuJvBr
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Add custom instructions specific to your workspace (appended to system prompt)"
|
||||
msgstr "Adicionar instruções personalizadas específicas ao seu espaço de trabalho (acrescentadas ao prompt do sistema)"
|
||||
|
||||
@@ -1176,11 +1176,6 @@ msgstr "Adicionado {beautifyPastDateRelative}"
|
||||
msgid "Added to blocklist"
|
||||
msgstr "Adicionado à lista de bloqueio"
|
||||
|
||||
#. js-lingui-id: y5mJau
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Additional Instructions"
|
||||
msgstr "Instruções adicionais"
|
||||
|
||||
#. js-lingui-id: hW/fMg
|
||||
#: src/modules/ui/field/input/components/AddressInput.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/constants/DefaultSelectionAddressWithMessages.ts
|
||||
@@ -2279,11 +2274,6 @@ msgstr "Autenticação"
|
||||
msgid "Authentication failed"
|
||||
msgstr "Autenticação falhou"
|
||||
|
||||
#. js-lingui-id: TxT0ER
|
||||
#: src/pages/settings/ai/components/SettingsAIMCP.tsx
|
||||
msgid "Authentication method"
|
||||
msgstr "Método de autenticação"
|
||||
|
||||
#. js-lingui-id: H7qgYQ
|
||||
#: src/pages/settings/SettingsTwoFactorAuthenticationMethod.tsx
|
||||
msgid "Authenticator app"
|
||||
@@ -3292,7 +3282,6 @@ msgid "Configuration"
|
||||
msgstr "Configuração"
|
||||
|
||||
#. js-lingui-id: iAL9tI
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
|
||||
msgid "Configure"
|
||||
msgstr "Configurar"
|
||||
@@ -5219,7 +5208,7 @@ msgid "e.g. OpenAI EU"
|
||||
msgstr "por exemplo, OpenAI EU"
|
||||
|
||||
#. js-lingui-id: p5P8NB
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "E.g., \"We are a B2B SaaS company. Always use formal language...\""
|
||||
msgstr "Por exemplo, \"Somos uma empresa SaaS B2B. Use sempre linguagem formal...\""
|
||||
|
||||
@@ -6622,7 +6611,7 @@ msgid "Failed to save role permissions: {errorMessage}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 9ryUyP
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Failed to save workspace instructions"
|
||||
msgstr "Falha ao guardar as instruções do espaço de trabalho"
|
||||
|
||||
@@ -10470,11 +10459,6 @@ msgstr "OAuth"
|
||||
msgid "OAuth Credentials"
|
||||
msgstr "Credenciais OAuth"
|
||||
|
||||
#. js-lingui-id: LNLTJB
|
||||
#: src/pages/settings/ai/components/SettingsAIMCP.tsx
|
||||
msgid "OAuth or API Key"
|
||||
msgstr "OAuth ou Chave de API"
|
||||
|
||||
#. js-lingui-id: pNEViR
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
@@ -10708,6 +10692,7 @@ msgid "Only the timestamp & participants will be shared with your team."
|
||||
msgstr "Apenas o carimbo de data/hora e os participantes serão partilhados com a sua equipa."
|
||||
|
||||
#. js-lingui-id: 1TNIig
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
#: src/modules/command-menu-item/components/RecordShowSidePanelOpenRecordButton.tsx
|
||||
msgid "Open"
|
||||
@@ -11656,6 +11641,22 @@ msgstr "Ler o registro de alterações"
|
||||
msgid "Read documentation"
|
||||
msgstr "Ler a documentação"
|
||||
|
||||
#. js-lingui-id: U26cMX
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Read system prompts"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: EKsFda
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Read the system prompts to understand how the AI works"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 0URVx8
|
||||
#. placeholder {0}: formatNumber( systemPromptTokenCount, { abbreviate: true, decimals: 1, }, )
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Read the system prompts to understand how the AI works (~{0} tokens)"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: afMuDE
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
msgid "Read your profile"
|
||||
@@ -11708,6 +11709,7 @@ msgstr "registro"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/navigation-menu-item/display/object/components/NavigationDrawerItemForObjectMetadataItem.tsx
|
||||
msgid "Record"
|
||||
msgstr "Registro"
|
||||
|
||||
@@ -12820,6 +12822,11 @@ msgstr "Ver versão ativa"
|
||||
msgid "See all {relationLabelPlural} linked to this record"
|
||||
msgstr "Ver todos os {relationLabelPlural} associados a este registro"
|
||||
|
||||
#. js-lingui-id: sFsCOG
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
msgid "See data model settings"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: f4Lu+X
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "See deleted dashboards"
|
||||
@@ -12850,6 +12857,12 @@ msgstr "Ver workflows eliminados"
|
||||
msgid "See Fields"
|
||||
msgstr "Ver Campos"
|
||||
|
||||
#. js-lingui-id: vn4aKq
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
|
||||
msgid "See records"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: irbH/8
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
msgid "See Records on All Objects"
|
||||
@@ -14042,11 +14055,10 @@ msgstr ""
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/forms/components/SettingsAIAgentForm.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "System Prompt"
|
||||
msgstr "Prompt do Sistema"
|
||||
|
||||
@@ -15672,11 +15684,6 @@ msgstr ""
|
||||
msgid "View all evaluations"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 3JjgWt
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
msgid "View and customize AI instructions"
|
||||
msgstr "Ver e personalizar as instruções da IA"
|
||||
|
||||
#. js-lingui-id: XVf/G7
|
||||
#: src/pages/settings/security/SettingsSecurity.tsx
|
||||
msgid "View and filter events, page views, object changes"
|
||||
@@ -15782,11 +15789,6 @@ msgstr ""
|
||||
msgid "view sort"
|
||||
msgstr "ordenação da visualização"
|
||||
|
||||
#. js-lingui-id: FNDoRH
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
msgid "View the AI system prompt and add custom instructions"
|
||||
msgstr "Ver o prompt do sistema da IA e adicionar instruções personalizadas"
|
||||
|
||||
#. js-lingui-id: bJAIqT
|
||||
#: src/modules/views/view-picker/components/ViewPickerContentCreateMode.tsx
|
||||
msgid "View type"
|
||||
@@ -16219,8 +16221,8 @@ msgid "Workspace Info"
|
||||
msgstr "Informações do espaço de trabalho"
|
||||
|
||||
#. js-lingui-id: BYrMT0
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Workspace Instructions"
|
||||
msgstr "Instruções do Espaço de Trabalho"
|
||||
|
||||
|
||||
@@ -671,10 +671,10 @@ msgstr "ID-ul cheii de acces"
|
||||
msgid "Access workspace data"
|
||||
msgstr "Accesați datele spațiului de lucru"
|
||||
|
||||
#. js-lingui-id: W5nhmk
|
||||
#. js-lingui-id: c2UA7k
|
||||
#: src/pages/settings/ai/components/SettingsAIMCP.tsx
|
||||
msgid "Access your workspace data from your favorite MCP client like Claude Desktop, Claude Code, Cursor, or ChatGPT. Once connected, try: \"Show me the 5 most recently created companies\" or \"Create a new person named Jane Doe\"."
|
||||
msgstr "Accesează datele spațiului tău de lucru din clientul MCP preferat, de exemplu Claude Desktop, Claude Code, Cursor sau ChatGPT. După conectare, încearcă: \"Arată-mi cele 5 companii create cel mai recent\" sau \"Creează o persoană nouă numită Jane Doe\"."
|
||||
msgid "Access your workspace data from your favorite MCP client like Claude Desktop, Windsurf or Cursor."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: u2Cycw
|
||||
#: src/modules/settings/logic-functions/components/SettingsLogicFunctionTabEnvironmentVariablesSection.tsx
|
||||
@@ -899,7 +899,7 @@ msgid "Add custom endpoints, private gateways, or additional regions."
|
||||
msgstr "Adăugați endpointuri personalizate, gateway-uri private sau regiuni suplimentare."
|
||||
|
||||
#. js-lingui-id: GuJvBr
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Add custom instructions specific to your workspace (appended to system prompt)"
|
||||
msgstr "Adăugați instrucțiuni personalizate specifice spațiului dvs. de lucru (adăugate la promptul de sistem)"
|
||||
|
||||
@@ -1176,11 +1176,6 @@ msgstr "Adăugat {beautifyPastDateRelative}"
|
||||
msgid "Added to blocklist"
|
||||
msgstr "Adăugat la lista neagră"
|
||||
|
||||
#. js-lingui-id: y5mJau
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Additional Instructions"
|
||||
msgstr "Instrucțiuni suplimentare"
|
||||
|
||||
#. js-lingui-id: hW/fMg
|
||||
#: src/modules/ui/field/input/components/AddressInput.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/constants/DefaultSelectionAddressWithMessages.ts
|
||||
@@ -2279,11 +2274,6 @@ msgstr "Autentificare"
|
||||
msgid "Authentication failed"
|
||||
msgstr "Autentificare eșuată"
|
||||
|
||||
#. js-lingui-id: TxT0ER
|
||||
#: src/pages/settings/ai/components/SettingsAIMCP.tsx
|
||||
msgid "Authentication method"
|
||||
msgstr "Metodă de autentificare"
|
||||
|
||||
#. js-lingui-id: H7qgYQ
|
||||
#: src/pages/settings/SettingsTwoFactorAuthenticationMethod.tsx
|
||||
msgid "Authenticator app"
|
||||
@@ -3292,7 +3282,6 @@ msgid "Configuration"
|
||||
msgstr "Configurație"
|
||||
|
||||
#. js-lingui-id: iAL9tI
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
|
||||
msgid "Configure"
|
||||
msgstr "Configurați"
|
||||
@@ -5219,7 +5208,7 @@ msgid "e.g. OpenAI EU"
|
||||
msgstr "de ex. OpenAI EU"
|
||||
|
||||
#. js-lingui-id: p5P8NB
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "E.g., \"We are a B2B SaaS company. Always use formal language...\""
|
||||
msgstr "De ex., \"Suntem o companie B2B SaaS. Folosiți întotdeauna un limbaj formal...\""
|
||||
|
||||
@@ -6622,7 +6611,7 @@ msgid "Failed to save role permissions: {errorMessage}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 9ryUyP
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Failed to save workspace instructions"
|
||||
msgstr "Nu s-au putut salva instrucțiunile spațiului de lucru"
|
||||
|
||||
@@ -10470,11 +10459,6 @@ msgstr "OAuth"
|
||||
msgid "OAuth Credentials"
|
||||
msgstr "Acreditări OAuth"
|
||||
|
||||
#. js-lingui-id: LNLTJB
|
||||
#: src/pages/settings/ai/components/SettingsAIMCP.tsx
|
||||
msgid "OAuth or API Key"
|
||||
msgstr "OAuth sau cheie API"
|
||||
|
||||
#. js-lingui-id: pNEViR
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
@@ -10708,6 +10692,7 @@ msgid "Only the timestamp & participants will be shared with your team."
|
||||
msgstr "Doar marca temporală și participanții vor fi partajați cu echipa dvs."
|
||||
|
||||
#. js-lingui-id: 1TNIig
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
#: src/modules/command-menu-item/components/RecordShowSidePanelOpenRecordButton.tsx
|
||||
msgid "Open"
|
||||
@@ -11656,6 +11641,22 @@ msgstr "Citește jurnalul modificărilor"
|
||||
msgid "Read documentation"
|
||||
msgstr "Citește documentația"
|
||||
|
||||
#. js-lingui-id: U26cMX
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Read system prompts"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: EKsFda
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Read the system prompts to understand how the AI works"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 0URVx8
|
||||
#. placeholder {0}: formatNumber( systemPromptTokenCount, { abbreviate: true, decimals: 1, }, )
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Read the system prompts to understand how the AI works (~{0} tokens)"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: afMuDE
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
msgid "Read your profile"
|
||||
@@ -11708,6 +11709,7 @@ msgstr "înregistrare"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/navigation-menu-item/display/object/components/NavigationDrawerItemForObjectMetadataItem.tsx
|
||||
msgid "Record"
|
||||
msgstr "Înregistrare"
|
||||
|
||||
@@ -12820,6 +12822,11 @@ msgstr "Vezi versiunea activă"
|
||||
msgid "See all {relationLabelPlural} linked to this record"
|
||||
msgstr "Vezi toate {relationLabelPlural} asociate cu această înregistrare"
|
||||
|
||||
#. js-lingui-id: sFsCOG
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
msgid "See data model settings"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: f4Lu+X
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "See deleted dashboards"
|
||||
@@ -12850,6 +12857,12 @@ msgstr "Vezi fluxuri de lucru șterse"
|
||||
msgid "See Fields"
|
||||
msgstr "Vezi câmpuri"
|
||||
|
||||
#. js-lingui-id: vn4aKq
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
|
||||
msgid "See records"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: irbH/8
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
msgid "See Records on All Objects"
|
||||
@@ -14042,11 +14055,10 @@ msgstr ""
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/forms/components/SettingsAIAgentForm.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "System Prompt"
|
||||
msgstr "Prompt de Sistem"
|
||||
|
||||
@@ -15672,11 +15684,6 @@ msgstr ""
|
||||
msgid "View all evaluations"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 3JjgWt
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
msgid "View and customize AI instructions"
|
||||
msgstr "Vizualizați și personalizați instrucțiunile AI"
|
||||
|
||||
#. js-lingui-id: XVf/G7
|
||||
#: src/pages/settings/security/SettingsSecurity.tsx
|
||||
msgid "View and filter events, page views, object changes"
|
||||
@@ -15782,11 +15789,6 @@ msgstr ""
|
||||
msgid "view sort"
|
||||
msgstr "sortare de vizualizare"
|
||||
|
||||
#. js-lingui-id: FNDoRH
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
msgid "View the AI system prompt and add custom instructions"
|
||||
msgstr "Vizualizați promptul de sistem al AI și adăugați instrucțiuni personalizate"
|
||||
|
||||
#. js-lingui-id: bJAIqT
|
||||
#: src/modules/views/view-picker/components/ViewPickerContentCreateMode.tsx
|
||||
msgid "View type"
|
||||
@@ -16219,8 +16221,8 @@ msgid "Workspace Info"
|
||||
msgstr "Informații despre spațiul de lucru"
|
||||
|
||||
#. js-lingui-id: BYrMT0
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Workspace Instructions"
|
||||
msgstr "Instrucțiuni pentru spațiul de lucru"
|
||||
|
||||
|
||||
Binary file not shown.
@@ -671,9 +671,9 @@ msgstr "ID кључа за приступ"
|
||||
msgid "Access workspace data"
|
||||
msgstr "Приступ подацима радног простора"
|
||||
|
||||
#. js-lingui-id: W5nhmk
|
||||
#. js-lingui-id: c2UA7k
|
||||
#: src/pages/settings/ai/components/SettingsAIMCP.tsx
|
||||
msgid "Access your workspace data from your favorite MCP client like Claude Desktop, Claude Code, Cursor, or ChatGPT. Once connected, try: \"Show me the 5 most recently created companies\" or \"Create a new person named Jane Doe\"."
|
||||
msgid "Access your workspace data from your favorite MCP client like Claude Desktop, Windsurf or Cursor."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: u2Cycw
|
||||
@@ -899,7 +899,7 @@ msgid "Add custom endpoints, private gateways, or additional regions."
|
||||
msgstr "Додајте прилагођене крајње тачке, приватне гејтвеје или додатне регионе."
|
||||
|
||||
#. js-lingui-id: GuJvBr
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Add custom instructions specific to your workspace (appended to system prompt)"
|
||||
msgstr "Додајте прилагођена упутства специфична за ваш радни простор (биће придодата системском промпту)"
|
||||
|
||||
@@ -1176,11 +1176,6 @@ msgstr "Додато {beautifyPastDateRelative}"
|
||||
msgid "Added to blocklist"
|
||||
msgstr "Додато на црну листу"
|
||||
|
||||
#. js-lingui-id: y5mJau
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Additional Instructions"
|
||||
msgstr "Додатна упутства"
|
||||
|
||||
#. js-lingui-id: hW/fMg
|
||||
#: src/modules/ui/field/input/components/AddressInput.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/constants/DefaultSelectionAddressWithMessages.ts
|
||||
@@ -2279,11 +2274,6 @@ msgstr "Аутентификација"
|
||||
msgid "Authentication failed"
|
||||
msgstr "Аутентификација није успела"
|
||||
|
||||
#. js-lingui-id: TxT0ER
|
||||
#: src/pages/settings/ai/components/SettingsAIMCP.tsx
|
||||
msgid "Authentication method"
|
||||
msgstr "Метод аутентификације"
|
||||
|
||||
#. js-lingui-id: H7qgYQ
|
||||
#: src/pages/settings/SettingsTwoFactorAuthenticationMethod.tsx
|
||||
msgid "Authenticator app"
|
||||
@@ -3292,7 +3282,6 @@ msgid "Configuration"
|
||||
msgstr "Конфигурација"
|
||||
|
||||
#. js-lingui-id: iAL9tI
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
|
||||
msgid "Configure"
|
||||
msgstr "Конфигуришите"
|
||||
@@ -5219,7 +5208,7 @@ msgid "e.g. OpenAI EU"
|
||||
msgstr "нпр. OpenAI EU"
|
||||
|
||||
#. js-lingui-id: p5P8NB
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "E.g., \"We are a B2B SaaS company. Always use formal language...\""
|
||||
msgstr "На пример, \"Ми смо B2B SaaS компанија. Увек користите формалан језик...\""
|
||||
|
||||
@@ -6622,7 +6611,7 @@ msgid "Failed to save role permissions: {errorMessage}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 9ryUyP
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Failed to save workspace instructions"
|
||||
msgstr "Није успело чување упутстава за радни простор"
|
||||
|
||||
@@ -10470,11 +10459,6 @@ msgstr "OAuth"
|
||||
msgid "OAuth Credentials"
|
||||
msgstr "OAuth акредитиви"
|
||||
|
||||
#. js-lingui-id: LNLTJB
|
||||
#: src/pages/settings/ai/components/SettingsAIMCP.tsx
|
||||
msgid "OAuth or API Key"
|
||||
msgstr "OAuth или API кључ"
|
||||
|
||||
#. js-lingui-id: pNEViR
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
@@ -10708,6 +10692,7 @@ msgid "Only the timestamp & participants will be shared with your team."
|
||||
msgstr "Само временска ознака & учесници ће бити подељени са вашим тимом."
|
||||
|
||||
#. js-lingui-id: 1TNIig
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
#: src/modules/command-menu-item/components/RecordShowSidePanelOpenRecordButton.tsx
|
||||
msgid "Open"
|
||||
@@ -11656,6 +11641,22 @@ msgstr "Прочитајте дневник измена"
|
||||
msgid "Read documentation"
|
||||
msgstr "Прочитајте документацију"
|
||||
|
||||
#. js-lingui-id: U26cMX
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Read system prompts"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: EKsFda
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Read the system prompts to understand how the AI works"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 0URVx8
|
||||
#. placeholder {0}: formatNumber( systemPromptTokenCount, { abbreviate: true, decimals: 1, }, )
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Read the system prompts to understand how the AI works (~{0} tokens)"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: afMuDE
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
msgid "Read your profile"
|
||||
@@ -11708,6 +11709,7 @@ msgstr "запис"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/navigation-menu-item/display/object/components/NavigationDrawerItemForObjectMetadataItem.tsx
|
||||
msgid "Record"
|
||||
msgstr "Запис"
|
||||
|
||||
@@ -12820,6 +12822,11 @@ msgstr "Погледајте активну верзију"
|
||||
msgid "See all {relationLabelPlural} linked to this record"
|
||||
msgstr "Погледај све {relationLabelPlural} у вези са овим записом"
|
||||
|
||||
#. js-lingui-id: sFsCOG
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
msgid "See data model settings"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: f4Lu+X
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "See deleted dashboards"
|
||||
@@ -12850,6 +12857,12 @@ msgstr "Видети обрисане токове рада"
|
||||
msgid "See Fields"
|
||||
msgstr "Види Поља"
|
||||
|
||||
#. js-lingui-id: vn4aKq
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
|
||||
msgid "See records"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: irbH/8
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
msgid "See Records on All Objects"
|
||||
@@ -14042,11 +14055,10 @@ msgstr ""
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/forms/components/SettingsAIAgentForm.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "System Prompt"
|
||||
msgstr "Системски упит"
|
||||
|
||||
@@ -15672,11 +15684,6 @@ msgstr ""
|
||||
msgid "View all evaluations"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 3JjgWt
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
msgid "View and customize AI instructions"
|
||||
msgstr "Прегледајте и прилагодите AI упутства"
|
||||
|
||||
#. js-lingui-id: XVf/G7
|
||||
#: src/pages/settings/security/SettingsSecurity.tsx
|
||||
msgid "View and filter events, page views, object changes"
|
||||
@@ -15782,11 +15789,6 @@ msgstr ""
|
||||
msgid "view sort"
|
||||
msgstr "сортирање приказа"
|
||||
|
||||
#. js-lingui-id: FNDoRH
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
msgid "View the AI system prompt and add custom instructions"
|
||||
msgstr "Погледајте AI системски промпт и додајте прилагођена упутства"
|
||||
|
||||
#. js-lingui-id: bJAIqT
|
||||
#: src/modules/views/view-picker/components/ViewPickerContentCreateMode.tsx
|
||||
msgid "View type"
|
||||
@@ -16219,8 +16221,8 @@ msgid "Workspace Info"
|
||||
msgstr "Информације о радном простору"
|
||||
|
||||
#. js-lingui-id: BYrMT0
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Workspace Instructions"
|
||||
msgstr "Упутства за радни простор"
|
||||
|
||||
|
||||
@@ -671,10 +671,10 @@ msgstr "Åtkomstnyckel-ID"
|
||||
msgid "Access workspace data"
|
||||
msgstr "Åtkomst till arbetsytans data"
|
||||
|
||||
#. js-lingui-id: W5nhmk
|
||||
#. js-lingui-id: c2UA7k
|
||||
#: src/pages/settings/ai/components/SettingsAIMCP.tsx
|
||||
msgid "Access your workspace data from your favorite MCP client like Claude Desktop, Claude Code, Cursor, or ChatGPT. Once connected, try: \"Show me the 5 most recently created companies\" or \"Create a new person named Jane Doe\"."
|
||||
msgstr "Få åtkomst till dina arbetsytedata från din favorit-MCP-klient som Claude Desktop, Claude Code, Cursor eller ChatGPT. När du är ansluten kan du prova: \"Visa de 5 senast skapade företagen\" eller \"Skapa en ny person med namnet Jane Doe\"."
|
||||
msgid "Access your workspace data from your favorite MCP client like Claude Desktop, Windsurf or Cursor."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: u2Cycw
|
||||
#: src/modules/settings/logic-functions/components/SettingsLogicFunctionTabEnvironmentVariablesSection.tsx
|
||||
@@ -899,7 +899,7 @@ msgid "Add custom endpoints, private gateways, or additional regions."
|
||||
msgstr "Lägg till anpassade slutpunkter, privata gateways eller ytterligare regioner."
|
||||
|
||||
#. js-lingui-id: GuJvBr
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Add custom instructions specific to your workspace (appended to system prompt)"
|
||||
msgstr "Lägg till anpassade instruktioner specifika för din arbetsyta (läggs till i systemprompten)"
|
||||
|
||||
@@ -1176,11 +1176,6 @@ msgstr "Tillagd {beautifyPastDateRelative}"
|
||||
msgid "Added to blocklist"
|
||||
msgstr "Tillagd i blocklistan"
|
||||
|
||||
#. js-lingui-id: y5mJau
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Additional Instructions"
|
||||
msgstr "Ytterligare instruktioner"
|
||||
|
||||
#. js-lingui-id: hW/fMg
|
||||
#: src/modules/ui/field/input/components/AddressInput.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/constants/DefaultSelectionAddressWithMessages.ts
|
||||
@@ -2279,11 +2274,6 @@ msgstr "Autentisering"
|
||||
msgid "Authentication failed"
|
||||
msgstr "Autentisering misslyckades"
|
||||
|
||||
#. js-lingui-id: TxT0ER
|
||||
#: src/pages/settings/ai/components/SettingsAIMCP.tsx
|
||||
msgid "Authentication method"
|
||||
msgstr "Autentiseringsmetod"
|
||||
|
||||
#. js-lingui-id: H7qgYQ
|
||||
#: src/pages/settings/SettingsTwoFactorAuthenticationMethod.tsx
|
||||
msgid "Authenticator app"
|
||||
@@ -3292,7 +3282,6 @@ msgid "Configuration"
|
||||
msgstr "Konfiguration"
|
||||
|
||||
#. js-lingui-id: iAL9tI
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
|
||||
msgid "Configure"
|
||||
msgstr "Konfigurera"
|
||||
@@ -5219,7 +5208,7 @@ msgid "e.g. OpenAI EU"
|
||||
msgstr "t.ex. OpenAI EU"
|
||||
|
||||
#. js-lingui-id: p5P8NB
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "E.g., \"We are a B2B SaaS company. Always use formal language...\""
|
||||
msgstr "T.ex. \"Vi är ett B2B SaaS-företag. Använd alltid formellt språk...\""
|
||||
|
||||
@@ -6622,7 +6611,7 @@ msgid "Failed to save role permissions: {errorMessage}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 9ryUyP
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Failed to save workspace instructions"
|
||||
msgstr "Det gick inte att spara instruktionerna för arbetsytan"
|
||||
|
||||
@@ -10472,11 +10461,6 @@ msgstr "OAuth"
|
||||
msgid "OAuth Credentials"
|
||||
msgstr "OAuth-autentiseringsuppgifter"
|
||||
|
||||
#. js-lingui-id: LNLTJB
|
||||
#: src/pages/settings/ai/components/SettingsAIMCP.tsx
|
||||
msgid "OAuth or API Key"
|
||||
msgstr "OAuth eller API-nyckel"
|
||||
|
||||
#. js-lingui-id: pNEViR
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
@@ -10710,6 +10694,7 @@ msgid "Only the timestamp & participants will be shared with your team."
|
||||
msgstr "Endast tidsstämpeln och deltagare kommer att delas med ditt team."
|
||||
|
||||
#. js-lingui-id: 1TNIig
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
#: src/modules/command-menu-item/components/RecordShowSidePanelOpenRecordButton.tsx
|
||||
msgid "Open"
|
||||
@@ -11658,6 +11643,22 @@ msgstr "Läs ändringsloggen"
|
||||
msgid "Read documentation"
|
||||
msgstr "Läs dokumentationen"
|
||||
|
||||
#. js-lingui-id: U26cMX
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Read system prompts"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: EKsFda
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Read the system prompts to understand how the AI works"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 0URVx8
|
||||
#. placeholder {0}: formatNumber( systemPromptTokenCount, { abbreviate: true, decimals: 1, }, )
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Read the system prompts to understand how the AI works (~{0} tokens)"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: afMuDE
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
msgid "Read your profile"
|
||||
@@ -11710,6 +11711,7 @@ msgstr "post"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/navigation-menu-item/display/object/components/NavigationDrawerItemForObjectMetadataItem.tsx
|
||||
msgid "Record"
|
||||
msgstr "Post"
|
||||
|
||||
@@ -12824,6 +12826,11 @@ msgstr "Se aktiv version"
|
||||
msgid "See all {relationLabelPlural} linked to this record"
|
||||
msgstr "Visa alla {relationLabelPlural} som är länkade till den här posten"
|
||||
|
||||
#. js-lingui-id: sFsCOG
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
msgid "See data model settings"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: f4Lu+X
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "See deleted dashboards"
|
||||
@@ -12854,6 +12861,12 @@ msgstr "Se raderade arbetsflöden"
|
||||
msgid "See Fields"
|
||||
msgstr "Se fält"
|
||||
|
||||
#. js-lingui-id: vn4aKq
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
|
||||
msgid "See records"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: irbH/8
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
msgid "See Records on All Objects"
|
||||
@@ -14048,11 +14061,10 @@ msgstr ""
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/forms/components/SettingsAIAgentForm.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "System Prompt"
|
||||
msgstr "Systemuppmaning"
|
||||
|
||||
@@ -15680,11 +15692,6 @@ msgstr ""
|
||||
msgid "View all evaluations"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 3JjgWt
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
msgid "View and customize AI instructions"
|
||||
msgstr "Visa och anpassa AI-instruktioner"
|
||||
|
||||
#. js-lingui-id: XVf/G7
|
||||
#: src/pages/settings/security/SettingsSecurity.tsx
|
||||
msgid "View and filter events, page views, object changes"
|
||||
@@ -15790,11 +15797,6 @@ msgstr ""
|
||||
msgid "view sort"
|
||||
msgstr "visa sortering"
|
||||
|
||||
#. js-lingui-id: FNDoRH
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
msgid "View the AI system prompt and add custom instructions"
|
||||
msgstr "Visa AI-systemprompten och lägg till anpassade instruktioner"
|
||||
|
||||
#. js-lingui-id: bJAIqT
|
||||
#: src/modules/views/view-picker/components/ViewPickerContentCreateMode.tsx
|
||||
msgid "View type"
|
||||
@@ -16227,8 +16229,8 @@ msgid "Workspace Info"
|
||||
msgstr "Arbetsytans info"
|
||||
|
||||
#. js-lingui-id: BYrMT0
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Workspace Instructions"
|
||||
msgstr "Instruktioner för arbetsytan"
|
||||
|
||||
|
||||
@@ -671,10 +671,10 @@ msgstr "Erişim Anahtarı Kimliği"
|
||||
msgid "Access workspace data"
|
||||
msgstr "Çalışma alanı verilerine erişin"
|
||||
|
||||
#. js-lingui-id: W5nhmk
|
||||
#. js-lingui-id: c2UA7k
|
||||
#: src/pages/settings/ai/components/SettingsAIMCP.tsx
|
||||
msgid "Access your workspace data from your favorite MCP client like Claude Desktop, Claude Code, Cursor, or ChatGPT. Once connected, try: \"Show me the 5 most recently created companies\" or \"Create a new person named Jane Doe\"."
|
||||
msgstr "Claude Desktop, Claude Code, Cursor veya ChatGPT gibi en sevdiğiniz MCP istemcisi üzerinden çalışma alanı verilerinize erişin. Bağlandıktan sonra şunları deneyin: \"En son oluşturulan 5 şirketi göster\" veya \"Jane Doe adlı yeni bir kişi oluştur\"."
|
||||
msgid "Access your workspace data from your favorite MCP client like Claude Desktop, Windsurf or Cursor."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: u2Cycw
|
||||
#: src/modules/settings/logic-functions/components/SettingsLogicFunctionTabEnvironmentVariablesSection.tsx
|
||||
@@ -899,7 +899,7 @@ msgid "Add custom endpoints, private gateways, or additional regions."
|
||||
msgstr "Özel uç noktalar, özel ağ geçitleri veya ek bölgeler ekleyin."
|
||||
|
||||
#. js-lingui-id: GuJvBr
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Add custom instructions specific to your workspace (appended to system prompt)"
|
||||
msgstr "Çalışma alanınıza özgü talimatlar ekleyin (sistem istemine eklenir)"
|
||||
|
||||
@@ -1176,11 +1176,6 @@ msgstr "{beautifyPastDateRelative} Eklendi"
|
||||
msgid "Added to blocklist"
|
||||
msgstr "Kara Listeye Eklendi"
|
||||
|
||||
#. js-lingui-id: y5mJau
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Additional Instructions"
|
||||
msgstr "Ek Talimatlar"
|
||||
|
||||
#. js-lingui-id: hW/fMg
|
||||
#: src/modules/ui/field/input/components/AddressInput.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/constants/DefaultSelectionAddressWithMessages.ts
|
||||
@@ -2279,11 +2274,6 @@ msgstr "Kimlik Doğrulama"
|
||||
msgid "Authentication failed"
|
||||
msgstr "Kimlik doğrulama başarısız"
|
||||
|
||||
#. js-lingui-id: TxT0ER
|
||||
#: src/pages/settings/ai/components/SettingsAIMCP.tsx
|
||||
msgid "Authentication method"
|
||||
msgstr "Kimlik Doğrulama Yöntemi"
|
||||
|
||||
#. js-lingui-id: H7qgYQ
|
||||
#: src/pages/settings/SettingsTwoFactorAuthenticationMethod.tsx
|
||||
msgid "Authenticator app"
|
||||
@@ -3292,7 +3282,6 @@ msgid "Configuration"
|
||||
msgstr "Yapılandırma"
|
||||
|
||||
#. js-lingui-id: iAL9tI
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
|
||||
msgid "Configure"
|
||||
msgstr "Yapılandırın"
|
||||
@@ -5219,7 +5208,7 @@ msgid "e.g. OpenAI EU"
|
||||
msgstr "örn. OpenAI EU"
|
||||
|
||||
#. js-lingui-id: p5P8NB
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "E.g., \"We are a B2B SaaS company. Always use formal language...\""
|
||||
msgstr "Örneğin, \"Biz bir B2B SaaS şirketiyiz. Her zaman resmî bir dil kullanın...\""
|
||||
|
||||
@@ -6622,7 +6611,7 @@ msgid "Failed to save role permissions: {errorMessage}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 9ryUyP
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Failed to save workspace instructions"
|
||||
msgstr "Çalışma alanı talimatları kaydedilemedi"
|
||||
|
||||
@@ -10470,11 +10459,6 @@ msgstr "OAuth"
|
||||
msgid "OAuth Credentials"
|
||||
msgstr "OAuth Kimlik Bilgileri"
|
||||
|
||||
#. js-lingui-id: LNLTJB
|
||||
#: src/pages/settings/ai/components/SettingsAIMCP.tsx
|
||||
msgid "OAuth or API Key"
|
||||
msgstr "OAuth veya API Anahtarı"
|
||||
|
||||
#. js-lingui-id: pNEViR
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
@@ -10708,6 +10692,7 @@ msgid "Only the timestamp & participants will be shared with your team."
|
||||
msgstr "Yalnızca zaman damgası ve katılımcılar ekibinizle paylaşılacak."
|
||||
|
||||
#. js-lingui-id: 1TNIig
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
#: src/modules/command-menu-item/components/RecordShowSidePanelOpenRecordButton.tsx
|
||||
msgid "Open"
|
||||
@@ -11656,6 +11641,22 @@ msgstr "Değişiklik günlüğünü oku"
|
||||
msgid "Read documentation"
|
||||
msgstr "Dokümantasyonu oku"
|
||||
|
||||
#. js-lingui-id: U26cMX
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Read system prompts"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: EKsFda
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Read the system prompts to understand how the AI works"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 0URVx8
|
||||
#. placeholder {0}: formatNumber( systemPromptTokenCount, { abbreviate: true, decimals: 1, }, )
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Read the system prompts to understand how the AI works (~{0} tokens)"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: afMuDE
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
msgid "Read your profile"
|
||||
@@ -11708,6 +11709,7 @@ msgstr "kayıt"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/navigation-menu-item/display/object/components/NavigationDrawerItemForObjectMetadataItem.tsx
|
||||
msgid "Record"
|
||||
msgstr "Kayıt"
|
||||
|
||||
@@ -12820,6 +12822,11 @@ msgstr "Aktif sürümü gör"
|
||||
msgid "See all {relationLabelPlural} linked to this record"
|
||||
msgstr "Bu kayda bağlı tüm {relationLabelPlural} listesini görüntüle"
|
||||
|
||||
#. js-lingui-id: sFsCOG
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
msgid "See data model settings"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: f4Lu+X
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "See deleted dashboards"
|
||||
@@ -12850,6 +12857,12 @@ msgstr "Silinmiş iş akışlarını gör"
|
||||
msgid "See Fields"
|
||||
msgstr "Alanları Gör"
|
||||
|
||||
#. js-lingui-id: vn4aKq
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
|
||||
msgid "See records"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: irbH/8
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
msgid "See Records on All Objects"
|
||||
@@ -14042,11 +14055,10 @@ msgstr ""
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/forms/components/SettingsAIAgentForm.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "System Prompt"
|
||||
msgstr "Sistem İstemi"
|
||||
|
||||
@@ -15672,11 +15684,6 @@ msgstr ""
|
||||
msgid "View all evaluations"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 3JjgWt
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
msgid "View and customize AI instructions"
|
||||
msgstr "Yapay zeka talimatlarını görüntüleyin ve özelleştirin"
|
||||
|
||||
#. js-lingui-id: XVf/G7
|
||||
#: src/pages/settings/security/SettingsSecurity.tsx
|
||||
msgid "View and filter events, page views, object changes"
|
||||
@@ -15782,11 +15789,6 @@ msgstr ""
|
||||
msgid "view sort"
|
||||
msgstr "görünüm sıralaması"
|
||||
|
||||
#. js-lingui-id: FNDoRH
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
msgid "View the AI system prompt and add custom instructions"
|
||||
msgstr "Yapay zeka sistem istemini görüntüleyin ve özel talimatlar ekleyin"
|
||||
|
||||
#. js-lingui-id: bJAIqT
|
||||
#: src/modules/views/view-picker/components/ViewPickerContentCreateMode.tsx
|
||||
msgid "View type"
|
||||
@@ -16219,8 +16221,8 @@ msgid "Workspace Info"
|
||||
msgstr "Çalışma Alanı Bilgisi"
|
||||
|
||||
#. js-lingui-id: BYrMT0
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Workspace Instructions"
|
||||
msgstr "Çalışma Alanı Talimatları"
|
||||
|
||||
|
||||
@@ -671,10 +671,10 @@ msgstr "Ідентифікатор ключа доступу"
|
||||
msgid "Access workspace data"
|
||||
msgstr "Доступ до даних робочого простору"
|
||||
|
||||
#. js-lingui-id: W5nhmk
|
||||
#. js-lingui-id: c2UA7k
|
||||
#: src/pages/settings/ai/components/SettingsAIMCP.tsx
|
||||
msgid "Access your workspace data from your favorite MCP client like Claude Desktop, Claude Code, Cursor, or ChatGPT. Once connected, try: \"Show me the 5 most recently created companies\" or \"Create a new person named Jane Doe\"."
|
||||
msgstr "Отримайте доступ до даних свого робочого простору з улюбленого MCP-клієнта, як-от Claude Desktop, Claude Code, Cursor або ChatGPT. Після підключення спробуйте: \"Покажіть мені 5 нещодавно створених компаній\" або \"Створіть нову особу на ім'я Jane Doe\"."
|
||||
msgid "Access your workspace data from your favorite MCP client like Claude Desktop, Windsurf or Cursor."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: u2Cycw
|
||||
#: src/modules/settings/logic-functions/components/SettingsLogicFunctionTabEnvironmentVariablesSection.tsx
|
||||
@@ -899,7 +899,7 @@ msgid "Add custom endpoints, private gateways, or additional regions."
|
||||
msgstr "Додайте власні кінцеві точки, приватні шлюзи або додаткові регіони."
|
||||
|
||||
#. js-lingui-id: GuJvBr
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Add custom instructions specific to your workspace (appended to system prompt)"
|
||||
msgstr "Додайте власні інструкції, специфічні для вашого робочого простору (додаються до системного промпту)"
|
||||
|
||||
@@ -1176,11 +1176,6 @@ msgstr "Додано {beautifyPastDateRelative}"
|
||||
msgid "Added to blocklist"
|
||||
msgstr "Додано до чорного списку"
|
||||
|
||||
#. js-lingui-id: y5mJau
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Additional Instructions"
|
||||
msgstr "Додаткові інструкції"
|
||||
|
||||
#. js-lingui-id: hW/fMg
|
||||
#: src/modules/ui/field/input/components/AddressInput.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/constants/DefaultSelectionAddressWithMessages.ts
|
||||
@@ -2279,11 +2274,6 @@ msgstr "Аутентифікація"
|
||||
msgid "Authentication failed"
|
||||
msgstr "Не вдалося пройти аутентифікацію"
|
||||
|
||||
#. js-lingui-id: TxT0ER
|
||||
#: src/pages/settings/ai/components/SettingsAIMCP.tsx
|
||||
msgid "Authentication method"
|
||||
msgstr "Метод аутентифікації"
|
||||
|
||||
#. js-lingui-id: H7qgYQ
|
||||
#: src/pages/settings/SettingsTwoFactorAuthenticationMethod.tsx
|
||||
msgid "Authenticator app"
|
||||
@@ -3292,7 +3282,6 @@ msgid "Configuration"
|
||||
msgstr "Конфігурація"
|
||||
|
||||
#. js-lingui-id: iAL9tI
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
|
||||
msgid "Configure"
|
||||
msgstr "Налаштуйте"
|
||||
@@ -5219,7 +5208,7 @@ msgid "e.g. OpenAI EU"
|
||||
msgstr "наприклад, OpenAI EU"
|
||||
|
||||
#. js-lingui-id: p5P8NB
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "E.g., \"We are a B2B SaaS company. Always use formal language...\""
|
||||
msgstr "Наприклад: \"Ми — B2B SaaS-компанія. Завжди використовуйте офіційну мову...\""
|
||||
|
||||
@@ -6622,7 +6611,7 @@ msgid "Failed to save role permissions: {errorMessage}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 9ryUyP
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Failed to save workspace instructions"
|
||||
msgstr "Не вдалося зберегти інструкції робочого простору"
|
||||
|
||||
@@ -10470,11 +10459,6 @@ msgstr "OAuth"
|
||||
msgid "OAuth Credentials"
|
||||
msgstr "Облікові дані OAuth"
|
||||
|
||||
#. js-lingui-id: LNLTJB
|
||||
#: src/pages/settings/ai/components/SettingsAIMCP.tsx
|
||||
msgid "OAuth or API Key"
|
||||
msgstr "OAuth або ключ API"
|
||||
|
||||
#. js-lingui-id: pNEViR
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
@@ -10708,6 +10692,7 @@ msgid "Only the timestamp & participants will be shared with your team."
|
||||
msgstr "Лише відмітка часу та учасники будуть поділені з вашою командою."
|
||||
|
||||
#. js-lingui-id: 1TNIig
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
#: src/modules/command-menu-item/components/RecordShowSidePanelOpenRecordButton.tsx
|
||||
msgid "Open"
|
||||
@@ -11656,6 +11641,22 @@ msgstr "Переглянути журнал змін"
|
||||
msgid "Read documentation"
|
||||
msgstr "Читати документацію"
|
||||
|
||||
#. js-lingui-id: U26cMX
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Read system prompts"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: EKsFda
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Read the system prompts to understand how the AI works"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 0URVx8
|
||||
#. placeholder {0}: formatNumber( systemPromptTokenCount, { abbreviate: true, decimals: 1, }, )
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Read the system prompts to understand how the AI works (~{0} tokens)"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: afMuDE
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
msgid "Read your profile"
|
||||
@@ -11708,6 +11709,7 @@ msgstr "запис"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/navigation-menu-item/display/object/components/NavigationDrawerItemForObjectMetadataItem.tsx
|
||||
msgid "Record"
|
||||
msgstr "Запис"
|
||||
|
||||
@@ -12820,6 +12822,11 @@ msgstr "Переглянути активну версію"
|
||||
msgid "See all {relationLabelPlural} linked to this record"
|
||||
msgstr "Переглянути всі {relationLabelPlural}, пов’язані з цим записом"
|
||||
|
||||
#. js-lingui-id: sFsCOG
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
msgid "See data model settings"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: f4Lu+X
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "See deleted dashboards"
|
||||
@@ -12850,6 +12857,12 @@ msgstr "Переглянути видалені робочі процеси"
|
||||
msgid "See Fields"
|
||||
msgstr "Перегляд полів"
|
||||
|
||||
#. js-lingui-id: vn4aKq
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
|
||||
msgid "See records"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: irbH/8
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
msgid "See Records on All Objects"
|
||||
@@ -14042,11 +14055,10 @@ msgstr ""
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/forms/components/SettingsAIAgentForm.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "System Prompt"
|
||||
msgstr "Системний запит"
|
||||
|
||||
@@ -15674,11 +15686,6 @@ msgstr ""
|
||||
msgid "View all evaluations"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 3JjgWt
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
msgid "View and customize AI instructions"
|
||||
msgstr "Переглянути та налаштувати інструкції ШІ"
|
||||
|
||||
#. js-lingui-id: XVf/G7
|
||||
#: src/pages/settings/security/SettingsSecurity.tsx
|
||||
msgid "View and filter events, page views, object changes"
|
||||
@@ -15784,11 +15791,6 @@ msgstr ""
|
||||
msgid "view sort"
|
||||
msgstr "сортування перегляду"
|
||||
|
||||
#. js-lingui-id: FNDoRH
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
msgid "View the AI system prompt and add custom instructions"
|
||||
msgstr "Переглянути системний промпт ШІ та додати власні інструкції"
|
||||
|
||||
#. js-lingui-id: bJAIqT
|
||||
#: src/modules/views/view-picker/components/ViewPickerContentCreateMode.tsx
|
||||
msgid "View type"
|
||||
@@ -16221,8 +16223,8 @@ msgid "Workspace Info"
|
||||
msgstr "Інформація про робочий простір"
|
||||
|
||||
#. js-lingui-id: BYrMT0
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Workspace Instructions"
|
||||
msgstr "Інструкції робочого простору"
|
||||
|
||||
|
||||
@@ -671,10 +671,10 @@ msgstr "ID khóa truy cập"
|
||||
msgid "Access workspace data"
|
||||
msgstr "Truy cập dữ liệu không gian làm việc"
|
||||
|
||||
#. js-lingui-id: W5nhmk
|
||||
#. js-lingui-id: c2UA7k
|
||||
#: src/pages/settings/ai/components/SettingsAIMCP.tsx
|
||||
msgid "Access your workspace data from your favorite MCP client like Claude Desktop, Claude Code, Cursor, or ChatGPT. Once connected, try: \"Show me the 5 most recently created companies\" or \"Create a new person named Jane Doe\"."
|
||||
msgstr "Truy cập dữ liệu không gian làm việc của bạn từ ứng dụng khách MCP ưa thích như Claude Desktop, Claude Code, Cursor hoặc ChatGPT. Sau khi kết nối, hãy thử: \"Cho tôi xem 5 công ty được tạo gần đây nhất\" hoặc \"Tạo một người mới tên là Jane Doe\"."
|
||||
msgid "Access your workspace data from your favorite MCP client like Claude Desktop, Windsurf or Cursor."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: u2Cycw
|
||||
#: src/modules/settings/logic-functions/components/SettingsLogicFunctionTabEnvironmentVariablesSection.tsx
|
||||
@@ -899,7 +899,7 @@ msgid "Add custom endpoints, private gateways, or additional regions."
|
||||
msgstr "Thêm điểm cuối tùy chỉnh, cổng riêng tư hoặc khu vực bổ sung."
|
||||
|
||||
#. js-lingui-id: GuJvBr
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Add custom instructions specific to your workspace (appended to system prompt)"
|
||||
msgstr "Thêm hướng dẫn tùy chỉnh dành riêng cho không gian làm việc của bạn (được nối thêm vào lời nhắc hệ thống)"
|
||||
|
||||
@@ -1176,11 +1176,6 @@ msgstr "Đã thêm vào {beautifyPastDateRelative}"
|
||||
msgid "Added to blocklist"
|
||||
msgstr "Đã thêm vào danh sách chặn"
|
||||
|
||||
#. js-lingui-id: y5mJau
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Additional Instructions"
|
||||
msgstr "Hướng dẫn bổ sung"
|
||||
|
||||
#. js-lingui-id: hW/fMg
|
||||
#: src/modules/ui/field/input/components/AddressInput.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/constants/DefaultSelectionAddressWithMessages.ts
|
||||
@@ -2279,11 +2274,6 @@ msgstr "Xác thực"
|
||||
msgid "Authentication failed"
|
||||
msgstr "Xác thực thất bại"
|
||||
|
||||
#. js-lingui-id: TxT0ER
|
||||
#: src/pages/settings/ai/components/SettingsAIMCP.tsx
|
||||
msgid "Authentication method"
|
||||
msgstr "Phương thức xác thực"
|
||||
|
||||
#. js-lingui-id: H7qgYQ
|
||||
#: src/pages/settings/SettingsTwoFactorAuthenticationMethod.tsx
|
||||
msgid "Authenticator app"
|
||||
@@ -3292,7 +3282,6 @@ msgid "Configuration"
|
||||
msgstr "Cấu Hình"
|
||||
|
||||
#. js-lingui-id: iAL9tI
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
|
||||
msgid "Configure"
|
||||
msgstr "Cấu hình"
|
||||
@@ -5219,7 +5208,7 @@ msgid "e.g. OpenAI EU"
|
||||
msgstr "ví dụ: OpenAI EU"
|
||||
|
||||
#. js-lingui-id: p5P8NB
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "E.g., \"We are a B2B SaaS company. Always use formal language...\""
|
||||
msgstr "Ví dụ: \"Chúng tôi là một công ty SaaS B2B. Luôn sử dụng ngôn ngữ trang trọng...\""
|
||||
|
||||
@@ -6622,7 +6611,7 @@ msgid "Failed to save role permissions: {errorMessage}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 9ryUyP
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Failed to save workspace instructions"
|
||||
msgstr "Không thể lưu hướng dẫn của không gian làm việc"
|
||||
|
||||
@@ -10470,11 +10459,6 @@ msgstr "OAuth"
|
||||
msgid "OAuth Credentials"
|
||||
msgstr "Thông tin xác thực OAuth"
|
||||
|
||||
#. js-lingui-id: LNLTJB
|
||||
#: src/pages/settings/ai/components/SettingsAIMCP.tsx
|
||||
msgid "OAuth or API Key"
|
||||
msgstr "OAuth hoặc Khóa API"
|
||||
|
||||
#. js-lingui-id: pNEViR
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
@@ -10708,6 +10692,7 @@ msgid "Only the timestamp & participants will be shared with your team."
|
||||
msgstr "Chỉ dấu thời gian và người tham gia sẽ được chia sẻ với nhóm của bạn."
|
||||
|
||||
#. js-lingui-id: 1TNIig
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
#: src/modules/command-menu-item/components/RecordShowSidePanelOpenRecordButton.tsx
|
||||
msgid "Open"
|
||||
@@ -11656,6 +11641,22 @@ msgstr "Xem nhật ký thay đổi"
|
||||
msgid "Read documentation"
|
||||
msgstr "Đọc tài liệu"
|
||||
|
||||
#. js-lingui-id: U26cMX
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Read system prompts"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: EKsFda
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Read the system prompts to understand how the AI works"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 0URVx8
|
||||
#. placeholder {0}: formatNumber( systemPromptTokenCount, { abbreviate: true, decimals: 1, }, )
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Read the system prompts to understand how the AI works (~{0} tokens)"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: afMuDE
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
msgid "Read your profile"
|
||||
@@ -11708,6 +11709,7 @@ msgstr "bản ghi"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/navigation-menu-item/display/object/components/NavigationDrawerItemForObjectMetadataItem.tsx
|
||||
msgid "Record"
|
||||
msgstr "Ghi lại"
|
||||
|
||||
@@ -12820,6 +12822,11 @@ msgstr "Xem phiên bản đang hoạt động"
|
||||
msgid "See all {relationLabelPlural} linked to this record"
|
||||
msgstr "Xem tất cả {relationLabelPlural} được liên kết với bản ghi này"
|
||||
|
||||
#. js-lingui-id: sFsCOG
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
msgid "See data model settings"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: f4Lu+X
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "See deleted dashboards"
|
||||
@@ -12850,6 +12857,12 @@ msgstr "Xem quy trình công việc đã xóa"
|
||||
msgid "See Fields"
|
||||
msgstr "Xem các Trường"
|
||||
|
||||
#. js-lingui-id: vn4aKq
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
|
||||
msgid "See records"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: irbH/8
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
msgid "See Records on All Objects"
|
||||
@@ -14042,11 +14055,10 @@ msgstr ""
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/forms/components/SettingsAIAgentForm.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "System Prompt"
|
||||
msgstr "Lời Nhắc Hệ Thống"
|
||||
|
||||
@@ -15672,11 +15684,6 @@ msgstr ""
|
||||
msgid "View all evaluations"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 3JjgWt
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
msgid "View and customize AI instructions"
|
||||
msgstr "Xem và tùy chỉnh hướng dẫn AI"
|
||||
|
||||
#. js-lingui-id: XVf/G7
|
||||
#: src/pages/settings/security/SettingsSecurity.tsx
|
||||
msgid "View and filter events, page views, object changes"
|
||||
@@ -15782,11 +15789,6 @@ msgstr ""
|
||||
msgid "view sort"
|
||||
msgstr "sắp xếp chế độ xem"
|
||||
|
||||
#. js-lingui-id: FNDoRH
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
msgid "View the AI system prompt and add custom instructions"
|
||||
msgstr "Xem lời nhắc hệ thống của AI và thêm hướng dẫn tùy chỉnh"
|
||||
|
||||
#. js-lingui-id: bJAIqT
|
||||
#: src/modules/views/view-picker/components/ViewPickerContentCreateMode.tsx
|
||||
msgid "View type"
|
||||
@@ -16219,8 +16221,8 @@ msgid "Workspace Info"
|
||||
msgstr "Thông tin không gian làm việc"
|
||||
|
||||
#. js-lingui-id: BYrMT0
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Workspace Instructions"
|
||||
msgstr "Hướng dẫn của không gian làm việc"
|
||||
|
||||
|
||||
@@ -671,9 +671,9 @@ msgstr "访问密钥 ID"
|
||||
msgid "Access workspace data"
|
||||
msgstr "访问工作区数据"
|
||||
|
||||
#. js-lingui-id: W5nhmk
|
||||
#. js-lingui-id: c2UA7k
|
||||
#: src/pages/settings/ai/components/SettingsAIMCP.tsx
|
||||
msgid "Access your workspace data from your favorite MCP client like Claude Desktop, Claude Code, Cursor, or ChatGPT. Once connected, try: \"Show me the 5 most recently created companies\" or \"Create a new person named Jane Doe\"."
|
||||
msgid "Access your workspace data from your favorite MCP client like Claude Desktop, Windsurf or Cursor."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: u2Cycw
|
||||
@@ -899,7 +899,7 @@ msgid "Add custom endpoints, private gateways, or additional regions."
|
||||
msgstr "添加自定义端点、私有网关或其他区域。"
|
||||
|
||||
#. js-lingui-id: GuJvBr
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Add custom instructions specific to your workspace (appended to system prompt)"
|
||||
msgstr "添加特定于您工作区的自定义说明 (附加到系统提示词)"
|
||||
|
||||
@@ -1176,11 +1176,6 @@ msgstr "已添加 {beautifyPastDateRelative}"
|
||||
msgid "Added to blocklist"
|
||||
msgstr "已添加到拦截列表"
|
||||
|
||||
#. js-lingui-id: y5mJau
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Additional Instructions"
|
||||
msgstr "附加说明"
|
||||
|
||||
#. js-lingui-id: hW/fMg
|
||||
#: src/modules/ui/field/input/components/AddressInput.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/constants/DefaultSelectionAddressWithMessages.ts
|
||||
@@ -2279,11 +2274,6 @@ msgstr "身份验证"
|
||||
msgid "Authentication failed"
|
||||
msgstr "身份验证失败"
|
||||
|
||||
#. js-lingui-id: TxT0ER
|
||||
#: src/pages/settings/ai/components/SettingsAIMCP.tsx
|
||||
msgid "Authentication method"
|
||||
msgstr "身份验证方法"
|
||||
|
||||
#. js-lingui-id: H7qgYQ
|
||||
#: src/pages/settings/SettingsTwoFactorAuthenticationMethod.tsx
|
||||
msgid "Authenticator app"
|
||||
@@ -3292,7 +3282,6 @@ msgid "Configuration"
|
||||
msgstr "配置"
|
||||
|
||||
#. js-lingui-id: iAL9tI
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
|
||||
msgid "Configure"
|
||||
msgstr "配置"
|
||||
@@ -5219,7 +5208,7 @@ msgid "e.g. OpenAI EU"
|
||||
msgstr "例如:OpenAI EU"
|
||||
|
||||
#. js-lingui-id: p5P8NB
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "E.g., \"We are a B2B SaaS company. Always use formal language...\""
|
||||
msgstr "例如,\"我们是一家 B2B SaaS 公司。始终使用正式语言...\""
|
||||
|
||||
@@ -6622,7 +6611,7 @@ msgid "Failed to save role permissions: {errorMessage}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 9ryUyP
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Failed to save workspace instructions"
|
||||
msgstr "保存工作区说明失败"
|
||||
|
||||
@@ -10470,11 +10459,6 @@ msgstr "OAuth"
|
||||
msgid "OAuth Credentials"
|
||||
msgstr "OAuth 凭据"
|
||||
|
||||
#. js-lingui-id: LNLTJB
|
||||
#: src/pages/settings/ai/components/SettingsAIMCP.tsx
|
||||
msgid "OAuth or API Key"
|
||||
msgstr "OAuth 或 API 密钥"
|
||||
|
||||
#. js-lingui-id: pNEViR
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
@@ -10708,6 +10692,7 @@ msgid "Only the timestamp & participants will be shared with your team."
|
||||
msgstr "仅时间戳和参与者将与您的团队分享。"
|
||||
|
||||
#. js-lingui-id: 1TNIig
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
#: src/modules/command-menu-item/components/RecordShowSidePanelOpenRecordButton.tsx
|
||||
msgid "Open"
|
||||
@@ -11656,6 +11641,22 @@ msgstr "查看更新日志"
|
||||
msgid "Read documentation"
|
||||
msgstr "阅读文档"
|
||||
|
||||
#. js-lingui-id: U26cMX
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Read system prompts"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: EKsFda
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Read the system prompts to understand how the AI works"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 0URVx8
|
||||
#. placeholder {0}: formatNumber( systemPromptTokenCount, { abbreviate: true, decimals: 1, }, )
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Read the system prompts to understand how the AI works (~{0} tokens)"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: afMuDE
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
msgid "Read your profile"
|
||||
@@ -11708,6 +11709,7 @@ msgstr "记录"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/navigation-menu-item/display/object/components/NavigationDrawerItemForObjectMetadataItem.tsx
|
||||
msgid "Record"
|
||||
msgstr "记录"
|
||||
|
||||
@@ -12820,6 +12822,11 @@ msgstr "查看活动版本"
|
||||
msgid "See all {relationLabelPlural} linked to this record"
|
||||
msgstr "查看与此记录关联的所有 {relationLabelPlural}"
|
||||
|
||||
#. js-lingui-id: sFsCOG
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
msgid "See data model settings"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: f4Lu+X
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "See deleted dashboards"
|
||||
@@ -12850,6 +12857,12 @@ msgstr "查看已删除的工作流"
|
||||
msgid "See Fields"
|
||||
msgstr "查看字段"
|
||||
|
||||
#. js-lingui-id: vn4aKq
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
|
||||
msgid "See records"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: irbH/8
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
msgid "See Records on All Objects"
|
||||
@@ -14042,11 +14055,10 @@ msgstr ""
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/forms/components/SettingsAIAgentForm.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "System Prompt"
|
||||
msgstr "系统提示"
|
||||
|
||||
@@ -15672,11 +15684,6 @@ msgstr ""
|
||||
msgid "View all evaluations"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 3JjgWt
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
msgid "View and customize AI instructions"
|
||||
msgstr "查看并自定义 AI 说明"
|
||||
|
||||
#. js-lingui-id: XVf/G7
|
||||
#: src/pages/settings/security/SettingsSecurity.tsx
|
||||
msgid "View and filter events, page views, object changes"
|
||||
@@ -15782,11 +15789,6 @@ msgstr ""
|
||||
msgid "view sort"
|
||||
msgstr "视图排序"
|
||||
|
||||
#. js-lingui-id: FNDoRH
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
msgid "View the AI system prompt and add custom instructions"
|
||||
msgstr "查看 AI 系统提示词并添加自定义说明"
|
||||
|
||||
#. js-lingui-id: bJAIqT
|
||||
#: src/modules/views/view-picker/components/ViewPickerContentCreateMode.tsx
|
||||
msgid "View type"
|
||||
@@ -16219,8 +16221,8 @@ msgid "Workspace Info"
|
||||
msgstr "工作区信息"
|
||||
|
||||
#. js-lingui-id: BYrMT0
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Workspace Instructions"
|
||||
msgstr "工作区说明"
|
||||
|
||||
|
||||
@@ -671,10 +671,10 @@ msgstr "存取金鑰 ID"
|
||||
msgid "Access workspace data"
|
||||
msgstr "存取工作區資料"
|
||||
|
||||
#. js-lingui-id: W5nhmk
|
||||
#. js-lingui-id: c2UA7k
|
||||
#: src/pages/settings/ai/components/SettingsAIMCP.tsx
|
||||
msgid "Access your workspace data from your favorite MCP client like Claude Desktop, Claude Code, Cursor, or ChatGPT. Once connected, try: \"Show me the 5 most recently created companies\" or \"Create a new person named Jane Doe\"."
|
||||
msgstr "透過您偏好的 MCP 用戶端(例如 Claude Desktop、Claude Code、Cursor 或 ChatGPT)存取您的工作區資料。連線後,試試看:\"顯示最近建立的 5 家公司\" 或 \"建立一位名為 Jane Doe 的新聯絡人\"。"
|
||||
msgid "Access your workspace data from your favorite MCP client like Claude Desktop, Windsurf or Cursor."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: u2Cycw
|
||||
#: src/modules/settings/logic-functions/components/SettingsLogicFunctionTabEnvironmentVariablesSection.tsx
|
||||
@@ -899,7 +899,7 @@ msgid "Add custom endpoints, private gateways, or additional regions."
|
||||
msgstr "新增自訂端點、私有閘道,或其他區域。"
|
||||
|
||||
#. js-lingui-id: GuJvBr
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Add custom instructions specific to your workspace (appended to system prompt)"
|
||||
msgstr "新增針對您的工作區的自訂指示(附加到系統提示詞)"
|
||||
|
||||
@@ -1176,11 +1176,6 @@ msgstr "已添加 {beautifyPastDateRelative}"
|
||||
msgid "Added to blocklist"
|
||||
msgstr "已添加到阻止列表"
|
||||
|
||||
#. js-lingui-id: y5mJau
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Additional Instructions"
|
||||
msgstr "附加指示"
|
||||
|
||||
#. js-lingui-id: hW/fMg
|
||||
#: src/modules/ui/field/input/components/AddressInput.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/constants/DefaultSelectionAddressWithMessages.ts
|
||||
@@ -2279,11 +2274,6 @@ msgstr "身份驗證"
|
||||
msgid "Authentication failed"
|
||||
msgstr "身份驗證失敗"
|
||||
|
||||
#. js-lingui-id: TxT0ER
|
||||
#: src/pages/settings/ai/components/SettingsAIMCP.tsx
|
||||
msgid "Authentication method"
|
||||
msgstr "身份驗證方法"
|
||||
|
||||
#. js-lingui-id: H7qgYQ
|
||||
#: src/pages/settings/SettingsTwoFactorAuthenticationMethod.tsx
|
||||
msgid "Authenticator app"
|
||||
@@ -3292,7 +3282,6 @@ msgid "Configuration"
|
||||
msgstr "配置"
|
||||
|
||||
#. js-lingui-id: iAL9tI
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
|
||||
msgid "Configure"
|
||||
msgstr "配置"
|
||||
@@ -5219,7 +5208,7 @@ msgid "e.g. OpenAI EU"
|
||||
msgstr "例如 OpenAI EU"
|
||||
|
||||
#. js-lingui-id: p5P8NB
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "E.g., \"We are a B2B SaaS company. Always use formal language...\""
|
||||
msgstr "例如,\"我們是一家 B2B SaaS 公司。請始終使用正式語言...\""
|
||||
|
||||
@@ -6622,7 +6611,7 @@ msgid "Failed to save role permissions: {errorMessage}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 9ryUyP
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Failed to save workspace instructions"
|
||||
msgstr "儲存工作區指示失敗"
|
||||
|
||||
@@ -10470,11 +10459,6 @@ msgstr "OAuth"
|
||||
msgid "OAuth Credentials"
|
||||
msgstr "OAuth 憑證"
|
||||
|
||||
#. js-lingui-id: LNLTJB
|
||||
#: src/pages/settings/ai/components/SettingsAIMCP.tsx
|
||||
msgid "OAuth or API Key"
|
||||
msgstr "OAuth 或 API 金鑰"
|
||||
|
||||
#. js-lingui-id: pNEViR
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
@@ -10708,6 +10692,7 @@ msgid "Only the timestamp & participants will be shared with your team."
|
||||
msgstr "僅時間戳和參與者將與您的團隊共享。"
|
||||
|
||||
#. js-lingui-id: 1TNIig
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
#: src/modules/command-menu-item/components/RecordShowSidePanelOpenRecordButton.tsx
|
||||
msgid "Open"
|
||||
@@ -11656,6 +11641,22 @@ msgstr "查看更新記錄"
|
||||
msgid "Read documentation"
|
||||
msgstr "閱讀說明文件"
|
||||
|
||||
#. js-lingui-id: U26cMX
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Read system prompts"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: EKsFda
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Read the system prompts to understand how the AI works"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 0URVx8
|
||||
#. placeholder {0}: formatNumber( systemPromptTokenCount, { abbreviate: true, decimals: 1, }, )
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Read the system prompts to understand how the AI works (~{0} tokens)"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: afMuDE
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
msgid "Read your profile"
|
||||
@@ -11708,6 +11709,7 @@ msgstr "紀錄"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/navigation-menu-item/display/object/components/NavigationDrawerItemForObjectMetadataItem.tsx
|
||||
msgid "Record"
|
||||
msgstr "紀錄"
|
||||
|
||||
@@ -12820,6 +12822,11 @@ msgstr "查看活動版本"
|
||||
msgid "See all {relationLabelPlural} linked to this record"
|
||||
msgstr "查看與此記錄連結的所有{relationLabelPlural}"
|
||||
|
||||
#. js-lingui-id: sFsCOG
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
msgid "See data model settings"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: f4Lu+X
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "See deleted dashboards"
|
||||
@@ -12850,6 +12857,12 @@ msgstr "查看已刪除的工作流程"
|
||||
msgid "See Fields"
|
||||
msgstr "查看字段"
|
||||
|
||||
#. js-lingui-id: vn4aKq
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
|
||||
msgid "See records"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: irbH/8
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
msgid "See Records on All Objects"
|
||||
@@ -14042,11 +14055,10 @@ msgstr ""
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/forms/components/SettingsAIAgentForm.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "System Prompt"
|
||||
msgstr "系統提示"
|
||||
|
||||
@@ -15672,11 +15684,6 @@ msgstr ""
|
||||
msgid "View all evaluations"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 3JjgWt
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
msgid "View and customize AI instructions"
|
||||
msgstr "檢視並自訂 AI 指示"
|
||||
|
||||
#. js-lingui-id: XVf/G7
|
||||
#: src/pages/settings/security/SettingsSecurity.tsx
|
||||
msgid "View and filter events, page views, object changes"
|
||||
@@ -15782,11 +15789,6 @@ msgstr ""
|
||||
msgid "view sort"
|
||||
msgstr "視圖排序"
|
||||
|
||||
#. js-lingui-id: FNDoRH
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
msgid "View the AI system prompt and add custom instructions"
|
||||
msgstr "檢視 AI 系統提示詞並新增自訂指示"
|
||||
|
||||
#. js-lingui-id: bJAIqT
|
||||
#: src/modules/views/view-picker/components/ViewPickerContentCreateMode.tsx
|
||||
msgid "View type"
|
||||
@@ -16219,8 +16221,8 @@ msgid "Workspace Info"
|
||||
msgstr "工作區資訊"
|
||||
|
||||
#. js-lingui-id: BYrMT0
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIMoreTab.tsx
|
||||
msgid "Workspace Instructions"
|
||||
msgstr "工作區指示"
|
||||
|
||||
|
||||
@@ -189,23 +189,22 @@ export const AIChatMessage = ({
|
||||
<AIChatErrorRenderer error={error} />
|
||||
)}
|
||||
</StyledMessageContainer>
|
||||
{agentChatMessage.parts.length > 0 &&
|
||||
agentChatMessage.metadata?.createdAt && (
|
||||
<StyledMessageFooter className="message-footer">
|
||||
<StyledMessageTimestamp>
|
||||
{beautifyPastDateRelativeToNow(
|
||||
agentChatMessage.metadata?.createdAt,
|
||||
localeCatalog,
|
||||
)}
|
||||
</StyledMessageTimestamp>
|
||||
<LightCopyIconButton
|
||||
copyText={
|
||||
agentChatMessage.parts.find((part) => part.type === 'text')
|
||||
?.text ?? ''
|
||||
}
|
||||
/>
|
||||
</StyledMessageFooter>
|
||||
)}
|
||||
{agentChatMessage.parts.length > 0 && (
|
||||
<StyledMessageFooter className="message-footer">
|
||||
<StyledMessageTimestamp>
|
||||
{beautifyPastDateRelativeToNow(
|
||||
agentChatMessage.metadata?.createdAt ?? new Date(),
|
||||
localeCatalog,
|
||||
)}
|
||||
</StyledMessageTimestamp>
|
||||
<LightCopyIconButton
|
||||
copyText={
|
||||
agentChatMessage.parts.find((part) => part.type === 'text')
|
||||
?.text ?? ''
|
||||
}
|
||||
/>
|
||||
</StyledMessageFooter>
|
||||
)}
|
||||
</StyledMessageBubble>
|
||||
);
|
||||
};
|
||||
|
||||
@@ -0,0 +1,100 @@
|
||||
import { styled } from '@linaria/react';
|
||||
|
||||
import { AGENT_CHAT_REFETCH_MESSAGES_EVENT_NAME } from '@/ai/constants/AgentChatRefetchMessagesEventName';
|
||||
import { agentChatQueuedMessagesComponentFamilyState } from '@/ai/states/agentChatQueuedMessagesComponentFamilyState';
|
||||
import { currentAIChatThreadState } from '@/ai/states/currentAIChatThreadState';
|
||||
import { REST_API_BASE_URL } from '@/apollo/constant/rest-api-base-url';
|
||||
import { getTokenPair } from '@/apollo/utils/getTokenPair';
|
||||
import { dispatchBrowserEvent } from '@/browser-event/utils/dispatchBrowserEvent';
|
||||
import { useAtomComponentFamilyStateValue } from '@/ui/utilities/state/jotai/hooks/useAtomComponentFamilyStateValue';
|
||||
import { useAtomStateValue } from '@/ui/utilities/state/jotai/hooks/useAtomStateValue';
|
||||
import { isDefined } from 'twenty-shared/utils';
|
||||
import { IconX } from 'twenty-ui/display';
|
||||
import { LightIconButton } from 'twenty-ui/input';
|
||||
import { themeCssVariables } from 'twenty-ui/theme-constants';
|
||||
|
||||
const StyledQueueContainer = styled.div`
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: ${themeCssVariables.spacing[1]};
|
||||
padding: 0 ${themeCssVariables.spacing[3]};
|
||||
`;
|
||||
|
||||
const StyledQueueLabel = styled.div`
|
||||
color: ${themeCssVariables.font.color.light};
|
||||
font-size: ${themeCssVariables.font.size.xs};
|
||||
padding-left: ${themeCssVariables.spacing[1]};
|
||||
`;
|
||||
|
||||
const StyledQueuedItem = styled.div`
|
||||
align-items: center;
|
||||
background: ${themeCssVariables.background.tertiary};
|
||||
border-radius: ${themeCssVariables.border.radius.sm};
|
||||
color: ${themeCssVariables.font.color.secondary};
|
||||
display: flex;
|
||||
font-size: ${themeCssVariables.font.size.md};
|
||||
gap: ${themeCssVariables.spacing[2]};
|
||||
justify-content: space-between;
|
||||
padding: ${themeCssVariables.spacing[1]} ${themeCssVariables.spacing[2]};
|
||||
`;
|
||||
|
||||
const StyledQueuedText = styled.span`
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
`;
|
||||
|
||||
export const AIChatQueuedMessages = () => {
|
||||
const currentAIChatThread = useAtomStateValue(currentAIChatThreadState);
|
||||
const queuedMessages = useAtomComponentFamilyStateValue(
|
||||
agentChatQueuedMessagesComponentFamilyState,
|
||||
{ threadId: currentAIChatThread },
|
||||
);
|
||||
|
||||
if (!isDefined(currentAIChatThread) || queuedMessages.length === 0) {
|
||||
return null;
|
||||
}
|
||||
|
||||
const handleRemove = (messageId: string) => {
|
||||
const tokenPair = getTokenPair();
|
||||
|
||||
if (!isDefined(tokenPair)) {
|
||||
return;
|
||||
}
|
||||
|
||||
fetch(
|
||||
`${REST_API_BASE_URL}/agent-chat/${currentAIChatThread}/queue/${messageId}`,
|
||||
{
|
||||
method: 'DELETE',
|
||||
headers: {
|
||||
Authorization: `Bearer ${tokenPair.accessOrWorkspaceAgnosticToken.token}`,
|
||||
},
|
||||
},
|
||||
)
|
||||
.then(() => {
|
||||
dispatchBrowserEvent(AGENT_CHAT_REFETCH_MESSAGES_EVENT_NAME);
|
||||
})
|
||||
.catch(() => {});
|
||||
};
|
||||
|
||||
return (
|
||||
<StyledQueueContainer>
|
||||
<StyledQueueLabel>{queuedMessages.length} Queued</StyledQueueLabel>
|
||||
{queuedMessages.map((message) => {
|
||||
const textPart = message.parts?.find((part) => part.type === 'text');
|
||||
const displayText = textPart && 'text' in textPart ? textPart.text : '';
|
||||
|
||||
return (
|
||||
<StyledQueuedItem key={message.id}>
|
||||
<StyledQueuedText>{displayText}</StyledQueuedText>
|
||||
<LightIconButton
|
||||
Icon={IconX}
|
||||
onClick={() => handleRemove(message.id)}
|
||||
size="small"
|
||||
/>
|
||||
</StyledQueuedItem>
|
||||
);
|
||||
})}
|
||||
</StyledQueueContainer>
|
||||
);
|
||||
};
|
||||
@@ -10,6 +10,7 @@ import { currentAIChatThreadState } from '@/ai/states/currentAIChatThreadState';
|
||||
import { threadIdCreatedFromDraftState } from '@/ai/states/threadIdCreatedFromDraftState';
|
||||
import { useAtomStateValue } from '@/ui/utilities/state/jotai/hooks/useAtomStateValue';
|
||||
|
||||
import { AIChatQueuedMessages } from '@/ai/components/AIChatQueuedMessages';
|
||||
import { AIChatTabMessageList } from '@/ai/components/AIChatTabMessageList';
|
||||
|
||||
const StyledContainer = styled.div<{ isDraggingFile: boolean }>`
|
||||
@@ -51,6 +52,7 @@ export const AIChatTab = () => {
|
||||
{!isDraggingFile && (
|
||||
<>
|
||||
<AIChatTabMessageList />
|
||||
<AIChatQueuedMessages />
|
||||
<AIChatEditorSection key={editorSectionKey} />
|
||||
</>
|
||||
)}
|
||||
|
||||
@@ -6,6 +6,7 @@ import { AGENT_CHAT_UNKNOWN_THREAD_ID } from '@/ai/constants/AgentChatUnknownThr
|
||||
import { AGENT_CHAT_NEW_THREAD_DRAFT_KEY } from '@/ai/states/agentChatDraftsByThreadIdState';
|
||||
import { agentChatFetchedMessagesComponentFamilyState } from '@/ai/states/agentChatFetchedMessagesComponentFamilyState';
|
||||
import { agentChatMessagesLoadingState } from '@/ai/states/agentChatMessagesLoadingState';
|
||||
import { agentChatQueuedMessagesComponentFamilyState } from '@/ai/states/agentChatQueuedMessagesComponentFamilyState';
|
||||
import { currentAIChatThreadState } from '@/ai/states/currentAIChatThreadState';
|
||||
import { skipMessagesSkeletonUntilLoadedState } from '@/ai/states/skipMessagesSkeletonUntilLoadedState';
|
||||
import { mapDBMessagesToUIMessages } from '@/ai/utils/mapDBMessagesToUIMessages';
|
||||
@@ -42,6 +43,11 @@ export const AgentChatMessagesFetchEffect = () => {
|
||||
{ threadId: currentAIChatThread },
|
||||
);
|
||||
|
||||
const setAgentChatQueuedMessages = useSetAtomComponentFamilyState(
|
||||
agentChatQueuedMessagesComponentFamilyState,
|
||||
{ threadId: currentAIChatThread },
|
||||
);
|
||||
|
||||
const handleFirstLoad = useCallback(
|
||||
(_data: GetChatMessagesQuery) => {
|
||||
setSkipMessagesSkeletonUntilLoaded(false);
|
||||
@@ -52,9 +58,14 @@ export const AgentChatMessagesFetchEffect = () => {
|
||||
const handleDataLoaded = useCallback(
|
||||
(data: GetChatMessagesQuery) => {
|
||||
const uiMessages = mapDBMessagesToUIMessages(data.chatMessages ?? []);
|
||||
setAgentChatFetchedMessages(uiMessages);
|
||||
setAgentChatFetchedMessages(
|
||||
uiMessages.filter((message) => message.status !== 'queued'),
|
||||
);
|
||||
setAgentChatQueuedMessages(
|
||||
uiMessages.filter((message) => message.status === 'queued'),
|
||||
);
|
||||
},
|
||||
[setAgentChatFetchedMessages],
|
||||
[setAgentChatFetchedMessages, setAgentChatQueuedMessages],
|
||||
);
|
||||
|
||||
const handleLoadingChange = useCallback(
|
||||
|
||||
@@ -7,6 +7,7 @@ export const GET_CHAT_MESSAGES = gql`
|
||||
threadId
|
||||
turnId
|
||||
role
|
||||
status
|
||||
createdAt
|
||||
parts {
|
||||
id
|
||||
|
||||
@@ -15,12 +15,14 @@ import {
|
||||
agentChatDraftsByThreadIdState,
|
||||
} from '@/ai/states/agentChatDraftsByThreadIdState';
|
||||
import { agentChatInputState } from '@/ai/states/agentChatInputState';
|
||||
import { AGENT_CHAT_REFETCH_MESSAGES_EVENT_NAME } from '@/ai/constants/AgentChatRefetchMessagesEventName';
|
||||
import { useAgentChatModelId } from '@/ai/hooks/useAgentChatModelId';
|
||||
import { REST_API_BASE_URL } from '@/apollo/constant/rest-api-base-url';
|
||||
import { getTokenPair } from '@/apollo/utils/getTokenPair';
|
||||
import { renewToken } from '@/auth/services/AuthService';
|
||||
import { tokenPairState } from '@/auth/states/tokenPairState';
|
||||
import { useListenToBrowserEvent } from '@/browser-event/hooks/useListenToBrowserEvent';
|
||||
import { dispatchBrowserEvent } from '@/browser-event/utils/dispatchBrowserEvent';
|
||||
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';
|
||||
@@ -239,7 +241,8 @@ export const useAgentChat = (
|
||||
});
|
||||
|
||||
const isStreaming = status === 'streaming';
|
||||
const isLoading = isStreaming || agentChatSelectedFiles.length > 0;
|
||||
const isBusy = isStreaming || status === 'submitted';
|
||||
const isLoading = isBusy || agentChatSelectedFiles.length > 0;
|
||||
|
||||
const handleSendMessage = useCallback(async () => {
|
||||
const draftKey =
|
||||
@@ -254,7 +257,50 @@ export const useAgentChat = (
|
||||
).trim()
|
||||
: store.get(agentChatInputState.atom).trim();
|
||||
|
||||
if (contentToSend === '' || isLoading) {
|
||||
if (contentToSend === '') {
|
||||
return;
|
||||
}
|
||||
|
||||
if (isBusy) {
|
||||
const threadId = store.get(currentAIChatThreadState.atom);
|
||||
|
||||
if (!isDefined(threadId) || !isValidUuid(threadId)) {
|
||||
return;
|
||||
}
|
||||
|
||||
const tokenPair = getTokenPair();
|
||||
|
||||
if (!isDefined(tokenPair)) {
|
||||
return;
|
||||
}
|
||||
|
||||
// Queue message on the server
|
||||
fetch(`${REST_API_BASE_URL}/agent-chat/${threadId}/queue`, {
|
||||
method: 'POST',
|
||||
headers: {
|
||||
Authorization: `Bearer ${tokenPair.accessOrWorkspaceAgnosticToken.token}`,
|
||||
'Content-Type': 'application/json',
|
||||
},
|
||||
body: JSON.stringify({
|
||||
text: contentToSend,
|
||||
}),
|
||||
})
|
||||
.then(() => {
|
||||
// Refetch messages to show the queued message in the UI
|
||||
dispatchBrowserEvent(AGENT_CHAT_REFETCH_MESSAGES_EVENT_NAME);
|
||||
})
|
||||
.catch(() => {});
|
||||
|
||||
setAgentChatInput('');
|
||||
setAgentChatDraftsByThreadId((prev) => ({
|
||||
...prev,
|
||||
[draftKey]: '',
|
||||
}));
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
if (isLoading) {
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -295,6 +341,7 @@ export const useAgentChat = (
|
||||
}, [
|
||||
store,
|
||||
isLoading,
|
||||
isBusy,
|
||||
ensureThreadIdForSend,
|
||||
setAgentChatInput,
|
||||
getBrowsingContext,
|
||||
|
||||
+10
@@ -0,0 +1,10 @@
|
||||
import { AgentChatComponentInstanceContext } from '@/ai/states/AgentChatComponentInstanceContext';
|
||||
import { createAtomComponentFamilyState } from '@/ui/utilities/state/jotai/utils/createAtomComponentFamilyState';
|
||||
import { type ExtendedUIMessage } from 'twenty-shared/ai';
|
||||
|
||||
export const agentChatQueuedMessagesComponentFamilyState =
|
||||
createAtomComponentFamilyState<ExtendedUIMessage[], { threadId: string }>({
|
||||
key: 'agentChatQueuedMessagesComponentFamilyState',
|
||||
defaultValue: [],
|
||||
componentInstanceContext: AgentChatComponentInstanceContext,
|
||||
});
|
||||
@@ -8,6 +8,7 @@ export const mapDBMessagesToUIMessages = (
|
||||
return dbMessages.map((dbMessage) => ({
|
||||
id: dbMessage.id,
|
||||
role: dbMessage.role as ExtendedUIMessage['role'],
|
||||
status: dbMessage.status as 'queued' | 'sent',
|
||||
parts: dbMessage.parts.map(mapDBPartToUIMessagePart),
|
||||
metadata: {
|
||||
createdAt: dbMessage.createdAt,
|
||||
|
||||
+1
-5
@@ -1,9 +1,7 @@
|
||||
import { commandMenuItemsDraftState } from '@/command-menu-item/server-items/edit/states/commandMenuItemsDraftState';
|
||||
import { activeCustomizationPageLayoutIdsState } from '@/layout-customization/states/activeCustomizationPageLayoutIdsState';
|
||||
import { isLayoutCustomizationModeEnabledState } from '@/layout-customization/states/isLayoutCustomizationModeEnabledState';
|
||||
import { navigationMenuItemsDraftState } from '@/navigation-menu-item/common/states/navigationMenuItemsDraftState';
|
||||
import { selectedNavigationMenuItemIdInEditModeState } from '@/navigation-menu-item/common/states/selectedNavigationMenuItemIdInEditModeState';
|
||||
import { currentPageLayoutIdState } from '@/page-layout/states/currentPageLayoutIdState';
|
||||
import { useSidePanelMenu } from '@/side-panel/hooks/useSidePanelMenu';
|
||||
import { useSetAtomState } from '@/ui/utilities/state/jotai/hooks/useSetAtomState';
|
||||
import { useStore } from 'jotai';
|
||||
@@ -11,6 +9,7 @@ import { useCallback } from 'react';
|
||||
|
||||
export const useExitLayoutCustomizationMode = () => {
|
||||
const store = useStore();
|
||||
|
||||
const { closeSidePanelMenu } = useSidePanelMenu();
|
||||
|
||||
const setNavigationMenuItemsDraft = useSetAtomState(
|
||||
@@ -27,9 +26,6 @@ export const useExitLayoutCustomizationMode = () => {
|
||||
setNavigationMenuItemsDraft(null);
|
||||
setSelectedNavigationMenuItemIdInEditMode(null);
|
||||
store.set(commandMenuItemsDraftState.atom, null);
|
||||
|
||||
store.set(currentPageLayoutIdState.atom, null);
|
||||
store.set(activeCustomizationPageLayoutIdsState.atom, []);
|
||||
setIsLayoutCustomizationModeEnabled(false);
|
||||
closeSidePanelMenu();
|
||||
}, [
|
||||
|
||||
+5
-5
@@ -18,11 +18,11 @@ export const computeDndReorderPosition = ({
|
||||
const listWithoutDragged = sortedList.filter(
|
||||
(item) => item.id !== draggableId,
|
||||
);
|
||||
const adjustedIndex =
|
||||
sourceIndexInList < destinationIndex &&
|
||||
destinationIndex <= listWithoutDragged.length
|
||||
? destinationIndex - 1
|
||||
: destinationIndex;
|
||||
let adjustedIndex = destinationIndex;
|
||||
if (sourceIndexInList < destinationIndex) {
|
||||
adjustedIndex -= 1;
|
||||
}
|
||||
adjustedIndex = Math.min(adjustedIndex, listWithoutDragged.length);
|
||||
const prevItem = listWithoutDragged[adjustedIndex - 1];
|
||||
const nextItem = listWithoutDragged[adjustedIndex];
|
||||
|
||||
|
||||
+17
-2
@@ -5,7 +5,10 @@ import { themeCssVariables } from 'twenty-ui/theme-constants';
|
||||
import { type NavigationSections } from '@/navigation-menu-item/common/constants/NavigationSections.constants';
|
||||
import { NavigationDropTargetContext } from '@/navigation-menu-item/common/contexts/NavigationDropTargetContext';
|
||||
|
||||
const StyledDropTarget = styled.div<{ $compact?: boolean }>`
|
||||
const StyledDropTarget = styled.div<{
|
||||
$compact?: boolean;
|
||||
$highlightPosition?: 'top' | 'bottom';
|
||||
}>`
|
||||
min-height: ${({ $compact }) =>
|
||||
$compact ? 0 : themeCssVariables.spacing[2]};
|
||||
position: relative;
|
||||
@@ -17,13 +20,22 @@ const StyledDropTarget = styled.div<{ $compact?: boolean }>`
|
||||
&::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
background-color: ${themeCssVariables.color.blue};
|
||||
${({ $highlightPosition }) =>
|
||||
$highlightPosition === 'top'
|
||||
? `
|
||||
top: 0;
|
||||
border-radius: 0 0 ${themeCssVariables.border.radius.sm}
|
||||
${themeCssVariables.border.radius.sm};
|
||||
`
|
||||
: `
|
||||
bottom: 0;
|
||||
border-radius: ${themeCssVariables.border.radius.sm}
|
||||
${themeCssVariables.border.radius.sm} 0 0;
|
||||
`}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -39,6 +51,7 @@ type NavigationItemDropTargetProps = {
|
||||
children?: ReactNode;
|
||||
compact?: boolean;
|
||||
dropTargetIdOverride?: string;
|
||||
highlightPosition?: 'top' | 'bottom';
|
||||
};
|
||||
|
||||
export const NavigationItemDropTarget = ({
|
||||
@@ -48,6 +61,7 @@ export const NavigationItemDropTarget = ({
|
||||
children,
|
||||
compact = false,
|
||||
dropTargetIdOverride,
|
||||
highlightPosition = 'bottom',
|
||||
}: NavigationItemDropTargetProps) => {
|
||||
const { activeDropTargetId, forbiddenDropTargetId } = useContext(
|
||||
NavigationDropTargetContext,
|
||||
@@ -60,6 +74,7 @@ export const NavigationItemDropTarget = ({
|
||||
return (
|
||||
<StyledDropTarget
|
||||
$compact={compact}
|
||||
$highlightPosition={highlightPosition}
|
||||
data-drag-over={isDragOver && !isDropForbidden ? 'true' : undefined}
|
||||
data-drop-forbidden={isDropForbidden ? 'true' : undefined}
|
||||
>
|
||||
|
||||
+5
@@ -1,6 +1,7 @@
|
||||
import { NavigationMenuItemType } from 'twenty-shared/types';
|
||||
import { type NavigationMenuItem } from '~/generated-metadata/graphql';
|
||||
|
||||
import { isLayoutCustomizationModeEnabledState } from '@/layout-customization/states/isLayoutCustomizationModeEnabledState';
|
||||
import { getWorkspaceSidebarOrphanItemsInDisplayOrder } from '@/navigation-menu-item/display/utils/getWorkspaceSidebarOrphanItemsInDisplayOrder';
|
||||
import { objectMetadataItemsSelector } from '@/object-metadata/states/objectMetadataItemsSelector';
|
||||
import { type EnrichedObjectMetadataItem } from '@/object-metadata/types/EnrichedObjectMetadataItem';
|
||||
@@ -22,6 +23,9 @@ export const useNavigationMenuItemSectionItems = (): NavigationMenuItem[] => {
|
||||
const { workspaceNavigationMenuItemsSorted } = useSortedNavigationMenuItems();
|
||||
const { workspaceNavigationMenuItemsByFolder } =
|
||||
useNavigationMenuItemsByFolder();
|
||||
const isLayoutCustomizationModeEnabled = useAtomStateValue(
|
||||
isLayoutCustomizationModeEnabledState,
|
||||
);
|
||||
const views = useAtomStateValue(viewsSelector);
|
||||
const objectMetadataItems = useAtomStateValue(objectMetadataItemsSelector);
|
||||
const { objectPermissionsByObjectMetadataId } = useObjectPermissions();
|
||||
@@ -39,6 +43,7 @@ export const useNavigationMenuItemSectionItems = (): NavigationMenuItem[] => {
|
||||
objectMetadataItems,
|
||||
views,
|
||||
objectPermissionsByObjectMetadataId,
|
||||
includeInaccessibleObjectBackedItems: isLayoutCustomizationModeEnabled,
|
||||
});
|
||||
|
||||
return flatItems.flatMap((item) =>
|
||||
|
||||
+44
-9
@@ -1,14 +1,18 @@
|
||||
import type { ReactNode } from 'react';
|
||||
import { t } from '@lingui/core/macro';
|
||||
import { isNonEmptyString } from '@sniptt/guards';
|
||||
import { Fragment, type ReactNode, useContext } from 'react';
|
||||
|
||||
import { isLayoutCustomizationModeEnabledState } from '@/layout-customization/states/isLayoutCustomizationModeEnabledState';
|
||||
import { ObjectIconWithViewOverlay } from '@/navigation-menu-item/display/view/components/ObjectIconWithViewOverlay';
|
||||
import { getObjectColorWithFallback } from '@/object-metadata/utils/getObjectColorWithFallback';
|
||||
import { recordIdentifierToObjectRecordIdentifier } from '@/navigation-menu-item/common/utils/recordIdentifierToObjectRecordIdentifier';
|
||||
import { getNavigationMenuItemComputedLink } from '@/navigation-menu-item/display/utils/getNavigationMenuItemComputedLink';
|
||||
import { getNavigationMenuItemLabel } from '@/navigation-menu-item/display/utils/getNavigationMenuItemLabel';
|
||||
import { recordIdentifierToObjectRecordIdentifier } from '@/navigation-menu-item/common/utils/recordIdentifierToObjectRecordIdentifier';
|
||||
import { ObjectIconWithViewOverlay } from '@/navigation-menu-item/display/view/components/ObjectIconWithViewOverlay';
|
||||
import { lastVisitedViewPerObjectMetadataItemState } from '@/navigation/states/lastVisitedViewPerObjectMetadataItemState';
|
||||
import { objectMetadataItemsSelector } from '@/object-metadata/states/objectMetadataItemsSelector';
|
||||
import { type EnrichedObjectMetadataItem } from '@/object-metadata/types/EnrichedObjectMetadataItem';
|
||||
import { getObjectColorWithFallback } from '@/object-metadata/utils/getObjectColorWithFallback';
|
||||
import { getObjectPermissionsForObject } from '@/object-metadata/utils/getObjectPermissionsForObject';
|
||||
import { useObjectPermissions } from '@/object-record/hooks/useObjectPermissions';
|
||||
import { NavigationDrawerItem } from '@/ui/navigation/navigation-drawer/components/NavigationDrawerItem';
|
||||
import { useAtomStateValue } from '@/ui/utilities/state/jotai/hooks/useAtomStateValue';
|
||||
import { viewsSelector } from '@/views/states/selectors/viewsSelector';
|
||||
@@ -19,7 +23,8 @@ import {
|
||||
NavigationMenuItemType,
|
||||
} from 'twenty-shared/types';
|
||||
import { getAppPath, isDefined } from 'twenty-shared/utils';
|
||||
import { Avatar, useIcons } from 'twenty-ui/display';
|
||||
import { Avatar, IconLock, useIcons } from 'twenty-ui/display';
|
||||
import { ThemeContext, themeCssVariables } from 'twenty-ui/theme-constants';
|
||||
import { type NavigationMenuItem } from '~/generated-metadata/graphql';
|
||||
|
||||
export type NavigationDrawerItemForObjectMetadataItemProps = {
|
||||
@@ -44,12 +49,19 @@ export const NavigationDrawerItemForObjectMetadataItem = ({
|
||||
const isLayoutCustomizationModeEnabled = useAtomStateValue(
|
||||
isLayoutCustomizationModeEnabledState,
|
||||
);
|
||||
const { objectPermissionsByObjectMetadataId } = useObjectPermissions();
|
||||
const { theme } = useContext(ThemeContext);
|
||||
const lastVisitedViewPerObjectMetadataItem = useAtomStateValue(
|
||||
lastVisitedViewPerObjectMetadataItemState,
|
||||
);
|
||||
const objectMetadataItems = useAtomStateValue(objectMetadataItemsSelector);
|
||||
const views = useAtomStateValue(viewsSelector);
|
||||
|
||||
const canReadObjectRecords = getObjectPermissionsForObject(
|
||||
objectPermissionsByObjectMetadataId,
|
||||
objectMetadataItem.id,
|
||||
).canReadObjectRecords;
|
||||
|
||||
const lastVisitedViewId =
|
||||
lastVisitedViewPerObjectMetadataItem?.[objectMetadataItem.id];
|
||||
|
||||
@@ -107,12 +119,19 @@ export const NavigationDrawerItemForObjectMetadataItem = ({
|
||||
? getNavigationMenuItemLabel(navigationMenuItem, objectMetadataItems, views)
|
||||
: objectMetadataItem.labelPlural;
|
||||
|
||||
const label = isRecord
|
||||
? itemLabel
|
||||
: isViewWithResolvedView
|
||||
const primaryLabel =
|
||||
isRecord || isViewWithResolvedView
|
||||
? itemLabel
|
||||
: objectMetadataItem.labelPlural;
|
||||
|
||||
const needsInaccessibleRecordPlaceholder =
|
||||
isLayoutCustomizationModeEnabled &&
|
||||
isRecord &&
|
||||
!canReadObjectRecords &&
|
||||
!isNonEmptyString(primaryLabel.trim());
|
||||
|
||||
const label = needsInaccessibleRecordPlaceholder ? t`Record` : primaryLabel;
|
||||
|
||||
const recordIdentifier =
|
||||
isRecord && isDefined(navigationMenuItem?.targetRecordIdentifier)
|
||||
? recordIdentifierToObjectRecordIdentifier({
|
||||
@@ -151,6 +170,9 @@ export const NavigationDrawerItemForObjectMetadataItem = ({
|
||||
? objectMetadataItem.labelSingular
|
||||
: undefined;
|
||||
|
||||
const showInaccessibleLock =
|
||||
isLayoutCustomizationModeEnabled && !canReadObjectRecords;
|
||||
|
||||
return (
|
||||
<NavigationDrawerItem
|
||||
label={label}
|
||||
@@ -169,7 +191,20 @@ export const NavigationDrawerItemForObjectMetadataItem = ({
|
||||
isSelectedInEditMode={isSelectedInEditMode}
|
||||
isDragging={isDragging}
|
||||
triggerEvent={isLayoutCustomizationModeEnabled ? 'CLICK' : undefined}
|
||||
rightOptions={rightOptions}
|
||||
alwaysShowRightOptions={showInaccessibleLock}
|
||||
rightOptions={
|
||||
showInaccessibleLock ? (
|
||||
<Fragment>
|
||||
<IconLock
|
||||
size={theme.icon.size.sm}
|
||||
stroke={theme.icon.stroke.sm}
|
||||
color={themeCssVariables.font.color.tertiary}
|
||||
/>
|
||||
</Fragment>
|
||||
) : (
|
||||
rightOptions
|
||||
)
|
||||
}
|
||||
/>
|
||||
);
|
||||
};
|
||||
|
||||
+3
@@ -11,6 +11,7 @@ type NavigationMenuItemOrphanDropTargetProps = {
|
||||
children?: ReactNode;
|
||||
sectionId?: NavigationSections;
|
||||
droppableId?: string;
|
||||
highlightPosition?: 'top' | 'bottom';
|
||||
};
|
||||
|
||||
export const NavigationMenuItemOrphanDropTarget = ({
|
||||
@@ -19,6 +20,7 @@ export const NavigationMenuItemOrphanDropTarget = ({
|
||||
children,
|
||||
sectionId = NavigationSections.WORKSPACE,
|
||||
droppableId = NavigationMenuItemDroppableIds.WORKSPACE_ORPHAN_NAVIGATION_MENU_ITEMS,
|
||||
highlightPosition = 'bottom',
|
||||
}: NavigationMenuItemOrphanDropTargetProps) => (
|
||||
<NavigationItemDropTarget
|
||||
folderId={null}
|
||||
@@ -26,6 +28,7 @@ export const NavigationMenuItemOrphanDropTarget = ({
|
||||
sectionId={sectionId}
|
||||
compact={compact}
|
||||
dropTargetIdOverride={getDndKitDropTargetId(droppableId, index)}
|
||||
highlightPosition={highlightPosition}
|
||||
>
|
||||
{children}
|
||||
</NavigationItemDropTarget>
|
||||
|
||||
+6
-2
@@ -111,6 +111,10 @@ export const WorkspaceSectionContainer = ({
|
||||
return false;
|
||||
});
|
||||
|
||||
const workspaceOrphanItemsForSection = isLayoutCustomizationModeEnabled
|
||||
? flatItems
|
||||
: filteredItems;
|
||||
|
||||
const getEditModeProps = (item: NavigationMenuItem): EditModeProps => {
|
||||
const itemId = item.id;
|
||||
return {
|
||||
@@ -159,14 +163,14 @@ export const WorkspaceSectionContainer = ({
|
||||
<Suspense
|
||||
fallback={
|
||||
<WorkspaceSectionListEditModeFallback
|
||||
filteredItems={filteredItems}
|
||||
filteredItems={workspaceOrphanItemsForSection}
|
||||
folderChildrenById={folderChildrenById}
|
||||
onActiveObjectMetadataItemClick={onActiveObjectMetadataItemClick}
|
||||
/>
|
||||
}
|
||||
>
|
||||
<LazyWorkspaceSectionListDndKit
|
||||
filteredItems={filteredItems}
|
||||
filteredItems={workspaceOrphanItemsForSection}
|
||||
getEditModeProps={getEditModeProps}
|
||||
folderChildrenById={folderChildrenById}
|
||||
onNavigationMenuItemClick={onNavigationMenuItemClick}
|
||||
|
||||
+42
-28
@@ -1,20 +1,23 @@
|
||||
import { NavigationMenuItemDroppableSlot } from '@/navigation-menu-item/display/dnd/components/NavigationMenuItemDroppableSlot';
|
||||
import { NavigationMenuItemSortableItem } from '@/navigation-menu-item/display/dnd/components/NavigationMenuItemSortableItem';
|
||||
import { isLayoutCustomizationModeEnabledState } from '@/layout-customization/states/isLayoutCustomizationModeEnabledState';
|
||||
import { NavigationMenuItemDroppableIds } from '@/navigation-menu-item/common/constants/NavigationMenuItemDroppableIds';
|
||||
import { NavigationMenuItemType } from 'twenty-shared/types';
|
||||
import { NavigationDropTargetContext } from '@/navigation-menu-item/common/contexts/NavigationDropTargetContext';
|
||||
import {
|
||||
FOLDER_HEADER_SLOT_COLLISION_PRIORITY,
|
||||
NavigationMenuItemDroppableSlot,
|
||||
} from '@/navigation-menu-item/display/dnd/components/NavigationMenuItemDroppableSlot';
|
||||
import { NavigationMenuItemSortableItem } from '@/navigation-menu-item/display/dnd/components/NavigationMenuItemSortableItem';
|
||||
import { useIsDropDisabledForSection } from '@/navigation-menu-item/display/dnd/hooks/useIsDropDisabledForSection';
|
||||
import { useAtomStateValue } from '@/ui/utilities/state/jotai/hooks/useAtomStateValue';
|
||||
import { styled } from '@linaria/react';
|
||||
import { useContext } from 'react';
|
||||
import { NavigationMenuItemType } from 'twenty-shared/types';
|
||||
import { themeCssVariables } from 'twenty-ui/theme-constants';
|
||||
|
||||
import { NavigationMenuItemDragContext } from '@/navigation-menu-item/common/contexts/NavigationMenuItemDragContext';
|
||||
import { NavigationMenuItemDisplay } from '@/navigation-menu-item/display/components/NavigationMenuItemDisplay';
|
||||
import { NavigationMenuItemOrphanDropTarget } from '@/navigation-menu-item/display/sections/components/NavigationMenuItemOrphanDropTarget';
|
||||
import { WorkspaceSectionAddMenuItemButton } from '@/navigation-menu-item/edit/components/WorkspaceSectionAddMenuItemButton';
|
||||
import type { NavigationMenuItemSectionListDndKitProps } from '@/navigation-menu-item/display/sections/types/NavigationMenuItemSectionListDndKitProps';
|
||||
import { WorkspaceSectionAddMenuItemButton } from '@/navigation-menu-item/edit/components/WorkspaceSectionAddMenuItemButton';
|
||||
|
||||
type WorkspaceSectionListDndKitProps = NavigationMenuItemSectionListDndKitProps;
|
||||
|
||||
@@ -31,6 +34,10 @@ const StyledListItemRow = styled.div`
|
||||
gap: 0;
|
||||
`;
|
||||
|
||||
const StyledOrphanAppendSlotOverlap = styled.div`
|
||||
margin-top: calc(-1 * ${themeCssVariables.betweenSiblingsGap});
|
||||
`;
|
||||
|
||||
export const WorkspaceSectionListDndKit = ({
|
||||
filteredItems,
|
||||
getEditModeProps,
|
||||
@@ -50,6 +57,7 @@ export const WorkspaceSectionListDndKit = ({
|
||||
(item) => item.type === NavigationMenuItemType.FOLDER,
|
||||
).length;
|
||||
const isAddMenuItemButtonVisible = isLayoutCustomizationModeEnabled;
|
||||
const orphanAppendDndIndex = filteredItems.length;
|
||||
return (
|
||||
<StyledList>
|
||||
{filteredItems.map((item, index) => (
|
||||
@@ -78,35 +86,41 @@ export const WorkspaceSectionListDndKit = ({
|
||||
</NavigationMenuItemSortableItem>
|
||||
</StyledListItemRow>
|
||||
))}
|
||||
<NavigationMenuItemDroppableSlot
|
||||
droppableId={
|
||||
NavigationMenuItemDroppableIds.WORKSPACE_ORPHAN_NAVIGATION_MENU_ITEMS
|
||||
}
|
||||
index={filteredItems.length}
|
||||
disabled={workspaceDropDisabled}
|
||||
>
|
||||
<NavigationMenuItemOrphanDropTarget
|
||||
index={filteredItems.length}
|
||||
compact={!isAddMenuItemButtonVisible}
|
||||
<StyledOrphanAppendSlotOverlap>
|
||||
<NavigationMenuItemDroppableSlot
|
||||
droppableId={
|
||||
NavigationMenuItemDroppableIds.WORKSPACE_ORPHAN_NAVIGATION_MENU_ITEMS
|
||||
}
|
||||
index={orphanAppendDndIndex}
|
||||
disabled={workspaceDropDisabled}
|
||||
collisionPriority={FOLDER_HEADER_SLOT_COLLISION_PRIORITY}
|
||||
>
|
||||
<NavigationMenuItemOrphanDropTarget
|
||||
index={orphanAppendDndIndex}
|
||||
compact
|
||||
highlightPosition="top"
|
||||
/>
|
||||
{isAddMenuItemButtonVisible && <WorkspaceSectionAddMenuItemButton />}
|
||||
</NavigationMenuItemOrphanDropTarget>
|
||||
</NavigationMenuItemDroppableSlot>
|
||||
</NavigationMenuItemDroppableSlot>
|
||||
</StyledOrphanAppendSlotOverlap>
|
||||
{addToNavigationFallbackDestination?.droppableId ===
|
||||
NavigationMenuItemDroppableIds.WORKSPACE_ORPHAN_NAVIGATION_MENU_ITEMS &&
|
||||
addToNavigationFallbackDestination.index > filteredItems.length && (
|
||||
<NavigationMenuItemDroppableSlot
|
||||
droppableId={
|
||||
NavigationMenuItemDroppableIds.WORKSPACE_ORPHAN_NAVIGATION_MENU_ITEMS
|
||||
}
|
||||
index={addToNavigationFallbackDestination.index}
|
||||
disabled={workspaceDropDisabled}
|
||||
>
|
||||
<NavigationMenuItemOrphanDropTarget
|
||||
addToNavigationFallbackDestination.index > orphanAppendDndIndex && (
|
||||
<StyledOrphanAppendSlotOverlap>
|
||||
<NavigationMenuItemDroppableSlot
|
||||
droppableId={
|
||||
NavigationMenuItemDroppableIds.WORKSPACE_ORPHAN_NAVIGATION_MENU_ITEMS
|
||||
}
|
||||
index={addToNavigationFallbackDestination.index}
|
||||
compact
|
||||
/>
|
||||
</NavigationMenuItemDroppableSlot>
|
||||
disabled={workspaceDropDisabled}
|
||||
collisionPriority={FOLDER_HEADER_SLOT_COLLISION_PRIORITY}
|
||||
>
|
||||
<NavigationMenuItemOrphanDropTarget
|
||||
index={addToNavigationFallbackDestination.index}
|
||||
compact
|
||||
/>
|
||||
</NavigationMenuItemDroppableSlot>
|
||||
</StyledOrphanAppendSlotOverlap>
|
||||
)}
|
||||
</StyledList>
|
||||
);
|
||||
|
||||
+28
-18
@@ -17,6 +17,7 @@ type GetWorkspaceSidebarOrphanItemsInDisplayOrderArgs = {
|
||||
objectPermissionsByObjectMetadataId: Parameters<
|
||||
typeof getObjectPermissionsForObject
|
||||
>[0];
|
||||
includeInaccessibleObjectBackedItems?: boolean;
|
||||
};
|
||||
|
||||
export const getWorkspaceSidebarOrphanItemsInDisplayOrder = ({
|
||||
@@ -25,6 +26,7 @@ export const getWorkspaceSidebarOrphanItemsInDisplayOrder = ({
|
||||
objectMetadataItems,
|
||||
views,
|
||||
objectPermissionsByObjectMetadataId,
|
||||
includeInaccessibleObjectBackedItems = false,
|
||||
}: GetWorkspaceSidebarOrphanItemsInDisplayOrderArgs): NavigationMenuItem[] => {
|
||||
const flatWorkspaceItems = workspaceNavigationMenuItems
|
||||
.filter((item) => !isDefined(item.folderId))
|
||||
@@ -42,26 +44,34 @@ export const getWorkspaceSidebarOrphanItemsInDisplayOrder = ({
|
||||
});
|
||||
} else {
|
||||
const validItem = processedItemsById.get(item.id);
|
||||
if (!isDefined(validItem)) {
|
||||
if (!isDefined(validItem) && !includeInaccessibleObjectBackedItems) {
|
||||
return acc;
|
||||
}
|
||||
if (validItem.type === NavigationMenuItemType.LINK) {
|
||||
acc.push(validItem);
|
||||
} else {
|
||||
const objectMetadataItem = getObjectMetadataForNavigationMenuItem(
|
||||
validItem,
|
||||
objectMetadataItems,
|
||||
views,
|
||||
);
|
||||
if (
|
||||
isDefined(objectMetadataItem) &&
|
||||
getObjectPermissionsForObject(
|
||||
objectPermissionsByObjectMetadataId,
|
||||
objectMetadataItem.id,
|
||||
).canReadObjectRecords
|
||||
) {
|
||||
acc.push(validItem);
|
||||
}
|
||||
const rowSource = isDefined(validItem) ? validItem : item;
|
||||
|
||||
if (rowSource.type === NavigationMenuItemType.LINK) {
|
||||
acc.push(rowSource);
|
||||
return acc;
|
||||
}
|
||||
|
||||
if (includeInaccessibleObjectBackedItems) {
|
||||
acc.push(rowSource);
|
||||
return acc;
|
||||
}
|
||||
|
||||
const objectMetadataItem = getObjectMetadataForNavigationMenuItem(
|
||||
rowSource,
|
||||
objectMetadataItems,
|
||||
views,
|
||||
);
|
||||
if (
|
||||
isDefined(objectMetadataItem) &&
|
||||
getObjectPermissionsForObject(
|
||||
objectPermissionsByObjectMetadataId,
|
||||
objectMetadataItem.id,
|
||||
).canReadObjectRecords
|
||||
) {
|
||||
acc.push(rowSource);
|
||||
}
|
||||
}
|
||||
return acc;
|
||||
|
||||
+11
-27
@@ -8,7 +8,6 @@ import { type VariablePickerComponent } from '@/object-record/record-field/ui/fo
|
||||
import { InputErrorHelper } from '@/ui/input/components/InputErrorHelper';
|
||||
import { InputHint } from '@/ui/input/components/InputHint';
|
||||
import { InputLabel } from '@/ui/input/components/InputLabel';
|
||||
import { StyledDropdownButtonContainer } from '@/ui/layout/dropdown/components/StyledDropdownButtonContainer';
|
||||
import { useFullScreenModal } from '@/ui/layout/fullscreen/hooks/useFullScreenModal';
|
||||
import { type BreadcrumbProps } from '@/ui/navigation/bread-crumb/components/Breadcrumb';
|
||||
import { usePushFocusItemToFocusStack } from '@/ui/utilities/focus/hooks/usePushFocusItemToFocusStack';
|
||||
@@ -16,10 +15,11 @@ import { useRemoveFocusItemFromFocusStackById } from '@/ui/utilities/focus/hooks
|
||||
import { FocusComponentType } from '@/ui/utilities/focus/types/FocusComponentType';
|
||||
import { styled } from '@linaria/react';
|
||||
import { useLingui } from '@lingui/react/macro';
|
||||
import { useContext, useId, useState } from 'react';
|
||||
import { useId, useState } from 'react';
|
||||
import { isDefined } from 'twenty-shared/utils';
|
||||
import { IconMaximize } from 'twenty-ui/display';
|
||||
import { ThemeContext, themeCssVariables } from 'twenty-ui/theme-constants';
|
||||
import { LightIconButton } from 'twenty-ui/input';
|
||||
import { themeCssVariables } from 'twenty-ui/theme-constants';
|
||||
import { useIsMobile } from 'twenty-ui/utilities';
|
||||
|
||||
const StyledAdvancedTextFieldContainerWrapper = styled.div`
|
||||
@@ -47,8 +47,9 @@ const StyledAdvancedTextFieldInnerContainer = styled.div`
|
||||
`;
|
||||
|
||||
const StyledEditorActionButtonContainer = styled.div`
|
||||
margin-top: ${themeCssVariables.spacing[1]};
|
||||
position: absolute;
|
||||
right: 30px;
|
||||
right: ${themeCssVariables.spacing[1]};
|
||||
top: ${themeCssVariables.spacing[0]};
|
||||
z-index: 1;
|
||||
`;
|
||||
@@ -63,19 +64,6 @@ const StyledFullScreenEditorContainer = styled.div`
|
||||
padding: ${themeCssVariables.spacing[2]};
|
||||
`;
|
||||
|
||||
const StyledFullScreenButtonContainerWrapper = styled.div`
|
||||
> * {
|
||||
background-color: transparent;
|
||||
color: ${themeCssVariables.font.color.tertiary};
|
||||
padding: ${themeCssVariables.spacing[2]};
|
||||
|
||||
:hover {
|
||||
background-color: ${themeCssVariables.background.transparent.light};
|
||||
cursor: pointer;
|
||||
}
|
||||
}
|
||||
`;
|
||||
|
||||
type FormAdvancedTextFieldInputProps = {
|
||||
label?: string;
|
||||
error?: string;
|
||||
@@ -111,7 +99,6 @@ export const FormAdvancedTextFieldInput = ({
|
||||
maxWidth,
|
||||
contentType = 'json',
|
||||
}: FormAdvancedTextFieldInputProps) => {
|
||||
const { theme } = useContext(ThemeContext);
|
||||
const instanceId = useId();
|
||||
const isMobile = useIsMobile();
|
||||
const [isFullScreen, setIsFullScreen] = useState(false);
|
||||
@@ -229,15 +216,12 @@ export const FormAdvancedTextFieldInput = ({
|
||||
{enableFullScreen && (
|
||||
<StyledEditorActionButtonContainer>
|
||||
{!readonly && !isFullScreen && (
|
||||
<StyledFullScreenButtonContainerWrapper>
|
||||
<StyledDropdownButtonContainer
|
||||
isUnfolded={false}
|
||||
transparentBackground
|
||||
onClick={handleEnterFullScreen}
|
||||
>
|
||||
<IconMaximize size={theme.icon.size.md} />
|
||||
</StyledDropdownButtonContainer>
|
||||
</StyledFullScreenButtonContainerWrapper>
|
||||
<LightIconButton
|
||||
Icon={IconMaximize}
|
||||
size="small"
|
||||
onClick={handleEnterFullScreen}
|
||||
accent="tertiary"
|
||||
/>
|
||||
)}
|
||||
</StyledEditorActionButtonContainer>
|
||||
)}
|
||||
|
||||
+1
@@ -30,6 +30,7 @@ const StyledIndexContainer = styled.div`
|
||||
|
||||
export const RecordIndexContainerGater = () => {
|
||||
const store = useStore();
|
||||
|
||||
const { recordIndexId, objectMetadataItem } =
|
||||
useRecordIndexIdFromCurrentContextStore();
|
||||
|
||||
|
||||
@@ -1,7 +1,3 @@
|
||||
import { styled } from '@linaria/react';
|
||||
import { Link } from 'react-router-dom';
|
||||
|
||||
import { SettingsOptionCardContentButton } from '@/settings/components/SettingsOptions/SettingsOptionCardContentButton';
|
||||
import { SettingsPageContainer } from '@/settings/components/SettingsPageContainer';
|
||||
import { SubMenuTopBarContainer } from '@/ui/layout/page/components/SubMenuTopBarContainer';
|
||||
import { TabList } from '@/ui/layout/tab-list/components/TabList';
|
||||
@@ -13,29 +9,19 @@ import { getSettingsPath } from 'twenty-shared/utils';
|
||||
import { useIsFeatureEnabled } from '@/workspace/hooks/useIsFeatureEnabled';
|
||||
import { t } from '@lingui/core/macro';
|
||||
import {
|
||||
H2Title,
|
||||
IconChartBar,
|
||||
IconCpu,
|
||||
IconFileText,
|
||||
IconSettingsBolt,
|
||||
IconSparkles,
|
||||
IconTool,
|
||||
} from 'twenty-ui/display';
|
||||
import { Button } from 'twenty-ui/input';
|
||||
import { Card, Section } from 'twenty-ui/layout';
|
||||
import { SettingsAIMCP } from './components/SettingsAIMCP';
|
||||
import { SettingsAIMoreTab } from '~/pages/settings/ai/components/SettingsAIMoreTab';
|
||||
import { SettingsAIModelsTab } from './components/SettingsAIModelsTab';
|
||||
import { SettingsAIUsageTab } from './components/SettingsAIUsageTab';
|
||||
import { SettingsAgentSkills } from './components/SettingsAgentSkills';
|
||||
import { SettingsToolsTable } from './components/SettingsToolsTable';
|
||||
import { SETTINGS_AI_TABS } from './constants/SettingsAiTabs';
|
||||
|
||||
const StyledLinkContainer = styled.div`
|
||||
> a {
|
||||
text-decoration: none;
|
||||
}
|
||||
`;
|
||||
|
||||
export const SettingsAI = () => {
|
||||
const activeTabId = useAtomComponentStateValue(
|
||||
activeTabIdComponentState,
|
||||
@@ -104,35 +90,7 @@ export const SettingsAI = () => {
|
||||
{isSkillsTab && <SettingsAgentSkills />}
|
||||
{isToolsTab && <SettingsToolsTable />}
|
||||
{isUsageTab && <SettingsAIUsageTab />}
|
||||
{isMoreTab && (
|
||||
<>
|
||||
<Section>
|
||||
<H2Title
|
||||
title={t`System Prompt`}
|
||||
description={t`View and customize AI instructions`}
|
||||
/>
|
||||
<Card rounded>
|
||||
<SettingsOptionCardContentButton
|
||||
Icon={IconFileText}
|
||||
title={t`System Prompt`}
|
||||
description={t`View the AI system prompt and add custom instructions`}
|
||||
Button={
|
||||
<StyledLinkContainer>
|
||||
<Link to={getSettingsPath(SettingsPath.AIPrompts)}>
|
||||
<Button
|
||||
title={t`Configure`}
|
||||
variant="secondary"
|
||||
size="small"
|
||||
/>
|
||||
</Link>
|
||||
</StyledLinkContainer>
|
||||
}
|
||||
/>
|
||||
</Card>
|
||||
</Section>
|
||||
<SettingsAIMCP />
|
||||
</>
|
||||
)}
|
||||
{isMoreTab && <SettingsAIMoreTab />}
|
||||
</SettingsPageContainer>
|
||||
</SubMenuTopBarContainer>
|
||||
);
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user