From b8239b084250a8f1ca379df8ca54894b1b91e738 Mon Sep 17 00:00:00 2001 From: SimonGschnell Date: Mon, 3 Mar 2025 14:38:23 +0100 Subject: [PATCH] update(LvInfo Phrasen): adds some phrasen for the LvInfo View for the moodle events --- public/js/components/Cis/Mylv/LvInfo.js | 8 +-- system/phrasesupdate.php | 80 +++++++++++++++++++++++++ 2 files changed, 84 insertions(+), 4 deletions(-) diff --git a/public/js/components/Cis/Mylv/LvInfo.js b/public/js/components/Cis/Mylv/LvInfo.js index b2fc7fe3d..514e34779 100644 --- a/public/js/components/Cis/Mylv/LvInfo.js +++ b/public/js/components/Cis/Mylv/LvInfo.js @@ -79,19 +79,19 @@ export default { {{start_time}} - Action required: + {{$p.t('lvinfo','actionname')}}: {{event?.actionname}} - Overdue: + {{$p.t('lvinfo','overdue')}}: - This event is overdue + {{$p.t('lvinfo','overdueEvent')}} - Link: + {{$p.t('lvinfo','moodleLink')}} diff --git a/system/phrasesupdate.php b/system/phrasesupdate.php index f952262f8..bfae232f4 100644 --- a/system/phrasesupdate.php +++ b/system/phrasesupdate.php @@ -20184,6 +20184,86 @@ array( ) ) ), + array( + 'app' => 'core', + 'category' => 'lvinfo', + 'phrase' => 'actionname', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => "Aktion", + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => "Action", + 'description' => '', + 'insertvon' => 'system' + ) + ) + ), + array( + 'app' => 'core', + 'category' => 'lvinfo', + 'phrase' => 'overdue', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => "überfällig", + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => "overdue", + 'description' => '', + 'insertvon' => 'system' + ) + ) + ), + array( + 'app' => 'core', + 'category' => 'lvinfo', + 'phrase' => 'overdueEvent', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => "Event ist überfällig", + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => "Event is overdue", + 'description' => '', + 'insertvon' => 'system' + ) + ) + ), + array( + 'app' => 'core', + 'category' => 'lvinfo', + 'phrase' => 'moodleLink', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => "Moodle Link", + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => "Moodle link", + 'description' => '', + 'insertvon' => 'system' + ) + ) + ), array( 'app' => 'core', 'category' => 'rauminfo',