Phrases confirmChangeStatus

This commit is contained in:
ma0068
2024-07-29 11:58:42 +02:00
parent fbcd1bd7de
commit e81856afb9
2 changed files with 44 additions and 2 deletions
@@ -604,10 +604,12 @@ export default {
<template #title>{{$p.t('lehre', 'status_edit')}}</template>
<template #default>
<div v-if="prestudentIds.length == 1">
<p>Diese Person wirklich zum {{actionStatusText}} machen?</p>
<p>{{$p.t('lehre', 'modal_StatusactionSingle', { status: actionStatusText })}}</p>
</div>
<div v-else>
<p>Diese {{prestudentIds.length}} Personen wirklich zum {{actionStatusText}} machen?</p>
<p>{{$p.t('lehre', 'modal_StatusactionPlural', { count: prestudentIds.length,
status: actionStatusText
})}}</p>
</div>
</template>
+40
View File
@@ -30006,6 +30006,46 @@ array(
)
)
),
array(
'app' => 'core',
'category' => 'lehre',
'phrase' => 'modal_StatusactionSingle',
'insertvon' => 'system',
'phrases' => array(
array(
'sprache' => 'German',
'text' => 'Den Status dieser Person wirklich auf {status} setzen?',
'description' => '',
'insertvon' => 'system'
),
array(
'sprache' => 'English',
'text' => 'Really set this person\'s status to {status}?',
'description' => '',
'insertvon' => 'system'
)
)
),
array(
'app' => 'core',
'category' => 'lehre',
'phrase' => 'modal_StatusactionPlural',
'insertvon' => 'system',
'phrases' => array(
array(
'sprache' => 'German',
'text' => 'Den Status dieser {count} Personen wirklich auf {status} setzen?',
'description' => '',
'insertvon' => 'system'
),
array(
'sprache' => 'English',
'text' => 'Really set the status of these {count} people to {status}?',
'description' => '',
'insertvon' => 'system'
)
)
),
);