diff client/src/components/identify/Identify.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 fb5deecb77f1
children 202a153a3361
line wrap: on
line diff
--- a/client/src/components/identify/Identify.vue	Thu Mar 21 13:03:27 2019 +0100
+++ b/client/src/components/identify/Identify.vue	Thu Mar 21 13:24:49 2019 +0100
@@ -6,7 +6,11 @@
     ]"
   >
     <div style="width: 18rem">
-      <UIBoxHeader icon="info" title="Identified" :closeCallback="close" />
+      <UIBoxHeader
+        icon="info"
+        :title="identifiedLabel"
+        :closeCallback="close"
+      />
       <div class="features">
         <div v-if="currentMeasurement">
           <small class="d-block bg-dark text-light text-center px-2 py-1">
@@ -136,7 +140,10 @@
     ...mapGetters("application", ["versionStr"]),
     ...mapState("application", ["showIdentify"]),
     ...mapGetters("map", ["filteredIdentifiedFeatures"]),
-    ...mapState("map", ["currentMeasurement"])
+    ...mapState("map", ["currentMeasurement"]),
+    identifiedLabel() {
+      return this.$gettext("Identified");
+    }
   },
   methods: {
     zoomTo(feature) {