Browse Source

fix: helper text

pull/9085/head
DarkPhoenix2704 4 months ago
parent
commit
3e5829db0e
  1. 6
      packages/nc-gui/components/smartsheet/header/AddLookups.vue
  2. 2
      packages/nc-gui/lang/en.json

6
packages/nc-gui/components/smartsheet/header/AddLookups.vue

@ -154,7 +154,11 @@ onMounted(async () => {
<div class="flex flex-col gap-3"> <div class="flex flex-col gap-3">
<h1 class="text-base text-gray-800 font-semibold">{{ $t('general.addLookupField') }}</h1> <h1 class="text-base text-gray-800 font-semibold">{{ $t('general.addLookupField') }}</h1>
<div class="text-gray-900"> <div class="text-gray-900">
{{ $t('labels.addNewLookupHelperText') }} {{
$t('labels.addNewLookupHelperText', {
table: relatedModel?.title,
})
}}
</div> </div>
<div class="flex w-full gap-2 justify-between items-center"> <div class="flex w-full gap-2 justify-between items-center">

2
packages/nc-gui/lang/en.json

@ -523,7 +523,7 @@
}, },
"labels": { "labels": {
"clearAll": "Clear all", "clearAll": "Clear all",
"addNewLookupHelperText": "Lookup fields show data from linked records. Select specific fields from {table1} to add them as Lookup fields in this table.", "addNewLookupHelperText": "Lookup fields show data from linked records. Select specific fields from {table} table to add them as Lookup fields in this table.",
"formatting": "Formatting", "formatting": "Formatting",
"selectAFormatType": "- -Select a formt type (optional)- -", "selectAFormatType": "- -Select a formt type (optional)- -",
"formatType": "Format type", "formatType": "Format type",

Loading…
Cancel
Save