comparison client/src/components/importconfiguration/Import.vue @ 3559:c220ad7e61ed

client: import review/configuration: unified column names in table (User/Author -> Owner)
author Markus Kottlaender <markus@intevation.de>
date Fri, 31 May 2019 16:42:43 +0200
parents fb810668e45d
children a3d1fce63c9e
comparison
equal deleted inserted replaced
3558:fb810668e45d 3559:c220ad7e61ed
5 <UISpinnerOverlay v-if="loading" /> 5 <UISpinnerOverlay v-if="loading" />
6 <UITableHeader 6 <UITableHeader
7 :columns="[ 7 :columns="[
8 { id: 'id', title: `${idLabel}`, class: 'col-1' }, 8 { id: 'id', title: `${idLabel}`, class: 'col-1' },
9 { id: 'kind', title: `${typeLabel}`, class: 'col-1' }, 9 { id: 'kind', title: `${typeLabel}`, class: 'col-1' },
10 { id: 'user', title: `${authorLabel}`, class: 'col-2' }, 10 { id: 'user', title: `${ownerLabel}`, class: 'col-2' },
11 { id: 'country', title: `${countryLabel}`, class: 'col-1' }, 11 { id: 'country', title: `${countryLabel}`, class: 'col-1' },
12 { id: 'config.cron', title: `${scheduleLabel}`, class: 'col-2' }, 12 { id: 'config.cron', title: `${scheduleLabel}`, class: 'col-2' },
13 { id: 'config.send-email', title: `${emailLabel}`, class: 'col-2' } 13 { id: 'config.send-email', title: `${emailLabel}`, class: 'col-2' }
14 ]" 14 ]"
15 /> 15 />
246 return this.$gettext("ID"); 246 return this.$gettext("ID");
247 }, 247 },
248 typeLabel() { 248 typeLabel() {
249 return this.$gettext("Type"); 249 return this.$gettext("Type");
250 }, 250 },
251 authorLabel() { 251 ownerLabel() {
252 return this.$gettext("Author"); 252 return this.$gettext("Owner");
253 }, 253 },
254 scheduleLabel() { 254 scheduleLabel() {
255 return this.$gettext("Schedule"); 255 return this.$gettext("Schedule");
256 }, 256 },
257 emailLabel() { 257 emailLabel() {