Browse Source

fix: i18n for Fields Menu

pull/6512/head
Muhammed Mustafa 1 year ago
parent
commit
4802be9207
  1. 10
      packages/nc-gui/components/smartsheet/toolbar/FieldsMenu.vue
  2. 5
      packages/nc-gui/lang/en.json

10
packages/nc-gui/components/smartsheet/toolbar/FieldsMenu.vue

@ -305,7 +305,7 @@ useMenuCloseOnEsc(open)
<!-- Fields --> <!-- Fields -->
<span v-if="!isMobileMode" class="text-capitalize text-sm font-medium"> <span v-if="!isMobileMode" class="text-capitalize text-sm font-medium">
<template v-if="activeView?.type === ViewTypes.KANBAN || activeView?.type === ViewTypes.GALLERY"> <template v-if="activeView?.type === ViewTypes.KANBAN || activeView?.type === ViewTypes.GALLERY">
Edit Cards {{ $t('title.editCards') }}
</template> </template>
<template v-else> <template v-else>
{{ $t('objects.fields') }} {{ $t('objects.fields') }}
@ -352,7 +352,7 @@ useMenuCloseOnEsc(open)
v-if="!fields?.filter((el) => el.title.toLowerCase().includes(filterQuery.toLowerCase())).length" v-if="!fields?.filter((el) => el.title.toLowerCase().includes(filterQuery.toLowerCase())).length"
class="px-0.5 py-2 text-gray-500" class="px-0.5 py-2 text-gray-500"
> >
No fields found {{ $t('title.noFieldsFound') }}
</div> </div>
<Draggable v-model="fields" item-key="id" @change="onMove($event)"> <Draggable v-model="fields" item-key="id" @change="onMove($event)">
<template #item="{ element: field }"> <template #item="{ element: field }">
@ -401,7 +401,7 @@ useMenuCloseOnEsc(open)
<div class="flex items"> <div class="flex items">
<a-tooltip placement="bottom"> <a-tooltip placement="bottom">
<template #title> <template #title>
<span class="text-sm">Display Value</span> <span class="text-sm">$t('title.displayValue') </span>
</template> </template>
</a-tooltip> </a-tooltip>
@ -426,7 +426,7 @@ useMenuCloseOnEsc(open)
class="nc-fields-show-all-fields !text-gray-500 !w-1/2" class="nc-fields-show-all-fields !text-gray-500 !w-1/2"
@click="showAllColumns = !showAllColumns" @click="showAllColumns = !showAllColumns"
> >
{{ showAllColumns ? 'Hide all' : $t('general.showAll') }} {{ $t('objects.fields').toLowerCase() }} {{ showAllColumns ? $t('title.hideAll') : $t('general.showAll') }} {{ $t('objects.fields').toLowerCase() }}
</NcButton> </NcButton>
<NcButton <NcButton
v-if="!isPublic && !filterQuery" v-if="!isPublic && !filterQuery"
@ -435,7 +435,7 @@ useMenuCloseOnEsc(open)
class="nc-fields-show-system-fields !text-gray-500 !w-1/2" class="nc-fields-show-system-fields !text-gray-500 !w-1/2"
@click="showSystemField = !showSystemField" @click="showSystemField = !showSystemField"
> >
{{ showSystemField ? 'Hide system fields' : $t('activity.showSystemFields') }} {{ showSystemField ? $t('title.hideSystemFields') : $t('activity.showSystemFields') }}
</NcButton> </NcButton>
</div> </div>
</div> </div>

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

@ -246,6 +246,11 @@
"isNotNull": "is not null" "isNotNull": "is not null"
}, },
"title": { "title": {
"editCards": "Edit Cards",
"noFieldsFound": "No fields found",
"displayValue": "Display Value",
"hideAll":"Hide all",
"hideSystemFields": "hideSystemFields",
"renameTable": "Rename Table", "renameTable": "Rename Table",
"renamingTable": "Renaming Table", "renamingTable": "Renaming Table",
"copyAuthToken": "Copy Auth Token", "copyAuthToken": "Copy Auth Token",

Loading…
Cancel
Save