Compare commits
34
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
1334e1707d | ||
|
|
6e23ca35e6 | ||
|
|
96a242eb7d | ||
|
|
d97a1cfc27 | ||
|
|
c844109ffc | ||
|
|
dd2a09576b | ||
|
|
fe07de63b0 | ||
|
|
1c9fc94c1f | ||
|
|
d10ef156c1 | ||
|
|
d3ec64072b | ||
|
|
1b14e7e1f1 | ||
|
|
6ad9566043 | ||
|
|
f39fccc3c4 | ||
|
|
ac1ec91f25 | ||
|
|
d324bbfc25 | ||
|
|
7c2a9abed4 | ||
|
|
c0c0cbb896 | ||
|
|
a2188cb0eb | ||
|
|
e87285d223 | ||
|
|
e2dae88a3d | ||
|
|
b23d2b4e73 | ||
|
|
23874848a4 | ||
|
|
601dc02ed7 | ||
|
|
2d552fc9fd | ||
|
|
f33ad53e72 | ||
|
|
7053e1bbc5 | ||
|
|
955aa9191f | ||
|
|
3f87d27d5d | ||
|
|
68cd2f6d61 | ||
|
|
8c9228cb2b | ||
|
|
35b76539cc | ||
|
|
ea4ef99565 | ||
|
|
c7d1cd11e0 | ||
|
|
83d30f8b76 |
@@ -158,7 +158,7 @@ jobs:
|
||||
timeout-minutes: 30
|
||||
runs-on: ubuntu-latest
|
||||
env:
|
||||
NODE_OPTIONS: '--max-old-space-size=4096'
|
||||
NODE_OPTIONS: '--max-old-space-size=6144'
|
||||
TASK_CACHE_KEY: front-task-${{ matrix.task }}
|
||||
strategy:
|
||||
matrix:
|
||||
|
||||
@@ -1736,6 +1736,7 @@ enum FeatureFlagKey {
|
||||
IS_EMAILING_DOMAIN_ENABLED
|
||||
IS_JUNCTION_RELATIONS_ENABLED
|
||||
IS_DRAFT_EMAIL_ENABLED
|
||||
IS_CONNECTED_ACCOUNT_MIGRATED
|
||||
IS_USAGE_ANALYTICS_ENABLED
|
||||
IS_RICH_TEXT_V1_MIGRATED
|
||||
IS_RECORD_PAGE_LAYOUT_GLOBAL_EDITION_ENABLED
|
||||
@@ -2639,6 +2640,7 @@ enum EngineComponentKey {
|
||||
TRIGGER_WORKFLOW_VERSION
|
||||
FRONT_COMPONENT_RENDERER
|
||||
REPLY_TO_EMAIL_THREAD
|
||||
COMPOSE_EMAIL
|
||||
DELETE_SINGLE_RECORD
|
||||
DELETE_MULTIPLE_RECORDS
|
||||
RESTORE_SINGLE_RECORD
|
||||
@@ -2762,6 +2764,26 @@ type DuplicatedDashboard {
|
||||
updatedAt: String!
|
||||
}
|
||||
|
||||
type ConnectedAccountDTO {
|
||||
id: UUID!
|
||||
handle: String!
|
||||
provider: String!
|
||||
lastCredentialsRefreshedAt: DateTime
|
||||
authFailedAt: DateTime
|
||||
handleAliases: [String!]
|
||||
scopes: [String!]
|
||||
connectionParameters: ImapSmtpCaldavConnectionParameters
|
||||
lastSignedInAt: DateTime
|
||||
userWorkspaceId: UUID!
|
||||
createdAt: DateTime!
|
||||
updatedAt: DateTime!
|
||||
}
|
||||
|
||||
type SendEmailOutput {
|
||||
success: Boolean!
|
||||
error: String
|
||||
}
|
||||
|
||||
type EventLogRecord {
|
||||
event: String!
|
||||
timestamp: DateTime!
|
||||
@@ -2930,20 +2952,6 @@ enum CalendarChannelContactAutoCreationPolicy {
|
||||
NONE
|
||||
}
|
||||
|
||||
type ConnectedAccountDTO {
|
||||
id: UUID!
|
||||
handle: String!
|
||||
provider: String!
|
||||
lastCredentialsRefreshedAt: DateTime
|
||||
authFailedAt: DateTime
|
||||
handleAliases: [String!]
|
||||
scopes: [String!]
|
||||
lastSignedInAt: DateTime
|
||||
userWorkspaceId: UUID!
|
||||
createdAt: DateTime!
|
||||
updatedAt: DateTime!
|
||||
}
|
||||
|
||||
type MessageChannel {
|
||||
id: UUID!
|
||||
visibility: MessageChannelVisibility!
|
||||
@@ -3226,7 +3234,6 @@ type Query {
|
||||
findApplicationRegistrationStats(id: String!): ApplicationRegistrationStats!
|
||||
findApplicationRegistrationVariables(applicationRegistrationId: String!): [ApplicationRegistrationVariable!]!
|
||||
applicationRegistrationTarballUrl(id: String!): String
|
||||
getApplicationShareLink(id: String!): String!
|
||||
currentUser: User!
|
||||
currentWorkspace: Workspace!
|
||||
getPublicWorkspaceDataByDomain(origin: String): PublicWorkspaceData!
|
||||
@@ -3452,6 +3459,7 @@ type Mutation {
|
||||
updatePageLayout(id: String!, input: UpdatePageLayoutInput!): PageLayout!
|
||||
destroyPageLayout(id: String!): Boolean!
|
||||
updatePageLayoutWithTabsAndWidgets(id: String!, input: UpdatePageLayoutWithTabsInput!): PageLayout!
|
||||
resetPageLayoutWidgetToDefault(id: String!): PageLayoutWidget!
|
||||
createPageLayoutWidget(input: CreatePageLayoutWidgetInput!): PageLayoutWidget!
|
||||
updatePageLayoutWidget(id: String!, input: UpdatePageLayoutWidgetInput!): PageLayoutWidget!
|
||||
destroyPageLayoutWidget(id: String!): Boolean!
|
||||
@@ -3552,6 +3560,7 @@ type Mutation {
|
||||
deleteSSOIdentityProvider(input: DeleteSsoInput!): DeleteSso!
|
||||
editSSOIdentityProvider(input: EditSsoInput!): EditSso!
|
||||
impersonate(userId: UUID!, workspaceId: UUID!): Impersonate!
|
||||
sendEmail(input: SendEmailInput!): SendEmailOutput!
|
||||
startChannelSync(connectedAccountId: UUID!): ChannelSyncSuccess!
|
||||
saveImapSmtpCaldavAccount(accountOwnerId: UUID!, handle: String!, connectionParameters: EmailAccountConnectionParameters!, id: UUID): ImapSmtpCaldavConnectionSuccess!
|
||||
updateLabPublicFeatureFlag(input: UpdateLabPublicFeatureFlagInput!): FeatureFlag!
|
||||
@@ -4522,6 +4531,16 @@ input EditSsoInput {
|
||||
status: SSOIdentityProviderStatus!
|
||||
}
|
||||
|
||||
input SendEmailInput {
|
||||
connectedAccountId: String!
|
||||
to: String!
|
||||
cc: String
|
||||
bcc: String
|
||||
subject: String!
|
||||
body: String!
|
||||
inReplyTo: String
|
||||
}
|
||||
|
||||
input EmailAccountConnectionParameters {
|
||||
IMAP: ConnectionParameters
|
||||
SMTP: ConnectionParameters
|
||||
|
||||
@@ -1429,7 +1429,7 @@ export interface PublicFeatureFlag {
|
||||
__typename: 'PublicFeatureFlag'
|
||||
}
|
||||
|
||||
export type FeatureFlagKey = 'IS_UNIQUE_INDEXES_ENABLED' | 'IS_JSON_FILTER_ENABLED' | 'IS_AI_ENABLED' | 'IS_COMMAND_MENU_ITEM_ENABLED' | 'IS_MARKETPLACE_ENABLED' | 'IS_MARKETPLACE_SETTING_TAB_VISIBLE' | 'IS_RECORD_PAGE_LAYOUT_EDITING_ENABLED' | 'IS_PUBLIC_DOMAIN_ENABLED' | 'IS_EMAILING_DOMAIN_ENABLED' | 'IS_JUNCTION_RELATIONS_ENABLED' | 'IS_DRAFT_EMAIL_ENABLED' | 'IS_USAGE_ANALYTICS_ENABLED' | 'IS_RICH_TEXT_V1_MIGRATED' | 'IS_RECORD_PAGE_LAYOUT_GLOBAL_EDITION_ENABLED' | 'IS_RECORD_TABLE_WIDGET_ENABLED' | 'IS_DATASOURCE_MIGRATED'
|
||||
export type FeatureFlagKey = 'IS_UNIQUE_INDEXES_ENABLED' | 'IS_JSON_FILTER_ENABLED' | 'IS_AI_ENABLED' | 'IS_COMMAND_MENU_ITEM_ENABLED' | 'IS_MARKETPLACE_ENABLED' | 'IS_MARKETPLACE_SETTING_TAB_VISIBLE' | 'IS_RECORD_PAGE_LAYOUT_EDITING_ENABLED' | 'IS_PUBLIC_DOMAIN_ENABLED' | 'IS_EMAILING_DOMAIN_ENABLED' | 'IS_JUNCTION_RELATIONS_ENABLED' | 'IS_DRAFT_EMAIL_ENABLED' | 'IS_CONNECTED_ACCOUNT_MIGRATED' | 'IS_USAGE_ANALYTICS_ENABLED' | 'IS_RICH_TEXT_V1_MIGRATED' | 'IS_RECORD_PAGE_LAYOUT_GLOBAL_EDITION_ENABLED' | 'IS_RECORD_TABLE_WIDGET_ENABLED' | 'IS_DATASOURCE_MIGRATED'
|
||||
|
||||
export interface ClientConfigMaintenanceMode {
|
||||
startAt: Scalars['DateTime']
|
||||
@@ -2295,7 +2295,7 @@ export interface CommandMenuItem {
|
||||
__typename: 'CommandMenuItem'
|
||||
}
|
||||
|
||||
export type EngineComponentKey = 'NAVIGATE_TO_NEXT_RECORD' | 'NAVIGATE_TO_PREVIOUS_RECORD' | 'CREATE_NEW_RECORD' | 'DELETE_RECORDS' | 'RESTORE_RECORDS' | 'DESTROY_RECORDS' | 'ADD_TO_FAVORITES' | 'REMOVE_FROM_FAVORITES' | 'EXPORT_NOTE_TO_PDF' | 'EXPORT_RECORDS' | 'UPDATE_MULTIPLE_RECORDS' | 'MERGE_MULTIPLE_RECORDS' | 'IMPORT_RECORDS' | 'EXPORT_VIEW' | 'SEE_DELETED_RECORDS' | 'CREATE_NEW_VIEW' | 'HIDE_DELETED_RECORDS' | 'GO_TO_PEOPLE' | 'GO_TO_COMPANIES' | 'GO_TO_DASHBOARDS' | 'GO_TO_OPPORTUNITIES' | 'GO_TO_SETTINGS' | 'GO_TO_TASKS' | 'GO_TO_NOTES' | 'EDIT_RECORD_PAGE_LAYOUT' | 'EDIT_DASHBOARD_LAYOUT' | 'SAVE_DASHBOARD_LAYOUT' | 'CANCEL_DASHBOARD_LAYOUT' | 'DUPLICATE_DASHBOARD' | 'GO_TO_WORKFLOWS' | 'ACTIVATE_WORKFLOW' | 'DEACTIVATE_WORKFLOW' | 'DISCARD_DRAFT_WORKFLOW' | 'TEST_WORKFLOW' | 'SEE_ACTIVE_VERSION_WORKFLOW' | 'SEE_RUNS_WORKFLOW' | 'SEE_VERSIONS_WORKFLOW' | 'ADD_NODE_WORKFLOW' | 'TIDY_UP_WORKFLOW' | 'DUPLICATE_WORKFLOW' | 'GO_TO_RUNS' | 'SEE_VERSION_WORKFLOW_RUN' | 'SEE_WORKFLOW_WORKFLOW_RUN' | 'STOP_WORKFLOW_RUN' | 'SEE_RUNS_WORKFLOW_VERSION' | 'SEE_WORKFLOW_WORKFLOW_VERSION' | 'USE_AS_DRAFT_WORKFLOW_VERSION' | 'SEE_VERSIONS_WORKFLOW_VERSION' | 'SEARCH_RECORDS' | 'SEARCH_RECORDS_FALLBACK' | 'ASK_AI' | 'VIEW_PREVIOUS_AI_CHATS' | 'TRIGGER_WORKFLOW_VERSION' | 'FRONT_COMPONENT_RENDERER' | 'REPLY_TO_EMAIL_THREAD' | 'DELETE_SINGLE_RECORD' | 'DELETE_MULTIPLE_RECORDS' | 'RESTORE_SINGLE_RECORD' | 'RESTORE_MULTIPLE_RECORDS' | 'DESTROY_SINGLE_RECORD' | 'DESTROY_MULTIPLE_RECORDS' | 'EXPORT_FROM_RECORD_INDEX' | 'EXPORT_FROM_RECORD_SHOW' | 'EXPORT_MULTIPLE_RECORDS'
|
||||
export type EngineComponentKey = 'NAVIGATE_TO_NEXT_RECORD' | 'NAVIGATE_TO_PREVIOUS_RECORD' | 'CREATE_NEW_RECORD' | 'DELETE_RECORDS' | 'RESTORE_RECORDS' | 'DESTROY_RECORDS' | 'ADD_TO_FAVORITES' | 'REMOVE_FROM_FAVORITES' | 'EXPORT_NOTE_TO_PDF' | 'EXPORT_RECORDS' | 'UPDATE_MULTIPLE_RECORDS' | 'MERGE_MULTIPLE_RECORDS' | 'IMPORT_RECORDS' | 'EXPORT_VIEW' | 'SEE_DELETED_RECORDS' | 'CREATE_NEW_VIEW' | 'HIDE_DELETED_RECORDS' | 'GO_TO_PEOPLE' | 'GO_TO_COMPANIES' | 'GO_TO_DASHBOARDS' | 'GO_TO_OPPORTUNITIES' | 'GO_TO_SETTINGS' | 'GO_TO_TASKS' | 'GO_TO_NOTES' | 'EDIT_RECORD_PAGE_LAYOUT' | 'EDIT_DASHBOARD_LAYOUT' | 'SAVE_DASHBOARD_LAYOUT' | 'CANCEL_DASHBOARD_LAYOUT' | 'DUPLICATE_DASHBOARD' | 'GO_TO_WORKFLOWS' | 'ACTIVATE_WORKFLOW' | 'DEACTIVATE_WORKFLOW' | 'DISCARD_DRAFT_WORKFLOW' | 'TEST_WORKFLOW' | 'SEE_ACTIVE_VERSION_WORKFLOW' | 'SEE_RUNS_WORKFLOW' | 'SEE_VERSIONS_WORKFLOW' | 'ADD_NODE_WORKFLOW' | 'TIDY_UP_WORKFLOW' | 'DUPLICATE_WORKFLOW' | 'GO_TO_RUNS' | 'SEE_VERSION_WORKFLOW_RUN' | 'SEE_WORKFLOW_WORKFLOW_RUN' | 'STOP_WORKFLOW_RUN' | 'SEE_RUNS_WORKFLOW_VERSION' | 'SEE_WORKFLOW_WORKFLOW_VERSION' | 'USE_AS_DRAFT_WORKFLOW_VERSION' | 'SEE_VERSIONS_WORKFLOW_VERSION' | 'SEARCH_RECORDS' | 'SEARCH_RECORDS_FALLBACK' | 'ASK_AI' | 'VIEW_PREVIOUS_AI_CHATS' | 'TRIGGER_WORKFLOW_VERSION' | 'FRONT_COMPONENT_RENDERER' | 'REPLY_TO_EMAIL_THREAD' | 'COMPOSE_EMAIL' | 'DELETE_SINGLE_RECORD' | 'DELETE_MULTIPLE_RECORDS' | 'RESTORE_SINGLE_RECORD' | 'RESTORE_MULTIPLE_RECORDS' | 'DESTROY_SINGLE_RECORD' | 'DESTROY_MULTIPLE_RECORDS' | 'EXPORT_FROM_RECORD_INDEX' | 'EXPORT_FROM_RECORD_SHOW' | 'EXPORT_MULTIPLE_RECORDS'
|
||||
|
||||
export type CommandMenuItemAvailabilityType = 'GLOBAL' | 'RECORD_SELECTION' | 'FALLBACK'
|
||||
|
||||
@@ -2416,6 +2416,28 @@ export interface DuplicatedDashboard {
|
||||
__typename: 'DuplicatedDashboard'
|
||||
}
|
||||
|
||||
export interface ConnectedAccountDTO {
|
||||
id: Scalars['UUID']
|
||||
handle: Scalars['String']
|
||||
provider: Scalars['String']
|
||||
lastCredentialsRefreshedAt?: Scalars['DateTime']
|
||||
authFailedAt?: Scalars['DateTime']
|
||||
handleAliases?: Scalars['String'][]
|
||||
scopes?: Scalars['String'][]
|
||||
connectionParameters?: ImapSmtpCaldavConnectionParameters
|
||||
lastSignedInAt?: Scalars['DateTime']
|
||||
userWorkspaceId: Scalars['UUID']
|
||||
createdAt: Scalars['DateTime']
|
||||
updatedAt: Scalars['DateTime']
|
||||
__typename: 'ConnectedAccountDTO'
|
||||
}
|
||||
|
||||
export interface SendEmailOutput {
|
||||
success: Scalars['Boolean']
|
||||
error?: Scalars['String']
|
||||
__typename: 'SendEmailOutput'
|
||||
}
|
||||
|
||||
export interface EventLogRecord {
|
||||
event: Scalars['String']
|
||||
timestamp: Scalars['DateTime']
|
||||
@@ -2575,21 +2597,6 @@ export type CalendarChannelVisibility = 'METADATA' | 'SHARE_EVERYTHING'
|
||||
|
||||
export type CalendarChannelContactAutoCreationPolicy = 'AS_PARTICIPANT_AND_ORGANIZER' | 'AS_PARTICIPANT' | 'AS_ORGANIZER' | 'NONE'
|
||||
|
||||
export interface ConnectedAccountDTO {
|
||||
id: Scalars['UUID']
|
||||
handle: Scalars['String']
|
||||
provider: Scalars['String']
|
||||
lastCredentialsRefreshedAt?: Scalars['DateTime']
|
||||
authFailedAt?: Scalars['DateTime']
|
||||
handleAliases?: Scalars['String'][]
|
||||
scopes?: Scalars['String'][]
|
||||
lastSignedInAt?: Scalars['DateTime']
|
||||
userWorkspaceId: Scalars['UUID']
|
||||
createdAt: Scalars['DateTime']
|
||||
updatedAt: Scalars['DateTime']
|
||||
__typename: 'ConnectedAccountDTO'
|
||||
}
|
||||
|
||||
export interface MessageChannel {
|
||||
id: Scalars['UUID']
|
||||
visibility: MessageChannelVisibility
|
||||
@@ -2779,7 +2786,6 @@ export interface Query {
|
||||
findApplicationRegistrationStats: ApplicationRegistrationStats
|
||||
findApplicationRegistrationVariables: ApplicationRegistrationVariable[]
|
||||
applicationRegistrationTarballUrl?: Scalars['String']
|
||||
getApplicationShareLink: Scalars['String']
|
||||
currentUser: User
|
||||
currentWorkspace: Workspace
|
||||
getPublicWorkspaceDataByDomain: PublicWorkspaceData
|
||||
@@ -2899,6 +2905,7 @@ export interface Mutation {
|
||||
updatePageLayout: PageLayout
|
||||
destroyPageLayout: Scalars['Boolean']
|
||||
updatePageLayoutWithTabsAndWidgets: PageLayout
|
||||
resetPageLayoutWidgetToDefault: PageLayoutWidget
|
||||
createPageLayoutWidget: PageLayoutWidget
|
||||
updatePageLayoutWidget: PageLayoutWidget
|
||||
destroyPageLayoutWidget: Scalars['Boolean']
|
||||
@@ -2999,6 +3006,7 @@ export interface Mutation {
|
||||
deleteSSOIdentityProvider: DeleteSso
|
||||
editSSOIdentityProvider: EditSso
|
||||
impersonate: Impersonate
|
||||
sendEmail: SendEmailOutput
|
||||
startChannelSync: ChannelSyncSuccess
|
||||
saveImapSmtpCaldavAccount: ImapSmtpCaldavConnectionSuccess
|
||||
updateLabPublicFeatureFlag: FeatureFlag
|
||||
@@ -5615,6 +5623,30 @@ export interface DuplicatedDashboardGenqlSelection{
|
||||
__scalar?: boolean | number
|
||||
}
|
||||
|
||||
export interface ConnectedAccountDTOGenqlSelection{
|
||||
id?: boolean | number
|
||||
handle?: boolean | number
|
||||
provider?: boolean | number
|
||||
lastCredentialsRefreshedAt?: boolean | number
|
||||
authFailedAt?: boolean | number
|
||||
handleAliases?: boolean | number
|
||||
scopes?: boolean | number
|
||||
connectionParameters?: ImapSmtpCaldavConnectionParametersGenqlSelection
|
||||
lastSignedInAt?: boolean | number
|
||||
userWorkspaceId?: boolean | number
|
||||
createdAt?: boolean | number
|
||||
updatedAt?: boolean | number
|
||||
__typename?: boolean | number
|
||||
__scalar?: boolean | number
|
||||
}
|
||||
|
||||
export interface SendEmailOutputGenqlSelection{
|
||||
success?: boolean | number
|
||||
error?: boolean | number
|
||||
__typename?: boolean | number
|
||||
__scalar?: boolean | number
|
||||
}
|
||||
|
||||
export interface EventLogRecordGenqlSelection{
|
||||
event?: boolean | number
|
||||
timestamp?: boolean | number
|
||||
@@ -5782,22 +5814,6 @@ export interface CalendarChannelGenqlSelection{
|
||||
__scalar?: boolean | number
|
||||
}
|
||||
|
||||
export interface ConnectedAccountDTOGenqlSelection{
|
||||
id?: boolean | number
|
||||
handle?: boolean | number
|
||||
provider?: boolean | number
|
||||
lastCredentialsRefreshedAt?: boolean | number
|
||||
authFailedAt?: boolean | number
|
||||
handleAliases?: boolean | number
|
||||
scopes?: boolean | number
|
||||
lastSignedInAt?: boolean | number
|
||||
userWorkspaceId?: boolean | number
|
||||
createdAt?: boolean | number
|
||||
updatedAt?: boolean | number
|
||||
__typename?: boolean | number
|
||||
__scalar?: boolean | number
|
||||
}
|
||||
|
||||
export interface MessageChannelGenqlSelection{
|
||||
id?: boolean | number
|
||||
visibility?: boolean | number
|
||||
@@ -6000,7 +6016,6 @@ export interface QueryGenqlSelection{
|
||||
findApplicationRegistrationStats?: (ApplicationRegistrationStatsGenqlSelection & { __args: {id: Scalars['String']} })
|
||||
findApplicationRegistrationVariables?: (ApplicationRegistrationVariableGenqlSelection & { __args: {applicationRegistrationId: Scalars['String']} })
|
||||
applicationRegistrationTarballUrl?: { __args: {id: Scalars['String']} }
|
||||
getApplicationShareLink?: { __args: {id: Scalars['String']} }
|
||||
currentUser?: UserGenqlSelection
|
||||
currentWorkspace?: WorkspaceGenqlSelection
|
||||
getPublicWorkspaceDataByDomain?: (PublicWorkspaceDataGenqlSelection & { __args?: {origin?: (Scalars['String'] | null)} })
|
||||
@@ -6139,6 +6154,7 @@ export interface MutationGenqlSelection{
|
||||
updatePageLayout?: (PageLayoutGenqlSelection & { __args: {id: Scalars['String'], input: UpdatePageLayoutInput} })
|
||||
destroyPageLayout?: { __args: {id: Scalars['String']} }
|
||||
updatePageLayoutWithTabsAndWidgets?: (PageLayoutGenqlSelection & { __args: {id: Scalars['String'], input: UpdatePageLayoutWithTabsInput} })
|
||||
resetPageLayoutWidgetToDefault?: (PageLayoutWidgetGenqlSelection & { __args: {id: Scalars['String']} })
|
||||
createPageLayoutWidget?: (PageLayoutWidgetGenqlSelection & { __args: {input: CreatePageLayoutWidgetInput} })
|
||||
updatePageLayoutWidget?: (PageLayoutWidgetGenqlSelection & { __args: {id: Scalars['String'], input: UpdatePageLayoutWidgetInput} })
|
||||
destroyPageLayoutWidget?: { __args: {id: Scalars['String']} }
|
||||
@@ -6239,6 +6255,7 @@ export interface MutationGenqlSelection{
|
||||
deleteSSOIdentityProvider?: (DeleteSsoGenqlSelection & { __args: {input: DeleteSsoInput} })
|
||||
editSSOIdentityProvider?: (EditSsoGenqlSelection & { __args: {input: EditSsoInput} })
|
||||
impersonate?: (ImpersonateGenqlSelection & { __args: {userId: Scalars['UUID'], workspaceId: Scalars['UUID']} })
|
||||
sendEmail?: (SendEmailOutputGenqlSelection & { __args: {input: SendEmailInput} })
|
||||
startChannelSync?: (ChannelSyncSuccessGenqlSelection & { __args: {connectedAccountId: Scalars['UUID']} })
|
||||
saveImapSmtpCaldavAccount?: (ImapSmtpCaldavConnectionSuccessGenqlSelection & { __args: {accountOwnerId: Scalars['UUID'], handle: Scalars['String'], connectionParameters: EmailAccountConnectionParameters, id?: (Scalars['UUID'] | null)} })
|
||||
updateLabPublicFeatureFlag?: (FeatureFlagGenqlSelection & { __args: {input: UpdateLabPublicFeatureFlagInput} })
|
||||
@@ -6589,6 +6606,8 @@ export interface DeleteSsoInput {identityProviderId: Scalars['UUID']}
|
||||
|
||||
export interface EditSsoInput {id: Scalars['UUID'],status: SSOIdentityProviderStatus}
|
||||
|
||||
export interface SendEmailInput {connectedAccountId: Scalars['String'],to: Scalars['String'],cc?: (Scalars['String'] | null),bcc?: (Scalars['String'] | null),subject: Scalars['String'],body: Scalars['String'],inReplyTo?: (Scalars['String'] | null)}
|
||||
|
||||
export interface EmailAccountConnectionParameters {IMAP?: (ConnectionParameters | null),SMTP?: (ConnectionParameters | null),CALDAV?: (ConnectionParameters | null)}
|
||||
|
||||
export interface ConnectionParameters {host: Scalars['String'],port: Scalars['Float'],username?: (Scalars['String'] | null),password: Scalars['String'],secure?: (Scalars['Boolean'] | null)}
|
||||
@@ -8496,6 +8515,22 @@ export interface LogicFunctionLogsInput {applicationId?: (Scalars['UUID'] | null
|
||||
|
||||
|
||||
|
||||
const ConnectedAccountDTO_possibleTypes: string[] = ['ConnectedAccountDTO']
|
||||
export const isConnectedAccountDTO = (obj?: { __typename?: any } | null): obj is ConnectedAccountDTO => {
|
||||
if (!obj?.__typename) throw new Error('__typename is missing in "isConnectedAccountDTO"')
|
||||
return ConnectedAccountDTO_possibleTypes.includes(obj.__typename)
|
||||
}
|
||||
|
||||
|
||||
|
||||
const SendEmailOutput_possibleTypes: string[] = ['SendEmailOutput']
|
||||
export const isSendEmailOutput = (obj?: { __typename?: any } | null): obj is SendEmailOutput => {
|
||||
if (!obj?.__typename) throw new Error('__typename is missing in "isSendEmailOutput"')
|
||||
return SendEmailOutput_possibleTypes.includes(obj.__typename)
|
||||
}
|
||||
|
||||
|
||||
|
||||
const EventLogRecord_possibleTypes: string[] = ['EventLogRecord']
|
||||
export const isEventLogRecord = (obj?: { __typename?: any } | null): obj is EventLogRecord => {
|
||||
if (!obj?.__typename) throw new Error('__typename is missing in "isEventLogRecord"')
|
||||
@@ -8624,14 +8659,6 @@ export interface LogicFunctionLogsInput {applicationId?: (Scalars['UUID'] | null
|
||||
|
||||
|
||||
|
||||
const ConnectedAccountDTO_possibleTypes: string[] = ['ConnectedAccountDTO']
|
||||
export const isConnectedAccountDTO = (obj?: { __typename?: any } | null): obj is ConnectedAccountDTO => {
|
||||
if (!obj?.__typename) throw new Error('__typename is missing in "isConnectedAccountDTO"')
|
||||
return ConnectedAccountDTO_possibleTypes.includes(obj.__typename)
|
||||
}
|
||||
|
||||
|
||||
|
||||
const MessageChannel_possibleTypes: string[] = ['MessageChannel']
|
||||
export const isMessageChannel = (obj?: { __typename?: any } | null): obj is MessageChannel => {
|
||||
if (!obj?.__typename) throw new Error('__typename is missing in "isMessageChannel"')
|
||||
@@ -9120,6 +9147,7 @@ export const enumFeatureFlagKey = {
|
||||
IS_EMAILING_DOMAIN_ENABLED: 'IS_EMAILING_DOMAIN_ENABLED' as const,
|
||||
IS_JUNCTION_RELATIONS_ENABLED: 'IS_JUNCTION_RELATIONS_ENABLED' as const,
|
||||
IS_DRAFT_EMAIL_ENABLED: 'IS_DRAFT_EMAIL_ENABLED' as const,
|
||||
IS_CONNECTED_ACCOUNT_MIGRATED: 'IS_CONNECTED_ACCOUNT_MIGRATED' as const,
|
||||
IS_USAGE_ANALYTICS_ENABLED: 'IS_USAGE_ANALYTICS_ENABLED' as const,
|
||||
IS_RICH_TEXT_V1_MIGRATED: 'IS_RICH_TEXT_V1_MIGRATED' as const,
|
||||
IS_RECORD_PAGE_LAYOUT_GLOBAL_EDITION_ENABLED: 'IS_RECORD_PAGE_LAYOUT_GLOBAL_EDITION_ENABLED' as const,
|
||||
@@ -9274,6 +9302,7 @@ export const enumEngineComponentKey = {
|
||||
TRIGGER_WORKFLOW_VERSION: 'TRIGGER_WORKFLOW_VERSION' as const,
|
||||
FRONT_COMPONENT_RENDERER: 'FRONT_COMPONENT_RENDERER' as const,
|
||||
REPLY_TO_EMAIL_THREAD: 'REPLY_TO_EMAIL_THREAD' as const,
|
||||
COMPOSE_EMAIL: 'COMPOSE_EMAIL' as const,
|
||||
DELETE_SINGLE_RECORD: 'DELETE_SINGLE_RECORD' as const,
|
||||
DELETE_MULTIPLE_RECORDS: 'DELETE_MULTIPLE_RECORDS' as const,
|
||||
RESTORE_SINGLE_RECORD: 'RESTORE_SINGLE_RECORD' as const,
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -52,7 +52,11 @@ yarn twenty deploy
|
||||
|
||||
### Sharing a deployed app
|
||||
|
||||
Tarball apps are not listed in the public marketplace, so other workspaces on the same server won't discover them by browsing. To share a deployed app:
|
||||
<Warning>
|
||||
Sharing private (tarball) apps across workspaces is an **Enterprise** feature. The **Distribution** tab will show an upgrade prompt instead of the share controls until your workspace has a valid Enterprise key. See [Settings > Admin Panel > Enterprise](/settings/admin-panel#enterprise) to activate it.
|
||||
</Warning>
|
||||
|
||||
Tarball apps are not listed in the public marketplace, so other workspaces on the same server won't discover them by browsing. Once your workspace is on the Enterprise plan, you can share a deployed app like this:
|
||||
|
||||
1. Go to **Settings > Applications > Registrations** and open your app
|
||||
2. In the **Distribution** tab, click **Copy share link**
|
||||
@@ -60,10 +64,6 @@ Tarball apps are not listed in the public marketplace, so other workspaces on th
|
||||
|
||||
The share link uses the server's base URL (without any workspace subdomain) so it works for any workspace on the server.
|
||||
|
||||
<Warning>
|
||||
Sharing private apps is an Enterprise feature. Go to [Settings > Admin Panel > Enterprise](/settings/admin-panel#enterprise) to enable it.
|
||||
</Warning>
|
||||
|
||||
### Version management
|
||||
|
||||
To release an update:
|
||||
|
||||
@@ -52,7 +52,11 @@ yarn twenty deploy
|
||||
|
||||
### مشاركة تطبيق منشور
|
||||
|
||||
تطبيقات tarball لا تُدرَج في السوق العامة، لذا لن تكتشفها مساحات العمل الأخرى على الخادم نفسه عبر الاستعراض. لمشاركة تطبيق منشور:
|
||||
<Warning>
|
||||
تُعد مشاركة التطبيقات الخاصة (tarball) عبر مساحات العمل ميزة ضمن **Enterprise**. ستعرض علامة التبويب **Distribution** مطالبة بالترقية بدلًا من عناصر التحكم في المشاركة حتى تحتوي مساحة العمل لديك على مفتاح Enterprise صالح. اطلع على [الإعدادات > لوحة الإدارة > Enterprise](/settings/admin-panel#enterprise) لتنشيطه.
|
||||
</Warning>
|
||||
|
||||
تطبيقات tarball لا تُدرَج في السوق العامة، لذا لن تكتشفها مساحات العمل الأخرى على الخادم نفسه عبر الاستعراض. Once your workspace is on the Enterprise plan, you can share a deployed app like this:
|
||||
|
||||
1. اذهب إلى **الإعدادات > التطبيقات > التسجيلات** وافتح تطبيقك
|
||||
2. في علامة التبويب **التوزيع**، انقر **نسخ رابط المشاركة**
|
||||
@@ -60,10 +64,6 @@ yarn twenty deploy
|
||||
|
||||
يستخدم رابط المشاركة عنوان URL الأساسي للخادم (من دون أي نطاق فرعي لمساحة عمل)، لذا يعمل مع أي مساحة عمل على الخادم.
|
||||
|
||||
<Warning>
|
||||
مشاركة التطبيقات الخاصة هي ميزة ضمن باقة Enterprise. اذهب إلى [الإعدادات > لوحة الإدارة > Enterprise](/settings/admin-panel#enterprise) لتمكينها.
|
||||
</Warning>
|
||||
|
||||
### إدارة الإصدارات
|
||||
|
||||
لطرح تحديث:
|
||||
|
||||
@@ -52,7 +52,11 @@ yarn twenty deploy
|
||||
|
||||
### Sdílení nasazené aplikace
|
||||
|
||||
Aplikace ve formě tarball nejsou uvedeny ve veřejném tržišti, takže je ostatní pracovní prostory na tomtéž serveru procházením neobjeví. Chcete-li sdílet nasazenou aplikaci:
|
||||
<Warning>
|
||||
Sdílení soukromých (tarball) aplikací napříč pracovními prostory je funkcí plánu **Enterprise**. Karta **Distribution** bude místo ovládacích prvků sdílení zobrazovat výzvu k upgradu, dokud váš pracovní prostor nebude mít platný klíč Enterprise. Přejděte do [Nastavení > Admin Panel > Enterprise](/settings/admin-panel#enterprise) a aktivujte ji.
|
||||
</Warning>
|
||||
|
||||
Aplikace ve formě tarball nejsou uvedeny ve veřejném tržišti, takže je ostatní pracovní prostory na tomtéž serveru procházením neobjeví. Once your workspace is on the Enterprise plan, you can share a deployed app like this:
|
||||
|
||||
1. Přejděte do **Nastavení > Aplikace > Registrace** a otevřete svou aplikaci
|
||||
2. Na kartě **Distribuce** klikněte na **Zkopírovat odkaz ke sdílení**
|
||||
@@ -60,10 +64,6 @@ Aplikace ve formě tarball nejsou uvedeny ve veřejném tržišti, takže je ost
|
||||
|
||||
Odkaz ke sdílení používá základní adresu URL serveru (bez jakékoli subdomény pracovního prostoru), takže funguje pro libovolný pracovní prostor na serveru.
|
||||
|
||||
<Warning>
|
||||
Sdílení soukromých aplikací je funkce Enterprise. Přejděte do [Nastavení > Admin Panel > Enterprise](/settings/admin-panel#enterprise) a povolte ji.
|
||||
</Warning>
|
||||
|
||||
### Správa verzí
|
||||
|
||||
Chcete-li vydat aktualizaci:
|
||||
|
||||
@@ -52,7 +52,11 @@ yarn twenty deploy
|
||||
|
||||
### Eine bereitgestellte App freigeben
|
||||
|
||||
Tarball-Apps werden nicht im öffentlichen Marktplatz gelistet, daher entdecken andere Arbeitsbereiche auf demselben Server sie nicht durch Stöbern. So geben Sie eine bereitgestellte App frei:
|
||||
<Warning>
|
||||
Sharing private (tarball) apps across workspaces is an **Enterprise** feature. The **Distribution** tab will show an upgrade prompt instead of the share controls until your workspace has a valid Enterprise key. See [Settings > Admin Panel > Enterprise](/settings/admin-panel#enterprise) to activate it.
|
||||
</Warning>
|
||||
|
||||
Tarball-Apps werden nicht im öffentlichen Marktplatz gelistet, daher entdecken andere Arbeitsbereiche auf demselben Server sie nicht durch Stöbern. Once your workspace is on the Enterprise plan, you can share a deployed app like this:
|
||||
|
||||
1. Gehen Sie zu **Einstellungen > Anwendungen > Registrierungen** und öffnen Sie Ihre App
|
||||
2. Klicken Sie im Tab **Distribution** auf **Freigabelink kopieren**
|
||||
@@ -60,10 +64,6 @@ Tarball-Apps werden nicht im öffentlichen Marktplatz gelistet, daher entdecken
|
||||
|
||||
Der Freigabelink verwendet die Basis-URL des Servers (ohne Workspace-Subdomain), sodass er für jeden Arbeitsbereich auf dem Server funktioniert.
|
||||
|
||||
<Warning>
|
||||
Das Teilen privater Apps ist eine Enterprise-Funktion. Gehen Sie zu [Einstellungen > Admin-Panel > Enterprise](/settings/admin-panel#enterprise), um es zu aktivieren.
|
||||
</Warning>
|
||||
|
||||
### Versionsverwaltung
|
||||
|
||||
So veröffentlichen Sie ein Update:
|
||||
|
||||
@@ -52,7 +52,11 @@ yarn twenty deploy
|
||||
|
||||
### Condivisione di un'app distribuita
|
||||
|
||||
Le app in formato tarball non sono elencate nel marketplace pubblico, quindi altri spazi di lavoro sullo stesso server non le troveranno navigando. Per condividere un'app distribuita:
|
||||
<Warning>
|
||||
Sharing private (tarball) apps across workspaces is an **Enterprise** feature. The **Distribution** tab will show an upgrade prompt instead of the share controls until your workspace has a valid Enterprise key. See [Settings > Admin Panel > Enterprise](/settings/admin-panel#enterprise) to activate it.
|
||||
</Warning>
|
||||
|
||||
Le app in formato tarball non sono elencate nel marketplace pubblico, quindi altri spazi di lavoro sullo stesso server non le troveranno navigando. Once your workspace is on the Enterprise plan, you can share a deployed app like this:
|
||||
|
||||
1. Vai su **Impostazioni > Applicazioni > Registrazioni** e apri la tua app
|
||||
2. Nella scheda **Distribuzione**, fai clic su **Copia link di condivisione**
|
||||
@@ -60,10 +64,6 @@ Le app in formato tarball non sono elencate nel marketplace pubblico, quindi alt
|
||||
|
||||
Il link di condivisione utilizza l'URL di base del server (senza alcun sottodominio dello spazio di lavoro) così funziona per qualsiasi spazio di lavoro sul server.
|
||||
|
||||
<Warning>
|
||||
La condivisione delle app private è una funzionalità Enterprise. Vai a [Impostazioni > Pannello di amministrazione > Enterprise](/settings/admin-panel#enterprise) per abilitarla.
|
||||
</Warning>
|
||||
|
||||
### Gestione delle versioni
|
||||
|
||||
Per rilasciare un aggiornamento:
|
||||
|
||||
@@ -52,7 +52,11 @@ yarn twenty deploy
|
||||
|
||||
### Compartilhando um aplicativo implantado
|
||||
|
||||
Aplicativos em tarball não são listados no marketplace público, então outros espaços de trabalho no mesmo servidor não os descobrirão ao navegar. Para compartilhar um aplicativo implantado:
|
||||
<Warning>
|
||||
Sharing private (tarball) apps across workspaces is an **Enterprise** feature. The **Distribution** tab will show an upgrade prompt instead of the share controls until your workspace has a valid Enterprise key. See [Settings > Admin Panel > Enterprise](/settings/admin-panel#enterprise) to activate it.
|
||||
</Warning>
|
||||
|
||||
Aplicativos em tarball não são listados no marketplace público, então outros espaços de trabalho no mesmo servidor não os descobrirão ao navegar. Once your workspace is on the Enterprise plan, you can share a deployed app like this:
|
||||
|
||||
1. Vá para **Configurações > Aplicações > Registros** e abra seu aplicativo
|
||||
2. Na guia **Distribuição**, clique em **Copiar link de compartilhamento**
|
||||
@@ -60,10 +64,6 @@ Aplicativos em tarball não são listados no marketplace público, então outros
|
||||
|
||||
O link de compartilhamento usa a URL base do servidor (sem qualquer subdomínio de espaço de trabalho), para funcionar em qualquer espaço de trabalho no servidor.
|
||||
|
||||
<Warning>
|
||||
Compartilhar apps privados é um recurso do plano Enterprise. Vá para [Configurações > Painel de Administração > Enterprise](/settings/admin-panel#enterprise) para ativá-lo.
|
||||
</Warning>
|
||||
|
||||
### Gerenciamento de versões
|
||||
|
||||
Para lançar uma atualização:
|
||||
|
||||
@@ -52,7 +52,11 @@ yarn twenty deploy
|
||||
|
||||
### Partajarea unei aplicații implementate
|
||||
|
||||
Aplicațiile tarball nu sunt listate în marketplace-ul public, astfel încât alte spații de lucru de pe același server nu le vor descoperi prin navigare. Pentru a partaja o aplicație implementată:
|
||||
<Warning>
|
||||
Sharing private (tarball) apps across workspaces is an **Enterprise** feature. The **Distribution** tab will show an upgrade prompt instead of the share controls until your workspace has a valid Enterprise key. See [Settings > Admin Panel > Enterprise](/settings/admin-panel#enterprise) to activate it.
|
||||
</Warning>
|
||||
|
||||
Aplicațiile tarball nu sunt listate în marketplace-ul public, astfel încât alte spații de lucru de pe același server nu le vor descoperi prin navigare. Once your workspace is on the Enterprise plan, you can share a deployed app like this:
|
||||
|
||||
1. Mergi la **Setări > Aplicații > Înregistrări** și deschide aplicația ta
|
||||
2. În fila **Distribuție**, fă clic pe **Copiază linkul de partajare**
|
||||
@@ -60,10 +64,6 @@ Aplicațiile tarball nu sunt listate în marketplace-ul public, astfel încât a
|
||||
|
||||
Linkul de partajare folosește URL-ul de bază al serverului (fără niciun subdomeniu de spațiu de lucru), astfel încât funcționează pentru orice spațiu de lucru de pe server.
|
||||
|
||||
<Warning>
|
||||
Partajarea aplicațiilor private este o funcționalitate Enterprise. Mergi la [Setări > Panou de administrare > Enterprise](/settings/admin-panel#enterprise) pentru a o activa.
|
||||
</Warning>
|
||||
|
||||
### Gestionarea versiunilor
|
||||
|
||||
Pentru a lansa o actualizare:
|
||||
|
||||
@@ -52,7 +52,11 @@ yarn twenty deploy
|
||||
|
||||
### Общий доступ к развернутому приложению
|
||||
|
||||
Приложения в формате tarball не отображаются в публичном маркетплейсе, поэтому другие рабочие пространства на том же сервере не найдут их при просмотре. Чтобы поделиться развернутым приложением:
|
||||
<Warning>
|
||||
Sharing private (tarball) apps across workspaces is an **Enterprise** feature. The **Distribution** tab will show an upgrade prompt instead of the share controls until your workspace has a valid Enterprise key. See [Settings > Admin Panel > Enterprise](/settings/admin-panel#enterprise) to activate it.
|
||||
</Warning>
|
||||
|
||||
Приложения в формате tarball не отображаются в публичном маркетплейсе, поэтому другие рабочие пространства на том же сервере не найдут их при просмотре. Once your workspace is on the Enterprise plan, you can share a deployed app like this:
|
||||
|
||||
1. Перейдите в **Настройки > Приложения > Регистрации** и откройте ваше приложение
|
||||
2. На вкладке **Распространение** нажмите **Копировать ссылку для общего доступа**
|
||||
@@ -60,10 +64,6 @@ yarn twenty deploy
|
||||
|
||||
Ссылка общего доступа использует базовый URL сервера (без какого-либо поддомена рабочего пространства), поэтому она работает для любого рабочего пространства на сервере.
|
||||
|
||||
<Warning>
|
||||
Возможность делиться частными приложениями — функция Enterprise. Перейдите в [Настройки > Панель администратора > Enterprise](/settings/admin-panel#enterprise), чтобы включить её.
|
||||
</Warning>
|
||||
|
||||
### Управление версиями
|
||||
|
||||
Чтобы выпустить обновление:
|
||||
|
||||
@@ -52,7 +52,11 @@ yarn twenty deploy
|
||||
|
||||
### Dağıtılmış bir uygulamayı paylaşma
|
||||
|
||||
Tarball uygulamaları genel pazar yerinde listelenmez; bu nedenle aynı sunucudaki diğer çalışma alanları gezinerek onları keşfedemez. Dağıtılmış bir uygulamayı paylaşmak için:
|
||||
<Warning>
|
||||
Sharing private (tarball) apps across workspaces is an **Enterprise** feature. The **Distribution** tab will show an upgrade prompt instead of the share controls until your workspace has a valid Enterprise key. See [Settings > Admin Panel > Enterprise](/settings/admin-panel#enterprise) to activate it.
|
||||
</Warning>
|
||||
|
||||
Tarball uygulamaları genel pazar yerinde listelenmez; bu nedenle aynı sunucudaki diğer çalışma alanları gezinerek onları keşfedemez. Once your workspace is on the Enterprise plan, you can share a deployed app like this:
|
||||
|
||||
1. **Ayarlar > Uygulamalar > Kayıtlar** bölümüne gidin ve uygulamanızı açın
|
||||
2. **Dağıtım** sekmesinde, **Paylaşım bağlantısını kopyala**’ya tıklayın
|
||||
@@ -60,10 +64,6 @@ Tarball uygulamaları genel pazar yerinde listelenmez; bu nedenle aynı sunucuda
|
||||
|
||||
Paylaşım bağlantısı, sunucunun temel URL’sini (herhangi bir çalışma alanı alt alan adı olmadan) kullanır; böylece sunucudaki herhangi bir çalışma alanı için çalışır.
|
||||
|
||||
<Warning>
|
||||
Özel uygulamaları paylaşma bir Kurumsal özelliktir. [Ayarlar > Yönetim Paneli > Kurumsal](/settings/admin-panel#enterprise) bölümüne giderek etkinleştirin.
|
||||
</Warning>
|
||||
|
||||
### Sürüm yönetimi
|
||||
|
||||
Bir güncelleme yayımlamak için:
|
||||
|
||||
@@ -29,6 +29,7 @@ module.exports = {
|
||||
'./src/modules/front-components/graphql/**/*.{ts,tsx}',
|
||||
|
||||
'./src/modules/page-layout/widgets/**/graphql/**/*.{ts,tsx}',
|
||||
'./src/modules/activities/emails/graphql/mutations/**/*.{ts,tsx}',
|
||||
|
||||
'./src/modules/dashboards/graphql/**/*.{ts,tsx}',
|
||||
'./src/modules/page-layout/graphql/**/*.{ts,tsx}',
|
||||
|
||||
@@ -6,7 +6,8 @@ module.exports = {
|
||||
'/graphql',
|
||||
documents: [
|
||||
'./src/modules/workflow/**/graphql/**/*.{ts,tsx}',
|
||||
'./src/modules/activities/emails/graphql/**/*.{ts,tsx}',
|
||||
'./src/modules/activities/emails/graphql/queries/**/*.{ts,tsx}',
|
||||
'./src/modules/activities/emails/graphql/operation-signatures/**/*.{ts,tsx}',
|
||||
'./src/modules/activities/calendar/graphql/**/*.{ts,tsx}',
|
||||
'./src/modules/search/graphql/**/*.{ts,tsx}',
|
||||
'./src/modules/command-menu/graphql/**/*.{ts,tsx}',
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -1,9 +1,11 @@
|
||||
import { useOpenSettingsMenu } from '@/navigation/hooks/useOpenSettings';
|
||||
import { useNavigate } from 'react-router-dom';
|
||||
import { type SettingsPath } from 'twenty-shared/types';
|
||||
import { getSettingsPath } from 'twenty-shared/utils';
|
||||
|
||||
export const useNavigateSettings = () => {
|
||||
const navigate = useNavigate();
|
||||
const { openSettingsMenu } = useOpenSettingsMenu();
|
||||
|
||||
return <T extends SettingsPath>(
|
||||
to: T,
|
||||
@@ -14,6 +16,8 @@ export const useNavigateSettings = () => {
|
||||
state?: any;
|
||||
},
|
||||
) => {
|
||||
openSettingsMenu();
|
||||
|
||||
const path = getSettingsPath(to, params, queryParams);
|
||||
return navigate(path, options);
|
||||
};
|
||||
|
||||
@@ -456,11 +456,13 @@ msgstr "{workspaceMemberName} sal ontkoppel word van die volgende rol:"
|
||||
msgid "••••••••"
|
||||
msgstr "••••••••"
|
||||
|
||||
#. js-lingui-id: tD9raa
|
||||
#. js-lingui-id: SMgdEJ
|
||||
#. placeholder {0}: formatNumber(preview.estimatedTokenCount, { abbreviate: true, decimals: 1, })
|
||||
#. placeholder {0}: formatNumber( section.estimatedTokenCount, { abbreviate: true, decimals: 1, }, )
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "~{0} tokens"
|
||||
msgstr "~{0} tokens"
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "~ {0} tokens"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Cx0xl3
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
|
||||
@@ -1707,6 +1709,7 @@ msgstr "'n Fout het voorgekom tydens die oplaai van die prent."
|
||||
#: src/modules/views/hooks/internal/usePerformViewAPIPersist.ts
|
||||
#: src/modules/ui/feedback/snack-bar-manager/hooks/useSnackBar.ts
|
||||
#: src/modules/page-layout/hooks/useUpdatePageLayoutWithTabsAndWidgets.ts
|
||||
#: src/modules/page-layout/hooks/useResetPageLayoutWidgetToDefault.ts
|
||||
#: src/modules/object-metadata/hooks/useUpdateOneObjectMetadataItem.ts
|
||||
#: src/modules/object-metadata/hooks/useUpdateOneFieldMetadataItem.ts
|
||||
#: src/modules/object-metadata/hooks/useDeleteOneObjectMetadataItem.ts
|
||||
@@ -2418,6 +2421,12 @@ msgstr "Basis-URL"
|
||||
msgid "Base URL is required"
|
||||
msgstr "Basis-URL word vereis"
|
||||
|
||||
#. js-lingui-id: /xLNEx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Bcc"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: PFohi3
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
msgid "BCC"
|
||||
@@ -2721,9 +2730,11 @@ msgstr "Kan nie skandeer nie? Kopieer die"
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
#: src/modules/spreadsheet-import/provider/components/SpreadsheetImport.tsx
|
||||
#: src/modules/side-panel/pages/compose-email/components/SidePanelComposeEmailPage.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposer.tsx
|
||||
msgid "Cancel"
|
||||
msgstr "Kanselleer"
|
||||
|
||||
@@ -2763,6 +2774,11 @@ msgstr "Kanselleer planwisseling"
|
||||
msgid "Cancel plan switching?"
|
||||
msgstr "Kanselleer planwisseling?"
|
||||
|
||||
#. js-lingui-id: AnRu/j
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
msgid "Cancel reply"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: N6gPiD
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/settings/billing/components/SettingsBillingContent.tsx
|
||||
@@ -2831,11 +2847,22 @@ msgstr "Katalaans"
|
||||
msgid "Category"
|
||||
msgstr "Kategorie"
|
||||
|
||||
#. js-lingui-id: RpYfjZ
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Cc"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XdZeJk
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
msgid "CC"
|
||||
msgstr "CC"
|
||||
|
||||
#. js-lingui-id: Dgsw8A
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Cc/Bcc"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: tHntRt
|
||||
#: src/modules/page-layout/widgets/standalone-rich-text/components/DashboardEditorSideMenu.tsx
|
||||
#: src/modules/blocknote-editor/components/CustomSideMenu.tsx
|
||||
@@ -5350,6 +5377,11 @@ msgstr "E-pos moet 'n geldige e-pos wees"
|
||||
msgid "Email or domain is already in blocklist"
|
||||
msgstr "E-pos of domein is reeds in bloklys"
|
||||
|
||||
#. js-lingui-id: Xl929X
|
||||
#: src/modules/activities/emails/hooks/useSendEmail.ts
|
||||
msgid "Email sent successfully"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: jvneza
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "Email support"
|
||||
@@ -6439,6 +6471,12 @@ msgstr ""
|
||||
msgid "Failed to save workspace instructions"
|
||||
msgstr "Kon nie werkruimte-instruksies stoor nie"
|
||||
|
||||
#. js-lingui-id: Lo/GQ5
|
||||
#: src/modules/activities/emails/hooks/useSendEmail.ts
|
||||
#: src/modules/activities/emails/hooks/useSendEmail.ts
|
||||
msgid "Failed to send email"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: aj02T8
|
||||
#: src/modules/settings/admin-panel/health-status/maintenance-mode/components/SettingsAdminMaintenanceMode.tsx
|
||||
msgid "Failed to set maintenance mode."
|
||||
@@ -6930,6 +6968,11 @@ msgstr "Gratis proefkrediete uitgeput. Teken nou in om voort te gaan om AI-funks
|
||||
msgid "French"
|
||||
msgstr "Frans"
|
||||
|
||||
#. js-lingui-id: ejVYRQ
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "From"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: qR8gT9
|
||||
#: src/modules/workflow/workflow-trigger/utils/cron-to-human/descriptors/getDayOfWeekDescription.ts
|
||||
msgid "from {startDay} to {endDay}"
|
||||
@@ -9398,6 +9441,11 @@ msgstr "Nuwe geselsie"
|
||||
msgid "New conversation"
|
||||
msgstr "Nuwe gesprek"
|
||||
|
||||
#. js-lingui-id: 3RwJHq
|
||||
#: src/modules/side-panel/hooks/useOpenComposeEmailInSidePanel.ts
|
||||
msgid "New Email"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wqoYqp
|
||||
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
|
||||
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
|
||||
@@ -11374,10 +11422,11 @@ msgstr ""
|
||||
msgid "Read your profile"
|
||||
msgstr "Lees jou profiel"
|
||||
|
||||
#. js-lingui-id: tCXcL7
|
||||
#. js-lingui-id: 6pSHJ5
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Read-only — managed by Twenty"
|
||||
msgstr "Leesalleen — bestuur deur Twenty"
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Read-only"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: W+ApAD
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
@@ -11399,6 +11448,11 @@ msgstr "Ontvang 'n e-pos met skakel om wagwoord op te dateer"
|
||||
msgid "Recent Events (oldest → newest)"
|
||||
msgstr "Onlangse Gebeure (oudste → nuutste)"
|
||||
|
||||
#. js-lingui-id: yPrbsy
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Recipients"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: b2+5uV
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
msgid "Recommended Models"
|
||||
@@ -11750,6 +11804,8 @@ msgid "Reorder options"
|
||||
msgstr "Herskik opsies"
|
||||
|
||||
#. js-lingui-id: ImOQa9
|
||||
#: src/modules/side-panel/hooks/useOpenComposeEmailInSidePanel.ts
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
#: src/modules/activities/emails/components/EmailThreadBottomBar.tsx
|
||||
msgid "Reply"
|
||||
msgstr "Reageer"
|
||||
@@ -11759,6 +11815,11 @@ msgstr "Reageer"
|
||||
msgid "Reply to all"
|
||||
msgstr "Beantwoord almal"
|
||||
|
||||
#. js-lingui-id: fiPYZo
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
msgid "Reply..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: tbmZmI
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "Report and issue"
|
||||
@@ -11784,6 +11845,7 @@ msgstr "Stuur e-pos weer"
|
||||
#. js-lingui-id: OfhWJH
|
||||
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
|
||||
#: src/modules/views/components/ViewBarDetails.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
msgid "Reset"
|
||||
msgstr "Stel terug"
|
||||
|
||||
@@ -11804,6 +11866,8 @@ msgid "Reset to"
|
||||
msgstr "Herstel na"
|
||||
|
||||
#. js-lingui-id: L+rMC9
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
msgid "Reset to default"
|
||||
@@ -12698,6 +12762,13 @@ msgstr "Kies watter modelle as aanbevole modelle in die werkruimte se modelkiese
|
||||
msgid "Select your preferred language"
|
||||
msgstr "Kies jou voorkeurtaal"
|
||||
|
||||
#. js-lingui-id: JlFcis
|
||||
#: src/modules/side-panel/pages/compose-email/components/SidePanelComposeEmailPage.tsx
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposer.tsx
|
||||
msgid "Send"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mjK8F3
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
msgid "Send an invite email to your team"
|
||||
@@ -13413,6 +13484,8 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: UJmAAK
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Subject"
|
||||
msgstr "Onderwerp"
|
||||
|
||||
@@ -13653,11 +13726,6 @@ msgstr ""
|
||||
msgid "System Prompt"
|
||||
msgstr "Stelsel Prompt"
|
||||
|
||||
#. js-lingui-id: BXGTWI
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "System Prompt ({totalTokenCount})"
|
||||
msgstr "Stelselprompt ({totalTokenCount})"
|
||||
|
||||
#. js-lingui-id: k+7QWO
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
msgid "System relations"
|
||||
@@ -14144,6 +14212,11 @@ msgstr ""
|
||||
msgid "This week"
|
||||
msgstr "Hierdie week"
|
||||
|
||||
#. js-lingui-id: VbVocX
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
msgid "This will cancel all modifications done on the widget. This action cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: h4VeOo
|
||||
#: src/modules/settings/billing/hooks/useBillingWording.ts
|
||||
msgid "This will cancel the scheduled interval change and keep your current billing interval ({currentIntervalLabel})."
|
||||
@@ -14259,6 +14332,7 @@ msgstr "titel"
|
||||
|
||||
#. js-lingui-id: /jQctM
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "To"
|
||||
msgstr "Aan"
|
||||
|
||||
@@ -14582,6 +14656,11 @@ msgstr "Tik '/' vir opdragte, '@' vir vermeldings"
|
||||
msgid "Type anything..."
|
||||
msgstr "Tik enigiets..."
|
||||
|
||||
#. js-lingui-id: LaEX5I
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Type something or press \"/\" to see commands"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: UhqKcC
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Type to search records"
|
||||
@@ -14909,6 +14988,11 @@ msgstr "Opgradeer vir toegang"
|
||||
msgid "Upgrade to Enterprise to access audit logs."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: D+7y/3
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Upgrade to Enterprise to share private applications."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +Gi3x1
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationVersionContainer.tsx
|
||||
@@ -15345,7 +15429,6 @@ msgstr "Bekyk logboeke"
|
||||
|
||||
#. js-lingui-id: 7PrSCy
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "View marketplace page"
|
||||
msgstr "Bekyk markplekbladsy"
|
||||
|
||||
@@ -15359,6 +15442,11 @@ msgstr ""
|
||||
msgid "View Previous AI Chats"
|
||||
msgstr "Sien Vorige KI-kletse"
|
||||
|
||||
#. js-lingui-id: NnJpTN
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "View private application page"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: hAAsm/
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowEditActionAiAgent.tsx
|
||||
msgid "View role"
|
||||
|
||||
@@ -456,11 +456,13 @@ msgstr "{workspaceMemberName} سيتم إلغاء تعيينه من الدور
|
||||
msgid "••••••••"
|
||||
msgstr "••••••••"
|
||||
|
||||
#. js-lingui-id: tD9raa
|
||||
#. js-lingui-id: SMgdEJ
|
||||
#. placeholder {0}: formatNumber(preview.estimatedTokenCount, { abbreviate: true, decimals: 1, })
|
||||
#. placeholder {0}: formatNumber( section.estimatedTokenCount, { abbreviate: true, decimals: 1, }, )
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "~{0} tokens"
|
||||
msgstr "~{0} رموز"
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "~ {0} tokens"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Cx0xl3
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
|
||||
@@ -1707,6 +1709,7 @@ msgstr "حدث خطأ أثناء تحميل الصورة."
|
||||
#: src/modules/views/hooks/internal/usePerformViewAPIPersist.ts
|
||||
#: src/modules/ui/feedback/snack-bar-manager/hooks/useSnackBar.ts
|
||||
#: src/modules/page-layout/hooks/useUpdatePageLayoutWithTabsAndWidgets.ts
|
||||
#: src/modules/page-layout/hooks/useResetPageLayoutWidgetToDefault.ts
|
||||
#: src/modules/object-metadata/hooks/useUpdateOneObjectMetadataItem.ts
|
||||
#: src/modules/object-metadata/hooks/useUpdateOneFieldMetadataItem.ts
|
||||
#: src/modules/object-metadata/hooks/useDeleteOneObjectMetadataItem.ts
|
||||
@@ -2418,6 +2421,12 @@ msgstr "عنوان URL الأساسي"
|
||||
msgid "Base URL is required"
|
||||
msgstr "عنوان URL الأساسي مطلوب"
|
||||
|
||||
#. js-lingui-id: /xLNEx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Bcc"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: PFohi3
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
msgid "BCC"
|
||||
@@ -2721,9 +2730,11 @@ msgstr "هل لا يمكنك المسح؟ انسخ الـ"
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
#: src/modules/spreadsheet-import/provider/components/SpreadsheetImport.tsx
|
||||
#: src/modules/side-panel/pages/compose-email/components/SidePanelComposeEmailPage.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposer.tsx
|
||||
msgid "Cancel"
|
||||
msgstr "إلغاء"
|
||||
|
||||
@@ -2763,6 +2774,11 @@ msgstr "إلغاء تبديل الخطة"
|
||||
msgid "Cancel plan switching?"
|
||||
msgstr "إلغاء تبديل الخطة؟"
|
||||
|
||||
#. js-lingui-id: AnRu/j
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
msgid "Cancel reply"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: N6gPiD
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/settings/billing/components/SettingsBillingContent.tsx
|
||||
@@ -2831,11 +2847,22 @@ msgstr "الكاتالانية"
|
||||
msgid "Category"
|
||||
msgstr "الفئة"
|
||||
|
||||
#. js-lingui-id: RpYfjZ
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Cc"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XdZeJk
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
msgid "CC"
|
||||
msgstr "نسخة كربونية"
|
||||
|
||||
#. js-lingui-id: Dgsw8A
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Cc/Bcc"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: tHntRt
|
||||
#: src/modules/page-layout/widgets/standalone-rich-text/components/DashboardEditorSideMenu.tsx
|
||||
#: src/modules/blocknote-editor/components/CustomSideMenu.tsx
|
||||
@@ -5350,6 +5377,11 @@ msgstr "يجب أن يكون البريد الإلكتروني صالحًا"
|
||||
msgid "Email or domain is already in blocklist"
|
||||
msgstr "البريد الإلكتروني أو النطاق مدرج بالفعل في القائمة السوداء"
|
||||
|
||||
#. js-lingui-id: Xl929X
|
||||
#: src/modules/activities/emails/hooks/useSendEmail.ts
|
||||
msgid "Email sent successfully"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: jvneza
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "Email support"
|
||||
@@ -6439,6 +6471,12 @@ msgstr ""
|
||||
msgid "Failed to save workspace instructions"
|
||||
msgstr "تعذّر حفظ تعليمات مساحة العمل"
|
||||
|
||||
#. js-lingui-id: Lo/GQ5
|
||||
#: src/modules/activities/emails/hooks/useSendEmail.ts
|
||||
#: src/modules/activities/emails/hooks/useSendEmail.ts
|
||||
msgid "Failed to send email"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: aj02T8
|
||||
#: src/modules/settings/admin-panel/health-status/maintenance-mode/components/SettingsAdminMaintenanceMode.tsx
|
||||
msgid "Failed to set maintenance mode."
|
||||
@@ -6930,6 +6968,11 @@ msgstr "نفدت أرصدة النسخة التجريبية المجانية. ا
|
||||
msgid "French"
|
||||
msgstr "الفرنسية"
|
||||
|
||||
#. js-lingui-id: ejVYRQ
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "From"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: qR8gT9
|
||||
#: src/modules/workflow/workflow-trigger/utils/cron-to-human/descriptors/getDayOfWeekDescription.ts
|
||||
msgid "from {startDay} to {endDay}"
|
||||
@@ -9398,6 +9441,11 @@ msgstr "دردشة جديدة"
|
||||
msgid "New conversation"
|
||||
msgstr "محادثة جديدة"
|
||||
|
||||
#. js-lingui-id: 3RwJHq
|
||||
#: src/modules/side-panel/hooks/useOpenComposeEmailInSidePanel.ts
|
||||
msgid "New Email"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wqoYqp
|
||||
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
|
||||
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
|
||||
@@ -11374,10 +11422,11 @@ msgstr ""
|
||||
msgid "Read your profile"
|
||||
msgstr "قراءة ملفك الشخصي"
|
||||
|
||||
#. js-lingui-id: tCXcL7
|
||||
#. js-lingui-id: 6pSHJ5
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Read-only — managed by Twenty"
|
||||
msgstr "للقراءة فقط — تُدار بواسطة Twenty"
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Read-only"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: W+ApAD
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
@@ -11399,6 +11448,11 @@ msgstr "\\\\"
|
||||
msgid "Recent Events (oldest → newest)"
|
||||
msgstr "الأحداث الأخيرة (الأقدم ← الأحدث)"
|
||||
|
||||
#. js-lingui-id: yPrbsy
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Recipients"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: b2+5uV
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
msgid "Recommended Models"
|
||||
@@ -11750,6 +11804,8 @@ msgid "Reorder options"
|
||||
msgstr "إعادة ترتيب الخيارات"
|
||||
|
||||
#. js-lingui-id: ImOQa9
|
||||
#: src/modules/side-panel/hooks/useOpenComposeEmailInSidePanel.ts
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
#: src/modules/activities/emails/components/EmailThreadBottomBar.tsx
|
||||
msgid "Reply"
|
||||
msgstr "الرد"
|
||||
@@ -11759,6 +11815,11 @@ msgstr "الرد"
|
||||
msgid "Reply to all"
|
||||
msgstr "الرد على الكل"
|
||||
|
||||
#. js-lingui-id: fiPYZo
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
msgid "Reply..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: tbmZmI
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "Report and issue"
|
||||
@@ -11784,6 +11845,7 @@ msgstr "إعادة إرسال البريد الإلكتروني"
|
||||
#. js-lingui-id: OfhWJH
|
||||
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
|
||||
#: src/modules/views/components/ViewBarDetails.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
msgid "Reset"
|
||||
msgstr "إعادة تعيين"
|
||||
|
||||
@@ -11804,6 +11866,8 @@ msgid "Reset to"
|
||||
msgstr "\\\\"
|
||||
|
||||
#. js-lingui-id: L+rMC9
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
msgid "Reset to default"
|
||||
@@ -12698,6 +12762,13 @@ msgstr "حدد النماذج التي ستظهر كموصى بها في منت
|
||||
msgid "Select your preferred language"
|
||||
msgstr "\\\\"
|
||||
|
||||
#. js-lingui-id: JlFcis
|
||||
#: src/modules/side-panel/pages/compose-email/components/SidePanelComposeEmailPage.tsx
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposer.tsx
|
||||
msgid "Send"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mjK8F3
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
msgid "Send an invite email to your team"
|
||||
@@ -13413,6 +13484,8 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: UJmAAK
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Subject"
|
||||
msgstr "الموضوع"
|
||||
|
||||
@@ -13653,11 +13726,6 @@ msgstr ""
|
||||
msgid "System Prompt"
|
||||
msgstr "أمر النظام"
|
||||
|
||||
#. js-lingui-id: BXGTWI
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "System Prompt ({totalTokenCount})"
|
||||
msgstr "موجّه النظام ({totalTokenCount})"
|
||||
|
||||
#. js-lingui-id: k+7QWO
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
msgid "System relations"
|
||||
@@ -14144,6 +14212,11 @@ msgstr ""
|
||||
msgid "This week"
|
||||
msgstr "هذا الأسبوع"
|
||||
|
||||
#. js-lingui-id: VbVocX
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
msgid "This will cancel all modifications done on the widget. This action cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: h4VeOo
|
||||
#: src/modules/settings/billing/hooks/useBillingWording.ts
|
||||
msgid "This will cancel the scheduled interval change and keep your current billing interval ({currentIntervalLabel})."
|
||||
@@ -14259,6 +14332,7 @@ msgstr "العنوان"
|
||||
|
||||
#. js-lingui-id: /jQctM
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "To"
|
||||
msgstr "إلى"
|
||||
|
||||
@@ -14582,6 +14656,11 @@ msgstr "اكتب '/' للأوامر، و'@' للإشارات"
|
||||
msgid "Type anything..."
|
||||
msgstr "اكتب أي شيء..."
|
||||
|
||||
#. js-lingui-id: LaEX5I
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Type something or press \"/\" to see commands"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: UhqKcC
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Type to search records"
|
||||
@@ -14909,6 +14988,11 @@ msgstr "الترقية للوصول"
|
||||
msgid "Upgrade to Enterprise to access audit logs."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: D+7y/3
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Upgrade to Enterprise to share private applications."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +Gi3x1
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationVersionContainer.tsx
|
||||
@@ -15345,7 +15429,6 @@ msgstr "عرض السجلات"
|
||||
|
||||
#. js-lingui-id: 7PrSCy
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "View marketplace page"
|
||||
msgstr "عرض صفحة سوق التطبيقات"
|
||||
|
||||
@@ -15359,6 +15442,11 @@ msgstr ""
|
||||
msgid "View Previous AI Chats"
|
||||
msgstr "عرض الذكاءات الاصطناعية السابقة"
|
||||
|
||||
#. js-lingui-id: NnJpTN
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "View private application page"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: hAAsm/
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowEditActionAiAgent.tsx
|
||||
msgid "View role"
|
||||
|
||||
@@ -456,11 +456,13 @@ msgstr "{workspaceMemberName} serà desassignat del següent rol:"
|
||||
msgid "••••••••"
|
||||
msgstr "••••••••"
|
||||
|
||||
#. js-lingui-id: tD9raa
|
||||
#. js-lingui-id: SMgdEJ
|
||||
#. placeholder {0}: formatNumber(preview.estimatedTokenCount, { abbreviate: true, decimals: 1, })
|
||||
#. placeholder {0}: formatNumber( section.estimatedTokenCount, { abbreviate: true, decimals: 1, }, )
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "~{0} tokens"
|
||||
msgstr "~{0} tokens"
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "~ {0} tokens"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Cx0xl3
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
|
||||
@@ -1707,6 +1709,7 @@ msgstr "S'ha produït un error en carregar la imatge."
|
||||
#: src/modules/views/hooks/internal/usePerformViewAPIPersist.ts
|
||||
#: src/modules/ui/feedback/snack-bar-manager/hooks/useSnackBar.ts
|
||||
#: src/modules/page-layout/hooks/useUpdatePageLayoutWithTabsAndWidgets.ts
|
||||
#: src/modules/page-layout/hooks/useResetPageLayoutWidgetToDefault.ts
|
||||
#: src/modules/object-metadata/hooks/useUpdateOneObjectMetadataItem.ts
|
||||
#: src/modules/object-metadata/hooks/useUpdateOneFieldMetadataItem.ts
|
||||
#: src/modules/object-metadata/hooks/useDeleteOneObjectMetadataItem.ts
|
||||
@@ -2418,6 +2421,12 @@ msgstr "URL base"
|
||||
msgid "Base URL is required"
|
||||
msgstr "L'URL base és necessari"
|
||||
|
||||
#. js-lingui-id: /xLNEx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Bcc"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: PFohi3
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
msgid "BCC"
|
||||
@@ -2721,9 +2730,11 @@ msgstr "No pots escanejar? Copia la"
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
#: src/modules/spreadsheet-import/provider/components/SpreadsheetImport.tsx
|
||||
#: src/modules/side-panel/pages/compose-email/components/SidePanelComposeEmailPage.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposer.tsx
|
||||
msgid "Cancel"
|
||||
msgstr "Cancel·la"
|
||||
|
||||
@@ -2763,6 +2774,11 @@ msgstr "Cancel·lar el canvi de pla"
|
||||
msgid "Cancel plan switching?"
|
||||
msgstr "Cancel·lar el canvi de pla?"
|
||||
|
||||
#. js-lingui-id: AnRu/j
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
msgid "Cancel reply"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: N6gPiD
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/settings/billing/components/SettingsBillingContent.tsx
|
||||
@@ -2831,11 +2847,22 @@ msgstr "Català"
|
||||
msgid "Category"
|
||||
msgstr "Categoria"
|
||||
|
||||
#. js-lingui-id: RpYfjZ
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Cc"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XdZeJk
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
msgid "CC"
|
||||
msgstr "CC"
|
||||
|
||||
#. js-lingui-id: Dgsw8A
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Cc/Bcc"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: tHntRt
|
||||
#: src/modules/page-layout/widgets/standalone-rich-text/components/DashboardEditorSideMenu.tsx
|
||||
#: src/modules/blocknote-editor/components/CustomSideMenu.tsx
|
||||
@@ -5350,6 +5377,11 @@ msgstr "El correu electrònic ha de ser vàlid"
|
||||
msgid "Email or domain is already in blocklist"
|
||||
msgstr "El correu electrònic o domini ja està en la llista de bloqueig"
|
||||
|
||||
#. js-lingui-id: Xl929X
|
||||
#: src/modules/activities/emails/hooks/useSendEmail.ts
|
||||
msgid "Email sent successfully"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: jvneza
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "Email support"
|
||||
@@ -6439,6 +6471,12 @@ msgstr ""
|
||||
msgid "Failed to save workspace instructions"
|
||||
msgstr "No s'han pogut desar les instruccions de l'espai de treball"
|
||||
|
||||
#. js-lingui-id: Lo/GQ5
|
||||
#: src/modules/activities/emails/hooks/useSendEmail.ts
|
||||
#: src/modules/activities/emails/hooks/useSendEmail.ts
|
||||
msgid "Failed to send email"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: aj02T8
|
||||
#: src/modules/settings/admin-panel/health-status/maintenance-mode/components/SettingsAdminMaintenanceMode.tsx
|
||||
msgid "Failed to set maintenance mode."
|
||||
@@ -6930,6 +6968,11 @@ msgstr "Crèdits de la prova gratuïta esgotats. Subscriu-te ara per continuar u
|
||||
msgid "French"
|
||||
msgstr "Francès"
|
||||
|
||||
#. js-lingui-id: ejVYRQ
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "From"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: qR8gT9
|
||||
#: src/modules/workflow/workflow-trigger/utils/cron-to-human/descriptors/getDayOfWeekDescription.ts
|
||||
msgid "from {startDay} to {endDay}"
|
||||
@@ -9398,6 +9441,11 @@ msgstr "Nou xat"
|
||||
msgid "New conversation"
|
||||
msgstr "Nova conversa"
|
||||
|
||||
#. js-lingui-id: 3RwJHq
|
||||
#: src/modules/side-panel/hooks/useOpenComposeEmailInSidePanel.ts
|
||||
msgid "New Email"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wqoYqp
|
||||
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
|
||||
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
|
||||
@@ -11374,10 +11422,11 @@ msgstr ""
|
||||
msgid "Read your profile"
|
||||
msgstr "Llegir el teu perfil"
|
||||
|
||||
#. js-lingui-id: tCXcL7
|
||||
#. js-lingui-id: 6pSHJ5
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Read-only — managed by Twenty"
|
||||
msgstr "Només de lectura — gestionat per Twenty"
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Read-only"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: W+ApAD
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
@@ -11399,6 +11448,11 @@ msgstr "Rep un correu que conté l'enllaç per actualitzar la contrasenya"
|
||||
msgid "Recent Events (oldest → newest)"
|
||||
msgstr "Esdeveniments recents (més antic → més nou)"
|
||||
|
||||
#. js-lingui-id: yPrbsy
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Recipients"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: b2+5uV
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
msgid "Recommended Models"
|
||||
@@ -11750,6 +11804,8 @@ msgid "Reorder options"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ImOQa9
|
||||
#: src/modules/side-panel/hooks/useOpenComposeEmailInSidePanel.ts
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
#: src/modules/activities/emails/components/EmailThreadBottomBar.tsx
|
||||
msgid "Reply"
|
||||
msgstr "Respon"
|
||||
@@ -11759,6 +11815,11 @@ msgstr "Respon"
|
||||
msgid "Reply to all"
|
||||
msgstr "Respon a tots"
|
||||
|
||||
#. js-lingui-id: fiPYZo
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
msgid "Reply..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: tbmZmI
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "Report and issue"
|
||||
@@ -11784,6 +11845,7 @@ msgstr "Reenviar correu electrònic"
|
||||
#. js-lingui-id: OfhWJH
|
||||
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
|
||||
#: src/modules/views/components/ViewBarDetails.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
msgid "Reset"
|
||||
msgstr "Restableix"
|
||||
|
||||
@@ -11804,6 +11866,8 @@ msgid "Reset to"
|
||||
msgstr "Reinicia a"
|
||||
|
||||
#. js-lingui-id: L+rMC9
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
msgid "Reset to default"
|
||||
@@ -12698,6 +12762,13 @@ msgstr "Seleccioneu quins models apareixen com a recomanats al selector de model
|
||||
msgid "Select your preferred language"
|
||||
msgstr "Tria la teva llengua preferida"
|
||||
|
||||
#. js-lingui-id: JlFcis
|
||||
#: src/modules/side-panel/pages/compose-email/components/SidePanelComposeEmailPage.tsx
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposer.tsx
|
||||
msgid "Send"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mjK8F3
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
msgid "Send an invite email to your team"
|
||||
@@ -13413,6 +13484,8 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: UJmAAK
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Subject"
|
||||
msgstr "Assumpte"
|
||||
|
||||
@@ -13653,11 +13726,6 @@ msgstr ""
|
||||
msgid "System Prompt"
|
||||
msgstr "Indicador del Sistema"
|
||||
|
||||
#. js-lingui-id: BXGTWI
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "System Prompt ({totalTokenCount})"
|
||||
msgstr "Prompt del sistema ({totalTokenCount})"
|
||||
|
||||
#. js-lingui-id: k+7QWO
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
msgid "System relations"
|
||||
@@ -14144,6 +14212,11 @@ msgstr ""
|
||||
msgid "This week"
|
||||
msgstr "Aquesta setmana"
|
||||
|
||||
#. js-lingui-id: VbVocX
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
msgid "This will cancel all modifications done on the widget. This action cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: h4VeOo
|
||||
#: src/modules/settings/billing/hooks/useBillingWording.ts
|
||||
msgid "This will cancel the scheduled interval change and keep your current billing interval ({currentIntervalLabel})."
|
||||
@@ -14259,6 +14332,7 @@ msgstr "títol"
|
||||
|
||||
#. js-lingui-id: /jQctM
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "To"
|
||||
msgstr "A"
|
||||
|
||||
@@ -14582,6 +14656,11 @@ msgstr "Escriu '/' per a ordres, '@' per a mencions"
|
||||
msgid "Type anything..."
|
||||
msgstr "Teclegeu qualsevol cosa..."
|
||||
|
||||
#. js-lingui-id: LaEX5I
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Type something or press \"/\" to see commands"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: UhqKcC
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Type to search records"
|
||||
@@ -14909,6 +14988,11 @@ msgstr "Actualitza per accedir"
|
||||
msgid "Upgrade to Enterprise to access audit logs."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: D+7y/3
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Upgrade to Enterprise to share private applications."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +Gi3x1
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationVersionContainer.tsx
|
||||
@@ -15345,7 +15429,6 @@ msgstr "Veure registres"
|
||||
|
||||
#. js-lingui-id: 7PrSCy
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "View marketplace page"
|
||||
msgstr "Veure la pàgina del Marketplace"
|
||||
|
||||
@@ -15359,6 +15442,11 @@ msgstr ""
|
||||
msgid "View Previous AI Chats"
|
||||
msgstr "Veure els xats d'IA anteriors"
|
||||
|
||||
#. js-lingui-id: NnJpTN
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "View private application page"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: hAAsm/
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowEditActionAiAgent.tsx
|
||||
msgid "View role"
|
||||
|
||||
@@ -456,11 +456,13 @@ msgstr "{workspaceMemberName} bude odebrán z následující role:"
|
||||
msgid "••••••••"
|
||||
msgstr "••••••••"
|
||||
|
||||
#. js-lingui-id: tD9raa
|
||||
#. js-lingui-id: SMgdEJ
|
||||
#. placeholder {0}: formatNumber(preview.estimatedTokenCount, { abbreviate: true, decimals: 1, })
|
||||
#. placeholder {0}: formatNumber( section.estimatedTokenCount, { abbreviate: true, decimals: 1, }, )
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "~{0} tokens"
|
||||
msgstr "~{0} tokenů"
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "~ {0} tokens"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Cx0xl3
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
|
||||
@@ -1707,6 +1709,7 @@ msgstr "Při nahrávání obrázku došlo k chybě."
|
||||
#: src/modules/views/hooks/internal/usePerformViewAPIPersist.ts
|
||||
#: src/modules/ui/feedback/snack-bar-manager/hooks/useSnackBar.ts
|
||||
#: src/modules/page-layout/hooks/useUpdatePageLayoutWithTabsAndWidgets.ts
|
||||
#: src/modules/page-layout/hooks/useResetPageLayoutWidgetToDefault.ts
|
||||
#: src/modules/object-metadata/hooks/useUpdateOneObjectMetadataItem.ts
|
||||
#: src/modules/object-metadata/hooks/useUpdateOneFieldMetadataItem.ts
|
||||
#: src/modules/object-metadata/hooks/useDeleteOneObjectMetadataItem.ts
|
||||
@@ -2418,6 +2421,12 @@ msgstr "Základní URL"
|
||||
msgid "Base URL is required"
|
||||
msgstr "Základní adresa URL je vyžadována"
|
||||
|
||||
#. js-lingui-id: /xLNEx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Bcc"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: PFohi3
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
msgid "BCC"
|
||||
@@ -2721,9 +2730,11 @@ msgstr "Nemůžete skenovat? Zkopírujte"
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
#: src/modules/spreadsheet-import/provider/components/SpreadsheetImport.tsx
|
||||
#: src/modules/side-panel/pages/compose-email/components/SidePanelComposeEmailPage.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposer.tsx
|
||||
msgid "Cancel"
|
||||
msgstr "Storno"
|
||||
|
||||
@@ -2763,6 +2774,11 @@ msgstr "Zrušit změnu plánu"
|
||||
msgid "Cancel plan switching?"
|
||||
msgstr "Zrušit změnu plánu?"
|
||||
|
||||
#. js-lingui-id: AnRu/j
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
msgid "Cancel reply"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: N6gPiD
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/settings/billing/components/SettingsBillingContent.tsx
|
||||
@@ -2831,11 +2847,22 @@ msgstr "Katalánština"
|
||||
msgid "Category"
|
||||
msgstr "Kategorie"
|
||||
|
||||
#. js-lingui-id: RpYfjZ
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Cc"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XdZeJk
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
msgid "CC"
|
||||
msgstr "CC"
|
||||
|
||||
#. js-lingui-id: Dgsw8A
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Cc/Bcc"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: tHntRt
|
||||
#: src/modules/page-layout/widgets/standalone-rich-text/components/DashboardEditorSideMenu.tsx
|
||||
#: src/modules/blocknote-editor/components/CustomSideMenu.tsx
|
||||
@@ -5350,6 +5377,11 @@ msgstr "E-mail musí být platný"
|
||||
msgid "Email or domain is already in blocklist"
|
||||
msgstr "E-mail nebo doména již je v seznamu blokovaných"
|
||||
|
||||
#. js-lingui-id: Xl929X
|
||||
#: src/modules/activities/emails/hooks/useSendEmail.ts
|
||||
msgid "Email sent successfully"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: jvneza
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "Email support"
|
||||
@@ -6439,6 +6471,12 @@ msgstr ""
|
||||
msgid "Failed to save workspace instructions"
|
||||
msgstr "Nepodařilo se uložit pokyny pracovního prostoru"
|
||||
|
||||
#. js-lingui-id: Lo/GQ5
|
||||
#: src/modules/activities/emails/hooks/useSendEmail.ts
|
||||
#: src/modules/activities/emails/hooks/useSendEmail.ts
|
||||
msgid "Failed to send email"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: aj02T8
|
||||
#: src/modules/settings/admin-panel/health-status/maintenance-mode/components/SettingsAdminMaintenanceMode.tsx
|
||||
msgid "Failed to set maintenance mode."
|
||||
@@ -6930,6 +6968,11 @@ msgstr "Kredity ze zkušební verze byly vyčerpány. Předplaťte si nyní, aby
|
||||
msgid "French"
|
||||
msgstr "Francouzština"
|
||||
|
||||
#. js-lingui-id: ejVYRQ
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "From"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: qR8gT9
|
||||
#: src/modules/workflow/workflow-trigger/utils/cron-to-human/descriptors/getDayOfWeekDescription.ts
|
||||
msgid "from {startDay} to {endDay}"
|
||||
@@ -9398,6 +9441,11 @@ msgstr "Nový chat"
|
||||
msgid "New conversation"
|
||||
msgstr "Nová konverzace"
|
||||
|
||||
#. js-lingui-id: 3RwJHq
|
||||
#: src/modules/side-panel/hooks/useOpenComposeEmailInSidePanel.ts
|
||||
msgid "New Email"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wqoYqp
|
||||
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
|
||||
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
|
||||
@@ -11374,10 +11422,11 @@ msgstr ""
|
||||
msgid "Read your profile"
|
||||
msgstr "Čtení vašeho profilu"
|
||||
|
||||
#. js-lingui-id: tCXcL7
|
||||
#. js-lingui-id: 6pSHJ5
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Read-only — managed by Twenty"
|
||||
msgstr "Jen pro čtení — spravováno Twenty"
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Read-only"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: W+ApAD
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
@@ -11399,6 +11448,11 @@ msgstr "Obdržíte e-mail s odkazem na aktualizaci hesla"
|
||||
msgid "Recent Events (oldest → newest)"
|
||||
msgstr "Nedávné události (od nejstarších → k nejnovějším)"
|
||||
|
||||
#. js-lingui-id: yPrbsy
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Recipients"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: b2+5uV
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
msgid "Recommended Models"
|
||||
@@ -11750,6 +11804,8 @@ msgid "Reorder options"
|
||||
msgstr "Změnit pořadí možností"
|
||||
|
||||
#. js-lingui-id: ImOQa9
|
||||
#: src/modules/side-panel/hooks/useOpenComposeEmailInSidePanel.ts
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
#: src/modules/activities/emails/components/EmailThreadBottomBar.tsx
|
||||
msgid "Reply"
|
||||
msgstr "Odpovědět"
|
||||
@@ -11759,6 +11815,11 @@ msgstr "Odpovědět"
|
||||
msgid "Reply to all"
|
||||
msgstr "Odpovědět všem"
|
||||
|
||||
#. js-lingui-id: fiPYZo
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
msgid "Reply..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: tbmZmI
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "Report and issue"
|
||||
@@ -11784,6 +11845,7 @@ msgstr "Znovu odeslat e-mail"
|
||||
#. js-lingui-id: OfhWJH
|
||||
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
|
||||
#: src/modules/views/components/ViewBarDetails.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
msgid "Reset"
|
||||
msgstr "Obnovit"
|
||||
|
||||
@@ -11804,6 +11866,8 @@ msgid "Reset to"
|
||||
msgstr "Obnovit na"
|
||||
|
||||
#. js-lingui-id: L+rMC9
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
msgid "Reset to default"
|
||||
@@ -12698,6 +12762,13 @@ msgstr "Vyberte, které modely se budou zobrazovat jako doporučené ve výběru
|
||||
msgid "Select your preferred language"
|
||||
msgstr "Vyberte preferovaný jazyk"
|
||||
|
||||
#. js-lingui-id: JlFcis
|
||||
#: src/modules/side-panel/pages/compose-email/components/SidePanelComposeEmailPage.tsx
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposer.tsx
|
||||
msgid "Send"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mjK8F3
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
msgid "Send an invite email to your team"
|
||||
@@ -13413,6 +13484,8 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: UJmAAK
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Subject"
|
||||
msgstr "Předmět"
|
||||
|
||||
@@ -13653,11 +13726,6 @@ msgstr ""
|
||||
msgid "System Prompt"
|
||||
msgstr "Systémová výzva"
|
||||
|
||||
#. js-lingui-id: BXGTWI
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "System Prompt ({totalTokenCount})"
|
||||
msgstr "Systémový prompt ({totalTokenCount})"
|
||||
|
||||
#. js-lingui-id: k+7QWO
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
msgid "System relations"
|
||||
@@ -14144,6 +14212,11 @@ msgstr ""
|
||||
msgid "This week"
|
||||
msgstr "Tento týden"
|
||||
|
||||
#. js-lingui-id: VbVocX
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
msgid "This will cancel all modifications done on the widget. This action cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: h4VeOo
|
||||
#: src/modules/settings/billing/hooks/useBillingWording.ts
|
||||
msgid "This will cancel the scheduled interval change and keep your current billing interval ({currentIntervalLabel})."
|
||||
@@ -14259,6 +14332,7 @@ msgstr "název"
|
||||
|
||||
#. js-lingui-id: /jQctM
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "To"
|
||||
msgstr "Komu"
|
||||
|
||||
@@ -14582,6 +14656,11 @@ msgstr "Zadejte '/' pro příkazy, '@' pro zmínky"
|
||||
msgid "Type anything..."
|
||||
msgstr "Napište cokoli..."
|
||||
|
||||
#. js-lingui-id: LaEX5I
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Type something or press \"/\" to see commands"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: UhqKcC
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Type to search records"
|
||||
@@ -14909,6 +14988,11 @@ msgstr "Přejděte na vyšší verzi pro přístup"
|
||||
msgid "Upgrade to Enterprise to access audit logs."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: D+7y/3
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Upgrade to Enterprise to share private applications."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +Gi3x1
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationVersionContainer.tsx
|
||||
@@ -15345,7 +15429,6 @@ msgstr "Zobrazit protokoly"
|
||||
|
||||
#. js-lingui-id: 7PrSCy
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "View marketplace page"
|
||||
msgstr "Zobrazit stránku na Marketplace"
|
||||
|
||||
@@ -15359,6 +15442,11 @@ msgstr ""
|
||||
msgid "View Previous AI Chats"
|
||||
msgstr "Zobrazit předchozí AI diskuse"
|
||||
|
||||
#. js-lingui-id: NnJpTN
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "View private application page"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: hAAsm/
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowEditActionAiAgent.tsx
|
||||
msgid "View role"
|
||||
|
||||
@@ -456,11 +456,13 @@ msgstr "{workspaceMemberName} vil blive fjernet fra følgende rolle:"
|
||||
msgid "••••••••"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: tD9raa
|
||||
#. js-lingui-id: SMgdEJ
|
||||
#. placeholder {0}: formatNumber(preview.estimatedTokenCount, { abbreviate: true, decimals: 1, })
|
||||
#. placeholder {0}: formatNumber( section.estimatedTokenCount, { abbreviate: true, decimals: 1, }, )
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "~{0} tokens"
|
||||
msgstr "~{0} tokens"
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "~ {0} tokens"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Cx0xl3
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
|
||||
@@ -1707,6 +1709,7 @@ msgstr "Der opstod en fejl under upload af billedet."
|
||||
#: src/modules/views/hooks/internal/usePerformViewAPIPersist.ts
|
||||
#: src/modules/ui/feedback/snack-bar-manager/hooks/useSnackBar.ts
|
||||
#: src/modules/page-layout/hooks/useUpdatePageLayoutWithTabsAndWidgets.ts
|
||||
#: src/modules/page-layout/hooks/useResetPageLayoutWidgetToDefault.ts
|
||||
#: src/modules/object-metadata/hooks/useUpdateOneObjectMetadataItem.ts
|
||||
#: src/modules/object-metadata/hooks/useUpdateOneFieldMetadataItem.ts
|
||||
#: src/modules/object-metadata/hooks/useDeleteOneObjectMetadataItem.ts
|
||||
@@ -2418,6 +2421,12 @@ msgstr "Basis-URL"
|
||||
msgid "Base URL is required"
|
||||
msgstr "Basis-URL er påkrævet"
|
||||
|
||||
#. js-lingui-id: /xLNEx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Bcc"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: PFohi3
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
msgid "BCC"
|
||||
@@ -2721,9 +2730,11 @@ msgstr "Kan ikke scanne? Kopier"
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
#: src/modules/spreadsheet-import/provider/components/SpreadsheetImport.tsx
|
||||
#: src/modules/side-panel/pages/compose-email/components/SidePanelComposeEmailPage.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposer.tsx
|
||||
msgid "Cancel"
|
||||
msgstr "Annuller"
|
||||
|
||||
@@ -2763,6 +2774,11 @@ msgstr "Annuller planskift"
|
||||
msgid "Cancel plan switching?"
|
||||
msgstr "Annuller planskift?"
|
||||
|
||||
#. js-lingui-id: AnRu/j
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
msgid "Cancel reply"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: N6gPiD
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/settings/billing/components/SettingsBillingContent.tsx
|
||||
@@ -2831,11 +2847,22 @@ msgstr "Catalansk"
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: RpYfjZ
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Cc"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XdZeJk
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
msgid "CC"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Dgsw8A
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Cc/Bcc"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: tHntRt
|
||||
#: src/modules/page-layout/widgets/standalone-rich-text/components/DashboardEditorSideMenu.tsx
|
||||
#: src/modules/blocknote-editor/components/CustomSideMenu.tsx
|
||||
@@ -5350,6 +5377,11 @@ msgstr "E-mail skal være gyldig"
|
||||
msgid "Email or domain is already in blocklist"
|
||||
msgstr "E-mail eller domæne er allerede på blokeringslisten"
|
||||
|
||||
#. js-lingui-id: Xl929X
|
||||
#: src/modules/activities/emails/hooks/useSendEmail.ts
|
||||
msgid "Email sent successfully"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: jvneza
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "Email support"
|
||||
@@ -6439,6 +6471,12 @@ msgstr ""
|
||||
msgid "Failed to save workspace instructions"
|
||||
msgstr "Kunne ikke gemme instruktioner for arbejdsområdet"
|
||||
|
||||
#. js-lingui-id: Lo/GQ5
|
||||
#: src/modules/activities/emails/hooks/useSendEmail.ts
|
||||
#: src/modules/activities/emails/hooks/useSendEmail.ts
|
||||
msgid "Failed to send email"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: aj02T8
|
||||
#: src/modules/settings/admin-panel/health-status/maintenance-mode/components/SettingsAdminMaintenanceMode.tsx
|
||||
msgid "Failed to set maintenance mode."
|
||||
@@ -6930,6 +6968,11 @@ msgstr "Kreditter i den gratis prøveperiode er opbrugt. Abonner nu for at forts
|
||||
msgid "French"
|
||||
msgstr "Fransk"
|
||||
|
||||
#. js-lingui-id: ejVYRQ
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "From"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: qR8gT9
|
||||
#: src/modules/workflow/workflow-trigger/utils/cron-to-human/descriptors/getDayOfWeekDescription.ts
|
||||
msgid "from {startDay} to {endDay}"
|
||||
@@ -9398,6 +9441,11 @@ msgstr "Ny chat"
|
||||
msgid "New conversation"
|
||||
msgstr "Ny samtale"
|
||||
|
||||
#. js-lingui-id: 3RwJHq
|
||||
#: src/modules/side-panel/hooks/useOpenComposeEmailInSidePanel.ts
|
||||
msgid "New Email"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wqoYqp
|
||||
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
|
||||
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
|
||||
@@ -11374,10 +11422,11 @@ msgstr ""
|
||||
msgid "Read your profile"
|
||||
msgstr "Læs din profil"
|
||||
|
||||
#. js-lingui-id: tCXcL7
|
||||
#. js-lingui-id: 6pSHJ5
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Read-only — managed by Twenty"
|
||||
msgstr "Skrivebeskyttet — administreret af Twenty"
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Read-only"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: W+ApAD
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
@@ -11399,6 +11448,11 @@ msgstr "Modtag en e-mail med link til opdatering af kodeord"
|
||||
msgid "Recent Events (oldest → newest)"
|
||||
msgstr "Seneste hændelser (ældste → nyeste)"
|
||||
|
||||
#. js-lingui-id: yPrbsy
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Recipients"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: b2+5uV
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
msgid "Recommended Models"
|
||||
@@ -11750,6 +11804,8 @@ msgid "Reorder options"
|
||||
msgstr "Omarranger valgmuligheder"
|
||||
|
||||
#. js-lingui-id: ImOQa9
|
||||
#: src/modules/side-panel/hooks/useOpenComposeEmailInSidePanel.ts
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
#: src/modules/activities/emails/components/EmailThreadBottomBar.tsx
|
||||
msgid "Reply"
|
||||
msgstr "Svar"
|
||||
@@ -11759,6 +11815,11 @@ msgstr "Svar"
|
||||
msgid "Reply to all"
|
||||
msgstr "Svar til alle"
|
||||
|
||||
#. js-lingui-id: fiPYZo
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
msgid "Reply..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: tbmZmI
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "Report and issue"
|
||||
@@ -11784,6 +11845,7 @@ msgstr "Send e-mail igen"
|
||||
#. js-lingui-id: OfhWJH
|
||||
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
|
||||
#: src/modules/views/components/ViewBarDetails.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
msgid "Reset"
|
||||
msgstr "Nulstil"
|
||||
|
||||
@@ -11804,6 +11866,8 @@ msgid "Reset to"
|
||||
msgstr "Nulstil til"
|
||||
|
||||
#. js-lingui-id: L+rMC9
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
msgid "Reset to default"
|
||||
@@ -12698,6 +12762,13 @@ msgstr "Vælg hvilke modeller der vises som anbefalede i arbejdsområdets modelv
|
||||
msgid "Select your preferred language"
|
||||
msgstr "Vælg dit foretrukne sprog"
|
||||
|
||||
#. js-lingui-id: JlFcis
|
||||
#: src/modules/side-panel/pages/compose-email/components/SidePanelComposeEmailPage.tsx
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposer.tsx
|
||||
msgid "Send"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mjK8F3
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
msgid "Send an invite email to your team"
|
||||
@@ -13413,6 +13484,8 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: UJmAAK
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Subject"
|
||||
msgstr "Emne"
|
||||
|
||||
@@ -13653,11 +13726,6 @@ msgstr ""
|
||||
msgid "System Prompt"
|
||||
msgstr "Systemprompt"
|
||||
|
||||
#. js-lingui-id: BXGTWI
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "System Prompt ({totalTokenCount})"
|
||||
msgstr "Systemprompt ({totalTokenCount})"
|
||||
|
||||
#. js-lingui-id: k+7QWO
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
msgid "System relations"
|
||||
@@ -14146,6 +14214,11 @@ msgstr ""
|
||||
msgid "This week"
|
||||
msgstr "Denne uge"
|
||||
|
||||
#. js-lingui-id: VbVocX
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
msgid "This will cancel all modifications done on the widget. This action cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: h4VeOo
|
||||
#: src/modules/settings/billing/hooks/useBillingWording.ts
|
||||
msgid "This will cancel the scheduled interval change and keep your current billing interval ({currentIntervalLabel})."
|
||||
@@ -14261,6 +14334,7 @@ msgstr "titel"
|
||||
|
||||
#. js-lingui-id: /jQctM
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "To"
|
||||
msgstr ""
|
||||
|
||||
@@ -14584,6 +14658,11 @@ msgstr "Skriv '/' for kommandoer, '@' for omtaler"
|
||||
msgid "Type anything..."
|
||||
msgstr "Skriv noget..."
|
||||
|
||||
#. js-lingui-id: LaEX5I
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Type something or press \"/\" to see commands"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: UhqKcC
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Type to search records"
|
||||
@@ -14911,6 +14990,11 @@ msgstr "Opgrader for at få adgang"
|
||||
msgid "Upgrade to Enterprise to access audit logs."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: D+7y/3
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Upgrade to Enterprise to share private applications."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +Gi3x1
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationVersionContainer.tsx
|
||||
@@ -15347,7 +15431,6 @@ msgstr "Vis logge"
|
||||
|
||||
#. js-lingui-id: 7PrSCy
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "View marketplace page"
|
||||
msgstr "Se side på markedspladsen"
|
||||
|
||||
@@ -15361,6 +15444,11 @@ msgstr ""
|
||||
msgid "View Previous AI Chats"
|
||||
msgstr "Se tidligere AI-chats"
|
||||
|
||||
#. js-lingui-id: NnJpTN
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "View private application page"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: hAAsm/
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowEditActionAiAgent.tsx
|
||||
msgid "View role"
|
||||
|
||||
@@ -456,11 +456,13 @@ msgstr "{workspaceMemberName} wird von folgender Rolle abgezogen:"
|
||||
msgid "••••••••"
|
||||
msgstr "••••••••"
|
||||
|
||||
#. js-lingui-id: tD9raa
|
||||
#. js-lingui-id: SMgdEJ
|
||||
#. placeholder {0}: formatNumber(preview.estimatedTokenCount, { abbreviate: true, decimals: 1, })
|
||||
#. placeholder {0}: formatNumber( section.estimatedTokenCount, { abbreviate: true, decimals: 1, }, )
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "~{0} tokens"
|
||||
msgstr "~{0} Token"
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "~ {0} tokens"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Cx0xl3
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
|
||||
@@ -1707,6 +1709,7 @@ msgstr "Beim Hochladen des Bildes ist ein Fehler aufgetreten."
|
||||
#: src/modules/views/hooks/internal/usePerformViewAPIPersist.ts
|
||||
#: src/modules/ui/feedback/snack-bar-manager/hooks/useSnackBar.ts
|
||||
#: src/modules/page-layout/hooks/useUpdatePageLayoutWithTabsAndWidgets.ts
|
||||
#: src/modules/page-layout/hooks/useResetPageLayoutWidgetToDefault.ts
|
||||
#: src/modules/object-metadata/hooks/useUpdateOneObjectMetadataItem.ts
|
||||
#: src/modules/object-metadata/hooks/useUpdateOneFieldMetadataItem.ts
|
||||
#: src/modules/object-metadata/hooks/useDeleteOneObjectMetadataItem.ts
|
||||
@@ -2418,6 +2421,12 @@ msgstr "Basis-URL"
|
||||
msgid "Base URL is required"
|
||||
msgstr "Basis-URL ist erforderlich"
|
||||
|
||||
#. js-lingui-id: /xLNEx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Bcc"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: PFohi3
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
msgid "BCC"
|
||||
@@ -2721,9 +2730,11 @@ msgstr "Kann nicht gescannt werden? Kopieren Sie das"
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
#: src/modules/spreadsheet-import/provider/components/SpreadsheetImport.tsx
|
||||
#: src/modules/side-panel/pages/compose-email/components/SidePanelComposeEmailPage.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposer.tsx
|
||||
msgid "Cancel"
|
||||
msgstr "Abbrechen"
|
||||
|
||||
@@ -2763,6 +2774,11 @@ msgstr "Tarifwechsel abbrechen"
|
||||
msgid "Cancel plan switching?"
|
||||
msgstr "Tarifwechsel abbrechen?"
|
||||
|
||||
#. js-lingui-id: AnRu/j
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
msgid "Cancel reply"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: N6gPiD
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/settings/billing/components/SettingsBillingContent.tsx
|
||||
@@ -2831,11 +2847,22 @@ msgstr "Katalanisch"
|
||||
msgid "Category"
|
||||
msgstr "Kategorie"
|
||||
|
||||
#. js-lingui-id: RpYfjZ
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Cc"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XdZeJk
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
msgid "CC"
|
||||
msgstr "CC"
|
||||
|
||||
#. js-lingui-id: Dgsw8A
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Cc/Bcc"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: tHntRt
|
||||
#: src/modules/page-layout/widgets/standalone-rich-text/components/DashboardEditorSideMenu.tsx
|
||||
#: src/modules/blocknote-editor/components/CustomSideMenu.tsx
|
||||
@@ -5350,6 +5377,11 @@ msgstr "E-Mail muss gültig sein"
|
||||
msgid "Email or domain is already in blocklist"
|
||||
msgstr "E-Mail oder Domain ist bereits in der Blockliste"
|
||||
|
||||
#. js-lingui-id: Xl929X
|
||||
#: src/modules/activities/emails/hooks/useSendEmail.ts
|
||||
msgid "Email sent successfully"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: jvneza
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "Email support"
|
||||
@@ -6439,6 +6471,12 @@ msgstr "Fehler beim Speichern der Rollenberechtigungen: {errorMessage}"
|
||||
msgid "Failed to save workspace instructions"
|
||||
msgstr "Fehler beim Speichern der Arbeitsbereichsanweisungen"
|
||||
|
||||
#. js-lingui-id: Lo/GQ5
|
||||
#: src/modules/activities/emails/hooks/useSendEmail.ts
|
||||
#: src/modules/activities/emails/hooks/useSendEmail.ts
|
||||
msgid "Failed to send email"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: aj02T8
|
||||
#: src/modules/settings/admin-panel/health-status/maintenance-mode/components/SettingsAdminMaintenanceMode.tsx
|
||||
msgid "Failed to set maintenance mode."
|
||||
@@ -6930,6 +6968,11 @@ msgstr "Kostenloses Testguthaben aufgebraucht. Abonnieren Sie jetzt, um KI-Funkt
|
||||
msgid "French"
|
||||
msgstr "Französisch"
|
||||
|
||||
#. js-lingui-id: ejVYRQ
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "From"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: qR8gT9
|
||||
#: src/modules/workflow/workflow-trigger/utils/cron-to-human/descriptors/getDayOfWeekDescription.ts
|
||||
msgid "from {startDay} to {endDay}"
|
||||
@@ -9398,6 +9441,11 @@ msgstr "Neuer Chat"
|
||||
msgid "New conversation"
|
||||
msgstr "Neue Unterhaltung"
|
||||
|
||||
#. js-lingui-id: 3RwJHq
|
||||
#: src/modules/side-panel/hooks/useOpenComposeEmailInSidePanel.ts
|
||||
msgid "New Email"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wqoYqp
|
||||
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
|
||||
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
|
||||
@@ -11374,10 +11422,11 @@ msgstr ""
|
||||
msgid "Read your profile"
|
||||
msgstr "Ihr Profil lesen"
|
||||
|
||||
#. js-lingui-id: tCXcL7
|
||||
#. js-lingui-id: 6pSHJ5
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Read-only — managed by Twenty"
|
||||
msgstr "Schreibgeschützt — verwaltet von Twenty"
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Read-only"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: W+ApAD
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
@@ -11399,6 +11448,11 @@ msgstr "Erhalten Sie eine E-Mail mit einem Link zur Passwortaktualisierung"
|
||||
msgid "Recent Events (oldest → newest)"
|
||||
msgstr "Aktuelle Ereignisse (älteste → neueste)"
|
||||
|
||||
#. js-lingui-id: yPrbsy
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Recipients"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: b2+5uV
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
msgid "Recommended Models"
|
||||
@@ -11750,6 +11804,8 @@ msgid "Reorder options"
|
||||
msgstr "Optionen neu anordnen"
|
||||
|
||||
#. js-lingui-id: ImOQa9
|
||||
#: src/modules/side-panel/hooks/useOpenComposeEmailInSidePanel.ts
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
#: src/modules/activities/emails/components/EmailThreadBottomBar.tsx
|
||||
msgid "Reply"
|
||||
msgstr "Antworten"
|
||||
@@ -11759,6 +11815,11 @@ msgstr "Antworten"
|
||||
msgid "Reply to all"
|
||||
msgstr "Allen antworten"
|
||||
|
||||
#. js-lingui-id: fiPYZo
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
msgid "Reply..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: tbmZmI
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "Report and issue"
|
||||
@@ -11784,6 +11845,7 @@ msgstr "E-Mail erneut senden"
|
||||
#. js-lingui-id: OfhWJH
|
||||
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
|
||||
#: src/modules/views/components/ViewBarDetails.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
msgid "Reset"
|
||||
msgstr "Zurücksetzen"
|
||||
|
||||
@@ -11804,6 +11866,8 @@ msgid "Reset to"
|
||||
msgstr "Zurücksetzen auf"
|
||||
|
||||
#. js-lingui-id: L+rMC9
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
msgid "Reset to default"
|
||||
@@ -12698,6 +12762,13 @@ msgstr "Wählen Sie aus, welche Modelle im Modellauswahlfeld des Arbeitsbereichs
|
||||
msgid "Select your preferred language"
|
||||
msgstr "Bevorzugte Sprache auswählen"
|
||||
|
||||
#. js-lingui-id: JlFcis
|
||||
#: src/modules/side-panel/pages/compose-email/components/SidePanelComposeEmailPage.tsx
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposer.tsx
|
||||
msgid "Send"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mjK8F3
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
msgid "Send an invite email to your team"
|
||||
@@ -13413,6 +13484,8 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: UJmAAK
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Subject"
|
||||
msgstr "Betreff"
|
||||
|
||||
@@ -13653,11 +13726,6 @@ msgstr ""
|
||||
msgid "System Prompt"
|
||||
msgstr "Systemaufforderung"
|
||||
|
||||
#. js-lingui-id: BXGTWI
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "System Prompt ({totalTokenCount})"
|
||||
msgstr "Systemprompt ({totalTokenCount})"
|
||||
|
||||
#. js-lingui-id: k+7QWO
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
msgid "System relations"
|
||||
@@ -14144,6 +14212,11 @@ msgstr ""
|
||||
msgid "This week"
|
||||
msgstr "Diese Woche"
|
||||
|
||||
#. js-lingui-id: VbVocX
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
msgid "This will cancel all modifications done on the widget. This action cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: h4VeOo
|
||||
#: src/modules/settings/billing/hooks/useBillingWording.ts
|
||||
msgid "This will cancel the scheduled interval change and keep your current billing interval ({currentIntervalLabel})."
|
||||
@@ -14259,6 +14332,7 @@ msgstr "titel"
|
||||
|
||||
#. js-lingui-id: /jQctM
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "To"
|
||||
msgstr "An"
|
||||
|
||||
@@ -14582,6 +14656,11 @@ msgstr "Geben Sie '/' für Befehle, '@' für Erwähnungen ein"
|
||||
msgid "Type anything..."
|
||||
msgstr "Geben Sie irgendetwas ein..."
|
||||
|
||||
#. js-lingui-id: LaEX5I
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Type something or press \"/\" to see commands"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: UhqKcC
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Type to search records"
|
||||
@@ -14909,6 +14988,11 @@ msgstr "Upgrade, um Zugriff zu erhalten"
|
||||
msgid "Upgrade to Enterprise to access audit logs."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: D+7y/3
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Upgrade to Enterprise to share private applications."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +Gi3x1
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationVersionContainer.tsx
|
||||
@@ -15345,7 +15429,6 @@ msgstr "Protokolle anzeigen"
|
||||
|
||||
#. js-lingui-id: 7PrSCy
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "View marketplace page"
|
||||
msgstr "Marktplatz-Seite anzeigen"
|
||||
|
||||
@@ -15359,6 +15442,11 @@ msgstr ""
|
||||
msgid "View Previous AI Chats"
|
||||
msgstr "Vorherige KI-Chats anzeigen"
|
||||
|
||||
#. js-lingui-id: NnJpTN
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "View private application page"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: hAAsm/
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowEditActionAiAgent.tsx
|
||||
msgid "View role"
|
||||
|
||||
@@ -456,11 +456,13 @@ msgstr "Ο χρήστης {workspaceMemberName} θα αποδεσμευτεί α
|
||||
msgid "••••••••"
|
||||
msgstr "••••••••"
|
||||
|
||||
#. js-lingui-id: tD9raa
|
||||
#. js-lingui-id: SMgdEJ
|
||||
#. placeholder {0}: formatNumber(preview.estimatedTokenCount, { abbreviate: true, decimals: 1, })
|
||||
#. placeholder {0}: formatNumber( section.estimatedTokenCount, { abbreviate: true, decimals: 1, }, )
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "~{0} tokens"
|
||||
msgstr "~{0} διακριτικά"
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "~ {0} tokens"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Cx0xl3
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
|
||||
@@ -1707,6 +1709,7 @@ msgstr "Παρουσιάστηκε σφάλμα κατά τη μεταφόρτω
|
||||
#: src/modules/views/hooks/internal/usePerformViewAPIPersist.ts
|
||||
#: src/modules/ui/feedback/snack-bar-manager/hooks/useSnackBar.ts
|
||||
#: src/modules/page-layout/hooks/useUpdatePageLayoutWithTabsAndWidgets.ts
|
||||
#: src/modules/page-layout/hooks/useResetPageLayoutWidgetToDefault.ts
|
||||
#: src/modules/object-metadata/hooks/useUpdateOneObjectMetadataItem.ts
|
||||
#: src/modules/object-metadata/hooks/useUpdateOneFieldMetadataItem.ts
|
||||
#: src/modules/object-metadata/hooks/useDeleteOneObjectMetadataItem.ts
|
||||
@@ -2418,6 +2421,12 @@ msgstr "Βασικό URL"
|
||||
msgid "Base URL is required"
|
||||
msgstr "Απαιτείται το βασικό URL"
|
||||
|
||||
#. js-lingui-id: /xLNEx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Bcc"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: PFohi3
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
msgid "BCC"
|
||||
@@ -2721,9 +2730,11 @@ msgstr "Δεν μπορείτε να σαρώσετε; Αντιγράψτε το
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
#: src/modules/spreadsheet-import/provider/components/SpreadsheetImport.tsx
|
||||
#: src/modules/side-panel/pages/compose-email/components/SidePanelComposeEmailPage.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposer.tsx
|
||||
msgid "Cancel"
|
||||
msgstr "Ακύρωση"
|
||||
|
||||
@@ -2763,6 +2774,11 @@ msgstr "Ακύρωση αλλαγής προγράμματος"
|
||||
msgid "Cancel plan switching?"
|
||||
msgstr "Ακύρωση αλλαγής προγράμματος;"
|
||||
|
||||
#. js-lingui-id: AnRu/j
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
msgid "Cancel reply"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: N6gPiD
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/settings/billing/components/SettingsBillingContent.tsx
|
||||
@@ -2831,11 +2847,22 @@ msgstr "Καταλανικά"
|
||||
msgid "Category"
|
||||
msgstr "Κατηγορία"
|
||||
|
||||
#. js-lingui-id: RpYfjZ
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Cc"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XdZeJk
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
msgid "CC"
|
||||
msgstr "Κοινοποίηση"
|
||||
|
||||
#. js-lingui-id: Dgsw8A
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Cc/Bcc"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: tHntRt
|
||||
#: src/modules/page-layout/widgets/standalone-rich-text/components/DashboardEditorSideMenu.tsx
|
||||
#: src/modules/blocknote-editor/components/CustomSideMenu.tsx
|
||||
@@ -5350,6 +5377,11 @@ msgstr "Το email πρέπει να είναι έγκυρο"
|
||||
msgid "Email or domain is already in blocklist"
|
||||
msgstr "Το email ή ο τομέας βρίσκεται ήδη στη λίστα απόκλεισης"
|
||||
|
||||
#. js-lingui-id: Xl929X
|
||||
#: src/modules/activities/emails/hooks/useSendEmail.ts
|
||||
msgid "Email sent successfully"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: jvneza
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "Email support"
|
||||
@@ -6439,6 +6471,12 @@ msgstr ""
|
||||
msgid "Failed to save workspace instructions"
|
||||
msgstr "Αποτυχία αποθήκευσης των οδηγιών του χώρου εργασίας"
|
||||
|
||||
#. js-lingui-id: Lo/GQ5
|
||||
#: src/modules/activities/emails/hooks/useSendEmail.ts
|
||||
#: src/modules/activities/emails/hooks/useSendEmail.ts
|
||||
msgid "Failed to send email"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: aj02T8
|
||||
#: src/modules/settings/admin-panel/health-status/maintenance-mode/components/SettingsAdminMaintenanceMode.tsx
|
||||
msgid "Failed to set maintenance mode."
|
||||
@@ -6930,6 +6968,11 @@ msgstr "Οι πιστώσεις της δωρεάν δοκιμής εξαντλ
|
||||
msgid "French"
|
||||
msgstr "Γαλλικά"
|
||||
|
||||
#. js-lingui-id: ejVYRQ
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "From"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: qR8gT9
|
||||
#: src/modules/workflow/workflow-trigger/utils/cron-to-human/descriptors/getDayOfWeekDescription.ts
|
||||
msgid "from {startDay} to {endDay}"
|
||||
@@ -9398,6 +9441,11 @@ msgstr "Νέα συνομιλία"
|
||||
msgid "New conversation"
|
||||
msgstr "Νέα συνομιλία"
|
||||
|
||||
#. js-lingui-id: 3RwJHq
|
||||
#: src/modules/side-panel/hooks/useOpenComposeEmailInSidePanel.ts
|
||||
msgid "New Email"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wqoYqp
|
||||
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
|
||||
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
|
||||
@@ -11374,10 +11422,11 @@ msgstr ""
|
||||
msgid "Read your profile"
|
||||
msgstr "Ανάγνωση του προφίλ σας"
|
||||
|
||||
#. js-lingui-id: tCXcL7
|
||||
#. js-lingui-id: 6pSHJ5
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Read-only — managed by Twenty"
|
||||
msgstr "Μόνο για ανάγνωση — διαχειρίζεται από την Twenty"
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Read-only"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: W+ApAD
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
@@ -11399,6 +11448,11 @@ msgstr "Λάβετε ένα email που περιέχει τον σύνδεσμ
|
||||
msgid "Recent Events (oldest → newest)"
|
||||
msgstr "Πρόσφατα Γεγονότα (παλιότερα → νεότερα)"
|
||||
|
||||
#. js-lingui-id: yPrbsy
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Recipients"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: b2+5uV
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
msgid "Recommended Models"
|
||||
@@ -11750,6 +11804,8 @@ msgid "Reorder options"
|
||||
msgstr "Αναδιάταξη επιλογών"
|
||||
|
||||
#. js-lingui-id: ImOQa9
|
||||
#: src/modules/side-panel/hooks/useOpenComposeEmailInSidePanel.ts
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
#: src/modules/activities/emails/components/EmailThreadBottomBar.tsx
|
||||
msgid "Reply"
|
||||
msgstr "Απάντηση"
|
||||
@@ -11759,6 +11815,11 @@ msgstr "Απάντηση"
|
||||
msgid "Reply to all"
|
||||
msgstr "Απάντηση σε όλους"
|
||||
|
||||
#. js-lingui-id: fiPYZo
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
msgid "Reply..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: tbmZmI
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "Report and issue"
|
||||
@@ -11784,6 +11845,7 @@ msgstr "Επαναποστολή email"
|
||||
#. js-lingui-id: OfhWJH
|
||||
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
|
||||
#: src/modules/views/components/ViewBarDetails.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
msgid "Reset"
|
||||
msgstr "Επαναφορά"
|
||||
|
||||
@@ -11804,6 +11866,8 @@ msgid "Reset to"
|
||||
msgstr "Επαναφορά σε"
|
||||
|
||||
#. js-lingui-id: L+rMC9
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
msgid "Reset to default"
|
||||
@@ -12698,6 +12762,13 @@ msgstr "Επιλέξτε ποια μοντέλα θα εμφανίζονται
|
||||
msgid "Select your preferred language"
|
||||
msgstr "Επιλέξτε την προτιμώμενη γλώσσα σας"
|
||||
|
||||
#. js-lingui-id: JlFcis
|
||||
#: src/modules/side-panel/pages/compose-email/components/SidePanelComposeEmailPage.tsx
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposer.tsx
|
||||
msgid "Send"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mjK8F3
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
msgid "Send an invite email to your team"
|
||||
@@ -13415,6 +13486,8 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: UJmAAK
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Subject"
|
||||
msgstr "Θέμα"
|
||||
|
||||
@@ -13655,11 +13728,6 @@ msgstr ""
|
||||
msgid "System Prompt"
|
||||
msgstr "Σύστημα Προτροπής"
|
||||
|
||||
#. js-lingui-id: BXGTWI
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "System Prompt ({totalTokenCount})"
|
||||
msgstr "Προτροπή συστήματος ({totalTokenCount})"
|
||||
|
||||
#. js-lingui-id: k+7QWO
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
msgid "System relations"
|
||||
@@ -14148,6 +14216,11 @@ msgstr ""
|
||||
msgid "This week"
|
||||
msgstr "Αυτή την εβδομάδα"
|
||||
|
||||
#. js-lingui-id: VbVocX
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
msgid "This will cancel all modifications done on the widget. This action cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: h4VeOo
|
||||
#: src/modules/settings/billing/hooks/useBillingWording.ts
|
||||
msgid "This will cancel the scheduled interval change and keep your current billing interval ({currentIntervalLabel})."
|
||||
@@ -14263,6 +14336,7 @@ msgstr "τίτλος"
|
||||
|
||||
#. js-lingui-id: /jQctM
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "To"
|
||||
msgstr "Προς"
|
||||
|
||||
@@ -14586,6 +14660,11 @@ msgstr "Πληκτρολογήστε '/' για εντολές, '@' για αν
|
||||
msgid "Type anything..."
|
||||
msgstr "Πληκτρολογήστε οτιδήποτε..."
|
||||
|
||||
#. js-lingui-id: LaEX5I
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Type something or press \"/\" to see commands"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: UhqKcC
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Type to search records"
|
||||
@@ -14913,6 +14992,11 @@ msgstr "Αναβαθμίστε για πρόσβαση"
|
||||
msgid "Upgrade to Enterprise to access audit logs."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: D+7y/3
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Upgrade to Enterprise to share private applications."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +Gi3x1
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationVersionContainer.tsx
|
||||
@@ -15349,7 +15433,6 @@ msgstr "Προβολή αρχείων καταγραφής"
|
||||
|
||||
#. js-lingui-id: 7PrSCy
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "View marketplace page"
|
||||
msgstr "Προβολή σελίδας marketplace"
|
||||
|
||||
@@ -15363,6 +15446,11 @@ msgstr ""
|
||||
msgid "View Previous AI Chats"
|
||||
msgstr "Εμφάνιση Προηγούμενων Συνομιλιών AI"
|
||||
|
||||
#. js-lingui-id: NnJpTN
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "View private application page"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: hAAsm/
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowEditActionAiAgent.tsx
|
||||
msgid "View role"
|
||||
|
||||
@@ -451,11 +451,13 @@ msgstr "{workspaceMemberName} will be unassigned from the following role:"
|
||||
msgid "••••••••"
|
||||
msgstr "••••••••"
|
||||
|
||||
#. js-lingui-id: tD9raa
|
||||
#. js-lingui-id: SMgdEJ
|
||||
#. placeholder {0}: formatNumber(preview.estimatedTokenCount, { abbreviate: true, decimals: 1, })
|
||||
#. placeholder {0}: formatNumber( section.estimatedTokenCount, { abbreviate: true, decimals: 1, }, )
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "~{0} tokens"
|
||||
msgstr "~{0} tokens"
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "~ {0} tokens"
|
||||
msgstr "~ {0} tokens"
|
||||
|
||||
#. js-lingui-id: Cx0xl3
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
|
||||
@@ -1702,6 +1704,7 @@ msgstr "An error occurred while uploading the picture."
|
||||
#: src/modules/views/hooks/internal/usePerformViewAPIPersist.ts
|
||||
#: src/modules/ui/feedback/snack-bar-manager/hooks/useSnackBar.ts
|
||||
#: src/modules/page-layout/hooks/useUpdatePageLayoutWithTabsAndWidgets.ts
|
||||
#: src/modules/page-layout/hooks/useResetPageLayoutWidgetToDefault.ts
|
||||
#: src/modules/object-metadata/hooks/useUpdateOneObjectMetadataItem.ts
|
||||
#: src/modules/object-metadata/hooks/useUpdateOneFieldMetadataItem.ts
|
||||
#: src/modules/object-metadata/hooks/useDeleteOneObjectMetadataItem.ts
|
||||
@@ -2413,6 +2416,12 @@ msgstr "Base URL"
|
||||
msgid "Base URL is required"
|
||||
msgstr "Base URL is required"
|
||||
|
||||
#. js-lingui-id: /xLNEx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Bcc"
|
||||
msgstr "Bcc"
|
||||
|
||||
#. js-lingui-id: PFohi3
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
msgid "BCC"
|
||||
@@ -2716,9 +2725,11 @@ msgstr "Can't scan? Copy the"
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
#: src/modules/spreadsheet-import/provider/components/SpreadsheetImport.tsx
|
||||
#: src/modules/side-panel/pages/compose-email/components/SidePanelComposeEmailPage.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposer.tsx
|
||||
msgid "Cancel"
|
||||
msgstr "Cancel"
|
||||
|
||||
@@ -2758,6 +2769,11 @@ msgstr "Cancel plan switching"
|
||||
msgid "Cancel plan switching?"
|
||||
msgstr "Cancel plan switching?"
|
||||
|
||||
#. js-lingui-id: AnRu/j
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
msgid "Cancel reply"
|
||||
msgstr "Cancel reply"
|
||||
|
||||
#. js-lingui-id: N6gPiD
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/settings/billing/components/SettingsBillingContent.tsx
|
||||
@@ -2826,11 +2842,22 @@ msgstr "Catalan"
|
||||
msgid "Category"
|
||||
msgstr "Category"
|
||||
|
||||
#. js-lingui-id: RpYfjZ
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Cc"
|
||||
msgstr "Cc"
|
||||
|
||||
#. js-lingui-id: XdZeJk
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
msgid "CC"
|
||||
msgstr "CC"
|
||||
|
||||
#. js-lingui-id: Dgsw8A
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Cc/Bcc"
|
||||
msgstr "Cc/Bcc"
|
||||
|
||||
#. js-lingui-id: tHntRt
|
||||
#: src/modules/page-layout/widgets/standalone-rich-text/components/DashboardEditorSideMenu.tsx
|
||||
#: src/modules/blocknote-editor/components/CustomSideMenu.tsx
|
||||
@@ -5345,6 +5372,11 @@ msgstr "Email must be a valid email"
|
||||
msgid "Email or domain is already in blocklist"
|
||||
msgstr "Email or domain is already in blocklist"
|
||||
|
||||
#. js-lingui-id: Xl929X
|
||||
#: src/modules/activities/emails/hooks/useSendEmail.ts
|
||||
msgid "Email sent successfully"
|
||||
msgstr "Email sent successfully"
|
||||
|
||||
#. js-lingui-id: jvneza
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "Email support"
|
||||
@@ -6434,6 +6466,12 @@ msgstr "Failed to save role permissions: {errorMessage}"
|
||||
msgid "Failed to save workspace instructions"
|
||||
msgstr "Failed to save workspace instructions"
|
||||
|
||||
#. js-lingui-id: Lo/GQ5
|
||||
#: src/modules/activities/emails/hooks/useSendEmail.ts
|
||||
#: src/modules/activities/emails/hooks/useSendEmail.ts
|
||||
msgid "Failed to send email"
|
||||
msgstr "Failed to send email"
|
||||
|
||||
#. js-lingui-id: aj02T8
|
||||
#: src/modules/settings/admin-panel/health-status/maintenance-mode/components/SettingsAdminMaintenanceMode.tsx
|
||||
msgid "Failed to set maintenance mode."
|
||||
@@ -6925,6 +6963,11 @@ msgstr "Free trial credits exhausted. Subscribe now to continue using AI feature
|
||||
msgid "French"
|
||||
msgstr "French"
|
||||
|
||||
#. js-lingui-id: ejVYRQ
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "From"
|
||||
msgstr "From"
|
||||
|
||||
#. js-lingui-id: qR8gT9
|
||||
#: src/modules/workflow/workflow-trigger/utils/cron-to-human/descriptors/getDayOfWeekDescription.ts
|
||||
msgid "from {startDay} to {endDay}"
|
||||
@@ -9393,6 +9436,11 @@ msgstr "New chat"
|
||||
msgid "New conversation"
|
||||
msgstr "New conversation"
|
||||
|
||||
#. js-lingui-id: 3RwJHq
|
||||
#: src/modules/side-panel/hooks/useOpenComposeEmailInSidePanel.ts
|
||||
msgid "New Email"
|
||||
msgstr "New Email"
|
||||
|
||||
#. js-lingui-id: wqoYqp
|
||||
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
|
||||
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
|
||||
@@ -11369,10 +11417,11 @@ msgstr "Read the system prompts to understand how the AI works (~{0} tokens)"
|
||||
msgid "Read your profile"
|
||||
msgstr "Read your profile"
|
||||
|
||||
#. js-lingui-id: tCXcL7
|
||||
#. js-lingui-id: 6pSHJ5
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Read-only — managed by Twenty"
|
||||
msgstr "Read-only — managed by Twenty"
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Read-only"
|
||||
msgstr "Read-only"
|
||||
|
||||
#. js-lingui-id: W+ApAD
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
@@ -11394,6 +11443,11 @@ msgstr "Receive an email containing password update link"
|
||||
msgid "Recent Events (oldest → newest)"
|
||||
msgstr "Recent Events (oldest → newest)"
|
||||
|
||||
#. js-lingui-id: yPrbsy
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Recipients"
|
||||
msgstr "Recipients"
|
||||
|
||||
#. js-lingui-id: b2+5uV
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
msgid "Recommended Models"
|
||||
@@ -11745,6 +11799,8 @@ msgid "Reorder options"
|
||||
msgstr "Reorder options"
|
||||
|
||||
#. js-lingui-id: ImOQa9
|
||||
#: src/modules/side-panel/hooks/useOpenComposeEmailInSidePanel.ts
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
#: src/modules/activities/emails/components/EmailThreadBottomBar.tsx
|
||||
msgid "Reply"
|
||||
msgstr "Reply"
|
||||
@@ -11754,6 +11810,11 @@ msgstr "Reply"
|
||||
msgid "Reply to all"
|
||||
msgstr "Reply to all"
|
||||
|
||||
#. js-lingui-id: fiPYZo
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
msgid "Reply..."
|
||||
msgstr "Reply..."
|
||||
|
||||
#. js-lingui-id: tbmZmI
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "Report and issue"
|
||||
@@ -11779,6 +11840,7 @@ msgstr "Resend email"
|
||||
#. js-lingui-id: OfhWJH
|
||||
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
|
||||
#: src/modules/views/components/ViewBarDetails.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
msgid "Reset"
|
||||
msgstr "Reset"
|
||||
|
||||
@@ -11799,6 +11861,8 @@ msgid "Reset to"
|
||||
msgstr "Reset to"
|
||||
|
||||
#. js-lingui-id: L+rMC9
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
msgid "Reset to default"
|
||||
@@ -12693,6 +12757,13 @@ msgstr "Select which models appear as recommended in the workspace model picker"
|
||||
msgid "Select your preferred language"
|
||||
msgstr "Select your preferred language"
|
||||
|
||||
#. js-lingui-id: JlFcis
|
||||
#: src/modules/side-panel/pages/compose-email/components/SidePanelComposeEmailPage.tsx
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposer.tsx
|
||||
msgid "Send"
|
||||
msgstr "Send"
|
||||
|
||||
#. js-lingui-id: mjK8F3
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
msgid "Send an invite email to your team"
|
||||
@@ -13408,6 +13479,8 @@ msgstr "subheading"
|
||||
|
||||
#. js-lingui-id: UJmAAK
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Subject"
|
||||
msgstr "Subject"
|
||||
|
||||
@@ -13648,11 +13721,6 @@ msgstr "System objects"
|
||||
msgid "System Prompt"
|
||||
msgstr "System Prompt"
|
||||
|
||||
#. js-lingui-id: BXGTWI
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "System Prompt ({totalTokenCount})"
|
||||
msgstr "System Prompt ({totalTokenCount})"
|
||||
|
||||
#. js-lingui-id: k+7QWO
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
msgid "System relations"
|
||||
@@ -14141,6 +14209,11 @@ msgstr "This view uses {usageLabel} on object \"{0}\" which is not accessible."
|
||||
msgid "This week"
|
||||
msgstr "This week"
|
||||
|
||||
#. js-lingui-id: VbVocX
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
msgid "This will cancel all modifications done on the widget. This action cannot be undone."
|
||||
msgstr "This will cancel all modifications done on the widget. This action cannot be undone."
|
||||
|
||||
#. js-lingui-id: h4VeOo
|
||||
#: src/modules/settings/billing/hooks/useBillingWording.ts
|
||||
msgid "This will cancel the scheduled interval change and keep your current billing interval ({currentIntervalLabel})."
|
||||
@@ -14256,6 +14329,7 @@ msgstr "title"
|
||||
|
||||
#. js-lingui-id: /jQctM
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "To"
|
||||
msgstr "To"
|
||||
|
||||
@@ -14579,6 +14653,11 @@ msgstr "Type '/' for commands, '@' for mentions"
|
||||
msgid "Type anything..."
|
||||
msgstr "Type anything..."
|
||||
|
||||
#. js-lingui-id: LaEX5I
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Type something or press \"/\" to see commands"
|
||||
msgstr "Type something or press \"/\" to see commands"
|
||||
|
||||
#. js-lingui-id: UhqKcC
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Type to search records"
|
||||
@@ -14906,6 +14985,11 @@ msgstr "Upgrade to access"
|
||||
msgid "Upgrade to Enterprise to access audit logs."
|
||||
msgstr "Upgrade to Enterprise to access audit logs."
|
||||
|
||||
#. js-lingui-id: D+7y/3
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Upgrade to Enterprise to share private applications."
|
||||
msgstr "Upgrade to Enterprise to share private applications."
|
||||
|
||||
#. js-lingui-id: +Gi3x1
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationVersionContainer.tsx
|
||||
@@ -15342,7 +15426,6 @@ msgstr "View Logs"
|
||||
|
||||
#. js-lingui-id: 7PrSCy
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "View marketplace page"
|
||||
msgstr "View marketplace page"
|
||||
|
||||
@@ -15356,6 +15439,11 @@ msgstr "View not shared"
|
||||
msgid "View Previous AI Chats"
|
||||
msgstr "View Previous AI Chats"
|
||||
|
||||
#. js-lingui-id: NnJpTN
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "View private application page"
|
||||
msgstr "View private application page"
|
||||
|
||||
#. js-lingui-id: hAAsm/
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowEditActionAiAgent.tsx
|
||||
msgid "View role"
|
||||
|
||||
@@ -456,11 +456,13 @@ msgstr "{workspaceMemberName} dejará de estar asignado al siguiente rol:"
|
||||
msgid "••••••••"
|
||||
msgstr "••••••••"
|
||||
|
||||
#. js-lingui-id: tD9raa
|
||||
#. js-lingui-id: SMgdEJ
|
||||
#. placeholder {0}: formatNumber(preview.estimatedTokenCount, { abbreviate: true, decimals: 1, })
|
||||
#. placeholder {0}: formatNumber( section.estimatedTokenCount, { abbreviate: true, decimals: 1, }, )
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "~{0} tokens"
|
||||
msgstr "~{0} tokens"
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "~ {0} tokens"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Cx0xl3
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
|
||||
@@ -1707,6 +1709,7 @@ msgstr "Se produjo un error al subir la imagen."
|
||||
#: src/modules/views/hooks/internal/usePerformViewAPIPersist.ts
|
||||
#: src/modules/ui/feedback/snack-bar-manager/hooks/useSnackBar.ts
|
||||
#: src/modules/page-layout/hooks/useUpdatePageLayoutWithTabsAndWidgets.ts
|
||||
#: src/modules/page-layout/hooks/useResetPageLayoutWidgetToDefault.ts
|
||||
#: src/modules/object-metadata/hooks/useUpdateOneObjectMetadataItem.ts
|
||||
#: src/modules/object-metadata/hooks/useUpdateOneFieldMetadataItem.ts
|
||||
#: src/modules/object-metadata/hooks/useDeleteOneObjectMetadataItem.ts
|
||||
@@ -2418,6 +2421,12 @@ msgstr "URL base"
|
||||
msgid "Base URL is required"
|
||||
msgstr "La URL base es obligatoria"
|
||||
|
||||
#. js-lingui-id: /xLNEx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Bcc"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: PFohi3
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
msgid "BCC"
|
||||
@@ -2721,9 +2730,11 @@ msgstr "¿No puedes escanear? Copia el"
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
#: src/modules/spreadsheet-import/provider/components/SpreadsheetImport.tsx
|
||||
#: src/modules/side-panel/pages/compose-email/components/SidePanelComposeEmailPage.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposer.tsx
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
@@ -2763,6 +2774,11 @@ msgstr "Cancelar cambio de plan"
|
||||
msgid "Cancel plan switching?"
|
||||
msgstr "¿Cancelar cambio de plan?"
|
||||
|
||||
#. js-lingui-id: AnRu/j
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
msgid "Cancel reply"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: N6gPiD
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/settings/billing/components/SettingsBillingContent.tsx
|
||||
@@ -2831,11 +2847,22 @@ msgstr "Catalán"
|
||||
msgid "Category"
|
||||
msgstr "Categoría"
|
||||
|
||||
#. js-lingui-id: RpYfjZ
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Cc"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XdZeJk
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
msgid "CC"
|
||||
msgstr "CC"
|
||||
|
||||
#. js-lingui-id: Dgsw8A
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Cc/Bcc"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: tHntRt
|
||||
#: src/modules/page-layout/widgets/standalone-rich-text/components/DashboardEditorSideMenu.tsx
|
||||
#: src/modules/blocknote-editor/components/CustomSideMenu.tsx
|
||||
@@ -5350,6 +5377,11 @@ msgstr "El correo electrónico debe ser válido"
|
||||
msgid "Email or domain is already in blocklist"
|
||||
msgstr "El correo electrónico o el dominio ya están en la lista de bloqueo"
|
||||
|
||||
#. js-lingui-id: Xl929X
|
||||
#: src/modules/activities/emails/hooks/useSendEmail.ts
|
||||
msgid "Email sent successfully"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: jvneza
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "Email support"
|
||||
@@ -6439,6 +6471,12 @@ msgstr "Error al guardar los permisos de rol: {errorMessage}"
|
||||
msgid "Failed to save workspace instructions"
|
||||
msgstr "Error al guardar las instrucciones del espacio de trabajo"
|
||||
|
||||
#. js-lingui-id: Lo/GQ5
|
||||
#: src/modules/activities/emails/hooks/useSendEmail.ts
|
||||
#: src/modules/activities/emails/hooks/useSendEmail.ts
|
||||
msgid "Failed to send email"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: aj02T8
|
||||
#: src/modules/settings/admin-panel/health-status/maintenance-mode/components/SettingsAdminMaintenanceMode.tsx
|
||||
msgid "Failed to set maintenance mode."
|
||||
@@ -6930,6 +6968,11 @@ msgstr "Se han agotado los créditos de la prueba gratuita. Suscríbete ahora pa
|
||||
msgid "French"
|
||||
msgstr "Francés"
|
||||
|
||||
#. js-lingui-id: ejVYRQ
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "From"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: qR8gT9
|
||||
#: src/modules/workflow/workflow-trigger/utils/cron-to-human/descriptors/getDayOfWeekDescription.ts
|
||||
msgid "from {startDay} to {endDay}"
|
||||
@@ -9398,6 +9441,11 @@ msgstr "Nuevo chat"
|
||||
msgid "New conversation"
|
||||
msgstr "Nueva conversación"
|
||||
|
||||
#. js-lingui-id: 3RwJHq
|
||||
#: src/modules/side-panel/hooks/useOpenComposeEmailInSidePanel.ts
|
||||
msgid "New Email"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wqoYqp
|
||||
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
|
||||
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
|
||||
@@ -11374,10 +11422,11 @@ msgstr ""
|
||||
msgid "Read your profile"
|
||||
msgstr "Leer tu perfil"
|
||||
|
||||
#. js-lingui-id: tCXcL7
|
||||
#. js-lingui-id: 6pSHJ5
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Read-only — managed by Twenty"
|
||||
msgstr "De solo lectura — gestionado por Twenty"
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Read-only"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: W+ApAD
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
@@ -11399,6 +11448,11 @@ msgstr "Recibir un correo electrónico con un enlace para actualizar la contrase
|
||||
msgid "Recent Events (oldest → newest)"
|
||||
msgstr "Eventos Recientes (del más antiguo → al más nuevo)"
|
||||
|
||||
#. js-lingui-id: yPrbsy
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Recipients"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: b2+5uV
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
msgid "Recommended Models"
|
||||
@@ -11750,6 +11804,8 @@ msgid "Reorder options"
|
||||
msgstr "Reordenar opciones"
|
||||
|
||||
#. js-lingui-id: ImOQa9
|
||||
#: src/modules/side-panel/hooks/useOpenComposeEmailInSidePanel.ts
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
#: src/modules/activities/emails/components/EmailThreadBottomBar.tsx
|
||||
msgid "Reply"
|
||||
msgstr "Responder"
|
||||
@@ -11759,6 +11815,11 @@ msgstr "Responder"
|
||||
msgid "Reply to all"
|
||||
msgstr "Responder a todos"
|
||||
|
||||
#. js-lingui-id: fiPYZo
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
msgid "Reply..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: tbmZmI
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "Report and issue"
|
||||
@@ -11784,6 +11845,7 @@ msgstr "Reenviar correo electrónico"
|
||||
#. js-lingui-id: OfhWJH
|
||||
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
|
||||
#: src/modules/views/components/ViewBarDetails.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
msgid "Reset"
|
||||
msgstr "Restablecer"
|
||||
|
||||
@@ -11804,6 +11866,8 @@ msgid "Reset to"
|
||||
msgstr "Restablecer a"
|
||||
|
||||
#. js-lingui-id: L+rMC9
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
msgid "Reset to default"
|
||||
@@ -12698,6 +12762,13 @@ msgstr "Selecciona qué modelos aparecen como recomendados en el selector de mod
|
||||
msgid "Select your preferred language"
|
||||
msgstr "Selecciona tu idioma preferido"
|
||||
|
||||
#. js-lingui-id: JlFcis
|
||||
#: src/modules/side-panel/pages/compose-email/components/SidePanelComposeEmailPage.tsx
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposer.tsx
|
||||
msgid "Send"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mjK8F3
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
msgid "Send an invite email to your team"
|
||||
@@ -13413,6 +13484,8 @@ msgstr "sub encabezado"
|
||||
|
||||
#. js-lingui-id: UJmAAK
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Subject"
|
||||
msgstr "Asunto"
|
||||
|
||||
@@ -13653,11 +13726,6 @@ msgstr "Objetos del sistema"
|
||||
msgid "System Prompt"
|
||||
msgstr "Aviso del sistema"
|
||||
|
||||
#. js-lingui-id: BXGTWI
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "System Prompt ({totalTokenCount})"
|
||||
msgstr "Prompt del sistema ({totalTokenCount})"
|
||||
|
||||
#. js-lingui-id: k+7QWO
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
msgid "System relations"
|
||||
@@ -14146,6 +14214,11 @@ msgstr ""
|
||||
msgid "This week"
|
||||
msgstr "Esta semana"
|
||||
|
||||
#. js-lingui-id: VbVocX
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
msgid "This will cancel all modifications done on the widget. This action cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: h4VeOo
|
||||
#: src/modules/settings/billing/hooks/useBillingWording.ts
|
||||
msgid "This will cancel the scheduled interval change and keep your current billing interval ({currentIntervalLabel})."
|
||||
@@ -14261,6 +14334,7 @@ msgstr "título"
|
||||
|
||||
#. js-lingui-id: /jQctM
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "To"
|
||||
msgstr "Para"
|
||||
|
||||
@@ -14584,6 +14658,11 @@ msgstr "Escribe \"/\" para comandos, \"@\" para menciones"
|
||||
msgid "Type anything..."
|
||||
msgstr "Escribe cualquier cosa..."
|
||||
|
||||
#. js-lingui-id: LaEX5I
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Type something or press \"/\" to see commands"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: UhqKcC
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Type to search records"
|
||||
@@ -14911,6 +14990,11 @@ msgstr "Actualiza para acceder"
|
||||
msgid "Upgrade to Enterprise to access audit logs."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: D+7y/3
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Upgrade to Enterprise to share private applications."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +Gi3x1
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationVersionContainer.tsx
|
||||
@@ -15347,7 +15431,6 @@ msgstr "Ver registros"
|
||||
|
||||
#. js-lingui-id: 7PrSCy
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "View marketplace page"
|
||||
msgstr "Ver página del Marketplace"
|
||||
|
||||
@@ -15361,6 +15444,11 @@ msgstr ""
|
||||
msgid "View Previous AI Chats"
|
||||
msgstr "Ver chats previos de IA"
|
||||
|
||||
#. js-lingui-id: NnJpTN
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "View private application page"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: hAAsm/
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowEditActionAiAgent.tsx
|
||||
msgid "View role"
|
||||
|
||||
@@ -456,11 +456,13 @@ msgstr "{workspaceMemberName} poistetaan seuraavasta roolista:"
|
||||
msgid "••••••••"
|
||||
msgstr "••••••••"
|
||||
|
||||
#. js-lingui-id: tD9raa
|
||||
#. js-lingui-id: SMgdEJ
|
||||
#. placeholder {0}: formatNumber(preview.estimatedTokenCount, { abbreviate: true, decimals: 1, })
|
||||
#. placeholder {0}: formatNumber( section.estimatedTokenCount, { abbreviate: true, decimals: 1, }, )
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "~{0} tokens"
|
||||
msgstr "~{0} tokenia"
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "~ {0} tokens"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Cx0xl3
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
|
||||
@@ -1707,6 +1709,7 @@ msgstr "Kuvaa ladattaessa tapahtui virhe."
|
||||
#: src/modules/views/hooks/internal/usePerformViewAPIPersist.ts
|
||||
#: src/modules/ui/feedback/snack-bar-manager/hooks/useSnackBar.ts
|
||||
#: src/modules/page-layout/hooks/useUpdatePageLayoutWithTabsAndWidgets.ts
|
||||
#: src/modules/page-layout/hooks/useResetPageLayoutWidgetToDefault.ts
|
||||
#: src/modules/object-metadata/hooks/useUpdateOneObjectMetadataItem.ts
|
||||
#: src/modules/object-metadata/hooks/useUpdateOneFieldMetadataItem.ts
|
||||
#: src/modules/object-metadata/hooks/useDeleteOneObjectMetadataItem.ts
|
||||
@@ -2418,6 +2421,12 @@ msgstr "Perus-URL"
|
||||
msgid "Base URL is required"
|
||||
msgstr "Perus-URL on pakollinen"
|
||||
|
||||
#. js-lingui-id: /xLNEx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Bcc"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: PFohi3
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
msgid "BCC"
|
||||
@@ -2721,9 +2730,11 @@ msgstr "Et voi skannata? Kopioi"
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
#: src/modules/spreadsheet-import/provider/components/SpreadsheetImport.tsx
|
||||
#: src/modules/side-panel/pages/compose-email/components/SidePanelComposeEmailPage.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposer.tsx
|
||||
msgid "Cancel"
|
||||
msgstr "Peruuta"
|
||||
|
||||
@@ -2763,6 +2774,11 @@ msgstr "Peruuta suunnitelman vaihtaminen"
|
||||
msgid "Cancel plan switching?"
|
||||
msgstr "Peruuta suunnitelman vaihtaminen?"
|
||||
|
||||
#. js-lingui-id: AnRu/j
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
msgid "Cancel reply"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: N6gPiD
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/settings/billing/components/SettingsBillingContent.tsx
|
||||
@@ -2831,11 +2847,22 @@ msgstr "Katalaani"
|
||||
msgid "Category"
|
||||
msgstr "Luokka"
|
||||
|
||||
#. js-lingui-id: RpYfjZ
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Cc"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XdZeJk
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
msgid "CC"
|
||||
msgstr "Kopio"
|
||||
|
||||
#. js-lingui-id: Dgsw8A
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Cc/Bcc"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: tHntRt
|
||||
#: src/modules/page-layout/widgets/standalone-rich-text/components/DashboardEditorSideMenu.tsx
|
||||
#: src/modules/blocknote-editor/components/CustomSideMenu.tsx
|
||||
@@ -5350,6 +5377,11 @@ msgstr "Sähköpostin on oltava kelvollinen sähköpostiosoite"
|
||||
msgid "Email or domain is already in blocklist"
|
||||
msgstr "Sähköposti tai verkkotunnus on jo estolistalla"
|
||||
|
||||
#. js-lingui-id: Xl929X
|
||||
#: src/modules/activities/emails/hooks/useSendEmail.ts
|
||||
msgid "Email sent successfully"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: jvneza
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "Email support"
|
||||
@@ -6439,6 +6471,12 @@ msgstr ""
|
||||
msgid "Failed to save workspace instructions"
|
||||
msgstr "Työtilan ohjeiden tallentaminen epäonnistui"
|
||||
|
||||
#. js-lingui-id: Lo/GQ5
|
||||
#: src/modules/activities/emails/hooks/useSendEmail.ts
|
||||
#: src/modules/activities/emails/hooks/useSendEmail.ts
|
||||
msgid "Failed to send email"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: aj02T8
|
||||
#: src/modules/settings/admin-panel/health-status/maintenance-mode/components/SettingsAdminMaintenanceMode.tsx
|
||||
msgid "Failed to set maintenance mode."
|
||||
@@ -6930,6 +6968,11 @@ msgstr "Kokeilujakson krediitit on käytetty. Tilaa nyt jatkaaksesi AI-ominaisuu
|
||||
msgid "French"
|
||||
msgstr "Ranska"
|
||||
|
||||
#. js-lingui-id: ejVYRQ
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "From"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: qR8gT9
|
||||
#: src/modules/workflow/workflow-trigger/utils/cron-to-human/descriptors/getDayOfWeekDescription.ts
|
||||
msgid "from {startDay} to {endDay}"
|
||||
@@ -9398,6 +9441,11 @@ msgstr "Uusi keskustelu"
|
||||
msgid "New conversation"
|
||||
msgstr "Uusi keskustelu"
|
||||
|
||||
#. js-lingui-id: 3RwJHq
|
||||
#: src/modules/side-panel/hooks/useOpenComposeEmailInSidePanel.ts
|
||||
msgid "New Email"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wqoYqp
|
||||
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
|
||||
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
|
||||
@@ -11374,10 +11422,11 @@ msgstr ""
|
||||
msgid "Read your profile"
|
||||
msgstr "Lue profiilisi"
|
||||
|
||||
#. js-lingui-id: tCXcL7
|
||||
#. js-lingui-id: 6pSHJ5
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Read-only — managed by Twenty"
|
||||
msgstr "Vain luku — Twenty hallinnoi"
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Read-only"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: W+ApAD
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
@@ -11399,6 +11448,11 @@ msgstr "Vastaanota sähköposti salasanan päivityslinkillä"
|
||||
msgid "Recent Events (oldest → newest)"
|
||||
msgstr "Viimeisimmät tapahtumat (vanhin → uusin)"
|
||||
|
||||
#. js-lingui-id: yPrbsy
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Recipients"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: b2+5uV
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
msgid "Recommended Models"
|
||||
@@ -11750,6 +11804,8 @@ msgid "Reorder options"
|
||||
msgstr "Järjestä vaihtoehdot uudelleen"
|
||||
|
||||
#. js-lingui-id: ImOQa9
|
||||
#: src/modules/side-panel/hooks/useOpenComposeEmailInSidePanel.ts
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
#: src/modules/activities/emails/components/EmailThreadBottomBar.tsx
|
||||
msgid "Reply"
|
||||
msgstr "Vastaa"
|
||||
@@ -11759,6 +11815,11 @@ msgstr "Vastaa"
|
||||
msgid "Reply to all"
|
||||
msgstr "Vastaa kaikille"
|
||||
|
||||
#. js-lingui-id: fiPYZo
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
msgid "Reply..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: tbmZmI
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "Report and issue"
|
||||
@@ -11784,6 +11845,7 @@ msgstr "Lähetä sähköposti uudelleen"
|
||||
#. js-lingui-id: OfhWJH
|
||||
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
|
||||
#: src/modules/views/components/ViewBarDetails.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
msgid "Reset"
|
||||
msgstr "Nollaa"
|
||||
|
||||
@@ -11804,6 +11866,8 @@ msgid "Reset to"
|
||||
msgstr "Palauta"
|
||||
|
||||
#. js-lingui-id: L+rMC9
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
msgid "Reset to default"
|
||||
@@ -12698,6 +12762,13 @@ msgstr "Valitse, mitkä mallit näkyvät suositeltuina työtilan mallivalitsimes
|
||||
msgid "Select your preferred language"
|
||||
msgstr "Valitse suosimasi kieli"
|
||||
|
||||
#. js-lingui-id: JlFcis
|
||||
#: src/modules/side-panel/pages/compose-email/components/SidePanelComposeEmailPage.tsx
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposer.tsx
|
||||
msgid "Send"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mjK8F3
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
msgid "Send an invite email to your team"
|
||||
@@ -13413,6 +13484,8 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: UJmAAK
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Subject"
|
||||
msgstr "Aihe"
|
||||
|
||||
@@ -13653,11 +13726,6 @@ msgstr ""
|
||||
msgid "System Prompt"
|
||||
msgstr "Järjestelmäkehotus"
|
||||
|
||||
#. js-lingui-id: BXGTWI
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "System Prompt ({totalTokenCount})"
|
||||
msgstr "Järjestelmäkehote ({totalTokenCount})"
|
||||
|
||||
#. js-lingui-id: k+7QWO
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
msgid "System relations"
|
||||
@@ -14144,6 +14212,11 @@ msgstr ""
|
||||
msgid "This week"
|
||||
msgstr "Tämä viikko"
|
||||
|
||||
#. js-lingui-id: VbVocX
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
msgid "This will cancel all modifications done on the widget. This action cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: h4VeOo
|
||||
#: src/modules/settings/billing/hooks/useBillingWording.ts
|
||||
msgid "This will cancel the scheduled interval change and keep your current billing interval ({currentIntervalLabel})."
|
||||
@@ -14259,6 +14332,7 @@ msgstr "otsikko"
|
||||
|
||||
#. js-lingui-id: /jQctM
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "To"
|
||||
msgstr "Vastaanottaja"
|
||||
|
||||
@@ -14582,6 +14656,11 @@ msgstr "Kirjoita '/' komentoja varten, '@' mainintoja varten"
|
||||
msgid "Type anything..."
|
||||
msgstr "Kirjoita jotain..."
|
||||
|
||||
#. js-lingui-id: LaEX5I
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Type something or press \"/\" to see commands"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: UhqKcC
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Type to search records"
|
||||
@@ -14909,6 +14988,11 @@ msgstr "Päivitä saadaksesi käyttöoikeuden"
|
||||
msgid "Upgrade to Enterprise to access audit logs."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: D+7y/3
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Upgrade to Enterprise to share private applications."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +Gi3x1
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationVersionContainer.tsx
|
||||
@@ -15345,7 +15429,6 @@ msgstr "Näytä lokit"
|
||||
|
||||
#. js-lingui-id: 7PrSCy
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "View marketplace page"
|
||||
msgstr "Avaa markkinapaikan sivu"
|
||||
|
||||
@@ -15359,6 +15442,11 @@ msgstr ""
|
||||
msgid "View Previous AI Chats"
|
||||
msgstr "Näytä edelliset AI Keskustelut"
|
||||
|
||||
#. js-lingui-id: NnJpTN
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "View private application page"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: hAAsm/
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowEditActionAiAgent.tsx
|
||||
msgid "View role"
|
||||
|
||||
@@ -456,11 +456,13 @@ msgstr "{workspaceMemberName} sera retiré du rôle suivant :"
|
||||
msgid "••••••••"
|
||||
msgstr "••••••••"
|
||||
|
||||
#. js-lingui-id: tD9raa
|
||||
#. js-lingui-id: SMgdEJ
|
||||
#. placeholder {0}: formatNumber(preview.estimatedTokenCount, { abbreviate: true, decimals: 1, })
|
||||
#. placeholder {0}: formatNumber( section.estimatedTokenCount, { abbreviate: true, decimals: 1, }, )
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "~{0} tokens"
|
||||
msgstr "~{0} jetons"
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "~ {0} tokens"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Cx0xl3
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
|
||||
@@ -1707,6 +1709,7 @@ msgstr "Une erreur s'est produite lors du téléversement de l'image."
|
||||
#: src/modules/views/hooks/internal/usePerformViewAPIPersist.ts
|
||||
#: src/modules/ui/feedback/snack-bar-manager/hooks/useSnackBar.ts
|
||||
#: src/modules/page-layout/hooks/useUpdatePageLayoutWithTabsAndWidgets.ts
|
||||
#: src/modules/page-layout/hooks/useResetPageLayoutWidgetToDefault.ts
|
||||
#: src/modules/object-metadata/hooks/useUpdateOneObjectMetadataItem.ts
|
||||
#: src/modules/object-metadata/hooks/useUpdateOneFieldMetadataItem.ts
|
||||
#: src/modules/object-metadata/hooks/useDeleteOneObjectMetadataItem.ts
|
||||
@@ -2418,6 +2421,12 @@ msgstr "URL de base"
|
||||
msgid "Base URL is required"
|
||||
msgstr "L'URL de base est requise"
|
||||
|
||||
#. js-lingui-id: /xLNEx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Bcc"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: PFohi3
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
msgid "BCC"
|
||||
@@ -2721,9 +2730,11 @@ msgstr "Impossible de scanner ? Copiez le"
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
#: src/modules/spreadsheet-import/provider/components/SpreadsheetImport.tsx
|
||||
#: src/modules/side-panel/pages/compose-email/components/SidePanelComposeEmailPage.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposer.tsx
|
||||
msgid "Cancel"
|
||||
msgstr "Annuler"
|
||||
|
||||
@@ -2763,6 +2774,11 @@ msgstr "Annuler le changement de plan"
|
||||
msgid "Cancel plan switching?"
|
||||
msgstr "Annuler le changement de plan ?"
|
||||
|
||||
#. js-lingui-id: AnRu/j
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
msgid "Cancel reply"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: N6gPiD
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/settings/billing/components/SettingsBillingContent.tsx
|
||||
@@ -2831,11 +2847,22 @@ msgstr "Catalan"
|
||||
msgid "Category"
|
||||
msgstr "Catégorie"
|
||||
|
||||
#. js-lingui-id: RpYfjZ
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Cc"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XdZeJk
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
msgid "CC"
|
||||
msgstr "Cc"
|
||||
|
||||
#. js-lingui-id: Dgsw8A
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Cc/Bcc"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: tHntRt
|
||||
#: src/modules/page-layout/widgets/standalone-rich-text/components/DashboardEditorSideMenu.tsx
|
||||
#: src/modules/blocknote-editor/components/CustomSideMenu.tsx
|
||||
@@ -5350,6 +5377,11 @@ msgstr "L'adresse e-mail doit être valide"
|
||||
msgid "Email or domain is already in blocklist"
|
||||
msgstr "Le courriel ou le domaine est déjà dans la liste de blocage"
|
||||
|
||||
#. js-lingui-id: Xl929X
|
||||
#: src/modules/activities/emails/hooks/useSendEmail.ts
|
||||
msgid "Email sent successfully"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: jvneza
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "Email support"
|
||||
@@ -6439,6 +6471,12 @@ msgstr ""
|
||||
msgid "Failed to save workspace instructions"
|
||||
msgstr "Impossible d'enregistrer les instructions de l'espace de travail"
|
||||
|
||||
#. js-lingui-id: Lo/GQ5
|
||||
#: src/modules/activities/emails/hooks/useSendEmail.ts
|
||||
#: src/modules/activities/emails/hooks/useSendEmail.ts
|
||||
msgid "Failed to send email"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: aj02T8
|
||||
#: src/modules/settings/admin-panel/health-status/maintenance-mode/components/SettingsAdminMaintenanceMode.tsx
|
||||
msgid "Failed to set maintenance mode."
|
||||
@@ -6930,6 +6968,11 @@ msgstr "Crédits d'essai gratuits épuisés. Abonnez-vous maintenant pour contin
|
||||
msgid "French"
|
||||
msgstr "Français"
|
||||
|
||||
#. js-lingui-id: ejVYRQ
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "From"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: qR8gT9
|
||||
#: src/modules/workflow/workflow-trigger/utils/cron-to-human/descriptors/getDayOfWeekDescription.ts
|
||||
msgid "from {startDay} to {endDay}"
|
||||
@@ -9398,6 +9441,11 @@ msgstr "Nouveau chat"
|
||||
msgid "New conversation"
|
||||
msgstr "Nouvelle conversation"
|
||||
|
||||
#. js-lingui-id: 3RwJHq
|
||||
#: src/modules/side-panel/hooks/useOpenComposeEmailInSidePanel.ts
|
||||
msgid "New Email"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wqoYqp
|
||||
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
|
||||
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
|
||||
@@ -11374,10 +11422,11 @@ msgstr ""
|
||||
msgid "Read your profile"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: tCXcL7
|
||||
#. js-lingui-id: 6pSHJ5
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Read-only — managed by Twenty"
|
||||
msgstr "Lecture seule — géré par Twenty"
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Read-only"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: W+ApAD
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
@@ -11399,6 +11448,11 @@ msgstr "Recevoir un email contenant un lien de mise à jour du mot de passe"
|
||||
msgid "Recent Events (oldest → newest)"
|
||||
msgstr "Événements récents (du plus ancien au plus récent)"
|
||||
|
||||
#. js-lingui-id: yPrbsy
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Recipients"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: b2+5uV
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
msgid "Recommended Models"
|
||||
@@ -11750,6 +11804,8 @@ msgid "Reorder options"
|
||||
msgstr "Réordonner les options"
|
||||
|
||||
#. js-lingui-id: ImOQa9
|
||||
#: src/modules/side-panel/hooks/useOpenComposeEmailInSidePanel.ts
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
#: src/modules/activities/emails/components/EmailThreadBottomBar.tsx
|
||||
msgid "Reply"
|
||||
msgstr "Répondre"
|
||||
@@ -11759,6 +11815,11 @@ msgstr "Répondre"
|
||||
msgid "Reply to all"
|
||||
msgstr "Répondre à tous"
|
||||
|
||||
#. js-lingui-id: fiPYZo
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
msgid "Reply..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: tbmZmI
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "Report and issue"
|
||||
@@ -11784,6 +11845,7 @@ msgstr "Renvoyer l'email"
|
||||
#. js-lingui-id: OfhWJH
|
||||
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
|
||||
#: src/modules/views/components/ViewBarDetails.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
msgid "Reset"
|
||||
msgstr "Réinitialiser"
|
||||
|
||||
@@ -11804,6 +11866,8 @@ msgid "Reset to"
|
||||
msgstr "Réinitialiser à"
|
||||
|
||||
#. js-lingui-id: L+rMC9
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
msgid "Reset to default"
|
||||
@@ -12698,6 +12762,13 @@ msgstr "Sélectionnez les modèles qui apparaissent comme recommandés dans le s
|
||||
msgid "Select your preferred language"
|
||||
msgstr "Sélectionnez votre langue préférée"
|
||||
|
||||
#. js-lingui-id: JlFcis
|
||||
#: src/modules/side-panel/pages/compose-email/components/SidePanelComposeEmailPage.tsx
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposer.tsx
|
||||
msgid "Send"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mjK8F3
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
msgid "Send an invite email to your team"
|
||||
@@ -13413,6 +13484,8 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: UJmAAK
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Subject"
|
||||
msgstr "Objet"
|
||||
|
||||
@@ -13653,11 +13726,6 @@ msgstr ""
|
||||
msgid "System Prompt"
|
||||
msgstr "Invite système"
|
||||
|
||||
#. js-lingui-id: BXGTWI
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "System Prompt ({totalTokenCount})"
|
||||
msgstr "Invite système ({totalTokenCount})"
|
||||
|
||||
#. js-lingui-id: k+7QWO
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
msgid "System relations"
|
||||
@@ -14146,6 +14214,11 @@ msgstr ""
|
||||
msgid "This week"
|
||||
msgstr "Cette semaine"
|
||||
|
||||
#. js-lingui-id: VbVocX
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
msgid "This will cancel all modifications done on the widget. This action cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: h4VeOo
|
||||
#: src/modules/settings/billing/hooks/useBillingWording.ts
|
||||
msgid "This will cancel the scheduled interval change and keep your current billing interval ({currentIntervalLabel})."
|
||||
@@ -14261,6 +14334,7 @@ msgstr "titre"
|
||||
|
||||
#. js-lingui-id: /jQctM
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "To"
|
||||
msgstr "À"
|
||||
|
||||
@@ -14584,6 +14658,11 @@ msgstr "Tapez '/' pour les commandes, '@' pour les mentions"
|
||||
msgid "Type anything..."
|
||||
msgstr "Tapez n'importe quoi..."
|
||||
|
||||
#. js-lingui-id: LaEX5I
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Type something or press \"/\" to see commands"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: UhqKcC
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Type to search records"
|
||||
@@ -14911,6 +14990,11 @@ msgstr "Passez à un forfait supérieur pour y accéder"
|
||||
msgid "Upgrade to Enterprise to access audit logs."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: D+7y/3
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Upgrade to Enterprise to share private applications."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +Gi3x1
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationVersionContainer.tsx
|
||||
@@ -15347,7 +15431,6 @@ msgstr "Afficher les journaux"
|
||||
|
||||
#. js-lingui-id: 7PrSCy
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "View marketplace page"
|
||||
msgstr "Voir la page de la marketplace"
|
||||
|
||||
@@ -15361,6 +15444,11 @@ msgstr ""
|
||||
msgid "View Previous AI Chats"
|
||||
msgstr "Voir les Discussions AI Précédentes"
|
||||
|
||||
#. js-lingui-id: NnJpTN
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "View private application page"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: hAAsm/
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowEditActionAiAgent.tsx
|
||||
msgid "View role"
|
||||
|
||||
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
@@ -456,11 +456,13 @@ msgstr "{workspaceMemberName} יוסר מהתפקיד הבא:"
|
||||
msgid "••••••••"
|
||||
msgstr "••••••••"
|
||||
|
||||
#. js-lingui-id: tD9raa
|
||||
#. js-lingui-id: SMgdEJ
|
||||
#. placeholder {0}: formatNumber(preview.estimatedTokenCount, { abbreviate: true, decimals: 1, })
|
||||
#. placeholder {0}: formatNumber( section.estimatedTokenCount, { abbreviate: true, decimals: 1, }, )
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "~{0} tokens"
|
||||
msgstr "~{0} אסימונים"
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "~ {0} tokens"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Cx0xl3
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
|
||||
@@ -1707,6 +1709,7 @@ msgstr "אירעה שגיאה בעת העלאת התמונה."
|
||||
#: src/modules/views/hooks/internal/usePerformViewAPIPersist.ts
|
||||
#: src/modules/ui/feedback/snack-bar-manager/hooks/useSnackBar.ts
|
||||
#: src/modules/page-layout/hooks/useUpdatePageLayoutWithTabsAndWidgets.ts
|
||||
#: src/modules/page-layout/hooks/useResetPageLayoutWidgetToDefault.ts
|
||||
#: src/modules/object-metadata/hooks/useUpdateOneObjectMetadataItem.ts
|
||||
#: src/modules/object-metadata/hooks/useUpdateOneFieldMetadataItem.ts
|
||||
#: src/modules/object-metadata/hooks/useDeleteOneObjectMetadataItem.ts
|
||||
@@ -2418,6 +2421,12 @@ msgstr "כתובת URL בסיסית"
|
||||
msgid "Base URL is required"
|
||||
msgstr "נדרשת כתובת URL בסיסית"
|
||||
|
||||
#. js-lingui-id: /xLNEx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Bcc"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: PFohi3
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
msgid "BCC"
|
||||
@@ -2721,9 +2730,11 @@ msgstr "לא ניתן לסרוק? העתק את"
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
#: src/modules/spreadsheet-import/provider/components/SpreadsheetImport.tsx
|
||||
#: src/modules/side-panel/pages/compose-email/components/SidePanelComposeEmailPage.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposer.tsx
|
||||
msgid "Cancel"
|
||||
msgstr "בטל"
|
||||
|
||||
@@ -2763,6 +2774,11 @@ msgstr "ביטול החלפת תכנית"
|
||||
msgid "Cancel plan switching?"
|
||||
msgstr "האם לבטל את החלפת התכנית?"
|
||||
|
||||
#. js-lingui-id: AnRu/j
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
msgid "Cancel reply"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: N6gPiD
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/settings/billing/components/SettingsBillingContent.tsx
|
||||
@@ -2831,11 +2847,22 @@ msgstr "קטלאנית"
|
||||
msgid "Category"
|
||||
msgstr "קטגוריה"
|
||||
|
||||
#. js-lingui-id: RpYfjZ
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Cc"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XdZeJk
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
msgid "CC"
|
||||
msgstr "CC"
|
||||
|
||||
#. js-lingui-id: Dgsw8A
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Cc/Bcc"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: tHntRt
|
||||
#: src/modules/page-layout/widgets/standalone-rich-text/components/DashboardEditorSideMenu.tsx
|
||||
#: src/modules/blocknote-editor/components/CustomSideMenu.tsx
|
||||
@@ -5350,6 +5377,11 @@ msgstr "יש להזין כתובת דוא\"ל תקינה"
|
||||
msgid "Email or domain is already in blocklist"
|
||||
msgstr "דוא\"ל או תחום כבר נמצאים ברשימת החסימה"
|
||||
|
||||
#. js-lingui-id: Xl929X
|
||||
#: src/modules/activities/emails/hooks/useSendEmail.ts
|
||||
msgid "Email sent successfully"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: jvneza
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "Email support"
|
||||
@@ -6439,6 +6471,12 @@ msgstr ""
|
||||
msgid "Failed to save workspace instructions"
|
||||
msgstr "אירע כשל בשמירת הנחיות סביבת העבודה"
|
||||
|
||||
#. js-lingui-id: Lo/GQ5
|
||||
#: src/modules/activities/emails/hooks/useSendEmail.ts
|
||||
#: src/modules/activities/emails/hooks/useSendEmail.ts
|
||||
msgid "Failed to send email"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: aj02T8
|
||||
#: src/modules/settings/admin-panel/health-status/maintenance-mode/components/SettingsAdminMaintenanceMode.tsx
|
||||
msgid "Failed to set maintenance mode."
|
||||
@@ -6930,6 +6968,11 @@ msgstr "קרדיטי הניסיון בחינם אזלו. הירשם כעת כד
|
||||
msgid "French"
|
||||
msgstr "צרפתית"
|
||||
|
||||
#. js-lingui-id: ejVYRQ
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "From"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: qR8gT9
|
||||
#: src/modules/workflow/workflow-trigger/utils/cron-to-human/descriptors/getDayOfWeekDescription.ts
|
||||
msgid "from {startDay} to {endDay}"
|
||||
@@ -9398,6 +9441,11 @@ msgstr "צ'אט חדש"
|
||||
msgid "New conversation"
|
||||
msgstr "שיחה חדשה"
|
||||
|
||||
#. js-lingui-id: 3RwJHq
|
||||
#: src/modules/side-panel/hooks/useOpenComposeEmailInSidePanel.ts
|
||||
msgid "New Email"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wqoYqp
|
||||
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
|
||||
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
|
||||
@@ -11374,10 +11422,11 @@ msgstr ""
|
||||
msgid "Read your profile"
|
||||
msgstr "קריאת הפרופיל שלך"
|
||||
|
||||
#. js-lingui-id: tCXcL7
|
||||
#. js-lingui-id: 6pSHJ5
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Read-only — managed by Twenty"
|
||||
msgstr "קריאה בלבד — מנוהל על ידי Twenty"
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Read-only"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: W+ApAD
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
@@ -11399,6 +11448,11 @@ msgstr "\\"
|
||||
msgid "Recent Events (oldest → newest)"
|
||||
msgstr "אירועים אחרונים (ישן → חדש)"
|
||||
|
||||
#. js-lingui-id: yPrbsy
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Recipients"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: b2+5uV
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
msgid "Recommended Models"
|
||||
@@ -11750,6 +11804,8 @@ msgid "Reorder options"
|
||||
msgstr "סדר אופציות מחדש"
|
||||
|
||||
#. js-lingui-id: ImOQa9
|
||||
#: src/modules/side-panel/hooks/useOpenComposeEmailInSidePanel.ts
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
#: src/modules/activities/emails/components/EmailThreadBottomBar.tsx
|
||||
msgid "Reply"
|
||||
msgstr "תגובה"
|
||||
@@ -11759,6 +11815,11 @@ msgstr "תגובה"
|
||||
msgid "Reply to all"
|
||||
msgstr "השב לכולם"
|
||||
|
||||
#. js-lingui-id: fiPYZo
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
msgid "Reply..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: tbmZmI
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "Report and issue"
|
||||
@@ -11784,6 +11845,7 @@ msgstr "שלח שוב את הדוא\"ל"
|
||||
#. js-lingui-id: OfhWJH
|
||||
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
|
||||
#: src/modules/views/components/ViewBarDetails.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
msgid "Reset"
|
||||
msgstr "איפוס"
|
||||
|
||||
@@ -11804,6 +11866,8 @@ msgid "Reset to"
|
||||
msgstr "\\"
|
||||
|
||||
#. js-lingui-id: L+rMC9
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
msgid "Reset to default"
|
||||
@@ -12698,6 +12762,13 @@ msgstr "בחרו אילו מודלים יופיעו כמומלצים בבורר
|
||||
msgid "Select your preferred language"
|
||||
msgstr "\\"
|
||||
|
||||
#. js-lingui-id: JlFcis
|
||||
#: src/modules/side-panel/pages/compose-email/components/SidePanelComposeEmailPage.tsx
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposer.tsx
|
||||
msgid "Send"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mjK8F3
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
msgid "Send an invite email to your team"
|
||||
@@ -13413,6 +13484,8 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: UJmAAK
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Subject"
|
||||
msgstr "נושא"
|
||||
|
||||
@@ -13653,11 +13726,6 @@ msgstr ""
|
||||
msgid "System Prompt"
|
||||
msgstr "הנחיית מערכת"
|
||||
|
||||
#. js-lingui-id: BXGTWI
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "System Prompt ({totalTokenCount})"
|
||||
msgstr "הנחיית מערכת ({totalTokenCount})"
|
||||
|
||||
#. js-lingui-id: k+7QWO
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
msgid "System relations"
|
||||
@@ -14144,6 +14212,11 @@ msgstr ""
|
||||
msgid "This week"
|
||||
msgstr "השבוע"
|
||||
|
||||
#. js-lingui-id: VbVocX
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
msgid "This will cancel all modifications done on the widget. This action cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: h4VeOo
|
||||
#: src/modules/settings/billing/hooks/useBillingWording.ts
|
||||
msgid "This will cancel the scheduled interval change and keep your current billing interval ({currentIntervalLabel})."
|
||||
@@ -14259,6 +14332,7 @@ msgstr "כותרת"
|
||||
|
||||
#. js-lingui-id: /jQctM
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "To"
|
||||
msgstr "אל"
|
||||
|
||||
@@ -14582,6 +14656,11 @@ msgstr "הקלד/י '/' עבור פקודות, '@' עבור אזכורים"
|
||||
msgid "Type anything..."
|
||||
msgstr "הקלד כל דבר..."
|
||||
|
||||
#. js-lingui-id: LaEX5I
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Type something or press \"/\" to see commands"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: UhqKcC
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Type to search records"
|
||||
@@ -14909,6 +14988,11 @@ msgstr "שדרגו כדי לגשת"
|
||||
msgid "Upgrade to Enterprise to access audit logs."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: D+7y/3
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Upgrade to Enterprise to share private applications."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +Gi3x1
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationVersionContainer.tsx
|
||||
@@ -15345,7 +15429,6 @@ msgstr "צפה ביומנים"
|
||||
|
||||
#. js-lingui-id: 7PrSCy
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "View marketplace page"
|
||||
msgstr "צפייה בדף המרקטפלייס"
|
||||
|
||||
@@ -15359,6 +15442,11 @@ msgstr ""
|
||||
msgid "View Previous AI Chats"
|
||||
msgstr "הצג שיחות AI קודמות"
|
||||
|
||||
#. js-lingui-id: NnJpTN
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "View private application page"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: hAAsm/
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowEditActionAiAgent.tsx
|
||||
msgid "View role"
|
||||
|
||||
@@ -456,11 +456,13 @@ msgstr "{workspaceMemberName} a következő szerepkörből lesz kivezetve:"
|
||||
msgid "••••••••"
|
||||
msgstr "••••••••"
|
||||
|
||||
#. js-lingui-id: tD9raa
|
||||
#. js-lingui-id: SMgdEJ
|
||||
#. placeholder {0}: formatNumber(preview.estimatedTokenCount, { abbreviate: true, decimals: 1, })
|
||||
#. placeholder {0}: formatNumber( section.estimatedTokenCount, { abbreviate: true, decimals: 1, }, )
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "~{0} tokens"
|
||||
msgstr "~{0} token"
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "~ {0} tokens"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Cx0xl3
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
|
||||
@@ -1707,6 +1709,7 @@ msgstr "Hiba történt a kép feltöltése közben."
|
||||
#: src/modules/views/hooks/internal/usePerformViewAPIPersist.ts
|
||||
#: src/modules/ui/feedback/snack-bar-manager/hooks/useSnackBar.ts
|
||||
#: src/modules/page-layout/hooks/useUpdatePageLayoutWithTabsAndWidgets.ts
|
||||
#: src/modules/page-layout/hooks/useResetPageLayoutWidgetToDefault.ts
|
||||
#: src/modules/object-metadata/hooks/useUpdateOneObjectMetadataItem.ts
|
||||
#: src/modules/object-metadata/hooks/useUpdateOneFieldMetadataItem.ts
|
||||
#: src/modules/object-metadata/hooks/useDeleteOneObjectMetadataItem.ts
|
||||
@@ -2418,6 +2421,12 @@ msgstr "Alap URL"
|
||||
msgid "Base URL is required"
|
||||
msgstr "Az alap URL megadása kötelező"
|
||||
|
||||
#. js-lingui-id: /xLNEx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Bcc"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: PFohi3
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
msgid "BCC"
|
||||
@@ -2721,9 +2730,11 @@ msgstr "Nem tud beolvasni? Másolja a"
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
#: src/modules/spreadsheet-import/provider/components/SpreadsheetImport.tsx
|
||||
#: src/modules/side-panel/pages/compose-email/components/SidePanelComposeEmailPage.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposer.tsx
|
||||
msgid "Cancel"
|
||||
msgstr "Mégse"
|
||||
|
||||
@@ -2763,6 +2774,11 @@ msgstr "Csomagváltás törlése"
|
||||
msgid "Cancel plan switching?"
|
||||
msgstr "Csomagváltás törlése?"
|
||||
|
||||
#. js-lingui-id: AnRu/j
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
msgid "Cancel reply"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: N6gPiD
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/settings/billing/components/SettingsBillingContent.tsx
|
||||
@@ -2831,11 +2847,22 @@ msgstr "Katalán"
|
||||
msgid "Category"
|
||||
msgstr "Kategória"
|
||||
|
||||
#. js-lingui-id: RpYfjZ
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Cc"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XdZeJk
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
msgid "CC"
|
||||
msgstr "Másolat"
|
||||
|
||||
#. js-lingui-id: Dgsw8A
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Cc/Bcc"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: tHntRt
|
||||
#: src/modules/page-layout/widgets/standalone-rich-text/components/DashboardEditorSideMenu.tsx
|
||||
#: src/modules/blocknote-editor/components/CustomSideMenu.tsx
|
||||
@@ -5350,6 +5377,11 @@ msgstr "Az e-mail-címnek érvényesnek kell lennie"
|
||||
msgid "Email or domain is already in blocklist"
|
||||
msgstr "Az email vagy domain már szerepel a tiltólistában"
|
||||
|
||||
#. js-lingui-id: Xl929X
|
||||
#: src/modules/activities/emails/hooks/useSendEmail.ts
|
||||
msgid "Email sent successfully"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: jvneza
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "Email support"
|
||||
@@ -6439,6 +6471,12 @@ msgstr ""
|
||||
msgid "Failed to save workspace instructions"
|
||||
msgstr "Nem sikerült menteni a munkaterületre vonatkozó utasításokat"
|
||||
|
||||
#. js-lingui-id: Lo/GQ5
|
||||
#: src/modules/activities/emails/hooks/useSendEmail.ts
|
||||
#: src/modules/activities/emails/hooks/useSendEmail.ts
|
||||
msgid "Failed to send email"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: aj02T8
|
||||
#: src/modules/settings/admin-panel/health-status/maintenance-mode/components/SettingsAdminMaintenanceMode.tsx
|
||||
msgid "Failed to set maintenance mode."
|
||||
@@ -6930,6 +6968,11 @@ msgstr "Az ingyenes próba kreditei elfogytak. Fizessen elő most, hogy tovább
|
||||
msgid "French"
|
||||
msgstr "Francia"
|
||||
|
||||
#. js-lingui-id: ejVYRQ
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "From"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: qR8gT9
|
||||
#: src/modules/workflow/workflow-trigger/utils/cron-to-human/descriptors/getDayOfWeekDescription.ts
|
||||
msgid "from {startDay} to {endDay}"
|
||||
@@ -9398,6 +9441,11 @@ msgstr "Új csevegés"
|
||||
msgid "New conversation"
|
||||
msgstr "Új beszélgetés"
|
||||
|
||||
#. js-lingui-id: 3RwJHq
|
||||
#: src/modules/side-panel/hooks/useOpenComposeEmailInSidePanel.ts
|
||||
msgid "New Email"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wqoYqp
|
||||
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
|
||||
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
|
||||
@@ -11374,10 +11422,11 @@ msgstr ""
|
||||
msgid "Read your profile"
|
||||
msgstr "Profiljának megtekintése"
|
||||
|
||||
#. js-lingui-id: tCXcL7
|
||||
#. js-lingui-id: 6pSHJ5
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Read-only — managed by Twenty"
|
||||
msgstr "Csak olvasható — a Twenty kezeli"
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Read-only"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: W+ApAD
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
@@ -11399,6 +11448,11 @@ msgstr "E-mail küldése a jelszó frissítési linkkel"
|
||||
msgid "Recent Events (oldest → newest)"
|
||||
msgstr "Legutóbbi események (legrégebbi → legújabb)"
|
||||
|
||||
#. js-lingui-id: yPrbsy
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Recipients"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: b2+5uV
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
msgid "Recommended Models"
|
||||
@@ -11750,6 +11804,8 @@ msgid "Reorder options"
|
||||
msgstr "Opciók átrendezése"
|
||||
|
||||
#. js-lingui-id: ImOQa9
|
||||
#: src/modules/side-panel/hooks/useOpenComposeEmailInSidePanel.ts
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
#: src/modules/activities/emails/components/EmailThreadBottomBar.tsx
|
||||
msgid "Reply"
|
||||
msgstr "Válasz"
|
||||
@@ -11759,6 +11815,11 @@ msgstr "Válasz"
|
||||
msgid "Reply to all"
|
||||
msgstr "Mindenkinek válaszol"
|
||||
|
||||
#. js-lingui-id: fiPYZo
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
msgid "Reply..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: tbmZmI
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "Report and issue"
|
||||
@@ -11784,6 +11845,7 @@ msgstr "E-mail újraküldése"
|
||||
#. js-lingui-id: OfhWJH
|
||||
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
|
||||
#: src/modules/views/components/ViewBarDetails.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
msgid "Reset"
|
||||
msgstr "Visszaállítás"
|
||||
|
||||
@@ -11804,6 +11866,8 @@ msgid "Reset to"
|
||||
msgstr "Visszaállítás"
|
||||
|
||||
#. js-lingui-id: L+rMC9
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
msgid "Reset to default"
|
||||
@@ -12698,6 +12762,13 @@ msgstr "Válassza ki, mely modellek jelenjenek meg ajánlottként a munkaterüle
|
||||
msgid "Select your preferred language"
|
||||
msgstr "Válassza ki a preferált nyelvet"
|
||||
|
||||
#. js-lingui-id: JlFcis
|
||||
#: src/modules/side-panel/pages/compose-email/components/SidePanelComposeEmailPage.tsx
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposer.tsx
|
||||
msgid "Send"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mjK8F3
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
msgid "Send an invite email to your team"
|
||||
@@ -13413,6 +13484,8 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: UJmAAK
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Subject"
|
||||
msgstr "Tárgy"
|
||||
|
||||
@@ -13653,11 +13726,6 @@ msgstr ""
|
||||
msgid "System Prompt"
|
||||
msgstr "Rendszer parancs"
|
||||
|
||||
#. js-lingui-id: BXGTWI
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "System Prompt ({totalTokenCount})"
|
||||
msgstr "Rendszerprompt ({totalTokenCount})"
|
||||
|
||||
#. js-lingui-id: k+7QWO
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
msgid "System relations"
|
||||
@@ -14144,6 +14212,11 @@ msgstr ""
|
||||
msgid "This week"
|
||||
msgstr "Ezen a héten"
|
||||
|
||||
#. js-lingui-id: VbVocX
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
msgid "This will cancel all modifications done on the widget. This action cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: h4VeOo
|
||||
#: src/modules/settings/billing/hooks/useBillingWording.ts
|
||||
msgid "This will cancel the scheduled interval change and keep your current billing interval ({currentIntervalLabel})."
|
||||
@@ -14259,6 +14332,7 @@ msgstr "cím"
|
||||
|
||||
#. js-lingui-id: /jQctM
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "To"
|
||||
msgstr "Címzett"
|
||||
|
||||
@@ -14582,6 +14656,11 @@ msgstr "Írja be a '/' jelet a parancsokhoz, az '@' jelet az említésekhez"
|
||||
msgid "Type anything..."
|
||||
msgstr "Írjon be bármit..."
|
||||
|
||||
#. js-lingui-id: LaEX5I
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Type something or press \"/\" to see commands"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: UhqKcC
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Type to search records"
|
||||
@@ -14909,6 +14988,11 @@ msgstr "Frissíts a hozzáféréshez"
|
||||
msgid "Upgrade to Enterprise to access audit logs."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: D+7y/3
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Upgrade to Enterprise to share private applications."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +Gi3x1
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationVersionContainer.tsx
|
||||
@@ -15345,7 +15429,6 @@ msgstr "Naplók megtekintése"
|
||||
|
||||
#. js-lingui-id: 7PrSCy
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "View marketplace page"
|
||||
msgstr "Piactéri oldal megtekintése"
|
||||
|
||||
@@ -15359,6 +15442,11 @@ msgstr ""
|
||||
msgid "View Previous AI Chats"
|
||||
msgstr "Előző AI csevegések megtekintése"
|
||||
|
||||
#. js-lingui-id: NnJpTN
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "View private application page"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: hAAsm/
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowEditActionAiAgent.tsx
|
||||
msgid "View role"
|
||||
|
||||
@@ -456,11 +456,13 @@ msgstr "{workspaceMemberName} verrà rimosso dal seguente ruolo:"
|
||||
msgid "••••••••"
|
||||
msgstr "••••••••"
|
||||
|
||||
#. js-lingui-id: tD9raa
|
||||
#. js-lingui-id: SMgdEJ
|
||||
#. placeholder {0}: formatNumber(preview.estimatedTokenCount, { abbreviate: true, decimals: 1, })
|
||||
#. placeholder {0}: formatNumber( section.estimatedTokenCount, { abbreviate: true, decimals: 1, }, )
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "~{0} tokens"
|
||||
msgstr "~{0} token"
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "~ {0} tokens"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Cx0xl3
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
|
||||
@@ -1707,6 +1709,7 @@ msgstr "Si è verificato un errore durante il caricamento dell'immagine."
|
||||
#: src/modules/views/hooks/internal/usePerformViewAPIPersist.ts
|
||||
#: src/modules/ui/feedback/snack-bar-manager/hooks/useSnackBar.ts
|
||||
#: src/modules/page-layout/hooks/useUpdatePageLayoutWithTabsAndWidgets.ts
|
||||
#: src/modules/page-layout/hooks/useResetPageLayoutWidgetToDefault.ts
|
||||
#: src/modules/object-metadata/hooks/useUpdateOneObjectMetadataItem.ts
|
||||
#: src/modules/object-metadata/hooks/useUpdateOneFieldMetadataItem.ts
|
||||
#: src/modules/object-metadata/hooks/useDeleteOneObjectMetadataItem.ts
|
||||
@@ -2418,6 +2421,12 @@ msgstr "URL di base"
|
||||
msgid "Base URL is required"
|
||||
msgstr "L'URL di base è obbligatorio"
|
||||
|
||||
#. js-lingui-id: /xLNEx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Bcc"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: PFohi3
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
msgid "BCC"
|
||||
@@ -2721,9 +2730,11 @@ msgstr "Non puoi scansionare? Copia il"
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
#: src/modules/spreadsheet-import/provider/components/SpreadsheetImport.tsx
|
||||
#: src/modules/side-panel/pages/compose-email/components/SidePanelComposeEmailPage.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposer.tsx
|
||||
msgid "Cancel"
|
||||
msgstr "Annulla"
|
||||
|
||||
@@ -2763,6 +2774,11 @@ msgstr "Annulla il cambio di piano"
|
||||
msgid "Cancel plan switching?"
|
||||
msgstr "Annulla il cambio di piano?"
|
||||
|
||||
#. js-lingui-id: AnRu/j
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
msgid "Cancel reply"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: N6gPiD
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/settings/billing/components/SettingsBillingContent.tsx
|
||||
@@ -2831,11 +2847,22 @@ msgstr "Catalano"
|
||||
msgid "Category"
|
||||
msgstr "Categoria"
|
||||
|
||||
#. js-lingui-id: RpYfjZ
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Cc"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XdZeJk
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
msgid "CC"
|
||||
msgstr "CC"
|
||||
|
||||
#. js-lingui-id: Dgsw8A
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Cc/Bcc"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: tHntRt
|
||||
#: src/modules/page-layout/widgets/standalone-rich-text/components/DashboardEditorSideMenu.tsx
|
||||
#: src/modules/blocknote-editor/components/CustomSideMenu.tsx
|
||||
@@ -5350,6 +5377,11 @@ msgstr "L'indirizzo email deve essere valido"
|
||||
msgid "Email or domain is already in blocklist"
|
||||
msgstr "L'e-mail o il dominio è già presente nella lista di blocco"
|
||||
|
||||
#. js-lingui-id: Xl929X
|
||||
#: src/modules/activities/emails/hooks/useSendEmail.ts
|
||||
msgid "Email sent successfully"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: jvneza
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "Email support"
|
||||
@@ -6439,6 +6471,12 @@ msgstr ""
|
||||
msgid "Failed to save workspace instructions"
|
||||
msgstr "Impossibile salvare le istruzioni dello spazio di lavoro"
|
||||
|
||||
#. js-lingui-id: Lo/GQ5
|
||||
#: src/modules/activities/emails/hooks/useSendEmail.ts
|
||||
#: src/modules/activities/emails/hooks/useSendEmail.ts
|
||||
msgid "Failed to send email"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: aj02T8
|
||||
#: src/modules/settings/admin-panel/health-status/maintenance-mode/components/SettingsAdminMaintenanceMode.tsx
|
||||
msgid "Failed to set maintenance mode."
|
||||
@@ -6930,6 +6968,11 @@ msgstr "Crediti della prova gratuita esauriti. Abbonati ora per continuare a usa
|
||||
msgid "French"
|
||||
msgstr "Francese"
|
||||
|
||||
#. js-lingui-id: ejVYRQ
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "From"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: qR8gT9
|
||||
#: src/modules/workflow/workflow-trigger/utils/cron-to-human/descriptors/getDayOfWeekDescription.ts
|
||||
msgid "from {startDay} to {endDay}"
|
||||
@@ -9398,6 +9441,11 @@ msgstr "Nuova chat"
|
||||
msgid "New conversation"
|
||||
msgstr "Nuova conversazione"
|
||||
|
||||
#. js-lingui-id: 3RwJHq
|
||||
#: src/modules/side-panel/hooks/useOpenComposeEmailInSidePanel.ts
|
||||
msgid "New Email"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wqoYqp
|
||||
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
|
||||
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
|
||||
@@ -11374,10 +11422,11 @@ msgstr ""
|
||||
msgid "Read your profile"
|
||||
msgstr "Leggere il tuo profilo"
|
||||
|
||||
#. js-lingui-id: tCXcL7
|
||||
#. js-lingui-id: 6pSHJ5
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Read-only — managed by Twenty"
|
||||
msgstr "Sola lettura — gestito da Twenty"
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Read-only"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: W+ApAD
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
@@ -11399,6 +11448,11 @@ msgstr "Ricevi un'e-mail contenente il link per l'aggiornamento della password"
|
||||
msgid "Recent Events (oldest → newest)"
|
||||
msgstr "Eventi recenti (più vecchio → più nuovo)"
|
||||
|
||||
#. js-lingui-id: yPrbsy
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Recipients"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: b2+5uV
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
msgid "Recommended Models"
|
||||
@@ -11750,6 +11804,8 @@ msgid "Reorder options"
|
||||
msgstr "Riordina opzioni"
|
||||
|
||||
#. js-lingui-id: ImOQa9
|
||||
#: src/modules/side-panel/hooks/useOpenComposeEmailInSidePanel.ts
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
#: src/modules/activities/emails/components/EmailThreadBottomBar.tsx
|
||||
msgid "Reply"
|
||||
msgstr "Rispondi"
|
||||
@@ -11759,6 +11815,11 @@ msgstr "Rispondi"
|
||||
msgid "Reply to all"
|
||||
msgstr "Rispondi a tutti"
|
||||
|
||||
#. js-lingui-id: fiPYZo
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
msgid "Reply..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: tbmZmI
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "Report and issue"
|
||||
@@ -11784,6 +11845,7 @@ msgstr "Rinvia email"
|
||||
#. js-lingui-id: OfhWJH
|
||||
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
|
||||
#: src/modules/views/components/ViewBarDetails.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
msgid "Reset"
|
||||
msgstr "Reimposta"
|
||||
|
||||
@@ -11804,6 +11866,8 @@ msgid "Reset to"
|
||||
msgstr "Reimposta a"
|
||||
|
||||
#. js-lingui-id: L+rMC9
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
msgid "Reset to default"
|
||||
@@ -12698,6 +12762,13 @@ msgstr "Seleziona quali modelli compaiono come consigliati nel selettore di mode
|
||||
msgid "Select your preferred language"
|
||||
msgstr "Seleziona la lingua preferita"
|
||||
|
||||
#. js-lingui-id: JlFcis
|
||||
#: src/modules/side-panel/pages/compose-email/components/SidePanelComposeEmailPage.tsx
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposer.tsx
|
||||
msgid "Send"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mjK8F3
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
msgid "Send an invite email to your team"
|
||||
@@ -13413,6 +13484,8 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: UJmAAK
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Subject"
|
||||
msgstr "Oggetto"
|
||||
|
||||
@@ -13653,11 +13726,6 @@ msgstr ""
|
||||
msgid "System Prompt"
|
||||
msgstr "Prompt di Sistema"
|
||||
|
||||
#. js-lingui-id: BXGTWI
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "System Prompt ({totalTokenCount})"
|
||||
msgstr "Prompt di sistema ({totalTokenCount})"
|
||||
|
||||
#. js-lingui-id: k+7QWO
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
msgid "System relations"
|
||||
@@ -14146,6 +14214,11 @@ msgstr ""
|
||||
msgid "This week"
|
||||
msgstr "Questa settimana"
|
||||
|
||||
#. js-lingui-id: VbVocX
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
msgid "This will cancel all modifications done on the widget. This action cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: h4VeOo
|
||||
#: src/modules/settings/billing/hooks/useBillingWording.ts
|
||||
msgid "This will cancel the scheduled interval change and keep your current billing interval ({currentIntervalLabel})."
|
||||
@@ -14261,6 +14334,7 @@ msgstr "titolo"
|
||||
|
||||
#. js-lingui-id: /jQctM
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "To"
|
||||
msgstr "A"
|
||||
|
||||
@@ -14584,6 +14658,11 @@ msgstr "Digita '/' per i comandi, '@' per le menzioni"
|
||||
msgid "Type anything..."
|
||||
msgstr "Digita qualsiasi cosa..."
|
||||
|
||||
#. js-lingui-id: LaEX5I
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Type something or press \"/\" to see commands"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: UhqKcC
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Type to search records"
|
||||
@@ -14911,6 +14990,11 @@ msgstr "Esegui l'upgrade per accedere"
|
||||
msgid "Upgrade to Enterprise to access audit logs."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: D+7y/3
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Upgrade to Enterprise to share private applications."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +Gi3x1
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationVersionContainer.tsx
|
||||
@@ -15347,7 +15431,6 @@ msgstr "Visualizza log"
|
||||
|
||||
#. js-lingui-id: 7PrSCy
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "View marketplace page"
|
||||
msgstr "Visualizza la pagina del marketplace"
|
||||
|
||||
@@ -15361,6 +15444,11 @@ msgstr ""
|
||||
msgid "View Previous AI Chats"
|
||||
msgstr "Vedi chat AI precedenti"
|
||||
|
||||
#. js-lingui-id: NnJpTN
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "View private application page"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: hAAsm/
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowEditActionAiAgent.tsx
|
||||
msgid "View role"
|
||||
|
||||
@@ -456,11 +456,13 @@ msgstr "{workspaceMemberName}が次の役割から割り当て解除されます
|
||||
msgid "••••••••"
|
||||
msgstr "••••••••"
|
||||
|
||||
#. js-lingui-id: tD9raa
|
||||
#. js-lingui-id: SMgdEJ
|
||||
#. placeholder {0}: formatNumber(preview.estimatedTokenCount, { abbreviate: true, decimals: 1, })
|
||||
#. placeholder {0}: formatNumber( section.estimatedTokenCount, { abbreviate: true, decimals: 1, }, )
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "~{0} tokens"
|
||||
msgstr "~{0} トークン"
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "~ {0} tokens"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Cx0xl3
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
|
||||
@@ -1707,6 +1709,7 @@ msgstr "画像のアップロード中にエラーが発生しました。"
|
||||
#: src/modules/views/hooks/internal/usePerformViewAPIPersist.ts
|
||||
#: src/modules/ui/feedback/snack-bar-manager/hooks/useSnackBar.ts
|
||||
#: src/modules/page-layout/hooks/useUpdatePageLayoutWithTabsAndWidgets.ts
|
||||
#: src/modules/page-layout/hooks/useResetPageLayoutWidgetToDefault.ts
|
||||
#: src/modules/object-metadata/hooks/useUpdateOneObjectMetadataItem.ts
|
||||
#: src/modules/object-metadata/hooks/useUpdateOneFieldMetadataItem.ts
|
||||
#: src/modules/object-metadata/hooks/useDeleteOneObjectMetadataItem.ts
|
||||
@@ -2418,6 +2421,12 @@ msgstr "ベース URL"
|
||||
msgid "Base URL is required"
|
||||
msgstr "ベース URL は必須です"
|
||||
|
||||
#. js-lingui-id: /xLNEx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Bcc"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: PFohi3
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
msgid "BCC"
|
||||
@@ -2721,9 +2730,11 @@ msgstr "スキャンできませんか? コピーしてください"
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
#: src/modules/spreadsheet-import/provider/components/SpreadsheetImport.tsx
|
||||
#: src/modules/side-panel/pages/compose-email/components/SidePanelComposeEmailPage.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposer.tsx
|
||||
msgid "Cancel"
|
||||
msgstr "キャンセル"
|
||||
|
||||
@@ -2763,6 +2774,11 @@ msgstr "プラン切替をキャンセル"
|
||||
msgid "Cancel plan switching?"
|
||||
msgstr "プラン切替をキャンセルしますか?"
|
||||
|
||||
#. js-lingui-id: AnRu/j
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
msgid "Cancel reply"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: N6gPiD
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/settings/billing/components/SettingsBillingContent.tsx
|
||||
@@ -2831,11 +2847,22 @@ msgstr "カタルーニャ語"
|
||||
msgid "Category"
|
||||
msgstr "カテゴリ"
|
||||
|
||||
#. js-lingui-id: RpYfjZ
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Cc"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XdZeJk
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
msgid "CC"
|
||||
msgstr "CC"
|
||||
|
||||
#. js-lingui-id: Dgsw8A
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Cc/Bcc"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: tHntRt
|
||||
#: src/modules/page-layout/widgets/standalone-rich-text/components/DashboardEditorSideMenu.tsx
|
||||
#: src/modules/blocknote-editor/components/CustomSideMenu.tsx
|
||||
@@ -5350,6 +5377,11 @@ msgstr "有効なメールアドレスを入力してください"
|
||||
msgid "Email or domain is already in blocklist"
|
||||
msgstr "メールまたはドメインはすでにブロックリストに登録されています"
|
||||
|
||||
#. js-lingui-id: Xl929X
|
||||
#: src/modules/activities/emails/hooks/useSendEmail.ts
|
||||
msgid "Email sent successfully"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: jvneza
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "Email support"
|
||||
@@ -6439,6 +6471,12 @@ msgstr ""
|
||||
msgid "Failed to save workspace instructions"
|
||||
msgstr "ワークスペースの指示を保存できませんでした"
|
||||
|
||||
#. js-lingui-id: Lo/GQ5
|
||||
#: src/modules/activities/emails/hooks/useSendEmail.ts
|
||||
#: src/modules/activities/emails/hooks/useSendEmail.ts
|
||||
msgid "Failed to send email"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: aj02T8
|
||||
#: src/modules/settings/admin-panel/health-status/maintenance-mode/components/SettingsAdminMaintenanceMode.tsx
|
||||
msgid "Failed to set maintenance mode."
|
||||
@@ -6930,6 +6968,11 @@ msgstr "無料トライアルのクレジットを使い切りました。AI 機
|
||||
msgid "French"
|
||||
msgstr "フランス語"
|
||||
|
||||
#. js-lingui-id: ejVYRQ
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "From"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: qR8gT9
|
||||
#: src/modules/workflow/workflow-trigger/utils/cron-to-human/descriptors/getDayOfWeekDescription.ts
|
||||
msgid "from {startDay} to {endDay}"
|
||||
@@ -9398,6 +9441,11 @@ msgstr "新しいチャット"
|
||||
msgid "New conversation"
|
||||
msgstr "新しい会話"
|
||||
|
||||
#. js-lingui-id: 3RwJHq
|
||||
#: src/modules/side-panel/hooks/useOpenComposeEmailInSidePanel.ts
|
||||
msgid "New Email"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wqoYqp
|
||||
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
|
||||
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
|
||||
@@ -11374,10 +11422,11 @@ msgstr ""
|
||||
msgid "Read your profile"
|
||||
msgstr "プロフィールを読み取る"
|
||||
|
||||
#. js-lingui-id: tCXcL7
|
||||
#. js-lingui-id: 6pSHJ5
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Read-only — managed by Twenty"
|
||||
msgstr "読み取り専用 — Twenty によって管理されています"
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Read-only"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: W+ApAD
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
@@ -11399,6 +11448,11 @@ msgstr "パスワード更新リンクを含むメールを受け取る"
|
||||
msgid "Recent Events (oldest → newest)"
|
||||
msgstr "最近のイベント(古い順 → 新しい順)"
|
||||
|
||||
#. js-lingui-id: yPrbsy
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Recipients"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: b2+5uV
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
msgid "Recommended Models"
|
||||
@@ -11750,6 +11804,8 @@ msgid "Reorder options"
|
||||
msgstr "オプションを並べ替え"
|
||||
|
||||
#. js-lingui-id: ImOQa9
|
||||
#: src/modules/side-panel/hooks/useOpenComposeEmailInSidePanel.ts
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
#: src/modules/activities/emails/components/EmailThreadBottomBar.tsx
|
||||
msgid "Reply"
|
||||
msgstr "返信"
|
||||
@@ -11759,6 +11815,11 @@ msgstr "返信"
|
||||
msgid "Reply to all"
|
||||
msgstr "全員に返信"
|
||||
|
||||
#. js-lingui-id: fiPYZo
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
msgid "Reply..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: tbmZmI
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "Report and issue"
|
||||
@@ -11784,6 +11845,7 @@ msgstr "メールを再送信"
|
||||
#. js-lingui-id: OfhWJH
|
||||
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
|
||||
#: src/modules/views/components/ViewBarDetails.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
msgid "Reset"
|
||||
msgstr "リセット"
|
||||
|
||||
@@ -11804,6 +11866,8 @@ msgid "Reset to"
|
||||
msgstr "リセット"
|
||||
|
||||
#. js-lingui-id: L+rMC9
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
msgid "Reset to default"
|
||||
@@ -12698,6 +12762,13 @@ msgstr "ワークスペースのモデルピッカーで推奨として表示す
|
||||
msgid "Select your preferred language"
|
||||
msgstr "希望の言語を選択してください"
|
||||
|
||||
#. js-lingui-id: JlFcis
|
||||
#: src/modules/side-panel/pages/compose-email/components/SidePanelComposeEmailPage.tsx
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposer.tsx
|
||||
msgid "Send"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mjK8F3
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
msgid "Send an invite email to your team"
|
||||
@@ -13413,6 +13484,8 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: UJmAAK
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Subject"
|
||||
msgstr "件名"
|
||||
|
||||
@@ -13653,11 +13726,6 @@ msgstr ""
|
||||
msgid "System Prompt"
|
||||
msgstr "システムプロンプト"
|
||||
|
||||
#. js-lingui-id: BXGTWI
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "System Prompt ({totalTokenCount})"
|
||||
msgstr "システムプロンプト({totalTokenCount})"
|
||||
|
||||
#. js-lingui-id: k+7QWO
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
msgid "System relations"
|
||||
@@ -14144,6 +14212,11 @@ msgstr ""
|
||||
msgid "This week"
|
||||
msgstr "今週"
|
||||
|
||||
#. js-lingui-id: VbVocX
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
msgid "This will cancel all modifications done on the widget. This action cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: h4VeOo
|
||||
#: src/modules/settings/billing/hooks/useBillingWording.ts
|
||||
msgid "This will cancel the scheduled interval change and keep your current billing interval ({currentIntervalLabel})."
|
||||
@@ -14259,6 +14332,7 @@ msgstr "タイトル"
|
||||
|
||||
#. js-lingui-id: /jQctM
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "To"
|
||||
msgstr "宛先"
|
||||
|
||||
@@ -14582,6 +14656,11 @@ msgstr "コマンドは'/'、メンションは'@'を入力してください"
|
||||
msgid "Type anything..."
|
||||
msgstr "何でも入力..."
|
||||
|
||||
#. js-lingui-id: LaEX5I
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Type something or press \"/\" to see commands"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: UhqKcC
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Type to search records"
|
||||
@@ -14909,6 +14988,11 @@ msgstr "アクセスするにはアップグレードしてください"
|
||||
msgid "Upgrade to Enterprise to access audit logs."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: D+7y/3
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Upgrade to Enterprise to share private applications."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +Gi3x1
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationVersionContainer.tsx
|
||||
@@ -15345,7 +15429,6 @@ msgstr "ログを表示"
|
||||
|
||||
#. js-lingui-id: 7PrSCy
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "View marketplace page"
|
||||
msgstr "マーケットプレイスのページを表示"
|
||||
|
||||
@@ -15359,6 +15442,11 @@ msgstr ""
|
||||
msgid "View Previous AI Chats"
|
||||
msgstr "以前のAIチャットを見る"
|
||||
|
||||
#. js-lingui-id: NnJpTN
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "View private application page"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: hAAsm/
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowEditActionAiAgent.tsx
|
||||
msgid "View role"
|
||||
|
||||
@@ -456,11 +456,13 @@ msgstr "{workspaceMemberName}님이 다음 역할에서 재할당 해제됩니
|
||||
msgid "••••••••"
|
||||
msgstr "••••••••"
|
||||
|
||||
#. js-lingui-id: tD9raa
|
||||
#. js-lingui-id: SMgdEJ
|
||||
#. placeholder {0}: formatNumber(preview.estimatedTokenCount, { abbreviate: true, decimals: 1, })
|
||||
#. placeholder {0}: formatNumber( section.estimatedTokenCount, { abbreviate: true, decimals: 1, }, )
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "~{0} tokens"
|
||||
msgstr "~{0} 토큰"
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "~ {0} tokens"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Cx0xl3
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
|
||||
@@ -1707,6 +1709,7 @@ msgstr "사진을 업로드하는 중 오류가 발생했습니다."
|
||||
#: src/modules/views/hooks/internal/usePerformViewAPIPersist.ts
|
||||
#: src/modules/ui/feedback/snack-bar-manager/hooks/useSnackBar.ts
|
||||
#: src/modules/page-layout/hooks/useUpdatePageLayoutWithTabsAndWidgets.ts
|
||||
#: src/modules/page-layout/hooks/useResetPageLayoutWidgetToDefault.ts
|
||||
#: src/modules/object-metadata/hooks/useUpdateOneObjectMetadataItem.ts
|
||||
#: src/modules/object-metadata/hooks/useUpdateOneFieldMetadataItem.ts
|
||||
#: src/modules/object-metadata/hooks/useDeleteOneObjectMetadataItem.ts
|
||||
@@ -2418,6 +2421,12 @@ msgstr "기본 URL"
|
||||
msgid "Base URL is required"
|
||||
msgstr "기본 URL이 필요합니다"
|
||||
|
||||
#. js-lingui-id: /xLNEx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Bcc"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: PFohi3
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
msgid "BCC"
|
||||
@@ -2721,9 +2730,11 @@ msgstr "스캔이 불가능합니까?"
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
#: src/modules/spreadsheet-import/provider/components/SpreadsheetImport.tsx
|
||||
#: src/modules/side-panel/pages/compose-email/components/SidePanelComposeEmailPage.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposer.tsx
|
||||
msgid "Cancel"
|
||||
msgstr "취소"
|
||||
|
||||
@@ -2763,6 +2774,11 @@ msgstr "플랜 전환 취소"
|
||||
msgid "Cancel plan switching?"
|
||||
msgstr "플랜 전환을 취소하시겠습니까?"
|
||||
|
||||
#. js-lingui-id: AnRu/j
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
msgid "Cancel reply"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: N6gPiD
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/settings/billing/components/SettingsBillingContent.tsx
|
||||
@@ -2831,11 +2847,22 @@ msgstr "카탈로니아어"
|
||||
msgid "Category"
|
||||
msgstr "카테고리"
|
||||
|
||||
#. js-lingui-id: RpYfjZ
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Cc"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XdZeJk
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
msgid "CC"
|
||||
msgstr "CC"
|
||||
|
||||
#. js-lingui-id: Dgsw8A
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Cc/Bcc"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: tHntRt
|
||||
#: src/modules/page-layout/widgets/standalone-rich-text/components/DashboardEditorSideMenu.tsx
|
||||
#: src/modules/blocknote-editor/components/CustomSideMenu.tsx
|
||||
@@ -5350,6 +5377,11 @@ msgstr "유효한 이메일이어야 합니다"
|
||||
msgid "Email or domain is already in blocklist"
|
||||
msgstr "이메일 또는 도메인이 이미 차단 목록에 있습니다"
|
||||
|
||||
#. js-lingui-id: Xl929X
|
||||
#: src/modules/activities/emails/hooks/useSendEmail.ts
|
||||
msgid "Email sent successfully"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: jvneza
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "Email support"
|
||||
@@ -6439,6 +6471,12 @@ msgstr ""
|
||||
msgid "Failed to save workspace instructions"
|
||||
msgstr "워크스페이스 지침을 저장하지 못했습니다"
|
||||
|
||||
#. js-lingui-id: Lo/GQ5
|
||||
#: src/modules/activities/emails/hooks/useSendEmail.ts
|
||||
#: src/modules/activities/emails/hooks/useSendEmail.ts
|
||||
msgid "Failed to send email"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: aj02T8
|
||||
#: src/modules/settings/admin-panel/health-status/maintenance-mode/components/SettingsAdminMaintenanceMode.tsx
|
||||
msgid "Failed to set maintenance mode."
|
||||
@@ -6930,6 +6968,11 @@ msgstr "무료 체험 크레딧이 소진되었습니다. AI 기능을 계속
|
||||
msgid "French"
|
||||
msgstr "프랑스어"
|
||||
|
||||
#. js-lingui-id: ejVYRQ
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "From"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: qR8gT9
|
||||
#: src/modules/workflow/workflow-trigger/utils/cron-to-human/descriptors/getDayOfWeekDescription.ts
|
||||
msgid "from {startDay} to {endDay}"
|
||||
@@ -9398,6 +9441,11 @@ msgstr "새 채팅"
|
||||
msgid "New conversation"
|
||||
msgstr "새 대화"
|
||||
|
||||
#. js-lingui-id: 3RwJHq
|
||||
#: src/modules/side-panel/hooks/useOpenComposeEmailInSidePanel.ts
|
||||
msgid "New Email"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wqoYqp
|
||||
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
|
||||
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
|
||||
@@ -11374,10 +11422,11 @@ msgstr ""
|
||||
msgid "Read your profile"
|
||||
msgstr "내 프로필 읽기"
|
||||
|
||||
#. js-lingui-id: tCXcL7
|
||||
#. js-lingui-id: 6pSHJ5
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Read-only — managed by Twenty"
|
||||
msgstr "읽기 전용 — Twenty에서 관리됨"
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Read-only"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: W+ApAD
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
@@ -11399,6 +11448,11 @@ msgstr "비밀번호 업데이트 링크가 포함된 이메일 받기"
|
||||
msgid "Recent Events (oldest → newest)"
|
||||
msgstr "최근 이벤트 (오래된 순 → 최신 순)"
|
||||
|
||||
#. js-lingui-id: yPrbsy
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Recipients"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: b2+5uV
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
msgid "Recommended Models"
|
||||
@@ -11750,6 +11804,8 @@ msgid "Reorder options"
|
||||
msgstr "옵션 재정렬"
|
||||
|
||||
#. js-lingui-id: ImOQa9
|
||||
#: src/modules/side-panel/hooks/useOpenComposeEmailInSidePanel.ts
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
#: src/modules/activities/emails/components/EmailThreadBottomBar.tsx
|
||||
msgid "Reply"
|
||||
msgstr "답장"
|
||||
@@ -11759,6 +11815,11 @@ msgstr "답장"
|
||||
msgid "Reply to all"
|
||||
msgstr "모두에게 답장"
|
||||
|
||||
#. js-lingui-id: fiPYZo
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
msgid "Reply..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: tbmZmI
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "Report and issue"
|
||||
@@ -11784,6 +11845,7 @@ msgstr "이메일 다시 보내기"
|
||||
#. js-lingui-id: OfhWJH
|
||||
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
|
||||
#: src/modules/views/components/ViewBarDetails.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
msgid "Reset"
|
||||
msgstr "초기화"
|
||||
|
||||
@@ -11804,6 +11866,8 @@ msgid "Reset to"
|
||||
msgstr "다음으로 재설정"
|
||||
|
||||
#. js-lingui-id: L+rMC9
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
msgid "Reset to default"
|
||||
@@ -12698,6 +12762,13 @@ msgstr "워크스페이스 모델 선택기에서 권장으로 표시할 모델
|
||||
msgid "Select your preferred language"
|
||||
msgstr "선호하는 언어 선택"
|
||||
|
||||
#. js-lingui-id: JlFcis
|
||||
#: src/modules/side-panel/pages/compose-email/components/SidePanelComposeEmailPage.tsx
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposer.tsx
|
||||
msgid "Send"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mjK8F3
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
msgid "Send an invite email to your team"
|
||||
@@ -13413,6 +13484,8 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: UJmAAK
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Subject"
|
||||
msgstr "제목"
|
||||
|
||||
@@ -13653,11 +13726,6 @@ msgstr ""
|
||||
msgid "System Prompt"
|
||||
msgstr "시스템 프롬프트"
|
||||
|
||||
#. js-lingui-id: BXGTWI
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "System Prompt ({totalTokenCount})"
|
||||
msgstr "시스템 프롬프트 ({totalTokenCount})"
|
||||
|
||||
#. js-lingui-id: k+7QWO
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
msgid "System relations"
|
||||
@@ -14144,6 +14212,11 @@ msgstr ""
|
||||
msgid "This week"
|
||||
msgstr "이번 주"
|
||||
|
||||
#. js-lingui-id: VbVocX
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
msgid "This will cancel all modifications done on the widget. This action cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: h4VeOo
|
||||
#: src/modules/settings/billing/hooks/useBillingWording.ts
|
||||
msgid "This will cancel the scheduled interval change and keep your current billing interval ({currentIntervalLabel})."
|
||||
@@ -14259,6 +14332,7 @@ msgstr "제목"
|
||||
|
||||
#. js-lingui-id: /jQctM
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "To"
|
||||
msgstr "받는 사람"
|
||||
|
||||
@@ -14582,6 +14656,11 @@ msgstr "명령어는 '/'를, 멘션은 '@'를 입력하세요"
|
||||
msgid "Type anything..."
|
||||
msgstr "아무거나 입력하세요..."
|
||||
|
||||
#. js-lingui-id: LaEX5I
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Type something or press \"/\" to see commands"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: UhqKcC
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Type to search records"
|
||||
@@ -14909,6 +14988,11 @@ msgstr "접근하려면 업그레이드하세요."
|
||||
msgid "Upgrade to Enterprise to access audit logs."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: D+7y/3
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Upgrade to Enterprise to share private applications."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +Gi3x1
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationVersionContainer.tsx
|
||||
@@ -15345,7 +15429,6 @@ msgstr "로그 보기"
|
||||
|
||||
#. js-lingui-id: 7PrSCy
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "View marketplace page"
|
||||
msgstr "마켓플레이스 페이지 보기"
|
||||
|
||||
@@ -15359,6 +15442,11 @@ msgstr ""
|
||||
msgid "View Previous AI Chats"
|
||||
msgstr "이전 AI 채팅 보기"
|
||||
|
||||
#. js-lingui-id: NnJpTN
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "View private application page"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: hAAsm/
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowEditActionAiAgent.tsx
|
||||
msgid "View role"
|
||||
|
||||
@@ -456,11 +456,13 @@ msgstr "{workspaceMemberName} zal ontheven worden van de volgende rol:"
|
||||
msgid "••••••••"
|
||||
msgstr "••••••••"
|
||||
|
||||
#. js-lingui-id: tD9raa
|
||||
#. js-lingui-id: SMgdEJ
|
||||
#. placeholder {0}: formatNumber(preview.estimatedTokenCount, { abbreviate: true, decimals: 1, })
|
||||
#. placeholder {0}: formatNumber( section.estimatedTokenCount, { abbreviate: true, decimals: 1, }, )
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "~{0} tokens"
|
||||
msgstr "~{0} tokens"
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "~ {0} tokens"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Cx0xl3
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
|
||||
@@ -1707,6 +1709,7 @@ msgstr "Er is een fout opgetreden bij het uploaden van de afbeelding."
|
||||
#: src/modules/views/hooks/internal/usePerformViewAPIPersist.ts
|
||||
#: src/modules/ui/feedback/snack-bar-manager/hooks/useSnackBar.ts
|
||||
#: src/modules/page-layout/hooks/useUpdatePageLayoutWithTabsAndWidgets.ts
|
||||
#: src/modules/page-layout/hooks/useResetPageLayoutWidgetToDefault.ts
|
||||
#: src/modules/object-metadata/hooks/useUpdateOneObjectMetadataItem.ts
|
||||
#: src/modules/object-metadata/hooks/useUpdateOneFieldMetadataItem.ts
|
||||
#: src/modules/object-metadata/hooks/useDeleteOneObjectMetadataItem.ts
|
||||
@@ -2418,6 +2421,12 @@ msgstr "Basis-URL"
|
||||
msgid "Base URL is required"
|
||||
msgstr "Basis-URL is vereist"
|
||||
|
||||
#. js-lingui-id: /xLNEx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Bcc"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: PFohi3
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
msgid "BCC"
|
||||
@@ -2721,9 +2730,11 @@ msgstr "Kan je niet scannen? Kopieer de"
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
#: src/modules/spreadsheet-import/provider/components/SpreadsheetImport.tsx
|
||||
#: src/modules/side-panel/pages/compose-email/components/SidePanelComposeEmailPage.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposer.tsx
|
||||
msgid "Cancel"
|
||||
msgstr "Annuleren"
|
||||
|
||||
@@ -2763,6 +2774,11 @@ msgstr "Annuleer planwisseling"
|
||||
msgid "Cancel plan switching?"
|
||||
msgstr "Planwisseling annuleren?"
|
||||
|
||||
#. js-lingui-id: AnRu/j
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
msgid "Cancel reply"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: N6gPiD
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/settings/billing/components/SettingsBillingContent.tsx
|
||||
@@ -2831,11 +2847,22 @@ msgstr "Catalaans"
|
||||
msgid "Category"
|
||||
msgstr "Categorie"
|
||||
|
||||
#. js-lingui-id: RpYfjZ
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Cc"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XdZeJk
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
msgid "CC"
|
||||
msgstr "CC"
|
||||
|
||||
#. js-lingui-id: Dgsw8A
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Cc/Bcc"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: tHntRt
|
||||
#: src/modules/page-layout/widgets/standalone-rich-text/components/DashboardEditorSideMenu.tsx
|
||||
#: src/modules/blocknote-editor/components/CustomSideMenu.tsx
|
||||
@@ -5350,6 +5377,11 @@ msgstr "E-mailadres moet geldig zijn"
|
||||
msgid "Email or domain is already in blocklist"
|
||||
msgstr "E-mail of domein staat al in de blokkeerlijst"
|
||||
|
||||
#. js-lingui-id: Xl929X
|
||||
#: src/modules/activities/emails/hooks/useSendEmail.ts
|
||||
msgid "Email sent successfully"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: jvneza
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "Email support"
|
||||
@@ -6439,6 +6471,12 @@ msgstr ""
|
||||
msgid "Failed to save workspace instructions"
|
||||
msgstr "Het opslaan van werkruimte-instructies is mislukt"
|
||||
|
||||
#. js-lingui-id: Lo/GQ5
|
||||
#: src/modules/activities/emails/hooks/useSendEmail.ts
|
||||
#: src/modules/activities/emails/hooks/useSendEmail.ts
|
||||
msgid "Failed to send email"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: aj02T8
|
||||
#: src/modules/settings/admin-panel/health-status/maintenance-mode/components/SettingsAdminMaintenanceMode.tsx
|
||||
msgid "Failed to set maintenance mode."
|
||||
@@ -6930,6 +6968,11 @@ msgstr "Gratis proefcredits verbruikt. Abonneer je nu om AI-functies te blijven
|
||||
msgid "French"
|
||||
msgstr "Frans"
|
||||
|
||||
#. js-lingui-id: ejVYRQ
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "From"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: qR8gT9
|
||||
#: src/modules/workflow/workflow-trigger/utils/cron-to-human/descriptors/getDayOfWeekDescription.ts
|
||||
msgid "from {startDay} to {endDay}"
|
||||
@@ -9398,6 +9441,11 @@ msgstr "Nieuw gesprek"
|
||||
msgid "New conversation"
|
||||
msgstr "Nieuw gesprek"
|
||||
|
||||
#. js-lingui-id: 3RwJHq
|
||||
#: src/modules/side-panel/hooks/useOpenComposeEmailInSidePanel.ts
|
||||
msgid "New Email"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wqoYqp
|
||||
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
|
||||
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
|
||||
@@ -11374,10 +11422,11 @@ msgstr ""
|
||||
msgid "Read your profile"
|
||||
msgstr "Je profiel lezen"
|
||||
|
||||
#. js-lingui-id: tCXcL7
|
||||
#. js-lingui-id: 6pSHJ5
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Read-only — managed by Twenty"
|
||||
msgstr "Alleen-lezen — beheerd door Twenty"
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Read-only"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: W+ApAD
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
@@ -11399,6 +11448,11 @@ msgstr "Ontvang een e-mail met een link om het wachtwoord bij te werken"
|
||||
msgid "Recent Events (oldest → newest)"
|
||||
msgstr "Recente gebeurtenissen (oudste → nieuwste)"
|
||||
|
||||
#. js-lingui-id: yPrbsy
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Recipients"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: b2+5uV
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
msgid "Recommended Models"
|
||||
@@ -11750,6 +11804,8 @@ msgid "Reorder options"
|
||||
msgstr "Opties opnieuw ordenen"
|
||||
|
||||
#. js-lingui-id: ImOQa9
|
||||
#: src/modules/side-panel/hooks/useOpenComposeEmailInSidePanel.ts
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
#: src/modules/activities/emails/components/EmailThreadBottomBar.tsx
|
||||
msgid "Reply"
|
||||
msgstr "Antwoord"
|
||||
@@ -11759,6 +11815,11 @@ msgstr "Antwoord"
|
||||
msgid "Reply to all"
|
||||
msgstr "Allen antwoorden"
|
||||
|
||||
#. js-lingui-id: fiPYZo
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
msgid "Reply..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: tbmZmI
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "Report and issue"
|
||||
@@ -11784,6 +11845,7 @@ msgstr "E-mail opnieuw verzenden"
|
||||
#. js-lingui-id: OfhWJH
|
||||
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
|
||||
#: src/modules/views/components/ViewBarDetails.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
msgid "Reset"
|
||||
msgstr "Resetten"
|
||||
|
||||
@@ -11804,6 +11866,8 @@ msgid "Reset to"
|
||||
msgstr "Reset naar"
|
||||
|
||||
#. js-lingui-id: L+rMC9
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
msgid "Reset to default"
|
||||
@@ -12698,6 +12762,13 @@ msgstr "Selecteer welke modellen als aanbevolen verschijnen in de modelkiezer va
|
||||
msgid "Select your preferred language"
|
||||
msgstr "Selecteer je voorkeurstaal"
|
||||
|
||||
#. js-lingui-id: JlFcis
|
||||
#: src/modules/side-panel/pages/compose-email/components/SidePanelComposeEmailPage.tsx
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposer.tsx
|
||||
msgid "Send"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mjK8F3
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
msgid "Send an invite email to your team"
|
||||
@@ -13413,6 +13484,8 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: UJmAAK
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Subject"
|
||||
msgstr "Onderwerp"
|
||||
|
||||
@@ -13653,11 +13726,6 @@ msgstr ""
|
||||
msgid "System Prompt"
|
||||
msgstr "Systeemopdracht"
|
||||
|
||||
#. js-lingui-id: BXGTWI
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "System Prompt ({totalTokenCount})"
|
||||
msgstr "Systeemprompt ({totalTokenCount})"
|
||||
|
||||
#. js-lingui-id: k+7QWO
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
msgid "System relations"
|
||||
@@ -14146,6 +14214,11 @@ msgstr ""
|
||||
msgid "This week"
|
||||
msgstr "Deze week"
|
||||
|
||||
#. js-lingui-id: VbVocX
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
msgid "This will cancel all modifications done on the widget. This action cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: h4VeOo
|
||||
#: src/modules/settings/billing/hooks/useBillingWording.ts
|
||||
msgid "This will cancel the scheduled interval change and keep your current billing interval ({currentIntervalLabel})."
|
||||
@@ -14261,6 +14334,7 @@ msgstr "titel"
|
||||
|
||||
#. js-lingui-id: /jQctM
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "To"
|
||||
msgstr "Aan"
|
||||
|
||||
@@ -14584,6 +14658,11 @@ msgstr "Typ '/' voor commando's, '@' voor vermeldingen"
|
||||
msgid "Type anything..."
|
||||
msgstr "Typ iets..."
|
||||
|
||||
#. js-lingui-id: LaEX5I
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Type something or press \"/\" to see commands"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: UhqKcC
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Type to search records"
|
||||
@@ -14911,6 +14990,11 @@ msgstr "Upgrade om toegang te krijgen"
|
||||
msgid "Upgrade to Enterprise to access audit logs."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: D+7y/3
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Upgrade to Enterprise to share private applications."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +Gi3x1
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationVersionContainer.tsx
|
||||
@@ -15347,7 +15431,6 @@ msgstr "Logs bekijken"
|
||||
|
||||
#. js-lingui-id: 7PrSCy
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "View marketplace page"
|
||||
msgstr "Marketplace-pagina bekijken"
|
||||
|
||||
@@ -15361,6 +15444,11 @@ msgstr ""
|
||||
msgid "View Previous AI Chats"
|
||||
msgstr "Bekijk Vorige AI-chats"
|
||||
|
||||
#. js-lingui-id: NnJpTN
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "View private application page"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: hAAsm/
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowEditActionAiAgent.tsx
|
||||
msgid "View role"
|
||||
|
||||
@@ -456,11 +456,13 @@ msgstr "{workspaceMemberName} vil ikke lengre være tilordnet følgende rolle:"
|
||||
msgid "••••••••"
|
||||
msgstr "••••••••"
|
||||
|
||||
#. js-lingui-id: tD9raa
|
||||
#. js-lingui-id: SMgdEJ
|
||||
#. placeholder {0}: formatNumber(preview.estimatedTokenCount, { abbreviate: true, decimals: 1, })
|
||||
#. placeholder {0}: formatNumber( section.estimatedTokenCount, { abbreviate: true, decimals: 1, }, )
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "~{0} tokens"
|
||||
msgstr "~{0} tokens"
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "~ {0} tokens"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Cx0xl3
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
|
||||
@@ -1707,6 +1709,7 @@ msgstr "Det oppstod en feil under opplasting av bildet."
|
||||
#: src/modules/views/hooks/internal/usePerformViewAPIPersist.ts
|
||||
#: src/modules/ui/feedback/snack-bar-manager/hooks/useSnackBar.ts
|
||||
#: src/modules/page-layout/hooks/useUpdatePageLayoutWithTabsAndWidgets.ts
|
||||
#: src/modules/page-layout/hooks/useResetPageLayoutWidgetToDefault.ts
|
||||
#: src/modules/object-metadata/hooks/useUpdateOneObjectMetadataItem.ts
|
||||
#: src/modules/object-metadata/hooks/useUpdateOneFieldMetadataItem.ts
|
||||
#: src/modules/object-metadata/hooks/useDeleteOneObjectMetadataItem.ts
|
||||
@@ -2418,6 +2421,12 @@ msgstr "Base-URL"
|
||||
msgid "Base URL is required"
|
||||
msgstr "Base-URL er påkrevd"
|
||||
|
||||
#. js-lingui-id: /xLNEx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Bcc"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: PFohi3
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
msgid "BCC"
|
||||
@@ -2721,9 +2730,11 @@ msgstr "Kan ikke skanne? Kopier "
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
#: src/modules/spreadsheet-import/provider/components/SpreadsheetImport.tsx
|
||||
#: src/modules/side-panel/pages/compose-email/components/SidePanelComposeEmailPage.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposer.tsx
|
||||
msgid "Cancel"
|
||||
msgstr "Avbryt"
|
||||
|
||||
@@ -2763,6 +2774,11 @@ msgstr "Avbryt planbytte"
|
||||
msgid "Cancel plan switching?"
|
||||
msgstr "Avbryt planbytte?"
|
||||
|
||||
#. js-lingui-id: AnRu/j
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
msgid "Cancel reply"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: N6gPiD
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/settings/billing/components/SettingsBillingContent.tsx
|
||||
@@ -2831,11 +2847,22 @@ msgstr "Katalansk"
|
||||
msgid "Category"
|
||||
msgstr "Kategori"
|
||||
|
||||
#. js-lingui-id: RpYfjZ
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Cc"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XdZeJk
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
msgid "CC"
|
||||
msgstr "CC"
|
||||
|
||||
#. js-lingui-id: Dgsw8A
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Cc/Bcc"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: tHntRt
|
||||
#: src/modules/page-layout/widgets/standalone-rich-text/components/DashboardEditorSideMenu.tsx
|
||||
#: src/modules/blocknote-editor/components/CustomSideMenu.tsx
|
||||
@@ -5350,6 +5377,11 @@ msgstr "E-post må være en gyldig e-postadresse."
|
||||
msgid "Email or domain is already in blocklist"
|
||||
msgstr "E-post eller domene er allerede i svartelisten"
|
||||
|
||||
#. js-lingui-id: Xl929X
|
||||
#: src/modules/activities/emails/hooks/useSendEmail.ts
|
||||
msgid "Email sent successfully"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: jvneza
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "Email support"
|
||||
@@ -6439,6 +6471,12 @@ msgstr ""
|
||||
msgid "Failed to save workspace instructions"
|
||||
msgstr "Kunne ikke lagre instruksjoner for arbeidsområdet"
|
||||
|
||||
#. js-lingui-id: Lo/GQ5
|
||||
#: src/modules/activities/emails/hooks/useSendEmail.ts
|
||||
#: src/modules/activities/emails/hooks/useSendEmail.ts
|
||||
msgid "Failed to send email"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: aj02T8
|
||||
#: src/modules/settings/admin-panel/health-status/maintenance-mode/components/SettingsAdminMaintenanceMode.tsx
|
||||
msgid "Failed to set maintenance mode."
|
||||
@@ -6930,6 +6968,11 @@ msgstr ""
|
||||
msgid "French"
|
||||
msgstr "Fransk"
|
||||
|
||||
#. js-lingui-id: ejVYRQ
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "From"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: qR8gT9
|
||||
#: src/modules/workflow/workflow-trigger/utils/cron-to-human/descriptors/getDayOfWeekDescription.ts
|
||||
msgid "from {startDay} to {endDay}"
|
||||
@@ -9398,6 +9441,11 @@ msgstr "Ny chat"
|
||||
msgid "New conversation"
|
||||
msgstr "Ny samtale"
|
||||
|
||||
#. js-lingui-id: 3RwJHq
|
||||
#: src/modules/side-panel/hooks/useOpenComposeEmailInSidePanel.ts
|
||||
msgid "New Email"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wqoYqp
|
||||
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
|
||||
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
|
||||
@@ -11374,10 +11422,11 @@ msgstr ""
|
||||
msgid "Read your profile"
|
||||
msgstr "Les profilen din"
|
||||
|
||||
#. js-lingui-id: tCXcL7
|
||||
#. js-lingui-id: 6pSHJ5
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Read-only — managed by Twenty"
|
||||
msgstr "Skrivebeskyttet — administrert av Twenty"
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Read-only"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: W+ApAD
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
@@ -11399,6 +11448,11 @@ msgstr "Motta en e-post med lenke for å oppdatere passordet"
|
||||
msgid "Recent Events (oldest → newest)"
|
||||
msgstr "Nylige hendelser (eldst → nyest)"
|
||||
|
||||
#. js-lingui-id: yPrbsy
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Recipients"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: b2+5uV
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
msgid "Recommended Models"
|
||||
@@ -11750,6 +11804,8 @@ msgid "Reorder options"
|
||||
msgstr "Endre rekkefølgen på alternativer"
|
||||
|
||||
#. js-lingui-id: ImOQa9
|
||||
#: src/modules/side-panel/hooks/useOpenComposeEmailInSidePanel.ts
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
#: src/modules/activities/emails/components/EmailThreadBottomBar.tsx
|
||||
msgid "Reply"
|
||||
msgstr "Svar"
|
||||
@@ -11759,6 +11815,11 @@ msgstr "Svar"
|
||||
msgid "Reply to all"
|
||||
msgstr "Svar alle"
|
||||
|
||||
#. js-lingui-id: fiPYZo
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
msgid "Reply..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: tbmZmI
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "Report and issue"
|
||||
@@ -11784,6 +11845,7 @@ msgstr "Send på nytt"
|
||||
#. js-lingui-id: OfhWJH
|
||||
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
|
||||
#: src/modules/views/components/ViewBarDetails.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
msgid "Reset"
|
||||
msgstr "Tilbakestill"
|
||||
|
||||
@@ -11804,6 +11866,8 @@ msgid "Reset to"
|
||||
msgstr "Tilbakestill til"
|
||||
|
||||
#. js-lingui-id: L+rMC9
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
msgid "Reset to default"
|
||||
@@ -12698,6 +12762,13 @@ msgstr "Velg hvilke modeller som vises som anbefalte i modellvelgeren i arbeidso
|
||||
msgid "Select your preferred language"
|
||||
msgstr "Velg ditt foretrukne språk"
|
||||
|
||||
#. js-lingui-id: JlFcis
|
||||
#: src/modules/side-panel/pages/compose-email/components/SidePanelComposeEmailPage.tsx
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposer.tsx
|
||||
msgid "Send"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mjK8F3
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
msgid "Send an invite email to your team"
|
||||
@@ -13413,6 +13484,8 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: UJmAAK
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Subject"
|
||||
msgstr "Emne"
|
||||
|
||||
@@ -13653,11 +13726,6 @@ msgstr ""
|
||||
msgid "System Prompt"
|
||||
msgstr "Systemprompt"
|
||||
|
||||
#. js-lingui-id: BXGTWI
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "System Prompt ({totalTokenCount})"
|
||||
msgstr "Systemprompt ({totalTokenCount})"
|
||||
|
||||
#. js-lingui-id: k+7QWO
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
msgid "System relations"
|
||||
@@ -14144,6 +14212,11 @@ msgstr ""
|
||||
msgid "This week"
|
||||
msgstr "Denne uken"
|
||||
|
||||
#. js-lingui-id: VbVocX
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
msgid "This will cancel all modifications done on the widget. This action cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: h4VeOo
|
||||
#: src/modules/settings/billing/hooks/useBillingWording.ts
|
||||
msgid "This will cancel the scheduled interval change and keep your current billing interval ({currentIntervalLabel})."
|
||||
@@ -14259,6 +14332,7 @@ msgstr "tittel"
|
||||
|
||||
#. js-lingui-id: /jQctM
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "To"
|
||||
msgstr "Til"
|
||||
|
||||
@@ -14582,6 +14656,11 @@ msgstr "Skriv '/' for kommandoer, '@' for omtaler"
|
||||
msgid "Type anything..."
|
||||
msgstr "Skriv hva som helst..."
|
||||
|
||||
#. js-lingui-id: LaEX5I
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Type something or press \"/\" to see commands"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: UhqKcC
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Type to search records"
|
||||
@@ -14909,6 +14988,11 @@ msgstr "Oppgrader for å få tilgang"
|
||||
msgid "Upgrade to Enterprise to access audit logs."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: D+7y/3
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Upgrade to Enterprise to share private applications."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +Gi3x1
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationVersionContainer.tsx
|
||||
@@ -15345,7 +15429,6 @@ msgstr "Vis logger"
|
||||
|
||||
#. js-lingui-id: 7PrSCy
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "View marketplace page"
|
||||
msgstr "Vis side på markedsplassen"
|
||||
|
||||
@@ -15359,6 +15442,11 @@ msgstr ""
|
||||
msgid "View Previous AI Chats"
|
||||
msgstr "Vis tidligere AI-chatter"
|
||||
|
||||
#. js-lingui-id: NnJpTN
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "View private application page"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: hAAsm/
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowEditActionAiAgent.tsx
|
||||
msgid "View role"
|
||||
|
||||
@@ -456,11 +456,13 @@ msgstr "{workspaceMemberName} zostanie odłączony od następującej roli:"
|
||||
msgid "••••••••"
|
||||
msgstr "••••••••"
|
||||
|
||||
#. js-lingui-id: tD9raa
|
||||
#. js-lingui-id: SMgdEJ
|
||||
#. placeholder {0}: formatNumber(preview.estimatedTokenCount, { abbreviate: true, decimals: 1, })
|
||||
#. placeholder {0}: formatNumber( section.estimatedTokenCount, { abbreviate: true, decimals: 1, }, )
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "~{0} tokens"
|
||||
msgstr "~{0} tokenów"
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "~ {0} tokens"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Cx0xl3
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
|
||||
@@ -1707,6 +1709,7 @@ msgstr "Wystąpił błąd podczas przesyłania zdjęcia."
|
||||
#: src/modules/views/hooks/internal/usePerformViewAPIPersist.ts
|
||||
#: src/modules/ui/feedback/snack-bar-manager/hooks/useSnackBar.ts
|
||||
#: src/modules/page-layout/hooks/useUpdatePageLayoutWithTabsAndWidgets.ts
|
||||
#: src/modules/page-layout/hooks/useResetPageLayoutWidgetToDefault.ts
|
||||
#: src/modules/object-metadata/hooks/useUpdateOneObjectMetadataItem.ts
|
||||
#: src/modules/object-metadata/hooks/useUpdateOneFieldMetadataItem.ts
|
||||
#: src/modules/object-metadata/hooks/useDeleteOneObjectMetadataItem.ts
|
||||
@@ -2418,6 +2421,12 @@ msgstr "Bazowy adres URL"
|
||||
msgid "Base URL is required"
|
||||
msgstr "Bazowy adres URL jest wymagany"
|
||||
|
||||
#. js-lingui-id: /xLNEx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Bcc"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: PFohi3
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
msgid "BCC"
|
||||
@@ -2721,9 +2730,11 @@ msgstr "Nie można zeskanować? Skopiuj"
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
#: src/modules/spreadsheet-import/provider/components/SpreadsheetImport.tsx
|
||||
#: src/modules/side-panel/pages/compose-email/components/SidePanelComposeEmailPage.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposer.tsx
|
||||
msgid "Cancel"
|
||||
msgstr "Anuluj"
|
||||
|
||||
@@ -2763,6 +2774,11 @@ msgstr "Anuluj przełączanie planu"
|
||||
msgid "Cancel plan switching?"
|
||||
msgstr "Anulować przełączanie planu?"
|
||||
|
||||
#. js-lingui-id: AnRu/j
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
msgid "Cancel reply"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: N6gPiD
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/settings/billing/components/SettingsBillingContent.tsx
|
||||
@@ -2831,11 +2847,22 @@ msgstr "kataloński"
|
||||
msgid "Category"
|
||||
msgstr "Kategoria"
|
||||
|
||||
#. js-lingui-id: RpYfjZ
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Cc"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XdZeJk
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
msgid "CC"
|
||||
msgstr "DW"
|
||||
|
||||
#. js-lingui-id: Dgsw8A
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Cc/Bcc"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: tHntRt
|
||||
#: src/modules/page-layout/widgets/standalone-rich-text/components/DashboardEditorSideMenu.tsx
|
||||
#: src/modules/blocknote-editor/components/CustomSideMenu.tsx
|
||||
@@ -5350,6 +5377,11 @@ msgstr "Adres e-mail musi być prawidłowy"
|
||||
msgid "Email or domain is already in blocklist"
|
||||
msgstr "Email lub domena jest już na liście blokowanych"
|
||||
|
||||
#. js-lingui-id: Xl929X
|
||||
#: src/modules/activities/emails/hooks/useSendEmail.ts
|
||||
msgid "Email sent successfully"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: jvneza
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "Email support"
|
||||
@@ -6439,6 +6471,12 @@ msgstr ""
|
||||
msgid "Failed to save workspace instructions"
|
||||
msgstr "Nie udało się zapisać instrukcji dla obszaru roboczego"
|
||||
|
||||
#. js-lingui-id: Lo/GQ5
|
||||
#: src/modules/activities/emails/hooks/useSendEmail.ts
|
||||
#: src/modules/activities/emails/hooks/useSendEmail.ts
|
||||
msgid "Failed to send email"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: aj02T8
|
||||
#: src/modules/settings/admin-panel/health-status/maintenance-mode/components/SettingsAdminMaintenanceMode.tsx
|
||||
msgid "Failed to set maintenance mode."
|
||||
@@ -6930,6 +6968,11 @@ msgstr "Kredyty z darmowego okresu próbnego zostały wyczerpane. Wykup teraz su
|
||||
msgid "French"
|
||||
msgstr "Francuski"
|
||||
|
||||
#. js-lingui-id: ejVYRQ
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "From"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: qR8gT9
|
||||
#: src/modules/workflow/workflow-trigger/utils/cron-to-human/descriptors/getDayOfWeekDescription.ts
|
||||
msgid "from {startDay} to {endDay}"
|
||||
@@ -9398,6 +9441,11 @@ msgstr "Nowa rozmowa"
|
||||
msgid "New conversation"
|
||||
msgstr "Nowa konwersacja"
|
||||
|
||||
#. js-lingui-id: 3RwJHq
|
||||
#: src/modules/side-panel/hooks/useOpenComposeEmailInSidePanel.ts
|
||||
msgid "New Email"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wqoYqp
|
||||
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
|
||||
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
|
||||
@@ -11374,10 +11422,11 @@ msgstr ""
|
||||
msgid "Read your profile"
|
||||
msgstr "Odczyt Twojego profilu"
|
||||
|
||||
#. js-lingui-id: tCXcL7
|
||||
#. js-lingui-id: 6pSHJ5
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Read-only — managed by Twenty"
|
||||
msgstr "Tylko do odczytu — zarządzane przez Twenty"
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Read-only"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: W+ApAD
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
@@ -11399,6 +11448,11 @@ msgstr "Otrzymaj e-mail z linkiem do aktualizacji hasła"
|
||||
msgid "Recent Events (oldest → newest)"
|
||||
msgstr "Ostatnie wydarzenia (od najstarszego → do najnowszego)"
|
||||
|
||||
#. js-lingui-id: yPrbsy
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Recipients"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: b2+5uV
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
msgid "Recommended Models"
|
||||
@@ -11750,6 +11804,8 @@ msgid "Reorder options"
|
||||
msgstr "Zmień kolejność opcji"
|
||||
|
||||
#. js-lingui-id: ImOQa9
|
||||
#: src/modules/side-panel/hooks/useOpenComposeEmailInSidePanel.ts
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
#: src/modules/activities/emails/components/EmailThreadBottomBar.tsx
|
||||
msgid "Reply"
|
||||
msgstr "Odpowiedz"
|
||||
@@ -11759,6 +11815,11 @@ msgstr "Odpowiedz"
|
||||
msgid "Reply to all"
|
||||
msgstr "Odpowiedz wszystkim"
|
||||
|
||||
#. js-lingui-id: fiPYZo
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
msgid "Reply..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: tbmZmI
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "Report and issue"
|
||||
@@ -11784,6 +11845,7 @@ msgstr "Wyślij ponownie e-mail"
|
||||
#. js-lingui-id: OfhWJH
|
||||
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
|
||||
#: src/modules/views/components/ViewBarDetails.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
msgid "Reset"
|
||||
msgstr "Zresetuj"
|
||||
|
||||
@@ -11804,6 +11866,8 @@ msgid "Reset to"
|
||||
msgstr "Zresetuj do"
|
||||
|
||||
#. js-lingui-id: L+rMC9
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
msgid "Reset to default"
|
||||
@@ -12698,6 +12762,13 @@ msgstr "Wybierz, które modele pojawią się jako rekomendowane w selektorze mod
|
||||
msgid "Select your preferred language"
|
||||
msgstr "Wybierz preferowany język"
|
||||
|
||||
#. js-lingui-id: JlFcis
|
||||
#: src/modules/side-panel/pages/compose-email/components/SidePanelComposeEmailPage.tsx
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposer.tsx
|
||||
msgid "Send"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mjK8F3
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
msgid "Send an invite email to your team"
|
||||
@@ -13413,6 +13484,8 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: UJmAAK
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Subject"
|
||||
msgstr "Temat"
|
||||
|
||||
@@ -13653,11 +13726,6 @@ msgstr ""
|
||||
msgid "System Prompt"
|
||||
msgstr "Polecenie Systemowe"
|
||||
|
||||
#. js-lingui-id: BXGTWI
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "System Prompt ({totalTokenCount})"
|
||||
msgstr "Podpowiedź systemowa ({totalTokenCount})"
|
||||
|
||||
#. js-lingui-id: k+7QWO
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
msgid "System relations"
|
||||
@@ -14144,6 +14212,11 @@ msgstr ""
|
||||
msgid "This week"
|
||||
msgstr "Ten tydzień"
|
||||
|
||||
#. js-lingui-id: VbVocX
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
msgid "This will cancel all modifications done on the widget. This action cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: h4VeOo
|
||||
#: src/modules/settings/billing/hooks/useBillingWording.ts
|
||||
msgid "This will cancel the scheduled interval change and keep your current billing interval ({currentIntervalLabel})."
|
||||
@@ -14259,6 +14332,7 @@ msgstr "tytuł"
|
||||
|
||||
#. js-lingui-id: /jQctM
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "To"
|
||||
msgstr "Do"
|
||||
|
||||
@@ -14582,6 +14656,11 @@ msgstr "Wpisz '/' dla poleceń, '@' dla wzmianek"
|
||||
msgid "Type anything..."
|
||||
msgstr "Wpisz cokolwiek..."
|
||||
|
||||
#. js-lingui-id: LaEX5I
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Type something or press \"/\" to see commands"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: UhqKcC
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Type to search records"
|
||||
@@ -14909,6 +14988,11 @@ msgstr "Uaktualnij, aby uzyskać dostęp"
|
||||
msgid "Upgrade to Enterprise to access audit logs."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: D+7y/3
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Upgrade to Enterprise to share private applications."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +Gi3x1
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationVersionContainer.tsx
|
||||
@@ -15345,7 +15429,6 @@ msgstr "Wyświetl dzienniki"
|
||||
|
||||
#. js-lingui-id: 7PrSCy
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "View marketplace page"
|
||||
msgstr "Wyświetl stronę w Marketplace"
|
||||
|
||||
@@ -15359,6 +15442,11 @@ msgstr ""
|
||||
msgid "View Previous AI Chats"
|
||||
msgstr "Pokaż poprzednie czaty AI"
|
||||
|
||||
#. js-lingui-id: NnJpTN
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "View private application page"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: hAAsm/
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowEditActionAiAgent.tsx
|
||||
msgid "View role"
|
||||
|
||||
@@ -451,10 +451,12 @@ msgstr ""
|
||||
msgid "••••••••"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: tD9raa
|
||||
#. js-lingui-id: SMgdEJ
|
||||
#. placeholder {0}: formatNumber(preview.estimatedTokenCount, { abbreviate: true, decimals: 1, })
|
||||
#. placeholder {0}: formatNumber( section.estimatedTokenCount, { abbreviate: true, decimals: 1, }, )
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "~{0} tokens"
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "~ {0} tokens"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Cx0xl3
|
||||
@@ -1702,6 +1704,7 @@ msgstr ""
|
||||
#: src/modules/views/hooks/internal/usePerformViewAPIPersist.ts
|
||||
#: src/modules/ui/feedback/snack-bar-manager/hooks/useSnackBar.ts
|
||||
#: src/modules/page-layout/hooks/useUpdatePageLayoutWithTabsAndWidgets.ts
|
||||
#: src/modules/page-layout/hooks/useResetPageLayoutWidgetToDefault.ts
|
||||
#: src/modules/object-metadata/hooks/useUpdateOneObjectMetadataItem.ts
|
||||
#: src/modules/object-metadata/hooks/useUpdateOneFieldMetadataItem.ts
|
||||
#: src/modules/object-metadata/hooks/useDeleteOneObjectMetadataItem.ts
|
||||
@@ -2413,6 +2416,12 @@ msgstr ""
|
||||
msgid "Base URL is required"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: /xLNEx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Bcc"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: PFohi3
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
msgid "BCC"
|
||||
@@ -2716,9 +2725,11 @@ msgstr ""
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
#: src/modules/spreadsheet-import/provider/components/SpreadsheetImport.tsx
|
||||
#: src/modules/side-panel/pages/compose-email/components/SidePanelComposeEmailPage.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposer.tsx
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
@@ -2758,6 +2769,11 @@ msgstr ""
|
||||
msgid "Cancel plan switching?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: AnRu/j
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
msgid "Cancel reply"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: N6gPiD
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/settings/billing/components/SettingsBillingContent.tsx
|
||||
@@ -2826,11 +2842,22 @@ msgstr ""
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: RpYfjZ
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Cc"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XdZeJk
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
msgid "CC"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Dgsw8A
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Cc/Bcc"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: tHntRt
|
||||
#: src/modules/page-layout/widgets/standalone-rich-text/components/DashboardEditorSideMenu.tsx
|
||||
#: src/modules/blocknote-editor/components/CustomSideMenu.tsx
|
||||
@@ -5345,6 +5372,11 @@ msgstr ""
|
||||
msgid "Email or domain is already in blocklist"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Xl929X
|
||||
#: src/modules/activities/emails/hooks/useSendEmail.ts
|
||||
msgid "Email sent successfully"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: jvneza
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "Email support"
|
||||
@@ -6434,6 +6466,12 @@ msgstr ""
|
||||
msgid "Failed to save workspace instructions"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Lo/GQ5
|
||||
#: src/modules/activities/emails/hooks/useSendEmail.ts
|
||||
#: src/modules/activities/emails/hooks/useSendEmail.ts
|
||||
msgid "Failed to send email"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: aj02T8
|
||||
#: src/modules/settings/admin-panel/health-status/maintenance-mode/components/SettingsAdminMaintenanceMode.tsx
|
||||
msgid "Failed to set maintenance mode."
|
||||
@@ -6925,6 +6963,11 @@ msgstr ""
|
||||
msgid "French"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ejVYRQ
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "From"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: qR8gT9
|
||||
#: src/modules/workflow/workflow-trigger/utils/cron-to-human/descriptors/getDayOfWeekDescription.ts
|
||||
msgid "from {startDay} to {endDay}"
|
||||
@@ -9393,6 +9436,11 @@ msgstr ""
|
||||
msgid "New conversation"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 3RwJHq
|
||||
#: src/modules/side-panel/hooks/useOpenComposeEmailInSidePanel.ts
|
||||
msgid "New Email"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wqoYqp
|
||||
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
|
||||
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
|
||||
@@ -11369,9 +11417,10 @@ msgstr ""
|
||||
msgid "Read your profile"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: tCXcL7
|
||||
#. js-lingui-id: 6pSHJ5
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Read-only — managed by Twenty"
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Read-only"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: W+ApAD
|
||||
@@ -11394,6 +11443,11 @@ msgstr ""
|
||||
msgid "Recent Events (oldest → newest)"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: yPrbsy
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Recipients"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: b2+5uV
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
msgid "Recommended Models"
|
||||
@@ -11745,6 +11799,8 @@ msgid "Reorder options"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ImOQa9
|
||||
#: src/modules/side-panel/hooks/useOpenComposeEmailInSidePanel.ts
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
#: src/modules/activities/emails/components/EmailThreadBottomBar.tsx
|
||||
msgid "Reply"
|
||||
msgstr ""
|
||||
@@ -11754,6 +11810,11 @@ msgstr ""
|
||||
msgid "Reply to all"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: fiPYZo
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
msgid "Reply..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: tbmZmI
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "Report and issue"
|
||||
@@ -11779,6 +11840,7 @@ msgstr ""
|
||||
#. js-lingui-id: OfhWJH
|
||||
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
|
||||
#: src/modules/views/components/ViewBarDetails.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
msgid "Reset"
|
||||
msgstr ""
|
||||
|
||||
@@ -11799,6 +11861,8 @@ msgid "Reset to"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: L+rMC9
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
msgid "Reset to default"
|
||||
@@ -12693,6 +12757,13 @@ msgstr ""
|
||||
msgid "Select your preferred language"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: JlFcis
|
||||
#: src/modules/side-panel/pages/compose-email/components/SidePanelComposeEmailPage.tsx
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposer.tsx
|
||||
msgid "Send"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mjK8F3
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
msgid "Send an invite email to your team"
|
||||
@@ -13408,6 +13479,8 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: UJmAAK
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Subject"
|
||||
msgstr ""
|
||||
|
||||
@@ -13648,11 +13721,6 @@ msgstr ""
|
||||
msgid "System Prompt"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: BXGTWI
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "System Prompt ({totalTokenCount})"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: k+7QWO
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
msgid "System relations"
|
||||
@@ -14139,6 +14207,11 @@ msgstr ""
|
||||
msgid "This week"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: VbVocX
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
msgid "This will cancel all modifications done on the widget. This action cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: h4VeOo
|
||||
#: src/modules/settings/billing/hooks/useBillingWording.ts
|
||||
msgid "This will cancel the scheduled interval change and keep your current billing interval ({currentIntervalLabel})."
|
||||
@@ -14254,6 +14327,7 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: /jQctM
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "To"
|
||||
msgstr ""
|
||||
|
||||
@@ -14577,6 +14651,11 @@ msgstr ""
|
||||
msgid "Type anything..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LaEX5I
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Type something or press \"/\" to see commands"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: UhqKcC
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Type to search records"
|
||||
@@ -14904,6 +14983,11 @@ msgstr ""
|
||||
msgid "Upgrade to Enterprise to access audit logs."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: D+7y/3
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Upgrade to Enterprise to share private applications."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +Gi3x1
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationVersionContainer.tsx
|
||||
@@ -15340,7 +15424,6 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: 7PrSCy
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "View marketplace page"
|
||||
msgstr ""
|
||||
|
||||
@@ -15354,6 +15437,11 @@ msgstr ""
|
||||
msgid "View Previous AI Chats"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NnJpTN
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "View private application page"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: hAAsm/
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowEditActionAiAgent.tsx
|
||||
msgid "View role"
|
||||
|
||||
@@ -456,11 +456,13 @@ msgstr "{workspaceMemberName} será desvinculado do seguinte cargo:"
|
||||
msgid "••••••••"
|
||||
msgstr "••••••••"
|
||||
|
||||
#. js-lingui-id: tD9raa
|
||||
#. js-lingui-id: SMgdEJ
|
||||
#. placeholder {0}: formatNumber(preview.estimatedTokenCount, { abbreviate: true, decimals: 1, })
|
||||
#. placeholder {0}: formatNumber( section.estimatedTokenCount, { abbreviate: true, decimals: 1, }, )
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "~{0} tokens"
|
||||
msgstr "~{0} tokens"
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "~ {0} tokens"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Cx0xl3
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
|
||||
@@ -1707,6 +1709,7 @@ msgstr "Ocorreu um erro ao carregar a imagem."
|
||||
#: src/modules/views/hooks/internal/usePerformViewAPIPersist.ts
|
||||
#: src/modules/ui/feedback/snack-bar-manager/hooks/useSnackBar.ts
|
||||
#: src/modules/page-layout/hooks/useUpdatePageLayoutWithTabsAndWidgets.ts
|
||||
#: src/modules/page-layout/hooks/useResetPageLayoutWidgetToDefault.ts
|
||||
#: src/modules/object-metadata/hooks/useUpdateOneObjectMetadataItem.ts
|
||||
#: src/modules/object-metadata/hooks/useUpdateOneFieldMetadataItem.ts
|
||||
#: src/modules/object-metadata/hooks/useDeleteOneObjectMetadataItem.ts
|
||||
@@ -2418,6 +2421,12 @@ msgstr "URL base"
|
||||
msgid "Base URL is required"
|
||||
msgstr "A URL base é obrigatória"
|
||||
|
||||
#. js-lingui-id: /xLNEx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Bcc"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: PFohi3
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
msgid "BCC"
|
||||
@@ -2721,9 +2730,11 @@ msgstr "Não consegue escanear? Copie o"
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
#: src/modules/spreadsheet-import/provider/components/SpreadsheetImport.tsx
|
||||
#: src/modules/side-panel/pages/compose-email/components/SidePanelComposeEmailPage.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposer.tsx
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
@@ -2763,6 +2774,11 @@ msgstr "Cancelar alternância de plano"
|
||||
msgid "Cancel plan switching?"
|
||||
msgstr "Cancelar alternância de plano?"
|
||||
|
||||
#. js-lingui-id: AnRu/j
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
msgid "Cancel reply"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: N6gPiD
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/settings/billing/components/SettingsBillingContent.tsx
|
||||
@@ -2831,11 +2847,22 @@ msgstr "Catalão"
|
||||
msgid "Category"
|
||||
msgstr "Categoria"
|
||||
|
||||
#. js-lingui-id: RpYfjZ
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Cc"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XdZeJk
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
msgid "CC"
|
||||
msgstr "CC"
|
||||
|
||||
#. js-lingui-id: Dgsw8A
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Cc/Bcc"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: tHntRt
|
||||
#: src/modules/page-layout/widgets/standalone-rich-text/components/DashboardEditorSideMenu.tsx
|
||||
#: src/modules/blocknote-editor/components/CustomSideMenu.tsx
|
||||
@@ -5350,6 +5377,11 @@ msgstr "O e-mail deve ser válido"
|
||||
msgid "Email or domain is already in blocklist"
|
||||
msgstr "O e-mail ou domínio já está na lista de bloqueio"
|
||||
|
||||
#. js-lingui-id: Xl929X
|
||||
#: src/modules/activities/emails/hooks/useSendEmail.ts
|
||||
msgid "Email sent successfully"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: jvneza
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "Email support"
|
||||
@@ -6439,6 +6471,12 @@ msgstr ""
|
||||
msgid "Failed to save workspace instructions"
|
||||
msgstr "Falha ao salvar as instruções do espaço de trabalho"
|
||||
|
||||
#. js-lingui-id: Lo/GQ5
|
||||
#: src/modules/activities/emails/hooks/useSendEmail.ts
|
||||
#: src/modules/activities/emails/hooks/useSendEmail.ts
|
||||
msgid "Failed to send email"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: aj02T8
|
||||
#: src/modules/settings/admin-panel/health-status/maintenance-mode/components/SettingsAdminMaintenanceMode.tsx
|
||||
msgid "Failed to set maintenance mode."
|
||||
@@ -6930,6 +6968,11 @@ msgstr "Créditos do teste gratuito esgotados. Assine agora para continuar usand
|
||||
msgid "French"
|
||||
msgstr "Francês"
|
||||
|
||||
#. js-lingui-id: ejVYRQ
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "From"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: qR8gT9
|
||||
#: src/modules/workflow/workflow-trigger/utils/cron-to-human/descriptors/getDayOfWeekDescription.ts
|
||||
msgid "from {startDay} to {endDay}"
|
||||
@@ -9398,6 +9441,11 @@ msgstr "Novo chat"
|
||||
msgid "New conversation"
|
||||
msgstr "Nova conversa"
|
||||
|
||||
#. js-lingui-id: 3RwJHq
|
||||
#: src/modules/side-panel/hooks/useOpenComposeEmailInSidePanel.ts
|
||||
msgid "New Email"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wqoYqp
|
||||
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
|
||||
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
|
||||
@@ -11374,10 +11422,11 @@ msgstr ""
|
||||
msgid "Read your profile"
|
||||
msgstr "Ler seu perfil"
|
||||
|
||||
#. js-lingui-id: tCXcL7
|
||||
#. js-lingui-id: 6pSHJ5
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Read-only — managed by Twenty"
|
||||
msgstr "Somente leitura — gerenciado pela Twenty"
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Read-only"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: W+ApAD
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
@@ -11399,6 +11448,11 @@ msgstr "Receber um e-mail com o link de atualização da senha"
|
||||
msgid "Recent Events (oldest → newest)"
|
||||
msgstr "Eventos Recentes (mais antigo → mais recente)"
|
||||
|
||||
#. js-lingui-id: yPrbsy
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Recipients"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: b2+5uV
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
msgid "Recommended Models"
|
||||
@@ -11750,6 +11804,8 @@ msgid "Reorder options"
|
||||
msgstr "Reordenar opções"
|
||||
|
||||
#. js-lingui-id: ImOQa9
|
||||
#: src/modules/side-panel/hooks/useOpenComposeEmailInSidePanel.ts
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
#: src/modules/activities/emails/components/EmailThreadBottomBar.tsx
|
||||
msgid "Reply"
|
||||
msgstr "Responder"
|
||||
@@ -11759,6 +11815,11 @@ msgstr "Responder"
|
||||
msgid "Reply to all"
|
||||
msgstr "Responder a todos"
|
||||
|
||||
#. js-lingui-id: fiPYZo
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
msgid "Reply..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: tbmZmI
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "Report and issue"
|
||||
@@ -11784,6 +11845,7 @@ msgstr "Reenviar email"
|
||||
#. js-lingui-id: OfhWJH
|
||||
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
|
||||
#: src/modules/views/components/ViewBarDetails.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
msgid "Reset"
|
||||
msgstr "Redefinir"
|
||||
|
||||
@@ -11804,6 +11866,8 @@ msgid "Reset to"
|
||||
msgstr "Redefinir para"
|
||||
|
||||
#. js-lingui-id: L+rMC9
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
msgid "Reset to default"
|
||||
@@ -12698,6 +12762,13 @@ msgstr "Selecione quais modelos aparecem como recomendados no seletor de modelos
|
||||
msgid "Select your preferred language"
|
||||
msgstr "Selecione seu idioma preferido"
|
||||
|
||||
#. js-lingui-id: JlFcis
|
||||
#: src/modules/side-panel/pages/compose-email/components/SidePanelComposeEmailPage.tsx
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposer.tsx
|
||||
msgid "Send"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mjK8F3
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
msgid "Send an invite email to your team"
|
||||
@@ -13413,6 +13484,8 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: UJmAAK
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Subject"
|
||||
msgstr "Assunto"
|
||||
|
||||
@@ -13653,11 +13726,6 @@ msgstr ""
|
||||
msgid "System Prompt"
|
||||
msgstr "Prompt do sistema"
|
||||
|
||||
#. js-lingui-id: BXGTWI
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "System Prompt ({totalTokenCount})"
|
||||
msgstr "Prompt do sistema ({totalTokenCount})"
|
||||
|
||||
#. js-lingui-id: k+7QWO
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
msgid "System relations"
|
||||
@@ -14144,6 +14212,11 @@ msgstr ""
|
||||
msgid "This week"
|
||||
msgstr "Esta semana"
|
||||
|
||||
#. js-lingui-id: VbVocX
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
msgid "This will cancel all modifications done on the widget. This action cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: h4VeOo
|
||||
#: src/modules/settings/billing/hooks/useBillingWording.ts
|
||||
msgid "This will cancel the scheduled interval change and keep your current billing interval ({currentIntervalLabel})."
|
||||
@@ -14259,6 +14332,7 @@ msgstr "título"
|
||||
|
||||
#. js-lingui-id: /jQctM
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "To"
|
||||
msgstr "Para"
|
||||
|
||||
@@ -14582,6 +14656,11 @@ msgstr "Digite '/' para comandos, '@' para menções"
|
||||
msgid "Type anything..."
|
||||
msgstr "Digite qualquer coisa..."
|
||||
|
||||
#. js-lingui-id: LaEX5I
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Type something or press \"/\" to see commands"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: UhqKcC
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Type to search records"
|
||||
@@ -14909,6 +14988,11 @@ msgstr "Atualize para acessar"
|
||||
msgid "Upgrade to Enterprise to access audit logs."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: D+7y/3
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Upgrade to Enterprise to share private applications."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +Gi3x1
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationVersionContainer.tsx
|
||||
@@ -15345,7 +15429,6 @@ msgstr "Ver logs"
|
||||
|
||||
#. js-lingui-id: 7PrSCy
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "View marketplace page"
|
||||
msgstr "Ver página do marketplace"
|
||||
|
||||
@@ -15359,6 +15442,11 @@ msgstr ""
|
||||
msgid "View Previous AI Chats"
|
||||
msgstr "Ver Conversas Anteriores da IA"
|
||||
|
||||
#. js-lingui-id: NnJpTN
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "View private application page"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: hAAsm/
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowEditActionAiAgent.tsx
|
||||
msgid "View role"
|
||||
|
||||
@@ -456,11 +456,13 @@ msgstr "{workspaceMemberName} será desvinculado do seguinte cargo:"
|
||||
msgid "••••••••"
|
||||
msgstr "••••••••"
|
||||
|
||||
#. js-lingui-id: tD9raa
|
||||
#. js-lingui-id: SMgdEJ
|
||||
#. placeholder {0}: formatNumber(preview.estimatedTokenCount, { abbreviate: true, decimals: 1, })
|
||||
#. placeholder {0}: formatNumber( section.estimatedTokenCount, { abbreviate: true, decimals: 1, }, )
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "~{0} tokens"
|
||||
msgstr "~{0} tokens"
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "~ {0} tokens"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Cx0xl3
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
|
||||
@@ -1707,6 +1709,7 @@ msgstr "Ocorreu um erro ao carregar a imagem."
|
||||
#: src/modules/views/hooks/internal/usePerformViewAPIPersist.ts
|
||||
#: src/modules/ui/feedback/snack-bar-manager/hooks/useSnackBar.ts
|
||||
#: src/modules/page-layout/hooks/useUpdatePageLayoutWithTabsAndWidgets.ts
|
||||
#: src/modules/page-layout/hooks/useResetPageLayoutWidgetToDefault.ts
|
||||
#: src/modules/object-metadata/hooks/useUpdateOneObjectMetadataItem.ts
|
||||
#: src/modules/object-metadata/hooks/useUpdateOneFieldMetadataItem.ts
|
||||
#: src/modules/object-metadata/hooks/useDeleteOneObjectMetadataItem.ts
|
||||
@@ -2418,6 +2421,12 @@ msgstr "URL base"
|
||||
msgid "Base URL is required"
|
||||
msgstr "A URL base é obrigatória"
|
||||
|
||||
#. js-lingui-id: /xLNEx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Bcc"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: PFohi3
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
msgid "BCC"
|
||||
@@ -2721,9 +2730,11 @@ msgstr "Não consegue escanear? Copie o"
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
#: src/modules/spreadsheet-import/provider/components/SpreadsheetImport.tsx
|
||||
#: src/modules/side-panel/pages/compose-email/components/SidePanelComposeEmailPage.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposer.tsx
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
@@ -2763,6 +2774,11 @@ msgstr "Cancelar mudança de plano"
|
||||
msgid "Cancel plan switching?"
|
||||
msgstr "Cancelar mudança de plano?"
|
||||
|
||||
#. js-lingui-id: AnRu/j
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
msgid "Cancel reply"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: N6gPiD
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/settings/billing/components/SettingsBillingContent.tsx
|
||||
@@ -2831,11 +2847,22 @@ msgstr "Catalão"
|
||||
msgid "Category"
|
||||
msgstr "Categoria"
|
||||
|
||||
#. js-lingui-id: RpYfjZ
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Cc"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XdZeJk
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
msgid "CC"
|
||||
msgstr "Cc"
|
||||
|
||||
#. js-lingui-id: Dgsw8A
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Cc/Bcc"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: tHntRt
|
||||
#: src/modules/page-layout/widgets/standalone-rich-text/components/DashboardEditorSideMenu.tsx
|
||||
#: src/modules/blocknote-editor/components/CustomSideMenu.tsx
|
||||
@@ -5350,6 +5377,11 @@ msgstr "O e-mail deve ser um e-mail válido"
|
||||
msgid "Email or domain is already in blocklist"
|
||||
msgstr "O e-mail ou domínio já está na lista de bloqueio"
|
||||
|
||||
#. js-lingui-id: Xl929X
|
||||
#: src/modules/activities/emails/hooks/useSendEmail.ts
|
||||
msgid "Email sent successfully"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: jvneza
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "Email support"
|
||||
@@ -6439,6 +6471,12 @@ msgstr ""
|
||||
msgid "Failed to save workspace instructions"
|
||||
msgstr "Falha ao guardar as instruções do espaço de trabalho"
|
||||
|
||||
#. js-lingui-id: Lo/GQ5
|
||||
#: src/modules/activities/emails/hooks/useSendEmail.ts
|
||||
#: src/modules/activities/emails/hooks/useSendEmail.ts
|
||||
msgid "Failed to send email"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: aj02T8
|
||||
#: src/modules/settings/admin-panel/health-status/maintenance-mode/components/SettingsAdminMaintenanceMode.tsx
|
||||
msgid "Failed to set maintenance mode."
|
||||
@@ -6930,6 +6968,11 @@ msgstr "Créditos da avaliação gratuita esgotados. Assine agora para continuar
|
||||
msgid "French"
|
||||
msgstr "Francês"
|
||||
|
||||
#. js-lingui-id: ejVYRQ
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "From"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: qR8gT9
|
||||
#: src/modules/workflow/workflow-trigger/utils/cron-to-human/descriptors/getDayOfWeekDescription.ts
|
||||
msgid "from {startDay} to {endDay}"
|
||||
@@ -9398,6 +9441,11 @@ msgstr "Nova conversa"
|
||||
msgid "New conversation"
|
||||
msgstr "Nova conversa"
|
||||
|
||||
#. js-lingui-id: 3RwJHq
|
||||
#: src/modules/side-panel/hooks/useOpenComposeEmailInSidePanel.ts
|
||||
msgid "New Email"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wqoYqp
|
||||
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
|
||||
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
|
||||
@@ -11374,10 +11422,11 @@ msgstr ""
|
||||
msgid "Read your profile"
|
||||
msgstr "Ler o seu perfil"
|
||||
|
||||
#. js-lingui-id: tCXcL7
|
||||
#. js-lingui-id: 6pSHJ5
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Read-only — managed by Twenty"
|
||||
msgstr "Só de leitura — gerido pela Twenty"
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Read-only"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: W+ApAD
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
@@ -11399,6 +11448,11 @@ msgstr "Receber um e-mail com um link para atualização da palavra-passe"
|
||||
msgid "Recent Events (oldest → newest)"
|
||||
msgstr "Eventos Recentes (mais antigo → mais recente)"
|
||||
|
||||
#. js-lingui-id: yPrbsy
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Recipients"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: b2+5uV
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
msgid "Recommended Models"
|
||||
@@ -11750,6 +11804,8 @@ msgid "Reorder options"
|
||||
msgstr "Reordenar opções"
|
||||
|
||||
#. js-lingui-id: ImOQa9
|
||||
#: src/modules/side-panel/hooks/useOpenComposeEmailInSidePanel.ts
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
#: src/modules/activities/emails/components/EmailThreadBottomBar.tsx
|
||||
msgid "Reply"
|
||||
msgstr "Responder"
|
||||
@@ -11759,6 +11815,11 @@ msgstr "Responder"
|
||||
msgid "Reply to all"
|
||||
msgstr "Responder a todos"
|
||||
|
||||
#. js-lingui-id: fiPYZo
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
msgid "Reply..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: tbmZmI
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "Report and issue"
|
||||
@@ -11784,6 +11845,7 @@ msgstr "Reenviar email"
|
||||
#. js-lingui-id: OfhWJH
|
||||
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
|
||||
#: src/modules/views/components/ViewBarDetails.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
msgid "Reset"
|
||||
msgstr "Redefinir"
|
||||
|
||||
@@ -11804,6 +11866,8 @@ msgid "Reset to"
|
||||
msgstr "Redefinir para"
|
||||
|
||||
#. js-lingui-id: L+rMC9
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
msgid "Reset to default"
|
||||
@@ -12698,6 +12762,13 @@ msgstr "Selecione quais modelos aparecem como recomendados no seletor de modelos
|
||||
msgid "Select your preferred language"
|
||||
msgstr "Selecione a sua língua preferida"
|
||||
|
||||
#. js-lingui-id: JlFcis
|
||||
#: src/modules/side-panel/pages/compose-email/components/SidePanelComposeEmailPage.tsx
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposer.tsx
|
||||
msgid "Send"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mjK8F3
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
msgid "Send an invite email to your team"
|
||||
@@ -13413,6 +13484,8 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: UJmAAK
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Subject"
|
||||
msgstr "Assunto"
|
||||
|
||||
@@ -13653,11 +13726,6 @@ msgstr ""
|
||||
msgid "System Prompt"
|
||||
msgstr "Prompt do Sistema"
|
||||
|
||||
#. js-lingui-id: BXGTWI
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "System Prompt ({totalTokenCount})"
|
||||
msgstr "Prompt do sistema ({totalTokenCount})"
|
||||
|
||||
#. js-lingui-id: k+7QWO
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
msgid "System relations"
|
||||
@@ -14144,6 +14212,11 @@ msgstr ""
|
||||
msgid "This week"
|
||||
msgstr "Esta semana"
|
||||
|
||||
#. js-lingui-id: VbVocX
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
msgid "This will cancel all modifications done on the widget. This action cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: h4VeOo
|
||||
#: src/modules/settings/billing/hooks/useBillingWording.ts
|
||||
msgid "This will cancel the scheduled interval change and keep your current billing interval ({currentIntervalLabel})."
|
||||
@@ -14259,6 +14332,7 @@ msgstr "título"
|
||||
|
||||
#. js-lingui-id: /jQctM
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "To"
|
||||
msgstr "Para"
|
||||
|
||||
@@ -14582,6 +14656,11 @@ msgstr "Escreva \"\\/\" para comandos, \"@\" para menções"
|
||||
msgid "Type anything..."
|
||||
msgstr "Digite qualquer coisa..."
|
||||
|
||||
#. js-lingui-id: LaEX5I
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Type something or press \"/\" to see commands"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: UhqKcC
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Type to search records"
|
||||
@@ -14909,6 +14988,11 @@ msgstr "Atualize para acessar"
|
||||
msgid "Upgrade to Enterprise to access audit logs."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: D+7y/3
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Upgrade to Enterprise to share private applications."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +Gi3x1
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationVersionContainer.tsx
|
||||
@@ -15345,7 +15429,6 @@ msgstr "Ver logs"
|
||||
|
||||
#. js-lingui-id: 7PrSCy
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "View marketplace page"
|
||||
msgstr "Ver página no Marketplace"
|
||||
|
||||
@@ -15359,6 +15442,11 @@ msgstr ""
|
||||
msgid "View Previous AI Chats"
|
||||
msgstr "Ver Conversas de IA Anteriores"
|
||||
|
||||
#. js-lingui-id: NnJpTN
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "View private application page"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: hAAsm/
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowEditActionAiAgent.tsx
|
||||
msgid "View role"
|
||||
|
||||
@@ -456,11 +456,13 @@ msgstr "{workspaceMemberName} va fi retras din următorul rol:"
|
||||
msgid "••••••••"
|
||||
msgstr "••••••••"
|
||||
|
||||
#. js-lingui-id: tD9raa
|
||||
#. js-lingui-id: SMgdEJ
|
||||
#. placeholder {0}: formatNumber(preview.estimatedTokenCount, { abbreviate: true, decimals: 1, })
|
||||
#. placeholder {0}: formatNumber( section.estimatedTokenCount, { abbreviate: true, decimals: 1, }, )
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "~{0} tokens"
|
||||
msgstr "~{0} jetoane"
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "~ {0} tokens"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Cx0xl3
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
|
||||
@@ -1707,6 +1709,7 @@ msgstr "A apărut o eroare la încărcarea imaginii."
|
||||
#: src/modules/views/hooks/internal/usePerformViewAPIPersist.ts
|
||||
#: src/modules/ui/feedback/snack-bar-manager/hooks/useSnackBar.ts
|
||||
#: src/modules/page-layout/hooks/useUpdatePageLayoutWithTabsAndWidgets.ts
|
||||
#: src/modules/page-layout/hooks/useResetPageLayoutWidgetToDefault.ts
|
||||
#: src/modules/object-metadata/hooks/useUpdateOneObjectMetadataItem.ts
|
||||
#: src/modules/object-metadata/hooks/useUpdateOneFieldMetadataItem.ts
|
||||
#: src/modules/object-metadata/hooks/useDeleteOneObjectMetadataItem.ts
|
||||
@@ -2418,6 +2421,12 @@ msgstr "URL de bază"
|
||||
msgid "Base URL is required"
|
||||
msgstr "URL-ul de bază este necesar"
|
||||
|
||||
#. js-lingui-id: /xLNEx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Bcc"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: PFohi3
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
msgid "BCC"
|
||||
@@ -2721,9 +2730,11 @@ msgstr "Nu poți scana? Copiază"
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
#: src/modules/spreadsheet-import/provider/components/SpreadsheetImport.tsx
|
||||
#: src/modules/side-panel/pages/compose-email/components/SidePanelComposeEmailPage.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposer.tsx
|
||||
msgid "Cancel"
|
||||
msgstr "Anulare"
|
||||
|
||||
@@ -2763,6 +2774,11 @@ msgstr "Anulați schimbarea planului"
|
||||
msgid "Cancel plan switching?"
|
||||
msgstr "Anulați schimbarea planului?"
|
||||
|
||||
#. js-lingui-id: AnRu/j
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
msgid "Cancel reply"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: N6gPiD
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/settings/billing/components/SettingsBillingContent.tsx
|
||||
@@ -2831,11 +2847,22 @@ msgstr "Catalană"
|
||||
msgid "Category"
|
||||
msgstr "Categorie"
|
||||
|
||||
#. js-lingui-id: RpYfjZ
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Cc"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XdZeJk
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
msgid "CC"
|
||||
msgstr "CC"
|
||||
|
||||
#. js-lingui-id: Dgsw8A
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Cc/Bcc"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: tHntRt
|
||||
#: src/modules/page-layout/widgets/standalone-rich-text/components/DashboardEditorSideMenu.tsx
|
||||
#: src/modules/blocknote-editor/components/CustomSideMenu.tsx
|
||||
@@ -5350,6 +5377,11 @@ msgstr "E-mailul trebuie să fie unul valid"
|
||||
msgid "Email or domain is already in blocklist"
|
||||
msgstr "Emailul sau domeniul este deja în lista de blocare"
|
||||
|
||||
#. js-lingui-id: Xl929X
|
||||
#: src/modules/activities/emails/hooks/useSendEmail.ts
|
||||
msgid "Email sent successfully"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: jvneza
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "Email support"
|
||||
@@ -6439,6 +6471,12 @@ msgstr ""
|
||||
msgid "Failed to save workspace instructions"
|
||||
msgstr "Nu s-au putut salva instrucțiunile spațiului de lucru"
|
||||
|
||||
#. js-lingui-id: Lo/GQ5
|
||||
#: src/modules/activities/emails/hooks/useSendEmail.ts
|
||||
#: src/modules/activities/emails/hooks/useSendEmail.ts
|
||||
msgid "Failed to send email"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: aj02T8
|
||||
#: src/modules/settings/admin-panel/health-status/maintenance-mode/components/SettingsAdminMaintenanceMode.tsx
|
||||
msgid "Failed to set maintenance mode."
|
||||
@@ -6930,6 +6968,11 @@ msgstr "Creditele din perioada de probă au fost epuizate. Abonați-vă acum pen
|
||||
msgid "French"
|
||||
msgstr "Franceză"
|
||||
|
||||
#. js-lingui-id: ejVYRQ
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "From"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: qR8gT9
|
||||
#: src/modules/workflow/workflow-trigger/utils/cron-to-human/descriptors/getDayOfWeekDescription.ts
|
||||
msgid "from {startDay} to {endDay}"
|
||||
@@ -9398,6 +9441,11 @@ msgstr "Chat nou"
|
||||
msgid "New conversation"
|
||||
msgstr "Conversație nouă"
|
||||
|
||||
#. js-lingui-id: 3RwJHq
|
||||
#: src/modules/side-panel/hooks/useOpenComposeEmailInSidePanel.ts
|
||||
msgid "New Email"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wqoYqp
|
||||
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
|
||||
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
|
||||
@@ -11374,10 +11422,11 @@ msgstr ""
|
||||
msgid "Read your profile"
|
||||
msgstr "Citiți profilul dvs."
|
||||
|
||||
#. js-lingui-id: tCXcL7
|
||||
#. js-lingui-id: 6pSHJ5
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Read-only — managed by Twenty"
|
||||
msgstr "Numai pentru citire — gestionat de Twenty"
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Read-only"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: W+ApAD
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
@@ -11399,6 +11448,11 @@ msgstr "Primește un email cu linkul de actualizare a parolei"
|
||||
msgid "Recent Events (oldest → newest)"
|
||||
msgstr "Evenimente recente (cel mai vechi → cel mai nou)"
|
||||
|
||||
#. js-lingui-id: yPrbsy
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Recipients"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: b2+5uV
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
msgid "Recommended Models"
|
||||
@@ -11750,6 +11804,8 @@ msgid "Reorder options"
|
||||
msgstr "Reordonează opțiunile"
|
||||
|
||||
#. js-lingui-id: ImOQa9
|
||||
#: src/modules/side-panel/hooks/useOpenComposeEmailInSidePanel.ts
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
#: src/modules/activities/emails/components/EmailThreadBottomBar.tsx
|
||||
msgid "Reply"
|
||||
msgstr "Răspunde"
|
||||
@@ -11759,6 +11815,11 @@ msgstr "Răspunde"
|
||||
msgid "Reply to all"
|
||||
msgstr "Răspunde tuturor"
|
||||
|
||||
#. js-lingui-id: fiPYZo
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
msgid "Reply..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: tbmZmI
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "Report and issue"
|
||||
@@ -11784,6 +11845,7 @@ msgstr "Retrimite email"
|
||||
#. js-lingui-id: OfhWJH
|
||||
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
|
||||
#: src/modules/views/components/ViewBarDetails.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
msgid "Reset"
|
||||
msgstr "Resetează"
|
||||
|
||||
@@ -11804,6 +11866,8 @@ msgid "Reset to"
|
||||
msgstr "Resetează la"
|
||||
|
||||
#. js-lingui-id: L+rMC9
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
msgid "Reset to default"
|
||||
@@ -12698,6 +12762,13 @@ msgstr "Selectați ce modele apar ca recomandate în selectorul de modele al spa
|
||||
msgid "Select your preferred language"
|
||||
msgstr "Selectează limba preferată"
|
||||
|
||||
#. js-lingui-id: JlFcis
|
||||
#: src/modules/side-panel/pages/compose-email/components/SidePanelComposeEmailPage.tsx
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposer.tsx
|
||||
msgid "Send"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mjK8F3
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
msgid "Send an invite email to your team"
|
||||
@@ -13413,6 +13484,8 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: UJmAAK
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Subject"
|
||||
msgstr "Subiect"
|
||||
|
||||
@@ -13653,11 +13726,6 @@ msgstr ""
|
||||
msgid "System Prompt"
|
||||
msgstr "Prompt de Sistem"
|
||||
|
||||
#. js-lingui-id: BXGTWI
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "System Prompt ({totalTokenCount})"
|
||||
msgstr "Prompt de sistem ({totalTokenCount})"
|
||||
|
||||
#. js-lingui-id: k+7QWO
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
msgid "System relations"
|
||||
@@ -14144,6 +14212,11 @@ msgstr ""
|
||||
msgid "This week"
|
||||
msgstr "Săptămâna aceasta"
|
||||
|
||||
#. js-lingui-id: VbVocX
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
msgid "This will cancel all modifications done on the widget. This action cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: h4VeOo
|
||||
#: src/modules/settings/billing/hooks/useBillingWording.ts
|
||||
msgid "This will cancel the scheduled interval change and keep your current billing interval ({currentIntervalLabel})."
|
||||
@@ -14259,6 +14332,7 @@ msgstr "titlu"
|
||||
|
||||
#. js-lingui-id: /jQctM
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "To"
|
||||
msgstr "Către"
|
||||
|
||||
@@ -14582,6 +14656,11 @@ msgstr "Tastați '/' pentru comenzi, '@' pentru mențiuni"
|
||||
msgid "Type anything..."
|
||||
msgstr "Tastează orice..."
|
||||
|
||||
#. js-lingui-id: LaEX5I
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Type something or press \"/\" to see commands"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: UhqKcC
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Type to search records"
|
||||
@@ -14909,6 +14988,11 @@ msgstr "Treci la un plan superior pentru a avea acces"
|
||||
msgid "Upgrade to Enterprise to access audit logs."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: D+7y/3
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Upgrade to Enterprise to share private applications."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +Gi3x1
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationVersionContainer.tsx
|
||||
@@ -15345,7 +15429,6 @@ msgstr "Vizualizați jurnalele"
|
||||
|
||||
#. js-lingui-id: 7PrSCy
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "View marketplace page"
|
||||
msgstr "Vizualizați pagina din marketplace"
|
||||
|
||||
@@ -15359,6 +15442,11 @@ msgstr ""
|
||||
msgid "View Previous AI Chats"
|
||||
msgstr "Vizualizează Chat-urile AI Anterioare"
|
||||
|
||||
#. js-lingui-id: NnJpTN
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "View private application page"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: hAAsm/
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowEditActionAiAgent.tsx
|
||||
msgid "View role"
|
||||
|
||||
Binary file not shown.
@@ -456,11 +456,13 @@ msgstr "{workspaceMemberName} ће бити уклоњен из следеће
|
||||
msgid "••••••••"
|
||||
msgstr "••••••••"
|
||||
|
||||
#. js-lingui-id: tD9raa
|
||||
#. js-lingui-id: SMgdEJ
|
||||
#. placeholder {0}: formatNumber(preview.estimatedTokenCount, { abbreviate: true, decimals: 1, })
|
||||
#. placeholder {0}: formatNumber( section.estimatedTokenCount, { abbreviate: true, decimals: 1, }, )
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "~{0} tokens"
|
||||
msgstr "~{0} токена"
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "~ {0} tokens"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Cx0xl3
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
|
||||
@@ -1707,6 +1709,7 @@ msgstr "Дошло је до грешке приликом отпремања с
|
||||
#: src/modules/views/hooks/internal/usePerformViewAPIPersist.ts
|
||||
#: src/modules/ui/feedback/snack-bar-manager/hooks/useSnackBar.ts
|
||||
#: src/modules/page-layout/hooks/useUpdatePageLayoutWithTabsAndWidgets.ts
|
||||
#: src/modules/page-layout/hooks/useResetPageLayoutWidgetToDefault.ts
|
||||
#: src/modules/object-metadata/hooks/useUpdateOneObjectMetadataItem.ts
|
||||
#: src/modules/object-metadata/hooks/useUpdateOneFieldMetadataItem.ts
|
||||
#: src/modules/object-metadata/hooks/useDeleteOneObjectMetadataItem.ts
|
||||
@@ -2418,6 +2421,12 @@ msgstr "Основни URL"
|
||||
msgid "Base URL is required"
|
||||
msgstr "Основни URL је обавезан"
|
||||
|
||||
#. js-lingui-id: /xLNEx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Bcc"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: PFohi3
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
msgid "BCC"
|
||||
@@ -2721,9 +2730,11 @@ msgstr "Не можете да скенирате? Копирајте"
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
#: src/modules/spreadsheet-import/provider/components/SpreadsheetImport.tsx
|
||||
#: src/modules/side-panel/pages/compose-email/components/SidePanelComposeEmailPage.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposer.tsx
|
||||
msgid "Cancel"
|
||||
msgstr "Откажи"
|
||||
|
||||
@@ -2763,6 +2774,11 @@ msgstr "Откажи промену плана"
|
||||
msgid "Cancel plan switching?"
|
||||
msgstr "Откажи промену плана?"
|
||||
|
||||
#. js-lingui-id: AnRu/j
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
msgid "Cancel reply"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: N6gPiD
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/settings/billing/components/SettingsBillingContent.tsx
|
||||
@@ -2831,11 +2847,22 @@ msgstr "Каталонски"
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: RpYfjZ
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Cc"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XdZeJk
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
msgid "CC"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Dgsw8A
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Cc/Bcc"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: tHntRt
|
||||
#: src/modules/page-layout/widgets/standalone-rich-text/components/DashboardEditorSideMenu.tsx
|
||||
#: src/modules/blocknote-editor/components/CustomSideMenu.tsx
|
||||
@@ -5350,6 +5377,11 @@ msgstr "Имејл мора бити важећи"
|
||||
msgid "Email or domain is already in blocklist"
|
||||
msgstr "Имејл или домен су већ на листи блокираних"
|
||||
|
||||
#. js-lingui-id: Xl929X
|
||||
#: src/modules/activities/emails/hooks/useSendEmail.ts
|
||||
msgid "Email sent successfully"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: jvneza
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "Email support"
|
||||
@@ -6439,6 +6471,12 @@ msgstr ""
|
||||
msgid "Failed to save workspace instructions"
|
||||
msgstr "Није успело чување упутстава за радни простор"
|
||||
|
||||
#. js-lingui-id: Lo/GQ5
|
||||
#: src/modules/activities/emails/hooks/useSendEmail.ts
|
||||
#: src/modules/activities/emails/hooks/useSendEmail.ts
|
||||
msgid "Failed to send email"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: aj02T8
|
||||
#: src/modules/settings/admin-panel/health-status/maintenance-mode/components/SettingsAdminMaintenanceMode.tsx
|
||||
msgid "Failed to set maintenance mode."
|
||||
@@ -6930,6 +6968,11 @@ msgstr "Кредити из бесплатног пробног периода
|
||||
msgid "French"
|
||||
msgstr "Француски"
|
||||
|
||||
#. js-lingui-id: ejVYRQ
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "From"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: qR8gT9
|
||||
#: src/modules/workflow/workflow-trigger/utils/cron-to-human/descriptors/getDayOfWeekDescription.ts
|
||||
msgid "from {startDay} to {endDay}"
|
||||
@@ -9398,6 +9441,11 @@ msgstr "Нови чет"
|
||||
msgid "New conversation"
|
||||
msgstr "Нови разговор"
|
||||
|
||||
#. js-lingui-id: 3RwJHq
|
||||
#: src/modules/side-panel/hooks/useOpenComposeEmailInSidePanel.ts
|
||||
msgid "New Email"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wqoYqp
|
||||
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
|
||||
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
|
||||
@@ -11374,10 +11422,11 @@ msgstr ""
|
||||
msgid "Read your profile"
|
||||
msgstr "Читање вашег профила"
|
||||
|
||||
#. js-lingui-id: tCXcL7
|
||||
#. js-lingui-id: 6pSHJ5
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Read-only — managed by Twenty"
|
||||
msgstr "Само за читање — управља Twenty"
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Read-only"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: W+ApAD
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
@@ -11399,6 +11448,11 @@ msgstr "Примите имејл са везом за ажурирање лоз
|
||||
msgid "Recent Events (oldest → newest)"
|
||||
msgstr "Недавни догађаји (од најстаријег → најновијег)"
|
||||
|
||||
#. js-lingui-id: yPrbsy
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Recipients"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: b2+5uV
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
msgid "Recommended Models"
|
||||
@@ -11750,6 +11804,8 @@ msgid "Reorder options"
|
||||
msgstr "Промени редослед опција"
|
||||
|
||||
#. js-lingui-id: ImOQa9
|
||||
#: src/modules/side-panel/hooks/useOpenComposeEmailInSidePanel.ts
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
#: src/modules/activities/emails/components/EmailThreadBottomBar.tsx
|
||||
msgid "Reply"
|
||||
msgstr "Одговори"
|
||||
@@ -11759,6 +11815,11 @@ msgstr "Одговори"
|
||||
msgid "Reply to all"
|
||||
msgstr "Одговори свима"
|
||||
|
||||
#. js-lingui-id: fiPYZo
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
msgid "Reply..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: tbmZmI
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "Report and issue"
|
||||
@@ -11784,6 +11845,7 @@ msgstr "Поново пошаљи имејл"
|
||||
#. js-lingui-id: OfhWJH
|
||||
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
|
||||
#: src/modules/views/components/ViewBarDetails.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
msgid "Reset"
|
||||
msgstr "Ресетуј"
|
||||
|
||||
@@ -11804,6 +11866,8 @@ msgid "Reset to"
|
||||
msgstr "Ресетујте на"
|
||||
|
||||
#. js-lingui-id: L+rMC9
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
msgid "Reset to default"
|
||||
@@ -12698,6 +12762,13 @@ msgstr "Изаберите који се модели приказују као
|
||||
msgid "Select your preferred language"
|
||||
msgstr "Изаберите жељени језик"
|
||||
|
||||
#. js-lingui-id: JlFcis
|
||||
#: src/modules/side-panel/pages/compose-email/components/SidePanelComposeEmailPage.tsx
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposer.tsx
|
||||
msgid "Send"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mjK8F3
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
msgid "Send an invite email to your team"
|
||||
@@ -13413,6 +13484,8 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: UJmAAK
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Subject"
|
||||
msgstr "Тема"
|
||||
|
||||
@@ -13653,11 +13726,6 @@ msgstr ""
|
||||
msgid "System Prompt"
|
||||
msgstr "Системски упит"
|
||||
|
||||
#. js-lingui-id: BXGTWI
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "System Prompt ({totalTokenCount})"
|
||||
msgstr "Системски промпт ({totalTokenCount})"
|
||||
|
||||
#. js-lingui-id: k+7QWO
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
msgid "System relations"
|
||||
@@ -14144,6 +14212,11 @@ msgstr ""
|
||||
msgid "This week"
|
||||
msgstr "Ове недеље"
|
||||
|
||||
#. js-lingui-id: VbVocX
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
msgid "This will cancel all modifications done on the widget. This action cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: h4VeOo
|
||||
#: src/modules/settings/billing/hooks/useBillingWording.ts
|
||||
msgid "This will cancel the scheduled interval change and keep your current billing interval ({currentIntervalLabel})."
|
||||
@@ -14259,6 +14332,7 @@ msgstr "наслов"
|
||||
|
||||
#. js-lingui-id: /jQctM
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "To"
|
||||
msgstr ""
|
||||
|
||||
@@ -14582,6 +14656,11 @@ msgstr "Укуцајте '/' за команде, '@' за помињања"
|
||||
msgid "Type anything..."
|
||||
msgstr "Укуцајте било шта..."
|
||||
|
||||
#. js-lingui-id: LaEX5I
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Type something or press \"/\" to see commands"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: UhqKcC
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Type to search records"
|
||||
@@ -14909,6 +14988,11 @@ msgstr "Надоградите да бисте приступили"
|
||||
msgid "Upgrade to Enterprise to access audit logs."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: D+7y/3
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Upgrade to Enterprise to share private applications."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +Gi3x1
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationVersionContainer.tsx
|
||||
@@ -15345,7 +15429,6 @@ msgstr "Приказ дневника"
|
||||
|
||||
#. js-lingui-id: 7PrSCy
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "View marketplace page"
|
||||
msgstr "Погледајте страницу на маркетплејсу"
|
||||
|
||||
@@ -15359,6 +15442,11 @@ msgstr ""
|
||||
msgid "View Previous AI Chats"
|
||||
msgstr "Прегледај претходне разговоре са вештачком интелигенцијом"
|
||||
|
||||
#. js-lingui-id: NnJpTN
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "View private application page"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: hAAsm/
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowEditActionAiAgent.tsx
|
||||
msgid "View role"
|
||||
|
||||
@@ -456,11 +456,13 @@ msgstr "{workspaceMemberName} kommer att tas bort från följande roll:"
|
||||
msgid "••••••••"
|
||||
msgstr "••••••••"
|
||||
|
||||
#. js-lingui-id: tD9raa
|
||||
#. js-lingui-id: SMgdEJ
|
||||
#. placeholder {0}: formatNumber(preview.estimatedTokenCount, { abbreviate: true, decimals: 1, })
|
||||
#. placeholder {0}: formatNumber( section.estimatedTokenCount, { abbreviate: true, decimals: 1, }, )
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "~{0} tokens"
|
||||
msgstr "~{0} token"
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "~ {0} tokens"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Cx0xl3
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
|
||||
@@ -1707,6 +1709,7 @@ msgstr "Ett fel uppstod när bilden laddades upp."
|
||||
#: src/modules/views/hooks/internal/usePerformViewAPIPersist.ts
|
||||
#: src/modules/ui/feedback/snack-bar-manager/hooks/useSnackBar.ts
|
||||
#: src/modules/page-layout/hooks/useUpdatePageLayoutWithTabsAndWidgets.ts
|
||||
#: src/modules/page-layout/hooks/useResetPageLayoutWidgetToDefault.ts
|
||||
#: src/modules/object-metadata/hooks/useUpdateOneObjectMetadataItem.ts
|
||||
#: src/modules/object-metadata/hooks/useUpdateOneFieldMetadataItem.ts
|
||||
#: src/modules/object-metadata/hooks/useDeleteOneObjectMetadataItem.ts
|
||||
@@ -2418,6 +2421,12 @@ msgstr "Bas-URL"
|
||||
msgid "Base URL is required"
|
||||
msgstr "Bas-URL krävs"
|
||||
|
||||
#. js-lingui-id: /xLNEx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Bcc"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: PFohi3
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
msgid "BCC"
|
||||
@@ -2721,9 +2730,11 @@ msgstr "Kan inte skanna? Kopiera "
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
#: src/modules/spreadsheet-import/provider/components/SpreadsheetImport.tsx
|
||||
#: src/modules/side-panel/pages/compose-email/components/SidePanelComposeEmailPage.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposer.tsx
|
||||
msgid "Cancel"
|
||||
msgstr "Avbryt"
|
||||
|
||||
@@ -2763,6 +2774,11 @@ msgstr "Avbryt planbyte"
|
||||
msgid "Cancel plan switching?"
|
||||
msgstr "Avbryt planbyte?"
|
||||
|
||||
#. js-lingui-id: AnRu/j
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
msgid "Cancel reply"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: N6gPiD
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/settings/billing/components/SettingsBillingContent.tsx
|
||||
@@ -2831,11 +2847,22 @@ msgstr "Catalan"
|
||||
msgid "Category"
|
||||
msgstr "Kategori"
|
||||
|
||||
#. js-lingui-id: RpYfjZ
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Cc"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XdZeJk
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
msgid "CC"
|
||||
msgstr "CC"
|
||||
|
||||
#. js-lingui-id: Dgsw8A
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Cc/Bcc"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: tHntRt
|
||||
#: src/modules/page-layout/widgets/standalone-rich-text/components/DashboardEditorSideMenu.tsx
|
||||
#: src/modules/blocknote-editor/components/CustomSideMenu.tsx
|
||||
@@ -5350,6 +5377,11 @@ msgstr "E-post måste vara en giltig e-postadress"
|
||||
msgid "Email or domain is already in blocklist"
|
||||
msgstr "E-post eller domän finns redan i blocklistan"
|
||||
|
||||
#. js-lingui-id: Xl929X
|
||||
#: src/modules/activities/emails/hooks/useSendEmail.ts
|
||||
msgid "Email sent successfully"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: jvneza
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "Email support"
|
||||
@@ -6439,6 +6471,12 @@ msgstr ""
|
||||
msgid "Failed to save workspace instructions"
|
||||
msgstr "Det gick inte att spara instruktionerna för arbetsytan"
|
||||
|
||||
#. js-lingui-id: Lo/GQ5
|
||||
#: src/modules/activities/emails/hooks/useSendEmail.ts
|
||||
#: src/modules/activities/emails/hooks/useSendEmail.ts
|
||||
msgid "Failed to send email"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: aj02T8
|
||||
#: src/modules/settings/admin-panel/health-status/maintenance-mode/components/SettingsAdminMaintenanceMode.tsx
|
||||
msgid "Failed to set maintenance mode."
|
||||
@@ -6930,6 +6968,11 @@ msgstr "Kostnadsfria provkrediter är slut. Prenumerera nu för att fortsätta a
|
||||
msgid "French"
|
||||
msgstr "Franska"
|
||||
|
||||
#. js-lingui-id: ejVYRQ
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "From"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: qR8gT9
|
||||
#: src/modules/workflow/workflow-trigger/utils/cron-to-human/descriptors/getDayOfWeekDescription.ts
|
||||
msgid "from {startDay} to {endDay}"
|
||||
@@ -9400,6 +9443,11 @@ msgstr "Ny chatt"
|
||||
msgid "New conversation"
|
||||
msgstr "Ny konversation"
|
||||
|
||||
#. js-lingui-id: 3RwJHq
|
||||
#: src/modules/side-panel/hooks/useOpenComposeEmailInSidePanel.ts
|
||||
msgid "New Email"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wqoYqp
|
||||
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
|
||||
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
|
||||
@@ -11376,10 +11424,11 @@ msgstr ""
|
||||
msgid "Read your profile"
|
||||
msgstr "Läs din profil"
|
||||
|
||||
#. js-lingui-id: tCXcL7
|
||||
#. js-lingui-id: 6pSHJ5
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Read-only — managed by Twenty"
|
||||
msgstr "Skrivskyddat — hanteras av Twenty"
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Read-only"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: W+ApAD
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
@@ -11401,6 +11450,11 @@ msgstr "Ta emot ett e-postmeddelande med länk för att uppdatera lösenordet"
|
||||
msgid "Recent Events (oldest → newest)"
|
||||
msgstr "Senaste händelserna (äldst → nyast)"
|
||||
|
||||
#. js-lingui-id: yPrbsy
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Recipients"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: b2+5uV
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
msgid "Recommended Models"
|
||||
@@ -11752,6 +11806,8 @@ msgid "Reorder options"
|
||||
msgstr "Ändra ordning på alternativen"
|
||||
|
||||
#. js-lingui-id: ImOQa9
|
||||
#: src/modules/side-panel/hooks/useOpenComposeEmailInSidePanel.ts
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
#: src/modules/activities/emails/components/EmailThreadBottomBar.tsx
|
||||
msgid "Reply"
|
||||
msgstr "Svara"
|
||||
@@ -11761,6 +11817,11 @@ msgstr "Svara"
|
||||
msgid "Reply to all"
|
||||
msgstr "Svara alla"
|
||||
|
||||
#. js-lingui-id: fiPYZo
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
msgid "Reply..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: tbmZmI
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "Report and issue"
|
||||
@@ -11786,6 +11847,7 @@ msgstr "Skicka e-post på nytt"
|
||||
#. js-lingui-id: OfhWJH
|
||||
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
|
||||
#: src/modules/views/components/ViewBarDetails.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
msgid "Reset"
|
||||
msgstr "Återställ"
|
||||
|
||||
@@ -11806,6 +11868,8 @@ msgid "Reset to"
|
||||
msgstr "Återställ till"
|
||||
|
||||
#. js-lingui-id: L+rMC9
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
msgid "Reset to default"
|
||||
@@ -12702,6 +12766,13 @@ msgstr "Välj vilka modeller som ska visas som rekommenderade i arbetsytans mode
|
||||
msgid "Select your preferred language"
|
||||
msgstr "Välj ditt föredragna språk"
|
||||
|
||||
#. js-lingui-id: JlFcis
|
||||
#: src/modules/side-panel/pages/compose-email/components/SidePanelComposeEmailPage.tsx
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposer.tsx
|
||||
msgid "Send"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mjK8F3
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
msgid "Send an invite email to your team"
|
||||
@@ -13417,6 +13488,8 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: UJmAAK
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Subject"
|
||||
msgstr "Ämne"
|
||||
|
||||
@@ -13659,11 +13732,6 @@ msgstr ""
|
||||
msgid "System Prompt"
|
||||
msgstr "Systemuppmaning"
|
||||
|
||||
#. js-lingui-id: BXGTWI
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "System Prompt ({totalTokenCount})"
|
||||
msgstr "Systemprompt ({totalTokenCount})"
|
||||
|
||||
#. js-lingui-id: k+7QWO
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
msgid "System relations"
|
||||
@@ -14152,6 +14220,11 @@ msgstr ""
|
||||
msgid "This week"
|
||||
msgstr "Denna vecka"
|
||||
|
||||
#. js-lingui-id: VbVocX
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
msgid "This will cancel all modifications done on the widget. This action cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: h4VeOo
|
||||
#: src/modules/settings/billing/hooks/useBillingWording.ts
|
||||
msgid "This will cancel the scheduled interval change and keep your current billing interval ({currentIntervalLabel})."
|
||||
@@ -14267,6 +14340,7 @@ msgstr "titel"
|
||||
|
||||
#. js-lingui-id: /jQctM
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "To"
|
||||
msgstr "Till"
|
||||
|
||||
@@ -14590,6 +14664,11 @@ msgstr "Skriv '/' för kommandon, '@' för omnämnanden"
|
||||
msgid "Type anything..."
|
||||
msgstr "Skriv något..."
|
||||
|
||||
#. js-lingui-id: LaEX5I
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Type something or press \"/\" to see commands"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: UhqKcC
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Type to search records"
|
||||
@@ -14917,6 +14996,11 @@ msgstr "Uppgradera för att få åtkomst"
|
||||
msgid "Upgrade to Enterprise to access audit logs."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: D+7y/3
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Upgrade to Enterprise to share private applications."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +Gi3x1
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationVersionContainer.tsx
|
||||
@@ -15353,7 +15437,6 @@ msgstr "Visa loggar"
|
||||
|
||||
#. js-lingui-id: 7PrSCy
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "View marketplace page"
|
||||
msgstr "Visa sidan på marknadsplatsen"
|
||||
|
||||
@@ -15367,6 +15450,11 @@ msgstr ""
|
||||
msgid "View Previous AI Chats"
|
||||
msgstr "Visa tidigare AI-konversationer"
|
||||
|
||||
#. js-lingui-id: NnJpTN
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "View private application page"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: hAAsm/
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowEditActionAiAgent.tsx
|
||||
msgid "View role"
|
||||
|
||||
@@ -456,11 +456,13 @@ msgstr "{workspaceMemberName} aşağıdaki rolden atılacak:"
|
||||
msgid "••••••••"
|
||||
msgstr "••••••••"
|
||||
|
||||
#. js-lingui-id: tD9raa
|
||||
#. js-lingui-id: SMgdEJ
|
||||
#. placeholder {0}: formatNumber(preview.estimatedTokenCount, { abbreviate: true, decimals: 1, })
|
||||
#. placeholder {0}: formatNumber( section.estimatedTokenCount, { abbreviate: true, decimals: 1, }, )
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "~{0} tokens"
|
||||
msgstr "~{0} belirteç"
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "~ {0} tokens"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Cx0xl3
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
|
||||
@@ -1707,6 +1709,7 @@ msgstr "Resim yüklenirken bir hata oluştu."
|
||||
#: src/modules/views/hooks/internal/usePerformViewAPIPersist.ts
|
||||
#: src/modules/ui/feedback/snack-bar-manager/hooks/useSnackBar.ts
|
||||
#: src/modules/page-layout/hooks/useUpdatePageLayoutWithTabsAndWidgets.ts
|
||||
#: src/modules/page-layout/hooks/useResetPageLayoutWidgetToDefault.ts
|
||||
#: src/modules/object-metadata/hooks/useUpdateOneObjectMetadataItem.ts
|
||||
#: src/modules/object-metadata/hooks/useUpdateOneFieldMetadataItem.ts
|
||||
#: src/modules/object-metadata/hooks/useDeleteOneObjectMetadataItem.ts
|
||||
@@ -2418,6 +2421,12 @@ msgstr "Temel URL"
|
||||
msgid "Base URL is required"
|
||||
msgstr "Temel URL gerekli"
|
||||
|
||||
#. js-lingui-id: /xLNEx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Bcc"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: PFohi3
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
msgid "BCC"
|
||||
@@ -2721,9 +2730,11 @@ msgstr "Tarayamaz mısınız? Kopyalayın."
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
#: src/modules/spreadsheet-import/provider/components/SpreadsheetImport.tsx
|
||||
#: src/modules/side-panel/pages/compose-email/components/SidePanelComposeEmailPage.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposer.tsx
|
||||
msgid "Cancel"
|
||||
msgstr "İptal"
|
||||
|
||||
@@ -2763,6 +2774,11 @@ msgstr "Plan değişikliğini iptal et"
|
||||
msgid "Cancel plan switching?"
|
||||
msgstr "Plan değişikliğini iptal et?"
|
||||
|
||||
#. js-lingui-id: AnRu/j
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
msgid "Cancel reply"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: N6gPiD
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/settings/billing/components/SettingsBillingContent.tsx
|
||||
@@ -2831,11 +2847,22 @@ msgstr "Katalanca"
|
||||
msgid "Category"
|
||||
msgstr "Kategori"
|
||||
|
||||
#. js-lingui-id: RpYfjZ
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Cc"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XdZeJk
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
msgid "CC"
|
||||
msgstr "CC"
|
||||
|
||||
#. js-lingui-id: Dgsw8A
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Cc/Bcc"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: tHntRt
|
||||
#: src/modules/page-layout/widgets/standalone-rich-text/components/DashboardEditorSideMenu.tsx
|
||||
#: src/modules/blocknote-editor/components/CustomSideMenu.tsx
|
||||
@@ -5350,6 +5377,11 @@ msgstr "Geçerli bir e-posta adresi olmalıdır"
|
||||
msgid "Email or domain is already in blocklist"
|
||||
msgstr "E-posta veya alan adı zaten engellenmişler listesinde"
|
||||
|
||||
#. js-lingui-id: Xl929X
|
||||
#: src/modules/activities/emails/hooks/useSendEmail.ts
|
||||
msgid "Email sent successfully"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: jvneza
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "Email support"
|
||||
@@ -6439,6 +6471,12 @@ msgstr ""
|
||||
msgid "Failed to save workspace instructions"
|
||||
msgstr "Çalışma alanı talimatları kaydedilemedi"
|
||||
|
||||
#. js-lingui-id: Lo/GQ5
|
||||
#: src/modules/activities/emails/hooks/useSendEmail.ts
|
||||
#: src/modules/activities/emails/hooks/useSendEmail.ts
|
||||
msgid "Failed to send email"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: aj02T8
|
||||
#: src/modules/settings/admin-panel/health-status/maintenance-mode/components/SettingsAdminMaintenanceMode.tsx
|
||||
msgid "Failed to set maintenance mode."
|
||||
@@ -6930,6 +6968,11 @@ msgstr "Ücretsiz deneme kredileri tükendi. Yapay Zekâ özelliklerini kullanma
|
||||
msgid "French"
|
||||
msgstr "Fransızca"
|
||||
|
||||
#. js-lingui-id: ejVYRQ
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "From"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: qR8gT9
|
||||
#: src/modules/workflow/workflow-trigger/utils/cron-to-human/descriptors/getDayOfWeekDescription.ts
|
||||
msgid "from {startDay} to {endDay}"
|
||||
@@ -9398,6 +9441,11 @@ msgstr "Yeni sohbet"
|
||||
msgid "New conversation"
|
||||
msgstr "Yeni sohbet"
|
||||
|
||||
#. js-lingui-id: 3RwJHq
|
||||
#: src/modules/side-panel/hooks/useOpenComposeEmailInSidePanel.ts
|
||||
msgid "New Email"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wqoYqp
|
||||
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
|
||||
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
|
||||
@@ -11374,10 +11422,11 @@ msgstr ""
|
||||
msgid "Read your profile"
|
||||
msgstr "Profilinizi okuyun"
|
||||
|
||||
#. js-lingui-id: tCXcL7
|
||||
#. js-lingui-id: 6pSHJ5
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Read-only — managed by Twenty"
|
||||
msgstr "Salt okunur — Twenty tarafından yönetilir"
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Read-only"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: W+ApAD
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
@@ -11399,6 +11448,11 @@ msgstr "Şifre güncelleme bağlantısı içeren e-posta alın"
|
||||
msgid "Recent Events (oldest → newest)"
|
||||
msgstr "Son Olaylar (eskiden → yeniye)"
|
||||
|
||||
#. js-lingui-id: yPrbsy
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Recipients"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: b2+5uV
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
msgid "Recommended Models"
|
||||
@@ -11750,6 +11804,8 @@ msgid "Reorder options"
|
||||
msgstr "Seçenekleri yeniden sırala"
|
||||
|
||||
#. js-lingui-id: ImOQa9
|
||||
#: src/modules/side-panel/hooks/useOpenComposeEmailInSidePanel.ts
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
#: src/modules/activities/emails/components/EmailThreadBottomBar.tsx
|
||||
msgid "Reply"
|
||||
msgstr "Cevapla"
|
||||
@@ -11759,6 +11815,11 @@ msgstr "Cevapla"
|
||||
msgid "Reply to all"
|
||||
msgstr "Hepsine cevapla"
|
||||
|
||||
#. js-lingui-id: fiPYZo
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
msgid "Reply..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: tbmZmI
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "Report and issue"
|
||||
@@ -11784,6 +11845,7 @@ msgstr "E-postayı yeniden gönder"
|
||||
#. js-lingui-id: OfhWJH
|
||||
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
|
||||
#: src/modules/views/components/ViewBarDetails.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
msgid "Reset"
|
||||
msgstr "Sıfırla"
|
||||
|
||||
@@ -11804,6 +11866,8 @@ msgid "Reset to"
|
||||
msgstr "Sıfırla"
|
||||
|
||||
#. js-lingui-id: L+rMC9
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
msgid "Reset to default"
|
||||
@@ -12698,6 +12762,13 @@ msgstr "Çalışma alanı model seçicisinde önerilen olarak görünecek modell
|
||||
msgid "Select your preferred language"
|
||||
msgstr "Tercih ettiğiniz dili seçin"
|
||||
|
||||
#. js-lingui-id: JlFcis
|
||||
#: src/modules/side-panel/pages/compose-email/components/SidePanelComposeEmailPage.tsx
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposer.tsx
|
||||
msgid "Send"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mjK8F3
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
msgid "Send an invite email to your team"
|
||||
@@ -13413,6 +13484,8 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: UJmAAK
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Subject"
|
||||
msgstr "Konu"
|
||||
|
||||
@@ -13653,11 +13726,6 @@ msgstr ""
|
||||
msgid "System Prompt"
|
||||
msgstr "Sistem İstemi"
|
||||
|
||||
#. js-lingui-id: BXGTWI
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "System Prompt ({totalTokenCount})"
|
||||
msgstr "Sistem İstemi ({totalTokenCount})"
|
||||
|
||||
#. js-lingui-id: k+7QWO
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
msgid "System relations"
|
||||
@@ -14144,6 +14212,11 @@ msgstr ""
|
||||
msgid "This week"
|
||||
msgstr "Bu hafta"
|
||||
|
||||
#. js-lingui-id: VbVocX
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
msgid "This will cancel all modifications done on the widget. This action cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: h4VeOo
|
||||
#: src/modules/settings/billing/hooks/useBillingWording.ts
|
||||
msgid "This will cancel the scheduled interval change and keep your current billing interval ({currentIntervalLabel})."
|
||||
@@ -14259,6 +14332,7 @@ msgstr "başlık"
|
||||
|
||||
#. js-lingui-id: /jQctM
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "To"
|
||||
msgstr "Kime"
|
||||
|
||||
@@ -14582,6 +14656,11 @@ msgstr "Komutlar için '/', bahsetmek için '@' yazın"
|
||||
msgid "Type anything..."
|
||||
msgstr "Bir şeyler yazın..."
|
||||
|
||||
#. js-lingui-id: LaEX5I
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Type something or press \"/\" to see commands"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: UhqKcC
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Type to search records"
|
||||
@@ -14909,6 +14988,11 @@ msgstr "Erişim için yükseltin"
|
||||
msgid "Upgrade to Enterprise to access audit logs."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: D+7y/3
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Upgrade to Enterprise to share private applications."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +Gi3x1
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationVersionContainer.tsx
|
||||
@@ -15345,7 +15429,6 @@ msgstr "Günlükleri Görüntüle"
|
||||
|
||||
#. js-lingui-id: 7PrSCy
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "View marketplace page"
|
||||
msgstr "Pazaryeri sayfasını görüntüle"
|
||||
|
||||
@@ -15359,6 +15442,11 @@ msgstr ""
|
||||
msgid "View Previous AI Chats"
|
||||
msgstr "Önceki AI Sohbetlerini Görüntüle"
|
||||
|
||||
#. js-lingui-id: NnJpTN
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "View private application page"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: hAAsm/
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowEditActionAiAgent.tsx
|
||||
msgid "View role"
|
||||
|
||||
@@ -456,11 +456,13 @@ msgstr "{workspaceMemberName} буде позбавлений наступної
|
||||
msgid "••••••••"
|
||||
msgstr "••••••••"
|
||||
|
||||
#. js-lingui-id: tD9raa
|
||||
#. js-lingui-id: SMgdEJ
|
||||
#. placeholder {0}: formatNumber(preview.estimatedTokenCount, { abbreviate: true, decimals: 1, })
|
||||
#. placeholder {0}: formatNumber( section.estimatedTokenCount, { abbreviate: true, decimals: 1, }, )
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "~{0} tokens"
|
||||
msgstr "~{0} токенів"
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "~ {0} tokens"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Cx0xl3
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
|
||||
@@ -1707,6 +1709,7 @@ msgstr "Під час завантаження зображення сталас
|
||||
#: src/modules/views/hooks/internal/usePerformViewAPIPersist.ts
|
||||
#: src/modules/ui/feedback/snack-bar-manager/hooks/useSnackBar.ts
|
||||
#: src/modules/page-layout/hooks/useUpdatePageLayoutWithTabsAndWidgets.ts
|
||||
#: src/modules/page-layout/hooks/useResetPageLayoutWidgetToDefault.ts
|
||||
#: src/modules/object-metadata/hooks/useUpdateOneObjectMetadataItem.ts
|
||||
#: src/modules/object-metadata/hooks/useUpdateOneFieldMetadataItem.ts
|
||||
#: src/modules/object-metadata/hooks/useDeleteOneObjectMetadataItem.ts
|
||||
@@ -2418,6 +2421,12 @@ msgstr "Базова URL-адреса"
|
||||
msgid "Base URL is required"
|
||||
msgstr "Потрібно вказати базову URL-адресу"
|
||||
|
||||
#. js-lingui-id: /xLNEx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Bcc"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: PFohi3
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
msgid "BCC"
|
||||
@@ -2721,9 +2730,11 @@ msgstr "Не можете сканувати? Скопіюйте"
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
#: src/modules/spreadsheet-import/provider/components/SpreadsheetImport.tsx
|
||||
#: src/modules/side-panel/pages/compose-email/components/SidePanelComposeEmailPage.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposer.tsx
|
||||
msgid "Cancel"
|
||||
msgstr "Скасувати"
|
||||
|
||||
@@ -2763,6 +2774,11 @@ msgstr "Скасувати перемикання плану"
|
||||
msgid "Cancel plan switching?"
|
||||
msgstr "Скасувати перемикання плану?"
|
||||
|
||||
#. js-lingui-id: AnRu/j
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
msgid "Cancel reply"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: N6gPiD
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/settings/billing/components/SettingsBillingContent.tsx
|
||||
@@ -2831,11 +2847,22 @@ msgstr "Каталонська"
|
||||
msgid "Category"
|
||||
msgstr "Категорія"
|
||||
|
||||
#. js-lingui-id: RpYfjZ
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Cc"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XdZeJk
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
msgid "CC"
|
||||
msgstr "Копія"
|
||||
|
||||
#. js-lingui-id: Dgsw8A
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Cc/Bcc"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: tHntRt
|
||||
#: src/modules/page-layout/widgets/standalone-rich-text/components/DashboardEditorSideMenu.tsx
|
||||
#: src/modules/blocknote-editor/components/CustomSideMenu.tsx
|
||||
@@ -5350,6 +5377,11 @@ msgstr "Електронна адреса має бути дійсною"
|
||||
msgid "Email or domain is already in blocklist"
|
||||
msgstr "Електронна пошта або домен вже знаходяться в списку заблокованих"
|
||||
|
||||
#. js-lingui-id: Xl929X
|
||||
#: src/modules/activities/emails/hooks/useSendEmail.ts
|
||||
msgid "Email sent successfully"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: jvneza
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "Email support"
|
||||
@@ -6439,6 +6471,12 @@ msgstr ""
|
||||
msgid "Failed to save workspace instructions"
|
||||
msgstr "Не вдалося зберегти інструкції робочого простору"
|
||||
|
||||
#. js-lingui-id: Lo/GQ5
|
||||
#: src/modules/activities/emails/hooks/useSendEmail.ts
|
||||
#: src/modules/activities/emails/hooks/useSendEmail.ts
|
||||
msgid "Failed to send email"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: aj02T8
|
||||
#: src/modules/settings/admin-panel/health-status/maintenance-mode/components/SettingsAdminMaintenanceMode.tsx
|
||||
msgid "Failed to set maintenance mode."
|
||||
@@ -6930,6 +6968,11 @@ msgstr "Кредити безкоштовного пробного період
|
||||
msgid "French"
|
||||
msgstr "Французька"
|
||||
|
||||
#. js-lingui-id: ejVYRQ
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "From"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: qR8gT9
|
||||
#: src/modules/workflow/workflow-trigger/utils/cron-to-human/descriptors/getDayOfWeekDescription.ts
|
||||
msgid "from {startDay} to {endDay}"
|
||||
@@ -9398,6 +9441,11 @@ msgstr "Новий чат"
|
||||
msgid "New conversation"
|
||||
msgstr "Нова розмова"
|
||||
|
||||
#. js-lingui-id: 3RwJHq
|
||||
#: src/modules/side-panel/hooks/useOpenComposeEmailInSidePanel.ts
|
||||
msgid "New Email"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wqoYqp
|
||||
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
|
||||
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
|
||||
@@ -11374,10 +11422,11 @@ msgstr ""
|
||||
msgid "Read your profile"
|
||||
msgstr "Читати ваш профіль"
|
||||
|
||||
#. js-lingui-id: tCXcL7
|
||||
#. js-lingui-id: 6pSHJ5
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Read-only — managed by Twenty"
|
||||
msgstr "Лише для читання — керується Twenty"
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Read-only"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: W+ApAD
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
@@ -11399,6 +11448,11 @@ msgstr "Отримати лист з посиланням для оновлен
|
||||
msgid "Recent Events (oldest → newest)"
|
||||
msgstr "Нещодавні події (найстаріша → найновіша)"
|
||||
|
||||
#. js-lingui-id: yPrbsy
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Recipients"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: b2+5uV
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
msgid "Recommended Models"
|
||||
@@ -11750,6 +11804,8 @@ msgid "Reorder options"
|
||||
msgstr "Змінити порядок опцій"
|
||||
|
||||
#. js-lingui-id: ImOQa9
|
||||
#: src/modules/side-panel/hooks/useOpenComposeEmailInSidePanel.ts
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
#: src/modules/activities/emails/components/EmailThreadBottomBar.tsx
|
||||
msgid "Reply"
|
||||
msgstr "Відповісти"
|
||||
@@ -11759,6 +11815,11 @@ msgstr "Відповісти"
|
||||
msgid "Reply to all"
|
||||
msgstr "Відповісти всім"
|
||||
|
||||
#. js-lingui-id: fiPYZo
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
msgid "Reply..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: tbmZmI
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "Report and issue"
|
||||
@@ -11784,6 +11845,7 @@ msgstr "Повторно надіслати лист"
|
||||
#. js-lingui-id: OfhWJH
|
||||
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
|
||||
#: src/modules/views/components/ViewBarDetails.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
msgid "Reset"
|
||||
msgstr "Скинути"
|
||||
|
||||
@@ -11804,6 +11866,8 @@ msgid "Reset to"
|
||||
msgstr "Скинути до"
|
||||
|
||||
#. js-lingui-id: L+rMC9
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
msgid "Reset to default"
|
||||
@@ -12698,6 +12762,13 @@ msgstr "Виберіть, які моделі відображатимуться
|
||||
msgid "Select your preferred language"
|
||||
msgstr "Оберіть бажану мову"
|
||||
|
||||
#. js-lingui-id: JlFcis
|
||||
#: src/modules/side-panel/pages/compose-email/components/SidePanelComposeEmailPage.tsx
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposer.tsx
|
||||
msgid "Send"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mjK8F3
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
msgid "Send an invite email to your team"
|
||||
@@ -13413,6 +13484,8 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: UJmAAK
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Subject"
|
||||
msgstr "Тема"
|
||||
|
||||
@@ -13653,11 +13726,6 @@ msgstr ""
|
||||
msgid "System Prompt"
|
||||
msgstr "Системний запит"
|
||||
|
||||
#. js-lingui-id: BXGTWI
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "System Prompt ({totalTokenCount})"
|
||||
msgstr "Системний промпт ({totalTokenCount})"
|
||||
|
||||
#. js-lingui-id: k+7QWO
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
msgid "System relations"
|
||||
@@ -14146,6 +14214,11 @@ msgstr ""
|
||||
msgid "This week"
|
||||
msgstr "Цього тижня"
|
||||
|
||||
#. js-lingui-id: VbVocX
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
msgid "This will cancel all modifications done on the widget. This action cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: h4VeOo
|
||||
#: src/modules/settings/billing/hooks/useBillingWording.ts
|
||||
msgid "This will cancel the scheduled interval change and keep your current billing interval ({currentIntervalLabel})."
|
||||
@@ -14261,6 +14334,7 @@ msgstr "заголовок"
|
||||
|
||||
#. js-lingui-id: /jQctM
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "To"
|
||||
msgstr "Кому"
|
||||
|
||||
@@ -14584,6 +14658,11 @@ msgstr "Введіть '/' для команд, '@' для згадок"
|
||||
msgid "Type anything..."
|
||||
msgstr "Наберіть щось..."
|
||||
|
||||
#. js-lingui-id: LaEX5I
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Type something or press \"/\" to see commands"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: UhqKcC
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Type to search records"
|
||||
@@ -14911,6 +14990,11 @@ msgstr "Оновіть план, щоб отримати доступ"
|
||||
msgid "Upgrade to Enterprise to access audit logs."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: D+7y/3
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Upgrade to Enterprise to share private applications."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +Gi3x1
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationVersionContainer.tsx
|
||||
@@ -15347,7 +15431,6 @@ msgstr "Переглянути журнали"
|
||||
|
||||
#. js-lingui-id: 7PrSCy
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "View marketplace page"
|
||||
msgstr "Переглянути сторінку в маркетплейсі"
|
||||
|
||||
@@ -15361,6 +15444,11 @@ msgstr ""
|
||||
msgid "View Previous AI Chats"
|
||||
msgstr "Переглянути попередні чати з ШІ"
|
||||
|
||||
#. js-lingui-id: NnJpTN
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "View private application page"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: hAAsm/
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowEditActionAiAgent.tsx
|
||||
msgid "View role"
|
||||
|
||||
@@ -456,11 +456,13 @@ msgstr "{workspaceMemberName} sẽ không còn được phân công vào vai tr
|
||||
msgid "••••••••"
|
||||
msgstr "••••••••"
|
||||
|
||||
#. js-lingui-id: tD9raa
|
||||
#. js-lingui-id: SMgdEJ
|
||||
#. placeholder {0}: formatNumber(preview.estimatedTokenCount, { abbreviate: true, decimals: 1, })
|
||||
#. placeholder {0}: formatNumber( section.estimatedTokenCount, { abbreviate: true, decimals: 1, }, )
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "~{0} tokens"
|
||||
msgstr "~{0} token"
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "~ {0} tokens"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Cx0xl3
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
|
||||
@@ -1707,6 +1709,7 @@ msgstr "Đã xảy ra lỗi khi tải lên ảnh."
|
||||
#: src/modules/views/hooks/internal/usePerformViewAPIPersist.ts
|
||||
#: src/modules/ui/feedback/snack-bar-manager/hooks/useSnackBar.ts
|
||||
#: src/modules/page-layout/hooks/useUpdatePageLayoutWithTabsAndWidgets.ts
|
||||
#: src/modules/page-layout/hooks/useResetPageLayoutWidgetToDefault.ts
|
||||
#: src/modules/object-metadata/hooks/useUpdateOneObjectMetadataItem.ts
|
||||
#: src/modules/object-metadata/hooks/useUpdateOneFieldMetadataItem.ts
|
||||
#: src/modules/object-metadata/hooks/useDeleteOneObjectMetadataItem.ts
|
||||
@@ -2418,6 +2421,12 @@ msgstr "URL cơ sở"
|
||||
msgid "Base URL is required"
|
||||
msgstr "URL cơ sở là bắt buộc"
|
||||
|
||||
#. js-lingui-id: /xLNEx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Bcc"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: PFohi3
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
msgid "BCC"
|
||||
@@ -2721,9 +2730,11 @@ msgstr "Không thể quét? Sao chép"
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
#: src/modules/spreadsheet-import/provider/components/SpreadsheetImport.tsx
|
||||
#: src/modules/side-panel/pages/compose-email/components/SidePanelComposeEmailPage.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposer.tsx
|
||||
msgid "Cancel"
|
||||
msgstr "Hủy bỏ"
|
||||
|
||||
@@ -2763,6 +2774,11 @@ msgstr "Hủy chuyển đổi kế hoạch"
|
||||
msgid "Cancel plan switching?"
|
||||
msgstr "Hủy chuyển đổi kế hoạch?"
|
||||
|
||||
#. js-lingui-id: AnRu/j
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
msgid "Cancel reply"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: N6gPiD
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/settings/billing/components/SettingsBillingContent.tsx
|
||||
@@ -2831,11 +2847,22 @@ msgstr "Tiếng Catalan"
|
||||
msgid "Category"
|
||||
msgstr "Danh mục"
|
||||
|
||||
#. js-lingui-id: RpYfjZ
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Cc"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XdZeJk
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
msgid "CC"
|
||||
msgstr "CC"
|
||||
|
||||
#. js-lingui-id: Dgsw8A
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Cc/Bcc"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: tHntRt
|
||||
#: src/modules/page-layout/widgets/standalone-rich-text/components/DashboardEditorSideMenu.tsx
|
||||
#: src/modules/blocknote-editor/components/CustomSideMenu.tsx
|
||||
@@ -5350,6 +5377,11 @@ msgstr "Email phải hợp lệ"
|
||||
msgid "Email or domain is already in blocklist"
|
||||
msgstr "Email hoặc tên miền đã nằm trong danh sách chặn"
|
||||
|
||||
#. js-lingui-id: Xl929X
|
||||
#: src/modules/activities/emails/hooks/useSendEmail.ts
|
||||
msgid "Email sent successfully"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: jvneza
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "Email support"
|
||||
@@ -6439,6 +6471,12 @@ msgstr ""
|
||||
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"
|
||||
|
||||
#. js-lingui-id: Lo/GQ5
|
||||
#: src/modules/activities/emails/hooks/useSendEmail.ts
|
||||
#: src/modules/activities/emails/hooks/useSendEmail.ts
|
||||
msgid "Failed to send email"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: aj02T8
|
||||
#: src/modules/settings/admin-panel/health-status/maintenance-mode/components/SettingsAdminMaintenanceMode.tsx
|
||||
msgid "Failed to set maintenance mode."
|
||||
@@ -6930,6 +6968,11 @@ msgstr "Tín dụng dùng thử miễn phí đã hết. Đăng ký ngay để ti
|
||||
msgid "French"
|
||||
msgstr "\\"
|
||||
|
||||
#. js-lingui-id: ejVYRQ
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "From"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: qR8gT9
|
||||
#: src/modules/workflow/workflow-trigger/utils/cron-to-human/descriptors/getDayOfWeekDescription.ts
|
||||
msgid "from {startDay} to {endDay}"
|
||||
@@ -9398,6 +9441,11 @@ msgstr "Trò chuyện mới"
|
||||
msgid "New conversation"
|
||||
msgstr "Cuộc trò chuyện mới"
|
||||
|
||||
#. js-lingui-id: 3RwJHq
|
||||
#: src/modules/side-panel/hooks/useOpenComposeEmailInSidePanel.ts
|
||||
msgid "New Email"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wqoYqp
|
||||
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
|
||||
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
|
||||
@@ -11374,10 +11422,11 @@ msgstr ""
|
||||
msgid "Read your profile"
|
||||
msgstr "Đọc hồ sơ của bạn"
|
||||
|
||||
#. js-lingui-id: tCXcL7
|
||||
#. js-lingui-id: 6pSHJ5
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Read-only — managed by Twenty"
|
||||
msgstr "Chỉ đọc — được quản lý bởi Twenty"
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Read-only"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: W+ApAD
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
@@ -11399,6 +11448,11 @@ msgstr "Nhận email chứa đường link cập nhật mật khẩu"
|
||||
msgid "Recent Events (oldest → newest)"
|
||||
msgstr "Sự kiện gần đây (cũ nhất → mới nhất)"
|
||||
|
||||
#. js-lingui-id: yPrbsy
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Recipients"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: b2+5uV
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
msgid "Recommended Models"
|
||||
@@ -11750,6 +11804,8 @@ msgid "Reorder options"
|
||||
msgstr "Sắp xếp lại các tùy chọn"
|
||||
|
||||
#. js-lingui-id: ImOQa9
|
||||
#: src/modules/side-panel/hooks/useOpenComposeEmailInSidePanel.ts
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
#: src/modules/activities/emails/components/EmailThreadBottomBar.tsx
|
||||
msgid "Reply"
|
||||
msgstr "Trả lời"
|
||||
@@ -11759,6 +11815,11 @@ msgstr "Trả lời"
|
||||
msgid "Reply to all"
|
||||
msgstr "Trả lời tất cả"
|
||||
|
||||
#. js-lingui-id: fiPYZo
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
msgid "Reply..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: tbmZmI
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "Report and issue"
|
||||
@@ -11784,6 +11845,7 @@ msgstr "Gửi lại email"
|
||||
#. js-lingui-id: OfhWJH
|
||||
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
|
||||
#: src/modules/views/components/ViewBarDetails.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
msgid "Reset"
|
||||
msgstr "Đặt lại"
|
||||
|
||||
@@ -11804,6 +11866,8 @@ msgid "Reset to"
|
||||
msgstr "Đặt lại thành"
|
||||
|
||||
#. js-lingui-id: L+rMC9
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
msgid "Reset to default"
|
||||
@@ -12698,6 +12762,13 @@ msgstr "Chọn những mô hình sẽ hiển thị là được đề xuất tro
|
||||
msgid "Select your preferred language"
|
||||
msgstr "Chọn ngôn ngữ bạn muốn sử dụng"
|
||||
|
||||
#. js-lingui-id: JlFcis
|
||||
#: src/modules/side-panel/pages/compose-email/components/SidePanelComposeEmailPage.tsx
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposer.tsx
|
||||
msgid "Send"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mjK8F3
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
msgid "Send an invite email to your team"
|
||||
@@ -13413,6 +13484,8 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: UJmAAK
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Subject"
|
||||
msgstr "Chủ đề"
|
||||
|
||||
@@ -13653,11 +13726,6 @@ msgstr ""
|
||||
msgid "System Prompt"
|
||||
msgstr "Lời Nhắc Hệ Thống"
|
||||
|
||||
#. js-lingui-id: BXGTWI
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "System Prompt ({totalTokenCount})"
|
||||
msgstr "Lời nhắc hệ thống ({totalTokenCount})"
|
||||
|
||||
#. js-lingui-id: k+7QWO
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
msgid "System relations"
|
||||
@@ -14144,6 +14212,11 @@ msgstr ""
|
||||
msgid "This week"
|
||||
msgstr "Tuần này"
|
||||
|
||||
#. js-lingui-id: VbVocX
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
msgid "This will cancel all modifications done on the widget. This action cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: h4VeOo
|
||||
#: src/modules/settings/billing/hooks/useBillingWording.ts
|
||||
msgid "This will cancel the scheduled interval change and keep your current billing interval ({currentIntervalLabel})."
|
||||
@@ -14259,6 +14332,7 @@ msgstr "tiêu đề"
|
||||
|
||||
#. js-lingui-id: /jQctM
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "To"
|
||||
msgstr "Đến"
|
||||
|
||||
@@ -14582,6 +14656,11 @@ msgstr "Nhập '/' để dùng lệnh, '@' để nhắc đến"
|
||||
msgid "Type anything..."
|
||||
msgstr "Gõ bất cứ thứ gì..."
|
||||
|
||||
#. js-lingui-id: LaEX5I
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Type something or press \"/\" to see commands"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: UhqKcC
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Type to search records"
|
||||
@@ -14909,6 +14988,11 @@ msgstr "Nâng cấp để truy cập"
|
||||
msgid "Upgrade to Enterprise to access audit logs."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: D+7y/3
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Upgrade to Enterprise to share private applications."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +Gi3x1
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationVersionContainer.tsx
|
||||
@@ -15345,7 +15429,6 @@ msgstr "Xem nhật ký"
|
||||
|
||||
#. js-lingui-id: 7PrSCy
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "View marketplace page"
|
||||
msgstr "Xem trang trên chợ ứng dụng"
|
||||
|
||||
@@ -15359,6 +15442,11 @@ msgstr ""
|
||||
msgid "View Previous AI Chats"
|
||||
msgstr "Xem các cuộc trò chuyện AI trước đây"
|
||||
|
||||
#. js-lingui-id: NnJpTN
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "View private application page"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: hAAsm/
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowEditActionAiAgent.tsx
|
||||
msgid "View role"
|
||||
|
||||
@@ -456,11 +456,13 @@ msgstr "{workspaceMemberName}将不再被分配以下角色:"
|
||||
msgid "••••••••"
|
||||
msgstr "••••••••"
|
||||
|
||||
#. js-lingui-id: tD9raa
|
||||
#. js-lingui-id: SMgdEJ
|
||||
#. placeholder {0}: formatNumber(preview.estimatedTokenCount, { abbreviate: true, decimals: 1, })
|
||||
#. placeholder {0}: formatNumber( section.estimatedTokenCount, { abbreviate: true, decimals: 1, }, )
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "~{0} tokens"
|
||||
msgstr "~{0} 个标记"
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "~ {0} tokens"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Cx0xl3
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
|
||||
@@ -1707,6 +1709,7 @@ msgstr "上传图片时发生错误。"
|
||||
#: src/modules/views/hooks/internal/usePerformViewAPIPersist.ts
|
||||
#: src/modules/ui/feedback/snack-bar-manager/hooks/useSnackBar.ts
|
||||
#: src/modules/page-layout/hooks/useUpdatePageLayoutWithTabsAndWidgets.ts
|
||||
#: src/modules/page-layout/hooks/useResetPageLayoutWidgetToDefault.ts
|
||||
#: src/modules/object-metadata/hooks/useUpdateOneObjectMetadataItem.ts
|
||||
#: src/modules/object-metadata/hooks/useUpdateOneFieldMetadataItem.ts
|
||||
#: src/modules/object-metadata/hooks/useDeleteOneObjectMetadataItem.ts
|
||||
@@ -2418,6 +2421,12 @@ msgstr "基础 URL"
|
||||
msgid "Base URL is required"
|
||||
msgstr "基础 URL 为必填项"
|
||||
|
||||
#. js-lingui-id: /xLNEx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Bcc"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: PFohi3
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
msgid "BCC"
|
||||
@@ -2721,9 +2730,11 @@ msgstr "无法扫描?复制"
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
#: src/modules/spreadsheet-import/provider/components/SpreadsheetImport.tsx
|
||||
#: src/modules/side-panel/pages/compose-email/components/SidePanelComposeEmailPage.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposer.tsx
|
||||
msgid "Cancel"
|
||||
msgstr "取消"
|
||||
|
||||
@@ -2763,6 +2774,11 @@ msgstr "取消计划切换"
|
||||
msgid "Cancel plan switching?"
|
||||
msgstr "取消计划切换?"
|
||||
|
||||
#. js-lingui-id: AnRu/j
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
msgid "Cancel reply"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: N6gPiD
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/settings/billing/components/SettingsBillingContent.tsx
|
||||
@@ -2831,11 +2847,22 @@ msgstr "加泰罗尼亚语"
|
||||
msgid "Category"
|
||||
msgstr "类别"
|
||||
|
||||
#. js-lingui-id: RpYfjZ
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Cc"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XdZeJk
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
msgid "CC"
|
||||
msgstr "抄送"
|
||||
|
||||
#. js-lingui-id: Dgsw8A
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Cc/Bcc"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: tHntRt
|
||||
#: src/modules/page-layout/widgets/standalone-rich-text/components/DashboardEditorSideMenu.tsx
|
||||
#: src/modules/blocknote-editor/components/CustomSideMenu.tsx
|
||||
@@ -5350,6 +5377,11 @@ msgstr "电子邮件必须为有效邮箱地址"
|
||||
msgid "Email or domain is already in blocklist"
|
||||
msgstr "电子邮件或域已在拦截列表中"
|
||||
|
||||
#. js-lingui-id: Xl929X
|
||||
#: src/modules/activities/emails/hooks/useSendEmail.ts
|
||||
msgid "Email sent successfully"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: jvneza
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "Email support"
|
||||
@@ -6439,6 +6471,12 @@ msgstr ""
|
||||
msgid "Failed to save workspace instructions"
|
||||
msgstr "保存工作区说明失败"
|
||||
|
||||
#. js-lingui-id: Lo/GQ5
|
||||
#: src/modules/activities/emails/hooks/useSendEmail.ts
|
||||
#: src/modules/activities/emails/hooks/useSendEmail.ts
|
||||
msgid "Failed to send email"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: aj02T8
|
||||
#: src/modules/settings/admin-panel/health-status/maintenance-mode/components/SettingsAdminMaintenanceMode.tsx
|
||||
msgid "Failed to set maintenance mode."
|
||||
@@ -6930,6 +6968,11 @@ msgstr "免费试用额度已用尽。立即订阅以继续使用 AI 功能。"
|
||||
msgid "French"
|
||||
msgstr "法语"
|
||||
|
||||
#. js-lingui-id: ejVYRQ
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "From"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: qR8gT9
|
||||
#: src/modules/workflow/workflow-trigger/utils/cron-to-human/descriptors/getDayOfWeekDescription.ts
|
||||
msgid "from {startDay} to {endDay}"
|
||||
@@ -9398,6 +9441,11 @@ msgstr "新聊天"
|
||||
msgid "New conversation"
|
||||
msgstr "新会话"
|
||||
|
||||
#. js-lingui-id: 3RwJHq
|
||||
#: src/modules/side-panel/hooks/useOpenComposeEmailInSidePanel.ts
|
||||
msgid "New Email"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wqoYqp
|
||||
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
|
||||
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
|
||||
@@ -11374,10 +11422,11 @@ msgstr ""
|
||||
msgid "Read your profile"
|
||||
msgstr "读取您的个人资料"
|
||||
|
||||
#. js-lingui-id: tCXcL7
|
||||
#. js-lingui-id: 6pSHJ5
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Read-only — managed by Twenty"
|
||||
msgstr "只读 — 由 Twenty 管理"
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Read-only"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: W+ApAD
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
@@ -11399,6 +11448,11 @@ msgstr "接收包含密码更新链接的电子邮件"
|
||||
msgid "Recent Events (oldest → newest)"
|
||||
msgstr "最近事件(最旧 → 最新)"
|
||||
|
||||
#. js-lingui-id: yPrbsy
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Recipients"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: b2+5uV
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
msgid "Recommended Models"
|
||||
@@ -11750,6 +11804,8 @@ msgid "Reorder options"
|
||||
msgstr "调整选项顺序"
|
||||
|
||||
#. js-lingui-id: ImOQa9
|
||||
#: src/modules/side-panel/hooks/useOpenComposeEmailInSidePanel.ts
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
#: src/modules/activities/emails/components/EmailThreadBottomBar.tsx
|
||||
msgid "Reply"
|
||||
msgstr "回复"
|
||||
@@ -11759,6 +11815,11 @@ msgstr "回复"
|
||||
msgid "Reply to all"
|
||||
msgstr "回复全部"
|
||||
|
||||
#. js-lingui-id: fiPYZo
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
msgid "Reply..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: tbmZmI
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "Report and issue"
|
||||
@@ -11784,6 +11845,7 @@ msgstr "重新发送邮件"
|
||||
#. js-lingui-id: OfhWJH
|
||||
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
|
||||
#: src/modules/views/components/ViewBarDetails.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
msgid "Reset"
|
||||
msgstr "重置"
|
||||
|
||||
@@ -11804,6 +11866,8 @@ msgid "Reset to"
|
||||
msgstr "重置为"
|
||||
|
||||
#. js-lingui-id: L+rMC9
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
msgid "Reset to default"
|
||||
@@ -12698,6 +12762,13 @@ msgstr "选择哪些模型在工作区模型选择器中显示为推荐"
|
||||
msgid "Select your preferred language"
|
||||
msgstr "选择您偏好的语言"
|
||||
|
||||
#. js-lingui-id: JlFcis
|
||||
#: src/modules/side-panel/pages/compose-email/components/SidePanelComposeEmailPage.tsx
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposer.tsx
|
||||
msgid "Send"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mjK8F3
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
msgid "Send an invite email to your team"
|
||||
@@ -13413,6 +13484,8 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: UJmAAK
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Subject"
|
||||
msgstr "主题"
|
||||
|
||||
@@ -13653,11 +13726,6 @@ msgstr ""
|
||||
msgid "System Prompt"
|
||||
msgstr "系统提示"
|
||||
|
||||
#. js-lingui-id: BXGTWI
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "System Prompt ({totalTokenCount})"
|
||||
msgstr "系统提示词 ({totalTokenCount})"
|
||||
|
||||
#. js-lingui-id: k+7QWO
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
msgid "System relations"
|
||||
@@ -14144,6 +14212,11 @@ msgstr ""
|
||||
msgid "This week"
|
||||
msgstr "本周"
|
||||
|
||||
#. js-lingui-id: VbVocX
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
msgid "This will cancel all modifications done on the widget. This action cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: h4VeOo
|
||||
#: src/modules/settings/billing/hooks/useBillingWording.ts
|
||||
msgid "This will cancel the scheduled interval change and keep your current billing interval ({currentIntervalLabel})."
|
||||
@@ -14259,6 +14332,7 @@ msgstr "标题"
|
||||
|
||||
#. js-lingui-id: /jQctM
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "To"
|
||||
msgstr "收件人"
|
||||
|
||||
@@ -14582,6 +14656,11 @@ msgstr "输入 '/' 以使用命令,输入 '@' 以提及"
|
||||
msgid "Type anything..."
|
||||
msgstr "输入任何内容..."
|
||||
|
||||
#. js-lingui-id: LaEX5I
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Type something or press \"/\" to see commands"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: UhqKcC
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Type to search records"
|
||||
@@ -14909,6 +14988,11 @@ msgstr "升级以访问"
|
||||
msgid "Upgrade to Enterprise to access audit logs."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: D+7y/3
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Upgrade to Enterprise to share private applications."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +Gi3x1
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationVersionContainer.tsx
|
||||
@@ -15345,7 +15429,6 @@ msgstr "查看日志"
|
||||
|
||||
#. js-lingui-id: 7PrSCy
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "View marketplace page"
|
||||
msgstr "查看应用市场页面"
|
||||
|
||||
@@ -15359,6 +15442,11 @@ msgstr ""
|
||||
msgid "View Previous AI Chats"
|
||||
msgstr "查看历史人工智能对话"
|
||||
|
||||
#. js-lingui-id: NnJpTN
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "View private application page"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: hAAsm/
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowEditActionAiAgent.tsx
|
||||
msgid "View role"
|
||||
|
||||
@@ -456,11 +456,13 @@ msgstr "{workspaceMemberName} 將不再被指派以下角色:"
|
||||
msgid "••••••••"
|
||||
msgstr "••••••••"
|
||||
|
||||
#. js-lingui-id: tD9raa
|
||||
#. js-lingui-id: SMgdEJ
|
||||
#. placeholder {0}: formatNumber(preview.estimatedTokenCount, { abbreviate: true, decimals: 1, })
|
||||
#. placeholder {0}: formatNumber( section.estimatedTokenCount, { abbreviate: true, decimals: 1, }, )
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "~{0} tokens"
|
||||
msgstr "~{0} 個詞元"
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "~ {0} tokens"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Cx0xl3
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
|
||||
@@ -1707,6 +1709,7 @@ msgstr "上傳圖片時發生錯誤。"
|
||||
#: src/modules/views/hooks/internal/usePerformViewAPIPersist.ts
|
||||
#: src/modules/ui/feedback/snack-bar-manager/hooks/useSnackBar.ts
|
||||
#: src/modules/page-layout/hooks/useUpdatePageLayoutWithTabsAndWidgets.ts
|
||||
#: src/modules/page-layout/hooks/useResetPageLayoutWidgetToDefault.ts
|
||||
#: src/modules/object-metadata/hooks/useUpdateOneObjectMetadataItem.ts
|
||||
#: src/modules/object-metadata/hooks/useUpdateOneFieldMetadataItem.ts
|
||||
#: src/modules/object-metadata/hooks/useDeleteOneObjectMetadataItem.ts
|
||||
@@ -2418,6 +2421,12 @@ msgstr "基礎 URL"
|
||||
msgid "Base URL is required"
|
||||
msgstr "需要提供基礎 URL"
|
||||
|
||||
#. js-lingui-id: /xLNEx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Bcc"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: PFohi3
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
msgid "BCC"
|
||||
@@ -2721,9 +2730,11 @@ msgstr "無法掃描? 複製"
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
#: src/modules/spreadsheet-import/provider/components/SpreadsheetImport.tsx
|
||||
#: src/modules/side-panel/pages/compose-email/components/SidePanelComposeEmailPage.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposer.tsx
|
||||
msgid "Cancel"
|
||||
msgstr "取消"
|
||||
|
||||
@@ -2763,6 +2774,11 @@ msgstr "取消方案切換"
|
||||
msgid "Cancel plan switching?"
|
||||
msgstr "取消方案切換?"
|
||||
|
||||
#. js-lingui-id: AnRu/j
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
msgid "Cancel reply"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: N6gPiD
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/settings/billing/components/SettingsBillingContent.tsx
|
||||
@@ -2831,11 +2847,22 @@ msgstr "加泰羅尼亞語"
|
||||
msgid "Category"
|
||||
msgstr "分類"
|
||||
|
||||
#. js-lingui-id: RpYfjZ
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Cc"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XdZeJk
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
msgid "CC"
|
||||
msgstr "副本"
|
||||
|
||||
#. js-lingui-id: Dgsw8A
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Cc/Bcc"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: tHntRt
|
||||
#: src/modules/page-layout/widgets/standalone-rich-text/components/DashboardEditorSideMenu.tsx
|
||||
#: src/modules/blocknote-editor/components/CustomSideMenu.tsx
|
||||
@@ -5350,6 +5377,11 @@ msgstr "電子郵件必須為有效的電子郵件"
|
||||
msgid "Email or domain is already in blocklist"
|
||||
msgstr "電子郵件或域名已在阻止列表中"
|
||||
|
||||
#. js-lingui-id: Xl929X
|
||||
#: src/modules/activities/emails/hooks/useSendEmail.ts
|
||||
msgid "Email sent successfully"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: jvneza
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "Email support"
|
||||
@@ -6439,6 +6471,12 @@ msgstr ""
|
||||
msgid "Failed to save workspace instructions"
|
||||
msgstr "儲存工作區指示失敗"
|
||||
|
||||
#. js-lingui-id: Lo/GQ5
|
||||
#: src/modules/activities/emails/hooks/useSendEmail.ts
|
||||
#: src/modules/activities/emails/hooks/useSendEmail.ts
|
||||
msgid "Failed to send email"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: aj02T8
|
||||
#: src/modules/settings/admin-panel/health-status/maintenance-mode/components/SettingsAdminMaintenanceMode.tsx
|
||||
msgid "Failed to set maintenance mode."
|
||||
@@ -6930,6 +6968,11 @@ msgstr "免費試用點數已用盡。立即訂閱以繼續使用 AI 功能。"
|
||||
msgid "French"
|
||||
msgstr "法語"
|
||||
|
||||
#. js-lingui-id: ejVYRQ
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "From"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: qR8gT9
|
||||
#: src/modules/workflow/workflow-trigger/utils/cron-to-human/descriptors/getDayOfWeekDescription.ts
|
||||
msgid "from {startDay} to {endDay}"
|
||||
@@ -9398,6 +9441,11 @@ msgstr "新聊天"
|
||||
msgid "New conversation"
|
||||
msgstr "新對話"
|
||||
|
||||
#. js-lingui-id: 3RwJHq
|
||||
#: src/modules/side-panel/hooks/useOpenComposeEmailInSidePanel.ts
|
||||
msgid "New Email"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wqoYqp
|
||||
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
|
||||
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
|
||||
@@ -11374,10 +11422,11 @@ msgstr ""
|
||||
msgid "Read your profile"
|
||||
msgstr "讀取您的個人資料"
|
||||
|
||||
#. js-lingui-id: tCXcL7
|
||||
#. js-lingui-id: 6pSHJ5
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Read-only — managed by Twenty"
|
||||
msgstr "唯讀 — 由 Twenty 管理"
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "Read-only"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: W+ApAD
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
@@ -11399,6 +11448,11 @@ msgstr "接收包含密碼更新鏈接的電子郵件"
|
||||
msgid "Recent Events (oldest → newest)"
|
||||
msgstr "最近事件(最早 → 最新)"
|
||||
|
||||
#. js-lingui-id: yPrbsy
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Recipients"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: b2+5uV
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
msgid "Recommended Models"
|
||||
@@ -11750,6 +11804,8 @@ msgid "Reorder options"
|
||||
msgstr "重新排序選項"
|
||||
|
||||
#. js-lingui-id: ImOQa9
|
||||
#: src/modules/side-panel/hooks/useOpenComposeEmailInSidePanel.ts
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
#: src/modules/activities/emails/components/EmailThreadBottomBar.tsx
|
||||
msgid "Reply"
|
||||
msgstr "回覆"
|
||||
@@ -11759,6 +11815,11 @@ msgstr "回覆"
|
||||
msgid "Reply to all"
|
||||
msgstr "回覆所有"
|
||||
|
||||
#. js-lingui-id: fiPYZo
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
msgid "Reply..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: tbmZmI
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "Report and issue"
|
||||
@@ -11784,6 +11845,7 @@ msgstr "重新發送電子郵件"
|
||||
#. js-lingui-id: OfhWJH
|
||||
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
|
||||
#: src/modules/views/components/ViewBarDetails.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
msgid "Reset"
|
||||
msgstr "重設"
|
||||
|
||||
@@ -11804,6 +11866,8 @@ msgid "Reset to"
|
||||
msgstr "重置為"
|
||||
|
||||
#. js-lingui-id: L+rMC9
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
msgid "Reset to default"
|
||||
@@ -12698,6 +12762,13 @@ msgstr "選擇哪些模型會在工作區的模型選擇器中顯示為推薦"
|
||||
msgid "Select your preferred language"
|
||||
msgstr "選擇您偏好的語言"
|
||||
|
||||
#. js-lingui-id: JlFcis
|
||||
#: src/modules/side-panel/pages/compose-email/components/SidePanelComposeEmailPage.tsx
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadComposer.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposer.tsx
|
||||
msgid "Send"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mjK8F3
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
msgid "Send an invite email to your team"
|
||||
@@ -13413,6 +13484,8 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: UJmAAK
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Subject"
|
||||
msgstr "主題"
|
||||
|
||||
@@ -13653,11 +13726,6 @@ msgstr ""
|
||||
msgid "System Prompt"
|
||||
msgstr "系統提示"
|
||||
|
||||
#. js-lingui-id: BXGTWI
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
msgid "System Prompt ({totalTokenCount})"
|
||||
msgstr "系統提示詞({totalTokenCount})"
|
||||
|
||||
#. js-lingui-id: k+7QWO
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
msgid "System relations"
|
||||
@@ -14144,6 +14212,11 @@ msgstr ""
|
||||
msgid "This week"
|
||||
msgstr "本週"
|
||||
|
||||
#. js-lingui-id: VbVocX
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
msgid "This will cancel all modifications done on the widget. This action cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: h4VeOo
|
||||
#: src/modules/settings/billing/hooks/useBillingWording.ts
|
||||
msgid "This will cancel the scheduled interval change and keep your current billing interval ({currentIntervalLabel})."
|
||||
@@ -14259,6 +14332,7 @@ msgstr "標題"
|
||||
|
||||
#. js-lingui-id: /jQctM
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "To"
|
||||
msgstr "收件者"
|
||||
|
||||
@@ -14582,6 +14656,11 @@ msgstr "輸入「/」以使用指令,輸入「@」以提及"
|
||||
msgid "Type anything..."
|
||||
msgstr "輸入任何內容..."
|
||||
|
||||
#. js-lingui-id: LaEX5I
|
||||
#: src/modules/activities/emails/components/EmailComposerFields.tsx
|
||||
msgid "Type something or press \"/\" to see commands"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: UhqKcC
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Type to search records"
|
||||
@@ -14909,6 +14988,11 @@ msgstr "升級以存取"
|
||||
msgid "Upgrade to Enterprise to access audit logs."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: D+7y/3
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Upgrade to Enterprise to share private applications."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +Gi3x1
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationVersionContainer.tsx
|
||||
@@ -15345,7 +15429,6 @@ msgstr "查看日誌"
|
||||
|
||||
#. js-lingui-id: 7PrSCy
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "View marketplace page"
|
||||
msgstr "檢視市集頁面"
|
||||
|
||||
@@ -15359,6 +15442,11 @@ msgstr ""
|
||||
msgid "View Previous AI Chats"
|
||||
msgstr "查看上一次的 AI 聊天"
|
||||
|
||||
#. js-lingui-id: NnJpTN
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "View private application page"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: hAAsm/
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowEditActionAiAgent.tsx
|
||||
msgid "View role"
|
||||
|
||||
@@ -1,41 +1,22 @@
|
||||
import {
|
||||
type CalendarChannelContactAutoCreationPolicy,
|
||||
type CalendarChannelSyncStage,
|
||||
type CalendarChannelSyncStatus,
|
||||
} from 'twenty-shared/types';
|
||||
import { type CalendarChannelVisibility } from '~/generated/graphql';
|
||||
|
||||
export enum CalendarChannelSyncStatus {
|
||||
NOT_SYNCED = 'NOT_SYNCED',
|
||||
ONGOING = 'ONGOING',
|
||||
ACTIVE = 'ACTIVE',
|
||||
FAILED_INSUFFICIENT_PERMISSIONS = 'FAILED_INSUFFICIENT_PERMISSIONS',
|
||||
FAILED_UNKNOWN = 'FAILED_UNKNOWN',
|
||||
}
|
||||
|
||||
export enum CalendarChannelSyncStage {
|
||||
PENDING_CONFIGURATION = 'PENDING_CONFIGURATION',
|
||||
CALENDAR_EVENT_LIST_FETCH_PENDING = 'CALENDAR_EVENT_LIST_FETCH_PENDING',
|
||||
CALENDAR_EVENT_LIST_FETCH_SCHEDULED = 'CALENDAR_EVENT_LIST_FETCH_SCHEDULED',
|
||||
CALENDAR_EVENT_LIST_FETCH_ONGOING = 'CALENDAR_EVENT_LIST_FETCH_ONGOING',
|
||||
CALENDAR_EVENTS_IMPORT_PENDING = 'CALENDAR_EVENTS_IMPORT_PENDING',
|
||||
CALENDAR_EVENTS_IMPORT_SCHEDULED = 'CALENDAR_EVENTS_IMPORT_SCHEDULED',
|
||||
CALENDAR_EVENTS_IMPORT_ONGOING = 'CALENDAR_EVENTS_IMPORT_ONGOING',
|
||||
FAILED = 'FAILED',
|
||||
}
|
||||
|
||||
export enum CalendarChannelContactAutoCreationPolicy {
|
||||
AS_PARTICIPANT_AND_ORGANIZER = 'AS_PARTICIPANT_AND_ORGANIZER',
|
||||
AS_PARTICIPANT = 'AS_PARTICIPANT',
|
||||
AS_ORGANIZER = 'AS_ORGANIZER',
|
||||
NONE = 'NONE',
|
||||
}
|
||||
export type CalendarChannel = {
|
||||
id: string;
|
||||
handle: string;
|
||||
visibility: CalendarChannelVisibility;
|
||||
isContactAutoCreationEnabled: boolean;
|
||||
contactAutoCreationPolicy: CalendarChannelContactAutoCreationPolicy;
|
||||
isSyncEnabled: boolean;
|
||||
visibility: CalendarChannelVisibility;
|
||||
syncStatus: CalendarChannelSyncStatus;
|
||||
syncStage: CalendarChannelSyncStage;
|
||||
syncCursor: string;
|
||||
syncStageStartedAt: Date;
|
||||
throttleFailureCount: number;
|
||||
syncStageStartedAt: string | null;
|
||||
connectedAccountId: string;
|
||||
createdAt: string;
|
||||
updatedAt: string;
|
||||
__typename: 'CalendarChannel';
|
||||
};
|
||||
|
||||
@@ -7,14 +7,15 @@ export type ConnectedAccount = {
|
||||
id: string;
|
||||
handle: string;
|
||||
provider: ConnectedAccountProvider;
|
||||
accessToken: string;
|
||||
refreshToken: string;
|
||||
accountOwnerId: string;
|
||||
lastSyncHistoryId: string;
|
||||
authFailedAt: Date | null;
|
||||
authFailedAt: string | null;
|
||||
scopes: string[] | null;
|
||||
handleAliases: string[] | null;
|
||||
lastSignedInAt: string | null;
|
||||
userWorkspaceId: string;
|
||||
connectionParameters: ImapSmtpCaldavAccount | null;
|
||||
createdAt: string;
|
||||
updatedAt: string;
|
||||
messageChannels: MessageChannel[];
|
||||
calendarChannels: CalendarChannel[];
|
||||
scopes: string[] | null;
|
||||
connectionParameters?: ImapSmtpCaldavAccount;
|
||||
__typename: 'ConnectedAccount';
|
||||
};
|
||||
|
||||
@@ -1,57 +1,27 @@
|
||||
import { type ImapSmtpCaldavAccount } from '@/accounts/types/ImapSmtpCaldavAccount';
|
||||
import { type MessageFolder } from '@/accounts/types/MessageFolder';
|
||||
import { type ConnectedAccountProvider } from 'twenty-shared/types';
|
||||
import {
|
||||
type MessageChannelContactAutoCreationPolicy,
|
||||
type MessageChannelSyncStage,
|
||||
type MessageChannelSyncStatus,
|
||||
type MessageFolderImportPolicy,
|
||||
} from 'twenty-shared/types';
|
||||
import { type MessageChannelVisibility } from '~/generated/graphql';
|
||||
|
||||
export enum MessageChannelContactAutoCreationPolicy {
|
||||
SENT_AND_RECEIVED = 'SENT_AND_RECEIVED',
|
||||
SENT = 'SENT',
|
||||
NONE = 'NONE',
|
||||
}
|
||||
|
||||
export enum MessageFolderImportPolicy {
|
||||
ALL_FOLDERS = 'ALL_FOLDERS',
|
||||
SELECTED_FOLDERS = 'SELECTED_FOLDERS',
|
||||
}
|
||||
|
||||
export enum MessageChannelSyncStatus {
|
||||
NOT_SYNCED = 'NOT_SYNCED',
|
||||
ONGOING = 'ONGOING',
|
||||
ACTIVE = 'ACTIVE',
|
||||
FAILED_INSUFFICIENT_PERMISSIONS = 'FAILED_INSUFFICIENT_PERMISSIONS',
|
||||
FAILED_UNKNOWN = 'FAILED_UNKNOWN',
|
||||
}
|
||||
|
||||
export enum MessageChannelSyncStage {
|
||||
PENDING_CONFIGURATION = 'PENDING_CONFIGURATION',
|
||||
MESSAGE_LIST_FETCH_PENDING = 'MESSAGE_LIST_FETCH_PENDING',
|
||||
MESSAGE_LIST_FETCH_SCHEDULED = 'MESSAGE_LIST_FETCH_SCHEDULED',
|
||||
MESSAGE_LIST_FETCH_ONGOING = 'MESSAGE_LIST_FETCH_ONGOING',
|
||||
MESSAGES_IMPORT_PENDING = 'MESSAGES_IMPORT_PENDING',
|
||||
MESSAGES_IMPORT_SCHEDULED = 'MESSAGES_IMPORT_SCHEDULED',
|
||||
MESSAGES_IMPORT_ONGOING = 'MESSAGES_IMPORT_ONGOING',
|
||||
FAILED = 'FAILED',
|
||||
}
|
||||
|
||||
export type MessageChannel = {
|
||||
id: string;
|
||||
handle: string;
|
||||
visibility: MessageChannelVisibility;
|
||||
type: string;
|
||||
isContactAutoCreationEnabled: boolean;
|
||||
contactAutoCreationPolicy: MessageChannelContactAutoCreationPolicy;
|
||||
messageFolderImportPolicy: MessageFolderImportPolicy;
|
||||
excludeNonProfessionalEmails: boolean;
|
||||
excludeGroupEmails: boolean;
|
||||
isSyncEnabled: boolean;
|
||||
messageFolders: MessageFolder[];
|
||||
visibility: MessageChannelVisibility;
|
||||
messageFolderImportPolicy: MessageFolderImportPolicy;
|
||||
syncStatus: MessageChannelSyncStatus;
|
||||
syncStage: MessageChannelSyncStage;
|
||||
syncCursor: string;
|
||||
syncStageStartedAt: Date;
|
||||
throttleFailureCount: number;
|
||||
connectedAccount?: {
|
||||
id: string;
|
||||
provider: ConnectedAccountProvider;
|
||||
connectionParameters?: ImapSmtpCaldavAccount;
|
||||
};
|
||||
syncStageStartedAt: string | null;
|
||||
connectedAccountId: string;
|
||||
createdAt: string;
|
||||
updatedAt: string;
|
||||
__typename: 'MessageChannel';
|
||||
};
|
||||
|
||||
@@ -1,11 +1,12 @@
|
||||
export type MessageFolder = {
|
||||
id: string;
|
||||
name: string;
|
||||
syncCursor: string;
|
||||
isSentFolder: boolean;
|
||||
isSynced: boolean;
|
||||
messageChannelId: string;
|
||||
isSentFolder: boolean;
|
||||
parentFolderId: string | null;
|
||||
externalId: string | null;
|
||||
messageChannelId: string;
|
||||
createdAt: string;
|
||||
updatedAt: string;
|
||||
__typename: 'MessageFolder';
|
||||
};
|
||||
|
||||
@@ -0,0 +1,91 @@
|
||||
import { useFirstConnectedAccount } from '@/activities/emails/hooks/useFirstConnectedAccount';
|
||||
import { useFindManyRecords } from '@/object-record/hooks/useFindManyRecords';
|
||||
import { useFindOneRecord } from '@/object-record/hooks/useFindOneRecord';
|
||||
import { useOpenComposeEmailInSidePanel } from '@/side-panel/hooks/useOpenComposeEmailInSidePanel';
|
||||
import { useTargetRecord } from '@/ui/layout/contexts/useTargetRecord';
|
||||
import { CoreObjectNameSingular, SettingsPath } from 'twenty-shared/types';
|
||||
import { isDefined } from 'twenty-shared/utils';
|
||||
import { IconPlus } from 'twenty-ui/display';
|
||||
import { LightIconButton } from 'twenty-ui/input';
|
||||
import { useNavigateSettings } from '~/hooks/useNavigateSettings';
|
||||
|
||||
export const ComposeEmailButton = () => {
|
||||
const targetRecord = useTargetRecord();
|
||||
const { openComposeEmailInSidePanel } = useOpenComposeEmailInSidePanel();
|
||||
const navigateSettings = useNavigateSettings();
|
||||
const { connectedAccountId, loading: accountLoading } =
|
||||
useFirstConnectedAccount();
|
||||
|
||||
const isPerson =
|
||||
targetRecord.targetObjectNameSingular === CoreObjectNameSingular.Person;
|
||||
const isCompany =
|
||||
targetRecord.targetObjectNameSingular === CoreObjectNameSingular.Company;
|
||||
const isOpportunity =
|
||||
targetRecord.targetObjectNameSingular ===
|
||||
CoreObjectNameSingular.Opportunity;
|
||||
|
||||
const { record: personRecord } = useFindOneRecord({
|
||||
objectNameSingular: CoreObjectNameSingular.Person,
|
||||
objectRecordId: targetRecord.id,
|
||||
recordGqlFields: { id: true, emails: { primaryEmail: true } },
|
||||
skip: !isPerson,
|
||||
});
|
||||
|
||||
const { records: companyPeople } = useFindManyRecords({
|
||||
objectNameSingular: CoreObjectNameSingular.Person,
|
||||
filter: { companyId: { eq: targetRecord.id } },
|
||||
recordGqlFields: { id: true, emails: { primaryEmail: true } },
|
||||
limit: 1,
|
||||
skip: !isCompany,
|
||||
});
|
||||
|
||||
const { record: opportunityRecord } = useFindOneRecord({
|
||||
objectNameSingular: CoreObjectNameSingular.Opportunity,
|
||||
objectRecordId: targetRecord.id,
|
||||
recordGqlFields: {
|
||||
id: true,
|
||||
pointOfContact: { id: true, emails: { primaryEmail: true } },
|
||||
company: { id: true },
|
||||
},
|
||||
skip: !isOpportunity,
|
||||
});
|
||||
|
||||
const resolveDefaultTo = (): string => {
|
||||
if (isPerson) {
|
||||
return personRecord?.emails?.primaryEmail ?? '';
|
||||
}
|
||||
if (isCompany) {
|
||||
return companyPeople[0]?.emails?.primaryEmail ?? '';
|
||||
}
|
||||
if (isOpportunity) {
|
||||
return opportunityRecord?.pointOfContact?.emails?.primaryEmail ?? '';
|
||||
}
|
||||
return '';
|
||||
};
|
||||
|
||||
const handleClick = () => {
|
||||
if (!isDefined(connectedAccountId)) {
|
||||
navigateSettings(SettingsPath.NewAccount);
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
openComposeEmailInSidePanel({
|
||||
connectedAccountId,
|
||||
defaultTo: resolveDefaultTo(),
|
||||
});
|
||||
};
|
||||
|
||||
if (accountLoading) {
|
||||
return null;
|
||||
}
|
||||
|
||||
return (
|
||||
<LightIconButton
|
||||
Icon={IconPlus}
|
||||
accent="tertiary"
|
||||
size="small"
|
||||
onClick={handleClick}
|
||||
/>
|
||||
);
|
||||
};
|
||||
@@ -0,0 +1,81 @@
|
||||
import { styled } from '@linaria/react';
|
||||
|
||||
import { EmailComposerFields } from '@/activities/emails/components/EmailComposerFields';
|
||||
import { useEmailComposerState } from '@/activities/emails/hooks/useEmailComposerState';
|
||||
import { t } from '@lingui/core/macro';
|
||||
import { IconArrowBackUp } from 'twenty-ui/display';
|
||||
import { Button } from 'twenty-ui/input';
|
||||
import { themeCssVariables } from 'twenty-ui/theme-constants';
|
||||
|
||||
const StyledComposerContainer = styled.div`
|
||||
background: ${themeCssVariables.background.primary};
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
`;
|
||||
|
||||
const StyledFooter = styled.div`
|
||||
align-items: center;
|
||||
border-top: 1px solid ${themeCssVariables.border.color.light};
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
padding: ${themeCssVariables.spacing[2]} ${themeCssVariables.spacing[4]};
|
||||
`;
|
||||
|
||||
const StyledFooterActions = styled.div`
|
||||
align-items: center;
|
||||
display: flex;
|
||||
gap: ${themeCssVariables.spacing[2]};
|
||||
`;
|
||||
|
||||
type EmailComposerProps = {
|
||||
connectedAccountId: string;
|
||||
defaultTo?: string;
|
||||
defaultSubject?: string;
|
||||
defaultInReplyTo?: string;
|
||||
onClose?: () => void;
|
||||
onSent?: () => void;
|
||||
};
|
||||
|
||||
export const EmailComposer = ({
|
||||
connectedAccountId,
|
||||
defaultTo = '',
|
||||
defaultSubject = '',
|
||||
defaultInReplyTo,
|
||||
onClose,
|
||||
onSent,
|
||||
}: EmailComposerProps) => {
|
||||
const composerState = useEmailComposerState({
|
||||
connectedAccountId,
|
||||
defaultTo,
|
||||
defaultSubject,
|
||||
defaultInReplyTo,
|
||||
onSent,
|
||||
});
|
||||
|
||||
return (
|
||||
<StyledComposerContainer>
|
||||
<EmailComposerFields composerState={composerState} />
|
||||
<StyledFooter>
|
||||
<StyledFooterActions>
|
||||
{onClose && (
|
||||
<Button
|
||||
size="small"
|
||||
variant="secondary"
|
||||
title={t`Cancel`}
|
||||
onClick={onClose}
|
||||
/>
|
||||
)}
|
||||
<Button
|
||||
size="small"
|
||||
variant="primary"
|
||||
accent="blue"
|
||||
title={t`Send`}
|
||||
Icon={IconArrowBackUp}
|
||||
onClick={composerState.handleSend}
|
||||
disabled={!composerState.canSend}
|
||||
/>
|
||||
</StyledFooterActions>
|
||||
</StyledFooter>
|
||||
</StyledComposerContainer>
|
||||
);
|
||||
};
|
||||
+117
@@ -0,0 +1,117 @@
|
||||
import { useQuery } from '@apollo/client/react';
|
||||
import { styled } from '@linaria/react';
|
||||
|
||||
import { type EmailComposerState } from '@/activities/emails/types/EmailComposerState';
|
||||
import { FormAdvancedTextFieldInput } from '@/object-record/record-field/ui/form-types/components/FormAdvancedTextFieldInput';
|
||||
import { FormMultiTextFieldInput } from '@/object-record/record-field/ui/form-types/components/FormMultiTextFieldInput';
|
||||
import { FormTextFieldInput } from '@/object-record/record-field/ui/form-types/components/FormTextFieldInput';
|
||||
import { GET_MY_CONNECTED_ACCOUNTS } from '@/settings/accounts/graphql/queries/getMyConnectedAccounts';
|
||||
import { Select } from '@/ui/input/components/Select';
|
||||
import { t } from '@lingui/core/macro';
|
||||
import { type SelectOption } from 'twenty-ui/input';
|
||||
import { themeCssVariables } from 'twenty-ui/theme-constants';
|
||||
|
||||
const StyledFieldsContainer = styled.div`
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: ${themeCssVariables.spacing[1]};
|
||||
padding: ${themeCssVariables.spacing[3]} ${themeCssVariables.spacing[2]};
|
||||
`;
|
||||
|
||||
const StyledToRow = styled.div`
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
position: relative;
|
||||
`;
|
||||
|
||||
const StyledCcBccToggle = styled.button`
|
||||
all: unset;
|
||||
color: ${themeCssVariables.font.color.tertiary};
|
||||
cursor: pointer;
|
||||
font-size: ${themeCssVariables.font.size.xs};
|
||||
position: absolute;
|
||||
right: 0;
|
||||
top: 0;
|
||||
|
||||
&:hover {
|
||||
color: ${themeCssVariables.font.color.secondary};
|
||||
}
|
||||
`;
|
||||
|
||||
type EmailComposerFieldsProps = {
|
||||
composerState: EmailComposerState;
|
||||
};
|
||||
|
||||
export const EmailComposerFields = ({
|
||||
composerState,
|
||||
}: EmailComposerFieldsProps) => {
|
||||
const { data: accountsData } = useQuery<{
|
||||
myConnectedAccounts: { id: string; handle: string }[];
|
||||
}>(GET_MY_CONNECTED_ACCOUNTS);
|
||||
|
||||
const accountOptions: SelectOption<string>[] =
|
||||
accountsData?.myConnectedAccounts?.map((account) => ({
|
||||
label: account.handle,
|
||||
value: account.id,
|
||||
})) ?? [];
|
||||
|
||||
const hasMultipleAccounts = accountOptions.length > 1;
|
||||
|
||||
return (
|
||||
<StyledFieldsContainer>
|
||||
{hasMultipleAccounts && (
|
||||
<Select
|
||||
dropdownId="email-composer-from-account"
|
||||
label={t`From`}
|
||||
fullWidth
|
||||
value={composerState.connectedAccountId}
|
||||
options={accountOptions}
|
||||
onChange={(value) => composerState.setConnectedAccountId(value)}
|
||||
/>
|
||||
)}
|
||||
<StyledToRow>
|
||||
<FormMultiTextFieldInput
|
||||
label={t`To`}
|
||||
defaultValue={composerState.defaultTo}
|
||||
onChange={composerState.setTo}
|
||||
placeholder={t`Recipients`}
|
||||
/>
|
||||
{!composerState.showCcBcc && (
|
||||
<StyledCcBccToggle onClick={() => composerState.setShowCcBcc(true)}>
|
||||
{t`Cc/Bcc`}
|
||||
</StyledCcBccToggle>
|
||||
)}
|
||||
</StyledToRow>
|
||||
{composerState.showCcBcc && (
|
||||
<>
|
||||
<FormMultiTextFieldInput
|
||||
label={t`Cc`}
|
||||
defaultValue=""
|
||||
onChange={composerState.setCc}
|
||||
placeholder={t`Cc`}
|
||||
/>
|
||||
<FormMultiTextFieldInput
|
||||
label={t`Bcc`}
|
||||
defaultValue=""
|
||||
onChange={composerState.setBcc}
|
||||
placeholder={t`Bcc`}
|
||||
/>
|
||||
</>
|
||||
)}
|
||||
<FormTextFieldInput
|
||||
label={t`Subject`}
|
||||
defaultValue={composerState.defaultSubject}
|
||||
onChange={composerState.setSubject}
|
||||
placeholder={t`Subject`}
|
||||
/>
|
||||
<FormAdvancedTextFieldInput
|
||||
defaultValue=""
|
||||
onChange={composerState.setBody}
|
||||
placeholder={t`Type something or press "/" to see commands`}
|
||||
minHeight={120}
|
||||
maxWidth={600}
|
||||
contentType="json"
|
||||
/>
|
||||
</StyledFieldsContainer>
|
||||
);
|
||||
};
|
||||
+11
-5
@@ -8,13 +8,16 @@ import { EmailThreadMessageSender } from '@/activities/emails/components/EmailTh
|
||||
import { EmailThreadNotShared } from '@/activities/emails/components/EmailThreadNotShared';
|
||||
import { type EmailThreadMessageParticipant } from '@/activities/emails/types/EmailThreadMessageParticipant';
|
||||
import { FIELD_RESTRICTED_ADDITIONAL_PERMISSIONS_REQUIRED } from 'twenty-shared/constants';
|
||||
import { isDefined } from 'twenty-shared/utils';
|
||||
import { MessageParticipantRole } from 'twenty-shared/types';
|
||||
import { isDefined } from 'twenty-shared/utils';
|
||||
import { themeCssVariables } from 'twenty-ui/theme-constants';
|
||||
import { MessageChannelVisibility } from '~/generated/graphql';
|
||||
|
||||
const StyledThreadMessage = styled.div`
|
||||
border-bottom: 1px solid ${themeCssVariables.border.color.light};
|
||||
const StyledThreadMessage = styled.div<{ hideBottomBorder?: boolean }>`
|
||||
border-bottom: ${({ hideBottomBorder }) =>
|
||||
hideBottomBorder
|
||||
? 'none'
|
||||
: `1px solid ${themeCssVariables.border.color.light}`};
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
padding: ${themeCssVariables.spacing[4]} ${themeCssVariables.spacing[0]};
|
||||
@@ -26,11 +29,11 @@ const StyledThreadMessageHeader = styled.div`
|
||||
flex-direction: column;
|
||||
justify-content: space-between;
|
||||
margin-bottom: ${themeCssVariables.spacing[2]};
|
||||
padding: ${themeCssVariables.spacing[0]} ${themeCssVariables.spacing[6]};
|
||||
padding: ${themeCssVariables.spacing[0]} ${themeCssVariables.spacing[2]};
|
||||
`;
|
||||
|
||||
const StyledThreadMessageBody = styled.div`
|
||||
padding: ${themeCssVariables.spacing[0]} ${themeCssVariables.spacing[6]};
|
||||
padding: ${themeCssVariables.spacing[0]} ${themeCssVariables.spacing[2]};
|
||||
`;
|
||||
|
||||
type EmailThreadMessageProps = {
|
||||
@@ -39,6 +42,7 @@ type EmailThreadMessageProps = {
|
||||
sender: EmailThreadMessageParticipant;
|
||||
participants: EmailThreadMessageParticipant[];
|
||||
isExpanded?: boolean;
|
||||
hideBottomBorder?: boolean;
|
||||
};
|
||||
|
||||
export const EmailThreadMessage = ({
|
||||
@@ -47,6 +51,7 @@ export const EmailThreadMessage = ({
|
||||
sender,
|
||||
participants,
|
||||
isExpanded = false,
|
||||
hideBottomBorder = false,
|
||||
}: EmailThreadMessageProps) => {
|
||||
const [isOpen, setIsOpen] = useState(isExpanded);
|
||||
|
||||
@@ -63,6 +68,7 @@ export const EmailThreadMessage = ({
|
||||
|
||||
return (
|
||||
<StyledThreadMessage
|
||||
hideBottomBorder={hideBottomBorder}
|
||||
onClick={() => !isOpen && setIsOpen(true)}
|
||||
style={{ cursor: isOpen || isRestricted ? 'auto' : 'pointer' }}
|
||||
>
|
||||
|
||||
@@ -3,6 +3,7 @@ import { styled } from '@linaria/react';
|
||||
import { ActivityList } from '@/activities/components/ActivityList';
|
||||
import { CustomResolverFetchMoreLoader } from '@/activities/components/CustomResolverFetchMoreLoader';
|
||||
import { SkeletonLoader } from '@/activities/components/SkeletonLoader';
|
||||
import { ComposeEmailButton } from '@/activities/emails/components/ComposeEmailButton';
|
||||
import { EmailThreadPreview } from '@/activities/emails/components/EmailThreadPreview';
|
||||
import { TIMELINE_THREADS_DEFAULT_PAGE_SIZE } from '@/activities/emails/constants/Messaging';
|
||||
import { getTimelineThreadsFromCompanyId } from '@/activities/emails/graphql/queries/getTimelineThreadsFromCompanyId';
|
||||
@@ -38,6 +39,12 @@ const StyledContainer = styled.div`
|
||||
${themeCssVariables.spacing[2]};
|
||||
`;
|
||||
|
||||
const StyledHeaderRow = styled.div`
|
||||
align-items: center;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
`;
|
||||
|
||||
const StyledH1TitleWrapper = styled.div`
|
||||
> h2 {
|
||||
display: flex;
|
||||
@@ -49,6 +56,11 @@ const StyledEmailCount = styled.span`
|
||||
color: ${themeCssVariables.font.color.light};
|
||||
`;
|
||||
|
||||
const StyledComposeButtonRow = styled.div`
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
`;
|
||||
|
||||
export const EmailsCard = () => {
|
||||
const targetRecord = useTargetRecord();
|
||||
|
||||
@@ -89,37 +101,47 @@ export const EmailsCard = () => {
|
||||
|
||||
if (!firstQueryLoading && !timelineThreads?.length) {
|
||||
return (
|
||||
<AnimatedPlaceholderEmptyContainer
|
||||
// oxlint-disable-next-line react/jsx-props-no-spreading
|
||||
{...EMPTY_PLACEHOLDER_TRANSITION_PROPS}
|
||||
>
|
||||
<AnimatedPlaceholder type="emptyInbox" />
|
||||
<AnimatedPlaceholderEmptyTextContainer>
|
||||
<AnimatedPlaceholderEmptyTitle>
|
||||
<Trans>Empty Inbox</Trans>
|
||||
</AnimatedPlaceholderEmptyTitle>
|
||||
<AnimatedPlaceholderEmptySubTitle>
|
||||
<Trans>No email exchange has occurred with this record yet.</Trans>
|
||||
</AnimatedPlaceholderEmptySubTitle>
|
||||
</AnimatedPlaceholderEmptyTextContainer>
|
||||
</AnimatedPlaceholderEmptyContainer>
|
||||
<StyledContainer>
|
||||
<StyledComposeButtonRow>
|
||||
<ComposeEmailButton />
|
||||
</StyledComposeButtonRow>
|
||||
<AnimatedPlaceholderEmptyContainer
|
||||
// oxlint-disable-next-line react/jsx-props-no-spreading
|
||||
{...EMPTY_PLACEHOLDER_TRANSITION_PROPS}
|
||||
>
|
||||
<AnimatedPlaceholder type="emptyInbox" />
|
||||
<AnimatedPlaceholderEmptyTextContainer>
|
||||
<AnimatedPlaceholderEmptyTitle>
|
||||
<Trans>Empty Inbox</Trans>
|
||||
</AnimatedPlaceholderEmptyTitle>
|
||||
<AnimatedPlaceholderEmptySubTitle>
|
||||
<Trans>
|
||||
No email exchange has occurred with this record yet.
|
||||
</Trans>
|
||||
</AnimatedPlaceholderEmptySubTitle>
|
||||
</AnimatedPlaceholderEmptyTextContainer>
|
||||
</AnimatedPlaceholderEmptyContainer>
|
||||
</StyledContainer>
|
||||
);
|
||||
}
|
||||
|
||||
return (
|
||||
<StyledContainer>
|
||||
<Section>
|
||||
<StyledH1TitleWrapper>
|
||||
<H1Title
|
||||
title={
|
||||
<>
|
||||
<Trans>Inbox</Trans>{' '}
|
||||
<StyledEmailCount>{totalNumberOfThreads}</StyledEmailCount>
|
||||
</>
|
||||
}
|
||||
fontColor={H1TitleFontColor.Primary}
|
||||
/>
|
||||
</StyledH1TitleWrapper>
|
||||
<StyledHeaderRow>
|
||||
<StyledH1TitleWrapper>
|
||||
<H1Title
|
||||
title={
|
||||
<>
|
||||
<Trans>Inbox</Trans>{' '}
|
||||
<StyledEmailCount>{totalNumberOfThreads}</StyledEmailCount>
|
||||
</>
|
||||
}
|
||||
fontColor={H1TitleFontColor.Primary}
|
||||
/>
|
||||
</StyledH1TitleWrapper>
|
||||
<ComposeEmailButton />
|
||||
</StyledHeaderRow>
|
||||
{!firstQueryLoading && (
|
||||
<ActivityList>
|
||||
{timelineThreads?.map((thread: TimelineThread) => (
|
||||
|
||||
@@ -0,0 +1,10 @@
|
||||
import gql from 'graphql-tag';
|
||||
|
||||
export const SEND_EMAIL = gql`
|
||||
mutation SendEmail($input: SendEmailInput!) {
|
||||
sendEmail(input: $input) {
|
||||
success
|
||||
error
|
||||
}
|
||||
}
|
||||
`;
|
||||
@@ -0,0 +1,90 @@
|
||||
import { useCallback, useState } from 'react';
|
||||
|
||||
import { useSendEmail } from '@/activities/emails/hooks/useSendEmail';
|
||||
|
||||
type UseEmailComposerStateArgs = {
|
||||
connectedAccountId: string;
|
||||
defaultTo?: string;
|
||||
defaultSubject?: string;
|
||||
defaultInReplyTo?: string;
|
||||
onSent?: () => void;
|
||||
};
|
||||
|
||||
export const useEmailComposerState = ({
|
||||
connectedAccountId: initialConnectedAccountId,
|
||||
defaultTo = '',
|
||||
defaultSubject = '',
|
||||
defaultInReplyTo,
|
||||
onSent,
|
||||
}: UseEmailComposerStateArgs) => {
|
||||
const [connectedAccountId, setConnectedAccountId] = useState(
|
||||
initialConnectedAccountId,
|
||||
);
|
||||
const [to, setTo] = useState(defaultTo);
|
||||
const [cc, setCc] = useState('');
|
||||
const [bcc, setBcc] = useState('');
|
||||
const [subject, setSubject] = useState(defaultSubject);
|
||||
const [body, setBody] = useState('');
|
||||
const [showCcBcc, setShowCcBcc] = useState(false);
|
||||
|
||||
const { sendEmail, loading } = useSendEmail();
|
||||
|
||||
const canSend =
|
||||
to.trim().length > 0 && connectedAccountId.length > 0 && !loading;
|
||||
|
||||
const handleSend = useCallback(async () => {
|
||||
if (!to.trim() || !connectedAccountId) {
|
||||
return;
|
||||
}
|
||||
|
||||
const trimmedTo = to.trim();
|
||||
const trimmedCc = cc.trim();
|
||||
const trimmedBcc = bcc.trim();
|
||||
|
||||
const success = await sendEmail({
|
||||
connectedAccountId,
|
||||
to: trimmedTo,
|
||||
cc: trimmedCc || undefined,
|
||||
bcc: trimmedBcc || undefined,
|
||||
subject,
|
||||
body,
|
||||
inReplyTo: defaultInReplyTo,
|
||||
});
|
||||
|
||||
if (success) {
|
||||
onSent?.();
|
||||
}
|
||||
}, [
|
||||
connectedAccountId,
|
||||
to,
|
||||
cc,
|
||||
bcc,
|
||||
subject,
|
||||
body,
|
||||
defaultInReplyTo,
|
||||
sendEmail,
|
||||
onSent,
|
||||
]);
|
||||
|
||||
return {
|
||||
connectedAccountId,
|
||||
setConnectedAccountId,
|
||||
to,
|
||||
setTo,
|
||||
cc,
|
||||
setCc,
|
||||
bcc,
|
||||
setBcc,
|
||||
subject,
|
||||
setSubject,
|
||||
body,
|
||||
setBody,
|
||||
showCcBcc,
|
||||
setShowCcBcc,
|
||||
handleSend,
|
||||
loading,
|
||||
canSend,
|
||||
defaultTo,
|
||||
defaultSubject,
|
||||
};
|
||||
};
|
||||
@@ -1,6 +1,6 @@
|
||||
import { useQuery } from '@apollo/client/react';
|
||||
import { useCallback, useEffect, useState } from 'react';
|
||||
|
||||
import { type MessageChannel } from '@/accounts/types/MessageChannel';
|
||||
import { fetchAllThreadMessagesOperationSignatureFactory } from '@/activities/emails/graphql/operation-signatures/factories/fetchAllThreadMessagesOperationSignatureFactory';
|
||||
import { type EmailThread } from '@/activities/emails/types/EmailThread';
|
||||
import { type EmailThreadMessage } from '@/activities/emails/types/EmailThreadMessage';
|
||||
@@ -10,7 +10,9 @@ import { type MessageChannelMessageAssociation } from '@/activities/emails/types
|
||||
import { useFindManyRecords } from '@/object-record/hooks/useFindManyRecords';
|
||||
import { useFindOneRecord } from '@/object-record/hooks/useFindOneRecord';
|
||||
import { useUpsertRecordsInStore } from '@/object-record/record-store/hooks/useUpsertRecordsInStore';
|
||||
import { GET_MY_CONNECTED_ACCOUNTS } from '@/settings/accounts/graphql/queries/getMyConnectedAccounts';
|
||||
import {
|
||||
type ConnectedAccountProvider,
|
||||
CoreObjectNameSingular,
|
||||
MessageParticipantRole,
|
||||
} from 'twenty-shared/types';
|
||||
@@ -19,9 +21,6 @@ import { isDefined } from 'twenty-shared/utils';
|
||||
export const useEmailThread = (threadId: string | null) => {
|
||||
const { upsertRecordsInStore } = useUpsertRecordsInStore();
|
||||
const [lastMessageId, setLastMessageId] = useState<string | null>(null);
|
||||
const [lastMessageChannelId, setLastMessageChannelId] = useState<
|
||||
string | null
|
||||
>(null);
|
||||
const [isMessagesFetchComplete, setIsMessagesFetchComplete] = useState(false);
|
||||
|
||||
const { record: thread } = useFindOneRecord<EmailThread>({
|
||||
@@ -66,6 +65,14 @@ export const useEmailThread = (threadId: string | null) => {
|
||||
}
|
||||
}, [fetchMoreRecords, messagesLoading, hasNextPage]);
|
||||
|
||||
// When all messages fit in the first page, fetchMoreMessages is never called,
|
||||
// so we need to mark fetch as complete here to unblock downstream queries
|
||||
useEffect(() => {
|
||||
if (!messagesLoading && !hasNextPage) {
|
||||
setIsMessagesFetchComplete(true);
|
||||
}
|
||||
}, [messagesLoading, hasNextPage]);
|
||||
|
||||
useEffect(() => {
|
||||
if (messages.length > 0 && isMessagesFetchComplete) {
|
||||
const lastMessage = messages[messages.length - 1];
|
||||
@@ -116,34 +123,6 @@ export const useEmailThread = (threadId: string | null) => {
|
||||
skip: !lastMessageId || !isMessagesFetchComplete,
|
||||
});
|
||||
|
||||
useEffect(() => {
|
||||
if (messageChannelMessageAssociationData.length > 0) {
|
||||
setLastMessageChannelId(
|
||||
messageChannelMessageAssociationData[0].messageChannelId,
|
||||
);
|
||||
}
|
||||
}, [messageChannelMessageAssociationData]);
|
||||
|
||||
const { records: messageChannelData, loading: messageChannelLoading } =
|
||||
useFindManyRecords<MessageChannel>({
|
||||
filter: {
|
||||
id: {
|
||||
eq: lastMessageChannelId ?? '',
|
||||
},
|
||||
},
|
||||
objectNameSingular: CoreObjectNameSingular.MessageChannel,
|
||||
recordGqlFields: {
|
||||
id: true,
|
||||
handle: true,
|
||||
connectedAccount: {
|
||||
id: true,
|
||||
provider: true,
|
||||
connectionParameters: true,
|
||||
},
|
||||
},
|
||||
skip: !lastMessageChannelId,
|
||||
});
|
||||
|
||||
const messageThreadExternalId =
|
||||
messageChannelMessageAssociationData.length > 0
|
||||
? messageChannelMessageAssociationData[0].messageThreadExternalId
|
||||
@@ -152,8 +131,6 @@ export const useEmailThread = (threadId: string | null) => {
|
||||
messageChannelMessageAssociationData.length > 0
|
||||
? messageChannelMessageAssociationData[0].messageExternalId
|
||||
: null;
|
||||
const connectedAccountHandle =
|
||||
messageChannelData.length > 0 ? messageChannelData[0].handle : null;
|
||||
|
||||
const messagesWithSender: EmailThreadMessageWithSender[] = messages
|
||||
.map((message) => {
|
||||
@@ -172,21 +149,32 @@ export const useEmailThread = (threadId: string | null) => {
|
||||
})
|
||||
.filter(isDefined);
|
||||
|
||||
const connectedAccount =
|
||||
messageChannelData.length > 0
|
||||
? messageChannelData[0]?.connectedAccount
|
||||
: null;
|
||||
const connectedAccountProvider = connectedAccount?.provider ?? null;
|
||||
const connectedAccountConnectionParameters =
|
||||
connectedAccount?.connectionParameters;
|
||||
// connectedAccount and messageChannel live in the core schema,
|
||||
// so we resolve the account from the core myConnectedAccounts query
|
||||
// rather than the workspace-level messageChannel records.
|
||||
const { data: myConnectedAccountsData, loading: messageChannelLoading } =
|
||||
useQuery<{
|
||||
myConnectedAccounts: {
|
||||
id: string;
|
||||
handle: string;
|
||||
provider: ConnectedAccountProvider;
|
||||
}[];
|
||||
}>(GET_MY_CONNECTED_ACCOUNTS);
|
||||
|
||||
const resolvedConnectedAccount =
|
||||
myConnectedAccountsData?.myConnectedAccounts[0] ?? null;
|
||||
|
||||
const connectedAccountId = resolvedConnectedAccount?.id ?? null;
|
||||
const connectedAccountHandle = resolvedConnectedAccount?.handle ?? null;
|
||||
const connectedAccountProvider = resolvedConnectedAccount?.provider ?? null;
|
||||
|
||||
return {
|
||||
thread,
|
||||
messages: messagesWithSender,
|
||||
messageThreadExternalId,
|
||||
connectedAccountId,
|
||||
connectedAccountHandle,
|
||||
connectedAccountProvider,
|
||||
connectedAccountConnectionParameters,
|
||||
threadLoading: messagesLoading,
|
||||
messageChannelLoading,
|
||||
lastMessageExternalId,
|
||||
|
||||
@@ -0,0 +1,17 @@
|
||||
import { useQuery } from '@apollo/client/react';
|
||||
|
||||
import { GET_MY_CONNECTED_ACCOUNTS } from '@/settings/accounts/graphql/queries/getMyConnectedAccounts';
|
||||
|
||||
export const useFirstConnectedAccount = () => {
|
||||
const { data, loading } = useQuery<{
|
||||
myConnectedAccounts: { id: string; handle: string }[];
|
||||
}>(GET_MY_CONNECTED_ACCOUNTS);
|
||||
|
||||
const firstAccount = data?.myConnectedAccounts?.[0] ?? null;
|
||||
|
||||
return {
|
||||
connectedAccountId: firstAccount?.id ?? null,
|
||||
connectedAccountHandle: firstAccount?.handle ?? null,
|
||||
loading,
|
||||
};
|
||||
};
|
||||
@@ -0,0 +1,63 @@
|
||||
import { useMemo } from 'react';
|
||||
|
||||
import { useEmailThread } from '@/activities/emails/hooks/useEmailThread';
|
||||
import {
|
||||
type ReplyContext,
|
||||
type ReplyContextReady,
|
||||
} from '@/activities/emails/types/ReplyContext';
|
||||
import { isDefined } from 'twenty-shared/utils';
|
||||
|
||||
export type { ReplyContext, ReplyContextReady };
|
||||
|
||||
export const useReplyContext = (
|
||||
threadId: string | null,
|
||||
): ReplyContext | null => {
|
||||
const {
|
||||
messages,
|
||||
connectedAccountId,
|
||||
connectedAccountProvider,
|
||||
messageChannelLoading,
|
||||
threadLoading,
|
||||
} = useEmailThread(threadId);
|
||||
|
||||
return useMemo(() => {
|
||||
if (
|
||||
!isDefined(connectedAccountId) ||
|
||||
!isDefined(connectedAccountProvider)
|
||||
) {
|
||||
if (messageChannelLoading || threadLoading) {
|
||||
return { loading: true };
|
||||
}
|
||||
|
||||
return null;
|
||||
}
|
||||
|
||||
const lastMessage = messages[messages.length - 1];
|
||||
|
||||
if (!isDefined(lastMessage)) {
|
||||
return null;
|
||||
}
|
||||
|
||||
const senderHandle = lastMessage.sender?.handle ?? '';
|
||||
|
||||
const rawSubject = lastMessage.subject ?? '';
|
||||
const subject = rawSubject.startsWith('Re: ')
|
||||
? rawSubject
|
||||
: `Re: ${rawSubject}`;
|
||||
|
||||
return {
|
||||
loading: false,
|
||||
to: senderHandle,
|
||||
subject,
|
||||
inReplyTo: lastMessage.headerMessageId ?? '',
|
||||
connectedAccountId,
|
||||
connectedAccountProvider,
|
||||
};
|
||||
}, [
|
||||
messages,
|
||||
connectedAccountId,
|
||||
connectedAccountProvider,
|
||||
messageChannelLoading,
|
||||
threadLoading,
|
||||
]);
|
||||
};
|
||||
@@ -0,0 +1,94 @@
|
||||
import { useMutation } from '@apollo/client/react';
|
||||
import { useCallback } from 'react';
|
||||
|
||||
import { SEND_EMAIL } from '@/activities/emails/graphql/mutations/sendEmail';
|
||||
import { getTimelineThreadsFromCompanyId } from '@/activities/emails/graphql/queries/getTimelineThreadsFromCompanyId';
|
||||
import { getTimelineThreadsFromOpportunityId } from '@/activities/emails/graphql/queries/getTimelineThreadsFromOpportunityId';
|
||||
import { getTimelineThreadsFromPersonId } from '@/activities/emails/graphql/queries/getTimelineThreadsFromPersonId';
|
||||
import { useApolloCoreClient } from '@/object-metadata/hooks/useApolloCoreClient';
|
||||
import { useSnackBar } from '@/ui/feedback/snack-bar-manager/hooks/useSnackBar';
|
||||
import { t } from '@lingui/core/macro';
|
||||
import {
|
||||
type SendEmailMutation,
|
||||
type SendEmailMutationVariables,
|
||||
} from '~/generated-metadata/graphql';
|
||||
|
||||
type SendEmailParams = {
|
||||
connectedAccountId: string;
|
||||
to: string;
|
||||
cc?: string;
|
||||
bcc?: string;
|
||||
subject: string;
|
||||
body: string;
|
||||
inReplyTo?: string;
|
||||
};
|
||||
|
||||
export const useSendEmail = () => {
|
||||
const apolloCoreClient = useApolloCoreClient();
|
||||
|
||||
const [sendEmailMutation, { loading }] = useMutation<
|
||||
SendEmailMutation,
|
||||
SendEmailMutationVariables
|
||||
>(SEND_EMAIL);
|
||||
|
||||
const { enqueueSuccessSnackBar, enqueueErrorSnackBar } = useSnackBar();
|
||||
|
||||
const sendEmail = useCallback(
|
||||
async (params: SendEmailParams): Promise<boolean> => {
|
||||
try {
|
||||
const result = await sendEmailMutation({
|
||||
variables: {
|
||||
input: {
|
||||
connectedAccountId: params.connectedAccountId,
|
||||
to: params.to,
|
||||
cc: params.cc,
|
||||
bcc: params.bcc,
|
||||
subject: params.subject,
|
||||
body: params.body,
|
||||
inReplyTo: params.inReplyTo,
|
||||
},
|
||||
},
|
||||
});
|
||||
|
||||
if (result.data?.sendEmail.success) {
|
||||
enqueueSuccessSnackBar({
|
||||
message: t`Email sent successfully`,
|
||||
});
|
||||
|
||||
await apolloCoreClient.refetchQueries({
|
||||
include: [
|
||||
getTimelineThreadsFromCompanyId,
|
||||
getTimelineThreadsFromPersonId,
|
||||
getTimelineThreadsFromOpportunityId,
|
||||
'FindManyMessages',
|
||||
'FindManyMessageParticipants',
|
||||
'FindManyMessageChannelMessageAssociations',
|
||||
],
|
||||
});
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
enqueueErrorSnackBar({
|
||||
message: result.data?.sendEmail.error ?? t`Failed to send email`,
|
||||
});
|
||||
|
||||
return false;
|
||||
} catch {
|
||||
enqueueErrorSnackBar({
|
||||
message: t`Failed to send email`,
|
||||
});
|
||||
|
||||
return false;
|
||||
}
|
||||
},
|
||||
[
|
||||
sendEmailMutation,
|
||||
enqueueSuccessSnackBar,
|
||||
enqueueErrorSnackBar,
|
||||
apolloCoreClient,
|
||||
],
|
||||
);
|
||||
|
||||
return { sendEmail, loading };
|
||||
};
|
||||
@@ -0,0 +1,3 @@
|
||||
import { type useEmailComposerState } from '@/activities/emails/hooks/useEmailComposerState';
|
||||
|
||||
export type EmailComposerState = ReturnType<typeof useEmailComposerState>;
|
||||
@@ -6,6 +6,7 @@ export type EmailThreadMessage = {
|
||||
text: string;
|
||||
receivedAt: string;
|
||||
subject: string;
|
||||
headerMessageId: string;
|
||||
messageThreadId: string;
|
||||
messageParticipants: EmailThreadMessageParticipant[];
|
||||
messageThread: MessageThread;
|
||||
|
||||
@@ -0,0 +1,16 @@
|
||||
import { type ConnectedAccountProvider } from 'twenty-shared/types';
|
||||
|
||||
type ReplyContextLoading = {
|
||||
loading: true;
|
||||
};
|
||||
|
||||
export type ReplyContextReady = {
|
||||
loading: false;
|
||||
to: string;
|
||||
subject: string;
|
||||
inReplyTo: string;
|
||||
connectedAccountId: string;
|
||||
connectedAccountProvider: ConnectedAccountProvider;
|
||||
};
|
||||
|
||||
export type ReplyContext = ReplyContextLoading | ReplyContextReady;
|
||||
+32
-3
@@ -4,8 +4,13 @@ import { CommandMenuContext } from '@/command-menu-item/contexts/CommandMenuCont
|
||||
import { CommandMenuComponentInstanceContext } from '@/command-menu/states/contexts/CommandMenuComponentInstanceContext';
|
||||
import { getSidePanelCommandMenuDropdownIdFromCommandMenuId } from '@/command-menu-item/utils/getSidePanelCommandMenuDropdownIdFromCommandMenuId';
|
||||
import { OptionsDropdownMenu } from '@/ui/layout/dropdown/components/OptionsDropdownMenu';
|
||||
import { useCloseDropdown } from '@/ui/layout/dropdown/hooks/useCloseDropdown';
|
||||
import { sidePanelWidgetFooterActionsState } from '@/ui/layout/side-panel/states/sidePanelWidgetFooterActionsState';
|
||||
import { useAvailableComponentInstanceIdOrThrow } from '@/ui/utilities/state/component-state/hooks/useAvailableComponentInstanceIdOrThrow';
|
||||
import { useAtomStateValue } from '@/ui/utilities/state/jotai/hooks/useAtomStateValue';
|
||||
import { useContext } from 'react';
|
||||
import { HorizontalSeparator } from 'twenty-ui/display';
|
||||
import { MenuItem } from 'twenty-ui/navigation';
|
||||
|
||||
export const RecordPageSidePanelCommandMenuDropdown = () => {
|
||||
const { commandMenuItems } = useContext(CommandMenuContext);
|
||||
@@ -17,13 +22,24 @@ export const RecordPageSidePanelCommandMenuDropdown = () => {
|
||||
const dropdownId =
|
||||
getSidePanelCommandMenuDropdownIdFromCommandMenuId(commandMenuId);
|
||||
|
||||
const { closeDropdown } = useCloseDropdown();
|
||||
|
||||
const sidePanelWidgetFooterActions = useAtomStateValue(
|
||||
sidePanelWidgetFooterActionsState,
|
||||
);
|
||||
|
||||
const dropdownWidgetActions = sidePanelWidgetFooterActions.filter(
|
||||
(action) => action.isPinned === false,
|
||||
);
|
||||
|
||||
const recordSelectionActions = commandMenuItems.filter(
|
||||
(action) => action.scope === CommandMenuItemScope.RecordSelection,
|
||||
);
|
||||
|
||||
const selectableItemIdArray = recordSelectionActions.map(
|
||||
(action) => action.key,
|
||||
);
|
||||
const selectableItemIdArray = [
|
||||
...dropdownWidgetActions.map((action) => action.key),
|
||||
...recordSelectionActions.map((action) => action.key),
|
||||
];
|
||||
|
||||
return (
|
||||
<OptionsDropdownMenu
|
||||
@@ -31,6 +47,19 @@ export const RecordPageSidePanelCommandMenuDropdown = () => {
|
||||
selectableListId={commandMenuId}
|
||||
selectableItemIdArray={selectableItemIdArray}
|
||||
>
|
||||
{dropdownWidgetActions.map((action) => (
|
||||
<MenuItem
|
||||
key={action.key}
|
||||
text={action.label}
|
||||
LeftIcon={action.Icon}
|
||||
onClick={() => {
|
||||
closeDropdown(dropdownId);
|
||||
action.onClick();
|
||||
}}
|
||||
/>
|
||||
))}
|
||||
{dropdownWidgetActions.length > 0 &&
|
||||
recordSelectionActions.length > 0 && <HorizontalSeparator noMargin />}
|
||||
{recordSelectionActions.map((action) => (
|
||||
<CommandMenuItemComponent action={action} key={action.key} />
|
||||
))}
|
||||
|
||||
+2
@@ -40,6 +40,7 @@ import { TestWorkflowSingleRecordCommand } from '@/command-menu-item/engine-comm
|
||||
import { TidyUpWorkflowSingleRecordCommand } from '@/command-menu-item/engine-command/record/single-record/workflow/components/TidyUpWorkflowSingleRecordCommand';
|
||||
import { HeadlessFrontComponentRendererEngineCommand } from '@/command-menu-item/engine-command/components/HeadlessFrontComponentRendererEngineCommand';
|
||||
import { TriggerWorkflowVersionEngineCommand } from '@/command-menu-item/engine-command/record/components/TriggerWorkflowVersionEngineCommand';
|
||||
import { ComposeEmailCommand } from '@/command-menu-item/engine-command/global/components/ComposeEmailCommand';
|
||||
import { ReplyToEmailThreadCommand } from '@/command-menu-item/engine-command/record/single-record/message-thread/components/ReplyToEmailThreadCommand';
|
||||
import { CoreObjectNamePlural } from '@/object-metadata/types/CoreObjectNamePlural';
|
||||
import { msg } from '@lingui/core/macro';
|
||||
@@ -242,6 +243,7 @@ export const ENGINE_COMPONENT_KEY_COMPONENT_MAP: Record<
|
||||
<HeadlessFrontComponentRendererEngineCommand />
|
||||
),
|
||||
[EngineComponentKey.REPLY_TO_EMAIL_THREAD]: <ReplyToEmailThreadCommand />,
|
||||
[EngineComponentKey.COMPOSE_EMAIL]: <ComposeEmailCommand />,
|
||||
|
||||
// Deprecated keys kept for backward compatibility until migration runs
|
||||
[EngineComponentKey.DELETE_SINGLE_RECORD]: <DeleteRecordsCommand />,
|
||||
|
||||
+31
@@ -0,0 +1,31 @@
|
||||
import { useFirstConnectedAccount } from '@/activities/emails/hooks/useFirstConnectedAccount';
|
||||
import { HeadlessEngineCommandWrapperEffect } from '@/command-menu-item/engine-command/components/HeadlessEngineCommandWrapperEffect';
|
||||
import { useOpenComposeEmailInSidePanel } from '@/side-panel/hooks/useOpenComposeEmailInSidePanel';
|
||||
import { SettingsPath } from 'twenty-shared/types';
|
||||
import { isDefined } from 'twenty-shared/utils';
|
||||
import { useNavigateSettings } from '~/hooks/useNavigateSettings';
|
||||
|
||||
export const ComposeEmailCommand = () => {
|
||||
const { connectedAccountId, loading } = useFirstConnectedAccount();
|
||||
const { openComposeEmailInSidePanel } = useOpenComposeEmailInSidePanel();
|
||||
const navigateSettings = useNavigateSettings();
|
||||
|
||||
const handleExecute = () => {
|
||||
if (!isDefined(connectedAccountId)) {
|
||||
navigateSettings(SettingsPath.NewAccount);
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
openComposeEmailInSidePanel({
|
||||
connectedAccountId,
|
||||
});
|
||||
};
|
||||
|
||||
return (
|
||||
<HeadlessEngineCommandWrapperEffect
|
||||
execute={handleExecute}
|
||||
ready={!loading}
|
||||
/>
|
||||
);
|
||||
};
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user