Browse Source

refactor: i18n corrections

Signed-off-by: Raju Udava <86527202+dstala@users.noreply.github.com>
pull/2730/head
Raju Udava 2 years ago
parent
commit
2060e04f31
  1. 6
      packages/nc-gui-v2/pages/index/index.vue

6
packages/nc-gui-v2/pages/index/index.vue

@ -119,12 +119,14 @@ $state.sidebarOpen.value = false
:data-source="filteredProjects" :data-source="filteredProjects"
:pagination="{ position: ['bottomCenter'] }" :pagination="{ position: ['bottomCenter'] }"
> >
<a-table-column key="title" title="Title" data-index="title"> <!-- Title -->
<a-table-column key="title" :title="$t('general.title')" data-index="title">
<template #default="{ text }"> <template #default="{ text }">
<div class="capitalize !w-[400px] overflow-hidden overflow-ellipsis whitespace-nowrap" :title="text">{{ text }}</div> <div class="capitalize !w-[400px] overflow-hidden overflow-ellipsis whitespace-nowrap" :title="text">{{ text }}</div>
</template> </template>
</a-table-column> </a-table-column>
<a-table-column key="id" title="Actions" data-index="id"> <!-- Actions -->
<a-table-column key="id" :title="$t('labels.actions')" data-index="id">
<template #default="{ text, record }"> <template #default="{ text, record }">
<div class="flex align-center"> <div class="flex align-center">
<MdiEditOutline class="nc-action-btn" @click.stop="navigateTo(`/project/${text}`)" /> <MdiEditOutline class="nc-action-btn" @click.stop="navigateTo(`/project/${text}`)" />

Loading…
Cancel
Save