mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-07-15 22:12:16 +00:00
fixing some not working phrasen
This commit is contained in:
@@ -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">
|
||||
|
||||
+1
-1
@@ -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>
|
||||
|
||||
@@ -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'
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user