From 563c0cea5868845d5cfa1a5fdd6cbcce59d85c14 Mon Sep 17 00:00:00 2001 From: Cris Date: Wed, 5 May 2021 15:14:31 +0200 Subject: [PATCH] Fixed wrong column grid / Small GUI adaptations GUI adaptations: . Changed 'Antrag anlegen': button instead of link . Changed success text to: Antrag wurde angelegt Signed-off-by: cris-technikum --- .../lehre/anrechnung/CreateAnrechnung.php | 2 +- .../approveAnrechnungUebersicht.php | 7 +++---- system/phrasesupdate.php | 20 +++++++++++++++++++ 3 files changed, 24 insertions(+), 5 deletions(-) diff --git a/application/controllers/lehre/anrechnung/CreateAnrechnung.php b/application/controllers/lehre/anrechnung/CreateAnrechnung.php index 89e0dba83..e77c0a469 100644 --- a/application/controllers/lehre/anrechnung/CreateAnrechnung.php +++ b/application/controllers/lehre/anrechnung/CreateAnrechnung.php @@ -167,7 +167,7 @@ class CreateAnrechnung extends Auth_Controller } // Success response to AJAX - $this->outputJsonSuccess($this->p->t('global', 'antragWurdeGestellt')); + $this->outputJsonSuccess($this->p->t('global', 'antragWurdeAngelegt')); } diff --git a/application/views/lehre/anrechnung/approveAnrechnungUebersicht.php b/application/views/lehre/anrechnung/approveAnrechnungUebersicht.php index 0b979ea7e..e906c1015 100644 --- a/application/views/lehre/anrechnung/approveAnrechnungUebersicht.php +++ b/application/views/lehre/anrechnung/approveAnrechnungUebersicht.php @@ -192,7 +192,7 @@ $this->load->view(
-
+ diff --git a/system/phrasesupdate.php b/system/phrasesupdate.php index df7ae53f7..3a4b3e276 100644 --- a/system/phrasesupdate.php +++ b/system/phrasesupdate.php @@ -11051,6 +11051,26 @@ Any unusual occurrences ) ) ), + array( + 'app' => 'core', + 'category' => 'global', + 'phrase' => 'antragWurdeAngelegt', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Antrag wurde angelegt', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'Application was created', + 'description' => '', + 'insertvon' => 'system' + ) + ) + ), array( 'app' => 'core', 'category' => 'anrechnung',