fixing some not working phrasen

This commit is contained in:
SimonGschnell
2024-04-08 09:58:53 +02:00
parent 0cd86e3e54
commit b77e56161d
6 changed files with 11 additions and 9 deletions
@@ -448,7 +448,7 @@ export default {
<div class="row">
<div class="col">
<!-- MAILVERTEILER -->
<mailverteiler :data="data?.mailverteiler"></mailverteiler>
<mailverteiler :data="data?.mailverteiler" :title="$p.t('profil','mailverteiler')"></mailverteiler>
</div>
</div>
@@ -2,17 +2,19 @@ export default {
props:{
data:{
type:String,
}
},
data(){
return {
}
},mounted(){
},
template: /*html*/`
<div class="card">
<div class="card-body">
<span>{{$p.t('profil','fhAusweisStatus',data)}}</span>
<span >{{$p.t('profil','fhAusweisStatus',[data])}}</span>
</div>
</div>`,
}
@@ -1,13 +1,13 @@
export default {
props: {
data: Object,
title: { type: String, default: '' },//this.$p.t('profil','mailverteiler')
title: { type: String },
},
data() {
return {};
},
created(){
console.log("this",this);
},
template: /*html*/`
<div class="card">
@@ -58,7 +58,7 @@ export default {
<div class="card-body">
<div class="gy-3 row justify-content-center align-items-center">
=
<!-- SQUEEZING THE IMAGE INSIDE THE FIRST INFORMATION COLUMN -->
<!-- START OF THE FIRST ROW WITH THE PROFIL IMAGE -->
<div class="col-12 col-sm-6 mb-2">
@@ -94,7 +94,7 @@ export default {
},
template: /*html*/`
<p style="opacity:0.8" class="ms-2" v-if="withFiles && !updateID">{{$p.t('profilUpdate','profilUpdateInformationMessage',data.titel)}}</p>
<p style="opacity:0.8" class="ms-2" v-if="withFiles && !updateID">{{$p.t('profilUpdate','profilUpdateInformationMessage',[data.titel])}}</p>
<div class="form-underline">
<div class="form-underline-titel">{{data.titel?data.titel:$p.t('global','titel')}}</div>
+2 -2
View File
@@ -24366,13 +24366,13 @@ array(
'phrases' => array(
array(
'sprache' => 'German',
'text' => 'Der FH Ausweis ist am <b>{0}</b> ausgegeben worden.',
'text' => 'Der FH Ausweis ist am {0} ausgegeben worden.',
'description' => '',
'insertvon' => 'system'
),
array(
'sprache' => 'English',
'text' => 'The FH ID card was issued on <b>{0}</b>',
'text' => 'The FH ID card was issued on {0}',
'description' => '',
'insertvon' => 'system'
)