diff client/src/components/importoverview/ImportOverview.vue @ 2760:c6fba10926cc

client:correct a set of strings marking * correct strings marking passing to UIBoxheader
author Fadi Abbud <fadi.abbud@intevation.de>
date Thu, 21 Mar 2019 17:04:37 +0100
parents 7badd99c9315
children 0d9c006ac25a
line wrap: on
line diff
--- a/client/src/components/importoverview/ImportOverview.vue	Thu Mar 21 16:40:02 2019 +0100
+++ b/client/src/components/importoverview/ImportOverview.vue	Thu Mar 21 17:04:37 2019 +0100
@@ -2,7 +2,7 @@
   <div class="overview">
     <UIBoxHeader
       icon="clipboard-check"
-      title="Import review"
+      :title="importReviewLabel"
       :closeCallback="$parent.close"
       :actions="[{ callback: loadLogs, icon: 'redo' }]"
     />
@@ -164,6 +164,9 @@
       "next"
     ]),
     ...mapGetters("imports", ["filters"]),
+    importReviewLabel() {
+      return this.$gettext("Import review");
+    },
     interval() {
       return [this.startDate, this.endDate];
     }