changeset 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 ec1aec03676d
files client/src/components/importconfiguration/Import.vue client/src/components/importoverview/ImportOverview.vue
diffstat 2 files changed, 6 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/client/src/components/importconfiguration/Import.vue	Fri May 31 16:05:12 2019 +0200
+++ b/client/src/components/importconfiguration/Import.vue	Fri May 31 16:42:43 2019 +0200
@@ -7,7 +7,7 @@
         :columns="[
           { id: 'id', title: `${idLabel}`, class: 'col-1' },
           { id: 'kind', title: `${typeLabel}`, class: 'col-1' },
-          { id: 'user', title: `${authorLabel}`, class: 'col-2' },
+          { id: 'user', title: `${ownerLabel}`, class: 'col-2' },
           { id: 'country', title: `${countryLabel}`, class: 'col-1' },
           { id: 'config.cron', title: `${scheduleLabel}`, class: 'col-2' },
           { id: 'config.send-email', title: `${emailLabel}`, class: 'col-2' }
@@ -248,8 +248,8 @@
     typeLabel() {
       return this.$gettext("Type");
     },
-    authorLabel() {
-      return this.$gettext("Author");
+    ownerLabel() {
+      return this.$gettext("Owner");
     },
     scheduleLabel() {
       return this.$gettext("Schedule");
--- a/client/src/components/importoverview/ImportOverview.vue	Fri May 31 16:05:12 2019 +0200
+++ b/client/src/components/importoverview/ImportOverview.vue	Fri May 31 16:42:43 2019 +0200
@@ -77,7 +77,7 @@
           { id: 'id', title: `${idLabel}`, width: '75px' },
           { id: 'kind', title: `${kindLabel}`, width: '53px' },
           { id: 'enqueued', title: `${enqueuedLabel}`, width: '138px' },
-          { id: 'user', title: `${userLabel}`, width: '80px' },
+          { id: 'user', title: `${ownerLabel}`, width: '80px' },
           { id: 'country', title: `${countryLabel}`, width: '55px' },
           { id: 'signer', title: `${signerLabel}`, width: '80px' },
           { id: 'state', title: `${statusLabel}`, width: '72px' },
@@ -185,8 +185,8 @@
     enqueuedLabel() {
       return this.$gettext("Enqueued");
     },
-    userLabel() {
-      return this.$gettext("User");
+    ownerLabel() {
+      return this.$gettext("Owner");
     },
     signerLabel() {
       return this.$gettext("Signer");