diff client/src/components/gauge/Gauges.vue @ 2754:d0f6c222f4f9

client:correct a set of strings marking
author Fadi Abbud <fadi.abbud@intevation.de>
date Thu, 21 Mar 2019 13:24:49 +0100
parents 5da81634bdc4
children 71e7237110ba
line wrap: on
line diff
--- a/client/src/components/gauge/Gauges.vue	Thu Mar 21 13:03:27 2019 +0100
+++ b/client/src/components/gauge/Gauges.vue	Thu Mar 21 13:24:49 2019 +0100
@@ -8,7 +8,7 @@
     <div style="width: 18rem">
       <UIBoxHeader
         icon="ruler-vertical"
-        title="Gauges"
+        :title="gaugesLabel"
         :closeCallback="close"
       />
       <div class="box-body">
@@ -104,6 +104,9 @@
     ...mapState("application", ["showGauges", "activeSplitscreenId"]),
     ...mapState("gauges", ["gauges"]),
     ...mapGetters("gauges", ["selectedGauge"]),
+    gaugesLabel() {
+      return this.$gettext("Gauges");
+    },
     orderedGauges() {
       let orderedGauges = {};
       this.gauges.forEach(g => {