diff client/src/components/systemconfiguration/Systemconfiguration.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 bb5286acfee2
children 6c5364ff0abb
line wrap: on
line diff
--- a/client/src/components/systemconfiguration/Systemconfiguration.vue	Thu Mar 21 16:40:02 2019 +0100
+++ b/client/src/components/systemconfiguration/Systemconfiguration.vue	Thu Mar 21 17:04:37 2019 +0100
@@ -2,7 +2,7 @@
   <div class="d-flex flex-row">
     <Spacer></Spacer>
     <div class="card sysconfig mt-2 shadow-xs">
-      <UIBoxHeader icon="wrench" title="Systemconfiguration" />
+      <UIBoxHeader icon="wrench" :title="systemconfigurationLabel" />
       <div class="card-body text-left">
         <PDFTemplates />
         <ColorSettings v-if="isSysAdmin" />
@@ -46,7 +46,10 @@
     ColorSettings: () => import("./ColorSettings")
   },
   computed: {
-    ...mapGetters("user", ["isSysAdmin"])
+    ...mapGetters("user", ["isSysAdmin"]),
+    systemconfigurationLabel() {
+      return this.$gettext("Systemconfiguration");
+    }
   }
 };
 </script>