Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
fb5e6b1021 | ||
|
|
ae7db23bdd | ||
|
|
2f358a1775 | ||
|
|
fc3004b2f6 | ||
|
|
086b79e5b9 | ||
|
|
8cb88cabee | ||
|
|
ac89d2ff56 | ||
|
|
423faa6153 | ||
|
|
a051490ec9 | ||
|
|
34db7ac8b4 | ||
|
|
4a82cddad6 | ||
|
|
9d6c5b7d58 | ||
|
|
a2db0b6932 | ||
|
|
5eb79e7797 | ||
|
|
f19647617a | ||
|
|
424c6737a1 | ||
|
|
be8c25dfc2 | ||
|
|
b8de469f37 | ||
|
|
c74337978b | ||
|
|
059e75e532 |
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "create-twenty-app",
|
||||
"version": "2.8.0",
|
||||
"version": "2.9.0",
|
||||
"description": "Command-line interface to create Twenty application",
|
||||
"main": "dist/cli.cjs",
|
||||
"bin": "dist/cli.cjs",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "twenty-client-sdk",
|
||||
"version": "2.8.0",
|
||||
"version": "2.9.0",
|
||||
"sideEffects": false,
|
||||
"license": "AGPL-3.0",
|
||||
"scripts": {
|
||||
|
||||
@@ -1315,6 +1315,7 @@ type FieldConfiguration {
|
||||
configurationType: WidgetConfigurationType!
|
||||
fieldMetadataId: String!
|
||||
fieldDisplayMode: FieldDisplayMode!
|
||||
viewId: String
|
||||
}
|
||||
|
||||
"""Display mode for field configuration widgets"""
|
||||
@@ -1323,6 +1324,7 @@ enum FieldDisplayMode {
|
||||
EDITOR
|
||||
FIELD
|
||||
VIEW
|
||||
TABLE
|
||||
}
|
||||
|
||||
type FieldRichTextConfiguration {
|
||||
|
||||
@@ -966,12 +966,13 @@ export interface FieldConfiguration {
|
||||
configurationType: WidgetConfigurationType
|
||||
fieldMetadataId: Scalars['String']
|
||||
fieldDisplayMode: FieldDisplayMode
|
||||
viewId?: Scalars['String']
|
||||
__typename: 'FieldConfiguration'
|
||||
}
|
||||
|
||||
|
||||
/** Display mode for field configuration widgets */
|
||||
export type FieldDisplayMode = 'CARD' | 'EDITOR' | 'FIELD' | 'VIEW'
|
||||
export type FieldDisplayMode = 'CARD' | 'EDITOR' | 'FIELD' | 'VIEW' | 'TABLE'
|
||||
|
||||
export interface FieldRichTextConfiguration {
|
||||
configurationType: WidgetConfigurationType
|
||||
@@ -3887,6 +3888,7 @@ export interface FieldConfigurationGenqlSelection{
|
||||
configurationType?: boolean | number
|
||||
fieldMetadataId?: boolean | number
|
||||
fieldDisplayMode?: boolean | number
|
||||
viewId?: boolean | number
|
||||
__typename?: boolean | number
|
||||
__scalar?: boolean | number
|
||||
}
|
||||
@@ -8627,7 +8629,8 @@ export const enumFieldDisplayMode = {
|
||||
CARD: 'CARD' as const,
|
||||
EDITOR: 'EDITOR' as const,
|
||||
FIELD: 'FIELD' as const,
|
||||
VIEW: 'VIEW' as const
|
||||
VIEW: 'VIEW' as const,
|
||||
TABLE: 'TABLE' as const
|
||||
}
|
||||
|
||||
export const enumPageLayoutType = {
|
||||
|
||||
@@ -2615,6 +2615,9 @@ export default {
|
||||
"fieldDisplayMode": [
|
||||
110
|
||||
],
|
||||
"viewId": [
|
||||
1
|
||||
],
|
||||
"__typename": [
|
||||
1
|
||||
]
|
||||
|
||||
@@ -55,7 +55,8 @@ services:
|
||||
test: curl --fail http://localhost:3000/healthz
|
||||
interval: 5s
|
||||
timeout: 5s
|
||||
retries: 20
|
||||
start_period: 90s
|
||||
retries: 24
|
||||
restart: always
|
||||
|
||||
worker:
|
||||
|
||||
@@ -127,15 +127,41 @@ if [ "$answer" = "n" ]; then
|
||||
else
|
||||
echo "🐳 Starting Docker containers..."
|
||||
docker compose up -d
|
||||
# Check if port is listening
|
||||
echo "Waiting for server to be healthy, it might take a few minutes while we initialize the database..."
|
||||
# Tail logs of the server until it's ready
|
||||
docker compose logs -f server &
|
||||
pid=$!
|
||||
while [ ! $(docker inspect --format='{{.State.Health.Status}}' twenty-server-1) = "healthy" ]; do
|
||||
|
||||
server_container_id=$(docker compose ps -q server)
|
||||
|
||||
if [ -z "$server_container_id" ]; then
|
||||
kill "$pid" 2>/dev/null || true
|
||||
echo "❌ Unable to resolve server container id. Run 'docker compose ps' and 'docker compose logs server' for diagnostics."
|
||||
exit 1
|
||||
fi
|
||||
|
||||
while true; do
|
||||
health_status=$(docker inspect --format='{{if .State.Health}}{{.State.Health.Status}}{{else}}starting{{end}}' "$server_container_id" 2>/dev/null)
|
||||
|
||||
if [ "$health_status" = "healthy" ]; then
|
||||
break
|
||||
fi
|
||||
|
||||
if [ "$health_status" = "unhealthy" ]; then
|
||||
kill "$pid" 2>/dev/null || true
|
||||
echo ""
|
||||
echo "❌ Server container became unhealthy before startup completed."
|
||||
echo "Latest healthcheck probe output:"
|
||||
docker inspect --format='{{range .State.Health.Log}}{{println .End "(exit=" .ExitCode "):" .Output}}{{end}}' "$server_container_id" | tail -n 5
|
||||
echo ""
|
||||
echo "Recent server logs:"
|
||||
docker compose logs --tail 50 server
|
||||
exit 1
|
||||
fi
|
||||
|
||||
sleep 1
|
||||
done
|
||||
kill $pid
|
||||
|
||||
kill "$pid" 2>/dev/null || true
|
||||
echo ""
|
||||
echo "✅ Server is up and running"
|
||||
fi
|
||||
|
||||
@@ -70,7 +70,7 @@ filters: [
|
||||
| `CURRENCY.currencyCode` | `IS`, `IS_NOT`, `IS_EMPTY`, `IS_NOT_EMPTY` |
|
||||
| `DATE`, `DATE_TIME` | `IS`, `IS_RELATIVE`, `IS_IN_PAST`, `IS_IN_FUTURE`, `IS_TODAY`, `IS_BEFORE`, `IS_AFTER`, `IS_EMPTY`, `IS_NOT_EMPTY` |
|
||||
| `BOOLEAN` | `IS` |
|
||||
| `UUID` | `IS` |
|
||||
| `UUID` | `IS`, `IS_NOT`, `IS_EMPTY`, `IS_NOT_EMPTY` |
|
||||
| `TS_VECTOR` | `VECTOR_SEARCH` |
|
||||
|
||||
> Feldtypen mit ähnlichen Namen können völlig unterschiedliche Operanden verwenden – `SELECT` und `MULTI_SELECT` sind ein häufiges Beispiel.
|
||||
|
||||
@@ -70,7 +70,7 @@ filters: [
|
||||
| `CURRENCY.currencyCode` | `IS`, `IS_NOT`, `IS_EMPTY`, `IS_NOT_EMPTY` |
|
||||
| `DATE`, `DATE_TIME` | `IS`, `IS_RELATIVE`, `IS_IN_PAST`, `IS_IN_FUTURE`, `IS_TODAY`, `IS_BEFORE`, `IS_AFTER`, `IS_EMPTY`, `IS_NOT_EMPTY` |
|
||||
| `BOOLEAN` | `IS` |
|
||||
| `UUID` | `IS` |
|
||||
| `UUID` | `IS`, `IS_NOT`, `IS_EMPTY`, `IS_NOT_EMPTY` |
|
||||
| `TS_VECTOR` | `VECTOR_SEARCH` |
|
||||
|
||||
> Tipos de campos com nomes semelhantes podem usar operandos completamente diferentes — `SELECT` e `MULTI_SELECT` sendo um caso comum.
|
||||
|
||||
@@ -70,7 +70,7 @@ filters: [
|
||||
| `CURRENCY.currencyCode` | `IS`, `IS_NOT`, `IS_EMPTY`, `IS_NOT_EMPTY` |
|
||||
| `DATE`, `DATE_TIME` | `IS`, `IS_RELATIVE`, `IS_IN_PAST`, `IS_IN_FUTURE`, `IS_TODAY`, `IS_BEFORE`, `IS_AFTER`, `IS_EMPTY`, `IS_NOT_EMPTY` |
|
||||
| `BOOLEAN` | `IS` |
|
||||
| `UUID` | `IS` |
|
||||
| `UUID` | `IS`, `IS_NOT`, `IS_EMPTY`, `IS_NOT_EMPTY` |
|
||||
| `TS_VECTOR` | `VECTOR_SEARCH` |
|
||||
|
||||
> Tipurile de câmp cu nume similare pot folosi operanzi complet diferiți — `SELECT` și `MULTI_SELECT` fiind un caz comun.
|
||||
|
||||
@@ -70,7 +70,7 @@ filters: [
|
||||
| `CURRENCY.currencyCode` | `IS`, `IS_NOT`, `IS_EMPTY`, `IS_NOT_EMPTY` |
|
||||
| `DATE`, `DATE_TIME` | `IS`, `IS_RELATIVE`, `IS_IN_PAST`, `IS_IN_FUTURE`, `IS_TODAY`, `IS_BEFORE`, `IS_AFTER`, `IS_EMPTY`, `IS_NOT_EMPTY` |
|
||||
| `BOOLEAN` | `IS` |
|
||||
| `UUID` | `IS` |
|
||||
| `UUID` | `IS`, `IS_NOT`, `IS_EMPTY`, `IS_NOT_EMPTY` |
|
||||
| `TS_VECTOR` | `VECTOR_SEARCH` |
|
||||
|
||||
> Типы полей с похожими названиями могут использовать совершенно разные операнды — типичный пример: `SELECT` и `MULTI_SELECT`.
|
||||
|
||||
@@ -70,7 +70,7 @@ filters: [
|
||||
| `CURRENCY.currencyCode` | `IS`, `IS_NOT`, `IS_EMPTY`, `IS_NOT_EMPTY` |
|
||||
| `DATE`, `DATE_TIME` | `IS`, `IS_RELATIVE`, `IS_IN_PAST`, `IS_IN_FUTURE`, `IS_TODAY`, `IS_BEFORE`, `IS_AFTER`, `IS_EMPTY`, `IS_NOT_EMPTY` |
|
||||
| `BOOLEAN` | `IS` |
|
||||
| `UUID` | `IS` |
|
||||
| `UUID` | `IS`, `IS_NOT`, `IS_EMPTY`, `IS_NOT_EMPTY` |
|
||||
| `TS_VECTOR` | `VECTOR_SEARCH` |
|
||||
|
||||
> Benzer adlara sahip alan türleri tamamen farklı işleçler kullanabilir — buna `SELECT` ve `MULTI_SELECT` yaygın bir örnektir.
|
||||
|
||||
@@ -70,7 +70,7 @@ filters: [
|
||||
| `CURRENCY.currencyCode` | `IS`, `IS_NOT`, `IS_EMPTY`, `IS_NOT_EMPTY` |
|
||||
| `DATE`, `DATE_TIME` | `IS`, `IS_RELATIVE`, `IS_IN_PAST`, `IS_IN_FUTURE`, `IS_TODAY`, `IS_BEFORE`, `IS_AFTER`, `IS_EMPTY`, `IS_NOT_EMPTY` |
|
||||
| `BOOLEAN` | `IS` |
|
||||
| `UUID` | `IS` |
|
||||
| `UUID` | `IS`, `IS_NOT`, `IS_EMPTY`, `IS_NOT_EMPTY` |
|
||||
| `TS_VECTOR` | `VECTOR_SEARCH` |
|
||||
|
||||
> 名称相似的字段类型可以使用完全不同的运算符 —— `SELECT` 和 `MULTI_SELECT` 就是常见情况。
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -221,6 +221,11 @@ msgstr ""
|
||||
msgid "{advancedFilterCount, plural, one {{advancedFilterCount} advanced rule} other {{advancedFilterCount} advanced rules}}"
|
||||
msgstr "{advancedFilterCount, plural, one {{advancedFilterCount} gevorderde reël} other {{advancedFilterCount} gevorderde reëls}}"
|
||||
|
||||
#. js-lingui-id: XWd9bY
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "{agentCount, plural, one {{agentCount} agent} other {{agentCount} agents}}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WGnqk6
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/hooks/useWorkflowAiAgentPermissionActions.ts
|
||||
msgid "{agentDisplayName} role ({agentIdPrefix})"
|
||||
@@ -236,6 +241,11 @@ msgstr "{agentLabel} Agentrol"
|
||||
msgid "{aggregateLabel} of {fieldLabel}"
|
||||
msgstr "{aggregateLabel} van {fieldLabel}"
|
||||
|
||||
#. js-lingui-id: WhHyQh
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "{apiKeyCount, plural, one {{apiKeyCount} API key} other {{apiKeyCount} API keys}}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: u1mVnV
|
||||
#: src/modules/marketplace/components/SettingsApplicationInstallPermissionValidationModal.tsx
|
||||
msgid "{appDisplayName} would like to:"
|
||||
@@ -395,6 +405,11 @@ msgstr "{jobCount, plural, one {Dit sal die geselekteerde werk herprobeer. Dit s
|
||||
msgid "{label} list"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1DrH/j
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "{memberCount, plural, one {{memberCount} member} other {{memberCount} members}}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Y32cMj
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadIntermediaryMessages.tsx
|
||||
msgid "{messagesLength} emails"
|
||||
@@ -523,6 +538,11 @@ msgstr ""
|
||||
msgid "{visibleFieldsCount} shown"
|
||||
msgstr "{visibleFieldsCount} getoon"
|
||||
|
||||
#. js-lingui-id: WjjsAL
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
|
||||
msgid "{visibleFieldsCount} visible fields"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: riMLMq
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/iterator-action/components/WorkflowIteratorSubStepSwitcher.tsx
|
||||
msgid "{workflowRunIteratorSubStepIterationsCount, plural, one {# item} other {# items}}"
|
||||
@@ -1954,6 +1974,7 @@ msgstr "'n Onverwagte fout het voorgekom. Probeer asseblief weer."
|
||||
|
||||
#. js-lingui-id: HZFm5R
|
||||
#: src/utils/date-utils.ts
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
#: src/modules/auth/sign-in-up/components/FooterNote.tsx
|
||||
msgid "and"
|
||||
msgstr "en"
|
||||
@@ -3816,10 +3837,15 @@ msgstr "Bevestig"
|
||||
msgid "Confirm changing your current resource credit allocation."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: FbJ7Si
|
||||
#. js-lingui-id: SU6Tym
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "Confirm deletion of {roleName} role? This cannot be undone. All members will be reassigned to the default role."
|
||||
msgstr "Bevestig verwydering van {roleName} rol? Dit kan nie ongedaan gemaak word nie. Alle lede sal aan die verstekrol toegewys word."
|
||||
msgid "Confirm deletion of {roleName} role? This cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: W7S+Tm
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "Confirm deletion of {roleName} role? This cannot be undone. {reassignSubject} will be reassigned to the default role."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: kZkFSm
|
||||
#: src/modules/settings/billing/components/internal/ResourceCreditPriceSelector.tsx
|
||||
@@ -7293,7 +7319,9 @@ msgstr "velde"
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutRecordPageWidgetTypeSelect.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelPermissionFieldSelectFieldMenu.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
|
||||
@@ -15137,6 +15165,8 @@ msgstr "Oortjie Instellings"
|
||||
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
|
||||
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
|
||||
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/FieldWidgetLayoutDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
|
||||
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
|
||||
@@ -16104,6 +16134,7 @@ msgstr "Twee-faktor magtiging-setup suksesvol voltooi!"
|
||||
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
|
||||
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
|
||||
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
|
||||
|
||||
@@ -221,6 +221,11 @@ msgstr ""
|
||||
msgid "{advancedFilterCount, plural, one {{advancedFilterCount} advanced rule} other {{advancedFilterCount} advanced rules}}"
|
||||
msgstr "{advancedFilterCount, plural, zero {{advancedFilterCount} قواعد متقدمة} one {{advancedFilterCount} قاعدة متقدمة} two {{advancedFilterCount} قاعدتان متقدمتان} few {{advancedFilterCount} قواعد متقدمة} many {{advancedFilterCount} قواعد متقدمة} other {{advancedFilterCount} قواعد متقدمة}}"
|
||||
|
||||
#. js-lingui-id: XWd9bY
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "{agentCount, plural, one {{agentCount} agent} other {{agentCount} agents}}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WGnqk6
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/hooks/useWorkflowAiAgentPermissionActions.ts
|
||||
msgid "{agentDisplayName} role ({agentIdPrefix})"
|
||||
@@ -236,6 +241,11 @@ msgstr "دور الوكيل {agentLabel}"
|
||||
msgid "{aggregateLabel} of {fieldLabel}"
|
||||
msgstr "{aggregateLabel} من {fieldLabel}"
|
||||
|
||||
#. js-lingui-id: WhHyQh
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "{apiKeyCount, plural, one {{apiKeyCount} API key} other {{apiKeyCount} API keys}}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: u1mVnV
|
||||
#: src/modules/marketplace/components/SettingsApplicationInstallPermissionValidationModal.tsx
|
||||
msgid "{appDisplayName} would like to:"
|
||||
@@ -395,6 +405,11 @@ msgstr "{jobCount, plural, zero {سيتم إعادة محاولة {jobCount} و
|
||||
msgid "{label} list"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1DrH/j
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "{memberCount, plural, one {{memberCount} member} other {{memberCount} members}}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Y32cMj
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadIntermediaryMessages.tsx
|
||||
msgid "{messagesLength} emails"
|
||||
@@ -523,6 +538,11 @@ msgstr ""
|
||||
msgid "{visibleFieldsCount} shown"
|
||||
msgstr "{visibleFieldsCount, plural, zero {لا حقول معروضة} one {حقل واحد معروض} two {حقلان معروضان} few {# حقول معروضة} many {# حقلًا معروضًا} other {# حقل معروض}}"
|
||||
|
||||
#. js-lingui-id: WjjsAL
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
|
||||
msgid "{visibleFieldsCount} visible fields"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: riMLMq
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/iterator-action/components/WorkflowIteratorSubStepSwitcher.tsx
|
||||
msgid "{workflowRunIteratorSubStepIterationsCount, plural, one {# item} other {# items}}"
|
||||
@@ -1954,6 +1974,7 @@ msgstr "حدث خطأ غير متوقع. يرجى المحاولة مرة أخر
|
||||
|
||||
#. js-lingui-id: HZFm5R
|
||||
#: src/utils/date-utils.ts
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
#: src/modules/auth/sign-in-up/components/FooterNote.tsx
|
||||
msgid "and"
|
||||
msgstr "و"
|
||||
@@ -3816,10 +3837,15 @@ msgstr "تأكيد"
|
||||
msgid "Confirm changing your current resource credit allocation."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: FbJ7Si
|
||||
#. js-lingui-id: SU6Tym
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "Confirm deletion of {roleName} role? This cannot be undone. All members will be reassigned to the default role."
|
||||
msgstr "تأكيد حذف دور {roleName}؟ لا يمكن التراجع عن هذا الإجراء. سيتم إعادة تعيين جميع الأعضاء إلى الدور الافتراضي."
|
||||
msgid "Confirm deletion of {roleName} role? This cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: W7S+Tm
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "Confirm deletion of {roleName} role? This cannot be undone. {reassignSubject} will be reassigned to the default role."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: kZkFSm
|
||||
#: src/modules/settings/billing/components/internal/ResourceCreditPriceSelector.tsx
|
||||
@@ -7293,7 +7319,9 @@ msgstr "حقول"
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutRecordPageWidgetTypeSelect.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelPermissionFieldSelectFieldMenu.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
|
||||
@@ -15137,6 +15165,8 @@ msgstr "إعدادات علامة التبويب"
|
||||
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
|
||||
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
|
||||
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/FieldWidgetLayoutDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
|
||||
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
|
||||
@@ -16104,6 +16134,7 @@ msgstr "تم إكمال إعداد المصادقة الثنائية بنجاح!
|
||||
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
|
||||
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
|
||||
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
|
||||
|
||||
@@ -221,6 +221,11 @@ msgstr ""
|
||||
msgid "{advancedFilterCount, plural, one {{advancedFilterCount} advanced rule} other {{advancedFilterCount} advanced rules}}"
|
||||
msgstr "{advancedFilterCount, plural, one {{advancedFilterCount} norma avançada} other {{advancedFilterCount} normes avançades}}"
|
||||
|
||||
#. js-lingui-id: XWd9bY
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "{agentCount, plural, one {{agentCount} agent} other {{agentCount} agents}}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WGnqk6
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/hooks/useWorkflowAiAgentPermissionActions.ts
|
||||
msgid "{agentDisplayName} role ({agentIdPrefix})"
|
||||
@@ -236,6 +241,11 @@ msgstr "Rol d'agent {agentLabel}"
|
||||
msgid "{aggregateLabel} of {fieldLabel}"
|
||||
msgstr "{aggregateLabel} de {fieldLabel}"
|
||||
|
||||
#. js-lingui-id: WhHyQh
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "{apiKeyCount, plural, one {{apiKeyCount} API key} other {{apiKeyCount} API keys}}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: u1mVnV
|
||||
#: src/modules/marketplace/components/SettingsApplicationInstallPermissionValidationModal.tsx
|
||||
msgid "{appDisplayName} would like to:"
|
||||
@@ -395,6 +405,11 @@ msgstr "{jobCount, plural, one {Això tornarà a intentar la feina seleccionada.
|
||||
msgid "{label} list"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1DrH/j
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "{memberCount, plural, one {{memberCount} member} other {{memberCount} members}}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Y32cMj
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadIntermediaryMessages.tsx
|
||||
msgid "{messagesLength} emails"
|
||||
@@ -523,6 +538,11 @@ msgstr ""
|
||||
msgid "{visibleFieldsCount} shown"
|
||||
msgstr "{visibleFieldsCount} mostrats"
|
||||
|
||||
#. js-lingui-id: WjjsAL
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
|
||||
msgid "{visibleFieldsCount} visible fields"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: riMLMq
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/iterator-action/components/WorkflowIteratorSubStepSwitcher.tsx
|
||||
msgid "{workflowRunIteratorSubStepIterationsCount, plural, one {# item} other {# items}}"
|
||||
@@ -1954,6 +1974,7 @@ msgstr "S'ha produït un error inesperat. Torna-ho a intentar."
|
||||
|
||||
#. js-lingui-id: HZFm5R
|
||||
#: src/utils/date-utils.ts
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
#: src/modules/auth/sign-in-up/components/FooterNote.tsx
|
||||
msgid "and"
|
||||
msgstr "i"
|
||||
@@ -3816,10 +3837,15 @@ msgstr "Confirmar"
|
||||
msgid "Confirm changing your current resource credit allocation."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: FbJ7Si
|
||||
#. js-lingui-id: SU6Tym
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "Confirm deletion of {roleName} role? This cannot be undone. All members will be reassigned to the default role."
|
||||
msgstr "Confirmeu la supressió del rol {roleName}? Aquesta acció no es pot desfer. Tots els membres seran reassignats al rol predeterminat."
|
||||
msgid "Confirm deletion of {roleName} role? This cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: W7S+Tm
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "Confirm deletion of {roleName} role? This cannot be undone. {reassignSubject} will be reassigned to the default role."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: kZkFSm
|
||||
#: src/modules/settings/billing/components/internal/ResourceCreditPriceSelector.tsx
|
||||
@@ -7293,7 +7319,9 @@ msgstr "camps"
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutRecordPageWidgetTypeSelect.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelPermissionFieldSelectFieldMenu.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
|
||||
@@ -15137,6 +15165,8 @@ msgstr "Configuració de la pestanya"
|
||||
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
|
||||
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
|
||||
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/FieldWidgetLayoutDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
|
||||
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
|
||||
@@ -16104,6 +16134,7 @@ msgstr "Configuració de l'autenticació de dos factors completada amb èxit!"
|
||||
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
|
||||
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
|
||||
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
|
||||
|
||||
@@ -221,6 +221,11 @@ msgstr ""
|
||||
msgid "{advancedFilterCount, plural, one {{advancedFilterCount} advanced rule} other {{advancedFilterCount} advanced rules}}"
|
||||
msgstr "{advancedFilterCount, plural, one {{advancedFilterCount} pokročilé pravidlo} few {{advancedFilterCount} pokročilá pravidla} many {{advancedFilterCount} pokročilých pravidel} other {{advancedFilterCount} pokročilých pravidel}}"
|
||||
|
||||
#. js-lingui-id: XWd9bY
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "{agentCount, plural, one {{agentCount} agent} other {{agentCount} agents}}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WGnqk6
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/hooks/useWorkflowAiAgentPermissionActions.ts
|
||||
msgid "{agentDisplayName} role ({agentIdPrefix})"
|
||||
@@ -236,6 +241,11 @@ msgstr "Role agenta {agentLabel}"
|
||||
msgid "{aggregateLabel} of {fieldLabel}"
|
||||
msgstr "{aggregateLabel} z {fieldLabel}"
|
||||
|
||||
#. js-lingui-id: WhHyQh
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "{apiKeyCount, plural, one {{apiKeyCount} API key} other {{apiKeyCount} API keys}}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: u1mVnV
|
||||
#: src/modules/marketplace/components/SettingsApplicationInstallPermissionValidationModal.tsx
|
||||
msgid "{appDisplayName} would like to:"
|
||||
@@ -395,6 +405,11 @@ msgstr "{jobCount, plural, one {Tato akce znovu spustí vybranou úlohu. Bude sp
|
||||
msgid "{label} list"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1DrH/j
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "{memberCount, plural, one {{memberCount} member} other {{memberCount} members}}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Y32cMj
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadIntermediaryMessages.tsx
|
||||
msgid "{messagesLength} emails"
|
||||
@@ -523,6 +538,11 @@ msgstr ""
|
||||
msgid "{visibleFieldsCount} shown"
|
||||
msgstr "Zobrazeno {visibleFieldsCount}"
|
||||
|
||||
#. js-lingui-id: WjjsAL
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
|
||||
msgid "{visibleFieldsCount} visible fields"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: riMLMq
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/iterator-action/components/WorkflowIteratorSubStepSwitcher.tsx
|
||||
msgid "{workflowRunIteratorSubStepIterationsCount, plural, one {# item} other {# items}}"
|
||||
@@ -1954,6 +1974,7 @@ msgstr "Došlo k neočekávané chybě. Zkuste to prosím znovu."
|
||||
|
||||
#. js-lingui-id: HZFm5R
|
||||
#: src/utils/date-utils.ts
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
#: src/modules/auth/sign-in-up/components/FooterNote.tsx
|
||||
msgid "and"
|
||||
msgstr "a"
|
||||
@@ -3816,10 +3837,15 @@ msgstr "Potvrdit"
|
||||
msgid "Confirm changing your current resource credit allocation."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: FbJ7Si
|
||||
#. js-lingui-id: SU6Tym
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "Confirm deletion of {roleName} role? This cannot be undone. All members will be reassigned to the default role."
|
||||
msgstr "Opravdu chcete smazat roli {roleName}? Toto akci nelze vrátit zpět. Všichni členové budou přeřazeni na výchozí roli."
|
||||
msgid "Confirm deletion of {roleName} role? This cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: W7S+Tm
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "Confirm deletion of {roleName} role? This cannot be undone. {reassignSubject} will be reassigned to the default role."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: kZkFSm
|
||||
#: src/modules/settings/billing/components/internal/ResourceCreditPriceSelector.tsx
|
||||
@@ -7293,7 +7319,9 @@ msgstr "pole"
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutRecordPageWidgetTypeSelect.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelPermissionFieldSelectFieldMenu.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
|
||||
@@ -15137,6 +15165,8 @@ msgstr "Nastavení karet"
|
||||
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
|
||||
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
|
||||
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/FieldWidgetLayoutDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
|
||||
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
|
||||
@@ -16104,6 +16134,7 @@ msgstr "Nastavení dvoufaktorového ověřování bylo úspěšně dokončeno!"
|
||||
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
|
||||
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
|
||||
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
|
||||
|
||||
@@ -221,6 +221,11 @@ msgstr ""
|
||||
msgid "{advancedFilterCount, plural, one {{advancedFilterCount} advanced rule} other {{advancedFilterCount} advanced rules}}"
|
||||
msgstr "{advancedFilterCount, plural, one {{advancedFilterCount} avanceret regel} other {{advancedFilterCount} avancerede regler}}"
|
||||
|
||||
#. js-lingui-id: XWd9bY
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "{agentCount, plural, one {{agentCount} agent} other {{agentCount} agents}}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WGnqk6
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/hooks/useWorkflowAiAgentPermissionActions.ts
|
||||
msgid "{agentDisplayName} role ({agentIdPrefix})"
|
||||
@@ -236,6 +241,11 @@ msgstr "{agentLabel} Agentrolle"
|
||||
msgid "{aggregateLabel} of {fieldLabel}"
|
||||
msgstr "{aggregateLabel} af {fieldLabel}"
|
||||
|
||||
#. js-lingui-id: WhHyQh
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "{apiKeyCount, plural, one {{apiKeyCount} API key} other {{apiKeyCount} API keys}}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: u1mVnV
|
||||
#: src/modules/marketplace/components/SettingsApplicationInstallPermissionValidationModal.tsx
|
||||
msgid "{appDisplayName} would like to:"
|
||||
@@ -395,6 +405,11 @@ msgstr "{jobCount, plural, one {Dette vil forsøge det valgte job igen. Det vil
|
||||
msgid "{label} list"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1DrH/j
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "{memberCount, plural, one {{memberCount} member} other {{memberCount} members}}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Y32cMj
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadIntermediaryMessages.tsx
|
||||
msgid "{messagesLength} emails"
|
||||
@@ -523,6 +538,11 @@ msgstr ""
|
||||
msgid "{visibleFieldsCount} shown"
|
||||
msgstr "{visibleFieldsCount} vist"
|
||||
|
||||
#. js-lingui-id: WjjsAL
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
|
||||
msgid "{visibleFieldsCount} visible fields"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: riMLMq
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/iterator-action/components/WorkflowIteratorSubStepSwitcher.tsx
|
||||
msgid "{workflowRunIteratorSubStepIterationsCount, plural, one {# item} other {# items}}"
|
||||
@@ -1954,6 +1974,7 @@ msgstr "Der opstod en uventet fejl. Prøv igen."
|
||||
|
||||
#. js-lingui-id: HZFm5R
|
||||
#: src/utils/date-utils.ts
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
#: src/modules/auth/sign-in-up/components/FooterNote.tsx
|
||||
msgid "and"
|
||||
msgstr "og"
|
||||
@@ -3816,10 +3837,15 @@ msgstr "Bekræft"
|
||||
msgid "Confirm changing your current resource credit allocation."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: FbJ7Si
|
||||
#. js-lingui-id: SU6Tym
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "Confirm deletion of {roleName} role? This cannot be undone. All members will be reassigned to the default role."
|
||||
msgstr "Bekræft sletning af {roleName} rolle? Dette kan ikke fortrydes. Alle medlemmer vil blive tildelt standardrollen."
|
||||
msgid "Confirm deletion of {roleName} role? This cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: W7S+Tm
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "Confirm deletion of {roleName} role? This cannot be undone. {reassignSubject} will be reassigned to the default role."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: kZkFSm
|
||||
#: src/modules/settings/billing/components/internal/ResourceCreditPriceSelector.tsx
|
||||
@@ -7293,7 +7319,9 @@ msgstr "felter"
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutRecordPageWidgetTypeSelect.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelPermissionFieldSelectFieldMenu.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
|
||||
@@ -15137,6 +15165,8 @@ msgstr "Fanens indstillinger"
|
||||
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
|
||||
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
|
||||
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/FieldWidgetLayoutDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
|
||||
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
|
||||
@@ -16106,6 +16136,7 @@ msgstr "Opsætning af to-faktor godkendelse blev gennemført med succes!"
|
||||
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
|
||||
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
|
||||
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
|
||||
|
||||
@@ -221,6 +221,11 @@ msgstr ""
|
||||
msgid "{advancedFilterCount, plural, one {{advancedFilterCount} advanced rule} other {{advancedFilterCount} advanced rules}}"
|
||||
msgstr "{advancedFilterCount, plural, one {{advancedFilterCount} erweiterte Regel} other {{advancedFilterCount} erweiterte Regeln}}"
|
||||
|
||||
#. js-lingui-id: XWd9bY
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "{agentCount, plural, one {{agentCount} agent} other {{agentCount} agents}}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WGnqk6
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/hooks/useWorkflowAiAgentPermissionActions.ts
|
||||
msgid "{agentDisplayName} role ({agentIdPrefix})"
|
||||
@@ -236,6 +241,11 @@ msgstr "{agentLabel}-Agentenrolle"
|
||||
msgid "{aggregateLabel} of {fieldLabel}"
|
||||
msgstr "{aggregateLabel} von {fieldLabel}"
|
||||
|
||||
#. js-lingui-id: WhHyQh
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "{apiKeyCount, plural, one {{apiKeyCount} API key} other {{apiKeyCount} API keys}}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: u1mVnV
|
||||
#: src/modules/marketplace/components/SettingsApplicationInstallPermissionValidationModal.tsx
|
||||
msgid "{appDisplayName} would like to:"
|
||||
@@ -395,6 +405,11 @@ msgstr "{jobCount, plural, one {Dies wird den ausgewählten Auftrag neu ausführ
|
||||
msgid "{label} list"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1DrH/j
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "{memberCount, plural, one {{memberCount} member} other {{memberCount} members}}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Y32cMj
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadIntermediaryMessages.tsx
|
||||
msgid "{messagesLength} emails"
|
||||
@@ -523,6 +538,11 @@ msgstr ""
|
||||
msgid "{visibleFieldsCount} shown"
|
||||
msgstr "{visibleFieldsCount} angezeigt"
|
||||
|
||||
#. js-lingui-id: WjjsAL
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
|
||||
msgid "{visibleFieldsCount} visible fields"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: riMLMq
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/iterator-action/components/WorkflowIteratorSubStepSwitcher.tsx
|
||||
msgid "{workflowRunIteratorSubStepIterationsCount, plural, one {# item} other {# items}}"
|
||||
@@ -1954,6 +1974,7 @@ msgstr "Ein unerwarteter Fehler ist aufgetreten. Bitte versuchen Sie es erneut."
|
||||
|
||||
#. js-lingui-id: HZFm5R
|
||||
#: src/utils/date-utils.ts
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
#: src/modules/auth/sign-in-up/components/FooterNote.tsx
|
||||
msgid "and"
|
||||
msgstr "und"
|
||||
@@ -3816,10 +3837,15 @@ msgstr "Bestätigen"
|
||||
msgid "Confirm changing your current resource credit allocation."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: FbJ7Si
|
||||
#. js-lingui-id: SU6Tym
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "Confirm deletion of {roleName} role? This cannot be undone. All members will be reassigned to the default role."
|
||||
msgstr "Löschung der Rolle {roleName} bestätigen? Dies kann nicht rückgängig gemacht werden. Alle Mitglieder werden der Standardrolle zugewiesen."
|
||||
msgid "Confirm deletion of {roleName} role? This cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: W7S+Tm
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "Confirm deletion of {roleName} role? This cannot be undone. {reassignSubject} will be reassigned to the default role."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: kZkFSm
|
||||
#: src/modules/settings/billing/components/internal/ResourceCreditPriceSelector.tsx
|
||||
@@ -7293,7 +7319,9 @@ msgstr "Felder"
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutRecordPageWidgetTypeSelect.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelPermissionFieldSelectFieldMenu.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
|
||||
@@ -15137,6 +15165,8 @@ msgstr "Registerkarteneinstellungen"
|
||||
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
|
||||
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
|
||||
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/FieldWidgetLayoutDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
|
||||
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
|
||||
@@ -16104,6 +16134,7 @@ msgstr "Einrichtung der Zwei-Faktor-Authentifizierung erfolgreich abgeschlossen!
|
||||
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
|
||||
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
|
||||
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
|
||||
|
||||
@@ -221,6 +221,11 @@ msgstr ""
|
||||
msgid "{advancedFilterCount, plural, one {{advancedFilterCount} advanced rule} other {{advancedFilterCount} advanced rules}}"
|
||||
msgstr "{advancedFilterCount, plural, one {{advancedFilterCount} προχωρημένος κανόνας} other {{advancedFilterCount} προχωρημένοι κανόνες}}"
|
||||
|
||||
#. js-lingui-id: XWd9bY
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "{agentCount, plural, one {{agentCount} agent} other {{agentCount} agents}}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WGnqk6
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/hooks/useWorkflowAiAgentPermissionActions.ts
|
||||
msgid "{agentDisplayName} role ({agentIdPrefix})"
|
||||
@@ -236,6 +241,11 @@ msgstr "{agentLabel} Ρόλος Πράκτορα"
|
||||
msgid "{aggregateLabel} of {fieldLabel}"
|
||||
msgstr "{aggregateLabel} του {fieldLabel}"
|
||||
|
||||
#. js-lingui-id: WhHyQh
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "{apiKeyCount, plural, one {{apiKeyCount} API key} other {{apiKeyCount} API keys}}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: u1mVnV
|
||||
#: src/modules/marketplace/components/SettingsApplicationInstallPermissionValidationModal.tsx
|
||||
msgid "{appDisplayName} would like to:"
|
||||
@@ -395,6 +405,11 @@ msgstr "{jobCount, plural, one {Αυτό θα επαναλάβει την επι
|
||||
msgid "{label} list"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1DrH/j
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "{memberCount, plural, one {{memberCount} member} other {{memberCount} members}}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Y32cMj
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadIntermediaryMessages.tsx
|
||||
msgid "{messagesLength} emails"
|
||||
@@ -523,6 +538,11 @@ msgstr ""
|
||||
msgid "{visibleFieldsCount} shown"
|
||||
msgstr "Εμφανίζονται {visibleFieldsCount}"
|
||||
|
||||
#. js-lingui-id: WjjsAL
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
|
||||
msgid "{visibleFieldsCount} visible fields"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: riMLMq
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/iterator-action/components/WorkflowIteratorSubStepSwitcher.tsx
|
||||
msgid "{workflowRunIteratorSubStepIterationsCount, plural, one {# item} other {# items}}"
|
||||
@@ -1954,6 +1974,7 @@ msgstr "Παρουσιάστηκε ένα απρόσμενο σφάλμα. Δο
|
||||
|
||||
#. js-lingui-id: HZFm5R
|
||||
#: src/utils/date-utils.ts
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
#: src/modules/auth/sign-in-up/components/FooterNote.tsx
|
||||
msgid "and"
|
||||
msgstr "και"
|
||||
@@ -3816,10 +3837,15 @@ msgstr "Επιβεβαίωση"
|
||||
msgid "Confirm changing your current resource credit allocation."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: FbJ7Si
|
||||
#. js-lingui-id: SU6Tym
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "Confirm deletion of {roleName} role? This cannot be undone. All members will be reassigned to the default role."
|
||||
msgstr "Επιβεβαιώστε την διαγραφή του ρόλου {roleName}; Αυτό δεν μπορεί να αναιρεθεί. Όλα τα μέλη θα επανατοποθετηθούν στον προεπιλεγμένο ρόλο."
|
||||
msgid "Confirm deletion of {roleName} role? This cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: W7S+Tm
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "Confirm deletion of {roleName} role? This cannot be undone. {reassignSubject} will be reassigned to the default role."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: kZkFSm
|
||||
#: src/modules/settings/billing/components/internal/ResourceCreditPriceSelector.tsx
|
||||
@@ -7293,7 +7319,9 @@ msgstr "πεδία"
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutRecordPageWidgetTypeSelect.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelPermissionFieldSelectFieldMenu.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
|
||||
@@ -15139,6 +15167,8 @@ msgstr "Ρυθμίσεις Καρτέλας"
|
||||
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
|
||||
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
|
||||
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/FieldWidgetLayoutDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
|
||||
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
|
||||
@@ -16108,6 +16138,7 @@ msgstr "Η εγκατάσταση δύο παραγοντικής ταυτοπο
|
||||
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
|
||||
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
|
||||
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
|
||||
|
||||
@@ -216,6 +216,11 @@ msgstr "{1} OAuth is not yet set up by your server administrator. They need to f
|
||||
msgid "{advancedFilterCount, plural, one {{advancedFilterCount} advanced rule} other {{advancedFilterCount} advanced rules}}"
|
||||
msgstr "{advancedFilterCount, plural, one {{advancedFilterCount} advanced rule} other {{advancedFilterCount} advanced rules}}"
|
||||
|
||||
#. js-lingui-id: XWd9bY
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "{agentCount, plural, one {{agentCount} agent} other {{agentCount} agents}}"
|
||||
msgstr "{agentCount, plural, one {{agentCount} agent} other {{agentCount} agents}}"
|
||||
|
||||
#. js-lingui-id: WGnqk6
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/hooks/useWorkflowAiAgentPermissionActions.ts
|
||||
msgid "{agentDisplayName} role ({agentIdPrefix})"
|
||||
@@ -231,6 +236,11 @@ msgstr "{agentLabel} Agent Role"
|
||||
msgid "{aggregateLabel} of {fieldLabel}"
|
||||
msgstr "{aggregateLabel} of {fieldLabel}"
|
||||
|
||||
#. js-lingui-id: WhHyQh
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "{apiKeyCount, plural, one {{apiKeyCount} API key} other {{apiKeyCount} API keys}}"
|
||||
msgstr "{apiKeyCount, plural, one {{apiKeyCount} API key} other {{apiKeyCount} API keys}}"
|
||||
|
||||
#. js-lingui-id: u1mVnV
|
||||
#: src/modules/marketplace/components/SettingsApplicationInstallPermissionValidationModal.tsx
|
||||
msgid "{appDisplayName} would like to:"
|
||||
@@ -390,6 +400,11 @@ msgstr "{jobCount, plural, one {This will retry the selected job. It will be re-
|
||||
msgid "{label} list"
|
||||
msgstr "{label} list"
|
||||
|
||||
#. js-lingui-id: 1DrH/j
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "{memberCount, plural, one {{memberCount} member} other {{memberCount} members}}"
|
||||
msgstr "{memberCount, plural, one {{memberCount} member} other {{memberCount} members}}"
|
||||
|
||||
#. js-lingui-id: Y32cMj
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadIntermediaryMessages.tsx
|
||||
msgid "{messagesLength} emails"
|
||||
@@ -518,6 +533,11 @@ msgstr "{totalFieldsCount} visible fields"
|
||||
msgid "{visibleFieldsCount} shown"
|
||||
msgstr "{visibleFieldsCount} shown"
|
||||
|
||||
#. js-lingui-id: WjjsAL
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
|
||||
msgid "{visibleFieldsCount} visible fields"
|
||||
msgstr "{visibleFieldsCount} visible fields"
|
||||
|
||||
#. js-lingui-id: riMLMq
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/iterator-action/components/WorkflowIteratorSubStepSwitcher.tsx
|
||||
msgid "{workflowRunIteratorSubStepIterationsCount, plural, one {# item} other {# items}}"
|
||||
@@ -1949,6 +1969,7 @@ msgstr "An unexpected error occurred. Please try again."
|
||||
|
||||
#. js-lingui-id: HZFm5R
|
||||
#: src/utils/date-utils.ts
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
#: src/modules/auth/sign-in-up/components/FooterNote.tsx
|
||||
msgid "and"
|
||||
msgstr "and"
|
||||
@@ -3811,10 +3832,15 @@ msgstr "Confirm"
|
||||
msgid "Confirm changing your current resource credit allocation."
|
||||
msgstr "Confirm changing your current resource credit allocation."
|
||||
|
||||
#. js-lingui-id: FbJ7Si
|
||||
#. js-lingui-id: SU6Tym
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "Confirm deletion of {roleName} role? This cannot be undone. All members will be reassigned to the default role."
|
||||
msgstr "Confirm deletion of {roleName} role? This cannot be undone. All members will be reassigned to the default role."
|
||||
msgid "Confirm deletion of {roleName} role? This cannot be undone."
|
||||
msgstr "Confirm deletion of {roleName} role? This cannot be undone."
|
||||
|
||||
#. js-lingui-id: W7S+Tm
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "Confirm deletion of {roleName} role? This cannot be undone. {reassignSubject} will be reassigned to the default role."
|
||||
msgstr "Confirm deletion of {roleName} role? This cannot be undone. {reassignSubject} will be reassigned to the default role."
|
||||
|
||||
#. js-lingui-id: kZkFSm
|
||||
#: src/modules/settings/billing/components/internal/ResourceCreditPriceSelector.tsx
|
||||
@@ -7288,7 +7314,9 @@ msgstr "fields"
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutRecordPageWidgetTypeSelect.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelPermissionFieldSelectFieldMenu.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
|
||||
@@ -15155,6 +15183,8 @@ msgstr "Tab Settings"
|
||||
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
|
||||
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
|
||||
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/FieldWidgetLayoutDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
|
||||
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
|
||||
@@ -16154,6 +16184,7 @@ msgstr "Two-factor authentication setup completed successfully!"
|
||||
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
|
||||
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
|
||||
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
|
||||
|
||||
@@ -221,6 +221,11 @@ msgstr ""
|
||||
msgid "{advancedFilterCount, plural, one {{advancedFilterCount} advanced rule} other {{advancedFilterCount} advanced rules}}"
|
||||
msgstr "{advancedFilterCount, plural, one {{advancedFilterCount} regla avanzada} other {{advancedFilterCount} reglas avanzadas}}"
|
||||
|
||||
#. js-lingui-id: XWd9bY
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "{agentCount, plural, one {{agentCount} agent} other {{agentCount} agents}}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WGnqk6
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/hooks/useWorkflowAiAgentPermissionActions.ts
|
||||
msgid "{agentDisplayName} role ({agentIdPrefix})"
|
||||
@@ -236,6 +241,11 @@ msgstr "Rol de agente de {agentLabel}"
|
||||
msgid "{aggregateLabel} of {fieldLabel}"
|
||||
msgstr "{aggregateLabel} de {fieldLabel}"
|
||||
|
||||
#. js-lingui-id: WhHyQh
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "{apiKeyCount, plural, one {{apiKeyCount} API key} other {{apiKeyCount} API keys}}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: u1mVnV
|
||||
#: src/modules/marketplace/components/SettingsApplicationInstallPermissionValidationModal.tsx
|
||||
msgid "{appDisplayName} would like to:"
|
||||
@@ -395,6 +405,11 @@ msgstr "{jobCount, plural, one {Esto reintentará el trabajo seleccionado. Será
|
||||
msgid "{label} list"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1DrH/j
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "{memberCount, plural, one {{memberCount} member} other {{memberCount} members}}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Y32cMj
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadIntermediaryMessages.tsx
|
||||
msgid "{messagesLength} emails"
|
||||
@@ -523,6 +538,11 @@ msgstr ""
|
||||
msgid "{visibleFieldsCount} shown"
|
||||
msgstr "{visibleFieldsCount} mostrados"
|
||||
|
||||
#. js-lingui-id: WjjsAL
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
|
||||
msgid "{visibleFieldsCount} visible fields"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: riMLMq
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/iterator-action/components/WorkflowIteratorSubStepSwitcher.tsx
|
||||
msgid "{workflowRunIteratorSubStepIterationsCount, plural, one {# item} other {# items}}"
|
||||
@@ -1954,6 +1974,7 @@ msgstr "Se produjo un error inesperado. Por favor, inténtelo de nuevo."
|
||||
|
||||
#. js-lingui-id: HZFm5R
|
||||
#: src/utils/date-utils.ts
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
#: src/modules/auth/sign-in-up/components/FooterNote.tsx
|
||||
msgid "and"
|
||||
msgstr "y"
|
||||
@@ -3816,10 +3837,15 @@ msgstr "Confirmar"
|
||||
msgid "Confirm changing your current resource credit allocation."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: FbJ7Si
|
||||
#. js-lingui-id: SU6Tym
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "Confirm deletion of {roleName} role? This cannot be undone. All members will be reassigned to the default role."
|
||||
msgstr "¿Confirmar eliminación del rol {roleName}? Esto no se puede deshacer. Todos los miembros serán reasignados al rol predeterminado."
|
||||
msgid "Confirm deletion of {roleName} role? This cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: W7S+Tm
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "Confirm deletion of {roleName} role? This cannot be undone. {reassignSubject} will be reassigned to the default role."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: kZkFSm
|
||||
#: src/modules/settings/billing/components/internal/ResourceCreditPriceSelector.tsx
|
||||
@@ -7293,7 +7319,9 @@ msgstr "campos"
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutRecordPageWidgetTypeSelect.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelPermissionFieldSelectFieldMenu.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
|
||||
@@ -15137,6 +15165,8 @@ msgstr "Configuración de la pestaña"
|
||||
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
|
||||
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
|
||||
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/FieldWidgetLayoutDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
|
||||
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
|
||||
@@ -16106,6 +16136,7 @@ msgstr "¡La configuración de la autenticación de dos factores se completó co
|
||||
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
|
||||
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
|
||||
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
|
||||
|
||||
@@ -221,6 +221,11 @@ msgstr ""
|
||||
msgid "{advancedFilterCount, plural, one {{advancedFilterCount} advanced rule} other {{advancedFilterCount} advanced rules}}"
|
||||
msgstr "{advancedFilterCount, plural, one {{advancedFilterCount} kehittynyt sääntö} other {{advancedFilterCount} kehittyneet säännöt}}"
|
||||
|
||||
#. js-lingui-id: XWd9bY
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "{agentCount, plural, one {{agentCount} agent} other {{agentCount} agents}}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WGnqk6
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/hooks/useWorkflowAiAgentPermissionActions.ts
|
||||
msgid "{agentDisplayName} role ({agentIdPrefix})"
|
||||
@@ -236,6 +241,11 @@ msgstr "Agenttirooli: {agentLabel}"
|
||||
msgid "{aggregateLabel} of {fieldLabel}"
|
||||
msgstr "{aggregateLabel} {fieldLabel} määrä"
|
||||
|
||||
#. js-lingui-id: WhHyQh
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "{apiKeyCount, plural, one {{apiKeyCount} API key} other {{apiKeyCount} API keys}}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: u1mVnV
|
||||
#: src/modules/marketplace/components/SettingsApplicationInstallPermissionValidationModal.tsx
|
||||
msgid "{appDisplayName} would like to:"
|
||||
@@ -395,6 +405,11 @@ msgstr "{jobCount, plural, one {Tämä yrittää valittua työtä uudelleen. Se
|
||||
msgid "{label} list"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1DrH/j
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "{memberCount, plural, one {{memberCount} member} other {{memberCount} members}}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Y32cMj
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadIntermediaryMessages.tsx
|
||||
msgid "{messagesLength} emails"
|
||||
@@ -523,6 +538,11 @@ msgstr ""
|
||||
msgid "{visibleFieldsCount} shown"
|
||||
msgstr "{visibleFieldsCount} näkyvissä"
|
||||
|
||||
#. js-lingui-id: WjjsAL
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
|
||||
msgid "{visibleFieldsCount} visible fields"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: riMLMq
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/iterator-action/components/WorkflowIteratorSubStepSwitcher.tsx
|
||||
msgid "{workflowRunIteratorSubStepIterationsCount, plural, one {# item} other {# items}}"
|
||||
@@ -1954,6 +1974,7 @@ msgstr "Tapahtui odottamaton virhe. Yritä uudelleen."
|
||||
|
||||
#. js-lingui-id: HZFm5R
|
||||
#: src/utils/date-utils.ts
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
#: src/modules/auth/sign-in-up/components/FooterNote.tsx
|
||||
msgid "and"
|
||||
msgstr "ja"
|
||||
@@ -3816,10 +3837,15 @@ msgstr "Vahvista"
|
||||
msgid "Confirm changing your current resource credit allocation."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: FbJ7Si
|
||||
#. js-lingui-id: SU6Tym
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "Confirm deletion of {roleName} role? This cannot be undone. All members will be reassigned to the default role."
|
||||
msgstr "Vahvista {roleName}-roolin poisto? Tätä toimintoa ei voi peruuttaa. Kaikki jäsenet siirretään oletusrooliin."
|
||||
msgid "Confirm deletion of {roleName} role? This cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: W7S+Tm
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "Confirm deletion of {roleName} role? This cannot be undone. {reassignSubject} will be reassigned to the default role."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: kZkFSm
|
||||
#: src/modules/settings/billing/components/internal/ResourceCreditPriceSelector.tsx
|
||||
@@ -7293,7 +7319,9 @@ msgstr "kentät"
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutRecordPageWidgetTypeSelect.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelPermissionFieldSelectFieldMenu.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
|
||||
@@ -15137,6 +15165,8 @@ msgstr "Välilehden asetukset"
|
||||
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
|
||||
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
|
||||
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/FieldWidgetLayoutDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
|
||||
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
|
||||
@@ -16104,6 +16134,7 @@ msgstr "Kaksivaiheisen todennuksen asennus on valmis!"
|
||||
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
|
||||
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
|
||||
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
|
||||
|
||||
@@ -221,6 +221,11 @@ msgstr ""
|
||||
msgid "{advancedFilterCount, plural, one {{advancedFilterCount} advanced rule} other {{advancedFilterCount} advanced rules}}"
|
||||
msgstr "{advancedFilterCount, plural, one {{advancedFilterCount} règle avancée} other {{advancedFilterCount} règles avancées}}"
|
||||
|
||||
#. js-lingui-id: XWd9bY
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "{agentCount, plural, one {{agentCount} agent} other {{agentCount} agents}}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WGnqk6
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/hooks/useWorkflowAiAgentPermissionActions.ts
|
||||
msgid "{agentDisplayName} role ({agentIdPrefix})"
|
||||
@@ -236,6 +241,11 @@ msgstr "Rôle d'agent {agentLabel}"
|
||||
msgid "{aggregateLabel} of {fieldLabel}"
|
||||
msgstr "{aggregateLabel} de {fieldLabel}"
|
||||
|
||||
#. js-lingui-id: WhHyQh
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "{apiKeyCount, plural, one {{apiKeyCount} API key} other {{apiKeyCount} API keys}}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: u1mVnV
|
||||
#: src/modules/marketplace/components/SettingsApplicationInstallPermissionValidationModal.tsx
|
||||
msgid "{appDisplayName} would like to:"
|
||||
@@ -395,6 +405,11 @@ msgstr "{jobCount, plural, one {Ceci va réessayer la tâche sélectionnée. Ell
|
||||
msgid "{label} list"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1DrH/j
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "{memberCount, plural, one {{memberCount} member} other {{memberCount} members}}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Y32cMj
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadIntermediaryMessages.tsx
|
||||
msgid "{messagesLength} emails"
|
||||
@@ -523,6 +538,11 @@ msgstr ""
|
||||
msgid "{visibleFieldsCount} shown"
|
||||
msgstr "{visibleFieldsCount} affichés"
|
||||
|
||||
#. js-lingui-id: WjjsAL
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
|
||||
msgid "{visibleFieldsCount} visible fields"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: riMLMq
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/iterator-action/components/WorkflowIteratorSubStepSwitcher.tsx
|
||||
msgid "{workflowRunIteratorSubStepIterationsCount, plural, one {# item} other {# items}}"
|
||||
@@ -1954,6 +1974,7 @@ msgstr "Une erreur inattendue s'est produite. Veuillez réessayer."
|
||||
|
||||
#. js-lingui-id: HZFm5R
|
||||
#: src/utils/date-utils.ts
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
#: src/modules/auth/sign-in-up/components/FooterNote.tsx
|
||||
msgid "and"
|
||||
msgstr "et"
|
||||
@@ -3816,10 +3837,15 @@ msgstr "Confirmer"
|
||||
msgid "Confirm changing your current resource credit allocation."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: FbJ7Si
|
||||
#. js-lingui-id: SU6Tym
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "Confirm deletion of {roleName} role? This cannot be undone. All members will be reassigned to the default role."
|
||||
msgstr "Confirmer la suppression du rôle {roleName} ? Cela ne peut pas être annulé. Tous les membres seront réassignés au rôle par défaut."
|
||||
msgid "Confirm deletion of {roleName} role? This cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: W7S+Tm
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "Confirm deletion of {roleName} role? This cannot be undone. {reassignSubject} will be reassigned to the default role."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: kZkFSm
|
||||
#: src/modules/settings/billing/components/internal/ResourceCreditPriceSelector.tsx
|
||||
@@ -7293,7 +7319,9 @@ msgstr "champs"
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutRecordPageWidgetTypeSelect.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelPermissionFieldSelectFieldMenu.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
|
||||
@@ -15137,6 +15165,8 @@ msgstr "Paramètres de l'onglet"
|
||||
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
|
||||
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
|
||||
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/FieldWidgetLayoutDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
|
||||
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
|
||||
@@ -16106,6 +16136,7 @@ msgstr "Configuration de l'authentification à deux facteurs terminée avec succ
|
||||
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
|
||||
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
|
||||
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
|
||||
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -221,6 +221,11 @@ msgstr ""
|
||||
msgid "{advancedFilterCount, plural, one {{advancedFilterCount} advanced rule} other {{advancedFilterCount} advanced rules}}"
|
||||
msgstr "{advancedFilterCount, plural, one {{advancedFilterCount} כלל מתקדם} two {{advancedFilterCount} כללים מתקדמים} many {{advancedFilterCount} כללים מתקדמים} other {{advancedFilterCount} כללים מתקדמים}}"
|
||||
|
||||
#. js-lingui-id: XWd9bY
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "{agentCount, plural, one {{agentCount} agent} other {{agentCount} agents}}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WGnqk6
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/hooks/useWorkflowAiAgentPermissionActions.ts
|
||||
msgid "{agentDisplayName} role ({agentIdPrefix})"
|
||||
@@ -236,6 +241,11 @@ msgstr "תפקיד הסוכן {agentLabel}"
|
||||
msgid "{aggregateLabel} of {fieldLabel}"
|
||||
msgstr "{aggregateLabel} של {fieldLabel}"
|
||||
|
||||
#. js-lingui-id: WhHyQh
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "{apiKeyCount, plural, one {{apiKeyCount} API key} other {{apiKeyCount} API keys}}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: u1mVnV
|
||||
#: src/modules/marketplace/components/SettingsApplicationInstallPermissionValidationModal.tsx
|
||||
msgid "{appDisplayName} would like to:"
|
||||
@@ -395,6 +405,11 @@ msgstr "{jobCount, plural, one {זה ינסה להפעיל מחדש את העב
|
||||
msgid "{label} list"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1DrH/j
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "{memberCount, plural, one {{memberCount} member} other {{memberCount} members}}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Y32cMj
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadIntermediaryMessages.tsx
|
||||
msgid "{messagesLength} emails"
|
||||
@@ -523,6 +538,11 @@ msgstr ""
|
||||
msgid "{visibleFieldsCount} shown"
|
||||
msgstr "מוצגים {visibleFieldsCount}"
|
||||
|
||||
#. js-lingui-id: WjjsAL
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
|
||||
msgid "{visibleFieldsCount} visible fields"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: riMLMq
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/iterator-action/components/WorkflowIteratorSubStepSwitcher.tsx
|
||||
msgid "{workflowRunIteratorSubStepIterationsCount, plural, one {# item} other {# items}}"
|
||||
@@ -1954,6 +1974,7 @@ msgstr "אירעה שגיאה בלתי צפויה. נא לנסות שוב."
|
||||
|
||||
#. js-lingui-id: HZFm5R
|
||||
#: src/utils/date-utils.ts
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
#: src/modules/auth/sign-in-up/components/FooterNote.tsx
|
||||
msgid "and"
|
||||
msgstr "וגם"
|
||||
@@ -3816,10 +3837,15 @@ msgstr "אישור"
|
||||
msgid "Confirm changing your current resource credit allocation."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: FbJ7Si
|
||||
#. js-lingui-id: SU6Tym
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "Confirm deletion of {roleName} role? This cannot be undone. All members will be reassigned to the default role."
|
||||
msgstr "אישור מחיקת תפקיד {roleName}? לא ניתן לבטל זאת. כל החברים יוקצו לתפקיד ברירת המחדל."
|
||||
msgid "Confirm deletion of {roleName} role? This cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: W7S+Tm
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "Confirm deletion of {roleName} role? This cannot be undone. {reassignSubject} will be reassigned to the default role."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: kZkFSm
|
||||
#: src/modules/settings/billing/components/internal/ResourceCreditPriceSelector.tsx
|
||||
@@ -7293,7 +7319,9 @@ msgstr "שדות"
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutRecordPageWidgetTypeSelect.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelPermissionFieldSelectFieldMenu.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
|
||||
@@ -15137,6 +15165,8 @@ msgstr "הגדרות כרטיסייה"
|
||||
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
|
||||
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
|
||||
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/FieldWidgetLayoutDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
|
||||
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
|
||||
@@ -16104,6 +16134,7 @@ msgstr "הגדרת האימות הדו-שלבי הושלמה בהצלחה!"
|
||||
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
|
||||
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
|
||||
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
|
||||
|
||||
@@ -221,6 +221,11 @@ msgstr ""
|
||||
msgid "{advancedFilterCount, plural, one {{advancedFilterCount} advanced rule} other {{advancedFilterCount} advanced rules}}"
|
||||
msgstr "{advancedFilterCount, plural, one {{advancedFilterCount} haladó szabály} other {{advancedFilterCount} haladó szabályok}}"
|
||||
|
||||
#. js-lingui-id: XWd9bY
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "{agentCount, plural, one {{agentCount} agent} other {{agentCount} agents}}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WGnqk6
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/hooks/useWorkflowAiAgentPermissionActions.ts
|
||||
msgid "{agentDisplayName} role ({agentIdPrefix})"
|
||||
@@ -236,6 +241,11 @@ msgstr "{agentLabel} ügynök szerepköre"
|
||||
msgid "{aggregateLabel} of {fieldLabel}"
|
||||
msgstr "{aggregateLabel} a(z) {fieldLabel} alapján"
|
||||
|
||||
#. js-lingui-id: WhHyQh
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "{apiKeyCount, plural, one {{apiKeyCount} API key} other {{apiKeyCount} API keys}}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: u1mVnV
|
||||
#: src/modules/marketplace/components/SettingsApplicationInstallPermissionValidationModal.tsx
|
||||
msgid "{appDisplayName} would like to:"
|
||||
@@ -395,6 +405,11 @@ msgstr "{jobCount, plural, one {Ez újraindítja a kijelölt állást. Újra vé
|
||||
msgid "{label} list"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1DrH/j
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "{memberCount, plural, one {{memberCount} member} other {{memberCount} members}}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Y32cMj
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadIntermediaryMessages.tsx
|
||||
msgid "{messagesLength} emails"
|
||||
@@ -523,6 +538,11 @@ msgstr ""
|
||||
msgid "{visibleFieldsCount} shown"
|
||||
msgstr "{visibleFieldsCount} megjelenítve"
|
||||
|
||||
#. js-lingui-id: WjjsAL
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
|
||||
msgid "{visibleFieldsCount} visible fields"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: riMLMq
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/iterator-action/components/WorkflowIteratorSubStepSwitcher.tsx
|
||||
msgid "{workflowRunIteratorSubStepIterationsCount, plural, one {# item} other {# items}}"
|
||||
@@ -1954,6 +1974,7 @@ msgstr "Váratlan hiba történt. Kérjük, próbálja meg újra."
|
||||
|
||||
#. js-lingui-id: HZFm5R
|
||||
#: src/utils/date-utils.ts
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
#: src/modules/auth/sign-in-up/components/FooterNote.tsx
|
||||
msgid "and"
|
||||
msgstr "és"
|
||||
@@ -3816,10 +3837,15 @@ msgstr "Megerősítés"
|
||||
msgid "Confirm changing your current resource credit allocation."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: FbJ7Si
|
||||
#. js-lingui-id: SU6Tym
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "Confirm deletion of {roleName} role? This cannot be undone. All members will be reassigned to the default role."
|
||||
msgstr "Megerősíti a(z) {roleName} szerepkör törlését? Ez nem vonható vissza. Minden tagot átmenetileg az alapértelmezett szerepkörbe helyez."
|
||||
msgid "Confirm deletion of {roleName} role? This cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: W7S+Tm
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "Confirm deletion of {roleName} role? This cannot be undone. {reassignSubject} will be reassigned to the default role."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: kZkFSm
|
||||
#: src/modules/settings/billing/components/internal/ResourceCreditPriceSelector.tsx
|
||||
@@ -7293,7 +7319,9 @@ msgstr "mezők"
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutRecordPageWidgetTypeSelect.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelPermissionFieldSelectFieldMenu.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
|
||||
@@ -15137,6 +15165,8 @@ msgstr "Fül beállítások"
|
||||
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
|
||||
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
|
||||
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/FieldWidgetLayoutDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
|
||||
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
|
||||
@@ -16104,6 +16134,7 @@ msgstr "Kétfaktoros hitelesítési beállítás sikeresen befejezve!"
|
||||
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
|
||||
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
|
||||
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
|
||||
|
||||
@@ -221,6 +221,11 @@ msgstr ""
|
||||
msgid "{advancedFilterCount, plural, one {{advancedFilterCount} advanced rule} other {{advancedFilterCount} advanced rules}}"
|
||||
msgstr "{advancedFilterCount, plural, one {{advancedFilterCount} regola avanzata} other {{advancedFilterCount} regole avanzate}}"
|
||||
|
||||
#. js-lingui-id: XWd9bY
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "{agentCount, plural, one {{agentCount} agent} other {{agentCount} agents}}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WGnqk6
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/hooks/useWorkflowAiAgentPermissionActions.ts
|
||||
msgid "{agentDisplayName} role ({agentIdPrefix})"
|
||||
@@ -236,6 +241,11 @@ msgstr "Ruolo dell'agente {agentLabel}"
|
||||
msgid "{aggregateLabel} of {fieldLabel}"
|
||||
msgstr "{aggregateLabel} di {fieldLabel}"
|
||||
|
||||
#. js-lingui-id: WhHyQh
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "{apiKeyCount, plural, one {{apiKeyCount} API key} other {{apiKeyCount} API keys}}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: u1mVnV
|
||||
#: src/modules/marketplace/components/SettingsApplicationInstallPermissionValidationModal.tsx
|
||||
msgid "{appDisplayName} would like to:"
|
||||
@@ -395,6 +405,11 @@ msgstr "{jobCount, plural, one {Questo riproverà il lavoro selezionato. Verrà
|
||||
msgid "{label} list"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1DrH/j
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "{memberCount, plural, one {{memberCount} member} other {{memberCount} members}}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Y32cMj
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadIntermediaryMessages.tsx
|
||||
msgid "{messagesLength} emails"
|
||||
@@ -523,6 +538,11 @@ msgstr ""
|
||||
msgid "{visibleFieldsCount} shown"
|
||||
msgstr "{visibleFieldsCount} visualizzati"
|
||||
|
||||
#. js-lingui-id: WjjsAL
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
|
||||
msgid "{visibleFieldsCount} visible fields"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: riMLMq
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/iterator-action/components/WorkflowIteratorSubStepSwitcher.tsx
|
||||
msgid "{workflowRunIteratorSubStepIterationsCount, plural, one {# item} other {# items}}"
|
||||
@@ -1954,6 +1974,7 @@ msgstr "Si è verificato un errore imprevisto. Riprova."
|
||||
|
||||
#. js-lingui-id: HZFm5R
|
||||
#: src/utils/date-utils.ts
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
#: src/modules/auth/sign-in-up/components/FooterNote.tsx
|
||||
msgid "and"
|
||||
msgstr "e"
|
||||
@@ -3816,10 +3837,15 @@ msgstr "Conferma"
|
||||
msgid "Confirm changing your current resource credit allocation."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: FbJ7Si
|
||||
#. js-lingui-id: SU6Tym
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "Confirm deletion of {roleName} role? This cannot be undone. All members will be reassigned to the default role."
|
||||
msgstr "Conferma l'eliminazione del ruolo {roleName}? Questo non può essere annullato. Tutti i membri verranno riassegnati al ruolo predefinito."
|
||||
msgid "Confirm deletion of {roleName} role? This cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: W7S+Tm
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "Confirm deletion of {roleName} role? This cannot be undone. {reassignSubject} will be reassigned to the default role."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: kZkFSm
|
||||
#: src/modules/settings/billing/components/internal/ResourceCreditPriceSelector.tsx
|
||||
@@ -7293,7 +7319,9 @@ msgstr "campi"
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutRecordPageWidgetTypeSelect.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelPermissionFieldSelectFieldMenu.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
|
||||
@@ -15137,6 +15165,8 @@ msgstr "Impostazioni scheda"
|
||||
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
|
||||
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
|
||||
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/FieldWidgetLayoutDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
|
||||
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
|
||||
@@ -16106,6 +16136,7 @@ msgstr "Configurazione dell'autenticazione a due fattori completata con successo
|
||||
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
|
||||
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
|
||||
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
|
||||
|
||||
@@ -221,6 +221,11 @@ msgstr ""
|
||||
msgid "{advancedFilterCount, plural, one {{advancedFilterCount} advanced rule} other {{advancedFilterCount} advanced rules}}"
|
||||
msgstr "{advancedFilterCount, plural, other {{advancedFilterCount} 件の高度なルール}}"
|
||||
|
||||
#. js-lingui-id: XWd9bY
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "{agentCount, plural, one {{agentCount} agent} other {{agentCount} agents}}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WGnqk6
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/hooks/useWorkflowAiAgentPermissionActions.ts
|
||||
msgid "{agentDisplayName} role ({agentIdPrefix})"
|
||||
@@ -236,6 +241,11 @@ msgstr "{agentLabel} のエージェントの役割"
|
||||
msgid "{aggregateLabel} of {fieldLabel}"
|
||||
msgstr "{fieldLabel}の{aggregateLabel}"
|
||||
|
||||
#. js-lingui-id: WhHyQh
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "{apiKeyCount, plural, one {{apiKeyCount} API key} other {{apiKeyCount} API keys}}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: u1mVnV
|
||||
#: src/modules/marketplace/components/SettingsApplicationInstallPermissionValidationModal.tsx
|
||||
msgid "{appDisplayName} would like to:"
|
||||
@@ -395,6 +405,11 @@ msgstr "{jobCount, plural, other {選択されたジョブを再試行します
|
||||
msgid "{label} list"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1DrH/j
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "{memberCount, plural, one {{memberCount} member} other {{memberCount} members}}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Y32cMj
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadIntermediaryMessages.tsx
|
||||
msgid "{messagesLength} emails"
|
||||
@@ -523,6 +538,11 @@ msgstr ""
|
||||
msgid "{visibleFieldsCount} shown"
|
||||
msgstr "{visibleFieldsCount} 件を表示中"
|
||||
|
||||
#. js-lingui-id: WjjsAL
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
|
||||
msgid "{visibleFieldsCount} visible fields"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: riMLMq
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/iterator-action/components/WorkflowIteratorSubStepSwitcher.tsx
|
||||
msgid "{workflowRunIteratorSubStepIterationsCount, plural, one {# item} other {# items}}"
|
||||
@@ -1954,6 +1974,7 @@ msgstr "予期しないエラーが発生しました。もう一度お試しく
|
||||
|
||||
#. js-lingui-id: HZFm5R
|
||||
#: src/utils/date-utils.ts
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
#: src/modules/auth/sign-in-up/components/FooterNote.tsx
|
||||
msgid "and"
|
||||
msgstr "および"
|
||||
@@ -3816,10 +3837,15 @@ msgstr "確認"
|
||||
msgid "Confirm changing your current resource credit allocation."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: FbJ7Si
|
||||
#. js-lingui-id: SU6Tym
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "Confirm deletion of {roleName} role? This cannot be undone. All members will be reassigned to the default role."
|
||||
msgstr "{roleName}のロールを削除しますか?この操作は元に戻せません。すべてのメンバーはデフォルトのロールに再割り当てされます。"
|
||||
msgid "Confirm deletion of {roleName} role? This cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: W7S+Tm
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "Confirm deletion of {roleName} role? This cannot be undone. {reassignSubject} will be reassigned to the default role."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: kZkFSm
|
||||
#: src/modules/settings/billing/components/internal/ResourceCreditPriceSelector.tsx
|
||||
@@ -7293,7 +7319,9 @@ msgstr "フィールド"
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutRecordPageWidgetTypeSelect.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelPermissionFieldSelectFieldMenu.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
|
||||
@@ -15137,6 +15165,8 @@ msgstr "タブ設定"
|
||||
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
|
||||
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
|
||||
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/FieldWidgetLayoutDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
|
||||
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
|
||||
@@ -16104,6 +16134,7 @@ msgstr "二要素認証のセットアップが正常に完了しました!"
|
||||
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
|
||||
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
|
||||
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
|
||||
|
||||
@@ -221,6 +221,11 @@ msgstr ""
|
||||
msgid "{advancedFilterCount, plural, one {{advancedFilterCount} advanced rule} other {{advancedFilterCount} advanced rules}}"
|
||||
msgstr "{advancedFilterCount, plural, other {{advancedFilterCount}개 고급 규칙}}"
|
||||
|
||||
#. js-lingui-id: XWd9bY
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "{agentCount, plural, one {{agentCount} agent} other {{agentCount} agents}}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WGnqk6
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/hooks/useWorkflowAiAgentPermissionActions.ts
|
||||
msgid "{agentDisplayName} role ({agentIdPrefix})"
|
||||
@@ -236,6 +241,11 @@ msgstr "{agentLabel} 에이전트 역할"
|
||||
msgid "{aggregateLabel} of {fieldLabel}"
|
||||
msgstr "{fieldLabel}의 {aggregateLabel}"
|
||||
|
||||
#. js-lingui-id: WhHyQh
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "{apiKeyCount, plural, one {{apiKeyCount} API key} other {{apiKeyCount} API keys}}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: u1mVnV
|
||||
#: src/modules/marketplace/components/SettingsApplicationInstallPermissionValidationModal.tsx
|
||||
msgid "{appDisplayName} would like to:"
|
||||
@@ -395,6 +405,11 @@ msgstr "{jobCount, plural, other {선택된 작업들을 재시도합니다. 처
|
||||
msgid "{label} list"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1DrH/j
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "{memberCount, plural, one {{memberCount} member} other {{memberCount} members}}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Y32cMj
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadIntermediaryMessages.tsx
|
||||
msgid "{messagesLength} emails"
|
||||
@@ -523,6 +538,11 @@ msgstr ""
|
||||
msgid "{visibleFieldsCount} shown"
|
||||
msgstr "{visibleFieldsCount}개 표시됨"
|
||||
|
||||
#. js-lingui-id: WjjsAL
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
|
||||
msgid "{visibleFieldsCount} visible fields"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: riMLMq
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/iterator-action/components/WorkflowIteratorSubStepSwitcher.tsx
|
||||
msgid "{workflowRunIteratorSubStepIterationsCount, plural, one {# item} other {# items}}"
|
||||
@@ -1954,6 +1974,7 @@ msgstr "예기치 않은 오류가 발생했습니다. 다시 시도해 주세
|
||||
|
||||
#. js-lingui-id: HZFm5R
|
||||
#: src/utils/date-utils.ts
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
#: src/modules/auth/sign-in-up/components/FooterNote.tsx
|
||||
msgid "and"
|
||||
msgstr "및"
|
||||
@@ -3816,10 +3837,15 @@ msgstr "확인"
|
||||
msgid "Confirm changing your current resource credit allocation."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: FbJ7Si
|
||||
#. js-lingui-id: SU6Tym
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "Confirm deletion of {roleName} role? This cannot be undone. All members will be reassigned to the default role."
|
||||
msgstr "{roleName} 역할 삭제를 확인하시겠습니까? 이 작업은 되돌릴 수 없습니다. 모든 구성원은 기본 역할로 재할당됩니다."
|
||||
msgid "Confirm deletion of {roleName} role? This cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: W7S+Tm
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "Confirm deletion of {roleName} role? This cannot be undone. {reassignSubject} will be reassigned to the default role."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: kZkFSm
|
||||
#: src/modules/settings/billing/components/internal/ResourceCreditPriceSelector.tsx
|
||||
@@ -7293,7 +7319,9 @@ msgstr "필드"
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutRecordPageWidgetTypeSelect.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelPermissionFieldSelectFieldMenu.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
|
||||
@@ -15137,6 +15165,8 @@ msgstr "탭 설정"
|
||||
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
|
||||
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
|
||||
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/FieldWidgetLayoutDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
|
||||
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
|
||||
@@ -16104,6 +16134,7 @@ msgstr "이중 인증 설정이 성공적으로 완료되었습니다!"
|
||||
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
|
||||
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
|
||||
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
|
||||
|
||||
@@ -221,6 +221,11 @@ msgstr ""
|
||||
msgid "{advancedFilterCount, plural, one {{advancedFilterCount} advanced rule} other {{advancedFilterCount} advanced rules}}"
|
||||
msgstr "{advancedFilterCount, plural, one {{advancedFilterCount} geavanceerde regel} other {{advancedFilterCount} geavanceerde regels}}"
|
||||
|
||||
#. js-lingui-id: XWd9bY
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "{agentCount, plural, one {{agentCount} agent} other {{agentCount} agents}}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WGnqk6
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/hooks/useWorkflowAiAgentPermissionActions.ts
|
||||
msgid "{agentDisplayName} role ({agentIdPrefix})"
|
||||
@@ -236,6 +241,11 @@ msgstr "Agentrol {agentLabel}"
|
||||
msgid "{aggregateLabel} of {fieldLabel}"
|
||||
msgstr "{aggregateLabel} van {fieldLabel}"
|
||||
|
||||
#. js-lingui-id: WhHyQh
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "{apiKeyCount, plural, one {{apiKeyCount} API key} other {{apiKeyCount} API keys}}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: u1mVnV
|
||||
#: src/modules/marketplace/components/SettingsApplicationInstallPermissionValidationModal.tsx
|
||||
msgid "{appDisplayName} would like to:"
|
||||
@@ -395,6 +405,11 @@ msgstr "{jobCount, plural, one {Dit zal de geselecteerde taak opnieuw proberen.
|
||||
msgid "{label} list"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1DrH/j
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "{memberCount, plural, one {{memberCount} member} other {{memberCount} members}}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Y32cMj
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadIntermediaryMessages.tsx
|
||||
msgid "{messagesLength} emails"
|
||||
@@ -523,6 +538,11 @@ msgstr ""
|
||||
msgid "{visibleFieldsCount} shown"
|
||||
msgstr "{visibleFieldsCount} weergegeven"
|
||||
|
||||
#. js-lingui-id: WjjsAL
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
|
||||
msgid "{visibleFieldsCount} visible fields"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: riMLMq
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/iterator-action/components/WorkflowIteratorSubStepSwitcher.tsx
|
||||
msgid "{workflowRunIteratorSubStepIterationsCount, plural, one {# item} other {# items}}"
|
||||
@@ -1954,6 +1974,7 @@ msgstr "Er is een onverwachte fout opgetreden. Probeer het opnieuw."
|
||||
|
||||
#. js-lingui-id: HZFm5R
|
||||
#: src/utils/date-utils.ts
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
#: src/modules/auth/sign-in-up/components/FooterNote.tsx
|
||||
msgid "and"
|
||||
msgstr "en"
|
||||
@@ -3816,10 +3837,15 @@ msgstr "Bevestigen"
|
||||
msgid "Confirm changing your current resource credit allocation."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: FbJ7Si
|
||||
#. js-lingui-id: SU6Tym
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "Confirm deletion of {roleName} role? This cannot be undone. All members will be reassigned to the default role."
|
||||
msgstr "Bevestigen verwijderen van rol {roleName}? Dit kan niet ongedaan worden gemaakt. Alle leden zullen worden herverdeeld naar de standaard rol."
|
||||
msgid "Confirm deletion of {roleName} role? This cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: W7S+Tm
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "Confirm deletion of {roleName} role? This cannot be undone. {reassignSubject} will be reassigned to the default role."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: kZkFSm
|
||||
#: src/modules/settings/billing/components/internal/ResourceCreditPriceSelector.tsx
|
||||
@@ -7293,7 +7319,9 @@ msgstr "velden"
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutRecordPageWidgetTypeSelect.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelPermissionFieldSelectFieldMenu.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
|
||||
@@ -15137,6 +15165,8 @@ msgstr "Tabblad Instellingen"
|
||||
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
|
||||
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
|
||||
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/FieldWidgetLayoutDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
|
||||
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
|
||||
@@ -16106,6 +16136,7 @@ msgstr "Two-factor authenticatie setup met succes voltooid!"
|
||||
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
|
||||
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
|
||||
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
|
||||
|
||||
@@ -221,6 +221,11 @@ msgstr ""
|
||||
msgid "{advancedFilterCount, plural, one {{advancedFilterCount} advanced rule} other {{advancedFilterCount} advanced rules}}"
|
||||
msgstr "{advancedFilterCount, plural, one {{advancedFilterCount} avansert regel} other {{advancedFilterCount} avanserte regler}}"
|
||||
|
||||
#. js-lingui-id: XWd9bY
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "{agentCount, plural, one {{agentCount} agent} other {{agentCount} agents}}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WGnqk6
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/hooks/useWorkflowAiAgentPermissionActions.ts
|
||||
msgid "{agentDisplayName} role ({agentIdPrefix})"
|
||||
@@ -236,6 +241,11 @@ msgstr "{agentLabel} agentrolle"
|
||||
msgid "{aggregateLabel} of {fieldLabel}"
|
||||
msgstr "{aggregateLabel} av {fieldLabel}"
|
||||
|
||||
#. js-lingui-id: WhHyQh
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "{apiKeyCount, plural, one {{apiKeyCount} API key} other {{apiKeyCount} API keys}}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: u1mVnV
|
||||
#: src/modules/marketplace/components/SettingsApplicationInstallPermissionValidationModal.tsx
|
||||
msgid "{appDisplayName} would like to:"
|
||||
@@ -395,6 +405,11 @@ msgstr "{jobCount, plural, one {Dette vil prøve den valgte jobben på nytt. Den
|
||||
msgid "{label} list"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1DrH/j
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "{memberCount, plural, one {{memberCount} member} other {{memberCount} members}}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Y32cMj
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadIntermediaryMessages.tsx
|
||||
msgid "{messagesLength} emails"
|
||||
@@ -523,6 +538,11 @@ msgstr ""
|
||||
msgid "{visibleFieldsCount} shown"
|
||||
msgstr "{visibleFieldsCount} vist"
|
||||
|
||||
#. js-lingui-id: WjjsAL
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
|
||||
msgid "{visibleFieldsCount} visible fields"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: riMLMq
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/iterator-action/components/WorkflowIteratorSubStepSwitcher.tsx
|
||||
msgid "{workflowRunIteratorSubStepIterationsCount, plural, one {# item} other {# items}}"
|
||||
@@ -1954,6 +1974,7 @@ msgstr "Det oppstod en uventet feil. Vennligst prøv igjen."
|
||||
|
||||
#. js-lingui-id: HZFm5R
|
||||
#: src/utils/date-utils.ts
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
#: src/modules/auth/sign-in-up/components/FooterNote.tsx
|
||||
msgid "and"
|
||||
msgstr "og"
|
||||
@@ -3816,10 +3837,15 @@ msgstr "Bekreft"
|
||||
msgid "Confirm changing your current resource credit allocation."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: FbJ7Si
|
||||
#. js-lingui-id: SU6Tym
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "Confirm deletion of {roleName} role? This cannot be undone. All members will be reassigned to the default role."
|
||||
msgstr "Bekreft sletting av {roleName}-rolle? Dette kan ikke angres. Alle medlemmer vil bli tildelt standardrollen."
|
||||
msgid "Confirm deletion of {roleName} role? This cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: W7S+Tm
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "Confirm deletion of {roleName} role? This cannot be undone. {reassignSubject} will be reassigned to the default role."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: kZkFSm
|
||||
#: src/modules/settings/billing/components/internal/ResourceCreditPriceSelector.tsx
|
||||
@@ -7293,7 +7319,9 @@ msgstr "felter"
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutRecordPageWidgetTypeSelect.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelPermissionFieldSelectFieldMenu.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
|
||||
@@ -15137,6 +15165,8 @@ msgstr "Faneinnstillinger"
|
||||
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
|
||||
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
|
||||
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/FieldWidgetLayoutDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
|
||||
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
|
||||
@@ -16104,6 +16134,7 @@ msgstr "Tofaktorautentiseringsoppsett fullført!"
|
||||
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
|
||||
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
|
||||
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
|
||||
|
||||
@@ -221,6 +221,11 @@ msgstr ""
|
||||
msgid "{advancedFilterCount, plural, one {{advancedFilterCount} advanced rule} other {{advancedFilterCount} advanced rules}}"
|
||||
msgstr "{advancedFilterCount, plural, one {{advancedFilterCount} zaawansowana zasada} few {{advancedFilterCount} zaawansowane zasady} many {{advancedFilterCount} zaawansowanych zasad} other {{advancedFilterCount} zaawansowanych zasad}}"
|
||||
|
||||
#. js-lingui-id: XWd9bY
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "{agentCount, plural, one {{agentCount} agent} other {{agentCount} agents}}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WGnqk6
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/hooks/useWorkflowAiAgentPermissionActions.ts
|
||||
msgid "{agentDisplayName} role ({agentIdPrefix})"
|
||||
@@ -236,6 +241,11 @@ msgstr "Rola agenta {agentLabel}"
|
||||
msgid "{aggregateLabel} of {fieldLabel}"
|
||||
msgstr "{aggregateLabel} z {fieldLabel}"
|
||||
|
||||
#. js-lingui-id: WhHyQh
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "{apiKeyCount, plural, one {{apiKeyCount} API key} other {{apiKeyCount} API keys}}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: u1mVnV
|
||||
#: src/modules/marketplace/components/SettingsApplicationInstallPermissionValidationModal.tsx
|
||||
msgid "{appDisplayName} would like to:"
|
||||
@@ -395,6 +405,11 @@ msgstr "{jobCount, plural, one {To ponownie uruchomi wybrane zadanie. Zostanie o
|
||||
msgid "{label} list"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1DrH/j
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "{memberCount, plural, one {{memberCount} member} other {{memberCount} members}}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Y32cMj
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadIntermediaryMessages.tsx
|
||||
msgid "{messagesLength} emails"
|
||||
@@ -523,6 +538,11 @@ msgstr ""
|
||||
msgid "{visibleFieldsCount} shown"
|
||||
msgstr "Wyświetlono {visibleFieldsCount}"
|
||||
|
||||
#. js-lingui-id: WjjsAL
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
|
||||
msgid "{visibleFieldsCount} visible fields"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: riMLMq
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/iterator-action/components/WorkflowIteratorSubStepSwitcher.tsx
|
||||
msgid "{workflowRunIteratorSubStepIterationsCount, plural, one {# item} other {# items}}"
|
||||
@@ -1954,6 +1974,7 @@ msgstr "Wystąpił nieoczekiwany błąd. Spróbuj ponownie."
|
||||
|
||||
#. js-lingui-id: HZFm5R
|
||||
#: src/utils/date-utils.ts
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
#: src/modules/auth/sign-in-up/components/FooterNote.tsx
|
||||
msgid "and"
|
||||
msgstr "i"
|
||||
@@ -3816,10 +3837,15 @@ msgstr "Potwierdź"
|
||||
msgid "Confirm changing your current resource credit allocation."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: FbJ7Si
|
||||
#. js-lingui-id: SU6Tym
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "Confirm deletion of {roleName} role? This cannot be undone. All members will be reassigned to the default role."
|
||||
msgstr "Potwierdzić usunięcie roli {roleName}? Tego nie można cofnąć. Wszyscy członkowie zostaną przypisani do domyślnej roli."
|
||||
msgid "Confirm deletion of {roleName} role? This cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: W7S+Tm
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "Confirm deletion of {roleName} role? This cannot be undone. {reassignSubject} will be reassigned to the default role."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: kZkFSm
|
||||
#: src/modules/settings/billing/components/internal/ResourceCreditPriceSelector.tsx
|
||||
@@ -7293,7 +7319,9 @@ msgstr "pola"
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutRecordPageWidgetTypeSelect.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelPermissionFieldSelectFieldMenu.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
|
||||
@@ -15137,6 +15165,8 @@ msgstr "Ustawienia Zakładki"
|
||||
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
|
||||
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
|
||||
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/FieldWidgetLayoutDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
|
||||
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
|
||||
@@ -16104,6 +16134,7 @@ msgstr "Konfiguracja uwierzytelniania dwuskładnikowego zakończona pomyślnie!"
|
||||
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
|
||||
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
|
||||
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
|
||||
|
||||
@@ -216,6 +216,11 @@ msgstr ""
|
||||
msgid "{advancedFilterCount, plural, one {{advancedFilterCount} advanced rule} other {{advancedFilterCount} advanced rules}}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XWd9bY
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "{agentCount, plural, one {{agentCount} agent} other {{agentCount} agents}}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WGnqk6
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/hooks/useWorkflowAiAgentPermissionActions.ts
|
||||
msgid "{agentDisplayName} role ({agentIdPrefix})"
|
||||
@@ -231,6 +236,11 @@ msgstr ""
|
||||
msgid "{aggregateLabel} of {fieldLabel}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WhHyQh
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "{apiKeyCount, plural, one {{apiKeyCount} API key} other {{apiKeyCount} API keys}}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: u1mVnV
|
||||
#: src/modules/marketplace/components/SettingsApplicationInstallPermissionValidationModal.tsx
|
||||
msgid "{appDisplayName} would like to:"
|
||||
@@ -390,6 +400,11 @@ msgstr ""
|
||||
msgid "{label} list"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1DrH/j
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "{memberCount, plural, one {{memberCount} member} other {{memberCount} members}}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Y32cMj
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadIntermediaryMessages.tsx
|
||||
msgid "{messagesLength} emails"
|
||||
@@ -518,6 +533,11 @@ msgstr ""
|
||||
msgid "{visibleFieldsCount} shown"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WjjsAL
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
|
||||
msgid "{visibleFieldsCount} visible fields"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: riMLMq
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/iterator-action/components/WorkflowIteratorSubStepSwitcher.tsx
|
||||
msgid "{workflowRunIteratorSubStepIterationsCount, plural, one {# item} other {# items}}"
|
||||
@@ -1949,6 +1969,7 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: HZFm5R
|
||||
#: src/utils/date-utils.ts
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
#: src/modules/auth/sign-in-up/components/FooterNote.tsx
|
||||
msgid "and"
|
||||
msgstr ""
|
||||
@@ -3811,9 +3832,14 @@ msgstr ""
|
||||
msgid "Confirm changing your current resource credit allocation."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: FbJ7Si
|
||||
#. js-lingui-id: SU6Tym
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "Confirm deletion of {roleName} role? This cannot be undone. All members will be reassigned to the default role."
|
||||
msgid "Confirm deletion of {roleName} role? This cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: W7S+Tm
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "Confirm deletion of {roleName} role? This cannot be undone. {reassignSubject} will be reassigned to the default role."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: kZkFSm
|
||||
@@ -7288,7 +7314,9 @@ msgstr ""
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutRecordPageWidgetTypeSelect.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelPermissionFieldSelectFieldMenu.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
|
||||
@@ -15132,6 +15160,8 @@ msgstr ""
|
||||
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
|
||||
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
|
||||
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/FieldWidgetLayoutDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
|
||||
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
|
||||
@@ -16099,6 +16129,7 @@ msgstr ""
|
||||
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
|
||||
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
|
||||
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
|
||||
|
||||
@@ -221,6 +221,11 @@ msgstr ""
|
||||
msgid "{advancedFilterCount, plural, one {{advancedFilterCount} advanced rule} other {{advancedFilterCount} advanced rules}}"
|
||||
msgstr "{advancedFilterCount, plural, one {{advancedFilterCount} regra avançada} other {{advancedFilterCount} regras avançadas}}"
|
||||
|
||||
#. js-lingui-id: XWd9bY
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "{agentCount, plural, one {{agentCount} agent} other {{agentCount} agents}}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WGnqk6
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/hooks/useWorkflowAiAgentPermissionActions.ts
|
||||
msgid "{agentDisplayName} role ({agentIdPrefix})"
|
||||
@@ -236,6 +241,11 @@ msgstr "Função do agente {agentLabel}"
|
||||
msgid "{aggregateLabel} of {fieldLabel}"
|
||||
msgstr "{aggregateLabel} de {fieldLabel}"
|
||||
|
||||
#. js-lingui-id: WhHyQh
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "{apiKeyCount, plural, one {{apiKeyCount} API key} other {{apiKeyCount} API keys}}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: u1mVnV
|
||||
#: src/modules/marketplace/components/SettingsApplicationInstallPermissionValidationModal.tsx
|
||||
msgid "{appDisplayName} would like to:"
|
||||
@@ -395,6 +405,11 @@ msgstr "{jobCount, plural, one {Isso irá repetir o trabalho selecionado. Ele se
|
||||
msgid "{label} list"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1DrH/j
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "{memberCount, plural, one {{memberCount} member} other {{memberCount} members}}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Y32cMj
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadIntermediaryMessages.tsx
|
||||
msgid "{messagesLength} emails"
|
||||
@@ -523,6 +538,11 @@ msgstr ""
|
||||
msgid "{visibleFieldsCount} shown"
|
||||
msgstr "{visibleFieldsCount} exibidos"
|
||||
|
||||
#. js-lingui-id: WjjsAL
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
|
||||
msgid "{visibleFieldsCount} visible fields"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: riMLMq
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/iterator-action/components/WorkflowIteratorSubStepSwitcher.tsx
|
||||
msgid "{workflowRunIteratorSubStepIterationsCount, plural, one {# item} other {# items}}"
|
||||
@@ -1954,6 +1974,7 @@ msgstr "Ocorreu um erro inesperado. Tente novamente."
|
||||
|
||||
#. js-lingui-id: HZFm5R
|
||||
#: src/utils/date-utils.ts
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
#: src/modules/auth/sign-in-up/components/FooterNote.tsx
|
||||
msgid "and"
|
||||
msgstr "e"
|
||||
@@ -3816,10 +3837,15 @@ msgstr "Confirmar"
|
||||
msgid "Confirm changing your current resource credit allocation."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: FbJ7Si
|
||||
#. js-lingui-id: SU6Tym
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "Confirm deletion of {roleName} role? This cannot be undone. All members will be reassigned to the default role."
|
||||
msgstr "Confirmar exclusão da função {roleName}? Isso não pode ser desfeito. Todos os membros serão reatribuídos à função padrão."
|
||||
msgid "Confirm deletion of {roleName} role? This cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: W7S+Tm
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "Confirm deletion of {roleName} role? This cannot be undone. {reassignSubject} will be reassigned to the default role."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: kZkFSm
|
||||
#: src/modules/settings/billing/components/internal/ResourceCreditPriceSelector.tsx
|
||||
@@ -7293,7 +7319,9 @@ msgstr "campos"
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutRecordPageWidgetTypeSelect.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelPermissionFieldSelectFieldMenu.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
|
||||
@@ -15137,6 +15165,8 @@ msgstr "Configurações da Aba"
|
||||
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
|
||||
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
|
||||
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/FieldWidgetLayoutDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
|
||||
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
|
||||
@@ -16104,6 +16134,7 @@ msgstr "Configuração de autenticação em duas etapas concluída com sucesso!"
|
||||
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
|
||||
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
|
||||
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
|
||||
|
||||
@@ -221,6 +221,11 @@ msgstr ""
|
||||
msgid "{advancedFilterCount, plural, one {{advancedFilterCount} advanced rule} other {{advancedFilterCount} advanced rules}}"
|
||||
msgstr "{advancedFilterCount, plural, one {{advancedFilterCount} regra avançada} other {{advancedFilterCount} regras avançadas}}"
|
||||
|
||||
#. js-lingui-id: XWd9bY
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "{agentCount, plural, one {{agentCount} agent} other {{agentCount} agents}}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WGnqk6
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/hooks/useWorkflowAiAgentPermissionActions.ts
|
||||
msgid "{agentDisplayName} role ({agentIdPrefix})"
|
||||
@@ -236,6 +241,11 @@ msgstr "{agentLabel} Função do Agente"
|
||||
msgid "{aggregateLabel} of {fieldLabel}"
|
||||
msgstr "{aggregateLabel} de {fieldLabel}"
|
||||
|
||||
#. js-lingui-id: WhHyQh
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "{apiKeyCount, plural, one {{apiKeyCount} API key} other {{apiKeyCount} API keys}}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: u1mVnV
|
||||
#: src/modules/marketplace/components/SettingsApplicationInstallPermissionValidationModal.tsx
|
||||
msgid "{appDisplayName} would like to:"
|
||||
@@ -395,6 +405,11 @@ msgstr "{jobCount, plural, one {Isso irá reiniciar o trabalho selecionado. Ele
|
||||
msgid "{label} list"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1DrH/j
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "{memberCount, plural, one {{memberCount} member} other {{memberCount} members}}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Y32cMj
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadIntermediaryMessages.tsx
|
||||
msgid "{messagesLength} emails"
|
||||
@@ -523,6 +538,11 @@ msgstr ""
|
||||
msgid "{visibleFieldsCount} shown"
|
||||
msgstr "{visibleFieldsCount} mostrados"
|
||||
|
||||
#. js-lingui-id: WjjsAL
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
|
||||
msgid "{visibleFieldsCount} visible fields"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: riMLMq
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/iterator-action/components/WorkflowIteratorSubStepSwitcher.tsx
|
||||
msgid "{workflowRunIteratorSubStepIterationsCount, plural, one {# item} other {# items}}"
|
||||
@@ -1954,6 +1974,7 @@ msgstr "Ocorreu um erro inesperado. Tente novamente."
|
||||
|
||||
#. js-lingui-id: HZFm5R
|
||||
#: src/utils/date-utils.ts
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
#: src/modules/auth/sign-in-up/components/FooterNote.tsx
|
||||
msgid "and"
|
||||
msgstr "e"
|
||||
@@ -3816,10 +3837,15 @@ msgstr "Confirmar"
|
||||
msgid "Confirm changing your current resource credit allocation."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: FbJ7Si
|
||||
#. js-lingui-id: SU6Tym
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "Confirm deletion of {roleName} role? This cannot be undone. All members will be reassigned to the default role."
|
||||
msgstr "Confirmar exclusão do papel {roleName}? Isso não pode ser desfeito. Todos os membros serão transferidos para o papel padrão."
|
||||
msgid "Confirm deletion of {roleName} role? This cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: W7S+Tm
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "Confirm deletion of {roleName} role? This cannot be undone. {reassignSubject} will be reassigned to the default role."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: kZkFSm
|
||||
#: src/modules/settings/billing/components/internal/ResourceCreditPriceSelector.tsx
|
||||
@@ -7293,7 +7319,9 @@ msgstr "campos"
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutRecordPageWidgetTypeSelect.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelPermissionFieldSelectFieldMenu.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
|
||||
@@ -15137,6 +15165,8 @@ msgstr "Definições da Aba"
|
||||
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
|
||||
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
|
||||
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/FieldWidgetLayoutDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
|
||||
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
|
||||
@@ -16104,6 +16134,7 @@ msgstr "Configuração da autenticação em duas etapas concluída com sucesso!"
|
||||
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
|
||||
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
|
||||
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
|
||||
|
||||
@@ -221,6 +221,11 @@ msgstr ""
|
||||
msgid "{advancedFilterCount, plural, one {{advancedFilterCount} advanced rule} other {{advancedFilterCount} advanced rules}}"
|
||||
msgstr "{advancedFilterCount, plural, one {{advancedFilterCount} regulă avansată} few {{advancedFilterCount} reguli avansate} other {{advancedFilterCount} reguli avansate}}"
|
||||
|
||||
#. js-lingui-id: XWd9bY
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "{agentCount, plural, one {{agentCount} agent} other {{agentCount} agents}}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WGnqk6
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/hooks/useWorkflowAiAgentPermissionActions.ts
|
||||
msgid "{agentDisplayName} role ({agentIdPrefix})"
|
||||
@@ -236,6 +241,11 @@ msgstr "Rolul agentului {agentLabel}"
|
||||
msgid "{aggregateLabel} of {fieldLabel}"
|
||||
msgstr "{aggregateLabel} din {fieldLabel}"
|
||||
|
||||
#. js-lingui-id: WhHyQh
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "{apiKeyCount, plural, one {{apiKeyCount} API key} other {{apiKeyCount} API keys}}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: u1mVnV
|
||||
#: src/modules/marketplace/components/SettingsApplicationInstallPermissionValidationModal.tsx
|
||||
msgid "{appDisplayName} would like to:"
|
||||
@@ -395,6 +405,11 @@ msgstr "{jobCount, plural, one {Aceasta va reîncerca locul de muncă selectat.
|
||||
msgid "{label} list"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1DrH/j
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "{memberCount, plural, one {{memberCount} member} other {{memberCount} members}}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Y32cMj
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadIntermediaryMessages.tsx
|
||||
msgid "{messagesLength} emails"
|
||||
@@ -523,6 +538,11 @@ msgstr ""
|
||||
msgid "{visibleFieldsCount} shown"
|
||||
msgstr "{visibleFieldsCount} afișate"
|
||||
|
||||
#. js-lingui-id: WjjsAL
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
|
||||
msgid "{visibleFieldsCount} visible fields"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: riMLMq
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/iterator-action/components/WorkflowIteratorSubStepSwitcher.tsx
|
||||
msgid "{workflowRunIteratorSubStepIterationsCount, plural, one {# item} other {# items}}"
|
||||
@@ -1954,6 +1974,7 @@ msgstr "A apărut o eroare neașteptată. Vă rugăm să încercați din nou."
|
||||
|
||||
#. js-lingui-id: HZFm5R
|
||||
#: src/utils/date-utils.ts
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
#: src/modules/auth/sign-in-up/components/FooterNote.tsx
|
||||
msgid "and"
|
||||
msgstr "și"
|
||||
@@ -3816,10 +3837,15 @@ msgstr "Confirmă"
|
||||
msgid "Confirm changing your current resource credit allocation."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: FbJ7Si
|
||||
#. js-lingui-id: SU6Tym
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "Confirm deletion of {roleName} role? This cannot be undone. All members will be reassigned to the default role."
|
||||
msgstr "Confirmați ștergerea rolului {roleName}? Această acțiune nu poate fi anulată. Toți membrii vor fi realocați rolului implicit."
|
||||
msgid "Confirm deletion of {roleName} role? This cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: W7S+Tm
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "Confirm deletion of {roleName} role? This cannot be undone. {reassignSubject} will be reassigned to the default role."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: kZkFSm
|
||||
#: src/modules/settings/billing/components/internal/ResourceCreditPriceSelector.tsx
|
||||
@@ -7293,7 +7319,9 @@ msgstr "câmpuri"
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutRecordPageWidgetTypeSelect.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelPermissionFieldSelectFieldMenu.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
|
||||
@@ -15137,6 +15165,8 @@ msgstr "Setări Tab"
|
||||
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
|
||||
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
|
||||
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/FieldWidgetLayoutDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
|
||||
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
|
||||
@@ -16104,6 +16134,7 @@ msgstr "Configurarea autentificării în doi pași a fost finalizată cu succes!
|
||||
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
|
||||
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
|
||||
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
|
||||
|
||||
Binary file not shown.
@@ -221,6 +221,11 @@ msgstr ""
|
||||
msgid "{advancedFilterCount, plural, one {{advancedFilterCount} advanced rule} other {{advancedFilterCount} advanced rules}}"
|
||||
msgstr "{advancedFilterCount, plural, one {{advancedFilterCount} напредно правило} few {{advancedFilterCount} напредна правила} other {{advancedFilterCount} напредних правила}}"
|
||||
|
||||
#. js-lingui-id: XWd9bY
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "{agentCount, plural, one {{agentCount} agent} other {{agentCount} agents}}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WGnqk6
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/hooks/useWorkflowAiAgentPermissionActions.ts
|
||||
msgid "{agentDisplayName} role ({agentIdPrefix})"
|
||||
@@ -236,6 +241,11 @@ msgstr "Улога агента {agentLabel}"
|
||||
msgid "{aggregateLabel} of {fieldLabel}"
|
||||
msgstr "{aggregateLabel} од {fieldLabel}"
|
||||
|
||||
#. js-lingui-id: WhHyQh
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "{apiKeyCount, plural, one {{apiKeyCount} API key} other {{apiKeyCount} API keys}}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: u1mVnV
|
||||
#: src/modules/marketplace/components/SettingsApplicationInstallPermissionValidationModal.tsx
|
||||
msgid "{appDisplayName} would like to:"
|
||||
@@ -395,6 +405,11 @@ msgstr "{jobCount, plural, one {Ово ће поновити изабрани п
|
||||
msgid "{label} list"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1DrH/j
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "{memberCount, plural, one {{memberCount} member} other {{memberCount} members}}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Y32cMj
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadIntermediaryMessages.tsx
|
||||
msgid "{messagesLength} emails"
|
||||
@@ -523,6 +538,11 @@ msgstr ""
|
||||
msgid "{visibleFieldsCount} shown"
|
||||
msgstr "Приказано {visibleFieldsCount}"
|
||||
|
||||
#. js-lingui-id: WjjsAL
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
|
||||
msgid "{visibleFieldsCount} visible fields"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: riMLMq
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/iterator-action/components/WorkflowIteratorSubStepSwitcher.tsx
|
||||
msgid "{workflowRunIteratorSubStepIterationsCount, plural, one {# item} other {# items}}"
|
||||
@@ -1954,6 +1974,7 @@ msgstr "Дошло је до неочекиване грешке. Покушај
|
||||
|
||||
#. js-lingui-id: HZFm5R
|
||||
#: src/utils/date-utils.ts
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
#: src/modules/auth/sign-in-up/components/FooterNote.tsx
|
||||
msgid "and"
|
||||
msgstr "и"
|
||||
@@ -3816,10 +3837,15 @@ msgstr "Потврди"
|
||||
msgid "Confirm changing your current resource credit allocation."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: FbJ7Si
|
||||
#. js-lingui-id: SU6Tym
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "Confirm deletion of {roleName} role? This cannot be undone. All members will be reassigned to the default role."
|
||||
msgstr "Потврдите брисање улоге {roleName}? Ово не може бити опозвано. Сви чланови ће бити пребачени у подразумевану улогу."
|
||||
msgid "Confirm deletion of {roleName} role? This cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: W7S+Tm
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "Confirm deletion of {roleName} role? This cannot be undone. {reassignSubject} will be reassigned to the default role."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: kZkFSm
|
||||
#: src/modules/settings/billing/components/internal/ResourceCreditPriceSelector.tsx
|
||||
@@ -7293,7 +7319,9 @@ msgstr "поља"
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutRecordPageWidgetTypeSelect.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelPermissionFieldSelectFieldMenu.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
|
||||
@@ -15137,6 +15165,8 @@ msgstr "Подешавања таба"
|
||||
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
|
||||
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
|
||||
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/FieldWidgetLayoutDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
|
||||
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
|
||||
@@ -16104,6 +16134,7 @@ msgstr "Подешавање двофакторске аутентификаци
|
||||
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
|
||||
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
|
||||
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
|
||||
|
||||
@@ -221,6 +221,11 @@ msgstr ""
|
||||
msgid "{advancedFilterCount, plural, one {{advancedFilterCount} advanced rule} other {{advancedFilterCount} advanced rules}}"
|
||||
msgstr "{advancedFilterCount, plural, one {{advancedFilterCount} avancerad regel} other {{advancedFilterCount} avancerade regler}}"
|
||||
|
||||
#. js-lingui-id: XWd9bY
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "{agentCount, plural, one {{agentCount} agent} other {{agentCount} agents}}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WGnqk6
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/hooks/useWorkflowAiAgentPermissionActions.ts
|
||||
msgid "{agentDisplayName} role ({agentIdPrefix})"
|
||||
@@ -236,6 +241,11 @@ msgstr "{agentLabel} agentroll"
|
||||
msgid "{aggregateLabel} of {fieldLabel}"
|
||||
msgstr "{aggregateLabel} för {fieldLabel}"
|
||||
|
||||
#. js-lingui-id: WhHyQh
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "{apiKeyCount, plural, one {{apiKeyCount} API key} other {{apiKeyCount} API keys}}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: u1mVnV
|
||||
#: src/modules/marketplace/components/SettingsApplicationInstallPermissionValidationModal.tsx
|
||||
msgid "{appDisplayName} would like to:"
|
||||
@@ -395,6 +405,11 @@ msgstr "{jobCount, plural, one {Detta kommer att försöka igen det valda arbete
|
||||
msgid "{label} list"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1DrH/j
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "{memberCount, plural, one {{memberCount} member} other {{memberCount} members}}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Y32cMj
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadIntermediaryMessages.tsx
|
||||
msgid "{messagesLength} emails"
|
||||
@@ -523,6 +538,11 @@ msgstr ""
|
||||
msgid "{visibleFieldsCount} shown"
|
||||
msgstr "{visibleFieldsCount} visade"
|
||||
|
||||
#. js-lingui-id: WjjsAL
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
|
||||
msgid "{visibleFieldsCount} visible fields"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: riMLMq
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/iterator-action/components/WorkflowIteratorSubStepSwitcher.tsx
|
||||
msgid "{workflowRunIteratorSubStepIterationsCount, plural, one {# item} other {# items}}"
|
||||
@@ -1954,6 +1974,7 @@ msgstr "Ett oväntat fel inträffade. Försök igen."
|
||||
|
||||
#. js-lingui-id: HZFm5R
|
||||
#: src/utils/date-utils.ts
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
#: src/modules/auth/sign-in-up/components/FooterNote.tsx
|
||||
msgid "and"
|
||||
msgstr "och"
|
||||
@@ -3816,10 +3837,15 @@ msgstr "Bekräfta"
|
||||
msgid "Confirm changing your current resource credit allocation."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: FbJ7Si
|
||||
#. js-lingui-id: SU6Tym
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "Confirm deletion of {roleName} role? This cannot be undone. All members will be reassigned to the default role."
|
||||
msgstr "Bekräfta radering av {roleName}-rollen? Detta kan inte ångras. Alla medlemmar kommer att tilldelas standardrollen."
|
||||
msgid "Confirm deletion of {roleName} role? This cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: W7S+Tm
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "Confirm deletion of {roleName} role? This cannot be undone. {reassignSubject} will be reassigned to the default role."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: kZkFSm
|
||||
#: src/modules/settings/billing/components/internal/ResourceCreditPriceSelector.tsx
|
||||
@@ -7293,7 +7319,9 @@ msgstr "fält"
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutRecordPageWidgetTypeSelect.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelPermissionFieldSelectFieldMenu.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
|
||||
@@ -15143,6 +15171,8 @@ msgstr "Flikinställningar"
|
||||
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
|
||||
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
|
||||
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/FieldWidgetLayoutDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
|
||||
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
|
||||
@@ -16112,6 +16142,7 @@ msgstr "Tvåfaktorsautentisering uppsättning genomförd lyckades!"
|
||||
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
|
||||
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
|
||||
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
|
||||
|
||||
@@ -221,6 +221,11 @@ msgstr ""
|
||||
msgid "{advancedFilterCount, plural, one {{advancedFilterCount} advanced rule} other {{advancedFilterCount} advanced rules}}"
|
||||
msgstr "{advancedFilterCount, plural, one {{advancedFilterCount} gelişmiş kural} other {{advancedFilterCount} gelişmiş kurallar}}"
|
||||
|
||||
#. js-lingui-id: XWd9bY
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "{agentCount, plural, one {{agentCount} agent} other {{agentCount} agents}}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WGnqk6
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/hooks/useWorkflowAiAgentPermissionActions.ts
|
||||
msgid "{agentDisplayName} role ({agentIdPrefix})"
|
||||
@@ -236,6 +241,11 @@ msgstr "{agentLabel} Ajan Rolü"
|
||||
msgid "{aggregateLabel} of {fieldLabel}"
|
||||
msgstr "{aggregateLabel}, {fieldLabel}'in"
|
||||
|
||||
#. js-lingui-id: WhHyQh
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "{apiKeyCount, plural, one {{apiKeyCount} API key} other {{apiKeyCount} API keys}}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: u1mVnV
|
||||
#: src/modules/marketplace/components/SettingsApplicationInstallPermissionValidationModal.tsx
|
||||
msgid "{appDisplayName} would like to:"
|
||||
@@ -395,6 +405,11 @@ msgstr "{jobCount, plural, one {Seçilen iş yeniden denenecek. Başından başl
|
||||
msgid "{label} list"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1DrH/j
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "{memberCount, plural, one {{memberCount} member} other {{memberCount} members}}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Y32cMj
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadIntermediaryMessages.tsx
|
||||
msgid "{messagesLength} emails"
|
||||
@@ -523,6 +538,11 @@ msgstr ""
|
||||
msgid "{visibleFieldsCount} shown"
|
||||
msgstr "{visibleFieldsCount} gösteriliyor"
|
||||
|
||||
#. js-lingui-id: WjjsAL
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
|
||||
msgid "{visibleFieldsCount} visible fields"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: riMLMq
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/iterator-action/components/WorkflowIteratorSubStepSwitcher.tsx
|
||||
msgid "{workflowRunIteratorSubStepIterationsCount, plural, one {# item} other {# items}}"
|
||||
@@ -1954,6 +1974,7 @@ msgstr "Beklenmeyen bir hata oluştu. Lütfen tekrar deneyin."
|
||||
|
||||
#. js-lingui-id: HZFm5R
|
||||
#: src/utils/date-utils.ts
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
#: src/modules/auth/sign-in-up/components/FooterNote.tsx
|
||||
msgid "and"
|
||||
msgstr "ve"
|
||||
@@ -3816,10 +3837,15 @@ msgstr "Onayla"
|
||||
msgid "Confirm changing your current resource credit allocation."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: FbJ7Si
|
||||
#. js-lingui-id: SU6Tym
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "Confirm deletion of {roleName} role? This cannot be undone. All members will be reassigned to the default role."
|
||||
msgstr "{roleName} rolünü silmeyi onaylıyor musunuz? Bu geri alınamaz. Tüm üyeler varsayılan role yeniden atanacak."
|
||||
msgid "Confirm deletion of {roleName} role? This cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: W7S+Tm
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "Confirm deletion of {roleName} role? This cannot be undone. {reassignSubject} will be reassigned to the default role."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: kZkFSm
|
||||
#: src/modules/settings/billing/components/internal/ResourceCreditPriceSelector.tsx
|
||||
@@ -7293,7 +7319,9 @@ msgstr "alanlar"
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutRecordPageWidgetTypeSelect.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelPermissionFieldSelectFieldMenu.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
|
||||
@@ -15137,6 +15165,8 @@ msgstr "Sekme Ayarları"
|
||||
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
|
||||
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
|
||||
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/FieldWidgetLayoutDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
|
||||
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
|
||||
@@ -16104,6 +16134,7 @@ msgstr "İki faktörlü doğrulama kurulumu başarıyla tamamlandı!"
|
||||
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
|
||||
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
|
||||
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
|
||||
|
||||
@@ -221,6 +221,11 @@ msgstr ""
|
||||
msgid "{advancedFilterCount, plural, one {{advancedFilterCount} advanced rule} other {{advancedFilterCount} advanced rules}}"
|
||||
msgstr "{advancedFilterCount, plural, one {{advancedFilterCount} розширене правило} few {{advancedFilterCount} розширені правила} many {{advancedFilterCount} розширених правил} other {{advancedFilterCount} розширених правил}}"
|
||||
|
||||
#. js-lingui-id: XWd9bY
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "{agentCount, plural, one {{agentCount} agent} other {{agentCount} agents}}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WGnqk6
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/hooks/useWorkflowAiAgentPermissionActions.ts
|
||||
msgid "{agentDisplayName} role ({agentIdPrefix})"
|
||||
@@ -236,6 +241,11 @@ msgstr "Роль агента {agentLabel}"
|
||||
msgid "{aggregateLabel} of {fieldLabel}"
|
||||
msgstr "{aggregateLabel} {fieldLabel}"
|
||||
|
||||
#. js-lingui-id: WhHyQh
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "{apiKeyCount, plural, one {{apiKeyCount} API key} other {{apiKeyCount} API keys}}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: u1mVnV
|
||||
#: src/modules/marketplace/components/SettingsApplicationInstallPermissionValidationModal.tsx
|
||||
msgid "{appDisplayName} would like to:"
|
||||
@@ -395,6 +405,11 @@ msgstr "{jobCount, plural, one {Це повторить обране завда
|
||||
msgid "{label} list"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1DrH/j
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "{memberCount, plural, one {{memberCount} member} other {{memberCount} members}}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Y32cMj
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadIntermediaryMessages.tsx
|
||||
msgid "{messagesLength} emails"
|
||||
@@ -523,6 +538,11 @@ msgstr ""
|
||||
msgid "{visibleFieldsCount} shown"
|
||||
msgstr "Показано {visibleFieldsCount}"
|
||||
|
||||
#. js-lingui-id: WjjsAL
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
|
||||
msgid "{visibleFieldsCount} visible fields"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: riMLMq
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/iterator-action/components/WorkflowIteratorSubStepSwitcher.tsx
|
||||
msgid "{workflowRunIteratorSubStepIterationsCount, plural, one {# item} other {# items}}"
|
||||
@@ -1954,6 +1974,7 @@ msgstr "Сталася неочікувана помилка. Будь ласк
|
||||
|
||||
#. js-lingui-id: HZFm5R
|
||||
#: src/utils/date-utils.ts
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
#: src/modules/auth/sign-in-up/components/FooterNote.tsx
|
||||
msgid "and"
|
||||
msgstr "та"
|
||||
@@ -3816,10 +3837,15 @@ msgstr "Підтвердити"
|
||||
msgid "Confirm changing your current resource credit allocation."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: FbJ7Si
|
||||
#. js-lingui-id: SU6Tym
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "Confirm deletion of {roleName} role? This cannot be undone. All members will be reassigned to the default role."
|
||||
msgstr "Підтвердьте видалення ролі {roleName}? Це не можна скасувати. Всі учасники будуть перепризначені на роль за замовчуванням."
|
||||
msgid "Confirm deletion of {roleName} role? This cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: W7S+Tm
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "Confirm deletion of {roleName} role? This cannot be undone. {reassignSubject} will be reassigned to the default role."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: kZkFSm
|
||||
#: src/modules/settings/billing/components/internal/ResourceCreditPriceSelector.tsx
|
||||
@@ -7293,7 +7319,9 @@ msgstr "поля"
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutRecordPageWidgetTypeSelect.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelPermissionFieldSelectFieldMenu.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
|
||||
@@ -15137,6 +15165,8 @@ msgstr "Налаштування вкладки"
|
||||
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
|
||||
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
|
||||
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/FieldWidgetLayoutDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
|
||||
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
|
||||
@@ -16106,6 +16136,7 @@ msgstr "Налаштування двофакторної аутентифіка
|
||||
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
|
||||
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
|
||||
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
|
||||
|
||||
@@ -221,6 +221,11 @@ msgstr ""
|
||||
msgid "{advancedFilterCount, plural, one {{advancedFilterCount} advanced rule} other {{advancedFilterCount} advanced rules}}"
|
||||
msgstr "{advancedFilterCount, plural, other {{advancedFilterCount} quy tắc nâng cao}}"
|
||||
|
||||
#. js-lingui-id: XWd9bY
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "{agentCount, plural, one {{agentCount} agent} other {{agentCount} agents}}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WGnqk6
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/hooks/useWorkflowAiAgentPermissionActions.ts
|
||||
msgid "{agentDisplayName} role ({agentIdPrefix})"
|
||||
@@ -236,6 +241,11 @@ msgstr "Vai trò tác nhân {agentLabel}"
|
||||
msgid "{aggregateLabel} of {fieldLabel}"
|
||||
msgstr "{aggregateLabel} của {fieldLabel}"
|
||||
|
||||
#. js-lingui-id: WhHyQh
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "{apiKeyCount, plural, one {{apiKeyCount} API key} other {{apiKeyCount} API keys}}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: u1mVnV
|
||||
#: src/modules/marketplace/components/SettingsApplicationInstallPermissionValidationModal.tsx
|
||||
msgid "{appDisplayName} would like to:"
|
||||
@@ -395,6 +405,11 @@ msgstr "{jobCount, plural, other {Điều này sẽ thử lại các công việ
|
||||
msgid "{label} list"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1DrH/j
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "{memberCount, plural, one {{memberCount} member} other {{memberCount} members}}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Y32cMj
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadIntermediaryMessages.tsx
|
||||
msgid "{messagesLength} emails"
|
||||
@@ -523,6 +538,11 @@ msgstr ""
|
||||
msgid "{visibleFieldsCount} shown"
|
||||
msgstr "{visibleFieldsCount} được hiển thị"
|
||||
|
||||
#. js-lingui-id: WjjsAL
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
|
||||
msgid "{visibleFieldsCount} visible fields"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: riMLMq
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/iterator-action/components/WorkflowIteratorSubStepSwitcher.tsx
|
||||
msgid "{workflowRunIteratorSubStepIterationsCount, plural, one {# item} other {# items}}"
|
||||
@@ -1954,6 +1974,7 @@ msgstr "Đã xảy ra lỗi không mong muốn. Vui lòng thử lại."
|
||||
|
||||
#. js-lingui-id: HZFm5R
|
||||
#: src/utils/date-utils.ts
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
#: src/modules/auth/sign-in-up/components/FooterNote.tsx
|
||||
msgid "and"
|
||||
msgstr "và"
|
||||
@@ -3816,10 +3837,15 @@ msgstr "Xác nhận"
|
||||
msgid "Confirm changing your current resource credit allocation."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: FbJ7Si
|
||||
#. js-lingui-id: SU6Tym
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "Confirm deletion of {roleName} role? This cannot be undone. All members will be reassigned to the default role."
|
||||
msgstr "Xác nhận xóa vai trò {roleName}? Điều này không thể hoàn tác. Tất cả thành viên sẽ được chuyển sang vai trò mặc định."
|
||||
msgid "Confirm deletion of {roleName} role? This cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: W7S+Tm
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "Confirm deletion of {roleName} role? This cannot be undone. {reassignSubject} will be reassigned to the default role."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: kZkFSm
|
||||
#: src/modules/settings/billing/components/internal/ResourceCreditPriceSelector.tsx
|
||||
@@ -7293,7 +7319,9 @@ msgstr "trường"
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutRecordPageWidgetTypeSelect.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelPermissionFieldSelectFieldMenu.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
|
||||
@@ -15137,6 +15165,8 @@ msgstr "Cài đặt Tab"
|
||||
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
|
||||
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
|
||||
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/FieldWidgetLayoutDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
|
||||
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
|
||||
@@ -16104,6 +16134,7 @@ msgstr "Thiết lập xác thực hai yếu tố thành công!"
|
||||
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
|
||||
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
|
||||
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
|
||||
|
||||
@@ -221,6 +221,11 @@ msgstr ""
|
||||
msgid "{advancedFilterCount, plural, one {{advancedFilterCount} advanced rule} other {{advancedFilterCount} advanced rules}}"
|
||||
msgstr "{advancedFilterCount, plural, other {{advancedFilterCount} 个高级规则}}"
|
||||
|
||||
#. js-lingui-id: XWd9bY
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "{agentCount, plural, one {{agentCount} agent} other {{agentCount} agents}}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WGnqk6
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/hooks/useWorkflowAiAgentPermissionActions.ts
|
||||
msgid "{agentDisplayName} role ({agentIdPrefix})"
|
||||
@@ -236,6 +241,11 @@ msgstr "{agentLabel} 代理角色"
|
||||
msgid "{aggregateLabel} of {fieldLabel}"
|
||||
msgstr "{aggregateLabel} 的 {fieldLabel}"
|
||||
|
||||
#. js-lingui-id: WhHyQh
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "{apiKeyCount, plural, one {{apiKeyCount} API key} other {{apiKeyCount} API keys}}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: u1mVnV
|
||||
#: src/modules/marketplace/components/SettingsApplicationInstallPermissionValidationModal.tsx
|
||||
msgid "{appDisplayName} would like to:"
|
||||
@@ -395,6 +405,11 @@ msgstr ""
|
||||
msgid "{label} list"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1DrH/j
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "{memberCount, plural, one {{memberCount} member} other {{memberCount} members}}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Y32cMj
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadIntermediaryMessages.tsx
|
||||
msgid "{messagesLength} emails"
|
||||
@@ -523,6 +538,11 @@ msgstr ""
|
||||
msgid "{visibleFieldsCount} shown"
|
||||
msgstr "已显示 {visibleFieldsCount} 个"
|
||||
|
||||
#. js-lingui-id: WjjsAL
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
|
||||
msgid "{visibleFieldsCount} visible fields"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: riMLMq
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/iterator-action/components/WorkflowIteratorSubStepSwitcher.tsx
|
||||
msgid "{workflowRunIteratorSubStepIterationsCount, plural, one {# item} other {# items}}"
|
||||
@@ -1954,6 +1974,7 @@ msgstr "发生意外错误。请重试。"
|
||||
|
||||
#. js-lingui-id: HZFm5R
|
||||
#: src/utils/date-utils.ts
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
#: src/modules/auth/sign-in-up/components/FooterNote.tsx
|
||||
msgid "and"
|
||||
msgstr "和"
|
||||
@@ -3816,10 +3837,15 @@ msgstr "确认"
|
||||
msgid "Confirm changing your current resource credit allocation."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: FbJ7Si
|
||||
#. js-lingui-id: SU6Tym
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "Confirm deletion of {roleName} role? This cannot be undone. All members will be reassigned to the default role."
|
||||
msgstr "确认删除 {roleName} 角色?此操作无法撤销。所有成员将被重新分配到默认角色。"
|
||||
msgid "Confirm deletion of {roleName} role? This cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: W7S+Tm
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "Confirm deletion of {roleName} role? This cannot be undone. {reassignSubject} will be reassigned to the default role."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: kZkFSm
|
||||
#: src/modules/settings/billing/components/internal/ResourceCreditPriceSelector.tsx
|
||||
@@ -7293,7 +7319,9 @@ msgstr "字段"
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutRecordPageWidgetTypeSelect.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelPermissionFieldSelectFieldMenu.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
|
||||
@@ -15137,6 +15165,8 @@ msgstr "标签设置"
|
||||
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
|
||||
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
|
||||
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/FieldWidgetLayoutDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
|
||||
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
|
||||
@@ -16104,6 +16134,7 @@ msgstr "双因素身份验证设置成功完成!"
|
||||
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
|
||||
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
|
||||
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
|
||||
|
||||
@@ -221,6 +221,11 @@ msgstr ""
|
||||
msgid "{advancedFilterCount, plural, one {{advancedFilterCount} advanced rule} other {{advancedFilterCount} advanced rules}}"
|
||||
msgstr "{advancedFilterCount, plural, other {{advancedFilterCount} 條進階規則}}"
|
||||
|
||||
#. js-lingui-id: XWd9bY
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "{agentCount, plural, one {{agentCount} agent} other {{agentCount} agents}}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WGnqk6
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/hooks/useWorkflowAiAgentPermissionActions.ts
|
||||
msgid "{agentDisplayName} role ({agentIdPrefix})"
|
||||
@@ -236,6 +241,11 @@ msgstr "{agentLabel} 代理角色"
|
||||
msgid "{aggregateLabel} of {fieldLabel}"
|
||||
msgstr "{aggregateLabel} 的 {fieldLabel}"
|
||||
|
||||
#. js-lingui-id: WhHyQh
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "{apiKeyCount, plural, one {{apiKeyCount} API key} other {{apiKeyCount} API keys}}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: u1mVnV
|
||||
#: src/modules/marketplace/components/SettingsApplicationInstallPermissionValidationModal.tsx
|
||||
msgid "{appDisplayName} would like to:"
|
||||
@@ -395,6 +405,11 @@ msgstr "{jobCount, plural, other {這將重試選定的工作。它們將從頭
|
||||
msgid "{label} list"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1DrH/j
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "{memberCount, plural, one {{memberCount} member} other {{memberCount} members}}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Y32cMj
|
||||
#: src/modules/page-layout/widgets/email-thread/components/EmailThreadIntermediaryMessages.tsx
|
||||
msgid "{messagesLength} emails"
|
||||
@@ -523,6 +538,11 @@ msgstr ""
|
||||
msgid "{visibleFieldsCount} shown"
|
||||
msgstr "已顯示 {visibleFieldsCount} 個"
|
||||
|
||||
#. js-lingui-id: WjjsAL
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
|
||||
msgid "{visibleFieldsCount} visible fields"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: riMLMq
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/iterator-action/components/WorkflowIteratorSubStepSwitcher.tsx
|
||||
msgid "{workflowRunIteratorSubStepIterationsCount, plural, one {# item} other {# items}}"
|
||||
@@ -1954,6 +1974,7 @@ msgstr "發生未預期的錯誤。請再試一次。"
|
||||
|
||||
#. js-lingui-id: HZFm5R
|
||||
#: src/utils/date-utils.ts
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
#: src/modules/auth/sign-in-up/components/FooterNote.tsx
|
||||
msgid "and"
|
||||
msgstr "和"
|
||||
@@ -3816,10 +3837,15 @@ msgstr "確認"
|
||||
msgid "Confirm changing your current resource credit allocation."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: FbJ7Si
|
||||
#. js-lingui-id: SU6Tym
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "Confirm deletion of {roleName} role? This cannot be undone. All members will be reassigned to the default role."
|
||||
msgstr "確認刪除 {roleName} 角色?此操作無法撤銷。所有成員將被重新分配到預設角色。"
|
||||
msgid "Confirm deletion of {roleName} role? This cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: W7S+Tm
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
|
||||
msgid "Confirm deletion of {roleName} role? This cannot be undone. {reassignSubject} will be reassigned to the default role."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: kZkFSm
|
||||
#: src/modules/settings/billing/components/internal/ResourceCreditPriceSelector.tsx
|
||||
@@ -7293,7 +7319,9 @@ msgstr "字段"
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutRecordPageWidgetTypeSelect.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelPermissionFieldSelectFieldMenu.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx
|
||||
@@ -15137,6 +15165,8 @@ msgstr "選項卡設定"
|
||||
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
|
||||
#: src/pages/settings/layout/SettingsLayoutViewDetail.tsx
|
||||
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/FieldWidgetLayoutDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
|
||||
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
|
||||
@@ -16104,6 +16134,7 @@ msgstr "雙因素身份驗證設定成功完成!"
|
||||
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
|
||||
#: src/pages/settings/layout/SettingsLayoutPageLayoutDetail.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
|
||||
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
|
||||
|
||||
+8
@@ -0,0 +1,8 @@
|
||||
import { createContext } from 'react';
|
||||
|
||||
export type RecordFilterValueDependenciesContextValue = {
|
||||
currentRecordId?: string;
|
||||
};
|
||||
|
||||
export const RecordFilterValueDependenciesContext =
|
||||
createContext<RecordFilterValueDependenciesContextValue>({});
|
||||
+6
-2
@@ -1,6 +1,7 @@
|
||||
import { useMemo } from 'react';
|
||||
import { useContext, useMemo } from 'react';
|
||||
|
||||
import { currentWorkspaceMemberState } from '@/auth/states/currentWorkspaceMemberState';
|
||||
import { RecordFilterValueDependenciesContext } from '@/object-record/record-filter/contexts/RecordFilterValueDependenciesContext';
|
||||
import { useUserTimezone } from '@/ui/input/components/internal/date/hooks/useUserTimezone';
|
||||
import { useAtomStateValue } from '@/ui/utilities/state/jotai/hooks/useAtomStateValue';
|
||||
import { type RecordFilterValueDependencies } from 'twenty-shared/types';
|
||||
@@ -13,12 +14,15 @@ export const useFilterValueDependencies = (): {
|
||||
|
||||
const { userTimezone } = useUserTimezone();
|
||||
|
||||
const { currentRecordId } = useContext(RecordFilterValueDependenciesContext);
|
||||
|
||||
const filterValueDependencies = useMemo(
|
||||
() => ({
|
||||
currentWorkspaceMemberId,
|
||||
currentRecordId,
|
||||
timeZone: userTimezone,
|
||||
}),
|
||||
[currentWorkspaceMemberId, userTimezone],
|
||||
[currentWorkspaceMemberId, currentRecordId, userTimezone],
|
||||
);
|
||||
|
||||
return { filterValueDependencies };
|
||||
|
||||
+23
-11
@@ -74,7 +74,13 @@ export const useLoadRecordIndexStates = () => {
|
||||
const { setRecordGroupsFromViewGroups } = useSetRecordGroups();
|
||||
|
||||
const loadRecordIndexStates = useCallback(
|
||||
(view: View, objectMetadataItem: EnrichedObjectMetadataItem) => {
|
||||
(
|
||||
view: View,
|
||||
objectMetadataItem: EnrichedObjectMetadataItem,
|
||||
options?: { skipGlobalIndexStates?: boolean },
|
||||
) => {
|
||||
const skipGlobalIndexStates = options?.skipGlobalIndexStates ?? false;
|
||||
|
||||
const activeFieldMetadataItems = objectMetadataItem.fields.filter(
|
||||
(field) => field.isActive && !isHiddenSystemField(field),
|
||||
);
|
||||
@@ -207,12 +213,16 @@ export const useLoadRecordIndexStates = () => {
|
||||
|
||||
store.set(
|
||||
atom(null, (get, batchSet) => {
|
||||
const existingFieldDefs = get(recordIndexFieldDefinitionsState.atom);
|
||||
if (!isDeeplyEqual(existingFieldDefs, newFieldDefinitions)) {
|
||||
batchSet(
|
||||
if (!skipGlobalIndexStates) {
|
||||
const existingFieldDefs = get(
|
||||
recordIndexFieldDefinitionsState.atom,
|
||||
newFieldDefinitions,
|
||||
);
|
||||
if (!isDeeplyEqual(existingFieldDefs, newFieldDefinitions)) {
|
||||
batchSet(
|
||||
recordIndexFieldDefinitionsState.atom,
|
||||
newFieldDefinitions,
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
for (const viewField of view.viewFields) {
|
||||
@@ -261,13 +271,15 @@ export const useLoadRecordIndexStates = () => {
|
||||
filters: contextStoreFilters,
|
||||
});
|
||||
|
||||
batchSet(recordIndexViewTypeState.atom, view.type);
|
||||
batchSet(recordIndexOpenRecordInState.atom, view.openRecordIn);
|
||||
if (!skipGlobalIndexStates) {
|
||||
batchSet(recordIndexViewTypeState.atom, view.type);
|
||||
batchSet(recordIndexOpenRecordInState.atom, view.openRecordIn);
|
||||
|
||||
batchSet(
|
||||
recordIndexCalendarFieldMetadataIdState.atom,
|
||||
view.calendarFieldMetadataId ?? null,
|
||||
);
|
||||
batchSet(
|
||||
recordIndexCalendarFieldMetadataIdState.atom,
|
||||
view.calendarFieldMetadataId ?? null,
|
||||
);
|
||||
}
|
||||
|
||||
batchSet(
|
||||
recordIndexShouldHideEmptyRecordGroupsAtom,
|
||||
|
||||
+12
-1
@@ -8,10 +8,19 @@ import { themeCssVariables } from 'twenty-ui/theme-constants';
|
||||
const StyledTableContainer = styled.div`
|
||||
border: 1px solid ${themeCssVariables.border.color.light};
|
||||
border-radius: ${themeCssVariables.border.radius.sm};
|
||||
min-height: 0;
|
||||
overflow: hidden;
|
||||
`;
|
||||
|
||||
export const RecordTableWidget = () => {
|
||||
type RecordTableWidgetProps = {
|
||||
isReadOnly?: boolean;
|
||||
isEmptyStateHidden?: boolean;
|
||||
};
|
||||
|
||||
export const RecordTableWidget = ({
|
||||
isReadOnly = true,
|
||||
isEmptyStateHidden = false,
|
||||
}: RecordTableWidgetProps) => {
|
||||
const { objectNameSingular, recordIndexId, viewBarInstanceId } =
|
||||
useRecordIndexContextOrThrow();
|
||||
|
||||
@@ -19,6 +28,8 @@ export const RecordTableWidget = () => {
|
||||
<>
|
||||
<RecordTableWidgetSetReadOnlyColumnHeadersEffect
|
||||
recordTableId={recordIndexId}
|
||||
isReadOnly={isReadOnly}
|
||||
isEmptyStateHidden={isEmptyStateHidden}
|
||||
/>
|
||||
<RecordIndexTableContainerEffect />
|
||||
<StyledTableContainer>
|
||||
|
||||
+15
-5
@@ -1,19 +1,22 @@
|
||||
import { useIsPageLayoutInEditMode } from '@/page-layout/hooks/useIsPageLayoutInEditMode';
|
||||
import { isRecordTableCheckboxColumnHiddenComponentState } from '@/object-record/record-table/states/isRecordTableCheckboxColumnHiddenComponentState';
|
||||
import { isRecordTableDragColumnHiddenComponentState } from '@/object-record/record-table/states/isRecordTableDragColumnHiddenComponentState';
|
||||
import { isRecordTableCellsNonEditableComponentState } from '@/object-record/record-table/states/isRecordTableCellsNonEditableComponentState';
|
||||
import { isRecordTableColumnHeadersReadOnlyComponentState } from '@/object-record/record-table/states/isRecordTableColumnHeadersReadOnlyComponentState';
|
||||
import { isRecordTableColumnResizableComponentState } from '@/object-record/record-table/states/isRecordTableColumnResizableComponentState';
|
||||
import { isRecordTableEmptyStateHiddenComponentState } from '@/object-record/record-table/states/isRecordTableEmptyStateHiddenComponentState';
|
||||
import { useStore } from 'jotai';
|
||||
import { useEffect } from 'react';
|
||||
|
||||
export const RecordTableWidgetSetReadOnlyColumnHeadersEffect = ({
|
||||
recordTableId,
|
||||
isReadOnly = true,
|
||||
isEmptyStateHidden = false,
|
||||
}: {
|
||||
recordTableId: string;
|
||||
isReadOnly?: boolean;
|
||||
isEmptyStateHidden?: boolean;
|
||||
}) => {
|
||||
const store = useStore();
|
||||
const isPageLayoutInEditMode = useIsPageLayoutInEditMode();
|
||||
|
||||
useEffect(() => {
|
||||
store.set(
|
||||
@@ -41,16 +44,23 @@ export const RecordTableWidgetSetReadOnlyColumnHeadersEffect = ({
|
||||
isRecordTableColumnResizableComponentState.atomFamily({
|
||||
instanceId: recordTableId,
|
||||
}),
|
||||
isPageLayoutInEditMode,
|
||||
true,
|
||||
);
|
||||
|
||||
store.set(
|
||||
isRecordTableCellsNonEditableComponentState.atomFamily({
|
||||
instanceId: recordTableId,
|
||||
}),
|
||||
true,
|
||||
isReadOnly,
|
||||
);
|
||||
}, [store, recordTableId, isPageLayoutInEditMode]);
|
||||
|
||||
store.set(
|
||||
isRecordTableEmptyStateHiddenComponentState.atomFamily({
|
||||
instanceId: recordTableId,
|
||||
}),
|
||||
isEmptyStateHidden,
|
||||
);
|
||||
}, [store, recordTableId, isReadOnly, isEmptyStateHidden]);
|
||||
|
||||
return null;
|
||||
};
|
||||
|
||||
+3
-1
@@ -75,7 +75,9 @@ export const RecordTableWidgetViewLoadEffect = ({
|
||||
return;
|
||||
}
|
||||
|
||||
loadRecordIndexStates(currentView, objectMetadataItem);
|
||||
loadRecordIndexStates(currentView, objectMetadataItem, {
|
||||
skipGlobalIndexStates: true,
|
||||
});
|
||||
|
||||
setLastLoadedRecordTableWidgetViewId({
|
||||
viewId,
|
||||
|
||||
+8
-1
@@ -12,6 +12,7 @@ import { RecordTableScrollToFocusedRowEffect } from '@/object-record/record-tabl
|
||||
import { RECORD_TABLE_CLICK_OUTSIDE_LISTENER_ID } from '@/object-record/record-table/constants/RecordTableClickOutsideListenerId';
|
||||
import { useRecordTableContextOrThrow } from '@/object-record/record-table/contexts/RecordTableContext';
|
||||
import { useResetTableRowSelection } from '@/object-record/record-table/hooks/internal/useResetTableRowSelection';
|
||||
import { isRecordTableEmptyStateHiddenComponentState } from '@/object-record/record-table/states/isRecordTableEmptyStateHiddenComponentState';
|
||||
import { isRecordTableInitialLoadingComponentState } from '@/object-record/record-table/states/isRecordTableInitialLoadingComponentState';
|
||||
import { useClickOutsideListener } from '@/ui/utilities/pointer-event/hooks/useClickOutsideListener';
|
||||
import { useAtomComponentSelectorValue } from '@/ui/utilities/state/jotai/hooks/useAtomComponentSelectorValue';
|
||||
@@ -46,6 +47,11 @@ export const RecordTable = () => {
|
||||
recordTableId,
|
||||
);
|
||||
|
||||
const isRecordTableEmptyStateHidden = useAtomComponentStateValue(
|
||||
isRecordTableEmptyStateHiddenComponentState,
|
||||
recordTableId,
|
||||
);
|
||||
|
||||
const hasRecordGroups = useAtomComponentSelectorValue(
|
||||
hasRecordGroupsComponentSelector,
|
||||
recordTableId,
|
||||
@@ -83,7 +89,8 @@ export const RecordTable = () => {
|
||||
)}
|
||||
{isRecordTableInitialLoading &&
|
||||
isEmpty(visibleRecordFields) ? null : recordTableIsEmpty &&
|
||||
!hasRecordGroups ? (
|
||||
!hasRecordGroups &&
|
||||
!isRecordTableEmptyStateHidden ? (
|
||||
<RecordTableEmpty tableBodyRef={tableBodyRef} />
|
||||
) : (
|
||||
<RecordTableContent
|
||||
|
||||
+5
@@ -1,11 +1,13 @@
|
||||
import { currentWorkspaceMemberState } from '@/auth/states/currentWorkspaceMemberState';
|
||||
import { type EnrichedObjectMetadataItem } from '@/object-metadata/types/EnrichedObjectMetadataItem';
|
||||
import { RecordFilterValueDependenciesContext } from '@/object-record/record-filter/contexts/RecordFilterValueDependenciesContext';
|
||||
import { currentRecordFiltersComponentState } from '@/object-record/record-filter/states/currentRecordFiltersComponentState';
|
||||
import { buildRecordInputFromFilter } from '@/object-record/record-table/utils/buildRecordInputFromFilter';
|
||||
|
||||
import { type ObjectRecord } from '@/object-record/types/ObjectRecord';
|
||||
import { useAtomComponentStateValue } from '@/ui/utilities/state/jotai/hooks/useAtomComponentStateValue';
|
||||
import { useAtomStateValue } from '@/ui/utilities/state/jotai/hooks/useAtomStateValue';
|
||||
import { useContext } from 'react';
|
||||
|
||||
export const useBuildRecordInputFromFilters = ({
|
||||
objectMetadataItem,
|
||||
@@ -21,11 +23,14 @@ export const useBuildRecordInputFromFilters = ({
|
||||
|
||||
const currentWorkspaceMember = useAtomStateValue(currentWorkspaceMemberState);
|
||||
|
||||
const { currentRecordId } = useContext(RecordFilterValueDependenciesContext);
|
||||
|
||||
const buildRecordInputFromFilters = (): Partial<ObjectRecord> => {
|
||||
return buildRecordInputFromFilter({
|
||||
currentRecordFilters,
|
||||
objectMetadataItem,
|
||||
currentWorkspaceMember: currentWorkspaceMember ?? undefined,
|
||||
currentRecordId,
|
||||
});
|
||||
};
|
||||
|
||||
|
||||
+9
@@ -0,0 +1,9 @@
|
||||
import { RecordTableComponentInstanceContext } from '@/object-record/record-table/states/context/RecordTableComponentInstanceContext';
|
||||
import { createAtomComponentState } from '@/ui/utilities/state/jotai/utils/createAtomComponentState';
|
||||
|
||||
export const isRecordTableEmptyStateHiddenComponentState =
|
||||
createAtomComponentState<boolean>({
|
||||
key: 'isRecordTableEmptyStateHiddenComponentState',
|
||||
defaultValue: false,
|
||||
componentInstanceContext: RecordTableComponentInstanceContext,
|
||||
});
|
||||
+3
@@ -16,10 +16,12 @@ export const buildRecordInputFromFilter = ({
|
||||
currentRecordFilters,
|
||||
objectMetadataItem,
|
||||
currentWorkspaceMember,
|
||||
currentRecordId,
|
||||
}: {
|
||||
currentRecordFilters: RecordFilter[];
|
||||
objectMetadataItem: EnrichedObjectMetadataItem;
|
||||
currentWorkspaceMember?: CurrentWorkspaceMember;
|
||||
currentRecordId?: string;
|
||||
}): Partial<ObjectRecord> => {
|
||||
const recordInput: Partial<ObjectRecord> = {};
|
||||
|
||||
@@ -38,6 +40,7 @@ export const buildRecordInputFromFilter = ({
|
||||
options: fieldMetadataItem.options ?? undefined,
|
||||
relationType: fieldMetadataItem.relation?.type,
|
||||
currentWorkspaceMember: currentWorkspaceMember ?? undefined,
|
||||
currentRecordId,
|
||||
label: filter.label,
|
||||
});
|
||||
|
||||
|
||||
+11
@@ -35,6 +35,7 @@ type ValueComputeContext = {
|
||||
options?: FilterOption[] | null;
|
||||
relationType?: RelationType;
|
||||
currentWorkspaceMember?: CurrentWorkspaceMember;
|
||||
currentRecordId?: string;
|
||||
label?: string;
|
||||
};
|
||||
|
||||
@@ -231,14 +232,19 @@ const computeValueFromFilterRelation = (
|
||||
relationType?: RelationType,
|
||||
currentWorkspaceMember?: CurrentWorkspaceMember,
|
||||
label?: string,
|
||||
currentRecordId?: string,
|
||||
) => {
|
||||
switch (operand) {
|
||||
case ViewFilterOperand.IS: {
|
||||
const parsedValue = parseJson<{
|
||||
isCurrentWorkspaceMemberSelected: boolean;
|
||||
isCurrentRecordSelected: boolean;
|
||||
selectedRecordIds: string[];
|
||||
}>(value);
|
||||
if (relationType === RelationType.MANY_TO_ONE) {
|
||||
if (parsedValue?.isCurrentRecordSelected) {
|
||||
return currentRecordId;
|
||||
}
|
||||
if (label === 'Assignee') {
|
||||
return parsedValue?.isCurrentWorkspaceMemberSelected
|
||||
? currentWorkspaceMember?.id
|
||||
@@ -341,6 +347,7 @@ const VALUE_HANDLER_REGISTRY: Partial<Record<FieldMetadataType, ValueHandler>> =
|
||||
value,
|
||||
relationType,
|
||||
currentWorkspaceMember,
|
||||
currentRecordId,
|
||||
label,
|
||||
}) =>
|
||||
computeValueFromFilterRelation(
|
||||
@@ -349,6 +356,7 @@ const VALUE_HANDLER_REGISTRY: Partial<Record<FieldMetadataType, ValueHandler>> =
|
||||
relationType,
|
||||
currentWorkspaceMember,
|
||||
label,
|
||||
currentRecordId,
|
||||
),
|
||||
[FieldMetadataType.TS_VECTOR]: ({ operand, value }) =>
|
||||
computeValueFromFilterTSVector(
|
||||
@@ -504,12 +512,14 @@ export const buildValueFromFilter = ({
|
||||
options,
|
||||
relationType,
|
||||
currentWorkspaceMember,
|
||||
currentRecordId,
|
||||
label,
|
||||
}: {
|
||||
filter: RecordFilter;
|
||||
options?: FilterOption[] | null;
|
||||
relationType?: RelationType;
|
||||
currentWorkspaceMember?: CurrentWorkspaceMember;
|
||||
currentRecordId?: string;
|
||||
label?: string;
|
||||
}) => {
|
||||
if (isCompositeFieldType(filter.type)) {
|
||||
@@ -541,6 +551,7 @@ export const buildValueFromFilter = ({
|
||||
options,
|
||||
relationType,
|
||||
currentWorkspaceMember,
|
||||
currentRecordId,
|
||||
label,
|
||||
});
|
||||
};
|
||||
|
||||
+9
-7
@@ -66,15 +66,17 @@ export const RecordTableVirtualizedInitialDataLoadEffect = () => {
|
||||
return;
|
||||
}
|
||||
|
||||
// Wait for the atomic batch from loadRecordIndexStates to populate
|
||||
// visibleRecordFields before triggering any fetch. This guard must apply
|
||||
// to every branch: when the current view is a draft (e.g. an unsaved
|
||||
// record-table widget view), it is not in the persisted views store, so
|
||||
// currentView is undefined and the view-change branch below never runs.
|
||||
if (isEmpty(visibleRecordFields)) {
|
||||
return;
|
||||
}
|
||||
|
||||
(async () => {
|
||||
if ((currentView?.id ?? null) !== lastContextStoreVirtualizedViewId) {
|
||||
// Wait for the atomic batch from loadRecordIndexStates to populate
|
||||
// visibleRecordFields before triggering a fetch. On the next render
|
||||
// after the batch, fields will be populated and we'll proceed.
|
||||
if (isEmpty(visibleRecordFields)) {
|
||||
return;
|
||||
}
|
||||
|
||||
setLastContextStoreVirtualizedViewId(currentView?.id ?? null);
|
||||
setLastRecordTableQueryIdentifier(queryIdentifier);
|
||||
setLastContextStoreVirtualizedVisibleRecordFields(visibleRecordFields);
|
||||
|
||||
+1
@@ -168,6 +168,7 @@ export const PAGE_LAYOUT_WIDGET_FRAGMENT = gql`
|
||||
configurationType
|
||||
fieldDisplayMode
|
||||
fieldMetadataId
|
||||
viewId
|
||||
}
|
||||
... on FieldRichTextConfiguration {
|
||||
configurationType
|
||||
|
||||
+17
-5
@@ -2,11 +2,12 @@ import { pageLayoutDraftComponentState } from '@/page-layout/states/pageLayoutDr
|
||||
import { pageLayoutPersistedComponentState } from '@/page-layout/states/pageLayoutPersistedComponentState';
|
||||
import { recordTableWidgetViewDraftComponentState } from '@/page-layout/states/recordTableWidgetViewDraftComponentState';
|
||||
import { getWidgetConfigurationViewId } from '@/page-layout/utils/getWidgetConfigurationViewId';
|
||||
import { widgetUsesRecordTableView } from '@/page-layout/utils/widgetUsesRecordTableView';
|
||||
import { usePerformViewAPIPersist } from '@/views/hooks/internal/usePerformViewAPIPersist';
|
||||
import { viewsSelector } from '@/views/states/selectors/viewsSelector';
|
||||
import { useStore } from 'jotai';
|
||||
import { useCallback } from 'react';
|
||||
import { isDefined } from 'twenty-shared/utils';
|
||||
import { WidgetType } from '~/generated-metadata/graphql';
|
||||
|
||||
export const useCreatePendingRecordTableWidgetViews = () => {
|
||||
const { performViewAPICreate, performViewAPIDestroy } =
|
||||
@@ -35,7 +36,7 @@ export const useCreatePendingRecordTableWidgetViews = () => {
|
||||
const persistedRecordTableWidgets = new Map(
|
||||
(persisted?.tabs ?? [])
|
||||
.flatMap((tab) => tab.widgets)
|
||||
.filter((widget) => widget.type === WidgetType.RECORD_TABLE)
|
||||
.filter(widgetUsesRecordTableView)
|
||||
.map((widget) => [
|
||||
widget.id,
|
||||
getWidgetConfigurationViewId(widget.configuration),
|
||||
@@ -44,12 +45,16 @@ export const useCreatePendingRecordTableWidgetViews = () => {
|
||||
|
||||
const draftRecordTableWidgets = draft.tabs
|
||||
.flatMap((tab) => tab.widgets)
|
||||
.filter((widget) => widget.type === WidgetType.RECORD_TABLE);
|
||||
.filter(widgetUsesRecordTableView);
|
||||
|
||||
const draftWidgetIds = new Set(
|
||||
draftRecordTableWidgets.map((widget) => widget.id),
|
||||
);
|
||||
|
||||
const existingViewIds = new Set(
|
||||
store.get(viewsSelector.atom).map((view) => view.id),
|
||||
);
|
||||
|
||||
for (const widget of draftRecordTableWidgets) {
|
||||
const viewId = getWidgetConfigurationViewId(widget.configuration);
|
||||
|
||||
@@ -63,7 +68,10 @@ export const useCreatePendingRecordTableWidgetViews = () => {
|
||||
continue;
|
||||
}
|
||||
|
||||
if (isDefined(persistedViewId)) {
|
||||
if (
|
||||
isDefined(persistedViewId) &&
|
||||
existingViewIds.has(persistedViewId)
|
||||
) {
|
||||
await performViewAPIDestroy({ id: persistedViewId });
|
||||
}
|
||||
|
||||
@@ -101,7 +109,11 @@ export const useCreatePendingRecordTableWidgetViews = () => {
|
||||
}
|
||||
|
||||
for (const [widgetId, viewId] of persistedRecordTableWidgets) {
|
||||
if (!draftWidgetIds.has(widgetId) && isDefined(viewId)) {
|
||||
if (
|
||||
!draftWidgetIds.has(widgetId) &&
|
||||
isDefined(viewId) &&
|
||||
existingViewIds.has(viewId)
|
||||
) {
|
||||
await performViewAPIDestroy({ id: viewId });
|
||||
}
|
||||
}
|
||||
|
||||
+2
-2
@@ -4,6 +4,7 @@ import { pageLayoutDraftComponentState } from '@/page-layout/states/pageLayoutDr
|
||||
import { recordTableWidgetViewDraftComponentState } from '@/page-layout/states/recordTableWidgetViewDraftComponentState';
|
||||
import { recordTableWidgetViewPersistedComponentState } from '@/page-layout/states/recordTableWidgetViewPersistedComponentState';
|
||||
import { getWidgetConfigurationViewId } from '@/page-layout/utils/getWidgetConfigurationViewId';
|
||||
import { widgetUsesRecordTableView } from '@/page-layout/utils/widgetUsesRecordTableView';
|
||||
import { useMutation } from '@apollo/client/react';
|
||||
import { useStore } from 'jotai';
|
||||
import { useCallback } from 'react';
|
||||
@@ -11,7 +12,6 @@ import { isDefined } from 'twenty-shared/utils';
|
||||
import {
|
||||
type UpsertViewWidgetInput,
|
||||
type ViewFragmentFragment,
|
||||
WidgetType,
|
||||
} from '~/generated-metadata/graphql';
|
||||
|
||||
export const useSaveRecordTableWidgetViews = () => {
|
||||
@@ -45,7 +45,7 @@ export const useSaveRecordTableWidgetViews = () => {
|
||||
|
||||
const draftRecordTableWidgets = draft.tabs
|
||||
.flatMap((tab) => tab.widgets)
|
||||
.filter((widget) => widget.type === WidgetType.RECORD_TABLE);
|
||||
.filter(widgetUsesRecordTableView);
|
||||
|
||||
for (const widget of draftRecordTableWidgets) {
|
||||
const viewId = getWidgetConfigurationViewId(widget.configuration);
|
||||
|
||||
@@ -8,4 +8,5 @@ export type FieldConfiguration = {
|
||||
configurationType: WidgetConfigurationType.FIELD;
|
||||
fieldMetadataId: string;
|
||||
fieldDisplayMode: FieldDisplayMode;
|
||||
viewId?: string;
|
||||
};
|
||||
|
||||
@@ -0,0 +1,16 @@
|
||||
import { type PageLayoutWidget } from '@/page-layout/types/PageLayoutWidget';
|
||||
import { isFieldWidget } from '@/page-layout/widgets/field/utils/isFieldWidget';
|
||||
import { FieldDisplayMode, WidgetType } from '~/generated-metadata/graphql';
|
||||
|
||||
export const widgetUsesRecordTableView = (
|
||||
widget: PageLayoutWidget,
|
||||
): boolean => {
|
||||
if (widget.type === WidgetType.RECORD_TABLE) {
|
||||
return true;
|
||||
}
|
||||
|
||||
return (
|
||||
isFieldWidget(widget) &&
|
||||
widget.configuration.fieldDisplayMode === FieldDisplayMode.TABLE
|
||||
);
|
||||
};
|
||||
+10
@@ -17,6 +17,7 @@ import { FieldWidgetMorphRelationCard } from '@/page-layout/widgets/field/compon
|
||||
import { FieldWidgetMorphRelationField } from '@/page-layout/widgets/field/components/FieldWidgetMorphRelationField';
|
||||
import { FieldWidgetRelationCard } from '@/page-layout/widgets/field/components/FieldWidgetRelationCard';
|
||||
import { FieldWidgetRelationField } from '@/page-layout/widgets/field/components/FieldWidgetRelationField';
|
||||
import { FieldWidgetRelationTable } from '@/page-layout/widgets/field/components/FieldWidgetRelationTable';
|
||||
import { assertFieldWidgetOrThrow } from '@/page-layout/widgets/field/utils/assertFieldWidgetOrThrow';
|
||||
import { FieldWidgetTextEditor } from '@/page-layout/widgets/field/components/FieldWidgetTextEditor';
|
||||
import { useLayoutRenderingContext } from '@/ui/layout/contexts/LayoutRenderingContext';
|
||||
@@ -159,6 +160,15 @@ export const FieldWidget = ({ widget }: FieldWidgetProps) => {
|
||||
);
|
||||
}
|
||||
|
||||
if (fieldDisplayMode === FieldDisplayMode.TABLE) {
|
||||
return (
|
||||
<FieldWidgetRelationTable
|
||||
fieldDefinition={fieldDefinition}
|
||||
recordId={targetRecord.id}
|
||||
/>
|
||||
);
|
||||
}
|
||||
|
||||
return (
|
||||
<FieldWidgetRelationField
|
||||
fieldDefinition={fieldDefinition}
|
||||
|
||||
+14
-2
@@ -16,8 +16,10 @@ import {
|
||||
type FieldRelationMetadata,
|
||||
} from '@/object-record/record-field/ui/types/FieldMetadata';
|
||||
import { isFieldMorphRelation } from '@/object-record/record-field/ui/types/guards/isFieldMorphRelation';
|
||||
import { recordStoreFamilySelector } from '@/object-record/record-store/states/selectors/recordStoreFamilySelector';
|
||||
import { useAtomFamilySelectorValue } from '@/ui/utilities/state/jotai/hooks/useAtomFamilySelectorValue';
|
||||
import { styled } from '@linaria/react';
|
||||
import { CustomError } from 'twenty-shared/utils';
|
||||
import { CustomError, isDefined } from 'twenty-shared/utils';
|
||||
import { IconPencil, IconPlus } from 'twenty-ui/display';
|
||||
import { LightIconButton } from 'twenty-ui/input';
|
||||
import { RelationType } from '~/generated-metadata/graphql';
|
||||
@@ -72,8 +74,18 @@ export const FieldWidgetRelationEditAction = ({
|
||||
|
||||
const isMorphRelation = isFieldMorphRelation(fieldDefinition);
|
||||
|
||||
const relationValue = useAtomFamilySelectorValue(recordStoreFamilySelector, {
|
||||
recordId,
|
||||
fieldName: fieldDefinition.metadata.fieldName,
|
||||
});
|
||||
|
||||
const hasAtLeastOneRelationRecord = Array.isArray(relationValue)
|
||||
? relationValue.length > 0
|
||||
: isDefined(relationValue);
|
||||
|
||||
const triggerIcon =
|
||||
fieldDefinition.metadata.relationType === RelationType.MANY_TO_ONE
|
||||
fieldDefinition.metadata.relationType === RelationType.MANY_TO_ONE ||
|
||||
hasAtLeastOneRelationRecord
|
||||
? IconPencil
|
||||
: IconPlus;
|
||||
|
||||
|
||||
+64
@@ -0,0 +1,64 @@
|
||||
import { RecordFilterValueDependenciesContext } from '@/object-record/record-filter/contexts/RecordFilterValueDependenciesContext';
|
||||
import { type FieldDefinition } from '@/object-record/record-field/ui/types/FieldDefinition';
|
||||
import { type FieldRelationMetadata } from '@/object-record/record-field/ui/types/FieldMetadata';
|
||||
import { RECORD_TABLE_ROW_HEIGHT } from '@/object-record/record-table/constants/RecordTableRowHeight';
|
||||
import { useIsPageLayoutInEditMode } from '@/page-layout/hooks/useIsPageLayoutInEditMode';
|
||||
import { RecordTableWidgetRendererContent } from '@/page-layout/widgets/record-table/components/RecordTableWidgetRendererContent';
|
||||
import { isFieldWidget } from '@/page-layout/widgets/field/utils/isFieldWidget';
|
||||
import { useCurrentWidget } from '@/page-layout/widgets/hooks/useCurrentWidget';
|
||||
import { styled } from '@linaria/react';
|
||||
import { isDefined } from 'twenty-shared/utils';
|
||||
|
||||
const FIELD_WIDGET_RELATION_TABLE_MAX_VISIBLE_RECORDS = 20;
|
||||
|
||||
const FIELD_WIDGET_RELATION_TABLE_MAX_HEIGHT_IN_PX =
|
||||
(FIELD_WIDGET_RELATION_TABLE_MAX_VISIBLE_RECORDS + 2) *
|
||||
RECORD_TABLE_ROW_HEIGHT;
|
||||
|
||||
const StyledContainer = styled.div`
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
max-height: ${FIELD_WIDGET_RELATION_TABLE_MAX_HEIGHT_IN_PX}px;
|
||||
min-height: 0;
|
||||
`;
|
||||
|
||||
type FieldWidgetRelationTableProps = {
|
||||
fieldDefinition: FieldDefinition<FieldRelationMetadata>;
|
||||
recordId: string;
|
||||
};
|
||||
|
||||
export const FieldWidgetRelationTable = ({
|
||||
fieldDefinition,
|
||||
recordId,
|
||||
}: FieldWidgetRelationTableProps) => {
|
||||
const widget = useCurrentWidget();
|
||||
|
||||
const isPageLayoutInEditMode = useIsPageLayoutInEditMode();
|
||||
|
||||
const viewId = isFieldWidget(widget)
|
||||
? widget.configuration.viewId
|
||||
: undefined;
|
||||
|
||||
const targetObjectMetadataId =
|
||||
fieldDefinition.metadata.relationObjectMetadataId;
|
||||
|
||||
if (!isDefined(viewId) || !isDefined(targetObjectMetadataId)) {
|
||||
return null;
|
||||
}
|
||||
|
||||
return (
|
||||
<RecordFilterValueDependenciesContext.Provider
|
||||
value={{ currentRecordId: recordId }}
|
||||
>
|
||||
<StyledContainer>
|
||||
<RecordTableWidgetRendererContent
|
||||
objectMetadataId={targetObjectMetadataId}
|
||||
viewId={viewId}
|
||||
widgetId={widget.id}
|
||||
isReadOnly={isPageLayoutInEditMode}
|
||||
isEmptyStateHidden
|
||||
/>
|
||||
</StyledContainer>
|
||||
</RecordFilterValueDependenciesContext.Provider>
|
||||
);
|
||||
};
|
||||
+5
-1
@@ -14,7 +14,11 @@ export const FIELD_WIDGET_CONFIG: Partial<
|
||||
defaultDisplayMode: FieldDisplayMode.FIELD,
|
||||
},
|
||||
[FieldMetadataType.RELATION]: {
|
||||
availableDisplayModes: [FieldDisplayMode.FIELD, FieldDisplayMode.CARD],
|
||||
availableDisplayModes: [
|
||||
FieldDisplayMode.FIELD,
|
||||
FieldDisplayMode.CARD,
|
||||
FieldDisplayMode.TABLE,
|
||||
],
|
||||
defaultDisplayMode: FieldDisplayMode.CARD,
|
||||
},
|
||||
[FieldMetadataType.MORPH_RELATION]: {
|
||||
|
||||
+19
-6
@@ -1,5 +1,5 @@
|
||||
import { type FieldMetadataType } from 'twenty-shared/types';
|
||||
import { FieldDisplayMode } from '~/generated-metadata/graphql';
|
||||
import { FieldDisplayMode, RelationType } from '~/generated-metadata/graphql';
|
||||
|
||||
import { FIELD_WIDGET_CONFIG } from '@/page-layout/widgets/field/constants/fieldWidgetConfig';
|
||||
|
||||
@@ -13,12 +13,25 @@ export const getFieldWidgetDefaultDisplayMode = (
|
||||
|
||||
export const getFieldWidgetAvailableDisplayModes = (
|
||||
fieldType: FieldMetadataType,
|
||||
) =>
|
||||
getFieldWidgetConfig(fieldType)?.availableDisplayModes ?? [
|
||||
FieldDisplayMode.FIELD,
|
||||
];
|
||||
relationType?: RelationType | null,
|
||||
) => {
|
||||
const availableDisplayModes = getFieldWidgetConfig(fieldType)
|
||||
?.availableDisplayModes ?? [FieldDisplayMode.FIELD];
|
||||
|
||||
if (relationType !== RelationType.ONE_TO_MANY) {
|
||||
return availableDisplayModes.filter(
|
||||
(displayMode) => displayMode !== FieldDisplayMode.TABLE,
|
||||
);
|
||||
}
|
||||
|
||||
return availableDisplayModes;
|
||||
};
|
||||
|
||||
export const isDisplayModeValidForFieldType = (
|
||||
fieldType: FieldMetadataType,
|
||||
displayMode: FieldDisplayMode,
|
||||
) => getFieldWidgetAvailableDisplayModes(fieldType).includes(displayMode);
|
||||
relationType?: RelationType | null,
|
||||
) =>
|
||||
getFieldWidgetAvailableDisplayModes(fieldType, relationType).includes(
|
||||
displayMode,
|
||||
);
|
||||
|
||||
+1
@@ -29,6 +29,7 @@ export const RecordTableWidgetRenderer = ({
|
||||
objectMetadataId={widget.objectMetadataId}
|
||||
viewId={viewId}
|
||||
widgetId={widget.id}
|
||||
isEmptyStateHidden
|
||||
/>
|
||||
);
|
||||
};
|
||||
|
||||
+8
-1
@@ -7,12 +7,16 @@ type RecordTableWidgetRendererContentProps = {
|
||||
objectMetadataId: string;
|
||||
viewId: string;
|
||||
widgetId: string;
|
||||
isReadOnly?: boolean;
|
||||
isEmptyStateHidden?: boolean;
|
||||
};
|
||||
|
||||
export const RecordTableWidgetRendererContent = ({
|
||||
objectMetadataId,
|
||||
viewId,
|
||||
widgetId,
|
||||
isReadOnly = true,
|
||||
isEmptyStateHidden = false,
|
||||
}: RecordTableWidgetRendererContentProps) => {
|
||||
const { objectMetadataItem } = useObjectMetadataItemById({
|
||||
objectId: objectMetadataId,
|
||||
@@ -29,7 +33,10 @@ export const RecordTableWidgetRendererContent = ({
|
||||
viewId={viewId}
|
||||
widgetId={widgetId}
|
||||
>
|
||||
<RecordTableWidget />
|
||||
<RecordTableWidget
|
||||
isReadOnly={isReadOnly}
|
||||
isEmptyStateHidden={isEmptyStateHidden}
|
||||
/>
|
||||
</RecordTableWidgetProvider>
|
||||
</>
|
||||
);
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user