comparison 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
comparison
equal deleted inserted replaced
2759:7badd99c9315 2760:c6fba10926cc
1 <template> 1 <template>
2 <div class="d-flex flex-row"> 2 <div class="d-flex flex-row">
3 <Spacer></Spacer> 3 <Spacer></Spacer>
4 <div class="card sysconfig mt-2 shadow-xs"> 4 <div class="card sysconfig mt-2 shadow-xs">
5 <UIBoxHeader icon="wrench" title="Systemconfiguration" /> 5 <UIBoxHeader icon="wrench" :title="systemconfigurationLabel" />
6 <div class="card-body text-left"> 6 <div class="card-body text-left">
7 <PDFTemplates /> 7 <PDFTemplates />
8 <ColorSettings v-if="isSysAdmin" /> 8 <ColorSettings v-if="isSysAdmin" />
9 </div> 9 </div>
10 <!-- card-body --> 10 <!-- card-body -->
44 Spacer: () => import("../Spacer"), 44 Spacer: () => import("../Spacer"),
45 PDFTemplates: () => import("./PDFTemplates"), 45 PDFTemplates: () => import("./PDFTemplates"),
46 ColorSettings: () => import("./ColorSettings") 46 ColorSettings: () => import("./ColorSettings")
47 }, 47 },
48 computed: { 48 computed: {
49 ...mapGetters("user", ["isSysAdmin"]) 49 ...mapGetters("user", ["isSysAdmin"]),
50 systemconfigurationLabel() {
51 return this.$gettext("Systemconfiguration");
52 }
50 } 53 }
51 }; 54 };
52 </script> 55 </script>