diff --git a/packages/nc-gui/components/smartsheet/column/LinkedToAnotherRecordOptions.vue b/packages/nc-gui/components/smartsheet/column/LinkedToAnotherRecordOptions.vue index f0e12c4595..560a6812ea 100644 --- a/packages/nc-gui/components/smartsheet/column/LinkedToAnotherRecordOptions.vue +++ b/packages/nc-gui/components/smartsheet/column/LinkedToAnotherRecordOptions.vue @@ -330,7 +330,7 @@ const onFilterLabelClick = () => { class="text-s" data-testid="nc-limit-record-view" @click="onViewLabelClick" - >Limit record selection to a view{{ $t('labels.limitRecordSelectionToView') }} @@ -371,7 +371,7 @@ const onFilterLabelClick = () => { data-testid="nc-limit-record-filters" @click="onFilterLabelClick" > - Limit record selection to filters + {{ $t('labels.limitRecordSelectionToFilters') }}
diff --git a/packages/nc-gui/components/smartsheet/grid/InfiniteTable.vue b/packages/nc-gui/components/smartsheet/grid/InfiniteTable.vue index 140c9ad42d..f75218eb43 100644 --- a/packages/nc-gui/components/smartsheet/grid/InfiniteTable.vue +++ b/packages/nc-gui/components/smartsheet/grid/InfiniteTable.vue @@ -2579,7 +2579,7 @@ watch(vSelectedAllRecords, (selectedAll) => { >
- Insert above + {{ $t('general.insertAbove') }}
@@ -2591,7 +2591,7 @@ watch(vSelectedAllRecords, (selectedAll) => { >
- Insert below + {{ $t('general.insertBelow') }}
diff --git a/packages/nc-gui/components/smartsheet/header/Menu.vue b/packages/nc-gui/components/smartsheet/header/Menu.vue index 074440407c..45335b4297 100644 --- a/packages/nc-gui/components/smartsheet/header/Menu.vue +++ b/packages/nc-gui/components/smartsheet/header/Menu.vue @@ -670,7 +670,7 @@ const onDeleteColumn = () => {
- Filter by this field + {{ $t('activity.filterByThisField') }}
@@ -698,7 +698,7 @@ const onDeleteColumn = () => {
- {{ isGroupedByThisField ? "Don't group by this field" : 'Group by this field' }} + {{ isGroupedByThisField ? "Don't group by this field" : $t('activity.groupByThisField') }}
diff --git a/packages/nc-gui/components/workspace/integrations/ConnectionsTab.vue b/packages/nc-gui/components/workspace/integrations/ConnectionsTab.vue index 8b72adb0c3..d1a3b851f2 100644 --- a/packages/nc-gui/components/workspace/integrations/ConnectionsTab.vue +++ b/packages/nc-gui/components/workspace/integrations/ConnectionsTab.vue @@ -255,9 +255,9 @@ onKeyStroke('ArrowDown', onDown)
- Manage connections for your integrations. + {{ $t('msg.manageConnections') }} - Learn more + {{ $t('msg.learnMore') }}
@@ -296,7 +296,7 @@ onKeyStroke('ArrowDown', onDown) @click="updateOrderBy('title')" >
-
Name
+
{{ $t('general.name') }}
-
Type
+
{{ $t('general.type') }}
-
Date added
+
{{ $t('labels.dateAdded') }}
-
Added by
+
{{ $t('labels.addedBy') }}
-
Usage
+
{{ $t('general.usage') }}
-
Actions
+
{{ $t('labels.actions') }}
diff --git a/packages/nc-gui/components/workspace/integrations/IntegrationsTab.vue b/packages/nc-gui/components/workspace/integrations/IntegrationsTab.vue index 086e2f847b..d79285a303 100644 --- a/packages/nc-gui/components/workspace/integrations/IntegrationsTab.vue +++ b/packages/nc-gui/components/workspace/integrations/IntegrationsTab.vue @@ -276,10 +276,10 @@ watch(activeViewTab, (value) => {
- Connect integrations with NocoDB. - Learn more + {{ $t('msg.connectIntegrations') }} + {{ + $t('msg.learnMore') + }}
diff --git a/packages/nc-gui/lang/en.json b/packages/nc-gui/lang/en.json index 81082f6e35..da1de14491 100644 --- a/packages/nc-gui/lang/en.json +++ b/packages/nc-gui/lang/en.json @@ -93,6 +93,7 @@ "none": "None" }, "general": { + "usage": "Usage", "snapshot": "Snapshot", "snapshots": "Snapshots", "baseSnapshots": "Base Snapshots", @@ -657,6 +658,9 @@ "lockedByUser": "Locked by {user}" }, "labels": { + "limitRecordSelectionToView": "Limit record selection to a view", + "limitRecordSelectionToFilters": "Limit record selection to filters", + "addedBy": "Added by", "whatsNew": "What's New!", "enableSnowFall": "Enable Snowfall", "disableSnowFall": "Disable Snowfall", @@ -1075,6 +1079,8 @@ "viewHide": "View visibility " }, "activity": { + "filterByThisField": "Filter by this field", + "groupByThisField": "Group by this field", "addToStarred": "Add to starred", "removeFromStarred": "Remove from starred", "deleteAllRecords": "Delete all records", @@ -1451,6 +1457,9 @@ "lockViewDescription": "Explain why you’re locking this view. This message will be shown when anyone tries to unlock this view (optional)." }, "msg": { + "learnMore": "Learn more", + "connectIntegrations": "Connect integrations with NocoDB.", + "manageConnections": "Manage connections for your integrations.", "invalidConfiguration": "Invalid button configuration", "invalidColumnConfiguration": "Invalid field configuration", "invalidTheme": "Select a valid theme",