i18n - translations (#16813)
Created by Github action Co-authored-by: github-actions <github-actions@twenty.com>
This commit is contained in:
committed by
GitHub
parent
6547c11862
commit
874e4e4666
@@ -64,10 +64,10 @@ msgstr "crwdns4993:0crwdne4993:0"
|
||||
msgid ": Past"
|
||||
msgstr "crwdns4995:0crwdne4995:0"
|
||||
|
||||
#. js-lingui-id: 4iJDkt
|
||||
#. js-lingui-id: DIUF3A
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
msgid ": Today"
|
||||
msgstr "crwdns4997:0crwdne4997:0"
|
||||
msgid ": Today{timeZoneAbbreviationSuffix}"
|
||||
msgstr "crwdns105144:0{timeZoneAbbreviationSuffix}crwdne105144:0"
|
||||
|
||||
#. js-lingui-id: N/lIUf
|
||||
#: src/modules/billing/hooks/useBillingWording.ts
|
||||
@@ -125,21 +125,17 @@ msgstr "crwdns8628:00={0}crwdnd8628:01={1}crwdnd8628:02={2}crwdne8628:0"
|
||||
msgid "{0, plural, one {{1} job could not be retried} other {{2} jobs could not be retried}}"
|
||||
msgstr "crwdns8630:00={0}crwdnd8630:01={1}crwdnd8630:02={2}crwdne8630:0"
|
||||
|
||||
#. js-lingui-id: m6BGdm
|
||||
#. js-lingui-id: 0LMb5P
|
||||
#. placeholder {0}: Math.abs(days)
|
||||
#. placeholder {1}: import { isDate, isNumber, isString } from '@sniptt/guards'; import { differenceInCalendarDays, differenceInDays, differenceInYears, format, formatDistance, formatDistanceToNow, isToday, isValid, parseISO, type Locale, } from 'date-fns'; import { DateFormat } from '@/localization/constants/DateFormat'; import { CustomError, isDefined } from 'twenty-shared/utils'; import { i18n } from '@lingui/core'; import { plural, t } from '@lingui/core/macro'; import { logError } from './logError'; export const parseDate = (dateToParse: Date | string | number): Date => { if (dateToParse === 'now') return new Date(); let formattedDate: Date | null = null; if (!dateToParse) { throw new CustomError( `Invalid date passed to formatPastDate: "${dateToParse}"`, 'INVALID_DATE_FORMAT', ); } else if (isString(dateToParse)) { formattedDate = parseISO(dateToParse); } else if (isDate(dateToParse)) { formattedDate = dateToParse; } else if (isNumber(dateToParse)) { formattedDate = new Date(dateToParse); } if (!formattedDate) { throw new CustomError( `Invalid date passed to formatPastDate: "${dateToParse}"`, 'INVALID_DATE_FORMAT', ); } if (!isValid(formattedDate)) { throw new CustomError( `Invalid date passed to formatPastDate: "${dateToParse}"`, 'INVALID_DATE_FORMAT', ); } return formattedDate; }; export const formatDate = ( dateToFormat: Date | string | number, formatString: string, ) => { try { const parsedDate = parseDate(dateToFormat); return format(parsedDate, formatString); } catch (error) { logError(error); return ''; } }; export const beautifyExactDateTime = ( dateToBeautify: Date | string | number, ) => { const parsedDate = parseDate(dateToBeautify); const isTodayDate = isToday(parsedDate); const dateFormat = isTodayDate ? 'HH:mm' : 'MMM d, yyyy · HH:mm'; return formatDate(dateToBeautify, dateFormat); }; export const beautifyExactDate = (dateToBeautify: Date | string | number) => { const parsedDate = parseDate(dateToBeautify); const isTodayDate = isToday(parsedDate); if (isTodayDate) { return t`Today`; } return formatDate(dateToBeautify, 'MMM d, yyyy'); }; export const beautifyPastDateRelativeToNow = ( pastDate: Date | string | number, locale?: Locale, ) => { try { const parsedDate = parseDate(pastDate); const now = new Date(); const diffInSeconds = Math.abs( (now.getTime() - parsedDate.getTime()) / 1000, ); // For very recent times (less than 30 seconds), show "now" if (diffInSeconds < 30) { return t`now`; } return formatDistanceToNow(parsedDate, { addSuffix: true, locale, includeSeconds: true, }); } catch (error) { logError(error); return ''; } }; export const hasDatePassed = (date: Date | string | number) => { try { const parsedDate = parseDate(date); return differenceInCalendarDays(new Date(), parsedDate) >= 1; } catch (error) { logError(error); return false; } }; export const beautifyDateDiff = ( date: string, dateToCompareWith?: string, short = false, locale?: Locale, ) => { // For simple cases, use date-fns which has excellent locale support if (!short && isDefined(locale)) { const fromDate = new Date(date); const toDate = dateToCompareWith ? new Date(dateToCompareWith) : new Date(); return formatDistance(fromDate, toDate, { locale }); } // Manual implementation for complex cases or when locale is not available const fromDate = parseISO(date); const toDate = dateToCompareWith ? parseISO(dateToCompareWith) : new Date(); const years = differenceInYears(fromDate, toDate); // Calculate remaining days after accounting for full years const startDateForDayCalculation = new Date(toDate); startDateForDayCalculation.setFullYear( startDateForDayCalculation.getFullYear() + years, ); const days = differenceInDays(fromDate, startDateForDayCalculation); let result = ''; if (years !== 0) { result = plural(Math.abs(years), { one: `${years} ${t`year`}`, other: `${years} ${t`years`}`, }); if (short) return result; } if (years !== 0 && days !== 0) { result += ` ${t`and`} `; } if (days !== 0) { const daysPart = plural(Math.abs(days), { one: `${days} ${t`day`}`, other: `${days} ${t`days`}`, }); result += daysPart; } return result; }; export const formatToHumanReadableDate = (date: Date | string) => { const parsedJSDate = parseDate(date); return i18n.date(parsedJSDate, { dateStyle: 'medium' }); }; export const getDateTimeFormatStringFoDatePickerInputMask = ( dateFormat: DateFormat, ): string => { switch (dateFormat) { case DateFormat.DAY_FIRST: return `dd/MM/yyyy HH:mm`; case DateFormat.YEAR_FIRST: return `yyyy-MM-dd HH:mm`; case DateFormat.MONTH_FIRST: default: return `MM/dd/yyyy HH:mm`; } }; export const getDateFormatStringForDatePickerInputMask = ( dateFormat: DateFormat, ): string => { switch (dateFormat) { case DateFormat.DAY_FIRST: return `dd/MM/yyyy`; case DateFormat.YEAR_FIRST: return `yyyy-MM-dd`; case DateFormat.MONTH_FIRST: default: return `MM/dd/yyyy`; } };
|
||||
#. placeholder {2}: import { isDate, isNumber, isString } from '@sniptt/guards'; import { differenceInCalendarDays, differenceInDays, differenceInYears, format, formatDistance, formatDistanceToNow, isToday, isValid, parseISO, type Locale, } from 'date-fns'; import { DateFormat } from '@/localization/constants/DateFormat'; import { CustomError, isDefined } from 'twenty-shared/utils'; import { i18n } from '@lingui/core'; import { plural, t } from '@lingui/core/macro'; import { logError } from './logError'; export const parseDate = (dateToParse: Date | string | number): Date => { if (dateToParse === 'now') return new Date(); let formattedDate: Date | null = null; if (!dateToParse) { throw new CustomError( `Invalid date passed to formatPastDate: "${dateToParse}"`, 'INVALID_DATE_FORMAT', ); } else if (isString(dateToParse)) { formattedDate = parseISO(dateToParse); } else if (isDate(dateToParse)) { formattedDate = dateToParse; } else if (isNumber(dateToParse)) { formattedDate = new Date(dateToParse); } if (!formattedDate) { throw new CustomError( `Invalid date passed to formatPastDate: "${dateToParse}"`, 'INVALID_DATE_FORMAT', ); } if (!isValid(formattedDate)) { throw new CustomError( `Invalid date passed to formatPastDate: "${dateToParse}"`, 'INVALID_DATE_FORMAT', ); } return formattedDate; }; export const formatDate = ( dateToFormat: Date | string | number, formatString: string, ) => { try { const parsedDate = parseDate(dateToFormat); return format(parsedDate, formatString); } catch (error) { logError(error); return ''; } }; export const beautifyExactDateTime = ( dateToBeautify: Date | string | number, ) => { const parsedDate = parseDate(dateToBeautify); const isTodayDate = isToday(parsedDate); const dateFormat = isTodayDate ? 'HH:mm' : 'MMM d, yyyy · HH:mm'; return formatDate(dateToBeautify, dateFormat); }; export const beautifyExactDate = (dateToBeautify: Date | string | number) => { const parsedDate = parseDate(dateToBeautify); const isTodayDate = isToday(parsedDate); if (isTodayDate) { return t`Today`; } return formatDate(dateToBeautify, 'MMM d, yyyy'); }; export const beautifyPastDateRelativeToNow = ( pastDate: Date | string | number, locale?: Locale, ) => { try { const parsedDate = parseDate(pastDate); const now = new Date(); const diffInSeconds = Math.abs( (now.getTime() - parsedDate.getTime()) / 1000, ); // For very recent times (less than 30 seconds), show "now" if (diffInSeconds < 30) { return t`now`; } return formatDistanceToNow(parsedDate, { addSuffix: true, locale, includeSeconds: true, }); } catch (error) { logError(error); return ''; } }; export const hasDatePassed = (date: Date | string | number) => { try { const parsedDate = parseDate(date); return differenceInCalendarDays(new Date(), parsedDate) >= 1; } catch (error) { logError(error); return false; } }; export const beautifyDateDiff = ( date: string, dateToCompareWith?: string, short = false, locale?: Locale, ) => { // For simple cases, use date-fns which has excellent locale support if (!short && isDefined(locale)) { const fromDate = new Date(date); const toDate = dateToCompareWith ? new Date(dateToCompareWith) : new Date(); return formatDistance(fromDate, toDate, { locale }); } // Manual implementation for complex cases or when locale is not available const fromDate = parseISO(date); const toDate = dateToCompareWith ? parseISO(dateToCompareWith) : new Date(); const years = differenceInYears(fromDate, toDate); // Calculate remaining days after accounting for full years const startDateForDayCalculation = new Date(toDate); startDateForDayCalculation.setFullYear( startDateForDayCalculation.getFullYear() + years, ); const days = differenceInDays(fromDate, startDateForDayCalculation); let result = ''; if (years !== 0) { result = plural(Math.abs(years), { one: `${years} ${t`year`}`, other: `${years} ${t`years`}`, }); if (short) return result; } if (years !== 0 && days !== 0) { result += ` ${t`and`} `; } if (days !== 0) { const daysPart = plural(Math.abs(days), { one: `${days} ${t`day`}`, other: `${days} ${t`days`}`, }); result += daysPart; } return result; }; export const formatToHumanReadableDate = (date: Date | string) => { const parsedJSDate = parseDate(date); return i18n.date(parsedJSDate, { dateStyle: 'medium' }); }; export const getDateTimeFormatStringFoDatePickerInputMask = ( dateFormat: DateFormat, ): string => { switch (dateFormat) { case DateFormat.DAY_FIRST: return `dd/MM/yyyy HH:mm`; case DateFormat.YEAR_FIRST: return `yyyy-MM-dd HH:mm`; case DateFormat.MONTH_FIRST: default: return `MM/dd/yyyy HH:mm`; } }; export const getDateFormatStringForDatePickerInputMask = ( dateFormat: DateFormat, ): string => { switch (dateFormat) { case DateFormat.DAY_FIRST: return `dd/MM/yyyy`; case DateFormat.YEAR_FIRST: return `yyyy-MM-dd`; case DateFormat.MONTH_FIRST: default: return `MM/dd/yyyy`; } };
|
||||
#: src/utils/date-utils.ts
|
||||
msgid "{0, plural, one {{days} {1}} other {{days} {2}}}"
|
||||
msgstr "crwdns7554:00={0}crwdnd7554:0days={days}crwdnd7554:01={1}crwdnd7554:0days={days}crwdnd7554:02={2}crwdne7554:0"
|
||||
msgid "{0, plural, one {{days} day} other {{days} days}}"
|
||||
msgstr "crwdns105136:00={0}crwdnd105136:0days={days}crwdnd105136:0days={days}crwdne105136:0"
|
||||
|
||||
#. js-lingui-id: FYY5cK
|
||||
#. js-lingui-id: dXYycw
|
||||
#. placeholder {0}: Math.abs(years)
|
||||
#. placeholder {1}: import { isDate, isNumber, isString } from '@sniptt/guards'; import { differenceInCalendarDays, differenceInDays, differenceInYears, format, formatDistance, formatDistanceToNow, isToday, isValid, parseISO, type Locale, } from 'date-fns'; import { DateFormat } from '@/localization/constants/DateFormat'; import { CustomError, isDefined } from 'twenty-shared/utils'; import { i18n } from '@lingui/core'; import { plural, t } from '@lingui/core/macro'; import { logError } from './logError'; export const parseDate = (dateToParse: Date | string | number): Date => { if (dateToParse === 'now') return new Date(); let formattedDate: Date | null = null; if (!dateToParse) { throw new CustomError( `Invalid date passed to formatPastDate: "${dateToParse}"`, 'INVALID_DATE_FORMAT', ); } else if (isString(dateToParse)) { formattedDate = parseISO(dateToParse); } else if (isDate(dateToParse)) { formattedDate = dateToParse; } else if (isNumber(dateToParse)) { formattedDate = new Date(dateToParse); } if (!formattedDate) { throw new CustomError( `Invalid date passed to formatPastDate: "${dateToParse}"`, 'INVALID_DATE_FORMAT', ); } if (!isValid(formattedDate)) { throw new CustomError( `Invalid date passed to formatPastDate: "${dateToParse}"`, 'INVALID_DATE_FORMAT', ); } return formattedDate; }; export const formatDate = ( dateToFormat: Date | string | number, formatString: string, ) => { try { const parsedDate = parseDate(dateToFormat); return format(parsedDate, formatString); } catch (error) { logError(error); return ''; } }; export const beautifyExactDateTime = ( dateToBeautify: Date | string | number, ) => { const parsedDate = parseDate(dateToBeautify); const isTodayDate = isToday(parsedDate); const dateFormat = isTodayDate ? 'HH:mm' : 'MMM d, yyyy · HH:mm'; return formatDate(dateToBeautify, dateFormat); }; export const beautifyExactDate = (dateToBeautify: Date | string | number) => { const parsedDate = parseDate(dateToBeautify); const isTodayDate = isToday(parsedDate); if (isTodayDate) { return t`Today`; } return formatDate(dateToBeautify, 'MMM d, yyyy'); }; export const beautifyPastDateRelativeToNow = ( pastDate: Date | string | number, locale?: Locale, ) => { try { const parsedDate = parseDate(pastDate); const now = new Date(); const diffInSeconds = Math.abs( (now.getTime() - parsedDate.getTime()) / 1000, ); // For very recent times (less than 30 seconds), show "now" if (diffInSeconds < 30) { return t`now`; } return formatDistanceToNow(parsedDate, { addSuffix: true, locale, includeSeconds: true, }); } catch (error) { logError(error); return ''; } }; export const hasDatePassed = (date: Date | string | number) => { try { const parsedDate = parseDate(date); return differenceInCalendarDays(new Date(), parsedDate) >= 1; } catch (error) { logError(error); return false; } }; export const beautifyDateDiff = ( date: string, dateToCompareWith?: string, short = false, locale?: Locale, ) => { // For simple cases, use date-fns which has excellent locale support if (!short && isDefined(locale)) { const fromDate = new Date(date); const toDate = dateToCompareWith ? new Date(dateToCompareWith) : new Date(); return formatDistance(fromDate, toDate, { locale }); } // Manual implementation for complex cases or when locale is not available const fromDate = parseISO(date); const toDate = dateToCompareWith ? parseISO(dateToCompareWith) : new Date(); const years = differenceInYears(fromDate, toDate); // Calculate remaining days after accounting for full years const startDateForDayCalculation = new Date(toDate); startDateForDayCalculation.setFullYear( startDateForDayCalculation.getFullYear() + years, ); const days = differenceInDays(fromDate, startDateForDayCalculation); let result = ''; if (years !== 0) { result = plural(Math.abs(years), { one: `${years} ${t`year`}`, other: `${years} ${t`years`}`, }); if (short) return result; } if (years !== 0 && days !== 0) { result += ` ${t`and`} `; } if (days !== 0) { const daysPart = plural(Math.abs(days), { one: `${days} ${t`day`}`, other: `${days} ${t`days`}`, }); result += daysPart; } return result; }; export const formatToHumanReadableDate = (date: Date | string) => { const parsedJSDate = parseDate(date); return i18n.date(parsedJSDate, { dateStyle: 'medium' }); }; export const getDateTimeFormatStringFoDatePickerInputMask = ( dateFormat: DateFormat, ): string => { switch (dateFormat) { case DateFormat.DAY_FIRST: return `dd/MM/yyyy HH:mm`; case DateFormat.YEAR_FIRST: return `yyyy-MM-dd HH:mm`; case DateFormat.MONTH_FIRST: default: return `MM/dd/yyyy HH:mm`; } }; export const getDateFormatStringForDatePickerInputMask = ( dateFormat: DateFormat, ): string => { switch (dateFormat) { case DateFormat.DAY_FIRST: return `dd/MM/yyyy`; case DateFormat.YEAR_FIRST: return `yyyy-MM-dd`; case DateFormat.MONTH_FIRST: default: return `MM/dd/yyyy`; } };
|
||||
#. placeholder {2}: import { isDate, isNumber, isString } from '@sniptt/guards'; import { differenceInCalendarDays, differenceInDays, differenceInYears, format, formatDistance, formatDistanceToNow, isToday, isValid, parseISO, type Locale, } from 'date-fns'; import { DateFormat } from '@/localization/constants/DateFormat'; import { CustomError, isDefined } from 'twenty-shared/utils'; import { i18n } from '@lingui/core'; import { plural, t } from '@lingui/core/macro'; import { logError } from './logError'; export const parseDate = (dateToParse: Date | string | number): Date => { if (dateToParse === 'now') return new Date(); let formattedDate: Date | null = null; if (!dateToParse) { throw new CustomError( `Invalid date passed to formatPastDate: "${dateToParse}"`, 'INVALID_DATE_FORMAT', ); } else if (isString(dateToParse)) { formattedDate = parseISO(dateToParse); } else if (isDate(dateToParse)) { formattedDate = dateToParse; } else if (isNumber(dateToParse)) { formattedDate = new Date(dateToParse); } if (!formattedDate) { throw new CustomError( `Invalid date passed to formatPastDate: "${dateToParse}"`, 'INVALID_DATE_FORMAT', ); } if (!isValid(formattedDate)) { throw new CustomError( `Invalid date passed to formatPastDate: "${dateToParse}"`, 'INVALID_DATE_FORMAT', ); } return formattedDate; }; export const formatDate = ( dateToFormat: Date | string | number, formatString: string, ) => { try { const parsedDate = parseDate(dateToFormat); return format(parsedDate, formatString); } catch (error) { logError(error); return ''; } }; export const beautifyExactDateTime = ( dateToBeautify: Date | string | number, ) => { const parsedDate = parseDate(dateToBeautify); const isTodayDate = isToday(parsedDate); const dateFormat = isTodayDate ? 'HH:mm' : 'MMM d, yyyy · HH:mm'; return formatDate(dateToBeautify, dateFormat); }; export const beautifyExactDate = (dateToBeautify: Date | string | number) => { const parsedDate = parseDate(dateToBeautify); const isTodayDate = isToday(parsedDate); if (isTodayDate) { return t`Today`; } return formatDate(dateToBeautify, 'MMM d, yyyy'); }; export const beautifyPastDateRelativeToNow = ( pastDate: Date | string | number, locale?: Locale, ) => { try { const parsedDate = parseDate(pastDate); const now = new Date(); const diffInSeconds = Math.abs( (now.getTime() - parsedDate.getTime()) / 1000, ); // For very recent times (less than 30 seconds), show "now" if (diffInSeconds < 30) { return t`now`; } return formatDistanceToNow(parsedDate, { addSuffix: true, locale, includeSeconds: true, }); } catch (error) { logError(error); return ''; } }; export const hasDatePassed = (date: Date | string | number) => { try { const parsedDate = parseDate(date); return differenceInCalendarDays(new Date(), parsedDate) >= 1; } catch (error) { logError(error); return false; } }; export const beautifyDateDiff = ( date: string, dateToCompareWith?: string, short = false, locale?: Locale, ) => { // For simple cases, use date-fns which has excellent locale support if (!short && isDefined(locale)) { const fromDate = new Date(date); const toDate = dateToCompareWith ? new Date(dateToCompareWith) : new Date(); return formatDistance(fromDate, toDate, { locale }); } // Manual implementation for complex cases or when locale is not available const fromDate = parseISO(date); const toDate = dateToCompareWith ? parseISO(dateToCompareWith) : new Date(); const years = differenceInYears(fromDate, toDate); // Calculate remaining days after accounting for full years const startDateForDayCalculation = new Date(toDate); startDateForDayCalculation.setFullYear( startDateForDayCalculation.getFullYear() + years, ); const days = differenceInDays(fromDate, startDateForDayCalculation); let result = ''; if (years !== 0) { result = plural(Math.abs(years), { one: `${years} ${t`year`}`, other: `${years} ${t`years`}`, }); if (short) return result; } if (years !== 0 && days !== 0) { result += ` ${t`and`} `; } if (days !== 0) { const daysPart = plural(Math.abs(days), { one: `${days} ${t`day`}`, other: `${days} ${t`days`}`, }); result += daysPart; } return result; }; export const formatToHumanReadableDate = (date: Date | string) => { const parsedJSDate = parseDate(date); return i18n.date(parsedJSDate, { dateStyle: 'medium' }); }; export const getDateTimeFormatStringFoDatePickerInputMask = ( dateFormat: DateFormat, ): string => { switch (dateFormat) { case DateFormat.DAY_FIRST: return `dd/MM/yyyy HH:mm`; case DateFormat.YEAR_FIRST: return `yyyy-MM-dd HH:mm`; case DateFormat.MONTH_FIRST: default: return `MM/dd/yyyy HH:mm`; } }; export const getDateFormatStringForDatePickerInputMask = ( dateFormat: DateFormat, ): string => { switch (dateFormat) { case DateFormat.DAY_FIRST: return `dd/MM/yyyy`; case DateFormat.YEAR_FIRST: return `yyyy-MM-dd`; case DateFormat.MONTH_FIRST: default: return `MM/dd/yyyy`; } };
|
||||
#: src/utils/date-utils.ts
|
||||
msgid "{0, plural, one {{years} {1}} other {{years} {2}}}"
|
||||
msgstr "crwdns7556:00={0}crwdnd7556:0years={years}crwdnd7556:01={1}crwdnd7556:0years={years}crwdnd7556:02={2}crwdne7556:0"
|
||||
msgid "{0, plural, one {{years} year} other {{years} years}}"
|
||||
msgstr "crwdns105138:00={0}crwdnd105138:0years={years}crwdnd105138:0years={years}crwdne105138:0"
|
||||
|
||||
#. js-lingui-id: Qvm3VE
|
||||
#. placeholder {0}: selectedOptions.length
|
||||
@@ -686,7 +682,6 @@ msgstr "crwdns6292:0crwdne6292:0"
|
||||
#: src/modules/settings/security/components/SSO/SettingsSecuritySSORowDropdownMenu.tsx
|
||||
#: src/modules/settings/data-model/objects/components/SettingsObjectInactiveMenuDropDown.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
|
||||
#: src/modules/information-banner/components/billing/InformationBannerEndTrialPeriod.tsx
|
||||
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.tsx
|
||||
msgid "Activate"
|
||||
msgstr "crwdns71:0crwdne71:0"
|
||||
@@ -1064,16 +1059,16 @@ msgstr "crwdns5547:0crwdne5547:0"
|
||||
msgid "Afrikaans"
|
||||
msgstr "crwdns1787:0crwdne1787:0"
|
||||
|
||||
#. js-lingui-id: NawEr2
|
||||
#: src/modules/object-record/record-calendar/month/hooks/useRecordCalendarQueryDateRangeFilter.tsx
|
||||
msgid "After"
|
||||
msgstr "crwdns65898:0crwdne65898:0"
|
||||
|
||||
#. js-lingui-id: 5wZlI9
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
|
||||
msgid "After a set amount of time"
|
||||
msgstr "crwdns8682:0crwdne8682:0"
|
||||
|
||||
#. js-lingui-id: YPnvqG
|
||||
#: src/modules/object-record/record-calendar/month/hooks/useRecordCalendarQueryDateRangeFilter.tsx
|
||||
msgid "After or equal"
|
||||
msgstr "crwdns105146:0crwdne105146:0"
|
||||
|
||||
#. js-lingui-id: fcYF58
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
msgid "agent"
|
||||
@@ -1114,16 +1109,17 @@ msgid "Agent tokens"
|
||||
msgstr "crwdns65902:0crwdne65902:0"
|
||||
|
||||
#. js-lingui-id: 8Uv5e6
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIAgentsTable.tsx
|
||||
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTable.tsx
|
||||
msgid "Agents"
|
||||
msgstr "crwdns6940:0crwdne6940:0"
|
||||
|
||||
#. js-lingui-id: Y1fJZS
|
||||
#. js-lingui-id: wFe+5D
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
msgid "Agents created by application"
|
||||
msgstr "crwdns8570:0crwdne8570:0"
|
||||
msgid "Agents powering this app"
|
||||
msgstr "crwdns105154:0crwdne105154:0"
|
||||
|
||||
#. js-lingui-id: 0k5XwN
|
||||
#: src/pages/settings/ai/components/SettingsAIAgentsTable.tsx
|
||||
@@ -1163,6 +1159,11 @@ msgstr "crwdns6334:0crwdne6334:0"
|
||||
msgid "AI Models"
|
||||
msgstr "crwdns64682:0crwdne64682:0"
|
||||
|
||||
#. js-lingui-id: Sfwld8
|
||||
#: src/modules/ai/components/AIChatApiKeyNotConfiguredMessage.tsx
|
||||
msgid "AI not configured. Set OPENAI_API_KEY, ANTHROPIC_API_KEY, or XAI_API_KEY in your environment."
|
||||
msgstr "crwdns105180:0crwdne105180:0"
|
||||
|
||||
#. js-lingui-id: jwOWhc
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "AI request prep"
|
||||
@@ -1549,11 +1550,6 @@ msgstr "crwdns65928:0crwdne65928:0"
|
||||
msgid "Applicability"
|
||||
msgstr "crwdns7508:0crwdne7508:0"
|
||||
|
||||
#. js-lingui-id: uNojI9
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
msgid "Application agents"
|
||||
msgstr "crwdns8574:0crwdne8574:0"
|
||||
|
||||
#. js-lingui-id: bw50Pz
|
||||
#: src/modules/settings/serverless-functions/components/SettingsServerlessFunctionTabEnvironmentVariablesSection.tsx
|
||||
msgid "application detail page"
|
||||
@@ -1564,18 +1560,8 @@ msgstr "crwdns65930:0crwdne65930:0"
|
||||
msgid "Application details"
|
||||
msgstr "crwdns8576:0crwdne8576:0"
|
||||
|
||||
#. js-lingui-id: E5NJII
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
msgid "Application objects"
|
||||
msgstr "crwdns8578:0crwdne8578:0"
|
||||
|
||||
#. js-lingui-id: fqP45C
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
msgid "Application serverless functions"
|
||||
msgstr "crwdns8580:0crwdne8580:0"
|
||||
|
||||
#. js-lingui-id: +tE2x9
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailSettingsTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
|
||||
msgid "Application successfully uninstalled."
|
||||
msgstr "crwdns64642:0crwdne64642:0"
|
||||
|
||||
@@ -2526,6 +2512,11 @@ msgstr "crwdns7198:0crwdne7198:0"
|
||||
msgid "Command Menu"
|
||||
msgstr "crwdns65968:0crwdne65968:0"
|
||||
|
||||
#. js-lingui-id: 4XlFx/
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "Commands copied to clipboard"
|
||||
msgstr "crwdns105156:0crwdne105156:0"
|
||||
|
||||
#. js-lingui-id: A9u+7N
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Commas and dot - {commasAndDotExample}"
|
||||
@@ -2751,6 +2742,11 @@ msgstr "crwdns64636:0crwdne64636:0"
|
||||
msgid "Contact auto-creation"
|
||||
msgstr "crwdns5059:0crwdne5059:0"
|
||||
|
||||
#. js-lingui-id: cByGGA
|
||||
#: src/modules/information-banner/components/billing/InformationBannerEndTrialPeriod.tsx
|
||||
msgid "Contact your admin to continue using Workflow or AI features."
|
||||
msgstr "crwdns105182:0crwdne105182:0"
|
||||
|
||||
#. js-lingui-id: /5mghO
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
msgid "Contains"
|
||||
@@ -2853,6 +2849,11 @@ msgstr "crwdns4893:0crwdne4893:0"
|
||||
msgid "Copy code"
|
||||
msgstr "crwdns65072:0crwdne65072:0"
|
||||
|
||||
#. js-lingui-id: Es0ros
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "Copy commands"
|
||||
msgstr "crwdns105158:0crwdne105158:0"
|
||||
|
||||
#. js-lingui-id: 7eVkEH
|
||||
#: src/pages/onboarding/InviteTeam.tsx
|
||||
msgid "Copy invitation link"
|
||||
@@ -3017,6 +3018,11 @@ msgstr "crwdns229:0crwdne229:0"
|
||||
msgid "Create a workspace"
|
||||
msgstr "crwdns6200:0crwdne6200:0"
|
||||
|
||||
#. js-lingui-id: /WlFSf
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "Create an application"
|
||||
msgstr "crwdns105160:0crwdne105160:0"
|
||||
|
||||
#. js-lingui-id: 8ZjIgO
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
|
||||
msgid "Create and configure AI agents"
|
||||
@@ -3163,6 +3169,16 @@ msgstr "crwdns7380:0crwdne7380:0"
|
||||
msgid "Credits by period"
|
||||
msgstr "crwdns7914:0crwdne7914:0"
|
||||
|
||||
#. js-lingui-id: EABlI0
|
||||
#: src/modules/ai/components/AIChatCreditsExhaustedMessage.tsx
|
||||
msgid "Credits exhausted. Please contact your workspace admin to upgrade."
|
||||
msgstr "crwdns105184:0crwdne105184:0"
|
||||
|
||||
#. js-lingui-id: JIXvMy
|
||||
#: src/modules/ai/components/AIChatCreditsExhaustedMessage.tsx
|
||||
msgid "Credits exhausted. Upgrade your plan to get more credits."
|
||||
msgstr "crwdns105186:0crwdne105186:0"
|
||||
|
||||
#. js-lingui-id: n3kKrs
|
||||
#: src/modules/billing/components/SettingsBillingCreditsSection.tsx
|
||||
msgid "Credits Used"
|
||||
@@ -3316,7 +3332,6 @@ msgstr "crwdns1801:0crwdne1801:0"
|
||||
#. js-lingui-id: Zz6Cxn
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailSettingsTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettings.tsx
|
||||
#: src/modules/settings/profile/components/DeleteWorkspace.tsx
|
||||
@@ -3464,11 +3479,6 @@ msgstr "crwdns63784:0crwdne63784:0"
|
||||
msgid "Date Granularity Y"
|
||||
msgstr "crwdns63786:0crwdne63786:0"
|
||||
|
||||
#. js-lingui-id: /ITcnz
|
||||
#: src/utils/date-utils.ts
|
||||
msgid "day"
|
||||
msgstr "crwdns7568:0crwdne7568:0"
|
||||
|
||||
#. js-lingui-id: H7OUPr
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
|
||||
@@ -3482,7 +3492,6 @@ msgid "Day of the week"
|
||||
msgstr "crwdns63788:0crwdne63788:0"
|
||||
|
||||
#. js-lingui-id: J/Upwb
|
||||
#: src/utils/date-utils.ts
|
||||
#: src/modules/command-menu/pages/page-layout/utils/getDateGranularityPluralLabel.ts
|
||||
#: src/modules/command-menu/pages/page-layout/utils/getDateGranularityPluralLabel.ts
|
||||
msgid "days"
|
||||
@@ -4140,7 +4149,6 @@ msgid "eddy@gmail.com, @apple.com"
|
||||
msgstr "crwdns66026:0crwdne66026:0"
|
||||
|
||||
#. js-lingui-id: ePK91l
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailEnvironmentVariablesTableRow.tsx
|
||||
#: src/modules/views/view-picker/components/ViewPickerOptionDropdown.tsx
|
||||
#: src/modules/settings/serverless-functions/components/tabs/SettingsServerlessFunctionTabEnvironmentVariableTableRow.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/field-permissions/components/SettingsRolePermissionsObjectLevelObjectFieldPermissionTable.tsx
|
||||
@@ -4439,6 +4447,16 @@ msgstr "crwdns63802:0crwdne63802:0"
|
||||
msgid "Enable model-specific features"
|
||||
msgstr "crwdns8204:0crwdne8204:0"
|
||||
|
||||
#. js-lingui-id: k1i50B
|
||||
#: src/modules/information-banner/components/billing/InformationBannerEndTrialPeriod.tsx
|
||||
msgid "End Trial Period"
|
||||
msgstr "crwdns105188:0crwdne105188:0"
|
||||
|
||||
#. js-lingui-id: QEUZoG
|
||||
#: src/modules/information-banner/components/billing/InformationBannerEndTrialPeriod.tsx
|
||||
msgid "End trial period to continue using Workflow or AI features."
|
||||
msgstr "crwdns105190:0crwdne105190:0"
|
||||
|
||||
#. js-lingui-id: T3juzf
|
||||
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
|
||||
msgid "Endpoint URL"
|
||||
@@ -4637,7 +4655,6 @@ msgid "Entity ID copied to clipboard"
|
||||
msgstr "crwdns4911:0crwdne4911:0"
|
||||
|
||||
#. js-lingui-id: 3IeauL
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailEnvironmentVariablesTableRow.tsx
|
||||
#: src/modules/settings/serverless-functions/components/tabs/SettingsServerlessFunctionTabEnvironmentVariableTableRow.tsx
|
||||
msgid "Env Variable Options"
|
||||
msgstr "crwdns66064:0crwdne66064:0"
|
||||
@@ -4728,7 +4745,7 @@ msgid "Error resending invitation"
|
||||
msgstr "crwdns4921:0crwdne4921:0"
|
||||
|
||||
#. js-lingui-id: 5Vy8D1
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailSettingsTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
|
||||
msgid "Error uninstalling application."
|
||||
msgstr "crwdns64644:0crwdne64644:0"
|
||||
|
||||
@@ -5540,6 +5557,11 @@ msgstr "crwdns8082:0crwdne8082:0"
|
||||
msgid "Fourth"
|
||||
msgstr "crwdns6900:0crwdne6900:0"
|
||||
|
||||
#. js-lingui-id: aUj1gh
|
||||
#: src/modules/ai/components/AIChatCreditsExhaustedMessage.tsx
|
||||
msgid "Free trial credits exhausted. Subscribe now to continue using AI features."
|
||||
msgstr "crwdns105192:0crwdne105192:0"
|
||||
|
||||
#. js-lingui-id: nLC6tu
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
msgid "French"
|
||||
@@ -5556,6 +5578,11 @@ msgstr "crwdns8084:0{startDay}crwdnd8084:0{endDay}crwdne8084:0"
|
||||
msgid "Full access"
|
||||
msgstr "crwdns397:0crwdne397:0"
|
||||
|
||||
#. js-lingui-id: xANKBj
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
msgid "Functions"
|
||||
msgstr "crwdns105162:0crwdne105162:0"
|
||||
|
||||
#. js-lingui-id: tkr79G
|
||||
#: src/utils/title-utils.ts
|
||||
msgid "Functions - Settings"
|
||||
@@ -6171,7 +6198,6 @@ msgid "Indexes"
|
||||
msgstr "crwdns425:0crwdne425:0"
|
||||
|
||||
#. js-lingui-id: CE+M2e
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailEnvironmentVariablesTable.tsx
|
||||
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
|
||||
msgid "Info"
|
||||
msgstr "crwdns66166:0crwdne66166:0"
|
||||
@@ -6212,6 +6238,11 @@ msgstr "crwdns7634:0crwdne7634:0"
|
||||
msgid "Install and manage applications"
|
||||
msgstr "crwdns63820:0crwdne63820:0"
|
||||
|
||||
#. js-lingui-id: N52taw
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "Installed applications"
|
||||
msgstr "crwdns105164:0crwdne105164:0"
|
||||
|
||||
#. js-lingui-id: AwUsnG
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
msgid "Instances"
|
||||
@@ -6332,6 +6363,16 @@ msgstr "crwdns8094:0{newMinute}crwdne8094:0"
|
||||
msgid "Invalid number"
|
||||
msgstr "crwdns66172:0crwdne66172:0"
|
||||
|
||||
#. js-lingui-id: sBZMWb
|
||||
#: src/modules/page-layout/widgets/components/PageLayoutWidgetNoDataDisplay.tsx
|
||||
msgid "Invalid URL"
|
||||
msgstr "crwdns105140:0crwdne105140:0"
|
||||
|
||||
#. js-lingui-id: yRuMQS
|
||||
#: src/modules/page-layout/widgets/components/PageLayoutWidgetNoDataDisplay.tsx
|
||||
msgid "Invalid URL. Click edit to configure this widget."
|
||||
msgstr "crwdns105142:0crwdne105142:0"
|
||||
|
||||
#. js-lingui-id: VEKoJx
|
||||
#: src/modules/settings/two-factor-authentication/hooks/useTwoFactorVerificationForSettings.ts
|
||||
#: src/modules/auth/sign-in-up/components/internal/SignInUpTwoFactorAuthenticationVerification.tsx
|
||||
@@ -6394,10 +6435,10 @@ msgstr "crwdns66174:0crwdne66174:0"
|
||||
msgid "Is"
|
||||
msgstr "crwdns5165:0crwdne5165:0"
|
||||
|
||||
#. js-lingui-id: N73SBG
|
||||
#. js-lingui-id: jI6+Q3
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
msgid "Is after"
|
||||
msgstr "crwdns5167:0crwdne5167:0"
|
||||
msgid "Is after or equal"
|
||||
msgstr "crwdns105150:0crwdne105150:0"
|
||||
|
||||
#. js-lingui-id: NgIlDJ
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
@@ -6489,10 +6530,10 @@ msgstr "crwdns5181:0crwdne5181:0"
|
||||
msgid "Is relative"
|
||||
msgstr "crwdns5183:0crwdne5183:0"
|
||||
|
||||
#. js-lingui-id: 0TLhix
|
||||
#. js-lingui-id: 8vhfz7
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
msgid "Is today"
|
||||
msgstr "crwdns5185:0crwdne5185:0"
|
||||
msgid "Is today{timeZoneAbbreviationSuffix}"
|
||||
msgstr "crwdns105152:0{timeZoneAbbreviationSuffix}crwdne105152:0"
|
||||
|
||||
#. js-lingui-id: IhCN5p
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOOIDCForm.tsx
|
||||
@@ -6817,6 +6858,11 @@ msgstr "crwdns66194:0crwdne66194:0"
|
||||
msgid "list"
|
||||
msgstr "crwdns63968:0crwdne63968:0"
|
||||
|
||||
#. js-lingui-id: 5Kn+XX
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "List installed applications. Use filter to search for a specific application"
|
||||
msgstr "crwdns105166:0crwdne105166:0"
|
||||
|
||||
#. js-lingui-id: HhVDr2
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
msgid "Listing"
|
||||
@@ -7004,6 +7050,11 @@ msgstr "crwdns63830:0crwdne63830:0"
|
||||
msgid "Manage workflows"
|
||||
msgstr "crwdns6248:0crwdne6248:0"
|
||||
|
||||
#. js-lingui-id: cbzOP7
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
|
||||
msgid "Manage your app"
|
||||
msgstr "crwdns105168:0crwdne105168:0"
|
||||
|
||||
#. js-lingui-id: FyFNsd
|
||||
#: src/pages/settings/accounts/SettingsAccounts.tsx
|
||||
msgid "Manage your internet accounts."
|
||||
@@ -7341,7 +7392,6 @@ msgstr "crwdns63836:0crwdne63836:0"
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailEnvironmentVariablesTable.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
|
||||
@@ -7749,11 +7799,6 @@ msgstr "crwdns7644:0{objectLabelSingular}crwdne7644:0"
|
||||
msgid "No deleted records matching the filter criteria were found."
|
||||
msgstr "crwdns7646:0crwdne7646:0"
|
||||
|
||||
#. js-lingui-id: flmDTf
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailEnvironmentVariablesTableRow.tsx
|
||||
msgid "No description"
|
||||
msgstr "crwdns6978:0crwdne6978:0"
|
||||
|
||||
#. js-lingui-id: mINrlz
|
||||
#: src/modules/activities/emails/components/EmailsCard.tsx
|
||||
msgid "No email exchange has occurred with this record yet."
|
||||
@@ -7819,26 +7864,11 @@ msgstr "crwdns66244:0crwdne66244:0"
|
||||
msgid "No folders found for this account"
|
||||
msgstr "crwdns7462:0crwdne7462:0"
|
||||
|
||||
#. js-lingui-id: xlUOps
|
||||
#: src/modules/information-banner/components/billing/InformationBannerEndTrialPeriod.tsx
|
||||
msgid "No free workflow executions left. End trial period and activate your billing to continue."
|
||||
msgstr "crwdns5804:0crwdne5804:0"
|
||||
|
||||
#. js-lingui-id: pxYUeX
|
||||
#: src/modules/information-banner/components/billing/InformationBannerEndTrialPeriod.tsx
|
||||
msgid "No free workflow executions left. Please contact your admin."
|
||||
msgstr "crwdns6026:0crwdne6026:0"
|
||||
|
||||
#. js-lingui-id: gIrKyO
|
||||
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
|
||||
msgid "No input"
|
||||
msgstr "crwdns64746:0crwdne64746:0"
|
||||
|
||||
#. js-lingui-id: kkGPb1
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "No installed application. Please check our <0/>"
|
||||
msgstr "crwdns66246:0crwdne66246:0"
|
||||
|
||||
#. js-lingui-id: lj3GoP
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
|
||||
msgid "No jobs found"
|
||||
@@ -8193,6 +8223,7 @@ msgstr "crwdns6310:0crwdne6310:0"
|
||||
#: src/pages/settings/data-model/SettingsNewObject.tsx
|
||||
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldSelect.tsx
|
||||
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldConfigure.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPermissionsObjectsList.tsx
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
msgid "Objects"
|
||||
@@ -8203,10 +8234,10 @@ msgstr "crwdns541:0crwdne541:0"
|
||||
msgid "Objects and fields permissions settings"
|
||||
msgstr "crwdns7250:0crwdne7250:0"
|
||||
|
||||
#. js-lingui-id: X51S3F
|
||||
#. js-lingui-id: YFI9hD
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
msgid "Objects created by application"
|
||||
msgstr "crwdns8602:0crwdne8602:0"
|
||||
msgid "Objects managed by this app"
|
||||
msgstr "crwdns105170:0crwdne105170:0"
|
||||
|
||||
#. js-lingui-id: BwJKBw
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
|
||||
@@ -8805,7 +8836,7 @@ msgid "Please type \"{confirmationValue}\" to confirm you want to delete this AP
|
||||
msgstr "crwdns579:0{confirmationValue}crwdne579:0"
|
||||
|
||||
#. js-lingui-id: L0SEpC
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailSettingsTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
|
||||
msgid "Please type \"{confirmationValue}\" to confirm you want to uninstall this application."
|
||||
msgstr "crwdns64646:0{confirmationValue}crwdne64646:0"
|
||||
|
||||
@@ -9090,6 +9121,11 @@ msgstr "crwdns66316:0crwdne66316:0"
|
||||
msgid "Read changelog"
|
||||
msgstr "crwdns66516:0crwdne66516:0"
|
||||
|
||||
#. js-lingui-id: ibPuCP
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "Read documentation"
|
||||
msgstr "crwdns105172:0crwdne105172:0"
|
||||
|
||||
#. js-lingui-id: BT7pY+
|
||||
#: src/modules/settings/profile/components/SetOrChangePassword.tsx
|
||||
msgid "Receive an email containing password set link"
|
||||
@@ -9699,11 +9735,6 @@ msgstr "crwdns5578:0crwdne5578:0"
|
||||
msgid "Search a type"
|
||||
msgstr "crwdns5255:0crwdne5255:0"
|
||||
|
||||
#. js-lingui-id: 4J+cf6
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailEnvironmentVariablesTable.tsx
|
||||
msgid "Search a variable"
|
||||
msgstr "crwdns66360:0crwdne66360:0"
|
||||
|
||||
#. js-lingui-id: +7s4fw
|
||||
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentEntityPickerDropdown.tsx
|
||||
msgid "Search agents"
|
||||
@@ -9714,6 +9745,11 @@ msgstr "crwdns7544:0crwdne7544:0"
|
||||
msgid "Search an agent..."
|
||||
msgstr "crwdns6994:0crwdne6994:0"
|
||||
|
||||
#. js-lingui-id: fGTI3o
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "Search an application"
|
||||
msgstr "crwdns105174:0crwdne105174:0"
|
||||
|
||||
#. js-lingui-id: kdagxk
|
||||
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTable.tsx
|
||||
msgid "Search an assigned {roleTargetDisplayName}..."
|
||||
@@ -10162,10 +10198,10 @@ msgstr "crwdns1837:0crwdne1837:0"
|
||||
msgid "serverless function"
|
||||
msgstr "crwdns8896:0crwdne8896:0"
|
||||
|
||||
#. js-lingui-id: eGHP1w
|
||||
#. js-lingui-id: 0WOel+
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
msgid "Serverless functions created by application"
|
||||
msgstr "crwdns8616:0crwdne8616:0"
|
||||
msgid "Serverless functions powering this app"
|
||||
msgstr "crwdns105176:0crwdne105176:0"
|
||||
|
||||
#. js-lingui-id: LUc0oL
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
@@ -10713,6 +10749,7 @@ msgstr "crwdns6030:0crwdne6030:0"
|
||||
|
||||
#. js-lingui-id: ShbDuS
|
||||
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
|
||||
#: src/modules/ai/components/AIChatCreditsExhaustedMessage.tsx
|
||||
msgid "Subscribe Now"
|
||||
msgstr "crwdns7422:0crwdne7422:0"
|
||||
|
||||
@@ -11662,18 +11699,18 @@ msgid "Undisplayed data: max {maxItems} slices per chart."
|
||||
msgstr "crwdns64788:0{maxItems}crwdne64788:0"
|
||||
|
||||
#. js-lingui-id: fo0VXg
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailSettingsTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailSettingsTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
|
||||
msgid "Uninstall"
|
||||
msgstr "crwdns64648:0crwdne64648:0"
|
||||
|
||||
#. js-lingui-id: Qtg9Qc
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailSettingsTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
|
||||
msgid "Uninstall Application?"
|
||||
msgstr "crwdns64650:0crwdne64650:0"
|
||||
|
||||
#. js-lingui-id: u+6vfA
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailSettingsTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
|
||||
msgid "Uninstall this application"
|
||||
msgstr "crwdns64652:0crwdne64652:0"
|
||||
|
||||
@@ -11835,6 +11872,11 @@ msgstr "crwdns66520:0crwdne66520:0"
|
||||
msgid "Upgrade"
|
||||
msgstr "crwdns7956:0crwdne7956:0"
|
||||
|
||||
#. js-lingui-id: 7aHRdp
|
||||
#: src/modules/ai/components/AIChatCreditsExhaustedMessage.tsx
|
||||
msgid "Upgrade Plan"
|
||||
msgstr "crwdns105196:0crwdne105196:0"
|
||||
|
||||
#. js-lingui-id: ONWvwQ
|
||||
#: src/modules/ui/input/components/ImageInput.tsx
|
||||
msgid "Upload"
|
||||
@@ -11960,7 +12002,6 @@ msgid "Validate Data"
|
||||
msgstr "crwdns6154:0crwdne6154:0"
|
||||
|
||||
#. js-lingui-id: wMHvYH
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailEnvironmentVariablesTableRow.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailEnvironmentVariablesTable.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/KeyValuePairInput.tsx
|
||||
#: src/modules/settings/serverless-functions/components/tabs/SettingsServerlessFunctionTabEnvironmentVariableTableRow.tsx
|
||||
@@ -12066,6 +12107,11 @@ msgstr "crwdns64766:0crwdne64766:0"
|
||||
msgid "View billing details"
|
||||
msgstr "crwdns775:0crwdne775:0"
|
||||
|
||||
#. js-lingui-id: SXCuo2
|
||||
#: src/modules/ai/components/AIChatApiKeyNotConfiguredMessage.tsx
|
||||
msgid "View Docs"
|
||||
msgstr "crwdns105198:0crwdne105198:0"
|
||||
|
||||
#. js-lingui-id: Mv1YVf
|
||||
#: src/modules/ui/feedback/snack-bar-manager/utils/build-error-action.util.ts
|
||||
msgid "View existing record"
|
||||
@@ -12483,7 +12529,6 @@ msgid "Y axis"
|
||||
msgstr "crwdns8284:0crwdne8284:0"
|
||||
|
||||
#. js-lingui-id: 7qI8sJ
|
||||
#: src/utils/date-utils.ts
|
||||
#: src/modules/billing/hooks/useBillingWording.ts
|
||||
msgid "year"
|
||||
msgstr "crwdns7434:0crwdne7434:0"
|
||||
@@ -12499,7 +12544,6 @@ msgid "yearly"
|
||||
msgstr "crwdns7436:0crwdne7436:0"
|
||||
|
||||
#. js-lingui-id: +BGee5
|
||||
#: src/utils/date-utils.ts
|
||||
#: src/modules/command-menu/pages/page-layout/utils/getDateGranularityPluralLabel.ts
|
||||
msgid "years"
|
||||
msgstr "crwdns7614:0crwdne7614:0"
|
||||
@@ -12511,7 +12555,7 @@ msgstr "crwdns66498:0crwdne66498:0"
|
||||
|
||||
#. js-lingui-id: 3d1wCB
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailSettingsTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
|
||||
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
|
||||
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
|
||||
msgid "yes"
|
||||
@@ -12542,6 +12586,11 @@ msgstr "crwdns6620:0crwdne6620:0"
|
||||
msgid "You are not allowed to create records for this object"
|
||||
msgstr "crwdns5373:0crwdne5373:0"
|
||||
|
||||
#. js-lingui-id: iibZbD
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "You can either create a private app or share it to others"
|
||||
msgstr "crwdns105178:0crwdne105178:0"
|
||||
|
||||
#. js-lingui-id: OLE3Ky
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
|
||||
msgid "You can set up any combination of IMAP (receiving emails), SMTP (sending emails), and CalDAV (calendar sync)."
|
||||
|
||||
@@ -67,7 +67,7 @@ msgstr ": Verlede"
|
||||
#. js-lingui-id: DIUF3A
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
msgid ": Today{timeZoneAbbreviationSuffix}"
|
||||
msgstr ""
|
||||
msgstr ": Vandag{timeZoneAbbreviationSuffix}"
|
||||
|
||||
#. js-lingui-id: N/lIUf
|
||||
#: src/modules/billing/hooks/useBillingWording.ts
|
||||
@@ -129,13 +129,13 @@ msgstr "{0, plural, one {{1} werk kon nie herprobeer word nie} other {{2} werke
|
||||
#. placeholder {0}: Math.abs(days)
|
||||
#: src/utils/date-utils.ts
|
||||
msgid "{0, plural, one {{days} day} other {{days} days}}"
|
||||
msgstr ""
|
||||
msgstr "{0, plural, one {{days} dag} other {{days} dae}}"
|
||||
|
||||
#. js-lingui-id: dXYycw
|
||||
#. placeholder {0}: Math.abs(years)
|
||||
#: src/utils/date-utils.ts
|
||||
msgid "{0, plural, one {{years} year} other {{years} years}}"
|
||||
msgstr ""
|
||||
msgstr "{0, plural, one {{years} jaar} other {{years} jaar}}"
|
||||
|
||||
#. js-lingui-id: Qvm3VE
|
||||
#. placeholder {0}: selectedOptions.length
|
||||
@@ -1067,7 +1067,7 @@ msgstr "Na 'n gestelde hoeveelheid tyd"
|
||||
#. js-lingui-id: YPnvqG
|
||||
#: src/modules/object-record/record-calendar/month/hooks/useRecordCalendarQueryDateRangeFilter.tsx
|
||||
msgid "After or equal"
|
||||
msgstr ""
|
||||
msgstr "Na of gelyk aan"
|
||||
|
||||
#. js-lingui-id: fcYF58
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
@@ -1119,7 +1119,7 @@ msgstr "Agente"
|
||||
#. js-lingui-id: wFe+5D
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
msgid "Agents powering this app"
|
||||
msgstr ""
|
||||
msgstr "Agente wat hierdie toepassing aandryf"
|
||||
|
||||
#. js-lingui-id: 0k5XwN
|
||||
#: src/pages/settings/ai/components/SettingsAIAgentsTable.tsx
|
||||
@@ -1162,7 +1162,7 @@ msgstr ""
|
||||
#. js-lingui-id: Sfwld8
|
||||
#: src/modules/ai/components/AIChatApiKeyNotConfiguredMessage.tsx
|
||||
msgid "AI not configured. Set OPENAI_API_KEY, ANTHROPIC_API_KEY, or XAI_API_KEY in your environment."
|
||||
msgstr ""
|
||||
msgstr "AI nie gekonfigureer nie. Stel OPENAI_API_KEY, ANTHROPIC_API_KEY of XAI_API_KEY in jou omgewing."
|
||||
|
||||
#. js-lingui-id: jwOWhc
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
@@ -2515,7 +2515,7 @@ msgstr "Opdragkieslys"
|
||||
#. js-lingui-id: 4XlFx/
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "Commands copied to clipboard"
|
||||
msgstr ""
|
||||
msgstr "Opdragte na knipbord gekopieer"
|
||||
|
||||
#. js-lingui-id: A9u+7N
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
@@ -2745,7 +2745,7 @@ msgstr "Kontakauto skeppingsbeleid"
|
||||
#. js-lingui-id: cByGGA
|
||||
#: src/modules/information-banner/components/billing/InformationBannerEndTrialPeriod.tsx
|
||||
msgid "Contact your admin to continue using Workflow or AI features."
|
||||
msgstr ""
|
||||
msgstr "Kontak jou admin om voort te gaan om werkvloei- of AI-funksies te gebruik."
|
||||
|
||||
#. js-lingui-id: /5mghO
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
@@ -2852,7 +2852,7 @@ msgstr "Kopieer kode"
|
||||
#. js-lingui-id: Es0ros
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "Copy commands"
|
||||
msgstr ""
|
||||
msgstr "Kopieer opdragte"
|
||||
|
||||
#. js-lingui-id: 7eVkEH
|
||||
#: src/pages/onboarding/InviteTeam.tsx
|
||||
@@ -3021,7 +3021,7 @@ msgstr "Skep 'n werksruimte"
|
||||
#. js-lingui-id: /WlFSf
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "Create an application"
|
||||
msgstr ""
|
||||
msgstr "Skep 'n toepassing"
|
||||
|
||||
#. js-lingui-id: 8ZjIgO
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
|
||||
@@ -3172,12 +3172,12 @@ msgstr "Krediete per periode"
|
||||
#. js-lingui-id: EABlI0
|
||||
#: src/modules/ai/components/AIChatCreditsExhaustedMessage.tsx
|
||||
msgid "Credits exhausted. Please contact your workspace admin to upgrade."
|
||||
msgstr ""
|
||||
msgstr "Krediete uitgeput. Kontak asseblief jou werkruimte-administrateur om op te gradeer."
|
||||
|
||||
#. js-lingui-id: JIXvMy
|
||||
#: src/modules/ai/components/AIChatCreditsExhaustedMessage.tsx
|
||||
msgid "Credits exhausted. Upgrade your plan to get more credits."
|
||||
msgstr ""
|
||||
msgstr "Krediete uitgeput. Gradeer jou plan op om meer krediete te kry."
|
||||
|
||||
#. js-lingui-id: n3kKrs
|
||||
#: src/modules/billing/components/SettingsBillingCreditsSection.tsx
|
||||
@@ -4450,12 +4450,12 @@ msgstr "Aktiveer model-spesifieke funksies"
|
||||
#. js-lingui-id: k1i50B
|
||||
#: src/modules/information-banner/components/billing/InformationBannerEndTrialPeriod.tsx
|
||||
msgid "End Trial Period"
|
||||
msgstr ""
|
||||
msgstr "Beëindig proeftydperk"
|
||||
|
||||
#. js-lingui-id: QEUZoG
|
||||
#: src/modules/information-banner/components/billing/InformationBannerEndTrialPeriod.tsx
|
||||
msgid "End trial period to continue using Workflow or AI features."
|
||||
msgstr ""
|
||||
msgstr "Beëindig die proeftydperk om voort te gaan om werkvloei- of AI-funksies te gebruik."
|
||||
|
||||
#. js-lingui-id: T3juzf
|
||||
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
|
||||
@@ -5560,7 +5560,7 @@ msgstr "Vierde"
|
||||
#. js-lingui-id: aUj1gh
|
||||
#: src/modules/ai/components/AIChatCreditsExhaustedMessage.tsx
|
||||
msgid "Free trial credits exhausted. Subscribe now to continue using AI features."
|
||||
msgstr ""
|
||||
msgstr "Gratis proefkrediete uitgeput. Teken nou in om voort te gaan om AI-funksies te gebruik."
|
||||
|
||||
#. js-lingui-id: nLC6tu
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
@@ -5581,7 +5581,7 @@ msgstr "Volle toegang"
|
||||
#. js-lingui-id: xANKBj
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
msgid "Functions"
|
||||
msgstr ""
|
||||
msgstr "Funksies"
|
||||
|
||||
#. js-lingui-id: tkr79G
|
||||
#: src/utils/title-utils.ts
|
||||
@@ -6241,7 +6241,7 @@ msgstr "Installeer en bestuur toepassings"
|
||||
#. js-lingui-id: N52taw
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "Installed applications"
|
||||
msgstr ""
|
||||
msgstr "Geïnstalleerde toepassings"
|
||||
|
||||
#. js-lingui-id: AwUsnG
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
@@ -6366,12 +6366,12 @@ msgstr "Ongeldige nommer"
|
||||
#. js-lingui-id: sBZMWb
|
||||
#: src/modules/page-layout/widgets/components/PageLayoutWidgetNoDataDisplay.tsx
|
||||
msgid "Invalid URL"
|
||||
msgstr ""
|
||||
msgstr "Ongeldige URL"
|
||||
|
||||
#. js-lingui-id: yRuMQS
|
||||
#: src/modules/page-layout/widgets/components/PageLayoutWidgetNoDataDisplay.tsx
|
||||
msgid "Invalid URL. Click edit to configure this widget."
|
||||
msgstr ""
|
||||
msgstr "Ongeldige URL. Klik op wysig om hierdie widget te konfigureer."
|
||||
|
||||
#. js-lingui-id: VEKoJx
|
||||
#: src/modules/settings/two-factor-authentication/hooks/useTwoFactorVerificationForSettings.ts
|
||||
@@ -6438,7 +6438,7 @@ msgstr "Is"
|
||||
#. js-lingui-id: jI6+Q3
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
msgid "Is after or equal"
|
||||
msgstr ""
|
||||
msgstr "Is na of gelyk aan"
|
||||
|
||||
#. js-lingui-id: NgIlDJ
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
@@ -6533,7 +6533,7 @@ msgstr "Is relatief"
|
||||
#. js-lingui-id: 8vhfz7
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
msgid "Is today{timeZoneAbbreviationSuffix}"
|
||||
msgstr ""
|
||||
msgstr "Is vandag{timeZoneAbbreviationSuffix}"
|
||||
|
||||
#. js-lingui-id: IhCN5p
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOOIDCForm.tsx
|
||||
@@ -6861,7 +6861,7 @@ msgstr ""
|
||||
#. js-lingui-id: 5Kn+XX
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "List installed applications. Use filter to search for a specific application"
|
||||
msgstr ""
|
||||
msgstr "Lys geïnstalleerde toepassings. Gebruik die filter om na 'n spesifieke toepassing te soek"
|
||||
|
||||
#. js-lingui-id: HhVDr2
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
@@ -7053,7 +7053,7 @@ msgstr "Bestuur werkvloeie"
|
||||
#. js-lingui-id: cbzOP7
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
|
||||
msgid "Manage your app"
|
||||
msgstr ""
|
||||
msgstr "Bestuur jou toepassing"
|
||||
|
||||
#. js-lingui-id: FyFNsd
|
||||
#: src/pages/settings/accounts/SettingsAccounts.tsx
|
||||
@@ -8237,7 +8237,7 @@ msgstr "Voorwerp- en veldtoestemminginstellings"
|
||||
#. js-lingui-id: YFI9hD
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
msgid "Objects managed by this app"
|
||||
msgstr ""
|
||||
msgstr "Objekte wat deur hierdie toepassing bestuur word"
|
||||
|
||||
#. js-lingui-id: BwJKBw
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
|
||||
@@ -9124,7 +9124,7 @@ msgstr "Lees die veranderingslogboek"
|
||||
#. js-lingui-id: ibPuCP
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "Read documentation"
|
||||
msgstr ""
|
||||
msgstr "Lees dokumentasie"
|
||||
|
||||
#. js-lingui-id: BT7pY+
|
||||
#: src/modules/settings/profile/components/SetOrChangePassword.tsx
|
||||
@@ -9748,7 +9748,7 @@ msgstr "Soek vir 'n agent..."
|
||||
#. js-lingui-id: fGTI3o
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "Search an application"
|
||||
msgstr ""
|
||||
msgstr "Soek 'n toepassing"
|
||||
|
||||
#. js-lingui-id: kdagxk
|
||||
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTable.tsx
|
||||
@@ -10201,7 +10201,7 @@ msgstr "serverless funksie"
|
||||
#. js-lingui-id: 0WOel+
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
msgid "Serverless functions powering this app"
|
||||
msgstr ""
|
||||
msgstr "Serverless-funksies wat hierdie toepassing aandryf"
|
||||
|
||||
#. js-lingui-id: LUc0oL
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
@@ -11204,8 +11204,7 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: Ox1hE7
|
||||
#: src/modules/settings/profile/components/DeleteAccount.tsx
|
||||
msgid ""
|
||||
"This action cannot be undone. This will permanently delete your\n"
|
||||
msgid "This action cannot be undone. This will permanently delete your\n"
|
||||
" entire account."
|
||||
msgstr "Hierdie aksie kan nie ongedaan gemaak word nie. Dit sal jou hele rekening permanent uitvee."
|
||||
|
||||
@@ -11876,7 +11875,7 @@ msgstr "Opgradering"
|
||||
#. js-lingui-id: 7aHRdp
|
||||
#: src/modules/ai/components/AIChatCreditsExhaustedMessage.tsx
|
||||
msgid "Upgrade Plan"
|
||||
msgstr ""
|
||||
msgstr "Gradeer plan op"
|
||||
|
||||
#. js-lingui-id: ONWvwQ
|
||||
#: src/modules/ui/input/components/ImageInput.tsx
|
||||
@@ -12111,7 +12110,7 @@ msgstr "Sien faktuurbesonderhede"
|
||||
#. js-lingui-id: SXCuo2
|
||||
#: src/modules/ai/components/AIChatApiKeyNotConfiguredMessage.tsx
|
||||
msgid "View Docs"
|
||||
msgstr ""
|
||||
msgstr "Bekyk dokumentasie"
|
||||
|
||||
#. js-lingui-id: Mv1YVf
|
||||
#: src/modules/ui/feedback/snack-bar-manager/utils/build-error-action.util.ts
|
||||
@@ -12266,11 +12265,9 @@ msgstr "Ons sal jou 'n skakel stuur om domeinbesit te verifieer"
|
||||
|
||||
#. js-lingui-id: X56YGk
|
||||
#: src/pages/onboarding/PaymentSuccess.tsx
|
||||
msgid ""
|
||||
"We're waiting for a confirmation from our payment provider (Stripe).\n"
|
||||
msgid "We're waiting for a confirmation from our payment provider (Stripe).\n"
|
||||
"Please try again in a few seconds, sorry."
|
||||
msgstr ""
|
||||
"Ons wag vir 'n bevestiging van ons betalingsverskaffer (Stripe).\n"
|
||||
msgstr "Ons wag vir 'n bevestiging van ons betalingsverskaffer (Stripe).\n"
|
||||
"Probeer asseblief oor 'n paar sekondes weer, jammer."
|
||||
|
||||
#. js-lingui-id: LnnVIT
|
||||
@@ -12593,7 +12590,7 @@ msgstr "Jy mag nie rekords vir hierdie voorwerp skep nie"
|
||||
#. js-lingui-id: iibZbD
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "You can either create a private app or share it to others"
|
||||
msgstr ""
|
||||
msgstr "Jy kan of 'n privaat toepassing skep of dit met ander deel"
|
||||
|
||||
#. js-lingui-id: OLE3Ky
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
|
||||
|
||||
@@ -67,7 +67,7 @@ msgstr "الماضي"
|
||||
#. js-lingui-id: DIUF3A
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
msgid ": Today{timeZoneAbbreviationSuffix}"
|
||||
msgstr ""
|
||||
msgstr ": اليوم{timeZoneAbbreviationSuffix}"
|
||||
|
||||
#. js-lingui-id: N/lIUf
|
||||
#: src/modules/billing/hooks/useBillingWording.ts
|
||||
@@ -129,13 +129,13 @@ msgstr ""
|
||||
#. placeholder {0}: Math.abs(days)
|
||||
#: src/utils/date-utils.ts
|
||||
msgid "{0, plural, one {{days} day} other {{days} days}}"
|
||||
msgstr ""
|
||||
msgstr "{0, plural, zero {{days} يوم} one {{days} يوم} two {{days} يومان} few {{days} أيام} many {{days} يومًا} other {{days} يوم}}"
|
||||
|
||||
#. js-lingui-id: dXYycw
|
||||
#. placeholder {0}: Math.abs(years)
|
||||
#: src/utils/date-utils.ts
|
||||
msgid "{0, plural, one {{years} year} other {{years} years}}"
|
||||
msgstr ""
|
||||
msgstr "{0, plural, zero {{years} سنة} one {{years} سنة} two {{years} سنتان} few {{years} سنوات} many {{years} سنةً} other {{years} سنة}}"
|
||||
|
||||
#. js-lingui-id: Qvm3VE
|
||||
#. placeholder {0}: selectedOptions.length
|
||||
@@ -1067,7 +1067,7 @@ msgstr "بعد فترة محددة من الوقت"
|
||||
#. js-lingui-id: YPnvqG
|
||||
#: src/modules/object-record/record-calendar/month/hooks/useRecordCalendarQueryDateRangeFilter.tsx
|
||||
msgid "After or equal"
|
||||
msgstr ""
|
||||
msgstr "بعد أو يساوي"
|
||||
|
||||
#. js-lingui-id: fcYF58
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
@@ -1119,7 +1119,7 @@ msgstr "الوكلاء"
|
||||
#. js-lingui-id: wFe+5D
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
msgid "Agents powering this app"
|
||||
msgstr ""
|
||||
msgstr "الوكلاء الذين يدعمون هذا التطبيق"
|
||||
|
||||
#. js-lingui-id: 0k5XwN
|
||||
#: src/pages/settings/ai/components/SettingsAIAgentsTable.tsx
|
||||
@@ -1162,7 +1162,7 @@ msgstr ""
|
||||
#. js-lingui-id: Sfwld8
|
||||
#: src/modules/ai/components/AIChatApiKeyNotConfiguredMessage.tsx
|
||||
msgid "AI not configured. Set OPENAI_API_KEY, ANTHROPIC_API_KEY, or XAI_API_KEY in your environment."
|
||||
msgstr ""
|
||||
msgstr "لم يتم تهيئة الذكاء الاصطناعي. عيّن OPENAI_API_KEY أو ANTHROPIC_API_KEY أو XAI_API_KEY في بيئتك."
|
||||
|
||||
#. js-lingui-id: jwOWhc
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
@@ -2515,7 +2515,7 @@ msgstr "قائمة الأوامر"
|
||||
#. js-lingui-id: 4XlFx/
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "Commands copied to clipboard"
|
||||
msgstr ""
|
||||
msgstr "تم نسخ الأوامر إلى الحافظة"
|
||||
|
||||
#. js-lingui-id: A9u+7N
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
@@ -2745,7 +2745,7 @@ msgstr "إنشاء جهات الاتصال تلقائيًا"
|
||||
#. js-lingui-id: cByGGA
|
||||
#: src/modules/information-banner/components/billing/InformationBannerEndTrialPeriod.tsx
|
||||
msgid "Contact your admin to continue using Workflow or AI features."
|
||||
msgstr ""
|
||||
msgstr "تواصل مع المسؤول لديك لمواصلة استخدام ميزات سير العمل أو الذكاء الاصطناعي."
|
||||
|
||||
#. js-lingui-id: /5mghO
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
@@ -2852,7 +2852,7 @@ msgstr "نسخ الكود"
|
||||
#. js-lingui-id: Es0ros
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "Copy commands"
|
||||
msgstr ""
|
||||
msgstr "نسخ الأوامر"
|
||||
|
||||
#. js-lingui-id: 7eVkEH
|
||||
#: src/pages/onboarding/InviteTeam.tsx
|
||||
@@ -3021,7 +3021,7 @@ msgstr "إنشاء مساحة العمل"
|
||||
#. js-lingui-id: /WlFSf
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "Create an application"
|
||||
msgstr ""
|
||||
msgstr "إنشاء تطبيق"
|
||||
|
||||
#. js-lingui-id: 8ZjIgO
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
|
||||
@@ -3172,12 +3172,12 @@ msgstr "أرصدة حسب الفترة"
|
||||
#. js-lingui-id: EABlI0
|
||||
#: src/modules/ai/components/AIChatCreditsExhaustedMessage.tsx
|
||||
msgid "Credits exhausted. Please contact your workspace admin to upgrade."
|
||||
msgstr ""
|
||||
msgstr "نفدت الأرصدة. يُرجى التواصل مع مسؤول مساحة العمل للترقية."
|
||||
|
||||
#. js-lingui-id: JIXvMy
|
||||
#: src/modules/ai/components/AIChatCreditsExhaustedMessage.tsx
|
||||
msgid "Credits exhausted. Upgrade your plan to get more credits."
|
||||
msgstr ""
|
||||
msgstr "نفدت الأرصدة. قم بترقية خطتك للحصول على المزيد من الأرصدة."
|
||||
|
||||
#. js-lingui-id: n3kKrs
|
||||
#: src/modules/billing/components/SettingsBillingCreditsSection.tsx
|
||||
@@ -4450,12 +4450,12 @@ msgstr "تمكين الميزات الخاصة بالنموذج"
|
||||
#. js-lingui-id: k1i50B
|
||||
#: src/modules/information-banner/components/billing/InformationBannerEndTrialPeriod.tsx
|
||||
msgid "End Trial Period"
|
||||
msgstr ""
|
||||
msgstr "إنهاء الفترة التجريبية"
|
||||
|
||||
#. js-lingui-id: QEUZoG
|
||||
#: src/modules/information-banner/components/billing/InformationBannerEndTrialPeriod.tsx
|
||||
msgid "End trial period to continue using Workflow or AI features."
|
||||
msgstr ""
|
||||
msgstr "أنهِ الفترة التجريبية لمواصلة استخدام ميزات سير العمل أو الذكاء الاصطناعي."
|
||||
|
||||
#. js-lingui-id: T3juzf
|
||||
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
|
||||
@@ -5560,7 +5560,7 @@ msgstr "رابع"
|
||||
#. js-lingui-id: aUj1gh
|
||||
#: src/modules/ai/components/AIChatCreditsExhaustedMessage.tsx
|
||||
msgid "Free trial credits exhausted. Subscribe now to continue using AI features."
|
||||
msgstr ""
|
||||
msgstr "نفدت أرصدة النسخة التجريبية المجانية. اشترك الآن لمواصلة استخدام ميزات الذكاء الاصطناعي."
|
||||
|
||||
#. js-lingui-id: nLC6tu
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
@@ -5581,7 +5581,7 @@ msgstr "وصول كامل"
|
||||
#. js-lingui-id: xANKBj
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
msgid "Functions"
|
||||
msgstr ""
|
||||
msgstr "الوظائف"
|
||||
|
||||
#. js-lingui-id: tkr79G
|
||||
#: src/utils/title-utils.ts
|
||||
@@ -6241,7 +6241,7 @@ msgstr "تثبيت وإدارة التطبيقات"
|
||||
#. js-lingui-id: N52taw
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "Installed applications"
|
||||
msgstr ""
|
||||
msgstr "التطبيقات المثبتة"
|
||||
|
||||
#. js-lingui-id: AwUsnG
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
@@ -6366,12 +6366,12 @@ msgstr "رقم غير صالح"
|
||||
#. js-lingui-id: sBZMWb
|
||||
#: src/modules/page-layout/widgets/components/PageLayoutWidgetNoDataDisplay.tsx
|
||||
msgid "Invalid URL"
|
||||
msgstr ""
|
||||
msgstr "عنوان URL غير صالح"
|
||||
|
||||
#. js-lingui-id: yRuMQS
|
||||
#: src/modules/page-layout/widgets/components/PageLayoutWidgetNoDataDisplay.tsx
|
||||
msgid "Invalid URL. Click edit to configure this widget."
|
||||
msgstr ""
|
||||
msgstr "عنوان URL غير صالح. انقر فوق تحرير لتكوين هذه الودجت."
|
||||
|
||||
#. js-lingui-id: VEKoJx
|
||||
#: src/modules/settings/two-factor-authentication/hooks/useTwoFactorVerificationForSettings.ts
|
||||
@@ -6438,7 +6438,7 @@ msgstr "هو"
|
||||
#. js-lingui-id: jI6+Q3
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
msgid "Is after or equal"
|
||||
msgstr ""
|
||||
msgstr "هو بعد أو يساوي"
|
||||
|
||||
#. js-lingui-id: NgIlDJ
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
@@ -6533,7 +6533,7 @@ msgstr "نسبي"
|
||||
#. js-lingui-id: 8vhfz7
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
msgid "Is today{timeZoneAbbreviationSuffix}"
|
||||
msgstr ""
|
||||
msgstr "هو اليوم{timeZoneAbbreviationSuffix}"
|
||||
|
||||
#. js-lingui-id: IhCN5p
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOOIDCForm.tsx
|
||||
@@ -6861,7 +6861,7 @@ msgstr ""
|
||||
#. js-lingui-id: 5Kn+XX
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "List installed applications. Use filter to search for a specific application"
|
||||
msgstr ""
|
||||
msgstr "اعرض قائمة التطبيقات المثبتة. استخدم عامل التصفية للبحث عن تطبيق محدد"
|
||||
|
||||
#. js-lingui-id: HhVDr2
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
@@ -7053,7 +7053,7 @@ msgstr "إدارة العمليات"
|
||||
#. js-lingui-id: cbzOP7
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
|
||||
msgid "Manage your app"
|
||||
msgstr ""
|
||||
msgstr "إدارة تطبيقك"
|
||||
|
||||
#. js-lingui-id: FyFNsd
|
||||
#: src/pages/settings/accounts/SettingsAccounts.tsx
|
||||
@@ -8237,7 +8237,7 @@ msgstr "إعدادات أذونات الكائنات والحقول"
|
||||
#. js-lingui-id: YFI9hD
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
msgid "Objects managed by this app"
|
||||
msgstr ""
|
||||
msgstr "الكائنات التي يديرها هذا التطبيق"
|
||||
|
||||
#. js-lingui-id: BwJKBw
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
|
||||
@@ -9124,7 +9124,7 @@ msgstr "اطّلع على سجلّ التغييرات"
|
||||
#. js-lingui-id: ibPuCP
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "Read documentation"
|
||||
msgstr ""
|
||||
msgstr "اقرأ الوثائق"
|
||||
|
||||
#. js-lingui-id: BT7pY+
|
||||
#: src/modules/settings/profile/components/SetOrChangePassword.tsx
|
||||
@@ -9748,7 +9748,7 @@ msgstr "ابحث عن وكيل..."
|
||||
#. js-lingui-id: fGTI3o
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "Search an application"
|
||||
msgstr ""
|
||||
msgstr "ابحث عن تطبيق"
|
||||
|
||||
#. js-lingui-id: kdagxk
|
||||
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTable.tsx
|
||||
@@ -10201,7 +10201,7 @@ msgstr "وظيفة بلا خادم"
|
||||
#. js-lingui-id: 0WOel+
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
msgid "Serverless functions powering this app"
|
||||
msgstr ""
|
||||
msgstr "وظائف بلا خادم تشغل هذا التطبيق"
|
||||
|
||||
#. js-lingui-id: LUc0oL
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
@@ -11204,8 +11204,7 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: Ox1hE7
|
||||
#: src/modules/settings/profile/components/DeleteAccount.tsx
|
||||
msgid ""
|
||||
"This action cannot be undone. This will permanently delete your\n"
|
||||
msgid "This action cannot be undone. This will permanently delete your\n"
|
||||
" entire account."
|
||||
msgstr "لا يمكن التراجع عن هذا الإجراء. سيؤدي ذلك إلى حذف حسابك بالكامل بشكل دائم."
|
||||
|
||||
@@ -11876,7 +11875,7 @@ msgstr "تحديث"
|
||||
#. js-lingui-id: 7aHRdp
|
||||
#: src/modules/ai/components/AIChatCreditsExhaustedMessage.tsx
|
||||
msgid "Upgrade Plan"
|
||||
msgstr ""
|
||||
msgstr "ترقية الخطة"
|
||||
|
||||
#. js-lingui-id: ONWvwQ
|
||||
#: src/modules/ui/input/components/ImageInput.tsx
|
||||
@@ -12111,7 +12110,7 @@ msgstr "عرض تفاصيل الفوترة"
|
||||
#. js-lingui-id: SXCuo2
|
||||
#: src/modules/ai/components/AIChatApiKeyNotConfiguredMessage.tsx
|
||||
msgid "View Docs"
|
||||
msgstr ""
|
||||
msgstr "عرض الوثائق"
|
||||
|
||||
#. js-lingui-id: Mv1YVf
|
||||
#: src/modules/ui/feedback/snack-bar-manager/utils/build-error-action.util.ts
|
||||
@@ -12266,8 +12265,7 @@ msgstr "سوف نرسل إليك رابط للتحقق من ملكية النط
|
||||
|
||||
#. js-lingui-id: X56YGk
|
||||
#: src/pages/onboarding/PaymentSuccess.tsx
|
||||
msgid ""
|
||||
"We're waiting for a confirmation from our payment provider (Stripe).\n"
|
||||
msgid "We're waiting for a confirmation from our payment provider (Stripe).\n"
|
||||
"Please try again in a few seconds, sorry."
|
||||
msgstr "نحن في انتظار تأكيد من مزود الدفع لدينا (Stripe).\\nيرجى المحاولة مرة أخرى خلال بضع ثوانٍ، نأسف."
|
||||
|
||||
@@ -12591,7 +12589,7 @@ msgstr "غير مسموح لك بإنشاء سجلات لهذا الكائن"
|
||||
#. js-lingui-id: iibZbD
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "You can either create a private app or share it to others"
|
||||
msgstr ""
|
||||
msgstr "يمكنك إما إنشاء تطبيق خاص أو مشاركته مع الآخرين"
|
||||
|
||||
#. js-lingui-id: OLE3Ky
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
|
||||
|
||||
@@ -67,7 +67,7 @@ msgstr ": Passat"
|
||||
#. js-lingui-id: DIUF3A
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
msgid ": Today{timeZoneAbbreviationSuffix}"
|
||||
msgstr ""
|
||||
msgstr ": Avui{timeZoneAbbreviationSuffix}"
|
||||
|
||||
#. js-lingui-id: N/lIUf
|
||||
#: src/modules/billing/hooks/useBillingWording.ts
|
||||
@@ -129,13 +129,13 @@ msgstr "{0, plural, one {{1} feina no s'ha pogut tornar a provar} other {{2} fei
|
||||
#. placeholder {0}: Math.abs(days)
|
||||
#: src/utils/date-utils.ts
|
||||
msgid "{0, plural, one {{days} day} other {{days} days}}"
|
||||
msgstr ""
|
||||
msgstr "{0, plural, one {{days} dia} other {{days} dies}}"
|
||||
|
||||
#. js-lingui-id: dXYycw
|
||||
#. placeholder {0}: Math.abs(years)
|
||||
#: src/utils/date-utils.ts
|
||||
msgid "{0, plural, one {{years} year} other {{years} years}}"
|
||||
msgstr ""
|
||||
msgstr "{0, plural, one {{years} any} other {{years} anys}}"
|
||||
|
||||
#. js-lingui-id: Qvm3VE
|
||||
#. placeholder {0}: selectedOptions.length
|
||||
@@ -1067,7 +1067,7 @@ msgstr "Després d'un temps determinat"
|
||||
#. js-lingui-id: YPnvqG
|
||||
#: src/modules/object-record/record-calendar/month/hooks/useRecordCalendarQueryDateRangeFilter.tsx
|
||||
msgid "After or equal"
|
||||
msgstr ""
|
||||
msgstr "Posterior o igual"
|
||||
|
||||
#. js-lingui-id: fcYF58
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
@@ -1119,7 +1119,7 @@ msgstr "Agents"
|
||||
#. js-lingui-id: wFe+5D
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
msgid "Agents powering this app"
|
||||
msgstr ""
|
||||
msgstr "Agents que impulsen aquesta aplicació"
|
||||
|
||||
#. js-lingui-id: 0k5XwN
|
||||
#: src/pages/settings/ai/components/SettingsAIAgentsTable.tsx
|
||||
@@ -1162,7 +1162,7 @@ msgstr ""
|
||||
#. js-lingui-id: Sfwld8
|
||||
#: src/modules/ai/components/AIChatApiKeyNotConfiguredMessage.tsx
|
||||
msgid "AI not configured. Set OPENAI_API_KEY, ANTHROPIC_API_KEY, or XAI_API_KEY in your environment."
|
||||
msgstr ""
|
||||
msgstr "La IA no està configurada. Estableix OPENAI_API_KEY, ANTHROPIC_API_KEY o XAI_API_KEY al teu entorn."
|
||||
|
||||
#. js-lingui-id: jwOWhc
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
@@ -2515,7 +2515,7 @@ msgstr "Menú de comandes"
|
||||
#. js-lingui-id: 4XlFx/
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "Commands copied to clipboard"
|
||||
msgstr ""
|
||||
msgstr "Ordres copiades al porta-retalls"
|
||||
|
||||
#. js-lingui-id: A9u+7N
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
@@ -2745,7 +2745,7 @@ msgstr "Auto-creació de contactes"
|
||||
#. js-lingui-id: cByGGA
|
||||
#: src/modules/information-banner/components/billing/InformationBannerEndTrialPeriod.tsx
|
||||
msgid "Contact your admin to continue using Workflow or AI features."
|
||||
msgstr ""
|
||||
msgstr "Contacta amb el teu administrador per continuar utilitzant les funcions de flux de treball o d’IA."
|
||||
|
||||
#. js-lingui-id: /5mghO
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
@@ -2852,7 +2852,7 @@ msgstr "Copia el codi"
|
||||
#. js-lingui-id: Es0ros
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "Copy commands"
|
||||
msgstr ""
|
||||
msgstr "Copia les ordres"
|
||||
|
||||
#. js-lingui-id: 7eVkEH
|
||||
#: src/pages/onboarding/InviteTeam.tsx
|
||||
@@ -3021,7 +3021,7 @@ msgstr "Crear un espai de treball"
|
||||
#. js-lingui-id: /WlFSf
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "Create an application"
|
||||
msgstr ""
|
||||
msgstr "Crea una aplicació"
|
||||
|
||||
#. js-lingui-id: 8ZjIgO
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
|
||||
@@ -3172,12 +3172,12 @@ msgstr "Crèdits per període"
|
||||
#. js-lingui-id: EABlI0
|
||||
#: src/modules/ai/components/AIChatCreditsExhaustedMessage.tsx
|
||||
msgid "Credits exhausted. Please contact your workspace admin to upgrade."
|
||||
msgstr ""
|
||||
msgstr "Crèdits esgotats. Contacta amb l’administrador del teu espai de treball per actualitzar."
|
||||
|
||||
#. js-lingui-id: JIXvMy
|
||||
#: src/modules/ai/components/AIChatCreditsExhaustedMessage.tsx
|
||||
msgid "Credits exhausted. Upgrade your plan to get more credits."
|
||||
msgstr ""
|
||||
msgstr "Crèdits esgotats. Actualitza el teu pla per obtenir més crèdits."
|
||||
|
||||
#. js-lingui-id: n3kKrs
|
||||
#: src/modules/billing/components/SettingsBillingCreditsSection.tsx
|
||||
@@ -4450,12 +4450,12 @@ msgstr "Activar funcionalitats específiques del model"
|
||||
#. js-lingui-id: k1i50B
|
||||
#: src/modules/information-banner/components/billing/InformationBannerEndTrialPeriod.tsx
|
||||
msgid "End Trial Period"
|
||||
msgstr ""
|
||||
msgstr "Finalitza el període de prova"
|
||||
|
||||
#. js-lingui-id: QEUZoG
|
||||
#: src/modules/information-banner/components/billing/InformationBannerEndTrialPeriod.tsx
|
||||
msgid "End trial period to continue using Workflow or AI features."
|
||||
msgstr ""
|
||||
msgstr "Finalitza el període de prova per continuar utilitzant les funcions de flux de treball o d’IA."
|
||||
|
||||
#. js-lingui-id: T3juzf
|
||||
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
|
||||
@@ -5560,7 +5560,7 @@ msgstr "Quart"
|
||||
#. js-lingui-id: aUj1gh
|
||||
#: src/modules/ai/components/AIChatCreditsExhaustedMessage.tsx
|
||||
msgid "Free trial credits exhausted. Subscribe now to continue using AI features."
|
||||
msgstr ""
|
||||
msgstr "Crèdits de la prova gratuïta esgotats. Subscriu-te ara per continuar utilitzant les funcions d’IA."
|
||||
|
||||
#. js-lingui-id: nLC6tu
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
@@ -5581,7 +5581,7 @@ msgstr "Accés complet"
|
||||
#. js-lingui-id: xANKBj
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
msgid "Functions"
|
||||
msgstr ""
|
||||
msgstr "Funcions"
|
||||
|
||||
#. js-lingui-id: tkr79G
|
||||
#: src/utils/title-utils.ts
|
||||
@@ -6241,7 +6241,7 @@ msgstr "Instal·la i gestiona aplicacions"
|
||||
#. js-lingui-id: N52taw
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "Installed applications"
|
||||
msgstr ""
|
||||
msgstr "Aplicacions instal·lades"
|
||||
|
||||
#. js-lingui-id: AwUsnG
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
@@ -6366,12 +6366,12 @@ msgstr "Número no vàlid"
|
||||
#. js-lingui-id: sBZMWb
|
||||
#: src/modules/page-layout/widgets/components/PageLayoutWidgetNoDataDisplay.tsx
|
||||
msgid "Invalid URL"
|
||||
msgstr ""
|
||||
msgstr "URL invàlida"
|
||||
|
||||
#. js-lingui-id: yRuMQS
|
||||
#: src/modules/page-layout/widgets/components/PageLayoutWidgetNoDataDisplay.tsx
|
||||
msgid "Invalid URL. Click edit to configure this widget."
|
||||
msgstr ""
|
||||
msgstr "URL invàlida. Feu clic a editar per configurar aquest widget."
|
||||
|
||||
#. js-lingui-id: VEKoJx
|
||||
#: src/modules/settings/two-factor-authentication/hooks/useTwoFactorVerificationForSettings.ts
|
||||
@@ -6438,7 +6438,7 @@ msgstr "És"
|
||||
#. js-lingui-id: jI6+Q3
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
msgid "Is after or equal"
|
||||
msgstr ""
|
||||
msgstr "És posterior o igual"
|
||||
|
||||
#. js-lingui-id: NgIlDJ
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
@@ -6533,7 +6533,7 @@ msgstr "És relatiu"
|
||||
#. js-lingui-id: 8vhfz7
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
msgid "Is today{timeZoneAbbreviationSuffix}"
|
||||
msgstr ""
|
||||
msgstr "És avui{timeZoneAbbreviationSuffix}"
|
||||
|
||||
#. js-lingui-id: IhCN5p
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOOIDCForm.tsx
|
||||
@@ -6861,7 +6861,7 @@ msgstr ""
|
||||
#. js-lingui-id: 5Kn+XX
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "List installed applications. Use filter to search for a specific application"
|
||||
msgstr ""
|
||||
msgstr "Llista les aplicacions instal·lades. Utilitza el filtre per cercar una aplicació concreta"
|
||||
|
||||
#. js-lingui-id: HhVDr2
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
@@ -7053,7 +7053,7 @@ msgstr "Gestiona els fluxos de treball"
|
||||
#. js-lingui-id: cbzOP7
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
|
||||
msgid "Manage your app"
|
||||
msgstr ""
|
||||
msgstr "Gestiona la teva aplicació"
|
||||
|
||||
#. js-lingui-id: FyFNsd
|
||||
#: src/pages/settings/accounts/SettingsAccounts.tsx
|
||||
@@ -8237,7 +8237,7 @@ msgstr "Configuració de permisos d'objectes i camps"
|
||||
#. js-lingui-id: YFI9hD
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
msgid "Objects managed by this app"
|
||||
msgstr ""
|
||||
msgstr "Objectes gestionats per aquesta aplicació"
|
||||
|
||||
#. js-lingui-id: BwJKBw
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
|
||||
@@ -9124,7 +9124,7 @@ msgstr "Consulta el registre de canvis"
|
||||
#. js-lingui-id: ibPuCP
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "Read documentation"
|
||||
msgstr ""
|
||||
msgstr "Llegeix la documentació"
|
||||
|
||||
#. js-lingui-id: BT7pY+
|
||||
#: src/modules/settings/profile/components/SetOrChangePassword.tsx
|
||||
@@ -9748,7 +9748,7 @@ msgstr "Cerca un agent..."
|
||||
#. js-lingui-id: fGTI3o
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "Search an application"
|
||||
msgstr ""
|
||||
msgstr "Cerca una aplicació"
|
||||
|
||||
#. js-lingui-id: kdagxk
|
||||
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTable.tsx
|
||||
@@ -10201,7 +10201,7 @@ msgstr "funció sense servidor"
|
||||
#. js-lingui-id: 0WOel+
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
msgid "Serverless functions powering this app"
|
||||
msgstr ""
|
||||
msgstr "Funcions sense servidor que impulsen aquesta aplicació"
|
||||
|
||||
#. js-lingui-id: LUc0oL
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
@@ -11204,8 +11204,7 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: Ox1hE7
|
||||
#: src/modules/settings/profile/components/DeleteAccount.tsx
|
||||
msgid ""
|
||||
"This action cannot be undone. This will permanently delete your\n"
|
||||
msgid "This action cannot be undone. This will permanently delete your\n"
|
||||
" entire account."
|
||||
msgstr "Aquesta acció no es pot desfer. Això esborrarà permanentment el teu compte."
|
||||
|
||||
@@ -11876,7 +11875,7 @@ msgstr "Actualitzar"
|
||||
#. js-lingui-id: 7aHRdp
|
||||
#: src/modules/ai/components/AIChatCreditsExhaustedMessage.tsx
|
||||
msgid "Upgrade Plan"
|
||||
msgstr ""
|
||||
msgstr "Actualitza el pla"
|
||||
|
||||
#. js-lingui-id: ONWvwQ
|
||||
#: src/modules/ui/input/components/ImageInput.tsx
|
||||
@@ -12111,7 +12110,7 @@ msgstr "Veure els detalls de facturació"
|
||||
#. js-lingui-id: SXCuo2
|
||||
#: src/modules/ai/components/AIChatApiKeyNotConfiguredMessage.tsx
|
||||
msgid "View Docs"
|
||||
msgstr ""
|
||||
msgstr "Veure la documentació"
|
||||
|
||||
#. js-lingui-id: Mv1YVf
|
||||
#: src/modules/ui/feedback/snack-bar-manager/utils/build-error-action.util.ts
|
||||
@@ -12266,11 +12265,9 @@ msgstr "Et enviarem un enllaç per verificar la propietat del domini"
|
||||
|
||||
#. js-lingui-id: X56YGk
|
||||
#: src/pages/onboarding/PaymentSuccess.tsx
|
||||
msgid ""
|
||||
"We're waiting for a confirmation from our payment provider (Stripe).\n"
|
||||
msgid "We're waiting for a confirmation from our payment provider (Stripe).\n"
|
||||
"Please try again in a few seconds, sorry."
|
||||
msgstr ""
|
||||
"Estem esperant una confirmació del nostre proveïdor de pagaments (Stripe).\n"
|
||||
msgstr "Estem esperant una confirmació del nostre proveïdor de pagaments (Stripe).\n"
|
||||
"Torna-ho a provar d'aquí a uns segons, si us plau. Disculpa."
|
||||
|
||||
#. js-lingui-id: LnnVIT
|
||||
@@ -12593,7 +12590,7 @@ msgstr "No tens permís per crear registres en aquest objecte"
|
||||
#. js-lingui-id: iibZbD
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "You can either create a private app or share it to others"
|
||||
msgstr ""
|
||||
msgstr "Pots crear una aplicació privada o compartir-la amb altres"
|
||||
|
||||
#. js-lingui-id: OLE3Ky
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
|
||||
|
||||
@@ -67,7 +67,7 @@ msgstr ": Minulost"
|
||||
#. js-lingui-id: DIUF3A
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
msgid ": Today{timeZoneAbbreviationSuffix}"
|
||||
msgstr ""
|
||||
msgstr ": Dnes{timeZoneAbbreviationSuffix}"
|
||||
|
||||
#. js-lingui-id: N/lIUf
|
||||
#: src/modules/billing/hooks/useBillingWording.ts
|
||||
@@ -129,13 +129,13 @@ msgstr "{0, plural, one {{1} úloha nelze znovu spustit} few {{2} úlohy nelze z
|
||||
#. placeholder {0}: Math.abs(days)
|
||||
#: src/utils/date-utils.ts
|
||||
msgid "{0, plural, one {{days} day} other {{days} days}}"
|
||||
msgstr ""
|
||||
msgstr "{0, plural, one {{days} den} few {{days} dny} other {{days} dnů}}"
|
||||
|
||||
#. js-lingui-id: dXYycw
|
||||
#. placeholder {0}: Math.abs(years)
|
||||
#: src/utils/date-utils.ts
|
||||
msgid "{0, plural, one {{years} year} other {{years} years}}"
|
||||
msgstr ""
|
||||
msgstr "{0, plural, one {{years} rok} few {{years} roky} many {{years} let} other {{years} let}}"
|
||||
|
||||
#. js-lingui-id: Qvm3VE
|
||||
#. placeholder {0}: selectedOptions.length
|
||||
@@ -1067,7 +1067,7 @@ msgstr "Po určité době"
|
||||
#. js-lingui-id: YPnvqG
|
||||
#: src/modules/object-record/record-calendar/month/hooks/useRecordCalendarQueryDateRangeFilter.tsx
|
||||
msgid "After or equal"
|
||||
msgstr ""
|
||||
msgstr "Po nebo rovno"
|
||||
|
||||
#. js-lingui-id: fcYF58
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
@@ -1119,7 +1119,7 @@ msgstr "Agenti"
|
||||
#. js-lingui-id: wFe+5D
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
msgid "Agents powering this app"
|
||||
msgstr ""
|
||||
msgstr "Agenti, které tato aplikace využívá"
|
||||
|
||||
#. js-lingui-id: 0k5XwN
|
||||
#: src/pages/settings/ai/components/SettingsAIAgentsTable.tsx
|
||||
@@ -1162,7 +1162,7 @@ msgstr ""
|
||||
#. js-lingui-id: Sfwld8
|
||||
#: src/modules/ai/components/AIChatApiKeyNotConfiguredMessage.tsx
|
||||
msgid "AI not configured. Set OPENAI_API_KEY, ANTHROPIC_API_KEY, or XAI_API_KEY in your environment."
|
||||
msgstr ""
|
||||
msgstr "AI není nakonfigurována. V prostředí nastavte hodnotu OPENAI_API_KEY, ANTHROPIC_API_KEY nebo XAI_API_KEY."
|
||||
|
||||
#. js-lingui-id: jwOWhc
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
@@ -2515,7 +2515,7 @@ msgstr "Nabídka příkazů"
|
||||
#. js-lingui-id: 4XlFx/
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "Commands copied to clipboard"
|
||||
msgstr ""
|
||||
msgstr "Příkazy zkopírovány do schránky"
|
||||
|
||||
#. js-lingui-id: A9u+7N
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
@@ -2745,7 +2745,7 @@ msgstr "Politika automatického vytváření kontaktů"
|
||||
#. js-lingui-id: cByGGA
|
||||
#: src/modules/information-banner/components/billing/InformationBannerEndTrialPeriod.tsx
|
||||
msgid "Contact your admin to continue using Workflow or AI features."
|
||||
msgstr ""
|
||||
msgstr "Obraťte se na svého správce, abyste mohli nadále používat funkce pracovních postupů nebo AI."
|
||||
|
||||
#. js-lingui-id: /5mghO
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
@@ -2852,7 +2852,7 @@ msgstr "Kopírovat kód"
|
||||
#. js-lingui-id: Es0ros
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "Copy commands"
|
||||
msgstr ""
|
||||
msgstr "Kopírovat příkazy"
|
||||
|
||||
#. js-lingui-id: 7eVkEH
|
||||
#: src/pages/onboarding/InviteTeam.tsx
|
||||
@@ -3021,7 +3021,7 @@ msgstr "Vytvořte pracovní prostor"
|
||||
#. js-lingui-id: /WlFSf
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "Create an application"
|
||||
msgstr ""
|
||||
msgstr "Vytvořit aplikaci"
|
||||
|
||||
#. js-lingui-id: 8ZjIgO
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
|
||||
@@ -3172,12 +3172,12 @@ msgstr "Kredity podle období"
|
||||
#. js-lingui-id: EABlI0
|
||||
#: src/modules/ai/components/AIChatCreditsExhaustedMessage.tsx
|
||||
msgid "Credits exhausted. Please contact your workspace admin to upgrade."
|
||||
msgstr ""
|
||||
msgstr "Kredity byly vyčerpány. Chcete-li provést upgrade, kontaktujte správce pracovního prostoru."
|
||||
|
||||
#. js-lingui-id: JIXvMy
|
||||
#: src/modules/ai/components/AIChatCreditsExhaustedMessage.tsx
|
||||
msgid "Credits exhausted. Upgrade your plan to get more credits."
|
||||
msgstr ""
|
||||
msgstr "Kredity byly vyčerpány. Upgradujte svůj plán, abyste získali více kreditů."
|
||||
|
||||
#. js-lingui-id: n3kKrs
|
||||
#: src/modules/billing/components/SettingsBillingCreditsSection.tsx
|
||||
@@ -4450,12 +4450,12 @@ msgstr "Povolit funkce specifické pro model"
|
||||
#. js-lingui-id: k1i50B
|
||||
#: src/modules/information-banner/components/billing/InformationBannerEndTrialPeriod.tsx
|
||||
msgid "End Trial Period"
|
||||
msgstr ""
|
||||
msgstr "Ukončit zkušební období"
|
||||
|
||||
#. js-lingui-id: QEUZoG
|
||||
#: src/modules/information-banner/components/billing/InformationBannerEndTrialPeriod.tsx
|
||||
msgid "End trial period to continue using Workflow or AI features."
|
||||
msgstr ""
|
||||
msgstr "Ukončete zkušební období, abyste mohli nadále používat funkce pracovních postupů nebo AI."
|
||||
|
||||
#. js-lingui-id: T3juzf
|
||||
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
|
||||
@@ -5560,7 +5560,7 @@ msgstr "Čtvrtý"
|
||||
#. js-lingui-id: aUj1gh
|
||||
#: src/modules/ai/components/AIChatCreditsExhaustedMessage.tsx
|
||||
msgid "Free trial credits exhausted. Subscribe now to continue using AI features."
|
||||
msgstr ""
|
||||
msgstr "Kredity ze zkušební verze byly vyčerpány. Předplaťte si nyní, abyste mohli nadále používat funkce AI."
|
||||
|
||||
#. js-lingui-id: nLC6tu
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
@@ -5581,7 +5581,7 @@ msgstr "Plný přístup"
|
||||
#. js-lingui-id: xANKBj
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
msgid "Functions"
|
||||
msgstr ""
|
||||
msgstr "Funkce"
|
||||
|
||||
#. js-lingui-id: tkr79G
|
||||
#: src/utils/title-utils.ts
|
||||
@@ -6241,7 +6241,7 @@ msgstr "Instalace a správa aplikací"
|
||||
#. js-lingui-id: N52taw
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "Installed applications"
|
||||
msgstr ""
|
||||
msgstr "Nainstalované aplikace"
|
||||
|
||||
#. js-lingui-id: AwUsnG
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
@@ -6366,12 +6366,12 @@ msgstr "Neplatné číslo"
|
||||
#. js-lingui-id: sBZMWb
|
||||
#: src/modules/page-layout/widgets/components/PageLayoutWidgetNoDataDisplay.tsx
|
||||
msgid "Invalid URL"
|
||||
msgstr ""
|
||||
msgstr "Neplatná adresa URL"
|
||||
|
||||
#. js-lingui-id: yRuMQS
|
||||
#: src/modules/page-layout/widgets/components/PageLayoutWidgetNoDataDisplay.tsx
|
||||
msgid "Invalid URL. Click edit to configure this widget."
|
||||
msgstr ""
|
||||
msgstr "Neplatná adresa URL. Kliknutím na Upravit nakonfigurujte tento widget."
|
||||
|
||||
#. js-lingui-id: VEKoJx
|
||||
#: src/modules/settings/two-factor-authentication/hooks/useTwoFactorVerificationForSettings.ts
|
||||
@@ -6438,7 +6438,7 @@ msgstr "Je"
|
||||
#. js-lingui-id: jI6+Q3
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
msgid "Is after or equal"
|
||||
msgstr ""
|
||||
msgstr "Je po nebo rovno"
|
||||
|
||||
#. js-lingui-id: NgIlDJ
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
@@ -6533,7 +6533,7 @@ msgstr "Je relativní"
|
||||
#. js-lingui-id: 8vhfz7
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
msgid "Is today{timeZoneAbbreviationSuffix}"
|
||||
msgstr ""
|
||||
msgstr "Je dnes{timeZoneAbbreviationSuffix}"
|
||||
|
||||
#. js-lingui-id: IhCN5p
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOOIDCForm.tsx
|
||||
@@ -6861,7 +6861,7 @@ msgstr ""
|
||||
#. js-lingui-id: 5Kn+XX
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "List installed applications. Use filter to search for a specific application"
|
||||
msgstr ""
|
||||
msgstr "Seznam nainstalovaných aplikací. Pomocí filtru vyhledejte konkrétní aplikaci"
|
||||
|
||||
#. js-lingui-id: HhVDr2
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
@@ -7053,7 +7053,7 @@ msgstr "Spravovat pracovní postupy"
|
||||
#. js-lingui-id: cbzOP7
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
|
||||
msgid "Manage your app"
|
||||
msgstr ""
|
||||
msgstr "Spravujte svou aplikaci"
|
||||
|
||||
#. js-lingui-id: FyFNsd
|
||||
#: src/pages/settings/accounts/SettingsAccounts.tsx
|
||||
@@ -8237,7 +8237,7 @@ msgstr "Nastavení oprávnění objektů a polí"
|
||||
#. js-lingui-id: YFI9hD
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
msgid "Objects managed by this app"
|
||||
msgstr ""
|
||||
msgstr "Objekty spravované touto aplikací"
|
||||
|
||||
#. js-lingui-id: BwJKBw
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
|
||||
@@ -9124,7 +9124,7 @@ msgstr "Přečíst si seznam změn"
|
||||
#. js-lingui-id: ibPuCP
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "Read documentation"
|
||||
msgstr ""
|
||||
msgstr "Přečtěte si dokumentaci"
|
||||
|
||||
#. js-lingui-id: BT7pY+
|
||||
#: src/modules/settings/profile/components/SetOrChangePassword.tsx
|
||||
@@ -9748,7 +9748,7 @@ msgstr "Hledat agenta..."
|
||||
#. js-lingui-id: fGTI3o
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "Search an application"
|
||||
msgstr ""
|
||||
msgstr "Vyhledat aplikaci"
|
||||
|
||||
#. js-lingui-id: kdagxk
|
||||
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTable.tsx
|
||||
@@ -10201,7 +10201,7 @@ msgstr "serverless funkce"
|
||||
#. js-lingui-id: 0WOel+
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
msgid "Serverless functions powering this app"
|
||||
msgstr ""
|
||||
msgstr "Funkce typu serverless, které pohánějí tuto aplikaci"
|
||||
|
||||
#. js-lingui-id: LUc0oL
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
@@ -11204,8 +11204,7 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: Ox1hE7
|
||||
#: src/modules/settings/profile/components/DeleteAccount.tsx
|
||||
msgid ""
|
||||
"This action cannot be undone. This will permanently delete your\n"
|
||||
msgid "This action cannot be undone. This will permanently delete your\n"
|
||||
" entire account."
|
||||
msgstr "Tato akce je nevratná. Tímto bude váš účet trvale smazán."
|
||||
|
||||
@@ -11876,7 +11875,7 @@ msgstr "Upgrade"
|
||||
#. js-lingui-id: 7aHRdp
|
||||
#: src/modules/ai/components/AIChatCreditsExhaustedMessage.tsx
|
||||
msgid "Upgrade Plan"
|
||||
msgstr ""
|
||||
msgstr "Upgradovat plán"
|
||||
|
||||
#. js-lingui-id: ONWvwQ
|
||||
#: src/modules/ui/input/components/ImageInput.tsx
|
||||
@@ -12111,7 +12110,7 @@ msgstr "Zobrazit detaily fakturace"
|
||||
#. js-lingui-id: SXCuo2
|
||||
#: src/modules/ai/components/AIChatApiKeyNotConfiguredMessage.tsx
|
||||
msgid "View Docs"
|
||||
msgstr ""
|
||||
msgstr "Zobrazit dokumentaci"
|
||||
|
||||
#. js-lingui-id: Mv1YVf
|
||||
#: src/modules/ui/feedback/snack-bar-manager/utils/build-error-action.util.ts
|
||||
@@ -12266,11 +12265,9 @@ msgstr "Pošleme vám odkaz pro ověření vlastnictví domény"
|
||||
|
||||
#. js-lingui-id: X56YGk
|
||||
#: src/pages/onboarding/PaymentSuccess.tsx
|
||||
msgid ""
|
||||
"We're waiting for a confirmation from our payment provider (Stripe).\n"
|
||||
msgid "We're waiting for a confirmation from our payment provider (Stripe).\n"
|
||||
"Please try again in a few seconds, sorry."
|
||||
msgstr ""
|
||||
"Čekáme na potvrzení od našeho platebního poskytovatele (Stripe).\n"
|
||||
msgstr "Čekáme na potvrzení od našeho platebního poskytovatele (Stripe).\n"
|
||||
"Zkuste to prosím za pár sekund znovu."
|
||||
|
||||
#. js-lingui-id: LnnVIT
|
||||
@@ -12593,7 +12590,7 @@ msgstr "Nemáte povoleno vytvářet záznamy pro tento objekt"
|
||||
#. js-lingui-id: iibZbD
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "You can either create a private app or share it to others"
|
||||
msgstr ""
|
||||
msgstr "Můžete buď vytvořit soukromou aplikaci, nebo ji sdílet s ostatními"
|
||||
|
||||
#. js-lingui-id: OLE3Ky
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
|
||||
|
||||
@@ -67,7 +67,7 @@ msgstr ": Fortid"
|
||||
#. js-lingui-id: DIUF3A
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
msgid ": Today{timeZoneAbbreviationSuffix}"
|
||||
msgstr ""
|
||||
msgstr ": i dag{timeZoneAbbreviationSuffix}"
|
||||
|
||||
#. js-lingui-id: N/lIUf
|
||||
#: src/modules/billing/hooks/useBillingWording.ts
|
||||
@@ -129,13 +129,13 @@ msgstr "{0, plural, one {{1} job kunne ikke prøves igen} other {{2} jobs kunne
|
||||
#. placeholder {0}: Math.abs(days)
|
||||
#: src/utils/date-utils.ts
|
||||
msgid "{0, plural, one {{days} day} other {{days} days}}"
|
||||
msgstr ""
|
||||
msgstr "{0, plural, one {{days} dag} other {{days} dage}}"
|
||||
|
||||
#. js-lingui-id: dXYycw
|
||||
#. placeholder {0}: Math.abs(years)
|
||||
#: src/utils/date-utils.ts
|
||||
msgid "{0, plural, one {{years} year} other {{years} years}}"
|
||||
msgstr ""
|
||||
msgstr "{0, plural, one {{years} år} other {{years} år}}"
|
||||
|
||||
#. js-lingui-id: Qvm3VE
|
||||
#. placeholder {0}: selectedOptions.length
|
||||
@@ -1067,7 +1067,7 @@ msgstr "Efter en bestemt tidsperiode"
|
||||
#. js-lingui-id: YPnvqG
|
||||
#: src/modules/object-record/record-calendar/month/hooks/useRecordCalendarQueryDateRangeFilter.tsx
|
||||
msgid "After or equal"
|
||||
msgstr ""
|
||||
msgstr "Efter eller lig med"
|
||||
|
||||
#. js-lingui-id: fcYF58
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
@@ -1119,7 +1119,7 @@ msgstr "Agent"
|
||||
#. js-lingui-id: wFe+5D
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
msgid "Agents powering this app"
|
||||
msgstr ""
|
||||
msgstr "Agenter, der driver denne app"
|
||||
|
||||
#. js-lingui-id: 0k5XwN
|
||||
#: src/pages/settings/ai/components/SettingsAIAgentsTable.tsx
|
||||
@@ -1162,7 +1162,7 @@ msgstr ""
|
||||
#. js-lingui-id: Sfwld8
|
||||
#: src/modules/ai/components/AIChatApiKeyNotConfiguredMessage.tsx
|
||||
msgid "AI not configured. Set OPENAI_API_KEY, ANTHROPIC_API_KEY, or XAI_API_KEY in your environment."
|
||||
msgstr ""
|
||||
msgstr "AI ikke konfigureret. Angiv OPENAI_API_KEY, ANTHROPIC_API_KEY eller XAI_API_KEY i dit miljø."
|
||||
|
||||
#. js-lingui-id: jwOWhc
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
@@ -2515,7 +2515,7 @@ msgstr "Kommandomenu"
|
||||
#. js-lingui-id: 4XlFx/
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "Commands copied to clipboard"
|
||||
msgstr ""
|
||||
msgstr "Kommandoer kopieret til udklipsholder"
|
||||
|
||||
#. js-lingui-id: A9u+7N
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
@@ -2745,7 +2745,7 @@ msgstr "Kontakt automatisk oprettelse"
|
||||
#. js-lingui-id: cByGGA
|
||||
#: src/modules/information-banner/components/billing/InformationBannerEndTrialPeriod.tsx
|
||||
msgid "Contact your admin to continue using Workflow or AI features."
|
||||
msgstr ""
|
||||
msgstr "Kontakt din administrator for at fortsætte med at bruge Workflow- eller AI-funktioner."
|
||||
|
||||
#. js-lingui-id: /5mghO
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
@@ -2852,7 +2852,7 @@ msgstr "Kopiér kode"
|
||||
#. js-lingui-id: Es0ros
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "Copy commands"
|
||||
msgstr ""
|
||||
msgstr "Kopiér kommandoer"
|
||||
|
||||
#. js-lingui-id: 7eVkEH
|
||||
#: src/pages/onboarding/InviteTeam.tsx
|
||||
@@ -3021,7 +3021,7 @@ msgstr "Opret et arbejdsområde"
|
||||
#. js-lingui-id: /WlFSf
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "Create an application"
|
||||
msgstr ""
|
||||
msgstr "Opret en applikation"
|
||||
|
||||
#. js-lingui-id: 8ZjIgO
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
|
||||
@@ -3172,12 +3172,12 @@ msgstr "Kreditter efter periode"
|
||||
#. js-lingui-id: EABlI0
|
||||
#: src/modules/ai/components/AIChatCreditsExhaustedMessage.tsx
|
||||
msgid "Credits exhausted. Please contact your workspace admin to upgrade."
|
||||
msgstr ""
|
||||
msgstr "Kreditter opbrugt. Kontakt administratoren for dit arbejdsområde for at opgradere."
|
||||
|
||||
#. js-lingui-id: JIXvMy
|
||||
#: src/modules/ai/components/AIChatCreditsExhaustedMessage.tsx
|
||||
msgid "Credits exhausted. Upgrade your plan to get more credits."
|
||||
msgstr ""
|
||||
msgstr "Kreditter opbrugt. Opgrader din plan for at få flere kreditter."
|
||||
|
||||
#. js-lingui-id: n3kKrs
|
||||
#: src/modules/billing/components/SettingsBillingCreditsSection.tsx
|
||||
@@ -4450,12 +4450,12 @@ msgstr "Aktiver model-specifikke funktioner"
|
||||
#. js-lingui-id: k1i50B
|
||||
#: src/modules/information-banner/components/billing/InformationBannerEndTrialPeriod.tsx
|
||||
msgid "End Trial Period"
|
||||
msgstr ""
|
||||
msgstr "Afslut prøveperioden"
|
||||
|
||||
#. js-lingui-id: QEUZoG
|
||||
#: src/modules/information-banner/components/billing/InformationBannerEndTrialPeriod.tsx
|
||||
msgid "End trial period to continue using Workflow or AI features."
|
||||
msgstr ""
|
||||
msgstr "Afslut prøveperioden for at fortsætte med at bruge Workflow- eller AI-funktioner."
|
||||
|
||||
#. js-lingui-id: T3juzf
|
||||
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
|
||||
@@ -5560,7 +5560,7 @@ msgstr "Fjerde"
|
||||
#. js-lingui-id: aUj1gh
|
||||
#: src/modules/ai/components/AIChatCreditsExhaustedMessage.tsx
|
||||
msgid "Free trial credits exhausted. Subscribe now to continue using AI features."
|
||||
msgstr ""
|
||||
msgstr "Kreditter i den gratis prøveperiode er opbrugt. Abonner nu for at fortsætte med at bruge AI-funktioner."
|
||||
|
||||
#. js-lingui-id: nLC6tu
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
@@ -5581,7 +5581,7 @@ msgstr "Fuld adgang"
|
||||
#. js-lingui-id: xANKBj
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
msgid "Functions"
|
||||
msgstr ""
|
||||
msgstr "Funktioner"
|
||||
|
||||
#. js-lingui-id: tkr79G
|
||||
#: src/utils/title-utils.ts
|
||||
@@ -6241,7 +6241,7 @@ msgstr "Installer og administrer applikationer"
|
||||
#. js-lingui-id: N52taw
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "Installed applications"
|
||||
msgstr ""
|
||||
msgstr "Installerede applikationer"
|
||||
|
||||
#. js-lingui-id: AwUsnG
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
@@ -6366,12 +6366,12 @@ msgstr "Ugyldigt tal"
|
||||
#. js-lingui-id: sBZMWb
|
||||
#: src/modules/page-layout/widgets/components/PageLayoutWidgetNoDataDisplay.tsx
|
||||
msgid "Invalid URL"
|
||||
msgstr ""
|
||||
msgstr "Ugyldig URL"
|
||||
|
||||
#. js-lingui-id: yRuMQS
|
||||
#: src/modules/page-layout/widgets/components/PageLayoutWidgetNoDataDisplay.tsx
|
||||
msgid "Invalid URL. Click edit to configure this widget."
|
||||
msgstr ""
|
||||
msgstr "Ugyldig URL. Klik på rediger for at konfigurere denne widget."
|
||||
|
||||
#. js-lingui-id: VEKoJx
|
||||
#: src/modules/settings/two-factor-authentication/hooks/useTwoFactorVerificationForSettings.ts
|
||||
@@ -6438,7 +6438,7 @@ msgstr "Er"
|
||||
#. js-lingui-id: jI6+Q3
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
msgid "Is after or equal"
|
||||
msgstr ""
|
||||
msgstr "Er efter eller lig med"
|
||||
|
||||
#. js-lingui-id: NgIlDJ
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
@@ -6533,7 +6533,7 @@ msgstr "Er relativ"
|
||||
#. js-lingui-id: 8vhfz7
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
msgid "Is today{timeZoneAbbreviationSuffix}"
|
||||
msgstr ""
|
||||
msgstr "Er i dag{timeZoneAbbreviationSuffix}"
|
||||
|
||||
#. js-lingui-id: IhCN5p
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOOIDCForm.tsx
|
||||
@@ -6861,7 +6861,7 @@ msgstr ""
|
||||
#. js-lingui-id: 5Kn+XX
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "List installed applications. Use filter to search for a specific application"
|
||||
msgstr ""
|
||||
msgstr "Vis installerede applikationer. Brug filteret til at søge efter en bestemt applikation"
|
||||
|
||||
#. js-lingui-id: HhVDr2
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
@@ -7053,7 +7053,7 @@ msgstr "Administrer arbejdsprocesser"
|
||||
#. js-lingui-id: cbzOP7
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
|
||||
msgid "Manage your app"
|
||||
msgstr ""
|
||||
msgstr "Administrer din app"
|
||||
|
||||
#. js-lingui-id: FyFNsd
|
||||
#: src/pages/settings/accounts/SettingsAccounts.tsx
|
||||
@@ -8237,7 +8237,7 @@ msgstr "Objekter og felt tilladelsesindstillinger"
|
||||
#. js-lingui-id: YFI9hD
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
msgid "Objects managed by this app"
|
||||
msgstr ""
|
||||
msgstr "Objekter, der administreres af denne app"
|
||||
|
||||
#. js-lingui-id: BwJKBw
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
|
||||
@@ -9124,7 +9124,7 @@ msgstr "Læs ændringsloggen"
|
||||
#. js-lingui-id: ibPuCP
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "Read documentation"
|
||||
msgstr ""
|
||||
msgstr "Læs dokumentation"
|
||||
|
||||
#. js-lingui-id: BT7pY+
|
||||
#: src/modules/settings/profile/components/SetOrChangePassword.tsx
|
||||
@@ -9748,7 +9748,7 @@ msgstr "Søg efter en agent..."
|
||||
#. js-lingui-id: fGTI3o
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "Search an application"
|
||||
msgstr ""
|
||||
msgstr "Søg efter en applikation"
|
||||
|
||||
#. js-lingui-id: kdagxk
|
||||
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTable.tsx
|
||||
@@ -10201,7 +10201,7 @@ msgstr "serverløs funktion"
|
||||
#. js-lingui-id: 0WOel+
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
msgid "Serverless functions powering this app"
|
||||
msgstr ""
|
||||
msgstr "Serverløse funktioner, der driver denne app"
|
||||
|
||||
#. js-lingui-id: LUc0oL
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
@@ -11204,11 +11204,9 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: Ox1hE7
|
||||
#: src/modules/settings/profile/components/DeleteAccount.tsx
|
||||
msgid ""
|
||||
"This action cannot be undone. This will permanently delete your\n"
|
||||
msgid "This action cannot be undone. This will permanently delete your\n"
|
||||
" entire account."
|
||||
msgstr ""
|
||||
"Denne handling kan ikke fortrydes. Dette vil permanent slette din\n"
|
||||
msgstr "Denne handling kan ikke fortrydes. Dette vil permanent slette din\n"
|
||||
" hele konto."
|
||||
|
||||
#. js-lingui-id: bNY3MH
|
||||
@@ -11878,7 +11876,7 @@ msgstr "Opgrader"
|
||||
#. js-lingui-id: 7aHRdp
|
||||
#: src/modules/ai/components/AIChatCreditsExhaustedMessage.tsx
|
||||
msgid "Upgrade Plan"
|
||||
msgstr ""
|
||||
msgstr "Opgrader planen"
|
||||
|
||||
#. js-lingui-id: ONWvwQ
|
||||
#: src/modules/ui/input/components/ImageInput.tsx
|
||||
@@ -12113,7 +12111,7 @@ msgstr "Se faktureringsdetaljer"
|
||||
#. js-lingui-id: SXCuo2
|
||||
#: src/modules/ai/components/AIChatApiKeyNotConfiguredMessage.tsx
|
||||
msgid "View Docs"
|
||||
msgstr ""
|
||||
msgstr "Vis dokumentation"
|
||||
|
||||
#. js-lingui-id: Mv1YVf
|
||||
#: src/modules/ui/feedback/snack-bar-manager/utils/build-error-action.util.ts
|
||||
@@ -12268,11 +12266,9 @@ msgstr "Vi vil sende dig et link for at verificere domæneeje"
|
||||
|
||||
#. js-lingui-id: X56YGk
|
||||
#: src/pages/onboarding/PaymentSuccess.tsx
|
||||
msgid ""
|
||||
"We're waiting for a confirmation from our payment provider (Stripe).\n"
|
||||
msgid "We're waiting for a confirmation from our payment provider (Stripe).\n"
|
||||
"Please try again in a few seconds, sorry."
|
||||
msgstr ""
|
||||
"Vi venter på en bekræftelse fra vores betalingsudbyder (Stripe).\n"
|
||||
msgstr "Vi venter på en bekræftelse fra vores betalingsudbyder (Stripe).\n"
|
||||
"Prøv igen om et øjeblik, beklager."
|
||||
|
||||
#. js-lingui-id: LnnVIT
|
||||
@@ -12595,7 +12591,7 @@ msgstr "Du har ikke tilladelse til at oprette poster i dette objekt"
|
||||
#. js-lingui-id: iibZbD
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "You can either create a private app or share it to others"
|
||||
msgstr ""
|
||||
msgstr "Du kan enten oprette en privat app eller dele den med andre"
|
||||
|
||||
#. js-lingui-id: OLE3Ky
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
|
||||
|
||||
@@ -67,7 +67,7 @@ msgstr ": Vergangenheit"
|
||||
#. js-lingui-id: DIUF3A
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
msgid ": Today{timeZoneAbbreviationSuffix}"
|
||||
msgstr ""
|
||||
msgstr ": Heute{timeZoneAbbreviationSuffix}"
|
||||
|
||||
#. js-lingui-id: N/lIUf
|
||||
#: src/modules/billing/hooks/useBillingWording.ts
|
||||
@@ -129,13 +129,13 @@ msgstr "{0, plural, one {{1} Aufgabe konnte nicht erneut versucht werden} other
|
||||
#. placeholder {0}: Math.abs(days)
|
||||
#: src/utils/date-utils.ts
|
||||
msgid "{0, plural, one {{days} day} other {{days} days}}"
|
||||
msgstr ""
|
||||
msgstr "{0, plural, one {{days} Tag} other {{days} Tage}}"
|
||||
|
||||
#. js-lingui-id: dXYycw
|
||||
#. placeholder {0}: Math.abs(years)
|
||||
#: src/utils/date-utils.ts
|
||||
msgid "{0, plural, one {{years} year} other {{years} years}}"
|
||||
msgstr ""
|
||||
msgstr "{0, plural, one {{years} Jahr} other {{years} Jahre}}"
|
||||
|
||||
#. js-lingui-id: Qvm3VE
|
||||
#. placeholder {0}: selectedOptions.length
|
||||
@@ -1067,7 +1067,7 @@ msgstr "Nach einer festgelegten Zeitspanne"
|
||||
#. js-lingui-id: YPnvqG
|
||||
#: src/modules/object-record/record-calendar/month/hooks/useRecordCalendarQueryDateRangeFilter.tsx
|
||||
msgid "After or equal"
|
||||
msgstr ""
|
||||
msgstr "Nach oder gleich"
|
||||
|
||||
#. js-lingui-id: fcYF58
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
@@ -1119,7 +1119,7 @@ msgstr "Agenten"
|
||||
#. js-lingui-id: wFe+5D
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
msgid "Agents powering this app"
|
||||
msgstr ""
|
||||
msgstr "Agenten, die diese Anwendung unterstützen"
|
||||
|
||||
#. js-lingui-id: 0k5XwN
|
||||
#: src/pages/settings/ai/components/SettingsAIAgentsTable.tsx
|
||||
@@ -1162,7 +1162,7 @@ msgstr ""
|
||||
#. js-lingui-id: Sfwld8
|
||||
#: src/modules/ai/components/AIChatApiKeyNotConfiguredMessage.tsx
|
||||
msgid "AI not configured. Set OPENAI_API_KEY, ANTHROPIC_API_KEY, or XAI_API_KEY in your environment."
|
||||
msgstr ""
|
||||
msgstr "KI nicht konfiguriert. Setzen Sie OPENAI_API_KEY, ANTHROPIC_API_KEY oder XAI_API_KEY in Ihrer Umgebung."
|
||||
|
||||
#. js-lingui-id: jwOWhc
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
@@ -2515,7 +2515,7 @@ msgstr "Befehlsmenü"
|
||||
#. js-lingui-id: 4XlFx/
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "Commands copied to clipboard"
|
||||
msgstr ""
|
||||
msgstr "Befehle in die Zwischenablage kopiert"
|
||||
|
||||
#. js-lingui-id: A9u+7N
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
@@ -2745,7 +2745,7 @@ msgstr "Richtlinie zur automatischen Kontakterstellung"
|
||||
#. js-lingui-id: cByGGA
|
||||
#: src/modules/information-banner/components/billing/InformationBannerEndTrialPeriod.tsx
|
||||
msgid "Contact your admin to continue using Workflow or AI features."
|
||||
msgstr ""
|
||||
msgstr "Kontaktieren Sie Ihren Admin, um Workflow- oder KI-Funktionen weiter zu nutzen."
|
||||
|
||||
#. js-lingui-id: /5mghO
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
@@ -2852,7 +2852,7 @@ msgstr "Code kopieren"
|
||||
#. js-lingui-id: Es0ros
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "Copy commands"
|
||||
msgstr ""
|
||||
msgstr "Befehle kopieren"
|
||||
|
||||
#. js-lingui-id: 7eVkEH
|
||||
#: src/pages/onboarding/InviteTeam.tsx
|
||||
@@ -3021,7 +3021,7 @@ msgstr "Arbeitsbereich erstellen"
|
||||
#. js-lingui-id: /WlFSf
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "Create an application"
|
||||
msgstr ""
|
||||
msgstr "Eine Anwendung erstellen"
|
||||
|
||||
#. js-lingui-id: 8ZjIgO
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
|
||||
@@ -3172,12 +3172,12 @@ msgstr "Guthaben nach Zeitraum"
|
||||
#. js-lingui-id: EABlI0
|
||||
#: src/modules/ai/components/AIChatCreditsExhaustedMessage.tsx
|
||||
msgid "Credits exhausted. Please contact your workspace admin to upgrade."
|
||||
msgstr ""
|
||||
msgstr "Guthaben aufgebraucht. Bitte wenden Sie sich an Ihren Workspace-Admin, um ein Upgrade durchzuführen."
|
||||
|
||||
#. js-lingui-id: JIXvMy
|
||||
#: src/modules/ai/components/AIChatCreditsExhaustedMessage.tsx
|
||||
msgid "Credits exhausted. Upgrade your plan to get more credits."
|
||||
msgstr ""
|
||||
msgstr "Guthaben aufgebraucht. Aktualisieren Sie Ihren Tarif, um mehr Guthaben zu erhalten."
|
||||
|
||||
#. js-lingui-id: n3kKrs
|
||||
#: src/modules/billing/components/SettingsBillingCreditsSection.tsx
|
||||
@@ -4450,12 +4450,12 @@ msgstr "Enable model-specific features"
|
||||
#. js-lingui-id: k1i50B
|
||||
#: src/modules/information-banner/components/billing/InformationBannerEndTrialPeriod.tsx
|
||||
msgid "End Trial Period"
|
||||
msgstr ""
|
||||
msgstr "Testzeitraum beenden"
|
||||
|
||||
#. js-lingui-id: QEUZoG
|
||||
#: src/modules/information-banner/components/billing/InformationBannerEndTrialPeriod.tsx
|
||||
msgid "End trial period to continue using Workflow or AI features."
|
||||
msgstr ""
|
||||
msgstr "Beenden Sie den Testzeitraum, um Workflow- oder KI-Funktionen weiter zu nutzen."
|
||||
|
||||
#. js-lingui-id: T3juzf
|
||||
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
|
||||
@@ -5560,7 +5560,7 @@ msgstr "Viertes"
|
||||
#. js-lingui-id: aUj1gh
|
||||
#: src/modules/ai/components/AIChatCreditsExhaustedMessage.tsx
|
||||
msgid "Free trial credits exhausted. Subscribe now to continue using AI features."
|
||||
msgstr ""
|
||||
msgstr "Kostenloses Testguthaben aufgebraucht. Abonnieren Sie jetzt, um KI-Funktionen weiter zu nutzen."
|
||||
|
||||
#. js-lingui-id: nLC6tu
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
@@ -5581,7 +5581,7 @@ msgstr "Vollzugriff"
|
||||
#. js-lingui-id: xANKBj
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
msgid "Functions"
|
||||
msgstr ""
|
||||
msgstr "Funktionen"
|
||||
|
||||
#. js-lingui-id: tkr79G
|
||||
#: src/utils/title-utils.ts
|
||||
@@ -6241,7 +6241,7 @@ msgstr "Installieren und Verwalten von Anwendungen"
|
||||
#. js-lingui-id: N52taw
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "Installed applications"
|
||||
msgstr ""
|
||||
msgstr "Installierte Anwendungen"
|
||||
|
||||
#. js-lingui-id: AwUsnG
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
@@ -6366,12 +6366,12 @@ msgstr "Ungültige Zahl"
|
||||
#. js-lingui-id: sBZMWb
|
||||
#: src/modules/page-layout/widgets/components/PageLayoutWidgetNoDataDisplay.tsx
|
||||
msgid "Invalid URL"
|
||||
msgstr ""
|
||||
msgstr "Ungültige URL"
|
||||
|
||||
#. js-lingui-id: yRuMQS
|
||||
#: src/modules/page-layout/widgets/components/PageLayoutWidgetNoDataDisplay.tsx
|
||||
msgid "Invalid URL. Click edit to configure this widget."
|
||||
msgstr ""
|
||||
msgstr "Ungültige URL. Klicken Sie auf Bearbeiten, um dieses Widget zu konfigurieren."
|
||||
|
||||
#. js-lingui-id: VEKoJx
|
||||
#: src/modules/settings/two-factor-authentication/hooks/useTwoFactorVerificationForSettings.ts
|
||||
@@ -6438,7 +6438,7 @@ msgstr "Ist"
|
||||
#. js-lingui-id: jI6+Q3
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
msgid "Is after or equal"
|
||||
msgstr ""
|
||||
msgstr "Ist nach oder gleich"
|
||||
|
||||
#. js-lingui-id: NgIlDJ
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
@@ -6533,7 +6533,7 @@ msgstr "Ist relativ"
|
||||
#. js-lingui-id: 8vhfz7
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
msgid "Is today{timeZoneAbbreviationSuffix}"
|
||||
msgstr ""
|
||||
msgstr "Ist heute{timeZoneAbbreviationSuffix}"
|
||||
|
||||
#. js-lingui-id: IhCN5p
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOOIDCForm.tsx
|
||||
@@ -6861,7 +6861,7 @@ msgstr ""
|
||||
#. js-lingui-id: 5Kn+XX
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "List installed applications. Use filter to search for a specific application"
|
||||
msgstr ""
|
||||
msgstr "Installierte Anwendungen auflisten. Verwenden Sie den Filter, um nach einer bestimmten Anwendung zu suchen."
|
||||
|
||||
#. js-lingui-id: HhVDr2
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
@@ -7053,7 +7053,7 @@ msgstr "Workflows verwalten"
|
||||
#. js-lingui-id: cbzOP7
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
|
||||
msgid "Manage your app"
|
||||
msgstr ""
|
||||
msgstr "Ihre App verwalten"
|
||||
|
||||
#. js-lingui-id: FyFNsd
|
||||
#: src/pages/settings/accounts/SettingsAccounts.tsx
|
||||
@@ -8237,7 +8237,7 @@ msgstr "Objekt- und Feldberechtigungseinstellungen"
|
||||
#. js-lingui-id: YFI9hD
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
msgid "Objects managed by this app"
|
||||
msgstr ""
|
||||
msgstr "Von dieser App verwaltete Objekte"
|
||||
|
||||
#. js-lingui-id: BwJKBw
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
|
||||
@@ -9124,7 +9124,7 @@ msgstr "Änderungsprotokoll lesen"
|
||||
#. js-lingui-id: ibPuCP
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "Read documentation"
|
||||
msgstr ""
|
||||
msgstr "Dokumentation lesen"
|
||||
|
||||
#. js-lingui-id: BT7pY+
|
||||
#: src/modules/settings/profile/components/SetOrChangePassword.tsx
|
||||
@@ -9748,7 +9748,7 @@ msgstr "Einen Agenten suchen..."
|
||||
#. js-lingui-id: fGTI3o
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "Search an application"
|
||||
msgstr ""
|
||||
msgstr "Nach einer Anwendung suchen"
|
||||
|
||||
#. js-lingui-id: kdagxk
|
||||
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTable.tsx
|
||||
@@ -10201,7 +10201,7 @@ msgstr "serverlose Funktion"
|
||||
#. js-lingui-id: 0WOel+
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
msgid "Serverless functions powering this app"
|
||||
msgstr ""
|
||||
msgstr "Serverlose Funktionen, die diese App betreiben"
|
||||
|
||||
#. js-lingui-id: LUc0oL
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
@@ -11204,8 +11204,7 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: Ox1hE7
|
||||
#: src/modules/settings/profile/components/DeleteAccount.tsx
|
||||
msgid ""
|
||||
"This action cannot be undone. This will permanently delete your\n"
|
||||
msgid "This action cannot be undone. This will permanently delete your\n"
|
||||
" entire account."
|
||||
msgstr "Diese Aktion kann nicht rückgängig gemacht werden. Dadurch wird Ihr gesamtes Konto dauerhaft gelöscht."
|
||||
|
||||
@@ -11876,7 +11875,7 @@ msgstr "Upgrade"
|
||||
#. js-lingui-id: 7aHRdp
|
||||
#: src/modules/ai/components/AIChatCreditsExhaustedMessage.tsx
|
||||
msgid "Upgrade Plan"
|
||||
msgstr ""
|
||||
msgstr "Tarif upgraden"
|
||||
|
||||
#. js-lingui-id: ONWvwQ
|
||||
#: src/modules/ui/input/components/ImageInput.tsx
|
||||
@@ -12111,7 +12110,7 @@ msgstr "Rechnungsdetails anzeigen"
|
||||
#. js-lingui-id: SXCuo2
|
||||
#: src/modules/ai/components/AIChatApiKeyNotConfiguredMessage.tsx
|
||||
msgid "View Docs"
|
||||
msgstr ""
|
||||
msgstr "Dokumentation anzeigen"
|
||||
|
||||
#. js-lingui-id: Mv1YVf
|
||||
#: src/modules/ui/feedback/snack-bar-manager/utils/build-error-action.util.ts
|
||||
@@ -12266,11 +12265,9 @@ msgstr "Wir senden Ihnen einen Link, um den Besitz der Domain zu verifizieren"
|
||||
|
||||
#. js-lingui-id: X56YGk
|
||||
#: src/pages/onboarding/PaymentSuccess.tsx
|
||||
msgid ""
|
||||
"We're waiting for a confirmation from our payment provider (Stripe).\n"
|
||||
msgid "We're waiting for a confirmation from our payment provider (Stripe).\n"
|
||||
"Please try again in a few seconds, sorry."
|
||||
msgstr ""
|
||||
"Wir warten auf eine Bestätigung von unserem Zahlungsanbieter (Stripe).\n"
|
||||
msgstr "Wir warten auf eine Bestätigung von unserem Zahlungsanbieter (Stripe).\n"
|
||||
"Bitte versuchen Sie es in ein paar Sekunden erneut, Entschuldigung."
|
||||
|
||||
#. js-lingui-id: LnnVIT
|
||||
@@ -12593,7 +12590,7 @@ msgstr "Sie dürfen keine Datensätze für dieses Objekt erstellen"
|
||||
#. js-lingui-id: iibZbD
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "You can either create a private app or share it to others"
|
||||
msgstr ""
|
||||
msgstr "Sie können entweder eine private App erstellen oder sie für andere freigeben"
|
||||
|
||||
#. js-lingui-id: OLE3Ky
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
|
||||
|
||||
@@ -67,7 +67,7 @@ msgstr ": Παρελθόν"
|
||||
#. js-lingui-id: DIUF3A
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
msgid ": Today{timeZoneAbbreviationSuffix}"
|
||||
msgstr ""
|
||||
msgstr ": Σήμερα{timeZoneAbbreviationSuffix}"
|
||||
|
||||
#. js-lingui-id: N/lIUf
|
||||
#: src/modules/billing/hooks/useBillingWording.ts
|
||||
@@ -129,13 +129,13 @@ msgstr "{0, plural, one {{1} η εργασία δεν μπορούσε να επ
|
||||
#. placeholder {0}: Math.abs(days)
|
||||
#: src/utils/date-utils.ts
|
||||
msgid "{0, plural, one {{days} day} other {{days} days}}"
|
||||
msgstr ""
|
||||
msgstr "{0, plural, one {{days} ημέρα} other {{days} ημέρες}}"
|
||||
|
||||
#. js-lingui-id: dXYycw
|
||||
#. placeholder {0}: Math.abs(years)
|
||||
#: src/utils/date-utils.ts
|
||||
msgid "{0, plural, one {{years} year} other {{years} years}}"
|
||||
msgstr ""
|
||||
msgstr "{0, plural, one {{years} έτος} other {{years} έτη}}"
|
||||
|
||||
#. js-lingui-id: Qvm3VE
|
||||
#. placeholder {0}: selectedOptions.length
|
||||
@@ -1067,7 +1067,7 @@ msgstr "Μετά από καθορισμένο χρονικό διάστημα"
|
||||
#. js-lingui-id: YPnvqG
|
||||
#: src/modules/object-record/record-calendar/month/hooks/useRecordCalendarQueryDateRangeFilter.tsx
|
||||
msgid "After or equal"
|
||||
msgstr ""
|
||||
msgstr "Μετά ή ίσο με"
|
||||
|
||||
#. js-lingui-id: fcYF58
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
@@ -1119,7 +1119,7 @@ msgstr "Πράκτορες"
|
||||
#. js-lingui-id: wFe+5D
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
msgid "Agents powering this app"
|
||||
msgstr ""
|
||||
msgstr "Πράκτορες που υποστηρίζουν αυτή την εφαρμογή"
|
||||
|
||||
#. js-lingui-id: 0k5XwN
|
||||
#: src/pages/settings/ai/components/SettingsAIAgentsTable.tsx
|
||||
@@ -1162,7 +1162,7 @@ msgstr ""
|
||||
#. js-lingui-id: Sfwld8
|
||||
#: src/modules/ai/components/AIChatApiKeyNotConfiguredMessage.tsx
|
||||
msgid "AI not configured. Set OPENAI_API_KEY, ANTHROPIC_API_KEY, or XAI_API_KEY in your environment."
|
||||
msgstr ""
|
||||
msgstr "Το AI δεν έχει ρυθμιστεί. Ορίστε το OPENAI_API_KEY, το ANTHROPIC_API_KEY ή το XAI_API_KEY στο περιβάλλον σας."
|
||||
|
||||
#. js-lingui-id: jwOWhc
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
@@ -2515,7 +2515,7 @@ msgstr "Μενού Εντολών"
|
||||
#. js-lingui-id: 4XlFx/
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "Commands copied to clipboard"
|
||||
msgstr ""
|
||||
msgstr "Οι εντολές αντιγράφηκαν στο πρόχειρο"
|
||||
|
||||
#. js-lingui-id: A9u+7N
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
@@ -2745,7 +2745,7 @@ msgstr "Αυτόματη δημιουργία επαφής"
|
||||
#. js-lingui-id: cByGGA
|
||||
#: src/modules/information-banner/components/billing/InformationBannerEndTrialPeriod.tsx
|
||||
msgid "Contact your admin to continue using Workflow or AI features."
|
||||
msgstr ""
|
||||
msgstr "Επικοινωνήστε με τον διαχειριστή σας για να συνεχίσετε να χρησιμοποιείτε τις λειτουργίες ροής εργασιών ή του AI."
|
||||
|
||||
#. js-lingui-id: /5mghO
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
@@ -2852,7 +2852,7 @@ msgstr "Αντιγραφή κώδικα"
|
||||
#. js-lingui-id: Es0ros
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "Copy commands"
|
||||
msgstr ""
|
||||
msgstr "Αντιγραφή εντολών"
|
||||
|
||||
#. js-lingui-id: 7eVkEH
|
||||
#: src/pages/onboarding/InviteTeam.tsx
|
||||
@@ -3021,7 +3021,7 @@ msgstr "Δημιουργία Χώρου Εργασίας"
|
||||
#. js-lingui-id: /WlFSf
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "Create an application"
|
||||
msgstr ""
|
||||
msgstr "Δημιουργία εφαρμογής"
|
||||
|
||||
#. js-lingui-id: 8ZjIgO
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
|
||||
@@ -3172,12 +3172,12 @@ msgstr "Πιστώσεις ανά περίοδο"
|
||||
#. js-lingui-id: EABlI0
|
||||
#: src/modules/ai/components/AIChatCreditsExhaustedMessage.tsx
|
||||
msgid "Credits exhausted. Please contact your workspace admin to upgrade."
|
||||
msgstr ""
|
||||
msgstr "Οι πιστώσεις εξαντλήθηκαν. Επικοινωνήστε με τον διαχειριστή του χώρου εργασίας σας για αναβάθμιση."
|
||||
|
||||
#. js-lingui-id: JIXvMy
|
||||
#: src/modules/ai/components/AIChatCreditsExhaustedMessage.tsx
|
||||
msgid "Credits exhausted. Upgrade your plan to get more credits."
|
||||
msgstr ""
|
||||
msgstr "Οι πιστώσεις εξαντλήθηκαν. Αναβαθμίστε το πρόγραμμά σας για να αποκτήσετε περισσότερες πιστώσεις."
|
||||
|
||||
#. js-lingui-id: n3kKrs
|
||||
#: src/modules/billing/components/SettingsBillingCreditsSection.tsx
|
||||
@@ -4450,12 +4450,12 @@ msgstr "Ενεργοποιήστε τις λειτουργίες συγκεκρ
|
||||
#. js-lingui-id: k1i50B
|
||||
#: src/modules/information-banner/components/billing/InformationBannerEndTrialPeriod.tsx
|
||||
msgid "End Trial Period"
|
||||
msgstr ""
|
||||
msgstr "Τερματισμός δοκιμαστικής περιόδου"
|
||||
|
||||
#. js-lingui-id: QEUZoG
|
||||
#: src/modules/information-banner/components/billing/InformationBannerEndTrialPeriod.tsx
|
||||
msgid "End trial period to continue using Workflow or AI features."
|
||||
msgstr ""
|
||||
msgstr "Τερματίστε τη δοκιμαστική περίοδο για να συνεχίσετε να χρησιμοποιείτε τις λειτουργίες ροής εργασιών ή του AI."
|
||||
|
||||
#. js-lingui-id: T3juzf
|
||||
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
|
||||
@@ -5560,7 +5560,7 @@ msgstr "Τέταρτος"
|
||||
#. js-lingui-id: aUj1gh
|
||||
#: src/modules/ai/components/AIChatCreditsExhaustedMessage.tsx
|
||||
msgid "Free trial credits exhausted. Subscribe now to continue using AI features."
|
||||
msgstr ""
|
||||
msgstr "Οι πιστώσεις της δωρεάν δοκιμής εξαντλήθηκαν. Εγγραφείτε τώρα για να συνεχίσετε να χρησιμοποιείτε τις λειτουργίες του AI."
|
||||
|
||||
#. js-lingui-id: nLC6tu
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
@@ -5581,7 +5581,7 @@ msgstr "Πλήρης πρόσβαση"
|
||||
#. js-lingui-id: xANKBj
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
msgid "Functions"
|
||||
msgstr ""
|
||||
msgstr "Λειτουργίες"
|
||||
|
||||
#. js-lingui-id: tkr79G
|
||||
#: src/utils/title-utils.ts
|
||||
@@ -6241,7 +6241,7 @@ msgstr "Εγκατάσταση και διαχείριση εφαρμογών"
|
||||
#. js-lingui-id: N52taw
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "Installed applications"
|
||||
msgstr ""
|
||||
msgstr "Εγκατεστημένες εφαρμογές"
|
||||
|
||||
#. js-lingui-id: AwUsnG
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
@@ -6366,7 +6366,7 @@ msgstr "Μη έγκυρος αριθμός"
|
||||
#. js-lingui-id: sBZMWb
|
||||
#: src/modules/page-layout/widgets/components/PageLayoutWidgetNoDataDisplay.tsx
|
||||
msgid "Invalid URL"
|
||||
msgstr ""
|
||||
msgstr "Μη έγκυρο URL"
|
||||
|
||||
#. js-lingui-id: yRuMQS
|
||||
#: src/modules/page-layout/widgets/components/PageLayoutWidgetNoDataDisplay.tsx
|
||||
@@ -6438,7 +6438,7 @@ msgstr "Είναι"
|
||||
#. js-lingui-id: jI6+Q3
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
msgid "Is after or equal"
|
||||
msgstr ""
|
||||
msgstr "Είναι μετά ή ίσο με"
|
||||
|
||||
#. js-lingui-id: NgIlDJ
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
@@ -6533,7 +6533,7 @@ msgstr "Είναι σχετικό"
|
||||
#. js-lingui-id: 8vhfz7
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
msgid "Is today{timeZoneAbbreviationSuffix}"
|
||||
msgstr ""
|
||||
msgstr "Είναι σήμερα{timeZoneAbbreviationSuffix}"
|
||||
|
||||
#. js-lingui-id: IhCN5p
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOOIDCForm.tsx
|
||||
@@ -6861,7 +6861,7 @@ msgstr ""
|
||||
#. js-lingui-id: 5Kn+XX
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "List installed applications. Use filter to search for a specific application"
|
||||
msgstr ""
|
||||
msgstr "Προβολή εγκατεστημένων εφαρμογών. Χρησιμοποιήστε το φίλτρο για να αναζητήσετε μια συγκεκριμένη εφαρμογή"
|
||||
|
||||
#. js-lingui-id: HhVDr2
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
@@ -7053,7 +7053,7 @@ msgstr "Διαχείριση ροών εργασίας"
|
||||
#. js-lingui-id: cbzOP7
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
|
||||
msgid "Manage your app"
|
||||
msgstr ""
|
||||
msgstr "Διαχειριστείτε την εφαρμογή σας"
|
||||
|
||||
#. js-lingui-id: FyFNsd
|
||||
#: src/pages/settings/accounts/SettingsAccounts.tsx
|
||||
@@ -8237,7 +8237,7 @@ msgstr "Ρυθμίσεις δικαιωμάτων αντικειμένων κα
|
||||
#. js-lingui-id: YFI9hD
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
msgid "Objects managed by this app"
|
||||
msgstr ""
|
||||
msgstr "Αντικείμενα που διαχειρίζεται αυτή η εφαρμογή"
|
||||
|
||||
#. js-lingui-id: BwJKBw
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
|
||||
@@ -9124,7 +9124,7 @@ msgstr "Διαβάστε το ιστορικό αλλαγών"
|
||||
#. js-lingui-id: ibPuCP
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "Read documentation"
|
||||
msgstr ""
|
||||
msgstr "Διαβάστε την τεκμηρίωση"
|
||||
|
||||
#. js-lingui-id: BT7pY+
|
||||
#: src/modules/settings/profile/components/SetOrChangePassword.tsx
|
||||
@@ -9748,7 +9748,7 @@ msgstr "Αναζήτηση πράκτορα..."
|
||||
#. js-lingui-id: fGTI3o
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "Search an application"
|
||||
msgstr ""
|
||||
msgstr "Αναζήτηση εφαρμογής"
|
||||
|
||||
#. js-lingui-id: kdagxk
|
||||
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTable.tsx
|
||||
@@ -10201,7 +10201,7 @@ msgstr "λειτουργία χωρίς διακομιστή"
|
||||
#. js-lingui-id: 0WOel+
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
msgid "Serverless functions powering this app"
|
||||
msgstr ""
|
||||
msgstr "Λειτουργίες χωρίς διακομιστή που υποστηρίζουν αυτή την εφαρμογή"
|
||||
|
||||
#. js-lingui-id: LUc0oL
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
@@ -10345,8 +10345,7 @@ msgstr "Μοιραστείτε αυτόν τον σύνδεσμο για να π
|
||||
#. js-lingui-id: RRXpo1
|
||||
#: src/modules/settings/data-model/fields/forms/number/constants/NumberDataModelSelectOptions.ts
|
||||
msgid "Short"
|
||||
msgstr ""
|
||||
"\n"
|
||||
msgstr "\n"
|
||||
""
|
||||
|
||||
#. js-lingui-id: gWk8gY
|
||||
@@ -11206,11 +11205,9 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: Ox1hE7
|
||||
#: src/modules/settings/profile/components/DeleteAccount.tsx
|
||||
msgid ""
|
||||
"This action cannot be undone. This will permanently delete your\n"
|
||||
msgid "This action cannot be undone. This will permanently delete your\n"
|
||||
" entire account."
|
||||
msgstr ""
|
||||
"Αυτή η ενέργεια δεν μπορεί να αναιρεθεί. Αυτό θα διαγράψει μόνιμα\n"
|
||||
msgstr "Αυτή η ενέργεια δεν μπορεί να αναιρεθεί. Αυτό θα διαγράψει μόνιμα\n"
|
||||
" ολόκληρο τον λογαριασμό σας."
|
||||
|
||||
#. js-lingui-id: bNY3MH
|
||||
@@ -11880,7 +11877,7 @@ msgstr "Αναβάθμιση"
|
||||
#. js-lingui-id: 7aHRdp
|
||||
#: src/modules/ai/components/AIChatCreditsExhaustedMessage.tsx
|
||||
msgid "Upgrade Plan"
|
||||
msgstr ""
|
||||
msgstr "Αναβάθμιση προγράμματος"
|
||||
|
||||
#. js-lingui-id: ONWvwQ
|
||||
#: src/modules/ui/input/components/ImageInput.tsx
|
||||
@@ -12115,7 +12112,7 @@ msgstr "Προβολή λεπτομερειών χρέωσης"
|
||||
#. js-lingui-id: SXCuo2
|
||||
#: src/modules/ai/components/AIChatApiKeyNotConfiguredMessage.tsx
|
||||
msgid "View Docs"
|
||||
msgstr ""
|
||||
msgstr "Προβολή τεκμηρίωσης"
|
||||
|
||||
#. js-lingui-id: Mv1YVf
|
||||
#: src/modules/ui/feedback/snack-bar-manager/utils/build-error-action.util.ts
|
||||
@@ -12270,11 +12267,9 @@ msgstr "Θα σας στείλουμε έναν σύνδεσμο για να ε
|
||||
|
||||
#. js-lingui-id: X56YGk
|
||||
#: src/pages/onboarding/PaymentSuccess.tsx
|
||||
msgid ""
|
||||
"We're waiting for a confirmation from our payment provider (Stripe).\n"
|
||||
msgid "We're waiting for a confirmation from our payment provider (Stripe).\n"
|
||||
"Please try again in a few seconds, sorry."
|
||||
msgstr ""
|
||||
"Περιμένουμε επιβεβαίωση από τον πάροχο πληρωμών μας (Stripe).\n"
|
||||
msgstr "Περιμένουμε επιβεβαίωση από τον πάροχο πληρωμών μας (Stripe).\n"
|
||||
"Παρακαλούμε δοκιμάστε ξανά σε λίγα δευτερόλεπτα, συγγνώμη."
|
||||
|
||||
#. js-lingui-id: LnnVIT
|
||||
@@ -12597,7 +12592,7 @@ msgstr "Δεν επιτρέπεται να δημιουργείτε εγγραφ
|
||||
#. js-lingui-id: iibZbD
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "You can either create a private app or share it to others"
|
||||
msgstr ""
|
||||
msgstr "Μπορείτε είτε να δημιουργήσετε μια ιδιωτική εφαρμογή είτε να τη μοιραστείτε με άλλους"
|
||||
|
||||
#. js-lingui-id: OLE3Ky
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
|
||||
|
||||
@@ -67,7 +67,7 @@ msgstr ": Pasado"
|
||||
#. js-lingui-id: DIUF3A
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
msgid ": Today{timeZoneAbbreviationSuffix}"
|
||||
msgstr ""
|
||||
msgstr ": Hoy{timeZoneAbbreviationSuffix}"
|
||||
|
||||
#. js-lingui-id: N/lIUf
|
||||
#: src/modules/billing/hooks/useBillingWording.ts
|
||||
@@ -1067,7 +1067,7 @@ msgstr "Después de un tiempo determinado"
|
||||
#. js-lingui-id: YPnvqG
|
||||
#: src/modules/object-record/record-calendar/month/hooks/useRecordCalendarQueryDateRangeFilter.tsx
|
||||
msgid "After or equal"
|
||||
msgstr ""
|
||||
msgstr "Posterior o igual a"
|
||||
|
||||
#. js-lingui-id: fcYF58
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
@@ -1119,7 +1119,7 @@ msgstr "Agentes"
|
||||
#. js-lingui-id: wFe+5D
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
msgid "Agents powering this app"
|
||||
msgstr ""
|
||||
msgstr "Agentes que impulsan esta aplicación"
|
||||
|
||||
#. js-lingui-id: 0k5XwN
|
||||
#: src/pages/settings/ai/components/SettingsAIAgentsTable.tsx
|
||||
@@ -1162,7 +1162,7 @@ msgstr ""
|
||||
#. js-lingui-id: Sfwld8
|
||||
#: src/modules/ai/components/AIChatApiKeyNotConfiguredMessage.tsx
|
||||
msgid "AI not configured. Set OPENAI_API_KEY, ANTHROPIC_API_KEY, or XAI_API_KEY in your environment."
|
||||
msgstr ""
|
||||
msgstr "IA no configurada. Establece OPENAI_API_KEY, ANTHROPIC_API_KEY o XAI_API_KEY en tu entorno."
|
||||
|
||||
#. js-lingui-id: jwOWhc
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
@@ -2515,7 +2515,7 @@ msgstr "Menú de Comandos"
|
||||
#. js-lingui-id: 4XlFx/
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "Commands copied to clipboard"
|
||||
msgstr ""
|
||||
msgstr "Comandos copiados al portapapeles"
|
||||
|
||||
#. js-lingui-id: A9u+7N
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
@@ -2745,7 +2745,7 @@ msgstr "Creación automática de contactos"
|
||||
#. js-lingui-id: cByGGA
|
||||
#: src/modules/information-banner/components/billing/InformationBannerEndTrialPeriod.tsx
|
||||
msgid "Contact your admin to continue using Workflow or AI features."
|
||||
msgstr ""
|
||||
msgstr "Ponte en contacto con tu administrador para seguir usando las funciones de flujo de trabajo o de IA."
|
||||
|
||||
#. js-lingui-id: /5mghO
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
@@ -2852,7 +2852,7 @@ msgstr "Copiar código"
|
||||
#. js-lingui-id: Es0ros
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "Copy commands"
|
||||
msgstr ""
|
||||
msgstr "Copiar comandos"
|
||||
|
||||
#. js-lingui-id: 7eVkEH
|
||||
#: src/pages/onboarding/InviteTeam.tsx
|
||||
@@ -3021,7 +3021,7 @@ msgstr "Crear Espacio de Trabajo"
|
||||
#. js-lingui-id: /WlFSf
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "Create an application"
|
||||
msgstr ""
|
||||
msgstr "Crear una aplicación"
|
||||
|
||||
#. js-lingui-id: 8ZjIgO
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
|
||||
@@ -3172,12 +3172,12 @@ msgstr "Créditos por período"
|
||||
#. js-lingui-id: EABlI0
|
||||
#: src/modules/ai/components/AIChatCreditsExhaustedMessage.tsx
|
||||
msgid "Credits exhausted. Please contact your workspace admin to upgrade."
|
||||
msgstr ""
|
||||
msgstr "Créditos agotados. Ponte en contacto con el administrador de tu espacio de trabajo para actualizar el plan."
|
||||
|
||||
#. js-lingui-id: JIXvMy
|
||||
#: src/modules/ai/components/AIChatCreditsExhaustedMessage.tsx
|
||||
msgid "Credits exhausted. Upgrade your plan to get more credits."
|
||||
msgstr ""
|
||||
msgstr "Créditos agotados. Actualiza tu plan para obtener más créditos."
|
||||
|
||||
#. js-lingui-id: n3kKrs
|
||||
#: src/modules/billing/components/SettingsBillingCreditsSection.tsx
|
||||
@@ -4450,12 +4450,12 @@ msgstr "Habilitar funciones específicas del modelo"
|
||||
#. js-lingui-id: k1i50B
|
||||
#: src/modules/information-banner/components/billing/InformationBannerEndTrialPeriod.tsx
|
||||
msgid "End Trial Period"
|
||||
msgstr ""
|
||||
msgstr "Finalizar periodo de prueba"
|
||||
|
||||
#. js-lingui-id: QEUZoG
|
||||
#: src/modules/information-banner/components/billing/InformationBannerEndTrialPeriod.tsx
|
||||
msgid "End trial period to continue using Workflow or AI features."
|
||||
msgstr ""
|
||||
msgstr "Finaliza el periodo de prueba para seguir usando las funciones de flujo de trabajo o de IA."
|
||||
|
||||
#. js-lingui-id: T3juzf
|
||||
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
|
||||
@@ -5560,7 +5560,7 @@ msgstr "Cuarto"
|
||||
#. js-lingui-id: aUj1gh
|
||||
#: src/modules/ai/components/AIChatCreditsExhaustedMessage.tsx
|
||||
msgid "Free trial credits exhausted. Subscribe now to continue using AI features."
|
||||
msgstr ""
|
||||
msgstr "Se han agotado los créditos de la prueba gratuita. Suscríbete ahora para seguir usando las funciones de IA."
|
||||
|
||||
#. js-lingui-id: nLC6tu
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
@@ -5581,7 +5581,7 @@ msgstr "Acceso total"
|
||||
#. js-lingui-id: xANKBj
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
msgid "Functions"
|
||||
msgstr ""
|
||||
msgstr "Funciones"
|
||||
|
||||
#. js-lingui-id: tkr79G
|
||||
#: src/utils/title-utils.ts
|
||||
@@ -6241,7 +6241,7 @@ msgstr "Instalar y gestionar aplicaciones"
|
||||
#. js-lingui-id: N52taw
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "Installed applications"
|
||||
msgstr ""
|
||||
msgstr "Aplicaciones instaladas"
|
||||
|
||||
#. js-lingui-id: AwUsnG
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
@@ -6366,12 +6366,12 @@ msgstr "Número no válido"
|
||||
#. js-lingui-id: sBZMWb
|
||||
#: src/modules/page-layout/widgets/components/PageLayoutWidgetNoDataDisplay.tsx
|
||||
msgid "Invalid URL"
|
||||
msgstr ""
|
||||
msgstr "URL no válida"
|
||||
|
||||
#. js-lingui-id: yRuMQS
|
||||
#: src/modules/page-layout/widgets/components/PageLayoutWidgetNoDataDisplay.tsx
|
||||
msgid "Invalid URL. Click edit to configure this widget."
|
||||
msgstr ""
|
||||
msgstr "URL no válida. Haga clic en editar para configurar este widget."
|
||||
|
||||
#. js-lingui-id: VEKoJx
|
||||
#: src/modules/settings/two-factor-authentication/hooks/useTwoFactorVerificationForSettings.ts
|
||||
@@ -6438,7 +6438,7 @@ msgstr "Es"
|
||||
#. js-lingui-id: jI6+Q3
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
msgid "Is after or equal"
|
||||
msgstr ""
|
||||
msgstr "Es posterior o igual a"
|
||||
|
||||
#. js-lingui-id: NgIlDJ
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
@@ -6533,7 +6533,7 @@ msgstr "Es relativo"
|
||||
#. js-lingui-id: 8vhfz7
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
msgid "Is today{timeZoneAbbreviationSuffix}"
|
||||
msgstr ""
|
||||
msgstr "Es hoy{timeZoneAbbreviationSuffix}"
|
||||
|
||||
#. js-lingui-id: IhCN5p
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOOIDCForm.tsx
|
||||
@@ -6861,7 +6861,7 @@ msgstr "lista"
|
||||
#. js-lingui-id: 5Kn+XX
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "List installed applications. Use filter to search for a specific application"
|
||||
msgstr ""
|
||||
msgstr "Lista las aplicaciones instaladas. Usa el filtro para buscar una aplicación específica"
|
||||
|
||||
#. js-lingui-id: HhVDr2
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
@@ -7053,7 +7053,7 @@ msgstr "Gestionar flujos de trabajo"
|
||||
#. js-lingui-id: cbzOP7
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
|
||||
msgid "Manage your app"
|
||||
msgstr ""
|
||||
msgstr "Gestiona tu aplicación"
|
||||
|
||||
#. js-lingui-id: FyFNsd
|
||||
#: src/pages/settings/accounts/SettingsAccounts.tsx
|
||||
@@ -8237,7 +8237,7 @@ msgstr "Configuración de permisos para objetos y campos"
|
||||
#. js-lingui-id: YFI9hD
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
msgid "Objects managed by this app"
|
||||
msgstr ""
|
||||
msgstr "Objetos gestionados por esta aplicación"
|
||||
|
||||
#. js-lingui-id: BwJKBw
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
|
||||
@@ -9124,7 +9124,7 @@ msgstr "Leer el registro de cambios"
|
||||
#. js-lingui-id: ibPuCP
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "Read documentation"
|
||||
msgstr ""
|
||||
msgstr "Leer documentación"
|
||||
|
||||
#. js-lingui-id: BT7pY+
|
||||
#: src/modules/settings/profile/components/SetOrChangePassword.tsx
|
||||
@@ -9748,7 +9748,7 @@ msgstr "Buscar un agente..."
|
||||
#. js-lingui-id: fGTI3o
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "Search an application"
|
||||
msgstr ""
|
||||
msgstr "Buscar una aplicación"
|
||||
|
||||
#. js-lingui-id: kdagxk
|
||||
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTable.tsx
|
||||
@@ -10201,7 +10201,7 @@ msgstr "función sin servidor"
|
||||
#. js-lingui-id: 0WOel+
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
msgid "Serverless functions powering this app"
|
||||
msgstr ""
|
||||
msgstr "Funciones serverless que potencian esta aplicación"
|
||||
|
||||
#. js-lingui-id: LUc0oL
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
@@ -11204,11 +11204,9 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: Ox1hE7
|
||||
#: src/modules/settings/profile/components/DeleteAccount.tsx
|
||||
msgid ""
|
||||
"This action cannot be undone. This will permanently delete your\n"
|
||||
msgid "This action cannot be undone. This will permanently delete your\n"
|
||||
" entire account."
|
||||
msgstr ""
|
||||
"Esta acción no se puede deshacer. Esto eliminará permanentemente su\n"
|
||||
msgstr "Esta acción no se puede deshacer. Esto eliminará permanentemente su\n"
|
||||
" cuenta completa."
|
||||
|
||||
#. js-lingui-id: bNY3MH
|
||||
@@ -11878,7 +11876,7 @@ msgstr "Actualizar"
|
||||
#. js-lingui-id: 7aHRdp
|
||||
#: src/modules/ai/components/AIChatCreditsExhaustedMessage.tsx
|
||||
msgid "Upgrade Plan"
|
||||
msgstr ""
|
||||
msgstr "Actualizar plan"
|
||||
|
||||
#. js-lingui-id: ONWvwQ
|
||||
#: src/modules/ui/input/components/ImageInput.tsx
|
||||
@@ -12113,7 +12111,7 @@ msgstr "Ver detalles de facturación"
|
||||
#. js-lingui-id: SXCuo2
|
||||
#: src/modules/ai/components/AIChatApiKeyNotConfiguredMessage.tsx
|
||||
msgid "View Docs"
|
||||
msgstr ""
|
||||
msgstr "Ver documentación"
|
||||
|
||||
#. js-lingui-id: Mv1YVf
|
||||
#: src/modules/ui/feedback/snack-bar-manager/utils/build-error-action.util.ts
|
||||
@@ -12268,11 +12266,9 @@ msgstr "Te enviaremos un enlace para verificar la propiedad del dominio"
|
||||
|
||||
#. js-lingui-id: X56YGk
|
||||
#: src/pages/onboarding/PaymentSuccess.tsx
|
||||
msgid ""
|
||||
"We're waiting for a confirmation from our payment provider (Stripe).\n"
|
||||
msgid "We're waiting for a confirmation from our payment provider (Stripe).\n"
|
||||
"Please try again in a few seconds, sorry."
|
||||
msgstr ""
|
||||
"Estamos esperando una confirmación de nuestro proveedor de pagos (Stripe).\n"
|
||||
msgstr "Estamos esperando una confirmación de nuestro proveedor de pagos (Stripe).\n"
|
||||
"Por favor, inténtalo de nuevo en unos segundos, disculpa."
|
||||
|
||||
#. js-lingui-id: LnnVIT
|
||||
@@ -12595,7 +12591,7 @@ msgstr "No tiene permiso para crear registros en este objeto"
|
||||
#. js-lingui-id: iibZbD
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "You can either create a private app or share it to others"
|
||||
msgstr ""
|
||||
msgstr "Puedes crear una aplicación privada o compartirla con otras personas"
|
||||
|
||||
#. js-lingui-id: OLE3Ky
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
|
||||
|
||||
@@ -67,7 +67,7 @@ msgstr ": Menneisyys"
|
||||
#. js-lingui-id: DIUF3A
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
msgid ": Today{timeZoneAbbreviationSuffix}"
|
||||
msgstr ""
|
||||
msgstr ": Tänään{timeZoneAbbreviationSuffix}"
|
||||
|
||||
#. js-lingui-id: N/lIUf
|
||||
#: src/modules/billing/hooks/useBillingWording.ts
|
||||
@@ -129,13 +129,13 @@ msgstr "{0, plural, one {{1} työtä ei voitu yrittää uudelleen} other {{2} ty
|
||||
#. placeholder {0}: Math.abs(days)
|
||||
#: src/utils/date-utils.ts
|
||||
msgid "{0, plural, one {{days} day} other {{days} days}}"
|
||||
msgstr ""
|
||||
msgstr "{0, plural, one {{days} päivä} other {{days} päivää}}"
|
||||
|
||||
#. js-lingui-id: dXYycw
|
||||
#. placeholder {0}: Math.abs(years)
|
||||
#: src/utils/date-utils.ts
|
||||
msgid "{0, plural, one {{years} year} other {{years} years}}"
|
||||
msgstr ""
|
||||
msgstr "{0, plural, one {{years} vuosi} other {{years} vuotta}}"
|
||||
|
||||
#. js-lingui-id: Qvm3VE
|
||||
#. placeholder {0}: selectedOptions.length
|
||||
@@ -1067,7 +1067,7 @@ msgstr "Tietyn ajan kuluttua"
|
||||
#. js-lingui-id: YPnvqG
|
||||
#: src/modules/object-record/record-calendar/month/hooks/useRecordCalendarQueryDateRangeFilter.tsx
|
||||
msgid "After or equal"
|
||||
msgstr ""
|
||||
msgstr "Myöhemmin tai sama"
|
||||
|
||||
#. js-lingui-id: fcYF58
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
@@ -1119,7 +1119,7 @@ msgstr "Agentit"
|
||||
#. js-lingui-id: wFe+5D
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
msgid "Agents powering this app"
|
||||
msgstr ""
|
||||
msgstr "Tämän sovelluksen taustalla toimivat agentit"
|
||||
|
||||
#. js-lingui-id: 0k5XwN
|
||||
#: src/pages/settings/ai/components/SettingsAIAgentsTable.tsx
|
||||
@@ -1162,7 +1162,7 @@ msgstr ""
|
||||
#. js-lingui-id: Sfwld8
|
||||
#: src/modules/ai/components/AIChatApiKeyNotConfiguredMessage.tsx
|
||||
msgid "AI not configured. Set OPENAI_API_KEY, ANTHROPIC_API_KEY, or XAI_API_KEY in your environment."
|
||||
msgstr ""
|
||||
msgstr "AI ei ole määritetty. Aseta ympäristöösi OPENAI_API_KEY, ANTHROPIC_API_KEY tai XAI_API_KEY."
|
||||
|
||||
#. js-lingui-id: jwOWhc
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
@@ -2515,7 +2515,7 @@ msgstr "Komentovalikko"
|
||||
#. js-lingui-id: 4XlFx/
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "Commands copied to clipboard"
|
||||
msgstr ""
|
||||
msgstr "Komennot kopioitu leikepöydälle"
|
||||
|
||||
#. js-lingui-id: A9u+7N
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
@@ -2745,7 +2745,7 @@ msgstr "Yhteystietojen automaattinen luonti"
|
||||
#. js-lingui-id: cByGGA
|
||||
#: src/modules/information-banner/components/billing/InformationBannerEndTrialPeriod.tsx
|
||||
msgid "Contact your admin to continue using Workflow or AI features."
|
||||
msgstr ""
|
||||
msgstr "Ota yhteyttä ylläpitäjääsi jatkaaksesi työnkulku- tai AI-ominaisuuksien käyttöä."
|
||||
|
||||
#. js-lingui-id: /5mghO
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
@@ -2852,7 +2852,7 @@ msgstr "Kopioi koodi"
|
||||
#. js-lingui-id: Es0ros
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "Copy commands"
|
||||
msgstr ""
|
||||
msgstr "Kopioi komennot"
|
||||
|
||||
#. js-lingui-id: 7eVkEH
|
||||
#: src/pages/onboarding/InviteTeam.tsx
|
||||
@@ -3021,7 +3021,7 @@ msgstr "Luo työtila"
|
||||
#. js-lingui-id: /WlFSf
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "Create an application"
|
||||
msgstr ""
|
||||
msgstr "Luo sovellus"
|
||||
|
||||
#. js-lingui-id: 8ZjIgO
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
|
||||
@@ -3172,12 +3172,12 @@ msgstr "Hyvitykset kaudelta"
|
||||
#. js-lingui-id: EABlI0
|
||||
#: src/modules/ai/components/AIChatCreditsExhaustedMessage.tsx
|
||||
msgid "Credits exhausted. Please contact your workspace admin to upgrade."
|
||||
msgstr ""
|
||||
msgstr "Krediitit on käytetty. Ota yhteyttä työtilasi ylläpitäjään päivitystä varten."
|
||||
|
||||
#. js-lingui-id: JIXvMy
|
||||
#: src/modules/ai/components/AIChatCreditsExhaustedMessage.tsx
|
||||
msgid "Credits exhausted. Upgrade your plan to get more credits."
|
||||
msgstr ""
|
||||
msgstr "Krediitit on käytetty. Päivitä tilauksesi saadaksesi lisää krediittejä."
|
||||
|
||||
#. js-lingui-id: n3kKrs
|
||||
#: src/modules/billing/components/SettingsBillingCreditsSection.tsx
|
||||
@@ -4450,12 +4450,12 @@ msgstr "Ota käyttöön mallikohtaiset ominaisuudet"
|
||||
#. js-lingui-id: k1i50B
|
||||
#: src/modules/information-banner/components/billing/InformationBannerEndTrialPeriod.tsx
|
||||
msgid "End Trial Period"
|
||||
msgstr ""
|
||||
msgstr "Päätä kokeilujakso"
|
||||
|
||||
#. js-lingui-id: QEUZoG
|
||||
#: src/modules/information-banner/components/billing/InformationBannerEndTrialPeriod.tsx
|
||||
msgid "End trial period to continue using Workflow or AI features."
|
||||
msgstr ""
|
||||
msgstr "Päätä kokeilujakso jatkaaksesi työnkulku- tai AI-ominaisuuksien käyttöä."
|
||||
|
||||
#. js-lingui-id: T3juzf
|
||||
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
|
||||
@@ -5560,7 +5560,7 @@ msgstr "Neljäs"
|
||||
#. js-lingui-id: aUj1gh
|
||||
#: src/modules/ai/components/AIChatCreditsExhaustedMessage.tsx
|
||||
msgid "Free trial credits exhausted. Subscribe now to continue using AI features."
|
||||
msgstr ""
|
||||
msgstr "Kokeilujakson krediitit on käytetty. Tilaa nyt jatkaaksesi AI-ominaisuuksien käyttöä."
|
||||
|
||||
#. js-lingui-id: nLC6tu
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
@@ -5581,7 +5581,7 @@ msgstr "Täysi pääsy"
|
||||
#. js-lingui-id: xANKBj
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
msgid "Functions"
|
||||
msgstr ""
|
||||
msgstr "Funktiot"
|
||||
|
||||
#. js-lingui-id: tkr79G
|
||||
#: src/utils/title-utils.ts
|
||||
@@ -6241,7 +6241,7 @@ msgstr "Asenna ja hallinnoi sovelluksia"
|
||||
#. js-lingui-id: N52taw
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "Installed applications"
|
||||
msgstr ""
|
||||
msgstr "Asennetut sovellukset"
|
||||
|
||||
#. js-lingui-id: AwUsnG
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
@@ -6366,12 +6366,12 @@ msgstr "Virheellinen numero"
|
||||
#. js-lingui-id: sBZMWb
|
||||
#: src/modules/page-layout/widgets/components/PageLayoutWidgetNoDataDisplay.tsx
|
||||
msgid "Invalid URL"
|
||||
msgstr ""
|
||||
msgstr "Virheellinen URL-osoite"
|
||||
|
||||
#. js-lingui-id: yRuMQS
|
||||
#: src/modules/page-layout/widgets/components/PageLayoutWidgetNoDataDisplay.tsx
|
||||
msgid "Invalid URL. Click edit to configure this widget."
|
||||
msgstr ""
|
||||
msgstr "Virheellinen URL-osoite. Määritä tämä pienoisohjelma valitsemalla Muokkaa."
|
||||
|
||||
#. js-lingui-id: VEKoJx
|
||||
#: src/modules/settings/two-factor-authentication/hooks/useTwoFactorVerificationForSettings.ts
|
||||
@@ -6438,7 +6438,7 @@ msgstr "On"
|
||||
#. js-lingui-id: jI6+Q3
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
msgid "Is after or equal"
|
||||
msgstr ""
|
||||
msgstr "On myöhemmin tai sama"
|
||||
|
||||
#. js-lingui-id: NgIlDJ
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
@@ -6533,7 +6533,7 @@ msgstr "On suhteellinen"
|
||||
#. js-lingui-id: 8vhfz7
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
msgid "Is today{timeZoneAbbreviationSuffix}"
|
||||
msgstr ""
|
||||
msgstr "On tänään{timeZoneAbbreviationSuffix}"
|
||||
|
||||
#. js-lingui-id: IhCN5p
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOOIDCForm.tsx
|
||||
@@ -6861,7 +6861,7 @@ msgstr ""
|
||||
#. js-lingui-id: 5Kn+XX
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "List installed applications. Use filter to search for a specific application"
|
||||
msgstr ""
|
||||
msgstr "Listaa asennetut sovellukset. Käytä suodatinta tietyn sovelluksen etsimiseen"
|
||||
|
||||
#. js-lingui-id: HhVDr2
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
@@ -7053,7 +7053,7 @@ msgstr "Hallitse työnkulkuja"
|
||||
#. js-lingui-id: cbzOP7
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
|
||||
msgid "Manage your app"
|
||||
msgstr ""
|
||||
msgstr "Hallitse sovellustasi"
|
||||
|
||||
#. js-lingui-id: FyFNsd
|
||||
#: src/pages/settings/accounts/SettingsAccounts.tsx
|
||||
@@ -8237,7 +8237,7 @@ msgstr "Objektien ja kenttien käyttöoikeusasetukset"
|
||||
#. js-lingui-id: YFI9hD
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
msgid "Objects managed by this app"
|
||||
msgstr ""
|
||||
msgstr "Tämän sovelluksen hallinnoimat objektit"
|
||||
|
||||
#. js-lingui-id: BwJKBw
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
|
||||
@@ -9124,7 +9124,7 @@ msgstr "Lue muutosloki"
|
||||
#. js-lingui-id: ibPuCP
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "Read documentation"
|
||||
msgstr ""
|
||||
msgstr "Lue dokumentaatio"
|
||||
|
||||
#. js-lingui-id: BT7pY+
|
||||
#: src/modules/settings/profile/components/SetOrChangePassword.tsx
|
||||
@@ -9748,7 +9748,7 @@ msgstr "Etsi agenttia..."
|
||||
#. js-lingui-id: fGTI3o
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "Search an application"
|
||||
msgstr ""
|
||||
msgstr "Etsi sovellusta"
|
||||
|
||||
#. js-lingui-id: kdagxk
|
||||
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTable.tsx
|
||||
@@ -10201,7 +10201,7 @@ msgstr "palvelinfunction"
|
||||
#. js-lingui-id: 0WOel+
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
msgid "Serverless functions powering this app"
|
||||
msgstr ""
|
||||
msgstr "Tämän sovelluksen taustalla toimivat palveluttomat funktiot"
|
||||
|
||||
#. js-lingui-id: LUc0oL
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
@@ -11204,8 +11204,7 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: Ox1hE7
|
||||
#: src/modules/settings/profile/components/DeleteAccount.tsx
|
||||
msgid ""
|
||||
"This action cannot be undone. This will permanently delete your\n"
|
||||
msgid "This action cannot be undone. This will permanently delete your\n"
|
||||
" entire account."
|
||||
msgstr "Tätä toimintoa ei voi peruuttaa. Tämä poistaa koko tilisi pysyvästi."
|
||||
|
||||
@@ -11876,7 +11875,7 @@ msgstr "Päivitys"
|
||||
#. js-lingui-id: 7aHRdp
|
||||
#: src/modules/ai/components/AIChatCreditsExhaustedMessage.tsx
|
||||
msgid "Upgrade Plan"
|
||||
msgstr ""
|
||||
msgstr "Päivitä tilaus"
|
||||
|
||||
#. js-lingui-id: ONWvwQ
|
||||
#: src/modules/ui/input/components/ImageInput.tsx
|
||||
@@ -12111,7 +12110,7 @@ msgstr "Näytä laskutustiedot"
|
||||
#. js-lingui-id: SXCuo2
|
||||
#: src/modules/ai/components/AIChatApiKeyNotConfiguredMessage.tsx
|
||||
msgid "View Docs"
|
||||
msgstr ""
|
||||
msgstr "Näytä dokumentaatio"
|
||||
|
||||
#. js-lingui-id: Mv1YVf
|
||||
#: src/modules/ui/feedback/snack-bar-manager/utils/build-error-action.util.ts
|
||||
@@ -12266,11 +12265,9 @@ msgstr "Lähetämme sinulle linkin toimialueen omistajuuden varmistamiseksi"
|
||||
|
||||
#. js-lingui-id: X56YGk
|
||||
#: src/pages/onboarding/PaymentSuccess.tsx
|
||||
msgid ""
|
||||
"We're waiting for a confirmation from our payment provider (Stripe).\n"
|
||||
msgid "We're waiting for a confirmation from our payment provider (Stripe).\n"
|
||||
"Please try again in a few seconds, sorry."
|
||||
msgstr ""
|
||||
"Odotamme vahvistusta maksupalveluntarjoajaltamme (Stripe).\n"
|
||||
msgstr "Odotamme vahvistusta maksupalveluntarjoajaltamme (Stripe).\n"
|
||||
"Yritä hetken kuluttua uudelleen."
|
||||
|
||||
#. js-lingui-id: LnnVIT
|
||||
@@ -12593,7 +12590,7 @@ msgstr "Et voi luoda tietueita tälle objektille"
|
||||
#. js-lingui-id: iibZbD
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "You can either create a private app or share it to others"
|
||||
msgstr ""
|
||||
msgstr "Voit joko luoda yksityisen sovelluksen tai jakaa sen muille"
|
||||
|
||||
#. js-lingui-id: OLE3Ky
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
|
||||
|
||||
@@ -67,7 +67,7 @@ msgstr ": Passé"
|
||||
#. js-lingui-id: DIUF3A
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
msgid ": Today{timeZoneAbbreviationSuffix}"
|
||||
msgstr ""
|
||||
msgstr ": Aujourd’hui{timeZoneAbbreviationSuffix}"
|
||||
|
||||
#. js-lingui-id: N/lIUf
|
||||
#: src/modules/billing/hooks/useBillingWording.ts
|
||||
@@ -1067,7 +1067,7 @@ msgstr "Après un temps défini"
|
||||
#. js-lingui-id: YPnvqG
|
||||
#: src/modules/object-record/record-calendar/month/hooks/useRecordCalendarQueryDateRangeFilter.tsx
|
||||
msgid "After or equal"
|
||||
msgstr ""
|
||||
msgstr "Après ou égal"
|
||||
|
||||
#. js-lingui-id: fcYF58
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
@@ -1119,7 +1119,7 @@ msgstr "Agents"
|
||||
#. js-lingui-id: wFe+5D
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
msgid "Agents powering this app"
|
||||
msgstr ""
|
||||
msgstr "Agents qui propulsent cette application"
|
||||
|
||||
#. js-lingui-id: 0k5XwN
|
||||
#: src/pages/settings/ai/components/SettingsAIAgentsTable.tsx
|
||||
@@ -1162,7 +1162,7 @@ msgstr ""
|
||||
#. js-lingui-id: Sfwld8
|
||||
#: src/modules/ai/components/AIChatApiKeyNotConfiguredMessage.tsx
|
||||
msgid "AI not configured. Set OPENAI_API_KEY, ANTHROPIC_API_KEY, or XAI_API_KEY in your environment."
|
||||
msgstr ""
|
||||
msgstr "IA non configurée. Définissez OPENAI_API_KEY, ANTHROPIC_API_KEY ou XAI_API_KEY dans votre environnement."
|
||||
|
||||
#. js-lingui-id: jwOWhc
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
@@ -2515,7 +2515,7 @@ msgstr "Menu de commandes"
|
||||
#. js-lingui-id: 4XlFx/
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "Commands copied to clipboard"
|
||||
msgstr ""
|
||||
msgstr "Commandes copiées dans le presse-papiers"
|
||||
|
||||
#. js-lingui-id: A9u+7N
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
@@ -2745,7 +2745,7 @@ msgstr "Création automatique de contacts"
|
||||
#. js-lingui-id: cByGGA
|
||||
#: src/modules/information-banner/components/billing/InformationBannerEndTrialPeriod.tsx
|
||||
msgid "Contact your admin to continue using Workflow or AI features."
|
||||
msgstr ""
|
||||
msgstr "Contactez votre administrateur pour continuer à utiliser les fonctionnalités de flux de travail ou d'IA."
|
||||
|
||||
#. js-lingui-id: /5mghO
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
@@ -2852,7 +2852,7 @@ msgstr "Copier le code"
|
||||
#. js-lingui-id: Es0ros
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "Copy commands"
|
||||
msgstr ""
|
||||
msgstr "Copier les commandes"
|
||||
|
||||
#. js-lingui-id: 7eVkEH
|
||||
#: src/pages/onboarding/InviteTeam.tsx
|
||||
@@ -3021,7 +3021,7 @@ msgstr "Créer un espace de travail"
|
||||
#. js-lingui-id: /WlFSf
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "Create an application"
|
||||
msgstr ""
|
||||
msgstr "Créer une application"
|
||||
|
||||
#. js-lingui-id: 8ZjIgO
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
|
||||
@@ -3172,12 +3172,12 @@ msgstr "Crédits par période"
|
||||
#. js-lingui-id: EABlI0
|
||||
#: src/modules/ai/components/AIChatCreditsExhaustedMessage.tsx
|
||||
msgid "Credits exhausted. Please contact your workspace admin to upgrade."
|
||||
msgstr ""
|
||||
msgstr "Crédits épuisés. Veuillez contacter l'administrateur de votre espace de travail pour effectuer une mise à niveau."
|
||||
|
||||
#. js-lingui-id: JIXvMy
|
||||
#: src/modules/ai/components/AIChatCreditsExhaustedMessage.tsx
|
||||
msgid "Credits exhausted. Upgrade your plan to get more credits."
|
||||
msgstr ""
|
||||
msgstr "Crédits épuisés. Mettez à niveau votre abonnement pour obtenir plus de crédits."
|
||||
|
||||
#. js-lingui-id: n3kKrs
|
||||
#: src/modules/billing/components/SettingsBillingCreditsSection.tsx
|
||||
@@ -4450,12 +4450,12 @@ msgstr "Activer les fonctionnalités spécifiques au modèle"
|
||||
#. js-lingui-id: k1i50B
|
||||
#: src/modules/information-banner/components/billing/InformationBannerEndTrialPeriod.tsx
|
||||
msgid "End Trial Period"
|
||||
msgstr ""
|
||||
msgstr "Mettre fin à la période d'essai"
|
||||
|
||||
#. js-lingui-id: QEUZoG
|
||||
#: src/modules/information-banner/components/billing/InformationBannerEndTrialPeriod.tsx
|
||||
msgid "End trial period to continue using Workflow or AI features."
|
||||
msgstr ""
|
||||
msgstr "Mettez fin à la période d'essai pour continuer à utiliser les fonctionnalités de flux de travail ou d'IA."
|
||||
|
||||
#. js-lingui-id: T3juzf
|
||||
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
|
||||
@@ -5560,7 +5560,7 @@ msgstr "Quatrième"
|
||||
#. js-lingui-id: aUj1gh
|
||||
#: src/modules/ai/components/AIChatCreditsExhaustedMessage.tsx
|
||||
msgid "Free trial credits exhausted. Subscribe now to continue using AI features."
|
||||
msgstr ""
|
||||
msgstr "Crédits d'essai gratuits épuisés. Abonnez-vous maintenant pour continuer à utiliser les fonctionnalités d'IA."
|
||||
|
||||
#. js-lingui-id: nLC6tu
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
@@ -5581,7 +5581,7 @@ msgstr "Accès complet"
|
||||
#. js-lingui-id: xANKBj
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
msgid "Functions"
|
||||
msgstr ""
|
||||
msgstr "Fonctions"
|
||||
|
||||
#. js-lingui-id: tkr79G
|
||||
#: src/utils/title-utils.ts
|
||||
@@ -6241,7 +6241,7 @@ msgstr "Installer et gérer les applications"
|
||||
#. js-lingui-id: N52taw
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "Installed applications"
|
||||
msgstr ""
|
||||
msgstr "Applications installées"
|
||||
|
||||
#. js-lingui-id: AwUsnG
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
@@ -6366,12 +6366,12 @@ msgstr "Nombre invalide"
|
||||
#. js-lingui-id: sBZMWb
|
||||
#: src/modules/page-layout/widgets/components/PageLayoutWidgetNoDataDisplay.tsx
|
||||
msgid "Invalid URL"
|
||||
msgstr ""
|
||||
msgstr "URL invalide"
|
||||
|
||||
#. js-lingui-id: yRuMQS
|
||||
#: src/modules/page-layout/widgets/components/PageLayoutWidgetNoDataDisplay.tsx
|
||||
msgid "Invalid URL. Click edit to configure this widget."
|
||||
msgstr ""
|
||||
msgstr "URL invalide. Cliquez sur modifier pour configurer ce widget."
|
||||
|
||||
#. js-lingui-id: VEKoJx
|
||||
#: src/modules/settings/two-factor-authentication/hooks/useTwoFactorVerificationForSettings.ts
|
||||
@@ -6438,7 +6438,7 @@ msgstr "Est"
|
||||
#. js-lingui-id: jI6+Q3
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
msgid "Is after or equal"
|
||||
msgstr ""
|
||||
msgstr "Est après ou égal à"
|
||||
|
||||
#. js-lingui-id: NgIlDJ
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
@@ -6533,7 +6533,7 @@ msgstr "Est relatif"
|
||||
#. js-lingui-id: 8vhfz7
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
msgid "Is today{timeZoneAbbreviationSuffix}"
|
||||
msgstr ""
|
||||
msgstr "Est aujourd’hui{timeZoneAbbreviationSuffix}"
|
||||
|
||||
#. js-lingui-id: IhCN5p
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOOIDCForm.tsx
|
||||
@@ -6861,7 +6861,7 @@ msgstr ""
|
||||
#. js-lingui-id: 5Kn+XX
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "List installed applications. Use filter to search for a specific application"
|
||||
msgstr ""
|
||||
msgstr "Répertoriez les applications installées. Utilisez le filtre pour rechercher une application spécifique."
|
||||
|
||||
#. js-lingui-id: HhVDr2
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
@@ -7053,7 +7053,7 @@ msgstr "Gérer les workflows"
|
||||
#. js-lingui-id: cbzOP7
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
|
||||
msgid "Manage your app"
|
||||
msgstr ""
|
||||
msgstr "Gérez votre application"
|
||||
|
||||
#. js-lingui-id: FyFNsd
|
||||
#: src/pages/settings/accounts/SettingsAccounts.tsx
|
||||
@@ -8237,7 +8237,7 @@ msgstr "Paramètres d'autorisations des objets et des champs"
|
||||
#. js-lingui-id: YFI9hD
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
msgid "Objects managed by this app"
|
||||
msgstr ""
|
||||
msgstr "Objets gérés par cette application"
|
||||
|
||||
#. js-lingui-id: BwJKBw
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
|
||||
@@ -9124,7 +9124,7 @@ msgstr "Lire le journal des modifications"
|
||||
#. js-lingui-id: ibPuCP
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "Read documentation"
|
||||
msgstr ""
|
||||
msgstr "Lire la documentation"
|
||||
|
||||
#. js-lingui-id: BT7pY+
|
||||
#: src/modules/settings/profile/components/SetOrChangePassword.tsx
|
||||
@@ -9748,7 +9748,7 @@ msgstr "Rechercher un agent..."
|
||||
#. js-lingui-id: fGTI3o
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "Search an application"
|
||||
msgstr ""
|
||||
msgstr "Rechercher une application"
|
||||
|
||||
#. js-lingui-id: kdagxk
|
||||
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTable.tsx
|
||||
@@ -10201,7 +10201,7 @@ msgstr "fonction sans serveur"
|
||||
#. js-lingui-id: 0WOel+
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
msgid "Serverless functions powering this app"
|
||||
msgstr ""
|
||||
msgstr "Fonctions sans serveur alimentant cette application"
|
||||
|
||||
#. js-lingui-id: LUc0oL
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
@@ -11204,11 +11204,9 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: Ox1hE7
|
||||
#: src/modules/settings/profile/components/DeleteAccount.tsx
|
||||
msgid ""
|
||||
"This action cannot be undone. This will permanently delete your\n"
|
||||
msgid "This action cannot be undone. This will permanently delete your\n"
|
||||
" entire account."
|
||||
msgstr ""
|
||||
"Cette action est irréversible. Cela supprimera définitivement votre\n"
|
||||
msgstr "Cette action est irréversible. Cela supprimera définitivement votre\n"
|
||||
" compte entier."
|
||||
|
||||
#. js-lingui-id: bNY3MH
|
||||
@@ -11878,7 +11876,7 @@ msgstr "Mettre à niveau"
|
||||
#. js-lingui-id: 7aHRdp
|
||||
#: src/modules/ai/components/AIChatCreditsExhaustedMessage.tsx
|
||||
msgid "Upgrade Plan"
|
||||
msgstr ""
|
||||
msgstr "Mettre à niveau l'abonnement"
|
||||
|
||||
#. js-lingui-id: ONWvwQ
|
||||
#: src/modules/ui/input/components/ImageInput.tsx
|
||||
@@ -12113,7 +12111,7 @@ msgstr "Voir les détails de facturation"
|
||||
#. js-lingui-id: SXCuo2
|
||||
#: src/modules/ai/components/AIChatApiKeyNotConfiguredMessage.tsx
|
||||
msgid "View Docs"
|
||||
msgstr ""
|
||||
msgstr "Voir la documentation"
|
||||
|
||||
#. js-lingui-id: Mv1YVf
|
||||
#: src/modules/ui/feedback/snack-bar-manager/utils/build-error-action.util.ts
|
||||
@@ -12268,11 +12266,9 @@ msgstr "Nous vous enverrons un lien pour vérifier la propriété du domaine"
|
||||
|
||||
#. js-lingui-id: X56YGk
|
||||
#: src/pages/onboarding/PaymentSuccess.tsx
|
||||
msgid ""
|
||||
"We're waiting for a confirmation from our payment provider (Stripe).\n"
|
||||
msgid "We're waiting for a confirmation from our payment provider (Stripe).\n"
|
||||
"Please try again in a few seconds, sorry."
|
||||
msgstr ""
|
||||
"Nous attendons une confirmation de notre prestataire de paiement (Stripe).\n"
|
||||
msgstr "Nous attendons une confirmation de notre prestataire de paiement (Stripe).\n"
|
||||
"Veuillez réessayer dans quelques secondes, désolé."
|
||||
|
||||
#. js-lingui-id: LnnVIT
|
||||
@@ -12595,7 +12591,7 @@ msgstr "Vous n'êtes pas autorisé à créer des enregistrements pour cet objet"
|
||||
#. js-lingui-id: iibZbD
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "You can either create a private app or share it to others"
|
||||
msgstr ""
|
||||
msgstr "Vous pouvez soit créer une application privée, soit la partager avec d'autres"
|
||||
|
||||
#. js-lingui-id: OLE3Ky
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
|
||||
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -67,7 +67,7 @@ msgstr ": עבר"
|
||||
#. js-lingui-id: DIUF3A
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
msgid ": Today{timeZoneAbbreviationSuffix}"
|
||||
msgstr ""
|
||||
msgstr ": היום{timeZoneAbbreviationSuffix}"
|
||||
|
||||
#. js-lingui-id: N/lIUf
|
||||
#: src/modules/billing/hooks/useBillingWording.ts
|
||||
@@ -1067,7 +1067,7 @@ msgstr "לאחר פרק זמן קבוע"
|
||||
#. js-lingui-id: YPnvqG
|
||||
#: src/modules/object-record/record-calendar/month/hooks/useRecordCalendarQueryDateRangeFilter.tsx
|
||||
msgid "After or equal"
|
||||
msgstr ""
|
||||
msgstr "לאחר או שווה"
|
||||
|
||||
#. js-lingui-id: fcYF58
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
@@ -1119,7 +1119,7 @@ msgstr "סוכנים"
|
||||
#. js-lingui-id: wFe+5D
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
msgid "Agents powering this app"
|
||||
msgstr ""
|
||||
msgstr "סוכנים המפעילים את היישום הזה"
|
||||
|
||||
#. js-lingui-id: 0k5XwN
|
||||
#: src/pages/settings/ai/components/SettingsAIAgentsTable.tsx
|
||||
@@ -1162,7 +1162,7 @@ msgstr ""
|
||||
#. js-lingui-id: Sfwld8
|
||||
#: src/modules/ai/components/AIChatApiKeyNotConfiguredMessage.tsx
|
||||
msgid "AI not configured. Set OPENAI_API_KEY, ANTHROPIC_API_KEY, or XAI_API_KEY in your environment."
|
||||
msgstr ""
|
||||
msgstr "ה-AI אינו מוגדר. הגדר את OPENAI_API_KEY, ANTHROPIC_API_KEY או XAI_API_KEY בסביבה שלך."
|
||||
|
||||
#. js-lingui-id: jwOWhc
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
@@ -2515,7 +2515,7 @@ msgstr "תפריט הפקודות"
|
||||
#. js-lingui-id: 4XlFx/
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "Commands copied to clipboard"
|
||||
msgstr ""
|
||||
msgstr "הפקודות הועתקו ללוח הגזירים"
|
||||
|
||||
#. js-lingui-id: A9u+7N
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
@@ -2745,7 +2745,7 @@ msgstr "יצירת אנשי קשר אוטומטית"
|
||||
#. js-lingui-id: cByGGA
|
||||
#: src/modules/information-banner/components/billing/InformationBannerEndTrialPeriod.tsx
|
||||
msgid "Contact your admin to continue using Workflow or AI features."
|
||||
msgstr ""
|
||||
msgstr "צור קשר עם מנהל המערכת שלך כדי להמשיך להשתמש בתכונות של תהליכי עבודה או של AI."
|
||||
|
||||
#. js-lingui-id: /5mghO
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
@@ -2852,7 +2852,7 @@ msgstr "העתק קוד"
|
||||
#. js-lingui-id: Es0ros
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "Copy commands"
|
||||
msgstr ""
|
||||
msgstr "העתק פקודות"
|
||||
|
||||
#. js-lingui-id: 7eVkEH
|
||||
#: src/pages/onboarding/InviteTeam.tsx
|
||||
@@ -3021,7 +3021,7 @@ msgstr "צור מרחב עבודה"
|
||||
#. js-lingui-id: /WlFSf
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "Create an application"
|
||||
msgstr ""
|
||||
msgstr "צור יישום"
|
||||
|
||||
#. js-lingui-id: 8ZjIgO
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
|
||||
@@ -3172,12 +3172,12 @@ msgstr "קרדיטים לפי תקופה"
|
||||
#. js-lingui-id: EABlI0
|
||||
#: src/modules/ai/components/AIChatCreditsExhaustedMessage.tsx
|
||||
msgid "Credits exhausted. Please contact your workspace admin to upgrade."
|
||||
msgstr ""
|
||||
msgstr "הקרדיטים אזלו. אנא פנה למנהל מרחב העבודה שלך כדי לשדרג."
|
||||
|
||||
#. js-lingui-id: JIXvMy
|
||||
#: src/modules/ai/components/AIChatCreditsExhaustedMessage.tsx
|
||||
msgid "Credits exhausted. Upgrade your plan to get more credits."
|
||||
msgstr ""
|
||||
msgstr "הקרדיטים אזלו. שדרג את התוכנית שלך כדי לקבל עוד קרדיטים."
|
||||
|
||||
#. js-lingui-id: n3kKrs
|
||||
#: src/modules/billing/components/SettingsBillingCreditsSection.tsx
|
||||
@@ -4450,12 +4450,12 @@ msgstr "הפעל תכונות ספציפיות לדגם"
|
||||
#. js-lingui-id: k1i50B
|
||||
#: src/modules/information-banner/components/billing/InformationBannerEndTrialPeriod.tsx
|
||||
msgid "End Trial Period"
|
||||
msgstr ""
|
||||
msgstr "סיים את תקופת הניסיון"
|
||||
|
||||
#. js-lingui-id: QEUZoG
|
||||
#: src/modules/information-banner/components/billing/InformationBannerEndTrialPeriod.tsx
|
||||
msgid "End trial period to continue using Workflow or AI features."
|
||||
msgstr ""
|
||||
msgstr "סיים את תקופת הניסיון כדי להמשיך להשתמש בתכונות של תהליכי עבודה או של AI."
|
||||
|
||||
#. js-lingui-id: T3juzf
|
||||
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
|
||||
@@ -5560,7 +5560,7 @@ msgstr "רביעי"
|
||||
#. js-lingui-id: aUj1gh
|
||||
#: src/modules/ai/components/AIChatCreditsExhaustedMessage.tsx
|
||||
msgid "Free trial credits exhausted. Subscribe now to continue using AI features."
|
||||
msgstr ""
|
||||
msgstr "קרדיטי הניסיון בחינם אזלו. הירשם כעת כדי להמשיך להשתמש בתכונות AI."
|
||||
|
||||
#. js-lingui-id: nLC6tu
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
@@ -5581,7 +5581,7 @@ msgstr "גישה מלאה"
|
||||
#. js-lingui-id: xANKBj
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
msgid "Functions"
|
||||
msgstr ""
|
||||
msgstr "פונקציות"
|
||||
|
||||
#. js-lingui-id: tkr79G
|
||||
#: src/utils/title-utils.ts
|
||||
@@ -6241,7 +6241,7 @@ msgstr "התקן וניהול יישומים"
|
||||
#. js-lingui-id: N52taw
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "Installed applications"
|
||||
msgstr ""
|
||||
msgstr "יישומים מותקנים"
|
||||
|
||||
#. js-lingui-id: AwUsnG
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
@@ -6366,12 +6366,12 @@ msgstr "מספר לא תקין"
|
||||
#. js-lingui-id: sBZMWb
|
||||
#: src/modules/page-layout/widgets/components/PageLayoutWidgetNoDataDisplay.tsx
|
||||
msgid "Invalid URL"
|
||||
msgstr ""
|
||||
msgstr "כתובת URL לא תקינה"
|
||||
|
||||
#. js-lingui-id: yRuMQS
|
||||
#: src/modules/page-layout/widgets/components/PageLayoutWidgetNoDataDisplay.tsx
|
||||
msgid "Invalid URL. Click edit to configure this widget."
|
||||
msgstr ""
|
||||
msgstr "כתובת URL לא תקינה. לחץ ערוך כדי להגדיר ווידג׳ט זה."
|
||||
|
||||
#. js-lingui-id: VEKoJx
|
||||
#: src/modules/settings/two-factor-authentication/hooks/useTwoFactorVerificationForSettings.ts
|
||||
@@ -6438,7 +6438,7 @@ msgstr "הוא"
|
||||
#. js-lingui-id: jI6+Q3
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
msgid "Is after or equal"
|
||||
msgstr ""
|
||||
msgstr "הוא לאחר או שווה"
|
||||
|
||||
#. js-lingui-id: NgIlDJ
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
@@ -6533,7 +6533,7 @@ msgstr "יחסי"
|
||||
#. js-lingui-id: 8vhfz7
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
msgid "Is today{timeZoneAbbreviationSuffix}"
|
||||
msgstr ""
|
||||
msgstr "הוא היום{timeZoneAbbreviationSuffix}"
|
||||
|
||||
#. js-lingui-id: IhCN5p
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOOIDCForm.tsx
|
||||
@@ -6861,7 +6861,7 @@ msgstr ""
|
||||
#. js-lingui-id: 5Kn+XX
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "List installed applications. Use filter to search for a specific application"
|
||||
msgstr ""
|
||||
msgstr "הצג את היישומים המותקנים. השתמש במסנן כדי לחפש יישום מסוים."
|
||||
|
||||
#. js-lingui-id: HhVDr2
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
@@ -7053,7 +7053,7 @@ msgstr "נהל תהליכי עבודה"
|
||||
#. js-lingui-id: cbzOP7
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
|
||||
msgid "Manage your app"
|
||||
msgstr ""
|
||||
msgstr "נהל את היישום שלך"
|
||||
|
||||
#. js-lingui-id: FyFNsd
|
||||
#: src/pages/settings/accounts/SettingsAccounts.tsx
|
||||
@@ -8237,7 +8237,7 @@ msgstr "הגדרות הרשאות אובייקטים ושדות"
|
||||
#. js-lingui-id: YFI9hD
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
msgid "Objects managed by this app"
|
||||
msgstr ""
|
||||
msgstr "אובייקטים המנוהלים על ידי היישום הזה"
|
||||
|
||||
#. js-lingui-id: BwJKBw
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
|
||||
@@ -9124,7 +9124,7 @@ msgstr "קראו את יומן השינויים"
|
||||
#. js-lingui-id: ibPuCP
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "Read documentation"
|
||||
msgstr ""
|
||||
msgstr "עיין/י בתיעוד"
|
||||
|
||||
#. js-lingui-id: BT7pY+
|
||||
#: src/modules/settings/profile/components/SetOrChangePassword.tsx
|
||||
@@ -9748,7 +9748,7 @@ msgstr "חפש סוכן..."
|
||||
#. js-lingui-id: fGTI3o
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "Search an application"
|
||||
msgstr ""
|
||||
msgstr "חפש יישום"
|
||||
|
||||
#. js-lingui-id: kdagxk
|
||||
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTable.tsx
|
||||
@@ -10201,7 +10201,7 @@ msgstr "פונקציה חסרת שרת"
|
||||
#. js-lingui-id: 0WOel+
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
msgid "Serverless functions powering this app"
|
||||
msgstr ""
|
||||
msgstr "פונקציות ללא שרת שמפעילות את היישום הזה"
|
||||
|
||||
#. js-lingui-id: LUc0oL
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
@@ -11204,8 +11204,7 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: Ox1hE7
|
||||
#: src/modules/settings/profile/components/DeleteAccount.tsx
|
||||
msgid ""
|
||||
"This action cannot be undone. This will permanently delete your\n"
|
||||
msgid "This action cannot be undone. This will permanently delete your\n"
|
||||
" entire account."
|
||||
msgstr "לא ניתן לבטל פעולה זו. זה ימחק לצמיתות את כל החשבון שלך."
|
||||
|
||||
@@ -11876,7 +11875,7 @@ msgstr "שדרוג"
|
||||
#. js-lingui-id: 7aHRdp
|
||||
#: src/modules/ai/components/AIChatCreditsExhaustedMessage.tsx
|
||||
msgid "Upgrade Plan"
|
||||
msgstr ""
|
||||
msgstr "שדרג את התוכנית"
|
||||
|
||||
#. js-lingui-id: ONWvwQ
|
||||
#: src/modules/ui/input/components/ImageInput.tsx
|
||||
@@ -12111,7 +12110,7 @@ msgstr "צפייה בפרטי החשבונית"
|
||||
#. js-lingui-id: SXCuo2
|
||||
#: src/modules/ai/components/AIChatApiKeyNotConfiguredMessage.tsx
|
||||
msgid "View Docs"
|
||||
msgstr ""
|
||||
msgstr "צפה בתיעוד"
|
||||
|
||||
#. js-lingui-id: Mv1YVf
|
||||
#: src/modules/ui/feedback/snack-bar-manager/utils/build-error-action.util.ts
|
||||
@@ -12266,11 +12265,9 @@ msgstr "נשלח לך קישור לאימות בעלות על הדומיין"
|
||||
|
||||
#. js-lingui-id: X56YGk
|
||||
#: src/pages/onboarding/PaymentSuccess.tsx
|
||||
msgid ""
|
||||
"We're waiting for a confirmation from our payment provider (Stripe).\n"
|
||||
msgid "We're waiting for a confirmation from our payment provider (Stripe).\n"
|
||||
"Please try again in a few seconds, sorry."
|
||||
msgstr ""
|
||||
"אנחנו ממתינים לאישור מספק התשלומים שלנו (Stripe).\n"
|
||||
msgstr "אנחנו ממתינים לאישור מספק התשלומים שלנו (Stripe).\n"
|
||||
"אנא נסה שוב בעוד מספר שניות, סליחה."
|
||||
|
||||
#. js-lingui-id: LnnVIT
|
||||
@@ -12593,7 +12590,7 @@ msgstr "אין לך הרשאה ליצור רשומות באובייקט זה"
|
||||
#. js-lingui-id: iibZbD
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "You can either create a private app or share it to others"
|
||||
msgstr ""
|
||||
msgstr "באפשרותך ליצור יישום פרטי או לשתף אותו עם אחרים"
|
||||
|
||||
#. js-lingui-id: OLE3Ky
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
|
||||
|
||||
@@ -67,7 +67,7 @@ msgstr ": Múlt"
|
||||
#. js-lingui-id: DIUF3A
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
msgid ": Today{timeZoneAbbreviationSuffix}"
|
||||
msgstr ""
|
||||
msgstr ": Ma{timeZoneAbbreviationSuffix}"
|
||||
|
||||
#. js-lingui-id: N/lIUf
|
||||
#: src/modules/billing/hooks/useBillingWording.ts
|
||||
@@ -129,13 +129,13 @@ msgstr "{0, plural, one {{1} állást nem sikerült újraindítani} other {{2}
|
||||
#. placeholder {0}: Math.abs(days)
|
||||
#: src/utils/date-utils.ts
|
||||
msgid "{0, plural, one {{days} day} other {{days} days}}"
|
||||
msgstr ""
|
||||
msgstr "{0, plural, one {{days} nap} other {{days} nap}}"
|
||||
|
||||
#. js-lingui-id: dXYycw
|
||||
#. placeholder {0}: Math.abs(years)
|
||||
#: src/utils/date-utils.ts
|
||||
msgid "{0, plural, one {{years} year} other {{years} years}}"
|
||||
msgstr ""
|
||||
msgstr "{0, plural, one {{years} év} other {{years} év}}"
|
||||
|
||||
#. js-lingui-id: Qvm3VE
|
||||
#. placeholder {0}: selectedOptions.length
|
||||
@@ -1067,7 +1067,7 @@ msgstr "Egy meghatározott idő elteltével"
|
||||
#. js-lingui-id: YPnvqG
|
||||
#: src/modules/object-record/record-calendar/month/hooks/useRecordCalendarQueryDateRangeFilter.tsx
|
||||
msgid "After or equal"
|
||||
msgstr ""
|
||||
msgstr "Később vagy egyenlő"
|
||||
|
||||
#. js-lingui-id: fcYF58
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
@@ -1119,7 +1119,7 @@ msgstr "Ügynökök"
|
||||
#. js-lingui-id: wFe+5D
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
msgid "Agents powering this app"
|
||||
msgstr ""
|
||||
msgstr "Az alkalmazást működtető ügynökök"
|
||||
|
||||
#. js-lingui-id: 0k5XwN
|
||||
#: src/pages/settings/ai/components/SettingsAIAgentsTable.tsx
|
||||
@@ -1162,7 +1162,7 @@ msgstr ""
|
||||
#. js-lingui-id: Sfwld8
|
||||
#: src/modules/ai/components/AIChatApiKeyNotConfiguredMessage.tsx
|
||||
msgid "AI not configured. Set OPENAI_API_KEY, ANTHROPIC_API_KEY, or XAI_API_KEY in your environment."
|
||||
msgstr ""
|
||||
msgstr "Az AI nincs beállítva. Állítsa be a környezetében az OPENAI_API_KEY, ANTHROPIC_API_KEY vagy XAI_API_KEY értékét."
|
||||
|
||||
#. js-lingui-id: jwOWhc
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
@@ -2515,7 +2515,7 @@ msgstr "Parancsmenü"
|
||||
#. js-lingui-id: 4XlFx/
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "Commands copied to clipboard"
|
||||
msgstr ""
|
||||
msgstr "A parancsok vágólapra másolva"
|
||||
|
||||
#. js-lingui-id: A9u+7N
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
@@ -2745,7 +2745,7 @@ msgstr "Kapcsolattartó automatikus létrehozás"
|
||||
#. js-lingui-id: cByGGA
|
||||
#: src/modules/information-banner/components/billing/InformationBannerEndTrialPeriod.tsx
|
||||
msgid "Contact your admin to continue using Workflow or AI features."
|
||||
msgstr ""
|
||||
msgstr "Lépjen kapcsolatba az adminisztrátorával a munkafolyamatok vagy az AI funkciók használatának folytatásához."
|
||||
|
||||
#. js-lingui-id: /5mghO
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
@@ -2852,7 +2852,7 @@ msgstr "Kód másolása"
|
||||
#. js-lingui-id: Es0ros
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "Copy commands"
|
||||
msgstr ""
|
||||
msgstr "Parancsok másolása"
|
||||
|
||||
#. js-lingui-id: 7eVkEH
|
||||
#: src/pages/onboarding/InviteTeam.tsx
|
||||
@@ -3021,7 +3021,7 @@ msgstr "Hozzon létre munkaterületet"
|
||||
#. js-lingui-id: /WlFSf
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "Create an application"
|
||||
msgstr ""
|
||||
msgstr "Alkalmazás létrehozása"
|
||||
|
||||
#. js-lingui-id: 8ZjIgO
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
|
||||
@@ -3172,12 +3172,12 @@ msgstr "Kreditek időszakonként"
|
||||
#. js-lingui-id: EABlI0
|
||||
#: src/modules/ai/components/AIChatCreditsExhaustedMessage.tsx
|
||||
msgid "Credits exhausted. Please contact your workspace admin to upgrade."
|
||||
msgstr ""
|
||||
msgstr "Elfogytak a kreditek. Kérjük, lépjen kapcsolatba a munkaterület adminisztrátorával a frissítéshez."
|
||||
|
||||
#. js-lingui-id: JIXvMy
|
||||
#: src/modules/ai/components/AIChatCreditsExhaustedMessage.tsx
|
||||
msgid "Credits exhausted. Upgrade your plan to get more credits."
|
||||
msgstr ""
|
||||
msgstr "Elfogytak a kreditek. Frissítse a csomagját, hogy több kreditet kapjon."
|
||||
|
||||
#. js-lingui-id: n3kKrs
|
||||
#: src/modules/billing/components/SettingsBillingCreditsSection.tsx
|
||||
@@ -4450,12 +4450,12 @@ msgstr "Model-specifikus funkciók engedélyezése"
|
||||
#. js-lingui-id: k1i50B
|
||||
#: src/modules/information-banner/components/billing/InformationBannerEndTrialPeriod.tsx
|
||||
msgid "End Trial Period"
|
||||
msgstr ""
|
||||
msgstr "Próbaidőszak befejezése"
|
||||
|
||||
#. js-lingui-id: QEUZoG
|
||||
#: src/modules/information-banner/components/billing/InformationBannerEndTrialPeriod.tsx
|
||||
msgid "End trial period to continue using Workflow or AI features."
|
||||
msgstr ""
|
||||
msgstr "Fejezze be a próbaidőszakot a munkafolyamatok vagy az AI funkciók használatának folytatásához."
|
||||
|
||||
#. js-lingui-id: T3juzf
|
||||
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
|
||||
@@ -5560,7 +5560,7 @@ msgstr "Negyedik"
|
||||
#. js-lingui-id: aUj1gh
|
||||
#: src/modules/ai/components/AIChatCreditsExhaustedMessage.tsx
|
||||
msgid "Free trial credits exhausted. Subscribe now to continue using AI features."
|
||||
msgstr ""
|
||||
msgstr "Az ingyenes próba kreditei elfogytak. Fizessen elő most, hogy tovább használhassa az AI funkciókat."
|
||||
|
||||
#. js-lingui-id: nLC6tu
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
@@ -5581,7 +5581,7 @@ msgstr "Teljes hozzáférés"
|
||||
#. js-lingui-id: xANKBj
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
msgid "Functions"
|
||||
msgstr ""
|
||||
msgstr "Funkciók"
|
||||
|
||||
#. js-lingui-id: tkr79G
|
||||
#: src/utils/title-utils.ts
|
||||
@@ -6241,7 +6241,7 @@ msgstr "Alkalmazások telepítése és kezelése"
|
||||
#. js-lingui-id: N52taw
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "Installed applications"
|
||||
msgstr ""
|
||||
msgstr "Telepített alkalmazások"
|
||||
|
||||
#. js-lingui-id: AwUsnG
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
@@ -6366,12 +6366,12 @@ msgstr "Érvénytelen szám"
|
||||
#. js-lingui-id: sBZMWb
|
||||
#: src/modules/page-layout/widgets/components/PageLayoutWidgetNoDataDisplay.tsx
|
||||
msgid "Invalid URL"
|
||||
msgstr ""
|
||||
msgstr "Érvénytelen URL"
|
||||
|
||||
#. js-lingui-id: yRuMQS
|
||||
#: src/modules/page-layout/widgets/components/PageLayoutWidgetNoDataDisplay.tsx
|
||||
msgid "Invalid URL. Click edit to configure this widget."
|
||||
msgstr ""
|
||||
msgstr "Érvénytelen URL. Kattintson a szerkesztésre a widget konfigurálásához."
|
||||
|
||||
#. js-lingui-id: VEKoJx
|
||||
#: src/modules/settings/two-factor-authentication/hooks/useTwoFactorVerificationForSettings.ts
|
||||
@@ -6438,7 +6438,7 @@ msgstr "Van"
|
||||
#. js-lingui-id: jI6+Q3
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
msgid "Is after or equal"
|
||||
msgstr ""
|
||||
msgstr "Később vagy egyenlő"
|
||||
|
||||
#. js-lingui-id: NgIlDJ
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
@@ -6533,7 +6533,7 @@ msgstr "Relatív"
|
||||
#. js-lingui-id: 8vhfz7
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
msgid "Is today{timeZoneAbbreviationSuffix}"
|
||||
msgstr ""
|
||||
msgstr "Ma{timeZoneAbbreviationSuffix}"
|
||||
|
||||
#. js-lingui-id: IhCN5p
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOOIDCForm.tsx
|
||||
@@ -6861,7 +6861,7 @@ msgstr ""
|
||||
#. js-lingui-id: 5Kn+XX
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "List installed applications. Use filter to search for a specific application"
|
||||
msgstr ""
|
||||
msgstr "A telepített alkalmazások listája. Használja a szűrőt egy adott alkalmazás kereséséhez"
|
||||
|
||||
#. js-lingui-id: HhVDr2
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
@@ -7053,7 +7053,7 @@ msgstr "Munkafolyamatok kezelése"
|
||||
#. js-lingui-id: cbzOP7
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
|
||||
msgid "Manage your app"
|
||||
msgstr ""
|
||||
msgstr "Alkalmazás kezelése"
|
||||
|
||||
#. js-lingui-id: FyFNsd
|
||||
#: src/pages/settings/accounts/SettingsAccounts.tsx
|
||||
@@ -8237,7 +8237,7 @@ msgstr "Objektumok és mezők jogosultságainak beállításai"
|
||||
#. js-lingui-id: YFI9hD
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
msgid "Objects managed by this app"
|
||||
msgstr ""
|
||||
msgstr "Az alkalmazás által kezelt objektumok"
|
||||
|
||||
#. js-lingui-id: BwJKBw
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
|
||||
@@ -9124,7 +9124,7 @@ msgstr "Változási napló megtekintése"
|
||||
#. js-lingui-id: ibPuCP
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "Read documentation"
|
||||
msgstr ""
|
||||
msgstr "Dokumentáció olvasása"
|
||||
|
||||
#. js-lingui-id: BT7pY+
|
||||
#: src/modules/settings/profile/components/SetOrChangePassword.tsx
|
||||
@@ -9748,7 +9748,7 @@ msgstr "Ügynök keresése..."
|
||||
#. js-lingui-id: fGTI3o
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "Search an application"
|
||||
msgstr ""
|
||||
msgstr "Alkalmazás keresése"
|
||||
|
||||
#. js-lingui-id: kdagxk
|
||||
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTable.tsx
|
||||
@@ -10201,7 +10201,7 @@ msgstr "serverless funkció"
|
||||
#. js-lingui-id: 0WOel+
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
msgid "Serverless functions powering this app"
|
||||
msgstr ""
|
||||
msgstr "Az alkalmazást működtető Serverless funkciók"
|
||||
|
||||
#. js-lingui-id: LUc0oL
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
@@ -11204,8 +11204,7 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: Ox1hE7
|
||||
#: src/modules/settings/profile/components/DeleteAccount.tsx
|
||||
msgid ""
|
||||
"This action cannot be undone. This will permanently delete your\n"
|
||||
msgid "This action cannot be undone. This will permanently delete your\n"
|
||||
" entire account."
|
||||
msgstr "Ez a művelet nem visszavonható. Ez véglegesen törli az egész fiókját."
|
||||
|
||||
@@ -11876,7 +11875,7 @@ msgstr "Bővítés"
|
||||
#. js-lingui-id: 7aHRdp
|
||||
#: src/modules/ai/components/AIChatCreditsExhaustedMessage.tsx
|
||||
msgid "Upgrade Plan"
|
||||
msgstr ""
|
||||
msgstr "Csomag frissítése"
|
||||
|
||||
#. js-lingui-id: ONWvwQ
|
||||
#: src/modules/ui/input/components/ImageInput.tsx
|
||||
@@ -12111,7 +12110,7 @@ msgstr "Számlázási részletek megtekintése"
|
||||
#. js-lingui-id: SXCuo2
|
||||
#: src/modules/ai/components/AIChatApiKeyNotConfiguredMessage.tsx
|
||||
msgid "View Docs"
|
||||
msgstr ""
|
||||
msgstr "Dokumentáció megtekintése"
|
||||
|
||||
#. js-lingui-id: Mv1YVf
|
||||
#: src/modules/ui/feedback/snack-bar-manager/utils/build-error-action.util.ts
|
||||
@@ -12266,11 +12265,9 @@ msgstr "Küldünk Önnek egy linket a tartomány tulajdonjogának ellenőrzésé
|
||||
|
||||
#. js-lingui-id: X56YGk
|
||||
#: src/pages/onboarding/PaymentSuccess.tsx
|
||||
msgid ""
|
||||
"We're waiting for a confirmation from our payment provider (Stripe).\n"
|
||||
msgid "We're waiting for a confirmation from our payment provider (Stripe).\n"
|
||||
"Please try again in a few seconds, sorry."
|
||||
msgstr ""
|
||||
"Várjuk a fizetési szolgáltatónk (Stripe) visszaigazolását.\n"
|
||||
msgstr "Várjuk a fizetési szolgáltatónk (Stripe) visszaigazolását.\n"
|
||||
"Kérjük, próbálja meg néhány másodperc múlva, elnézést."
|
||||
|
||||
#. js-lingui-id: LnnVIT
|
||||
@@ -12593,7 +12590,7 @@ msgstr "Nincs jogosultság rekord létrehozására ehhez az objektumhoz"
|
||||
#. js-lingui-id: iibZbD
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "You can either create a private app or share it to others"
|
||||
msgstr ""
|
||||
msgstr "Létrehozhat egy privát alkalmazást, vagy megoszthatja másokkal"
|
||||
|
||||
#. js-lingui-id: OLE3Ky
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
|
||||
|
||||
@@ -67,7 +67,7 @@ msgstr ": Passato"
|
||||
#. js-lingui-id: DIUF3A
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
msgid ": Today{timeZoneAbbreviationSuffix}"
|
||||
msgstr ""
|
||||
msgstr ": Oggi{timeZoneAbbreviationSuffix}"
|
||||
|
||||
#. js-lingui-id: N/lIUf
|
||||
#: src/modules/billing/hooks/useBillingWording.ts
|
||||
@@ -129,13 +129,13 @@ msgstr "{0, plural, one {{1} lavoro non può essere riavviato} other {{2} lavori
|
||||
#. placeholder {0}: Math.abs(days)
|
||||
#: src/utils/date-utils.ts
|
||||
msgid "{0, plural, one {{days} day} other {{days} days}}"
|
||||
msgstr ""
|
||||
msgstr "{0, plural, one {{days} giorno} other {{days} giorni}}"
|
||||
|
||||
#. js-lingui-id: dXYycw
|
||||
#. placeholder {0}: Math.abs(years)
|
||||
#: src/utils/date-utils.ts
|
||||
msgid "{0, plural, one {{years} year} other {{years} years}}"
|
||||
msgstr ""
|
||||
msgstr "{0, plural, one {{years} anno} other {{years} anni}}"
|
||||
|
||||
#. js-lingui-id: Qvm3VE
|
||||
#. placeholder {0}: selectedOptions.length
|
||||
@@ -1067,7 +1067,7 @@ msgstr "Dopo un determinato periodo di tempo"
|
||||
#. js-lingui-id: YPnvqG
|
||||
#: src/modules/object-record/record-calendar/month/hooks/useRecordCalendarQueryDateRangeFilter.tsx
|
||||
msgid "After or equal"
|
||||
msgstr ""
|
||||
msgstr "Successivo o uguale a"
|
||||
|
||||
#. js-lingui-id: fcYF58
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
@@ -1119,7 +1119,7 @@ msgstr "Agenti"
|
||||
#. js-lingui-id: wFe+5D
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
msgid "Agents powering this app"
|
||||
msgstr ""
|
||||
msgstr "Agenti che alimentano questa applicazione"
|
||||
|
||||
#. js-lingui-id: 0k5XwN
|
||||
#: src/pages/settings/ai/components/SettingsAIAgentsTable.tsx
|
||||
@@ -1162,7 +1162,7 @@ msgstr ""
|
||||
#. js-lingui-id: Sfwld8
|
||||
#: src/modules/ai/components/AIChatApiKeyNotConfiguredMessage.tsx
|
||||
msgid "AI not configured. Set OPENAI_API_KEY, ANTHROPIC_API_KEY, or XAI_API_KEY in your environment."
|
||||
msgstr ""
|
||||
msgstr "IA non configurata. Imposta OPENAI_API_KEY, ANTHROPIC_API_KEY o XAI_API_KEY nel tuo ambiente."
|
||||
|
||||
#. js-lingui-id: jwOWhc
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
@@ -2515,7 +2515,7 @@ msgstr "Menu Comandi"
|
||||
#. js-lingui-id: 4XlFx/
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "Commands copied to clipboard"
|
||||
msgstr ""
|
||||
msgstr "Comandi copiati negli appunti"
|
||||
|
||||
#. js-lingui-id: A9u+7N
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
@@ -2745,7 +2745,7 @@ msgstr "Creazione automatica dei contatti"
|
||||
#. js-lingui-id: cByGGA
|
||||
#: src/modules/information-banner/components/billing/InformationBannerEndTrialPeriod.tsx
|
||||
msgid "Contact your admin to continue using Workflow or AI features."
|
||||
msgstr ""
|
||||
msgstr "Contatta l'amministratore per continuare a usare le funzionalità dei flussi di lavoro o di IA."
|
||||
|
||||
#. js-lingui-id: /5mghO
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
@@ -2852,7 +2852,7 @@ msgstr "Copia codice"
|
||||
#. js-lingui-id: Es0ros
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "Copy commands"
|
||||
msgstr ""
|
||||
msgstr "Copia comandi"
|
||||
|
||||
#. js-lingui-id: 7eVkEH
|
||||
#: src/pages/onboarding/InviteTeam.tsx
|
||||
@@ -3021,7 +3021,7 @@ msgstr "Crea uno spazio di lavoro"
|
||||
#. js-lingui-id: /WlFSf
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "Create an application"
|
||||
msgstr ""
|
||||
msgstr "Crea un'applicazione"
|
||||
|
||||
#. js-lingui-id: 8ZjIgO
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
|
||||
@@ -3172,12 +3172,12 @@ msgstr "Crediti per periodo"
|
||||
#. js-lingui-id: EABlI0
|
||||
#: src/modules/ai/components/AIChatCreditsExhaustedMessage.tsx
|
||||
msgid "Credits exhausted. Please contact your workspace admin to upgrade."
|
||||
msgstr ""
|
||||
msgstr "Crediti esauriti. Contatta l'amministratore dello spazio di lavoro per eseguire l'aggiornamento."
|
||||
|
||||
#. js-lingui-id: JIXvMy
|
||||
#: src/modules/ai/components/AIChatCreditsExhaustedMessage.tsx
|
||||
msgid "Credits exhausted. Upgrade your plan to get more credits."
|
||||
msgstr ""
|
||||
msgstr "Crediti esauriti. Aggiorna il tuo piano per ottenere più crediti."
|
||||
|
||||
#. js-lingui-id: n3kKrs
|
||||
#: src/modules/billing/components/SettingsBillingCreditsSection.tsx
|
||||
@@ -4450,12 +4450,12 @@ msgstr "Abilita le funzionalità specifiche del modello"
|
||||
#. js-lingui-id: k1i50B
|
||||
#: src/modules/information-banner/components/billing/InformationBannerEndTrialPeriod.tsx
|
||||
msgid "End Trial Period"
|
||||
msgstr ""
|
||||
msgstr "Termina il periodo di prova"
|
||||
|
||||
#. js-lingui-id: QEUZoG
|
||||
#: src/modules/information-banner/components/billing/InformationBannerEndTrialPeriod.tsx
|
||||
msgid "End trial period to continue using Workflow or AI features."
|
||||
msgstr ""
|
||||
msgstr "Termina il periodo di prova per continuare a usare le funzionalità dei flussi di lavoro o di IA."
|
||||
|
||||
#. js-lingui-id: T3juzf
|
||||
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
|
||||
@@ -5560,7 +5560,7 @@ msgstr "Quarto"
|
||||
#. js-lingui-id: aUj1gh
|
||||
#: src/modules/ai/components/AIChatCreditsExhaustedMessage.tsx
|
||||
msgid "Free trial credits exhausted. Subscribe now to continue using AI features."
|
||||
msgstr ""
|
||||
msgstr "Crediti della prova gratuita esauriti. Abbonati ora per continuare a usare le funzionalità di IA."
|
||||
|
||||
#. js-lingui-id: nLC6tu
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
@@ -5581,7 +5581,7 @@ msgstr "Accesso completo"
|
||||
#. js-lingui-id: xANKBj
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
msgid "Functions"
|
||||
msgstr ""
|
||||
msgstr "Funzioni"
|
||||
|
||||
#. js-lingui-id: tkr79G
|
||||
#: src/utils/title-utils.ts
|
||||
@@ -6241,7 +6241,7 @@ msgstr "Installa e gestisci applicazioni"
|
||||
#. js-lingui-id: N52taw
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "Installed applications"
|
||||
msgstr ""
|
||||
msgstr "Applicazioni installate"
|
||||
|
||||
#. js-lingui-id: AwUsnG
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
@@ -6366,12 +6366,12 @@ msgstr "Numero non valido"
|
||||
#. js-lingui-id: sBZMWb
|
||||
#: src/modules/page-layout/widgets/components/PageLayoutWidgetNoDataDisplay.tsx
|
||||
msgid "Invalid URL"
|
||||
msgstr ""
|
||||
msgstr "URL non valido"
|
||||
|
||||
#. js-lingui-id: yRuMQS
|
||||
#: src/modules/page-layout/widgets/components/PageLayoutWidgetNoDataDisplay.tsx
|
||||
msgid "Invalid URL. Click edit to configure this widget."
|
||||
msgstr ""
|
||||
msgstr "URL non valido. Fai clic su modifica per configurare questo widget."
|
||||
|
||||
#. js-lingui-id: VEKoJx
|
||||
#: src/modules/settings/two-factor-authentication/hooks/useTwoFactorVerificationForSettings.ts
|
||||
@@ -6438,7 +6438,7 @@ msgstr "È"
|
||||
#. js-lingui-id: jI6+Q3
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
msgid "Is after or equal"
|
||||
msgstr ""
|
||||
msgstr "È successivo o uguale a"
|
||||
|
||||
#. js-lingui-id: NgIlDJ
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
@@ -6533,7 +6533,7 @@ msgstr "È relativo"
|
||||
#. js-lingui-id: 8vhfz7
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
msgid "Is today{timeZoneAbbreviationSuffix}"
|
||||
msgstr ""
|
||||
msgstr "È oggi{timeZoneAbbreviationSuffix}"
|
||||
|
||||
#. js-lingui-id: IhCN5p
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOOIDCForm.tsx
|
||||
@@ -6861,7 +6861,7 @@ msgstr ""
|
||||
#. js-lingui-id: 5Kn+XX
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "List installed applications. Use filter to search for a specific application"
|
||||
msgstr ""
|
||||
msgstr "Elenca le applicazioni installate. Usa il filtro per cercare un'applicazione specifica"
|
||||
|
||||
#. js-lingui-id: HhVDr2
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
@@ -7053,7 +7053,7 @@ msgstr "Gestisci flussi di lavoro"
|
||||
#. js-lingui-id: cbzOP7
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
|
||||
msgid "Manage your app"
|
||||
msgstr ""
|
||||
msgstr "Gestisci la tua app"
|
||||
|
||||
#. js-lingui-id: FyFNsd
|
||||
#: src/pages/settings/accounts/SettingsAccounts.tsx
|
||||
@@ -8237,7 +8237,7 @@ msgstr "Impostazioni delle autorizzazioni per oggetti e campi"
|
||||
#. js-lingui-id: YFI9hD
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
msgid "Objects managed by this app"
|
||||
msgstr ""
|
||||
msgstr "Oggetti gestiti da questa app"
|
||||
|
||||
#. js-lingui-id: BwJKBw
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
|
||||
@@ -9124,7 +9124,7 @@ msgstr "Leggi il changelog"
|
||||
#. js-lingui-id: ibPuCP
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "Read documentation"
|
||||
msgstr ""
|
||||
msgstr "Leggi la documentazione"
|
||||
|
||||
#. js-lingui-id: BT7pY+
|
||||
#: src/modules/settings/profile/components/SetOrChangePassword.tsx
|
||||
@@ -9748,7 +9748,7 @@ msgstr "Cerca un agente..."
|
||||
#. js-lingui-id: fGTI3o
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "Search an application"
|
||||
msgstr ""
|
||||
msgstr "Cerca un'applicazione"
|
||||
|
||||
#. js-lingui-id: kdagxk
|
||||
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTable.tsx
|
||||
@@ -10201,7 +10201,7 @@ msgstr "funzione serverless"
|
||||
#. js-lingui-id: 0WOel+
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
msgid "Serverless functions powering this app"
|
||||
msgstr ""
|
||||
msgstr "Funzioni serverless che alimentano questa app"
|
||||
|
||||
#. js-lingui-id: LUc0oL
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
@@ -11204,11 +11204,9 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: Ox1hE7
|
||||
#: src/modules/settings/profile/components/DeleteAccount.tsx
|
||||
msgid ""
|
||||
"This action cannot be undone. This will permanently delete your\n"
|
||||
msgid "This action cannot be undone. This will permanently delete your\n"
|
||||
" entire account."
|
||||
msgstr ""
|
||||
"Questa azione non può essere annullata. Questo eliminerà definitivamente\n"
|
||||
msgstr "Questa azione non può essere annullata. Questo eliminerà definitivamente\n"
|
||||
"tutto il tuo account."
|
||||
|
||||
#. js-lingui-id: bNY3MH
|
||||
@@ -11878,7 +11876,7 @@ msgstr "Aggiorna"
|
||||
#. js-lingui-id: 7aHRdp
|
||||
#: src/modules/ai/components/AIChatCreditsExhaustedMessage.tsx
|
||||
msgid "Upgrade Plan"
|
||||
msgstr ""
|
||||
msgstr "Aggiorna piano"
|
||||
|
||||
#. js-lingui-id: ONWvwQ
|
||||
#: src/modules/ui/input/components/ImageInput.tsx
|
||||
@@ -12113,7 +12111,7 @@ msgstr "Visualizza dettagli fatturazione"
|
||||
#. js-lingui-id: SXCuo2
|
||||
#: src/modules/ai/components/AIChatApiKeyNotConfiguredMessage.tsx
|
||||
msgid "View Docs"
|
||||
msgstr ""
|
||||
msgstr "Visualizza la documentazione"
|
||||
|
||||
#. js-lingui-id: Mv1YVf
|
||||
#: src/modules/ui/feedback/snack-bar-manager/utils/build-error-action.util.ts
|
||||
@@ -12268,11 +12266,9 @@ msgstr "Ti invieremo un link per verificare la proprietà del dominio"
|
||||
|
||||
#. js-lingui-id: X56YGk
|
||||
#: src/pages/onboarding/PaymentSuccess.tsx
|
||||
msgid ""
|
||||
"We're waiting for a confirmation from our payment provider (Stripe).\n"
|
||||
msgid "We're waiting for a confirmation from our payment provider (Stripe).\n"
|
||||
"Please try again in a few seconds, sorry."
|
||||
msgstr ""
|
||||
"Stiamo aspettando una conferma dal nostro fornitore di pagamenti (Stripe).\n"
|
||||
msgstr "Stiamo aspettando una conferma dal nostro fornitore di pagamenti (Stripe).\n"
|
||||
"Riprova tra qualche secondo, ci dispiace."
|
||||
|
||||
#. js-lingui-id: LnnVIT
|
||||
@@ -12595,7 +12591,7 @@ msgstr "Non sei autorizzato a creare record per questo oggetto"
|
||||
#. js-lingui-id: iibZbD
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "You can either create a private app or share it to others"
|
||||
msgstr ""
|
||||
msgstr "Puoi creare un'app privata o condividerla con altri"
|
||||
|
||||
#. js-lingui-id: OLE3Ky
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
|
||||
|
||||
@@ -67,7 +67,7 @@ msgstr "過去"
|
||||
#. js-lingui-id: DIUF3A
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
msgid ": Today{timeZoneAbbreviationSuffix}"
|
||||
msgstr ""
|
||||
msgstr ": 今日{timeZoneAbbreviationSuffix}"
|
||||
|
||||
#. js-lingui-id: N/lIUf
|
||||
#: src/modules/billing/hooks/useBillingWording.ts
|
||||
@@ -129,13 +129,13 @@ msgstr "{0, plural, other {{2} 件のジョブを再試行できませんでし
|
||||
#. placeholder {0}: Math.abs(days)
|
||||
#: src/utils/date-utils.ts
|
||||
msgid "{0, plural, one {{days} day} other {{days} days}}"
|
||||
msgstr ""
|
||||
msgstr "{0, plural, one {{days}日} other {{days}日}}"
|
||||
|
||||
#. js-lingui-id: dXYycw
|
||||
#. placeholder {0}: Math.abs(years)
|
||||
#: src/utils/date-utils.ts
|
||||
msgid "{0, plural, one {{years} year} other {{years} years}}"
|
||||
msgstr ""
|
||||
msgstr "{0, plural, one {{years}年} other {{years}年}}"
|
||||
|
||||
#. js-lingui-id: Qvm3VE
|
||||
#. placeholder {0}: selectedOptions.length
|
||||
@@ -1067,7 +1067,7 @@ msgstr "一定時間経過後"
|
||||
#. js-lingui-id: YPnvqG
|
||||
#: src/modules/object-record/record-calendar/month/hooks/useRecordCalendarQueryDateRangeFilter.tsx
|
||||
msgid "After or equal"
|
||||
msgstr ""
|
||||
msgstr "以降(同日を含む)"
|
||||
|
||||
#. js-lingui-id: fcYF58
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
@@ -1119,7 +1119,7 @@ msgstr "エージェントたち"
|
||||
#. js-lingui-id: wFe+5D
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
msgid "Agents powering this app"
|
||||
msgstr ""
|
||||
msgstr "このアプリを支えるエージェント"
|
||||
|
||||
#. js-lingui-id: 0k5XwN
|
||||
#: src/pages/settings/ai/components/SettingsAIAgentsTable.tsx
|
||||
@@ -1162,7 +1162,7 @@ msgstr ""
|
||||
#. js-lingui-id: Sfwld8
|
||||
#: src/modules/ai/components/AIChatApiKeyNotConfiguredMessage.tsx
|
||||
msgid "AI not configured. Set OPENAI_API_KEY, ANTHROPIC_API_KEY, or XAI_API_KEY in your environment."
|
||||
msgstr ""
|
||||
msgstr "AI が構成されていません。環境変数に OPENAI_API_KEY、ANTHROPIC_API_KEY、または XAI_API_KEY を設定してください。"
|
||||
|
||||
#. js-lingui-id: jwOWhc
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
@@ -2515,7 +2515,7 @@ msgstr "コマンドメニュー"
|
||||
#. js-lingui-id: 4XlFx/
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "Commands copied to clipboard"
|
||||
msgstr ""
|
||||
msgstr "コマンドがクリップボードにコピーされました"
|
||||
|
||||
#. js-lingui-id: A9u+7N
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
@@ -2745,7 +2745,7 @@ msgstr "連絡先自動作成"
|
||||
#. js-lingui-id: cByGGA
|
||||
#: src/modules/information-banner/components/billing/InformationBannerEndTrialPeriod.tsx
|
||||
msgid "Contact your admin to continue using Workflow or AI features."
|
||||
msgstr ""
|
||||
msgstr "ワークフローや AI 機能の利用を継続するには、管理者に連絡してください。"
|
||||
|
||||
#. js-lingui-id: /5mghO
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
@@ -2852,7 +2852,7 @@ msgstr "コードをコピー"
|
||||
#. js-lingui-id: Es0ros
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "Copy commands"
|
||||
msgstr ""
|
||||
msgstr "コマンドをコピー"
|
||||
|
||||
#. js-lingui-id: 7eVkEH
|
||||
#: src/pages/onboarding/InviteTeam.tsx
|
||||
@@ -3021,7 +3021,7 @@ msgstr "ワークスペースを作成"
|
||||
#. js-lingui-id: /WlFSf
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "Create an application"
|
||||
msgstr ""
|
||||
msgstr "アプリケーションを作成"
|
||||
|
||||
#. js-lingui-id: 8ZjIgO
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
|
||||
@@ -3172,12 +3172,12 @@ msgstr "期間別のクレジット"
|
||||
#. js-lingui-id: EABlI0
|
||||
#: src/modules/ai/components/AIChatCreditsExhaustedMessage.tsx
|
||||
msgid "Credits exhausted. Please contact your workspace admin to upgrade."
|
||||
msgstr ""
|
||||
msgstr "クレジットを使い切りました。アップグレードするには、ワークスペースの管理者にお問い合わせください。"
|
||||
|
||||
#. js-lingui-id: JIXvMy
|
||||
#: src/modules/ai/components/AIChatCreditsExhaustedMessage.tsx
|
||||
msgid "Credits exhausted. Upgrade your plan to get more credits."
|
||||
msgstr ""
|
||||
msgstr "クレジットを使い切りました。より多くのクレジットを得るには、プランをアップグレードしてください。"
|
||||
|
||||
#. js-lingui-id: n3kKrs
|
||||
#: src/modules/billing/components/SettingsBillingCreditsSection.tsx
|
||||
@@ -4450,12 +4450,12 @@ msgstr "モデル固有の機能を有効にする"
|
||||
#. js-lingui-id: k1i50B
|
||||
#: src/modules/information-banner/components/billing/InformationBannerEndTrialPeriod.tsx
|
||||
msgid "End Trial Period"
|
||||
msgstr ""
|
||||
msgstr "トライアル期間を終了"
|
||||
|
||||
#. js-lingui-id: QEUZoG
|
||||
#: src/modules/information-banner/components/billing/InformationBannerEndTrialPeriod.tsx
|
||||
msgid "End trial period to continue using Workflow or AI features."
|
||||
msgstr ""
|
||||
msgstr "ワークフローや AI 機能の利用を継続するには、トライアル期間を終了してください。"
|
||||
|
||||
#. js-lingui-id: T3juzf
|
||||
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
|
||||
@@ -5560,7 +5560,7 @@ msgstr "第四"
|
||||
#. js-lingui-id: aUj1gh
|
||||
#: src/modules/ai/components/AIChatCreditsExhaustedMessage.tsx
|
||||
msgid "Free trial credits exhausted. Subscribe now to continue using AI features."
|
||||
msgstr ""
|
||||
msgstr "無料トライアルのクレジットを使い切りました。AI 機能の利用を継続するには、今すぐご契約ください。"
|
||||
|
||||
#. js-lingui-id: nLC6tu
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
@@ -5581,7 +5581,7 @@ msgstr "フルアクセス"
|
||||
#. js-lingui-id: xANKBj
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
msgid "Functions"
|
||||
msgstr ""
|
||||
msgstr "機能"
|
||||
|
||||
#. js-lingui-id: tkr79G
|
||||
#: src/utils/title-utils.ts
|
||||
@@ -6241,7 +6241,7 @@ msgstr "アプリケーションのインストールと管理"
|
||||
#. js-lingui-id: N52taw
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "Installed applications"
|
||||
msgstr ""
|
||||
msgstr "インストール済みのアプリケーション"
|
||||
|
||||
#. js-lingui-id: AwUsnG
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
@@ -6366,12 +6366,12 @@ msgstr "無効な数値"
|
||||
#. js-lingui-id: sBZMWb
|
||||
#: src/modules/page-layout/widgets/components/PageLayoutWidgetNoDataDisplay.tsx
|
||||
msgid "Invalid URL"
|
||||
msgstr ""
|
||||
msgstr "無効なURL"
|
||||
|
||||
#. js-lingui-id: yRuMQS
|
||||
#: src/modules/page-layout/widgets/components/PageLayoutWidgetNoDataDisplay.tsx
|
||||
msgid "Invalid URL. Click edit to configure this widget."
|
||||
msgstr ""
|
||||
msgstr "無効なURLです。このウィジェットを構成するには「編集」をクリックしてください。"
|
||||
|
||||
#. js-lingui-id: VEKoJx
|
||||
#: src/modules/settings/two-factor-authentication/hooks/useTwoFactorVerificationForSettings.ts
|
||||
@@ -6438,7 +6438,7 @@ msgstr "である"
|
||||
#. js-lingui-id: jI6+Q3
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
msgid "Is after or equal"
|
||||
msgstr ""
|
||||
msgstr "が以降(同日を含む)"
|
||||
|
||||
#. js-lingui-id: NgIlDJ
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
@@ -6533,7 +6533,7 @@ msgstr "相対である"
|
||||
#. js-lingui-id: 8vhfz7
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
msgid "Is today{timeZoneAbbreviationSuffix}"
|
||||
msgstr ""
|
||||
msgstr "が今日{timeZoneAbbreviationSuffix}"
|
||||
|
||||
#. js-lingui-id: IhCN5p
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOOIDCForm.tsx
|
||||
@@ -6861,7 +6861,7 @@ msgstr ""
|
||||
#. js-lingui-id: 5Kn+XX
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "List installed applications. Use filter to search for a specific application"
|
||||
msgstr ""
|
||||
msgstr "インストール済みのアプリケーションを一覧表示します。フィルターを使って特定のアプリケーションを検索できます。"
|
||||
|
||||
#. js-lingui-id: HhVDr2
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
@@ -7053,7 +7053,7 @@ msgstr "ワークフローを管理"
|
||||
#. js-lingui-id: cbzOP7
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
|
||||
msgid "Manage your app"
|
||||
msgstr ""
|
||||
msgstr "アプリを管理"
|
||||
|
||||
#. js-lingui-id: FyFNsd
|
||||
#: src/pages/settings/accounts/SettingsAccounts.tsx
|
||||
@@ -8237,7 +8237,7 @@ msgstr "オブジェクトとフィールドの権限設定"
|
||||
#. js-lingui-id: YFI9hD
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
msgid "Objects managed by this app"
|
||||
msgstr ""
|
||||
msgstr "このアプリで管理されているオブジェクト"
|
||||
|
||||
#. js-lingui-id: BwJKBw
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
|
||||
@@ -9124,7 +9124,7 @@ msgstr "変更履歴を確認する"
|
||||
#. js-lingui-id: ibPuCP
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "Read documentation"
|
||||
msgstr ""
|
||||
msgstr "ドキュメントを読む"
|
||||
|
||||
#. js-lingui-id: BT7pY+
|
||||
#: src/modules/settings/profile/components/SetOrChangePassword.tsx
|
||||
@@ -9748,7 +9748,7 @@ msgstr "エージェントを検索..."
|
||||
#. js-lingui-id: fGTI3o
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "Search an application"
|
||||
msgstr ""
|
||||
msgstr "アプリケーションを検索"
|
||||
|
||||
#. js-lingui-id: kdagxk
|
||||
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTable.tsx
|
||||
@@ -10201,7 +10201,7 @@ msgstr "サーバーレス関数"
|
||||
#. js-lingui-id: 0WOel+
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
msgid "Serverless functions powering this app"
|
||||
msgstr ""
|
||||
msgstr "このアプリを支えるサーバーレス機能"
|
||||
|
||||
#. js-lingui-id: LUc0oL
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
@@ -11204,8 +11204,7 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: Ox1hE7
|
||||
#: src/modules/settings/profile/components/DeleteAccount.tsx
|
||||
msgid ""
|
||||
"This action cannot be undone. This will permanently delete your\n"
|
||||
msgid "This action cannot be undone. This will permanently delete your\n"
|
||||
" entire account."
|
||||
msgstr "この操作は取り消せません。これにより、アカウント全体が永久に削除されます。"
|
||||
|
||||
@@ -11876,7 +11875,7 @@ msgstr "アップグレード"
|
||||
#. js-lingui-id: 7aHRdp
|
||||
#: src/modules/ai/components/AIChatCreditsExhaustedMessage.tsx
|
||||
msgid "Upgrade Plan"
|
||||
msgstr ""
|
||||
msgstr "プランをアップグレード"
|
||||
|
||||
#. js-lingui-id: ONWvwQ
|
||||
#: src/modules/ui/input/components/ImageInput.tsx
|
||||
@@ -12111,7 +12110,7 @@ msgstr "請求の詳細を表示"
|
||||
#. js-lingui-id: SXCuo2
|
||||
#: src/modules/ai/components/AIChatApiKeyNotConfiguredMessage.tsx
|
||||
msgid "View Docs"
|
||||
msgstr ""
|
||||
msgstr "ドキュメントを表示"
|
||||
|
||||
#. js-lingui-id: Mv1YVf
|
||||
#: src/modules/ui/feedback/snack-bar-manager/utils/build-error-action.util.ts
|
||||
@@ -12266,11 +12265,9 @@ msgstr "ドメイン所有権を確認するためのリンクを送信します
|
||||
|
||||
#. js-lingui-id: X56YGk
|
||||
#: src/pages/onboarding/PaymentSuccess.tsx
|
||||
msgid ""
|
||||
"We're waiting for a confirmation from our payment provider (Stripe).\n"
|
||||
msgid "We're waiting for a confirmation from our payment provider (Stripe).\n"
|
||||
"Please try again in a few seconds, sorry."
|
||||
msgstr ""
|
||||
"決済プロバイダー(Stripe)からの確認を待っています。\n"
|
||||
msgstr "決済プロバイダー(Stripe)からの確認を待っています。\n"
|
||||
"数秒後にもう一度お試しください。申し訳ありません。"
|
||||
|
||||
#. js-lingui-id: LnnVIT
|
||||
@@ -12593,7 +12590,7 @@ msgstr "このオブジェクトでレコードを作成することは許可さ
|
||||
#. js-lingui-id: iibZbD
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "You can either create a private app or share it to others"
|
||||
msgstr ""
|
||||
msgstr "プライベートアプリを作成することも、他のユーザーと共有することもできます。"
|
||||
|
||||
#. js-lingui-id: OLE3Ky
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
|
||||
|
||||
@@ -67,7 +67,7 @@ msgstr ": 과거"
|
||||
#. js-lingui-id: DIUF3A
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
msgid ": Today{timeZoneAbbreviationSuffix}"
|
||||
msgstr ""
|
||||
msgstr ": 오늘{timeZoneAbbreviationSuffix}"
|
||||
|
||||
#. js-lingui-id: N/lIUf
|
||||
#: src/modules/billing/hooks/useBillingWording.ts
|
||||
@@ -129,13 +129,13 @@ msgstr "{0, plural, other {{2}개의 작업을 재시도할 수 없습니다}}"
|
||||
#. placeholder {0}: Math.abs(days)
|
||||
#: src/utils/date-utils.ts
|
||||
msgid "{0, plural, one {{days} day} other {{days} days}}"
|
||||
msgstr ""
|
||||
msgstr "{0, plural, other {{days}일}}"
|
||||
|
||||
#. js-lingui-id: dXYycw
|
||||
#. placeholder {0}: Math.abs(years)
|
||||
#: src/utils/date-utils.ts
|
||||
msgid "{0, plural, one {{years} year} other {{years} years}}"
|
||||
msgstr ""
|
||||
msgstr "{0, plural, other {{years}년}}"
|
||||
|
||||
#. js-lingui-id: Qvm3VE
|
||||
#. placeholder {0}: selectedOptions.length
|
||||
@@ -1067,7 +1067,7 @@ msgstr "설정된 시간 이후"
|
||||
#. js-lingui-id: YPnvqG
|
||||
#: src/modules/object-record/record-calendar/month/hooks/useRecordCalendarQueryDateRangeFilter.tsx
|
||||
msgid "After or equal"
|
||||
msgstr ""
|
||||
msgstr "이후 또는 같음"
|
||||
|
||||
#. js-lingui-id: fcYF58
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
@@ -1119,7 +1119,7 @@ msgstr "에이전트들"
|
||||
#. js-lingui-id: wFe+5D
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
msgid "Agents powering this app"
|
||||
msgstr ""
|
||||
msgstr "이 앱을 구동하는 에이전트"
|
||||
|
||||
#. js-lingui-id: 0k5XwN
|
||||
#: src/pages/settings/ai/components/SettingsAIAgentsTable.tsx
|
||||
@@ -1162,7 +1162,7 @@ msgstr ""
|
||||
#. js-lingui-id: Sfwld8
|
||||
#: src/modules/ai/components/AIChatApiKeyNotConfiguredMessage.tsx
|
||||
msgid "AI not configured. Set OPENAI_API_KEY, ANTHROPIC_API_KEY, or XAI_API_KEY in your environment."
|
||||
msgstr ""
|
||||
msgstr "AI가 구성되지 않았습니다. 환경에 OPENAI_API_KEY, ANTHROPIC_API_KEY 또는 XAI_API_KEY를 설정하세요."
|
||||
|
||||
#. js-lingui-id: jwOWhc
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
@@ -2515,7 +2515,7 @@ msgstr "명령 메뉴"
|
||||
#. js-lingui-id: 4XlFx/
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "Commands copied to clipboard"
|
||||
msgstr ""
|
||||
msgstr "명령어가 클립보드에 복사되었습니다"
|
||||
|
||||
#. js-lingui-id: A9u+7N
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
@@ -2745,7 +2745,7 @@ msgstr "연락처 자동 생성"
|
||||
#. js-lingui-id: cByGGA
|
||||
#: src/modules/information-banner/components/billing/InformationBannerEndTrialPeriod.tsx
|
||||
msgid "Contact your admin to continue using Workflow or AI features."
|
||||
msgstr ""
|
||||
msgstr "워크플로 또는 AI 기능을 계속 사용하려면 관리자에게 문의하세요."
|
||||
|
||||
#. js-lingui-id: /5mghO
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
@@ -2852,7 +2852,7 @@ msgstr "코드 복사"
|
||||
#. js-lingui-id: Es0ros
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "Copy commands"
|
||||
msgstr ""
|
||||
msgstr "명령어 복사"
|
||||
|
||||
#. js-lingui-id: 7eVkEH
|
||||
#: src/pages/onboarding/InviteTeam.tsx
|
||||
@@ -3021,7 +3021,7 @@ msgstr "워크스페이스 만들기"
|
||||
#. js-lingui-id: /WlFSf
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "Create an application"
|
||||
msgstr ""
|
||||
msgstr "응용 프로그램 생성"
|
||||
|
||||
#. js-lingui-id: 8ZjIgO
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
|
||||
@@ -3172,12 +3172,12 @@ msgstr "기간별 크레딧"
|
||||
#. js-lingui-id: EABlI0
|
||||
#: src/modules/ai/components/AIChatCreditsExhaustedMessage.tsx
|
||||
msgid "Credits exhausted. Please contact your workspace admin to upgrade."
|
||||
msgstr ""
|
||||
msgstr "크레딧이 소진되었습니다. 업그레이드를 위해 워크스페이스 관리자에게 문의하세요."
|
||||
|
||||
#. js-lingui-id: JIXvMy
|
||||
#: src/modules/ai/components/AIChatCreditsExhaustedMessage.tsx
|
||||
msgid "Credits exhausted. Upgrade your plan to get more credits."
|
||||
msgstr ""
|
||||
msgstr "크레딧이 소진되었습니다. 더 많은 크레딧을 받으려면 요금제를 업그레이드하세요."
|
||||
|
||||
#. js-lingui-id: n3kKrs
|
||||
#: src/modules/billing/components/SettingsBillingCreditsSection.tsx
|
||||
@@ -4450,12 +4450,12 @@ msgstr "모델별 기능 활성화"
|
||||
#. js-lingui-id: k1i50B
|
||||
#: src/modules/information-banner/components/billing/InformationBannerEndTrialPeriod.tsx
|
||||
msgid "End Trial Period"
|
||||
msgstr ""
|
||||
msgstr "체험 기간 종료"
|
||||
|
||||
#. js-lingui-id: QEUZoG
|
||||
#: src/modules/information-banner/components/billing/InformationBannerEndTrialPeriod.tsx
|
||||
msgid "End trial period to continue using Workflow or AI features."
|
||||
msgstr ""
|
||||
msgstr "워크플로 또는 AI 기능을 계속 사용하려면 체험 기간을 종료하세요."
|
||||
|
||||
#. js-lingui-id: T3juzf
|
||||
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
|
||||
@@ -5560,7 +5560,7 @@ msgstr "넷째"
|
||||
#. js-lingui-id: aUj1gh
|
||||
#: src/modules/ai/components/AIChatCreditsExhaustedMessage.tsx
|
||||
msgid "Free trial credits exhausted. Subscribe now to continue using AI features."
|
||||
msgstr ""
|
||||
msgstr "무료 체험 크레딧이 소진되었습니다. AI 기능을 계속 사용하려면 지금 구독하세요."
|
||||
|
||||
#. js-lingui-id: nLC6tu
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
@@ -5581,7 +5581,7 @@ msgstr "전체 접근"
|
||||
#. js-lingui-id: xANKBj
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
msgid "Functions"
|
||||
msgstr ""
|
||||
msgstr "기능"
|
||||
|
||||
#. js-lingui-id: tkr79G
|
||||
#: src/utils/title-utils.ts
|
||||
@@ -6241,7 +6241,7 @@ msgstr "애플리케이션 설치 및 관리"
|
||||
#. js-lingui-id: N52taw
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "Installed applications"
|
||||
msgstr ""
|
||||
msgstr "설치된 애플리케이션"
|
||||
|
||||
#. js-lingui-id: AwUsnG
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
@@ -6366,12 +6366,12 @@ msgstr "유효하지 않은 숫자입니다"
|
||||
#. js-lingui-id: sBZMWb
|
||||
#: src/modules/page-layout/widgets/components/PageLayoutWidgetNoDataDisplay.tsx
|
||||
msgid "Invalid URL"
|
||||
msgstr ""
|
||||
msgstr "잘못된 URL"
|
||||
|
||||
#. js-lingui-id: yRuMQS
|
||||
#: src/modules/page-layout/widgets/components/PageLayoutWidgetNoDataDisplay.tsx
|
||||
msgid "Invalid URL. Click edit to configure this widget."
|
||||
msgstr ""
|
||||
msgstr "잘못된 URL입니다. 이 위젯을 설정하려면 편집을 클릭하세요."
|
||||
|
||||
#. js-lingui-id: VEKoJx
|
||||
#: src/modules/settings/two-factor-authentication/hooks/useTwoFactorVerificationForSettings.ts
|
||||
@@ -6438,7 +6438,7 @@ msgstr "임"
|
||||
#. js-lingui-id: jI6+Q3
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
msgid "Is after or equal"
|
||||
msgstr ""
|
||||
msgstr "이후 또는 같음"
|
||||
|
||||
#. js-lingui-id: NgIlDJ
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
@@ -6533,7 +6533,7 @@ msgstr "상대적임"
|
||||
#. js-lingui-id: 8vhfz7
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
msgid "Is today{timeZoneAbbreviationSuffix}"
|
||||
msgstr ""
|
||||
msgstr "오늘{timeZoneAbbreviationSuffix}"
|
||||
|
||||
#. js-lingui-id: IhCN5p
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOOIDCForm.tsx
|
||||
@@ -6861,7 +6861,7 @@ msgstr ""
|
||||
#. js-lingui-id: 5Kn+XX
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "List installed applications. Use filter to search for a specific application"
|
||||
msgstr ""
|
||||
msgstr "설치된 애플리케이션 목록입니다. 특정 애플리케이션을 검색하려면 필터를 사용하세요."
|
||||
|
||||
#. js-lingui-id: HhVDr2
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
@@ -7053,7 +7053,7 @@ msgstr "워크플로우 관리"
|
||||
#. js-lingui-id: cbzOP7
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
|
||||
msgid "Manage your app"
|
||||
msgstr ""
|
||||
msgstr "앱 관리"
|
||||
|
||||
#. js-lingui-id: FyFNsd
|
||||
#: src/pages/settings/accounts/SettingsAccounts.tsx
|
||||
@@ -8237,7 +8237,7 @@ msgstr "객체 및 필드 권한 설정"
|
||||
#. js-lingui-id: YFI9hD
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
msgid "Objects managed by this app"
|
||||
msgstr ""
|
||||
msgstr "이 앱에서 관리하는 객체"
|
||||
|
||||
#. js-lingui-id: BwJKBw
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
|
||||
@@ -9124,7 +9124,7 @@ msgstr "변경 로그 보기"
|
||||
#. js-lingui-id: ibPuCP
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "Read documentation"
|
||||
msgstr ""
|
||||
msgstr "문서 읽기"
|
||||
|
||||
#. js-lingui-id: BT7pY+
|
||||
#: src/modules/settings/profile/components/SetOrChangePassword.tsx
|
||||
@@ -9748,7 +9748,7 @@ msgstr "에이전트를 검색하세요..."
|
||||
#. js-lingui-id: fGTI3o
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "Search an application"
|
||||
msgstr ""
|
||||
msgstr "애플리케이션 검색"
|
||||
|
||||
#. js-lingui-id: kdagxk
|
||||
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTable.tsx
|
||||
@@ -10201,7 +10201,7 @@ msgstr "서버리스 함수"
|
||||
#. js-lingui-id: 0WOel+
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
msgid "Serverless functions powering this app"
|
||||
msgstr ""
|
||||
msgstr "이 앱을 구동하는 서버리스 함수"
|
||||
|
||||
#. js-lingui-id: LUc0oL
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
@@ -11204,8 +11204,7 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: Ox1hE7
|
||||
#: src/modules/settings/profile/components/DeleteAccount.tsx
|
||||
msgid ""
|
||||
"This action cannot be undone. This will permanently delete your\n"
|
||||
msgid "This action cannot be undone. This will permanently delete your\n"
|
||||
" entire account."
|
||||
msgstr "이 작업은 취소할 수 없습니다. 이렇게 하면 계정 전체가 영구적으로 삭제됩니다."
|
||||
|
||||
@@ -11876,7 +11875,7 @@ msgstr "업그레이드"
|
||||
#. js-lingui-id: 7aHRdp
|
||||
#: src/modules/ai/components/AIChatCreditsExhaustedMessage.tsx
|
||||
msgid "Upgrade Plan"
|
||||
msgstr ""
|
||||
msgstr "요금제 업그레이드"
|
||||
|
||||
#. js-lingui-id: ONWvwQ
|
||||
#: src/modules/ui/input/components/ImageInput.tsx
|
||||
@@ -12111,7 +12110,7 @@ msgstr "청구 세부 정보 보기"
|
||||
#. js-lingui-id: SXCuo2
|
||||
#: src/modules/ai/components/AIChatApiKeyNotConfiguredMessage.tsx
|
||||
msgid "View Docs"
|
||||
msgstr ""
|
||||
msgstr "문서 보기"
|
||||
|
||||
#. js-lingui-id: Mv1YVf
|
||||
#: src/modules/ui/feedback/snack-bar-manager/utils/build-error-action.util.ts
|
||||
@@ -12266,11 +12265,9 @@ msgstr "도메인 소유권을 확인하기 위해 링크를 보내드립니다"
|
||||
|
||||
#. js-lingui-id: X56YGk
|
||||
#: src/pages/onboarding/PaymentSuccess.tsx
|
||||
msgid ""
|
||||
"We're waiting for a confirmation from our payment provider (Stripe).\n"
|
||||
msgid "We're waiting for a confirmation from our payment provider (Stripe).\n"
|
||||
"Please try again in a few seconds, sorry."
|
||||
msgstr ""
|
||||
"결제 제공업체(Stripe)의 확인을 기다리고 있습니다.\n"
|
||||
msgstr "결제 제공업체(Stripe)의 확인을 기다리고 있습니다.\n"
|
||||
"잠시 후 다시 시도해 주세요. 불편을 드려 죄송합니다."
|
||||
|
||||
#. js-lingui-id: LnnVIT
|
||||
@@ -12593,7 +12590,7 @@ msgstr "이 개체에 기록을 생성할 수 있는 권한이 없습니다"
|
||||
#. js-lingui-id: iibZbD
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "You can either create a private app or share it to others"
|
||||
msgstr ""
|
||||
msgstr "개인용 앱을 만들거나 다른 사람과 공유할 수 있습니다."
|
||||
|
||||
#. js-lingui-id: OLE3Ky
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
|
||||
|
||||
@@ -67,7 +67,7 @@ msgstr ": Verleden"
|
||||
#. js-lingui-id: DIUF3A
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
msgid ": Today{timeZoneAbbreviationSuffix}"
|
||||
msgstr ""
|
||||
msgstr ": Vandaag{timeZoneAbbreviationSuffix}"
|
||||
|
||||
#. js-lingui-id: N/lIUf
|
||||
#: src/modules/billing/hooks/useBillingWording.ts
|
||||
@@ -129,13 +129,13 @@ msgstr "{0, plural, one {{1} taak kon niet opnieuw worden geprobeerd} other {{2}
|
||||
#. placeholder {0}: Math.abs(days)
|
||||
#: src/utils/date-utils.ts
|
||||
msgid "{0, plural, one {{days} day} other {{days} days}}"
|
||||
msgstr ""
|
||||
msgstr "{0, plural, one {{days} dag} other {{days} dagen}}"
|
||||
|
||||
#. js-lingui-id: dXYycw
|
||||
#. placeholder {0}: Math.abs(years)
|
||||
#: src/utils/date-utils.ts
|
||||
msgid "{0, plural, one {{years} year} other {{years} years}}"
|
||||
msgstr ""
|
||||
msgstr "{0, plural, one {{years} jaar} other {{years} jaar}}"
|
||||
|
||||
#. js-lingui-id: Qvm3VE
|
||||
#. placeholder {0}: selectedOptions.length
|
||||
@@ -1067,7 +1067,7 @@ msgstr "Na een bepaalde tijdsperiode"
|
||||
#. js-lingui-id: YPnvqG
|
||||
#: src/modules/object-record/record-calendar/month/hooks/useRecordCalendarQueryDateRangeFilter.tsx
|
||||
msgid "After or equal"
|
||||
msgstr ""
|
||||
msgstr "Na of gelijk aan"
|
||||
|
||||
#. js-lingui-id: fcYF58
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
@@ -1119,7 +1119,7 @@ msgstr "Agenten"
|
||||
#. js-lingui-id: wFe+5D
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
msgid "Agents powering this app"
|
||||
msgstr ""
|
||||
msgstr "Agenten die deze app mogelijk maken"
|
||||
|
||||
#. js-lingui-id: 0k5XwN
|
||||
#: src/pages/settings/ai/components/SettingsAIAgentsTable.tsx
|
||||
@@ -1162,7 +1162,7 @@ msgstr ""
|
||||
#. js-lingui-id: Sfwld8
|
||||
#: src/modules/ai/components/AIChatApiKeyNotConfiguredMessage.tsx
|
||||
msgid "AI not configured. Set OPENAI_API_KEY, ANTHROPIC_API_KEY, or XAI_API_KEY in your environment."
|
||||
msgstr ""
|
||||
msgstr "AI niet geconfigureerd. Stel OPENAI_API_KEY, ANTHROPIC_API_KEY of XAI_API_KEY in je omgeving in."
|
||||
|
||||
#. js-lingui-id: jwOWhc
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
@@ -2515,7 +2515,7 @@ msgstr "Opdrachtmenu"
|
||||
#. js-lingui-id: 4XlFx/
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "Commands copied to clipboard"
|
||||
msgstr ""
|
||||
msgstr "Commando's gekopieerd naar klembord"
|
||||
|
||||
#. js-lingui-id: A9u+7N
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
@@ -2745,7 +2745,7 @@ msgstr "Contact autocreatie"
|
||||
#. js-lingui-id: cByGGA
|
||||
#: src/modules/information-banner/components/billing/InformationBannerEndTrialPeriod.tsx
|
||||
msgid "Contact your admin to continue using Workflow or AI features."
|
||||
msgstr ""
|
||||
msgstr "Neem contact op met je beheerder om Workflow- of AI-functies te blijven gebruiken."
|
||||
|
||||
#. js-lingui-id: /5mghO
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
@@ -2852,7 +2852,7 @@ msgstr "Code kopiëren"
|
||||
#. js-lingui-id: Es0ros
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "Copy commands"
|
||||
msgstr ""
|
||||
msgstr "Commando's kopiëren"
|
||||
|
||||
#. js-lingui-id: 7eVkEH
|
||||
#: src/pages/onboarding/InviteTeam.tsx
|
||||
@@ -3021,7 +3021,7 @@ msgstr "Werkruimte aanmaken"
|
||||
#. js-lingui-id: /WlFSf
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "Create an application"
|
||||
msgstr ""
|
||||
msgstr "Een applicatie maken"
|
||||
|
||||
#. js-lingui-id: 8ZjIgO
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
|
||||
@@ -3172,12 +3172,12 @@ msgstr "Credits per periode"
|
||||
#. js-lingui-id: EABlI0
|
||||
#: src/modules/ai/components/AIChatCreditsExhaustedMessage.tsx
|
||||
msgid "Credits exhausted. Please contact your workspace admin to upgrade."
|
||||
msgstr ""
|
||||
msgstr "Credits verbruikt. Neem contact op met de beheerder van je werkruimte om te upgraden."
|
||||
|
||||
#. js-lingui-id: JIXvMy
|
||||
#: src/modules/ai/components/AIChatCreditsExhaustedMessage.tsx
|
||||
msgid "Credits exhausted. Upgrade your plan to get more credits."
|
||||
msgstr ""
|
||||
msgstr "Credits verbruikt. Upgrade je abonnement om meer credits te krijgen."
|
||||
|
||||
#. js-lingui-id: n3kKrs
|
||||
#: src/modules/billing/components/SettingsBillingCreditsSection.tsx
|
||||
@@ -4450,12 +4450,12 @@ msgstr "Activeer model-specifieke functies"
|
||||
#. js-lingui-id: k1i50B
|
||||
#: src/modules/information-banner/components/billing/InformationBannerEndTrialPeriod.tsx
|
||||
msgid "End Trial Period"
|
||||
msgstr ""
|
||||
msgstr "Proefperiode beëindigen"
|
||||
|
||||
#. js-lingui-id: QEUZoG
|
||||
#: src/modules/information-banner/components/billing/InformationBannerEndTrialPeriod.tsx
|
||||
msgid "End trial period to continue using Workflow or AI features."
|
||||
msgstr ""
|
||||
msgstr "Beëindig de proefperiode om Workflow- of AI-functies te blijven gebruiken."
|
||||
|
||||
#. js-lingui-id: T3juzf
|
||||
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
|
||||
@@ -5560,7 +5560,7 @@ msgstr "Vierde"
|
||||
#. js-lingui-id: aUj1gh
|
||||
#: src/modules/ai/components/AIChatCreditsExhaustedMessage.tsx
|
||||
msgid "Free trial credits exhausted. Subscribe now to continue using AI features."
|
||||
msgstr ""
|
||||
msgstr "Gratis proefcredits verbruikt. Abonneer je nu om AI-functies te blijven gebruiken."
|
||||
|
||||
#. js-lingui-id: nLC6tu
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
@@ -5581,7 +5581,7 @@ msgstr "Volledige toegang"
|
||||
#. js-lingui-id: xANKBj
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
msgid "Functions"
|
||||
msgstr ""
|
||||
msgstr "Functies"
|
||||
|
||||
#. js-lingui-id: tkr79G
|
||||
#: src/utils/title-utils.ts
|
||||
@@ -6241,7 +6241,7 @@ msgstr "Installeer en beheer toepassingen"
|
||||
#. js-lingui-id: N52taw
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "Installed applications"
|
||||
msgstr ""
|
||||
msgstr "Geïnstalleerde toepassingen"
|
||||
|
||||
#. js-lingui-id: AwUsnG
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
@@ -6366,12 +6366,12 @@ msgstr "Ongeldig getal"
|
||||
#. js-lingui-id: sBZMWb
|
||||
#: src/modules/page-layout/widgets/components/PageLayoutWidgetNoDataDisplay.tsx
|
||||
msgid "Invalid URL"
|
||||
msgstr ""
|
||||
msgstr "Ongeldige URL"
|
||||
|
||||
#. js-lingui-id: yRuMQS
|
||||
#: src/modules/page-layout/widgets/components/PageLayoutWidgetNoDataDisplay.tsx
|
||||
msgid "Invalid URL. Click edit to configure this widget."
|
||||
msgstr ""
|
||||
msgstr "Ongeldige URL. Klik op bewerken om deze widget te configureren."
|
||||
|
||||
#. js-lingui-id: VEKoJx
|
||||
#: src/modules/settings/two-factor-authentication/hooks/useTwoFactorVerificationForSettings.ts
|
||||
@@ -6438,7 +6438,7 @@ msgstr "Is"
|
||||
#. js-lingui-id: jI6+Q3
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
msgid "Is after or equal"
|
||||
msgstr ""
|
||||
msgstr "Is na of gelijk aan"
|
||||
|
||||
#. js-lingui-id: NgIlDJ
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
@@ -6533,7 +6533,7 @@ msgstr "Is relatief"
|
||||
#. js-lingui-id: 8vhfz7
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
msgid "Is today{timeZoneAbbreviationSuffix}"
|
||||
msgstr ""
|
||||
msgstr "Is vandaag{timeZoneAbbreviationSuffix}"
|
||||
|
||||
#. js-lingui-id: IhCN5p
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOOIDCForm.tsx
|
||||
@@ -6861,7 +6861,7 @@ msgstr ""
|
||||
#. js-lingui-id: 5Kn+XX
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "List installed applications. Use filter to search for a specific application"
|
||||
msgstr ""
|
||||
msgstr "Geïnstalleerde toepassingen weergeven. Gebruik het filter om naar een specifieke toepassing te zoeken"
|
||||
|
||||
#. js-lingui-id: HhVDr2
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
@@ -7053,7 +7053,7 @@ msgstr "Workflows beheren"
|
||||
#. js-lingui-id: cbzOP7
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
|
||||
msgid "Manage your app"
|
||||
msgstr ""
|
||||
msgstr "Beheer je toepassing"
|
||||
|
||||
#. js-lingui-id: FyFNsd
|
||||
#: src/pages/settings/accounts/SettingsAccounts.tsx
|
||||
@@ -8237,7 +8237,7 @@ msgstr "Objecten en velden machtigingsinstellingen"
|
||||
#. js-lingui-id: YFI9hD
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
msgid "Objects managed by this app"
|
||||
msgstr ""
|
||||
msgstr "Objecten die door deze toepassing worden beheerd"
|
||||
|
||||
#. js-lingui-id: BwJKBw
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
|
||||
@@ -9124,7 +9124,7 @@ msgstr "Lees de changelog"
|
||||
#. js-lingui-id: ibPuCP
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "Read documentation"
|
||||
msgstr ""
|
||||
msgstr "Lees documentatie"
|
||||
|
||||
#. js-lingui-id: BT7pY+
|
||||
#: src/modules/settings/profile/components/SetOrChangePassword.tsx
|
||||
@@ -9748,7 +9748,7 @@ msgstr "Zoek een agent..."
|
||||
#. js-lingui-id: fGTI3o
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "Search an application"
|
||||
msgstr ""
|
||||
msgstr "Een toepassing zoeken"
|
||||
|
||||
#. js-lingui-id: kdagxk
|
||||
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTable.tsx
|
||||
@@ -10201,7 +10201,7 @@ msgstr "serverloze functie"
|
||||
#. js-lingui-id: 0WOel+
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
msgid "Serverless functions powering this app"
|
||||
msgstr ""
|
||||
msgstr "Serverloze functies die deze toepassing aandrijven"
|
||||
|
||||
#. js-lingui-id: LUc0oL
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
@@ -11204,11 +11204,9 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: Ox1hE7
|
||||
#: src/modules/settings/profile/components/DeleteAccount.tsx
|
||||
msgid ""
|
||||
"This action cannot be undone. This will permanently delete your\n"
|
||||
msgid "This action cannot be undone. This will permanently delete your\n"
|
||||
" entire account."
|
||||
msgstr ""
|
||||
"Deze actie kan niet ongedaan worden gemaakt. Dit zal permanent uw\n"
|
||||
msgstr "Deze actie kan niet ongedaan worden gemaakt. Dit zal permanent uw\n"
|
||||
" gehele account verwijderen."
|
||||
|
||||
#. js-lingui-id: bNY3MH
|
||||
@@ -11878,7 +11876,7 @@ msgstr "Upgrade"
|
||||
#. js-lingui-id: 7aHRdp
|
||||
#: src/modules/ai/components/AIChatCreditsExhaustedMessage.tsx
|
||||
msgid "Upgrade Plan"
|
||||
msgstr ""
|
||||
msgstr "Abonnement upgraden"
|
||||
|
||||
#. js-lingui-id: ONWvwQ
|
||||
#: src/modules/ui/input/components/ImageInput.tsx
|
||||
@@ -12113,7 +12111,7 @@ msgstr "Factuurdetails bekijken"
|
||||
#. js-lingui-id: SXCuo2
|
||||
#: src/modules/ai/components/AIChatApiKeyNotConfiguredMessage.tsx
|
||||
msgid "View Docs"
|
||||
msgstr ""
|
||||
msgstr "Documentatie bekijken"
|
||||
|
||||
#. js-lingui-id: Mv1YVf
|
||||
#: src/modules/ui/feedback/snack-bar-manager/utils/build-error-action.util.ts
|
||||
@@ -12268,11 +12266,9 @@ msgstr "We sturen u een link om het domeineigendom te verifiëren"
|
||||
|
||||
#. js-lingui-id: X56YGk
|
||||
#: src/pages/onboarding/PaymentSuccess.tsx
|
||||
msgid ""
|
||||
"We're waiting for a confirmation from our payment provider (Stripe).\n"
|
||||
msgid "We're waiting for a confirmation from our payment provider (Stripe).\n"
|
||||
"Please try again in a few seconds, sorry."
|
||||
msgstr ""
|
||||
"We wachten op een bevestiging van onze betalingsprovider (Stripe).\n"
|
||||
msgstr "We wachten op een bevestiging van onze betalingsprovider (Stripe).\n"
|
||||
"Probeer het over enkele seconden opnieuw, excuses."
|
||||
|
||||
#. js-lingui-id: LnnVIT
|
||||
@@ -12595,7 +12591,7 @@ msgstr "U mag geen records maken voor dit object"
|
||||
#. js-lingui-id: iibZbD
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "You can either create a private app or share it to others"
|
||||
msgstr ""
|
||||
msgstr "Je kunt een privétoepassing maken of deze met anderen delen"
|
||||
|
||||
#. js-lingui-id: OLE3Ky
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
|
||||
|
||||
@@ -67,7 +67,7 @@ msgstr ": Fortid"
|
||||
#. js-lingui-id: DIUF3A
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
msgid ": Today{timeZoneAbbreviationSuffix}"
|
||||
msgstr ""
|
||||
msgstr ": I dag{timeZoneAbbreviationSuffix}"
|
||||
|
||||
#. js-lingui-id: N/lIUf
|
||||
#: src/modules/billing/hooks/useBillingWording.ts
|
||||
@@ -129,13 +129,13 @@ msgstr "{0, plural, one {{1} jobb kunne ikke prøves på nytt} other {{2} jobber
|
||||
#. placeholder {0}: Math.abs(days)
|
||||
#: src/utils/date-utils.ts
|
||||
msgid "{0, plural, one {{days} day} other {{days} days}}"
|
||||
msgstr ""
|
||||
msgstr "{0, plural, one {{days} dag} other {{days} dager}}"
|
||||
|
||||
#. js-lingui-id: dXYycw
|
||||
#. placeholder {0}: Math.abs(years)
|
||||
#: src/utils/date-utils.ts
|
||||
msgid "{0, plural, one {{years} year} other {{years} years}}"
|
||||
msgstr ""
|
||||
msgstr "{0, plural, one {{years} år} other {{years} år}}"
|
||||
|
||||
#. js-lingui-id: Qvm3VE
|
||||
#. placeholder {0}: selectedOptions.length
|
||||
@@ -1067,7 +1067,7 @@ msgstr "Etter et spesifisert tidsrom"
|
||||
#. js-lingui-id: YPnvqG
|
||||
#: src/modules/object-record/record-calendar/month/hooks/useRecordCalendarQueryDateRangeFilter.tsx
|
||||
msgid "After or equal"
|
||||
msgstr ""
|
||||
msgstr "Etter eller lik"
|
||||
|
||||
#. js-lingui-id: fcYF58
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
@@ -1119,7 +1119,7 @@ msgstr "Agenter"
|
||||
#. js-lingui-id: wFe+5D
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
msgid "Agents powering this app"
|
||||
msgstr ""
|
||||
msgstr "Agenter som driver denne appen"
|
||||
|
||||
#. js-lingui-id: 0k5XwN
|
||||
#: src/pages/settings/ai/components/SettingsAIAgentsTable.tsx
|
||||
@@ -2515,7 +2515,7 @@ msgstr "Kommandomeny"
|
||||
#. js-lingui-id: 4XlFx/
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "Commands copied to clipboard"
|
||||
msgstr ""
|
||||
msgstr "Kommandoer kopiert til utklippstavlen"
|
||||
|
||||
#. js-lingui-id: A9u+7N
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
@@ -2852,7 +2852,7 @@ msgstr "Kopier kode"
|
||||
#. js-lingui-id: Es0ros
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "Copy commands"
|
||||
msgstr ""
|
||||
msgstr "Kopier kommandoer"
|
||||
|
||||
#. js-lingui-id: 7eVkEH
|
||||
#: src/pages/onboarding/InviteTeam.tsx
|
||||
@@ -3021,7 +3021,7 @@ msgstr "Opprett arbeidsområde"
|
||||
#. js-lingui-id: /WlFSf
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "Create an application"
|
||||
msgstr ""
|
||||
msgstr "Opprett en applikasjon"
|
||||
|
||||
#. js-lingui-id: 8ZjIgO
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
|
||||
@@ -5581,7 +5581,7 @@ msgstr "Full tilgang"
|
||||
#. js-lingui-id: xANKBj
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
msgid "Functions"
|
||||
msgstr ""
|
||||
msgstr "Funksjoner"
|
||||
|
||||
#. js-lingui-id: tkr79G
|
||||
#: src/utils/title-utils.ts
|
||||
@@ -6366,12 +6366,12 @@ msgstr "Ugyldig tall"
|
||||
#. js-lingui-id: sBZMWb
|
||||
#: src/modules/page-layout/widgets/components/PageLayoutWidgetNoDataDisplay.tsx
|
||||
msgid "Invalid URL"
|
||||
msgstr ""
|
||||
msgstr "Ugyldig URL"
|
||||
|
||||
#. js-lingui-id: yRuMQS
|
||||
#: src/modules/page-layout/widgets/components/PageLayoutWidgetNoDataDisplay.tsx
|
||||
msgid "Invalid URL. Click edit to configure this widget."
|
||||
msgstr ""
|
||||
msgstr "Ugyldig URL. Klikk på rediger for å konfigurere denne widgeten."
|
||||
|
||||
#. js-lingui-id: VEKoJx
|
||||
#: src/modules/settings/two-factor-authentication/hooks/useTwoFactorVerificationForSettings.ts
|
||||
@@ -6438,7 +6438,7 @@ msgstr "Er"
|
||||
#. js-lingui-id: jI6+Q3
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
msgid "Is after or equal"
|
||||
msgstr ""
|
||||
msgstr "Er etter eller lik"
|
||||
|
||||
#. js-lingui-id: NgIlDJ
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
@@ -6533,7 +6533,7 @@ msgstr "Er relativ"
|
||||
#. js-lingui-id: 8vhfz7
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
msgid "Is today{timeZoneAbbreviationSuffix}"
|
||||
msgstr ""
|
||||
msgstr "Er i dag{timeZoneAbbreviationSuffix}"
|
||||
|
||||
#. js-lingui-id: IhCN5p
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOOIDCForm.tsx
|
||||
@@ -9124,7 +9124,7 @@ msgstr "Les endringsloggen"
|
||||
#. js-lingui-id: ibPuCP
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "Read documentation"
|
||||
msgstr ""
|
||||
msgstr "Les dokumentasjonen"
|
||||
|
||||
#. js-lingui-id: BT7pY+
|
||||
#: src/modules/settings/profile/components/SetOrChangePassword.tsx
|
||||
@@ -11204,8 +11204,7 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: Ox1hE7
|
||||
#: src/modules/settings/profile/components/DeleteAccount.tsx
|
||||
msgid ""
|
||||
"This action cannot be undone. This will permanently delete your\n"
|
||||
msgid "This action cannot be undone. This will permanently delete your\n"
|
||||
" entire account."
|
||||
msgstr "Denne handlingen kan ikke angres. Dette vil permanent slette hele kontoen din."
|
||||
|
||||
@@ -12266,11 +12265,9 @@ msgstr "Vi vil sende deg en lenke for å verifisere domeneeierskap"
|
||||
|
||||
#. js-lingui-id: X56YGk
|
||||
#: src/pages/onboarding/PaymentSuccess.tsx
|
||||
msgid ""
|
||||
"We're waiting for a confirmation from our payment provider (Stripe).\n"
|
||||
msgid "We're waiting for a confirmation from our payment provider (Stripe).\n"
|
||||
"Please try again in a few seconds, sorry."
|
||||
msgstr ""
|
||||
"Vi venter på en bekreftelse fra betalingsleverandøren vår (Stripe).\n"
|
||||
msgstr "Vi venter på en bekreftelse fra betalingsleverandøren vår (Stripe).\n"
|
||||
"Prøv igjen om noen sekunder, takk."
|
||||
|
||||
#. js-lingui-id: LnnVIT
|
||||
|
||||
@@ -67,7 +67,7 @@ msgstr ": Przeszłość"
|
||||
#. js-lingui-id: DIUF3A
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
msgid ": Today{timeZoneAbbreviationSuffix}"
|
||||
msgstr ""
|
||||
msgstr ": Dzisiaj{timeZoneAbbreviationSuffix}"
|
||||
|
||||
#. js-lingui-id: N/lIUf
|
||||
#: src/modules/billing/hooks/useBillingWording.ts
|
||||
@@ -129,13 +129,13 @@ msgstr "{0, plural, one {{1} zadanie nie mogło zostać ponowione} few {{2} zada
|
||||
#. placeholder {0}: Math.abs(days)
|
||||
#: src/utils/date-utils.ts
|
||||
msgid "{0, plural, one {{days} day} other {{days} days}}"
|
||||
msgstr ""
|
||||
msgstr "{0, plural, one {{days} dzień} few {{days} dni} many {{days} dni} other {{days} dnia}}"
|
||||
|
||||
#. js-lingui-id: dXYycw
|
||||
#. placeholder {0}: Math.abs(years)
|
||||
#: src/utils/date-utils.ts
|
||||
msgid "{0, plural, one {{years} year} other {{years} years}}"
|
||||
msgstr ""
|
||||
msgstr "{0, plural, one {{years} rok} few {{years} lata} many {{years} lat} other {{years} roku}}"
|
||||
|
||||
#. js-lingui-id: Qvm3VE
|
||||
#. placeholder {0}: selectedOptions.length
|
||||
@@ -1067,7 +1067,7 @@ msgstr "Po upływie określonego czasu"
|
||||
#. js-lingui-id: YPnvqG
|
||||
#: src/modules/object-record/record-calendar/month/hooks/useRecordCalendarQueryDateRangeFilter.tsx
|
||||
msgid "After or equal"
|
||||
msgstr ""
|
||||
msgstr "Po lub równe"
|
||||
|
||||
#. js-lingui-id: fcYF58
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
@@ -1162,7 +1162,7 @@ msgstr ""
|
||||
#. js-lingui-id: Sfwld8
|
||||
#: src/modules/ai/components/AIChatApiKeyNotConfiguredMessage.tsx
|
||||
msgid "AI not configured. Set OPENAI_API_KEY, ANTHROPIC_API_KEY, or XAI_API_KEY in your environment."
|
||||
msgstr ""
|
||||
msgstr "AI nie jest skonfigurowane. Ustaw w swoim środowisku OPENAI_API_KEY, ANTHROPIC_API_KEY lub XAI_API_KEY."
|
||||
|
||||
#. js-lingui-id: jwOWhc
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
@@ -2745,7 +2745,7 @@ msgstr "Automatyczne tworzenie kontaktów"
|
||||
#. js-lingui-id: cByGGA
|
||||
#: src/modules/information-banner/components/billing/InformationBannerEndTrialPeriod.tsx
|
||||
msgid "Contact your admin to continue using Workflow or AI features."
|
||||
msgstr ""
|
||||
msgstr "Skontaktuj się ze swoim administratorem, aby nadal korzystać z funkcji przepływów pracy lub AI."
|
||||
|
||||
#. js-lingui-id: /5mghO
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
@@ -3172,12 +3172,12 @@ msgstr "Kredyty według okresu"
|
||||
#. js-lingui-id: EABlI0
|
||||
#: src/modules/ai/components/AIChatCreditsExhaustedMessage.tsx
|
||||
msgid "Credits exhausted. Please contact your workspace admin to upgrade."
|
||||
msgstr ""
|
||||
msgstr "Kredyty zostały wyczerpane. Skontaktuj się z administratorem przestrzeni roboczej, aby dokonać uaktualnienia."
|
||||
|
||||
#. js-lingui-id: JIXvMy
|
||||
#: src/modules/ai/components/AIChatCreditsExhaustedMessage.tsx
|
||||
msgid "Credits exhausted. Upgrade your plan to get more credits."
|
||||
msgstr ""
|
||||
msgstr "Kredyty zostały wyczerpane. Zaktualizuj swój plan, aby uzyskać więcej kredytów."
|
||||
|
||||
#. js-lingui-id: n3kKrs
|
||||
#: src/modules/billing/components/SettingsBillingCreditsSection.tsx
|
||||
@@ -4450,12 +4450,12 @@ msgstr "Włącz funkcje specyficzne dla modelu"
|
||||
#. js-lingui-id: k1i50B
|
||||
#: src/modules/information-banner/components/billing/InformationBannerEndTrialPeriod.tsx
|
||||
msgid "End Trial Period"
|
||||
msgstr ""
|
||||
msgstr "Zakończ okres próbny"
|
||||
|
||||
#. js-lingui-id: QEUZoG
|
||||
#: src/modules/information-banner/components/billing/InformationBannerEndTrialPeriod.tsx
|
||||
msgid "End trial period to continue using Workflow or AI features."
|
||||
msgstr ""
|
||||
msgstr "Zakończ okres próbny, aby nadal korzystać z funkcji przepływów pracy lub AI."
|
||||
|
||||
#. js-lingui-id: T3juzf
|
||||
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
|
||||
@@ -5560,7 +5560,7 @@ msgstr "Czwarty"
|
||||
#. js-lingui-id: aUj1gh
|
||||
#: src/modules/ai/components/AIChatCreditsExhaustedMessage.tsx
|
||||
msgid "Free trial credits exhausted. Subscribe now to continue using AI features."
|
||||
msgstr ""
|
||||
msgstr "Kredyty z darmowego okresu próbnego zostały wyczerpane. Wykup teraz subskrypcję, aby nadal korzystać z funkcji AI."
|
||||
|
||||
#. js-lingui-id: nLC6tu
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
@@ -5581,7 +5581,7 @@ msgstr "Pełny dostęp"
|
||||
#. js-lingui-id: xANKBj
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
msgid "Functions"
|
||||
msgstr ""
|
||||
msgstr "Funkcje"
|
||||
|
||||
#. js-lingui-id: tkr79G
|
||||
#: src/utils/title-utils.ts
|
||||
@@ -6241,7 +6241,7 @@ msgstr "Zainstaluj i zarządzaj aplikacjami"
|
||||
#. js-lingui-id: N52taw
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "Installed applications"
|
||||
msgstr ""
|
||||
msgstr "Zainstalowane aplikacje"
|
||||
|
||||
#. js-lingui-id: AwUsnG
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
@@ -6366,12 +6366,12 @@ msgstr "Nieprawidłowa liczba"
|
||||
#. js-lingui-id: sBZMWb
|
||||
#: src/modules/page-layout/widgets/components/PageLayoutWidgetNoDataDisplay.tsx
|
||||
msgid "Invalid URL"
|
||||
msgstr ""
|
||||
msgstr "Nieprawidłowy adres URL"
|
||||
|
||||
#. js-lingui-id: yRuMQS
|
||||
#: src/modules/page-layout/widgets/components/PageLayoutWidgetNoDataDisplay.tsx
|
||||
msgid "Invalid URL. Click edit to configure this widget."
|
||||
msgstr ""
|
||||
msgstr "Nieprawidłowy adres URL. Kliknij edytuj, aby skonfigurować ten widget."
|
||||
|
||||
#. js-lingui-id: VEKoJx
|
||||
#: src/modules/settings/two-factor-authentication/hooks/useTwoFactorVerificationForSettings.ts
|
||||
@@ -6438,7 +6438,7 @@ msgstr "Jest"
|
||||
#. js-lingui-id: jI6+Q3
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
msgid "Is after or equal"
|
||||
msgstr ""
|
||||
msgstr "Jest po lub równe"
|
||||
|
||||
#. js-lingui-id: NgIlDJ
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
@@ -6533,7 +6533,7 @@ msgstr "Jest względny"
|
||||
#. js-lingui-id: 8vhfz7
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
msgid "Is today{timeZoneAbbreviationSuffix}"
|
||||
msgstr ""
|
||||
msgstr "Jest dzisiaj{timeZoneAbbreviationSuffix}"
|
||||
|
||||
#. js-lingui-id: IhCN5p
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOOIDCForm.tsx
|
||||
@@ -6861,7 +6861,7 @@ msgstr ""
|
||||
#. js-lingui-id: 5Kn+XX
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "List installed applications. Use filter to search for a specific application"
|
||||
msgstr ""
|
||||
msgstr "Wyświetl zainstalowane aplikacje. Użyj filtra, aby wyszukać konkretną aplikację"
|
||||
|
||||
#. js-lingui-id: HhVDr2
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
@@ -7053,7 +7053,7 @@ msgstr "Zarządzaj przepływami pracy"
|
||||
#. js-lingui-id: cbzOP7
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
|
||||
msgid "Manage your app"
|
||||
msgstr ""
|
||||
msgstr "Zarządzaj swoją aplikacją"
|
||||
|
||||
#. js-lingui-id: FyFNsd
|
||||
#: src/pages/settings/accounts/SettingsAccounts.tsx
|
||||
@@ -8237,7 +8237,7 @@ msgstr "Ustawienia uprawnień obiektów i pól"
|
||||
#. js-lingui-id: YFI9hD
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
msgid "Objects managed by this app"
|
||||
msgstr ""
|
||||
msgstr "Obiekty zarządzane przez tę aplikację"
|
||||
|
||||
#. js-lingui-id: BwJKBw
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
|
||||
@@ -9124,7 +9124,7 @@ msgstr "Przeczytaj listę zmian"
|
||||
#. js-lingui-id: ibPuCP
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "Read documentation"
|
||||
msgstr ""
|
||||
msgstr "Przeczytaj dokumentację"
|
||||
|
||||
#. js-lingui-id: BT7pY+
|
||||
#: src/modules/settings/profile/components/SetOrChangePassword.tsx
|
||||
@@ -9748,7 +9748,7 @@ msgstr "Szukaj agenta..."
|
||||
#. js-lingui-id: fGTI3o
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "Search an application"
|
||||
msgstr ""
|
||||
msgstr "Wyszukaj aplikację"
|
||||
|
||||
#. js-lingui-id: kdagxk
|
||||
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTable.tsx
|
||||
@@ -10201,7 +10201,7 @@ msgstr "funkcja bezserwerowa"
|
||||
#. js-lingui-id: 0WOel+
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
msgid "Serverless functions powering this app"
|
||||
msgstr ""
|
||||
msgstr "Funkcje bezserwerowe obsługujące tę aplikację"
|
||||
|
||||
#. js-lingui-id: LUc0oL
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
@@ -11204,8 +11204,7 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: Ox1hE7
|
||||
#: src/modules/settings/profile/components/DeleteAccount.tsx
|
||||
msgid ""
|
||||
"This action cannot be undone. This will permanently delete your\n"
|
||||
msgid "This action cannot be undone. This will permanently delete your\n"
|
||||
" entire account."
|
||||
msgstr "Ta czynność nie może zostać cofnięta. Spowoduje to trwałe usunięcie całego Twojego konta."
|
||||
|
||||
@@ -11876,7 +11875,7 @@ msgstr "Aktualizacja"
|
||||
#. js-lingui-id: 7aHRdp
|
||||
#: src/modules/ai/components/AIChatCreditsExhaustedMessage.tsx
|
||||
msgid "Upgrade Plan"
|
||||
msgstr ""
|
||||
msgstr "Zaktualizuj plan"
|
||||
|
||||
#. js-lingui-id: ONWvwQ
|
||||
#: src/modules/ui/input/components/ImageInput.tsx
|
||||
@@ -12111,7 +12110,7 @@ msgstr "Zobacz szczegóły płatności"
|
||||
#. js-lingui-id: SXCuo2
|
||||
#: src/modules/ai/components/AIChatApiKeyNotConfiguredMessage.tsx
|
||||
msgid "View Docs"
|
||||
msgstr ""
|
||||
msgstr "Wyświetl dokumentację"
|
||||
|
||||
#. js-lingui-id: Mv1YVf
|
||||
#: src/modules/ui/feedback/snack-bar-manager/utils/build-error-action.util.ts
|
||||
@@ -12266,11 +12265,9 @@ msgstr "Wyślemy ci link do weryfikacji własności domeny"
|
||||
|
||||
#. js-lingui-id: X56YGk
|
||||
#: src/pages/onboarding/PaymentSuccess.tsx
|
||||
msgid ""
|
||||
"We're waiting for a confirmation from our payment provider (Stripe).\n"
|
||||
msgid "We're waiting for a confirmation from our payment provider (Stripe).\n"
|
||||
"Please try again in a few seconds, sorry."
|
||||
msgstr ""
|
||||
"Czekamy na potwierdzenie od naszego dostawcy płatności (Stripe).\n"
|
||||
msgstr "Czekamy na potwierdzenie od naszego dostawcy płatności (Stripe).\n"
|
||||
"Spróbuj ponownie za kilka sekund, przepraszamy."
|
||||
|
||||
#. js-lingui-id: LnnVIT
|
||||
@@ -12593,7 +12590,7 @@ msgstr "Nie masz uprawnień do tworzenia rekordów dla tego obiektu"
|
||||
#. js-lingui-id: iibZbD
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "You can either create a private app or share it to others"
|
||||
msgstr ""
|
||||
msgstr "Możesz utworzyć prywatną aplikację albo udostępnić ją innym"
|
||||
|
||||
#. js-lingui-id: OLE3Ky
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
|
||||
|
||||
@@ -67,7 +67,7 @@ msgstr ": Passado"
|
||||
#. js-lingui-id: DIUF3A
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
msgid ": Today{timeZoneAbbreviationSuffix}"
|
||||
msgstr ""
|
||||
msgstr ": Hoje{timeZoneAbbreviationSuffix}"
|
||||
|
||||
#. js-lingui-id: N/lIUf
|
||||
#: src/modules/billing/hooks/useBillingWording.ts
|
||||
@@ -129,13 +129,13 @@ msgstr "{0, plural, one {{1} trabalho não pôde ser restaurado} other {{2} trab
|
||||
#. placeholder {0}: Math.abs(days)
|
||||
#: src/utils/date-utils.ts
|
||||
msgid "{0, plural, one {{days} day} other {{days} days}}"
|
||||
msgstr ""
|
||||
msgstr "{0, plural, one {{days} dia} other {{days} dias}}"
|
||||
|
||||
#. js-lingui-id: dXYycw
|
||||
#. placeholder {0}: Math.abs(years)
|
||||
#: src/utils/date-utils.ts
|
||||
msgid "{0, plural, one {{years} year} other {{years} years}}"
|
||||
msgstr ""
|
||||
msgstr "{0, plural, one {{years} ano} other {{years} anos}}"
|
||||
|
||||
#. js-lingui-id: Qvm3VE
|
||||
#. placeholder {0}: selectedOptions.length
|
||||
@@ -1067,7 +1067,7 @@ msgstr "Após um determinado período de tempo"
|
||||
#. js-lingui-id: YPnvqG
|
||||
#: src/modules/object-record/record-calendar/month/hooks/useRecordCalendarQueryDateRangeFilter.tsx
|
||||
msgid "After or equal"
|
||||
msgstr ""
|
||||
msgstr "Depois de ou igual a"
|
||||
|
||||
#. js-lingui-id: fcYF58
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
@@ -1119,7 +1119,7 @@ msgstr "Agentes"
|
||||
#. js-lingui-id: wFe+5D
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
msgid "Agents powering this app"
|
||||
msgstr ""
|
||||
msgstr "Agentes que impulsionam este aplicativo"
|
||||
|
||||
#. js-lingui-id: 0k5XwN
|
||||
#: src/pages/settings/ai/components/SettingsAIAgentsTable.tsx
|
||||
@@ -1162,7 +1162,7 @@ msgstr "Modelos de IA"
|
||||
#. js-lingui-id: Sfwld8
|
||||
#: src/modules/ai/components/AIChatApiKeyNotConfiguredMessage.tsx
|
||||
msgid "AI not configured. Set OPENAI_API_KEY, ANTHROPIC_API_KEY, or XAI_API_KEY in your environment."
|
||||
msgstr ""
|
||||
msgstr "IA não configurada. Defina OPENAI_API_KEY, ANTHROPIC_API_KEY ou XAI_API_KEY no seu ambiente."
|
||||
|
||||
#. js-lingui-id: jwOWhc
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
@@ -2515,7 +2515,7 @@ msgstr "Menu de Comando"
|
||||
#. js-lingui-id: 4XlFx/
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "Commands copied to clipboard"
|
||||
msgstr ""
|
||||
msgstr "Comandos copiados para a área de transferência"
|
||||
|
||||
#. js-lingui-id: A9u+7N
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
@@ -2745,7 +2745,7 @@ msgstr "Criação automática de contatos"
|
||||
#. js-lingui-id: cByGGA
|
||||
#: src/modules/information-banner/components/billing/InformationBannerEndTrialPeriod.tsx
|
||||
msgid "Contact your admin to continue using Workflow or AI features."
|
||||
msgstr ""
|
||||
msgstr "Entre em contato com seu administrador para continuar usando os recursos de fluxos de trabalho ou de IA."
|
||||
|
||||
#. js-lingui-id: /5mghO
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
@@ -2852,7 +2852,7 @@ msgstr "Copiar código"
|
||||
#. js-lingui-id: Es0ros
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "Copy commands"
|
||||
msgstr ""
|
||||
msgstr "Copiar comandos"
|
||||
|
||||
#. js-lingui-id: 7eVkEH
|
||||
#: src/pages/onboarding/InviteTeam.tsx
|
||||
@@ -3021,7 +3021,7 @@ msgstr "Criar Espaço de Trabalho"
|
||||
#. js-lingui-id: /WlFSf
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "Create an application"
|
||||
msgstr ""
|
||||
msgstr "Criar uma aplicação"
|
||||
|
||||
#. js-lingui-id: 8ZjIgO
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
|
||||
@@ -3172,12 +3172,12 @@ msgstr "Créditos por período"
|
||||
#. js-lingui-id: EABlI0
|
||||
#: src/modules/ai/components/AIChatCreditsExhaustedMessage.tsx
|
||||
msgid "Credits exhausted. Please contact your workspace admin to upgrade."
|
||||
msgstr ""
|
||||
msgstr "Créditos esgotados. Entre em contato com o administrador do seu espaço de trabalho para atualizar."
|
||||
|
||||
#. js-lingui-id: JIXvMy
|
||||
#: src/modules/ai/components/AIChatCreditsExhaustedMessage.tsx
|
||||
msgid "Credits exhausted. Upgrade your plan to get more credits."
|
||||
msgstr ""
|
||||
msgstr "Créditos esgotados. Atualize seu plano para obter mais créditos."
|
||||
|
||||
#. js-lingui-id: n3kKrs
|
||||
#: src/modules/billing/components/SettingsBillingCreditsSection.tsx
|
||||
@@ -4450,12 +4450,12 @@ msgstr "Habilitar recursos específicos do modelo"
|
||||
#. js-lingui-id: k1i50B
|
||||
#: src/modules/information-banner/components/billing/InformationBannerEndTrialPeriod.tsx
|
||||
msgid "End Trial Period"
|
||||
msgstr ""
|
||||
msgstr "Encerrar período de teste"
|
||||
|
||||
#. js-lingui-id: QEUZoG
|
||||
#: src/modules/information-banner/components/billing/InformationBannerEndTrialPeriod.tsx
|
||||
msgid "End trial period to continue using Workflow or AI features."
|
||||
msgstr ""
|
||||
msgstr "Encerre o período de teste para continuar usando os recursos de fluxos de trabalho ou de IA."
|
||||
|
||||
#. js-lingui-id: T3juzf
|
||||
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
|
||||
@@ -5560,7 +5560,7 @@ msgstr "Quarta"
|
||||
#. js-lingui-id: aUj1gh
|
||||
#: src/modules/ai/components/AIChatCreditsExhaustedMessage.tsx
|
||||
msgid "Free trial credits exhausted. Subscribe now to continue using AI features."
|
||||
msgstr ""
|
||||
msgstr "Créditos do teste gratuito esgotados. Assine agora para continuar usando os recursos de IA."
|
||||
|
||||
#. js-lingui-id: nLC6tu
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
@@ -5581,7 +5581,7 @@ msgstr "Acesso total"
|
||||
#. js-lingui-id: xANKBj
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
msgid "Functions"
|
||||
msgstr ""
|
||||
msgstr "Funções"
|
||||
|
||||
#. js-lingui-id: tkr79G
|
||||
#: src/utils/title-utils.ts
|
||||
@@ -6241,7 +6241,7 @@ msgstr "Instalar e gerenciar aplicativos"
|
||||
#. js-lingui-id: N52taw
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "Installed applications"
|
||||
msgstr ""
|
||||
msgstr "Aplicativos instalados"
|
||||
|
||||
#. js-lingui-id: AwUsnG
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
@@ -6366,12 +6366,12 @@ msgstr "Número inválido"
|
||||
#. js-lingui-id: sBZMWb
|
||||
#: src/modules/page-layout/widgets/components/PageLayoutWidgetNoDataDisplay.tsx
|
||||
msgid "Invalid URL"
|
||||
msgstr ""
|
||||
msgstr "URL inválida"
|
||||
|
||||
#. js-lingui-id: yRuMQS
|
||||
#: src/modules/page-layout/widgets/components/PageLayoutWidgetNoDataDisplay.tsx
|
||||
msgid "Invalid URL. Click edit to configure this widget."
|
||||
msgstr ""
|
||||
msgstr "URL inválida. Clique em editar para configurar este widget."
|
||||
|
||||
#. js-lingui-id: VEKoJx
|
||||
#: src/modules/settings/two-factor-authentication/hooks/useTwoFactorVerificationForSettings.ts
|
||||
@@ -6438,7 +6438,7 @@ msgstr "É"
|
||||
#. js-lingui-id: jI6+Q3
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
msgid "Is after or equal"
|
||||
msgstr ""
|
||||
msgstr "É depois de ou igual a"
|
||||
|
||||
#. js-lingui-id: NgIlDJ
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
@@ -6533,7 +6533,7 @@ msgstr "É relativo"
|
||||
#. js-lingui-id: 8vhfz7
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
msgid "Is today{timeZoneAbbreviationSuffix}"
|
||||
msgstr ""
|
||||
msgstr "É hoje{timeZoneAbbreviationSuffix}"
|
||||
|
||||
#. js-lingui-id: IhCN5p
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOOIDCForm.tsx
|
||||
@@ -6861,7 +6861,7 @@ msgstr ""
|
||||
#. js-lingui-id: 5Kn+XX
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "List installed applications. Use filter to search for a specific application"
|
||||
msgstr ""
|
||||
msgstr "Liste os aplicativos instalados. Use o filtro para pesquisar um aplicativo específico."
|
||||
|
||||
#. js-lingui-id: HhVDr2
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
@@ -7053,7 +7053,7 @@ msgstr "Gerenciar workflows"
|
||||
#. js-lingui-id: cbzOP7
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
|
||||
msgid "Manage your app"
|
||||
msgstr ""
|
||||
msgstr "Gerencie seu aplicativo"
|
||||
|
||||
#. js-lingui-id: FyFNsd
|
||||
#: src/pages/settings/accounts/SettingsAccounts.tsx
|
||||
@@ -8237,7 +8237,7 @@ msgstr "Configurações de permissões de objetos e campos"
|
||||
#. js-lingui-id: YFI9hD
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
msgid "Objects managed by this app"
|
||||
msgstr ""
|
||||
msgstr "Objetos gerenciados por este aplicativo"
|
||||
|
||||
#. js-lingui-id: BwJKBw
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
|
||||
@@ -9124,7 +9124,7 @@ msgstr "Leia o registro de alterações"
|
||||
#. js-lingui-id: ibPuCP
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "Read documentation"
|
||||
msgstr ""
|
||||
msgstr "Ler documentação"
|
||||
|
||||
#. js-lingui-id: BT7pY+
|
||||
#: src/modules/settings/profile/components/SetOrChangePassword.tsx
|
||||
@@ -9748,7 +9748,7 @@ msgstr "Pesquisar um agente..."
|
||||
#. js-lingui-id: fGTI3o
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "Search an application"
|
||||
msgstr ""
|
||||
msgstr "Pesquisar um aplicativo"
|
||||
|
||||
#. js-lingui-id: kdagxk
|
||||
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTable.tsx
|
||||
@@ -10201,7 +10201,7 @@ msgstr "função serverless"
|
||||
#. js-lingui-id: 0WOel+
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
msgid "Serverless functions powering this app"
|
||||
msgstr ""
|
||||
msgstr "Funções serverless que dão suporte a este aplicativo"
|
||||
|
||||
#. js-lingui-id: LUc0oL
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
@@ -11204,8 +11204,7 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: Ox1hE7
|
||||
#: src/modules/settings/profile/components/DeleteAccount.tsx
|
||||
msgid ""
|
||||
"This action cannot be undone. This will permanently delete your\n"
|
||||
msgid "This action cannot be undone. This will permanently delete your\n"
|
||||
" entire account."
|
||||
msgstr "Essa ação não pode ser desfeita. Isso excluirá permanentemente sua conta inteira."
|
||||
|
||||
@@ -11876,7 +11875,7 @@ msgstr "Upgrade"
|
||||
#. js-lingui-id: 7aHRdp
|
||||
#: src/modules/ai/components/AIChatCreditsExhaustedMessage.tsx
|
||||
msgid "Upgrade Plan"
|
||||
msgstr ""
|
||||
msgstr "Atualizar plano"
|
||||
|
||||
#. js-lingui-id: ONWvwQ
|
||||
#: src/modules/ui/input/components/ImageInput.tsx
|
||||
@@ -12111,7 +12110,7 @@ msgstr "Ver detalhes de faturamento"
|
||||
#. js-lingui-id: SXCuo2
|
||||
#: src/modules/ai/components/AIChatApiKeyNotConfiguredMessage.tsx
|
||||
msgid "View Docs"
|
||||
msgstr ""
|
||||
msgstr "Ver documentação"
|
||||
|
||||
#. js-lingui-id: Mv1YVf
|
||||
#: src/modules/ui/feedback/snack-bar-manager/utils/build-error-action.util.ts
|
||||
@@ -12266,11 +12265,9 @@ msgstr "Enviaremos um link para verificar a propriedade do domínio"
|
||||
|
||||
#. js-lingui-id: X56YGk
|
||||
#: src/pages/onboarding/PaymentSuccess.tsx
|
||||
msgid ""
|
||||
"We're waiting for a confirmation from our payment provider (Stripe).\n"
|
||||
msgid "We're waiting for a confirmation from our payment provider (Stripe).\n"
|
||||
"Please try again in a few seconds, sorry."
|
||||
msgstr ""
|
||||
"Estamos aguardando a confirmação do nosso provedor de pagamentos (Stripe).\n"
|
||||
msgstr "Estamos aguardando a confirmação do nosso provedor de pagamentos (Stripe).\n"
|
||||
"Tente novamente em alguns segundos, por favor."
|
||||
|
||||
#. js-lingui-id: LnnVIT
|
||||
@@ -12593,7 +12590,7 @@ msgstr "Você não está autorizado a criar registros para este objeto"
|
||||
#. js-lingui-id: iibZbD
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "You can either create a private app or share it to others"
|
||||
msgstr ""
|
||||
msgstr "Você pode criar um aplicativo privado ou compartilhá-lo com outras pessoas"
|
||||
|
||||
#. js-lingui-id: OLE3Ky
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
|
||||
|
||||
@@ -67,7 +67,7 @@ msgstr ": Passado"
|
||||
#. js-lingui-id: DIUF3A
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
msgid ": Today{timeZoneAbbreviationSuffix}"
|
||||
msgstr ""
|
||||
msgstr ": Hoje{timeZoneAbbreviationSuffix}"
|
||||
|
||||
#. js-lingui-id: N/lIUf
|
||||
#: src/modules/billing/hooks/useBillingWording.ts
|
||||
@@ -129,13 +129,13 @@ msgstr "{0, plural, one {{1} tarefa não pôde ser reiniciada} other {{2} tarefa
|
||||
#. placeholder {0}: Math.abs(days)
|
||||
#: src/utils/date-utils.ts
|
||||
msgid "{0, plural, one {{days} day} other {{days} days}}"
|
||||
msgstr ""
|
||||
msgstr "{0, plural, one {{days} dia} other {{days} dias}}"
|
||||
|
||||
#. js-lingui-id: dXYycw
|
||||
#. placeholder {0}: Math.abs(years)
|
||||
#: src/utils/date-utils.ts
|
||||
msgid "{0, plural, one {{years} year} other {{years} years}}"
|
||||
msgstr ""
|
||||
msgstr "{0, plural, one {{years} ano} other {{years} anos}}"
|
||||
|
||||
#. js-lingui-id: Qvm3VE
|
||||
#. placeholder {0}: selectedOptions.length
|
||||
@@ -1067,7 +1067,7 @@ msgstr "Após um determinado período de tempo"
|
||||
#. js-lingui-id: YPnvqG
|
||||
#: src/modules/object-record/record-calendar/month/hooks/useRecordCalendarQueryDateRangeFilter.tsx
|
||||
msgid "After or equal"
|
||||
msgstr ""
|
||||
msgstr "Posterior ou igual"
|
||||
|
||||
#. js-lingui-id: fcYF58
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
@@ -1119,7 +1119,7 @@ msgstr "Agentes"
|
||||
#. js-lingui-id: wFe+5D
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
msgid "Agents powering this app"
|
||||
msgstr ""
|
||||
msgstr "Agentes por trás deste aplicativo"
|
||||
|
||||
#. js-lingui-id: 0k5XwN
|
||||
#: src/pages/settings/ai/components/SettingsAIAgentsTable.tsx
|
||||
@@ -1162,7 +1162,7 @@ msgstr ""
|
||||
#. js-lingui-id: Sfwld8
|
||||
#: src/modules/ai/components/AIChatApiKeyNotConfiguredMessage.tsx
|
||||
msgid "AI not configured. Set OPENAI_API_KEY, ANTHROPIC_API_KEY, or XAI_API_KEY in your environment."
|
||||
msgstr ""
|
||||
msgstr "IA não configurada. Defina OPENAI_API_KEY, ANTHROPIC_API_KEY ou XAI_API_KEY no seu ambiente."
|
||||
|
||||
#. js-lingui-id: jwOWhc
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
@@ -2515,7 +2515,7 @@ msgstr "Menu de Comandos"
|
||||
#. js-lingui-id: 4XlFx/
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "Commands copied to clipboard"
|
||||
msgstr ""
|
||||
msgstr "Comandos copiados para a área de transferência"
|
||||
|
||||
#. js-lingui-id: A9u+7N
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
@@ -2745,7 +2745,7 @@ msgstr "Criação automática de contatos"
|
||||
#. js-lingui-id: cByGGA
|
||||
#: src/modules/information-banner/components/billing/InformationBannerEndTrialPeriod.tsx
|
||||
msgid "Contact your admin to continue using Workflow or AI features."
|
||||
msgstr ""
|
||||
msgstr "Entre em contato com o seu administrador para continuar usando os fluxos de trabalho ou os recursos de IA."
|
||||
|
||||
#. js-lingui-id: /5mghO
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
@@ -2852,7 +2852,7 @@ msgstr "Copiar código"
|
||||
#. js-lingui-id: Es0ros
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "Copy commands"
|
||||
msgstr ""
|
||||
msgstr "Copiar comandos"
|
||||
|
||||
#. js-lingui-id: 7eVkEH
|
||||
#: src/pages/onboarding/InviteTeam.tsx
|
||||
@@ -3021,7 +3021,7 @@ msgstr "Criar Espaço de Trabalho"
|
||||
#. js-lingui-id: /WlFSf
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "Create an application"
|
||||
msgstr ""
|
||||
msgstr "Criar um aplicativo"
|
||||
|
||||
#. js-lingui-id: 8ZjIgO
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
|
||||
@@ -3172,12 +3172,12 @@ msgstr "Créditos por período"
|
||||
#. js-lingui-id: EABlI0
|
||||
#: src/modules/ai/components/AIChatCreditsExhaustedMessage.tsx
|
||||
msgid "Credits exhausted. Please contact your workspace admin to upgrade."
|
||||
msgstr ""
|
||||
msgstr "Créditos esgotados. Entre em contato com o administrador do seu espaço de trabalho para atualizar."
|
||||
|
||||
#. js-lingui-id: JIXvMy
|
||||
#: src/modules/ai/components/AIChatCreditsExhaustedMessage.tsx
|
||||
msgid "Credits exhausted. Upgrade your plan to get more credits."
|
||||
msgstr ""
|
||||
msgstr "Créditos esgotados. Atualize seu plano para obter mais créditos."
|
||||
|
||||
#. js-lingui-id: n3kKrs
|
||||
#: src/modules/billing/components/SettingsBillingCreditsSection.tsx
|
||||
@@ -4450,12 +4450,12 @@ msgstr "Ativar recursos específicos do modelo"
|
||||
#. js-lingui-id: k1i50B
|
||||
#: src/modules/information-banner/components/billing/InformationBannerEndTrialPeriod.tsx
|
||||
msgid "End Trial Period"
|
||||
msgstr ""
|
||||
msgstr "Encerrar período de avaliação"
|
||||
|
||||
#. js-lingui-id: QEUZoG
|
||||
#: src/modules/information-banner/components/billing/InformationBannerEndTrialPeriod.tsx
|
||||
msgid "End trial period to continue using Workflow or AI features."
|
||||
msgstr ""
|
||||
msgstr "Encerre o período de avaliação para continuar usando os fluxos de trabalho ou os recursos de IA."
|
||||
|
||||
#. js-lingui-id: T3juzf
|
||||
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
|
||||
@@ -5560,7 +5560,7 @@ msgstr "Quarto"
|
||||
#. js-lingui-id: aUj1gh
|
||||
#: src/modules/ai/components/AIChatCreditsExhaustedMessage.tsx
|
||||
msgid "Free trial credits exhausted. Subscribe now to continue using AI features."
|
||||
msgstr ""
|
||||
msgstr "Créditos da avaliação gratuita esgotados. Assine agora para continuar usando os recursos de IA."
|
||||
|
||||
#. js-lingui-id: nLC6tu
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
@@ -5581,7 +5581,7 @@ msgstr "Acesso total"
|
||||
#. js-lingui-id: xANKBj
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
msgid "Functions"
|
||||
msgstr ""
|
||||
msgstr "Funções"
|
||||
|
||||
#. js-lingui-id: tkr79G
|
||||
#: src/utils/title-utils.ts
|
||||
@@ -6241,7 +6241,7 @@ msgstr "Instalar e gerenciar aplicações"
|
||||
#. js-lingui-id: N52taw
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "Installed applications"
|
||||
msgstr ""
|
||||
msgstr "Aplicações instaladas"
|
||||
|
||||
#. js-lingui-id: AwUsnG
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
@@ -6366,12 +6366,12 @@ msgstr "Número inválido"
|
||||
#. js-lingui-id: sBZMWb
|
||||
#: src/modules/page-layout/widgets/components/PageLayoutWidgetNoDataDisplay.tsx
|
||||
msgid "Invalid URL"
|
||||
msgstr ""
|
||||
msgstr "URL inválida"
|
||||
|
||||
#. js-lingui-id: yRuMQS
|
||||
#: src/modules/page-layout/widgets/components/PageLayoutWidgetNoDataDisplay.tsx
|
||||
msgid "Invalid URL. Click edit to configure this widget."
|
||||
msgstr ""
|
||||
msgstr "URL inválida. Clique em editar para configurar este widget."
|
||||
|
||||
#. js-lingui-id: VEKoJx
|
||||
#: src/modules/settings/two-factor-authentication/hooks/useTwoFactorVerificationForSettings.ts
|
||||
@@ -6438,7 +6438,7 @@ msgstr "É"
|
||||
#. js-lingui-id: jI6+Q3
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
msgid "Is after or equal"
|
||||
msgstr ""
|
||||
msgstr "É posterior ou igual"
|
||||
|
||||
#. js-lingui-id: NgIlDJ
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
@@ -6533,7 +6533,7 @@ msgstr "É relativo"
|
||||
#. js-lingui-id: 8vhfz7
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
msgid "Is today{timeZoneAbbreviationSuffix}"
|
||||
msgstr ""
|
||||
msgstr "É hoje{timeZoneAbbreviationSuffix}"
|
||||
|
||||
#. js-lingui-id: IhCN5p
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOOIDCForm.tsx
|
||||
@@ -6861,7 +6861,7 @@ msgstr ""
|
||||
#. js-lingui-id: 5Kn+XX
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "List installed applications. Use filter to search for a specific application"
|
||||
msgstr ""
|
||||
msgstr "Liste as aplicações instaladas. Use o filtro para pesquisar uma aplicação específica"
|
||||
|
||||
#. js-lingui-id: HhVDr2
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
@@ -7053,7 +7053,7 @@ msgstr "Gerenciar workflows"
|
||||
#. js-lingui-id: cbzOP7
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
|
||||
msgid "Manage your app"
|
||||
msgstr ""
|
||||
msgstr "Gerencie sua aplicação"
|
||||
|
||||
#. js-lingui-id: FyFNsd
|
||||
#: src/pages/settings/accounts/SettingsAccounts.tsx
|
||||
@@ -8237,7 +8237,7 @@ msgstr "Configurações de permissões de objetos e campos"
|
||||
#. js-lingui-id: YFI9hD
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
msgid "Objects managed by this app"
|
||||
msgstr ""
|
||||
msgstr "Objetos gerenciados por esta aplicação"
|
||||
|
||||
#. js-lingui-id: BwJKBw
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
|
||||
@@ -9124,7 +9124,7 @@ msgstr "Ler o registro de alterações"
|
||||
#. js-lingui-id: ibPuCP
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "Read documentation"
|
||||
msgstr ""
|
||||
msgstr "Ler a documentação"
|
||||
|
||||
#. js-lingui-id: BT7pY+
|
||||
#: src/modules/settings/profile/components/SetOrChangePassword.tsx
|
||||
@@ -9748,7 +9748,7 @@ msgstr "Pesquisar um agente..."
|
||||
#. js-lingui-id: fGTI3o
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "Search an application"
|
||||
msgstr ""
|
||||
msgstr "Pesquisar uma aplicação"
|
||||
|
||||
#. js-lingui-id: kdagxk
|
||||
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTable.tsx
|
||||
@@ -10201,7 +10201,7 @@ msgstr "função serverless"
|
||||
#. js-lingui-id: 0WOel+
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
msgid "Serverless functions powering this app"
|
||||
msgstr ""
|
||||
msgstr "Funções serverless que alimentam esta aplicação"
|
||||
|
||||
#. js-lingui-id: LUc0oL
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
@@ -11204,8 +11204,7 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: Ox1hE7
|
||||
#: src/modules/settings/profile/components/DeleteAccount.tsx
|
||||
msgid ""
|
||||
"This action cannot be undone. This will permanently delete your\n"
|
||||
msgid "This action cannot be undone. This will permanently delete your\n"
|
||||
" entire account."
|
||||
msgstr "Esta ação não pode ser desfeita. Isto eliminará permanentemente toda a sua conta."
|
||||
|
||||
@@ -11876,7 +11875,7 @@ msgstr "Upgrade"
|
||||
#. js-lingui-id: 7aHRdp
|
||||
#: src/modules/ai/components/AIChatCreditsExhaustedMessage.tsx
|
||||
msgid "Upgrade Plan"
|
||||
msgstr ""
|
||||
msgstr "Atualizar plano"
|
||||
|
||||
#. js-lingui-id: ONWvwQ
|
||||
#: src/modules/ui/input/components/ImageInput.tsx
|
||||
@@ -12111,7 +12110,7 @@ msgstr "Ver detalhes de faturação"
|
||||
#. js-lingui-id: SXCuo2
|
||||
#: src/modules/ai/components/AIChatApiKeyNotConfiguredMessage.tsx
|
||||
msgid "View Docs"
|
||||
msgstr ""
|
||||
msgstr "Ver documentação"
|
||||
|
||||
#. js-lingui-id: Mv1YVf
|
||||
#: src/modules/ui/feedback/snack-bar-manager/utils/build-error-action.util.ts
|
||||
@@ -12266,11 +12265,9 @@ msgstr "Enviaremos um link para você verificar a propriedade do domínio"
|
||||
|
||||
#. js-lingui-id: X56YGk
|
||||
#: src/pages/onboarding/PaymentSuccess.tsx
|
||||
msgid ""
|
||||
"We're waiting for a confirmation from our payment provider (Stripe).\n"
|
||||
msgid "We're waiting for a confirmation from our payment provider (Stripe).\n"
|
||||
"Please try again in a few seconds, sorry."
|
||||
msgstr ""
|
||||
"Estamos à espera de uma confirmação do nosso fornecedor de pagamentos (Stripe).\n"
|
||||
msgstr "Estamos à espera de uma confirmação do nosso fornecedor de pagamentos (Stripe).\n"
|
||||
"Tente novamente dentro de alguns segundos, desculpe."
|
||||
|
||||
#. js-lingui-id: LnnVIT
|
||||
@@ -12593,7 +12590,7 @@ msgstr "Você não tem permissão para criar registros para este objeto"
|
||||
#. js-lingui-id: iibZbD
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "You can either create a private app or share it to others"
|
||||
msgstr ""
|
||||
msgstr "Você pode criar uma aplicação privada ou compartilhá-la com outras pessoas"
|
||||
|
||||
#. js-lingui-id: OLE3Ky
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
|
||||
|
||||
@@ -67,7 +67,7 @@ msgstr ": Trecut"
|
||||
#. js-lingui-id: DIUF3A
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
msgid ": Today{timeZoneAbbreviationSuffix}"
|
||||
msgstr ""
|
||||
msgstr ": Astăzi{timeZoneAbbreviationSuffix}"
|
||||
|
||||
#. js-lingui-id: N/lIUf
|
||||
#: src/modules/billing/hooks/useBillingWording.ts
|
||||
@@ -1067,7 +1067,7 @@ msgstr "După un anumit timp"
|
||||
#. js-lingui-id: YPnvqG
|
||||
#: src/modules/object-record/record-calendar/month/hooks/useRecordCalendarQueryDateRangeFilter.tsx
|
||||
msgid "After or equal"
|
||||
msgstr ""
|
||||
msgstr "După sau egal"
|
||||
|
||||
#. js-lingui-id: fcYF58
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
@@ -1119,7 +1119,7 @@ msgstr "Agenți"
|
||||
#. js-lingui-id: wFe+5D
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
msgid "Agents powering this app"
|
||||
msgstr ""
|
||||
msgstr "Agenți care susțin această aplicație"
|
||||
|
||||
#. js-lingui-id: 0k5XwN
|
||||
#: src/pages/settings/ai/components/SettingsAIAgentsTable.tsx
|
||||
@@ -1162,7 +1162,7 @@ msgstr ""
|
||||
#. js-lingui-id: Sfwld8
|
||||
#: src/modules/ai/components/AIChatApiKeyNotConfiguredMessage.tsx
|
||||
msgid "AI not configured. Set OPENAI_API_KEY, ANTHROPIC_API_KEY, or XAI_API_KEY in your environment."
|
||||
msgstr ""
|
||||
msgstr "AI nu este configurată. Setați OPENAI_API_KEY, ANTHROPIC_API_KEY sau XAI_API_KEY în mediul dvs."
|
||||
|
||||
#. js-lingui-id: jwOWhc
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
@@ -2515,7 +2515,7 @@ msgstr "Meniu de comenzi"
|
||||
#. js-lingui-id: 4XlFx/
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "Commands copied to clipboard"
|
||||
msgstr ""
|
||||
msgstr "Comenzi copiate în clipboard"
|
||||
|
||||
#. js-lingui-id: A9u+7N
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
@@ -2745,7 +2745,7 @@ msgstr "Creare automată contacte"
|
||||
#. js-lingui-id: cByGGA
|
||||
#: src/modules/information-banner/components/billing/InformationBannerEndTrialPeriod.tsx
|
||||
msgid "Contact your admin to continue using Workflow or AI features."
|
||||
msgstr ""
|
||||
msgstr "Contactați administratorul dvs. pentru a continua să utilizați funcțiile pentru fluxuri de lucru sau AI."
|
||||
|
||||
#. js-lingui-id: /5mghO
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
@@ -2852,7 +2852,7 @@ msgstr "Copiază codul"
|
||||
#. js-lingui-id: Es0ros
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "Copy commands"
|
||||
msgstr ""
|
||||
msgstr "Copiază comenzile"
|
||||
|
||||
#. js-lingui-id: 7eVkEH
|
||||
#: src/pages/onboarding/InviteTeam.tsx
|
||||
@@ -3021,7 +3021,7 @@ msgstr "Creează un spațiu de lucru"
|
||||
#. js-lingui-id: /WlFSf
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "Create an application"
|
||||
msgstr ""
|
||||
msgstr "Creează o aplicație"
|
||||
|
||||
#. js-lingui-id: 8ZjIgO
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
|
||||
@@ -3172,12 +3172,12 @@ msgstr "Credite pe perioadă"
|
||||
#. js-lingui-id: EABlI0
|
||||
#: src/modules/ai/components/AIChatCreditsExhaustedMessage.tsx
|
||||
msgid "Credits exhausted. Please contact your workspace admin to upgrade."
|
||||
msgstr ""
|
||||
msgstr "Creditele au fost epuizate. Contactați administratorul spațiului dvs. de lucru pentru actualizare."
|
||||
|
||||
#. js-lingui-id: JIXvMy
|
||||
#: src/modules/ai/components/AIChatCreditsExhaustedMessage.tsx
|
||||
msgid "Credits exhausted. Upgrade your plan to get more credits."
|
||||
msgstr ""
|
||||
msgstr "Creditele au fost epuizate. Actualizați planul pentru a obține mai multe credite."
|
||||
|
||||
#. js-lingui-id: n3kKrs
|
||||
#: src/modules/billing/components/SettingsBillingCreditsSection.tsx
|
||||
@@ -4450,12 +4450,12 @@ msgstr "Activează funcții specifice modelului"
|
||||
#. js-lingui-id: k1i50B
|
||||
#: src/modules/information-banner/components/billing/InformationBannerEndTrialPeriod.tsx
|
||||
msgid "End Trial Period"
|
||||
msgstr ""
|
||||
msgstr "Încheiați perioada de probă"
|
||||
|
||||
#. js-lingui-id: QEUZoG
|
||||
#: src/modules/information-banner/components/billing/InformationBannerEndTrialPeriod.tsx
|
||||
msgid "End trial period to continue using Workflow or AI features."
|
||||
msgstr ""
|
||||
msgstr "Încheiați perioada de probă pentru a continua să utilizați funcțiile pentru fluxuri de lucru sau AI."
|
||||
|
||||
#. js-lingui-id: T3juzf
|
||||
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
|
||||
@@ -5560,7 +5560,7 @@ msgstr "A Patra"
|
||||
#. js-lingui-id: aUj1gh
|
||||
#: src/modules/ai/components/AIChatCreditsExhaustedMessage.tsx
|
||||
msgid "Free trial credits exhausted. Subscribe now to continue using AI features."
|
||||
msgstr ""
|
||||
msgstr "Creditele din perioada de probă au fost epuizate. Abonați-vă acum pentru a continua să utilizați funcțiile AI."
|
||||
|
||||
#. js-lingui-id: nLC6tu
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
@@ -5581,7 +5581,7 @@ msgstr "Acces complet"
|
||||
#. js-lingui-id: xANKBj
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
msgid "Functions"
|
||||
msgstr ""
|
||||
msgstr "Funcții"
|
||||
|
||||
#. js-lingui-id: tkr79G
|
||||
#: src/utils/title-utils.ts
|
||||
@@ -6241,7 +6241,7 @@ msgstr "Instalați și gestionați aplicațiile"
|
||||
#. js-lingui-id: N52taw
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "Installed applications"
|
||||
msgstr ""
|
||||
msgstr "Aplicații instalate"
|
||||
|
||||
#. js-lingui-id: AwUsnG
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
@@ -6366,12 +6366,12 @@ msgstr "Număr invalid"
|
||||
#. js-lingui-id: sBZMWb
|
||||
#: src/modules/page-layout/widgets/components/PageLayoutWidgetNoDataDisplay.tsx
|
||||
msgid "Invalid URL"
|
||||
msgstr ""
|
||||
msgstr "Adresă URL nevalidă"
|
||||
|
||||
#. js-lingui-id: yRuMQS
|
||||
#: src/modules/page-layout/widgets/components/PageLayoutWidgetNoDataDisplay.tsx
|
||||
msgid "Invalid URL. Click edit to configure this widget."
|
||||
msgstr ""
|
||||
msgstr "Adresă URL nevalidă. Faceți clic pe editare pentru a configura acest widget."
|
||||
|
||||
#. js-lingui-id: VEKoJx
|
||||
#: src/modules/settings/two-factor-authentication/hooks/useTwoFactorVerificationForSettings.ts
|
||||
@@ -6438,7 +6438,7 @@ msgstr "Este"
|
||||
#. js-lingui-id: jI6+Q3
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
msgid "Is after or equal"
|
||||
msgstr ""
|
||||
msgstr "Este după sau egal"
|
||||
|
||||
#. js-lingui-id: NgIlDJ
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
@@ -6533,7 +6533,7 @@ msgstr "Este relativ"
|
||||
#. js-lingui-id: 8vhfz7
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
msgid "Is today{timeZoneAbbreviationSuffix}"
|
||||
msgstr ""
|
||||
msgstr "Este astăzi{timeZoneAbbreviationSuffix}"
|
||||
|
||||
#. js-lingui-id: IhCN5p
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOOIDCForm.tsx
|
||||
@@ -6861,7 +6861,7 @@ msgstr ""
|
||||
#. js-lingui-id: 5Kn+XX
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "List installed applications. Use filter to search for a specific application"
|
||||
msgstr ""
|
||||
msgstr "Listați aplicațiile instalate. Utilizați filtrul pentru a căuta o aplicație specifică"
|
||||
|
||||
#. js-lingui-id: HhVDr2
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
@@ -7053,7 +7053,7 @@ msgstr "Administrează fluxuri de lucru"
|
||||
#. js-lingui-id: cbzOP7
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
|
||||
msgid "Manage your app"
|
||||
msgstr ""
|
||||
msgstr "Gestionați aplicația dvs."
|
||||
|
||||
#. js-lingui-id: FyFNsd
|
||||
#: src/pages/settings/accounts/SettingsAccounts.tsx
|
||||
@@ -8237,7 +8237,7 @@ msgstr "Setările permisiunilor obiectelor și câmpurilor"
|
||||
#. js-lingui-id: YFI9hD
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
msgid "Objects managed by this app"
|
||||
msgstr ""
|
||||
msgstr "Obiecte gestionate de această aplicație"
|
||||
|
||||
#. js-lingui-id: BwJKBw
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
|
||||
@@ -9124,7 +9124,7 @@ msgstr "Citește jurnalul modificărilor"
|
||||
#. js-lingui-id: ibPuCP
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "Read documentation"
|
||||
msgstr ""
|
||||
msgstr "Citește documentația"
|
||||
|
||||
#. js-lingui-id: BT7pY+
|
||||
#: src/modules/settings/profile/components/SetOrChangePassword.tsx
|
||||
@@ -9748,7 +9748,7 @@ msgstr "Caută un agent..."
|
||||
#. js-lingui-id: fGTI3o
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "Search an application"
|
||||
msgstr ""
|
||||
msgstr "Căutați o aplicație"
|
||||
|
||||
#. js-lingui-id: kdagxk
|
||||
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTable.tsx
|
||||
@@ -10201,7 +10201,7 @@ msgstr "funcție serverless"
|
||||
#. js-lingui-id: 0WOel+
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
msgid "Serverless functions powering this app"
|
||||
msgstr ""
|
||||
msgstr "Funcții serverless care alimentează această aplicație"
|
||||
|
||||
#. js-lingui-id: LUc0oL
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
@@ -11204,8 +11204,7 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: Ox1hE7
|
||||
#: src/modules/settings/profile/components/DeleteAccount.tsx
|
||||
msgid ""
|
||||
"This action cannot be undone. This will permanently delete your\n"
|
||||
msgid "This action cannot be undone. This will permanently delete your\n"
|
||||
" entire account."
|
||||
msgstr "Această acțiune nu poate fi anulată. Acest lucru va șterge definitiv întregul tău cont."
|
||||
|
||||
@@ -11876,7 +11875,7 @@ msgstr "Actualizare"
|
||||
#. js-lingui-id: 7aHRdp
|
||||
#: src/modules/ai/components/AIChatCreditsExhaustedMessage.tsx
|
||||
msgid "Upgrade Plan"
|
||||
msgstr ""
|
||||
msgstr "Actualizați planul"
|
||||
|
||||
#. js-lingui-id: ONWvwQ
|
||||
#: src/modules/ui/input/components/ImageInput.tsx
|
||||
@@ -12111,7 +12110,7 @@ msgstr "Vizualizează detalii despre facturare"
|
||||
#. js-lingui-id: SXCuo2
|
||||
#: src/modules/ai/components/AIChatApiKeyNotConfiguredMessage.tsx
|
||||
msgid "View Docs"
|
||||
msgstr ""
|
||||
msgstr "Vizualizați documentația"
|
||||
|
||||
#. js-lingui-id: Mv1YVf
|
||||
#: src/modules/ui/feedback/snack-bar-manager/utils/build-error-action.util.ts
|
||||
@@ -12266,11 +12265,9 @@ msgstr "Vă vom trimite un link pentru a verifica deținerea domeniului"
|
||||
|
||||
#. js-lingui-id: X56YGk
|
||||
#: src/pages/onboarding/PaymentSuccess.tsx
|
||||
msgid ""
|
||||
"We're waiting for a confirmation from our payment provider (Stripe).\n"
|
||||
msgid "We're waiting for a confirmation from our payment provider (Stripe).\n"
|
||||
"Please try again in a few seconds, sorry."
|
||||
msgstr ""
|
||||
"Așteptăm o confirmare de la furnizorul nostru de plăți (Stripe).\n"
|
||||
msgstr "Așteptăm o confirmare de la furnizorul nostru de plăți (Stripe).\n"
|
||||
"Vă rugăm să încercați din nou peste câteva secunde."
|
||||
|
||||
#. js-lingui-id: LnnVIT
|
||||
@@ -12593,7 +12590,7 @@ msgstr "Nu aveți permisiunea de a crea înregistrări pentru acest obiect"
|
||||
#. js-lingui-id: iibZbD
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "You can either create a private app or share it to others"
|
||||
msgstr ""
|
||||
msgstr "Puteți fie să creați o aplicație privată, fie să o partajați cu alții"
|
||||
|
||||
#. js-lingui-id: OLE3Ky
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
|
||||
|
||||
Binary file not shown.
@@ -67,7 +67,7 @@ msgstr ": Прошлост"
|
||||
#. js-lingui-id: DIUF3A
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
msgid ": Today{timeZoneAbbreviationSuffix}"
|
||||
msgstr ""
|
||||
msgstr ": Данас{timeZoneAbbreviationSuffix}"
|
||||
|
||||
#. js-lingui-id: N/lIUf
|
||||
#: src/modules/billing/hooks/useBillingWording.ts
|
||||
@@ -129,13 +129,13 @@ msgstr "{0, plural, one {{1} посао није могао бити понов
|
||||
#. placeholder {0}: Math.abs(days)
|
||||
#: src/utils/date-utils.ts
|
||||
msgid "{0, plural, one {{days} day} other {{days} days}}"
|
||||
msgstr ""
|
||||
msgstr "{0, plural, one {{days} дан} few {{days} дана} other {{days} дана}}"
|
||||
|
||||
#. js-lingui-id: dXYycw
|
||||
#. placeholder {0}: Math.abs(years)
|
||||
#: src/utils/date-utils.ts
|
||||
msgid "{0, plural, one {{years} year} other {{years} years}}"
|
||||
msgstr ""
|
||||
msgstr "{0, plural, one {{years} година} few {{years} године} other {{years} година}}"
|
||||
|
||||
#. js-lingui-id: Qvm3VE
|
||||
#. placeholder {0}: selectedOptions.length
|
||||
@@ -1067,7 +1067,7 @@ msgstr "После одређеног временског периода"
|
||||
#. js-lingui-id: YPnvqG
|
||||
#: src/modules/object-record/record-calendar/month/hooks/useRecordCalendarQueryDateRangeFilter.tsx
|
||||
msgid "After or equal"
|
||||
msgstr ""
|
||||
msgstr "После или једнако"
|
||||
|
||||
#. js-lingui-id: fcYF58
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
@@ -1119,7 +1119,7 @@ msgstr "Агенти"
|
||||
#. js-lingui-id: wFe+5D
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
msgid "Agents powering this app"
|
||||
msgstr ""
|
||||
msgstr "Агенти који покрећу ову апликацију"
|
||||
|
||||
#. js-lingui-id: 0k5XwN
|
||||
#: src/pages/settings/ai/components/SettingsAIAgentsTable.tsx
|
||||
@@ -1162,7 +1162,7 @@ msgstr ""
|
||||
#. js-lingui-id: Sfwld8
|
||||
#: src/modules/ai/components/AIChatApiKeyNotConfiguredMessage.tsx
|
||||
msgid "AI not configured. Set OPENAI_API_KEY, ANTHROPIC_API_KEY, or XAI_API_KEY in your environment."
|
||||
msgstr ""
|
||||
msgstr "AI није подешен. Подесите OPENAI_API_KEY, ANTHROPIC_API_KEY или XAI_API_KEY у вашем окружењу."
|
||||
|
||||
#. js-lingui-id: jwOWhc
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
@@ -2515,7 +2515,7 @@ msgstr "Мени команди"
|
||||
#. js-lingui-id: 4XlFx/
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "Commands copied to clipboard"
|
||||
msgstr ""
|
||||
msgstr "Команде копиране у клипборд"
|
||||
|
||||
#. js-lingui-id: A9u+7N
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
@@ -2745,7 +2745,7 @@ msgstr "Аутоматска израда контаката"
|
||||
#. js-lingui-id: cByGGA
|
||||
#: src/modules/information-banner/components/billing/InformationBannerEndTrialPeriod.tsx
|
||||
msgid "Contact your admin to continue using Workflow or AI features."
|
||||
msgstr ""
|
||||
msgstr "Контактирајте администратора да бисте наставили да користите функције радног тока или AI."
|
||||
|
||||
#. js-lingui-id: /5mghO
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
@@ -2852,7 +2852,7 @@ msgstr "Копирај код"
|
||||
#. js-lingui-id: Es0ros
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "Copy commands"
|
||||
msgstr ""
|
||||
msgstr "Копирај команде"
|
||||
|
||||
#. js-lingui-id: 7eVkEH
|
||||
#: src/pages/onboarding/InviteTeam.tsx
|
||||
@@ -3021,7 +3021,7 @@ msgstr "Креирај радни простор"
|
||||
#. js-lingui-id: /WlFSf
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "Create an application"
|
||||
msgstr ""
|
||||
msgstr "Креирај апликацију"
|
||||
|
||||
#. js-lingui-id: 8ZjIgO
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
|
||||
@@ -3172,12 +3172,12 @@ msgstr "Кредити по периоду"
|
||||
#. js-lingui-id: EABlI0
|
||||
#: src/modules/ai/components/AIChatCreditsExhaustedMessage.tsx
|
||||
msgid "Credits exhausted. Please contact your workspace admin to upgrade."
|
||||
msgstr ""
|
||||
msgstr "Кредити су потрошени. Контактирајте администратора радног простора ради надоградње."
|
||||
|
||||
#. js-lingui-id: JIXvMy
|
||||
#: src/modules/ai/components/AIChatCreditsExhaustedMessage.tsx
|
||||
msgid "Credits exhausted. Upgrade your plan to get more credits."
|
||||
msgstr ""
|
||||
msgstr "Кредити су потрошени. Надоградите свој план да бисте добили више кредита."
|
||||
|
||||
#. js-lingui-id: n3kKrs
|
||||
#: src/modules/billing/components/SettingsBillingCreditsSection.tsx
|
||||
@@ -4450,12 +4450,12 @@ msgstr "Омогући специфичне карактеристике мод
|
||||
#. js-lingui-id: k1i50B
|
||||
#: src/modules/information-banner/components/billing/InformationBannerEndTrialPeriod.tsx
|
||||
msgid "End Trial Period"
|
||||
msgstr ""
|
||||
msgstr "Завршите пробни период"
|
||||
|
||||
#. js-lingui-id: QEUZoG
|
||||
#: src/modules/information-banner/components/billing/InformationBannerEndTrialPeriod.tsx
|
||||
msgid "End trial period to continue using Workflow or AI features."
|
||||
msgstr ""
|
||||
msgstr "Завршите пробни период да бисте наставили да користите функције радног тока или AI."
|
||||
|
||||
#. js-lingui-id: T3juzf
|
||||
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
|
||||
@@ -5560,7 +5560,7 @@ msgstr "Четврти"
|
||||
#. js-lingui-id: aUj1gh
|
||||
#: src/modules/ai/components/AIChatCreditsExhaustedMessage.tsx
|
||||
msgid "Free trial credits exhausted. Subscribe now to continue using AI features."
|
||||
msgstr ""
|
||||
msgstr "Кредити из бесплатног пробног периода су потрошени. Претплатите се сада да бисте наставили да користите AI функције."
|
||||
|
||||
#. js-lingui-id: nLC6tu
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
@@ -5581,7 +5581,7 @@ msgstr "Потпун приступ"
|
||||
#. js-lingui-id: xANKBj
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
msgid "Functions"
|
||||
msgstr ""
|
||||
msgstr "Функције"
|
||||
|
||||
#. js-lingui-id: tkr79G
|
||||
#: src/utils/title-utils.ts
|
||||
@@ -6241,7 +6241,7 @@ msgstr "Инсталирајте и управљајте апликацијам
|
||||
#. js-lingui-id: N52taw
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "Installed applications"
|
||||
msgstr ""
|
||||
msgstr "Инсталиране апликације"
|
||||
|
||||
#. js-lingui-id: AwUsnG
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
@@ -6366,12 +6366,12 @@ msgstr "Неважећи број"
|
||||
#. js-lingui-id: sBZMWb
|
||||
#: src/modules/page-layout/widgets/components/PageLayoutWidgetNoDataDisplay.tsx
|
||||
msgid "Invalid URL"
|
||||
msgstr ""
|
||||
msgstr "Неважећи УРЛ"
|
||||
|
||||
#. js-lingui-id: yRuMQS
|
||||
#: src/modules/page-layout/widgets/components/PageLayoutWidgetNoDataDisplay.tsx
|
||||
msgid "Invalid URL. Click edit to configure this widget."
|
||||
msgstr ""
|
||||
msgstr "Неважећи УРЛ. Кликните на „Измени“ да подесите овај виџет."
|
||||
|
||||
#. js-lingui-id: VEKoJx
|
||||
#: src/modules/settings/two-factor-authentication/hooks/useTwoFactorVerificationForSettings.ts
|
||||
@@ -6438,7 +6438,7 @@ msgstr "Је"
|
||||
#. js-lingui-id: jI6+Q3
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
msgid "Is after or equal"
|
||||
msgstr ""
|
||||
msgstr "Је после или једнако"
|
||||
|
||||
#. js-lingui-id: NgIlDJ
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
@@ -6533,7 +6533,7 @@ msgstr "Је релативно"
|
||||
#. js-lingui-id: 8vhfz7
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
msgid "Is today{timeZoneAbbreviationSuffix}"
|
||||
msgstr ""
|
||||
msgstr "Је данас{timeZoneAbbreviationSuffix}"
|
||||
|
||||
#. js-lingui-id: IhCN5p
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOOIDCForm.tsx
|
||||
@@ -6861,7 +6861,7 @@ msgstr ""
|
||||
#. js-lingui-id: 5Kn+XX
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "List installed applications. Use filter to search for a specific application"
|
||||
msgstr ""
|
||||
msgstr "Прикажите инсталиране апликације. Користите филтер да бисте пронашли одређену апликацију."
|
||||
|
||||
#. js-lingui-id: HhVDr2
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
@@ -7053,7 +7053,7 @@ msgstr "Управљање токовима рада"
|
||||
#. js-lingui-id: cbzOP7
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
|
||||
msgid "Manage your app"
|
||||
msgstr ""
|
||||
msgstr "Управљајте својом апликацијом"
|
||||
|
||||
#. js-lingui-id: FyFNsd
|
||||
#: src/pages/settings/accounts/SettingsAccounts.tsx
|
||||
@@ -8237,7 +8237,7 @@ msgstr "Подешавања дозвола за објекте и поља"
|
||||
#. js-lingui-id: YFI9hD
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
msgid "Objects managed by this app"
|
||||
msgstr ""
|
||||
msgstr "Објекти којима управља ова апликација"
|
||||
|
||||
#. js-lingui-id: BwJKBw
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
|
||||
@@ -9124,7 +9124,7 @@ msgstr "Прочитајте дневник измена"
|
||||
#. js-lingui-id: ibPuCP
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "Read documentation"
|
||||
msgstr ""
|
||||
msgstr "Прочитајте документацију"
|
||||
|
||||
#. js-lingui-id: BT7pY+
|
||||
#: src/modules/settings/profile/components/SetOrChangePassword.tsx
|
||||
@@ -9748,7 +9748,7 @@ msgstr "Претражите агента..."
|
||||
#. js-lingui-id: fGTI3o
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "Search an application"
|
||||
msgstr ""
|
||||
msgstr "Претражите апликацију"
|
||||
|
||||
#. js-lingui-id: kdagxk
|
||||
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTable.tsx
|
||||
@@ -10201,7 +10201,7 @@ msgstr "серверлес функција"
|
||||
#. js-lingui-id: 0WOel+
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
msgid "Serverless functions powering this app"
|
||||
msgstr ""
|
||||
msgstr "Функције без сервера које покрећу ову апликацију"
|
||||
|
||||
#. js-lingui-id: LUc0oL
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
@@ -11204,8 +11204,7 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: Ox1hE7
|
||||
#: src/modules/settings/profile/components/DeleteAccount.tsx
|
||||
msgid ""
|
||||
"This action cannot be undone. This will permanently delete your\n"
|
||||
msgid "This action cannot be undone. This will permanently delete your\n"
|
||||
" entire account."
|
||||
msgstr "Ова акција се не може опозвати. Ово ће трајно обрисати ваш цео налог."
|
||||
|
||||
@@ -11876,7 +11875,7 @@ msgstr "Унапређење"
|
||||
#. js-lingui-id: 7aHRdp
|
||||
#: src/modules/ai/components/AIChatCreditsExhaustedMessage.tsx
|
||||
msgid "Upgrade Plan"
|
||||
msgstr ""
|
||||
msgstr "Надоградите план"
|
||||
|
||||
#. js-lingui-id: ONWvwQ
|
||||
#: src/modules/ui/input/components/ImageInput.tsx
|
||||
@@ -12111,7 +12110,7 @@ msgstr "Прегледај детаље о плаћању"
|
||||
#. js-lingui-id: SXCuo2
|
||||
#: src/modules/ai/components/AIChatApiKeyNotConfiguredMessage.tsx
|
||||
msgid "View Docs"
|
||||
msgstr ""
|
||||
msgstr "Приказ документације"
|
||||
|
||||
#. js-lingui-id: Mv1YVf
|
||||
#: src/modules/ui/feedback/snack-bar-manager/utils/build-error-action.util.ts
|
||||
@@ -12266,11 +12265,9 @@ msgstr "Послаћемо вам линк за проверу власништ
|
||||
|
||||
#. js-lingui-id: X56YGk
|
||||
#: src/pages/onboarding/PaymentSuccess.tsx
|
||||
msgid ""
|
||||
"We're waiting for a confirmation from our payment provider (Stripe).\n"
|
||||
msgid "We're waiting for a confirmation from our payment provider (Stripe).\n"
|
||||
"Please try again in a few seconds, sorry."
|
||||
msgstr ""
|
||||
"Чекамо потврду од нашег провајдера плаћања (Stripe).\n"
|
||||
msgstr "Чекамо потврду од нашег провајдера плаћања (Stripe).\n"
|
||||
"Покушајте поново за неколико секунди, извините."
|
||||
|
||||
#. js-lingui-id: LnnVIT
|
||||
@@ -12593,7 +12590,7 @@ msgstr "Није дозвољено креирање записа за овај
|
||||
#. js-lingui-id: iibZbD
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "You can either create a private app or share it to others"
|
||||
msgstr ""
|
||||
msgstr "Можете да креирате приватну апликацију или да је поделите са другима"
|
||||
|
||||
#. js-lingui-id: OLE3Ky
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
|
||||
|
||||
@@ -67,7 +67,7 @@ msgstr ": Förfluten"
|
||||
#. js-lingui-id: DIUF3A
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
msgid ": Today{timeZoneAbbreviationSuffix}"
|
||||
msgstr ""
|
||||
msgstr ": I dag{timeZoneAbbreviationSuffix}"
|
||||
|
||||
#. js-lingui-id: N/lIUf
|
||||
#: src/modules/billing/hooks/useBillingWording.ts
|
||||
@@ -129,13 +129,13 @@ msgstr "{0, plural, one {{1} jobb kunde inte upprepas} other {{2} jobb kunde int
|
||||
#. placeholder {0}: Math.abs(days)
|
||||
#: src/utils/date-utils.ts
|
||||
msgid "{0, plural, one {{days} day} other {{days} days}}"
|
||||
msgstr ""
|
||||
msgstr "{0, plural, one {{days} dag} other {{days} dagar}}"
|
||||
|
||||
#. js-lingui-id: dXYycw
|
||||
#. placeholder {0}: Math.abs(years)
|
||||
#: src/utils/date-utils.ts
|
||||
msgid "{0, plural, one {{years} year} other {{years} years}}"
|
||||
msgstr ""
|
||||
msgstr "{0, plural, one {{years} år} other {{years} år}}"
|
||||
|
||||
#. js-lingui-id: Qvm3VE
|
||||
#. placeholder {0}: selectedOptions.length
|
||||
@@ -1067,7 +1067,7 @@ msgstr "Efter en viss tid"
|
||||
#. js-lingui-id: YPnvqG
|
||||
#: src/modules/object-record/record-calendar/month/hooks/useRecordCalendarQueryDateRangeFilter.tsx
|
||||
msgid "After or equal"
|
||||
msgstr ""
|
||||
msgstr "Efter eller lika med"
|
||||
|
||||
#. js-lingui-id: fcYF58
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
@@ -1119,7 +1119,7 @@ msgstr "Agent"
|
||||
#. js-lingui-id: wFe+5D
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
msgid "Agents powering this app"
|
||||
msgstr ""
|
||||
msgstr "Agenter som driver den här appen"
|
||||
|
||||
#. js-lingui-id: 0k5XwN
|
||||
#: src/pages/settings/ai/components/SettingsAIAgentsTable.tsx
|
||||
@@ -1162,7 +1162,7 @@ msgstr ""
|
||||
#. js-lingui-id: Sfwld8
|
||||
#: src/modules/ai/components/AIChatApiKeyNotConfiguredMessage.tsx
|
||||
msgid "AI not configured. Set OPENAI_API_KEY, ANTHROPIC_API_KEY, or XAI_API_KEY in your environment."
|
||||
msgstr ""
|
||||
msgstr "AI är inte konfigurerat. Ställ in OPENAI_API_KEY, ANTHROPIC_API_KEY eller XAI_API_KEY i din miljö."
|
||||
|
||||
#. js-lingui-id: jwOWhc
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
@@ -2515,7 +2515,7 @@ msgstr "Kommandomeny"
|
||||
#. js-lingui-id: 4XlFx/
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "Commands copied to clipboard"
|
||||
msgstr ""
|
||||
msgstr "Kommandon kopierade till urklipp"
|
||||
|
||||
#. js-lingui-id: A9u+7N
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
@@ -2745,7 +2745,7 @@ msgstr "Automatiskt kontaktskapande"
|
||||
#. js-lingui-id: cByGGA
|
||||
#: src/modules/information-banner/components/billing/InformationBannerEndTrialPeriod.tsx
|
||||
msgid "Contact your admin to continue using Workflow or AI features."
|
||||
msgstr ""
|
||||
msgstr "Kontakta din administratör för att fortsätta använda arbetsflödes- eller AI-funktioner."
|
||||
|
||||
#. js-lingui-id: /5mghO
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
@@ -2852,7 +2852,7 @@ msgstr "Kopiera kod"
|
||||
#. js-lingui-id: Es0ros
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "Copy commands"
|
||||
msgstr ""
|
||||
msgstr "Kopiera kommandon"
|
||||
|
||||
#. js-lingui-id: 7eVkEH
|
||||
#: src/pages/onboarding/InviteTeam.tsx
|
||||
@@ -3021,7 +3021,7 @@ msgstr "Skapa arbetsyta"
|
||||
#. js-lingui-id: /WlFSf
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "Create an application"
|
||||
msgstr ""
|
||||
msgstr "Skapa en applikation"
|
||||
|
||||
#. js-lingui-id: 8ZjIgO
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
|
||||
@@ -3172,12 +3172,12 @@ msgstr "Krediter per period"
|
||||
#. js-lingui-id: EABlI0
|
||||
#: src/modules/ai/components/AIChatCreditsExhaustedMessage.tsx
|
||||
msgid "Credits exhausted. Please contact your workspace admin to upgrade."
|
||||
msgstr ""
|
||||
msgstr "Krediterna är slut. Kontakta administratören för din arbetsyta för att uppgradera."
|
||||
|
||||
#. js-lingui-id: JIXvMy
|
||||
#: src/modules/ai/components/AIChatCreditsExhaustedMessage.tsx
|
||||
msgid "Credits exhausted. Upgrade your plan to get more credits."
|
||||
msgstr ""
|
||||
msgstr "Krediterna är slut. Uppgradera din plan för att få fler krediter."
|
||||
|
||||
#. js-lingui-id: n3kKrs
|
||||
#: src/modules/billing/components/SettingsBillingCreditsSection.tsx
|
||||
@@ -4450,12 +4450,12 @@ msgstr "Aktivera modellens specifika funktioner"
|
||||
#. js-lingui-id: k1i50B
|
||||
#: src/modules/information-banner/components/billing/InformationBannerEndTrialPeriod.tsx
|
||||
msgid "End Trial Period"
|
||||
msgstr ""
|
||||
msgstr "Avsluta provperioden"
|
||||
|
||||
#. js-lingui-id: QEUZoG
|
||||
#: src/modules/information-banner/components/billing/InformationBannerEndTrialPeriod.tsx
|
||||
msgid "End trial period to continue using Workflow or AI features."
|
||||
msgstr ""
|
||||
msgstr "Avsluta provperioden för att fortsätta använda arbetsflödes- eller AI-funktioner."
|
||||
|
||||
#. js-lingui-id: T3juzf
|
||||
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
|
||||
@@ -5560,7 +5560,7 @@ msgstr "Fjärde"
|
||||
#. js-lingui-id: aUj1gh
|
||||
#: src/modules/ai/components/AIChatCreditsExhaustedMessage.tsx
|
||||
msgid "Free trial credits exhausted. Subscribe now to continue using AI features."
|
||||
msgstr ""
|
||||
msgstr "Kostnadsfria provkrediter är slut. Prenumerera nu för att fortsätta använda AI-funktioner."
|
||||
|
||||
#. js-lingui-id: nLC6tu
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
@@ -5581,7 +5581,7 @@ msgstr "Full tillgång"
|
||||
#. js-lingui-id: xANKBj
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
msgid "Functions"
|
||||
msgstr ""
|
||||
msgstr "Funktioner"
|
||||
|
||||
#. js-lingui-id: tkr79G
|
||||
#: src/utils/title-utils.ts
|
||||
@@ -6241,7 +6241,7 @@ msgstr "Installera och hantera applikationer"
|
||||
#. js-lingui-id: N52taw
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "Installed applications"
|
||||
msgstr ""
|
||||
msgstr "Installerade applikationer"
|
||||
|
||||
#. js-lingui-id: AwUsnG
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
@@ -6366,12 +6366,12 @@ msgstr "Ogiltigt nummer"
|
||||
#. js-lingui-id: sBZMWb
|
||||
#: src/modules/page-layout/widgets/components/PageLayoutWidgetNoDataDisplay.tsx
|
||||
msgid "Invalid URL"
|
||||
msgstr ""
|
||||
msgstr "Ogiltig URL"
|
||||
|
||||
#. js-lingui-id: yRuMQS
|
||||
#: src/modules/page-layout/widgets/components/PageLayoutWidgetNoDataDisplay.tsx
|
||||
msgid "Invalid URL. Click edit to configure this widget."
|
||||
msgstr ""
|
||||
msgstr "Ogiltig URL. Klicka på redigera för att konfigurera denna widget."
|
||||
|
||||
#. js-lingui-id: VEKoJx
|
||||
#: src/modules/settings/two-factor-authentication/hooks/useTwoFactorVerificationForSettings.ts
|
||||
@@ -6438,7 +6438,7 @@ msgstr "Är"
|
||||
#. js-lingui-id: jI6+Q3
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
msgid "Is after or equal"
|
||||
msgstr ""
|
||||
msgstr "Är efter eller lika med"
|
||||
|
||||
#. js-lingui-id: NgIlDJ
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
@@ -6533,7 +6533,7 @@ msgstr "Är relativ"
|
||||
#. js-lingui-id: 8vhfz7
|
||||
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
|
||||
msgid "Is today{timeZoneAbbreviationSuffix}"
|
||||
msgstr ""
|
||||
msgstr "Är i dag{timeZoneAbbreviationSuffix}"
|
||||
|
||||
#. js-lingui-id: IhCN5p
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOOIDCForm.tsx
|
||||
@@ -6861,7 +6861,7 @@ msgstr ""
|
||||
#. js-lingui-id: 5Kn+XX
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "List installed applications. Use filter to search for a specific application"
|
||||
msgstr ""
|
||||
msgstr "Lista installerade applikationer. Använd filtret för att söka efter en specifik applikation"
|
||||
|
||||
#. js-lingui-id: HhVDr2
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
@@ -7053,7 +7053,7 @@ msgstr "Hantera arbetsflöden"
|
||||
#. js-lingui-id: cbzOP7
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
|
||||
msgid "Manage your app"
|
||||
msgstr ""
|
||||
msgstr "Hantera din app"
|
||||
|
||||
#. js-lingui-id: FyFNsd
|
||||
#: src/pages/settings/accounts/SettingsAccounts.tsx
|
||||
@@ -7283,8 +7283,7 @@ msgstr "Uppdrag slutfört!"
|
||||
#. js-lingui-id: hty0d5
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "Monday"
|
||||
msgstr ""
|
||||
"M\n"
|
||||
msgstr "M\n"
|
||||
"ndags"
|
||||
|
||||
#. js-lingui-id: 8g3Cgz
|
||||
@@ -8239,7 +8238,7 @@ msgstr "Objekt och fält behörighetsinställningar"
|
||||
#. js-lingui-id: YFI9hD
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
msgid "Objects managed by this app"
|
||||
msgstr ""
|
||||
msgstr "Objekt som hanteras av den här appen"
|
||||
|
||||
#. js-lingui-id: BwJKBw
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
|
||||
@@ -9126,7 +9125,7 @@ msgstr "Läs ändringsloggen"
|
||||
#. js-lingui-id: ibPuCP
|
||||
#: src/pages/settings/applications/SettingsApplications.tsx
|
||||
msgid "Read documentation"
|
||||
msgstr ""
|
||||
msgstr "Läs dokumentationen"
|
||||
|
||||
#. js-lingui-id: BT7pY+
|
||||
#: src/modules/settings/profile/components/SetOrChangePassword.tsx
|
||||
@@ -9655,8 +9654,7 @@ msgstr "Russian"
|
||||
#. js-lingui-id: +5kO8P
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "Saturday"
|
||||
msgstr ""
|
||||
"L\n"
|
||||
msgstr "L\n"
|
||||
"urdag"
|
||||
|
||||
#. js-lingui-id: tfDRzk
|
||||
@@ -9752,7 +9750,7 @@ msgstr "Sök en agent..."
|
||||
#. js-lingui-id: fGTI3o
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "Search an application"
|
||||
msgstr ""
|
||||
msgstr "Sök efter en applikation"
|
||||
|
||||
#. js-lingui-id: kdagxk
|
||||
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTable.tsx
|
||||
@@ -10205,7 +10203,7 @@ msgstr "serverlös funktion"
|
||||
#. js-lingui-id: 0WOel+
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
msgid "Serverless functions powering this app"
|
||||
msgstr ""
|
||||
msgstr "Serverlösa funktioner som driver den här appen"
|
||||
|
||||
#. js-lingui-id: LUc0oL
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
@@ -10821,8 +10819,7 @@ msgstr "Summa"
|
||||
#. js-lingui-id: DBC3t5
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "Sunday"
|
||||
msgstr ""
|
||||
"S\n"
|
||||
msgstr "S\n"
|
||||
"nd"
|
||||
|
||||
#. js-lingui-id: XYLcNv
|
||||
@@ -10953,22 +10950,19 @@ msgstr "Systeminställningar - {systemTimeFormatLabel}"
|
||||
#. js-lingui-id: e89dEj
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "System settings - Monday"
|
||||
msgstr ""
|
||||
"Systeminst | ||||