diff client/src/components/usermanagement/Usermanagement.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 8057662812f1
children 615b0a9b8098
line wrap: on
line diff
--- a/client/src/components/usermanagement/Usermanagement.vue	Thu Mar 21 16:40:02 2019 +0100
+++ b/client/src/components/usermanagement/Usermanagement.vue	Thu Mar 21 17:04:37 2019 +0100
@@ -4,7 +4,7 @@
     <div class="d-flex content py-2">
       <div :class="userlistStyle">
         <div class="card shadow-xs">
-          <UIBoxHeader icon="users-cog" title="Users" />
+          <UIBoxHeader icon="users-cog" :title="usersLabel" />
           <UITableHeader
             :columns="[
               { id: 'role', title: 'Role', class: 'col-1' },
@@ -166,6 +166,9 @@
       "currentUser"
     ]),
     ...mapState("application", ["showSidebar"]),
+    usersLabel() {
+      return this.$gettext("Users");
+    },
     sendMailLabel() {
       return this.$gettext("Send testmail");
     },