From bf6b6e45634fbb4a26d1f1a75b3de3f7ebc49a52 Mon Sep 17 00:00:00 2001 From: ma0068 Date: Thu, 28 Nov 2024 16:29:13 +0100 Subject: [PATCH] actions insert, update, delete, link Pruefungsprotokoll --- .../api/frontend/v1/stv/Abschlusspruefung.php | 176 +- .../education/Abschlusspruefung_model.php | 15 +- public/js/api/stv/abschlusspruefung.js | 10 +- .../AbschlusspruefungList.js | 170 +- system/phrasesupdate.php | 5966 +++++++++-------- 5 files changed, 3330 insertions(+), 3007 deletions(-) diff --git a/application/controllers/api/frontend/v1/stv/Abschlusspruefung.php b/application/controllers/api/frontend/v1/stv/Abschlusspruefung.php index be9206f16..cdb947c3a 100644 --- a/application/controllers/api/frontend/v1/stv/Abschlusspruefung.php +++ b/application/controllers/api/frontend/v1/stv/Abschlusspruefung.php @@ -11,7 +11,7 @@ class Abschlusspruefung extends FHCAPI_Controller parent::__construct([ 'getAbschlusspruefung' => ['admin:r', 'assistenz:r'], 'loadAbschlusspruefung' => ['admin:r', 'assistenz:r'], - 'addNewAbschlusspruefung' => ['admin:rw', 'assistenz:rw'], + 'insertAbschlusspruefung' => ['admin:rw', 'assistenz:rw'], 'updateAbschlusspruefung' => ['admin:rw', 'assistenz:rw'], 'deleteAbschlusspruefung' => ['admin:rw', 'assistenz:rw'], 'getTypenAbschlusspruefung' => ['admin:rw', 'assistenz:rw'], @@ -58,11 +58,9 @@ class Abschlusspruefung extends FHCAPI_Controller array('abschlusspruefung_id' => $abschlusspruefung_id) ); - if (isError($result)) { - $this->terminateWithError(getError($result), self::ERROR_TYPE_GENERAL); - } + $data = $this->getDataOrTerminateWithError($result); - $this->terminateWithSuccess((getData($result) ?: [])); + $this->terminateWithSuccess(current($data)); } public function getTypenAbschlusspruefung() @@ -166,4 +164,172 @@ class Abschlusspruefung extends FHCAPI_Controller return $this->terminateWithSuccess(getData($result) ?: []); } + public function insertAbschlusspruefung() + { + $this->load->library('form_validation'); + + $student_uid = $this->input->post('uid'); + + if(!$student_uid) + { + return $this->terminateWithError($this->p->t('ui', 'error_missingId', ['id'=> 'Student UID']), self::ERROR_TYPE_GENERAL); + } + + $formData = $this->input->post('formData'); + $_POST['pruefungstyp_kurzbz'] = $formData['pruefungstyp_kurzbz']; + $_POST['akadgrad_id']= $formData['akadgrad_id']; + $_POST['vorsitz']= $formData['vorsitz']; + $_POST['pruefungsantritt_kurzbz'] = $formData['pruefungsantritt_kurzbz']; + $_POST['abschlussbeurteilung_kurzbz'] = $formData['abschlussbeurteilung_kurzbz']; + $_POST['datum']= $formData['datum']; + $_POST['sponsion']= $formData['sponsion']; + $_POST['pruefer1'] = $formData['pruefer1']; + $_POST['pruefer2']= $formData['pruefer2']; + $_POST['pruefer3']= $formData['pruefer3']; + $_POST['anmerkung'] = $formData['anmerkung']; + $_POST['protokoll']= $formData['protokoll']; + $_POST['note'] = $formData['note']; + + $this->form_validation->set_rules('pruefungstyp_kurzbz', 'Typ', 'required', [ + 'required' => $this->p->t('ui', 'error_fieldRequired', ['field' => 'Typ']) + ]); + + $this->form_validation->set_rules('datum', 'Datum', 'is_valid_date', [ + 'is_valid_date' => $this->p->t('ui', 'error_notValidDate', ['field' => 'Datum']) + ]); + + //TODO(Manu) just for testing, not really required + $this->form_validation->set_rules('sponsion', 'Sponsion', 'required|is_valid_date', [ + 'required' => $this->p->t('ui', 'error_fieldRequired', ['field' => 'Sponsion']), + 'is_valid_date' => $this->p->t('ui', 'error_notValidDate', ['field' => 'Sponsion']) + ]); + +/* $this->form_validation->set_rules('sponsion', 'Sponsion', 'is_valid_date', [ + 'is_valid_date' => $this->p->t('ui', 'error_notValidDate', ['field' => 'Sponsion']) + ]);*/ + + + if ($this->form_validation->run() == false) + { + $this->terminateWithValidationErrors($this->form_validation->error_array()); + } + + $result = $this->AbschlusspruefungModel->insert([ + 'student_uid' => $student_uid, + 'pruefungstyp_kurzbz' => $this->input->post('pruefungstyp_kurzbz'), + 'akadgrad_id' => $this->input->post('akadgrad_id'), + 'vorsitz' => $this->input->post('vorsitz'), + 'pruefungsantritt_kurzbz' => $this->input->post('pruefungsantritt_kurzbz'), + 'abschlussbeurteilung_kurzbz' => $this->input->post('abschlussbeurteilung_kurzbz'), + 'datum' => $this->input->post('datum'), + 'sponsion' => $this->input->post('sponsion'), + 'pruefer1' => $this->input->post('pruefer1'), + 'pruefer2' => $this->input->post('pruefer2'), + 'pruefer3' => $this->input->post('pruefer3'), + 'protokoll' => $this->input->post('protokoll'), + 'note' => $this->input->post('note'), + 'anmerkung' => $this->input->post('anmerkung'), + 'insertamum' => date('c'), + 'insertvon' => getAuthUID() + ]); + + $data = $this->getDataOrTerminateWithError($result); + + $this->terminateWithSuccess($data); + } + + public function updateAbschlusspruefung() + { + $this->load->library('form_validation'); + + $abschlusspruefung_id = $this->input->post('id'); + + if(!$abschlusspruefung_id) + { + return $this->terminateWithError($this->p->t('ui', 'error_missingId', ['id'=> 'Abschlussprüfung ID']), self::ERROR_TYPE_GENERAL); + } + + $formData = $this->input->post('formData'); + $_POST['student_uid'] = $formData['student_uid']; + $_POST['pruefungstyp_kurzbz'] = $formData['pruefungstyp_kurzbz']; + $_POST['akadgrad_id']= $formData['akadgrad_id']; + $_POST['vorsitz']= $formData['vorsitz']; + $_POST['pruefungsantritt_kurzbz'] = $formData['pruefungsantritt_kurzbz']; + $_POST['abschlussbeurteilung_kurzbz'] = $formData['abschlussbeurteilung_kurzbz']; + $_POST['datum']= $formData['datum']; + $_POST['sponsion']= $formData['sponsion']; + $_POST['pruefer1'] = $formData['pruefer1']; + $_POST['pruefer2']= $formData['pruefer2']; + $_POST['pruefer3']= $formData['pruefer3']; + $_POST['anmerkung'] = $formData['anmerkung']; + $_POST['protokoll']= $formData['protokoll']; + $_POST['note'] = $formData['note']; + + $this->form_validation->set_rules('pruefungstyp_kurzbz', 'Typ', 'required', [ + 'required' => $this->p->t('ui', 'error_fieldRequired', ['field' => 'Typ']) + ]); + + $this->form_validation->set_rules('datum', 'Datum', 'is_valid_date', [ + 'is_valid_date' => $this->p->t('ui', 'error_notValidDate', ['field' => 'Datum']) + ]); + + //TODO(Manu) just for testing, not really required + $this->form_validation->set_rules('sponsion', 'Sponsion', 'required|is_valid_date', [ + 'required' => $this->p->t('ui', 'error_fieldRequired', ['field' => 'Sponsion']), + 'is_valid_date' => $this->p->t('ui', 'error_notValidDate', ['field' => 'Sponsion']) + ]); + + + if ($this->form_validation->run() == false) + { + $this->terminateWithValidationErrors($this->form_validation->error_array()); + } + + $result = $this->AbschlusspruefungModel->update( + [ + 'abschlusspruefung_id' => $abschlusspruefung_id + ], + [ + 'student_uid' => $this->input->post('student_uid'), + 'pruefungstyp_kurzbz' => $this->input->post('pruefungstyp_kurzbz'), + 'akadgrad_id' => $this->input->post('akadgrad_id'), + 'vorsitz' => $this->input->post('vorsitz'), + 'pruefungsantritt_kurzbz' => $this->input->post('pruefungsantritt_kurzbz'), + 'abschlussbeurteilung_kurzbz' => $this->input->post('abschlussbeurteilung_kurzbz'), + 'datum' => $this->input->post('datum'), + 'sponsion' => $this->input->post('sponsion'), + 'pruefer1' => $this->input->post('pruefer1'), + 'pruefer2' => $this->input->post('pruefer2'), + 'pruefer3' => $this->input->post('pruefer3'), + 'protokoll' => $this->input->post('protokoll'), + 'note' => $this->input->post('note'), + 'anmerkung' => $this->input->post('anmerkung'), + 'insertamum' => date('c'), + 'insertvon' => getAuthUID() + ] + ); + + $data = $this->getDataOrTerminateWithError($result); + + $this->terminateWithSuccess($data); + } + + public function deleteAbschlusspruefung() + { + $abschlusspruefung_id = $this->input->post('id'); + + $result = $this->AbschlusspruefungModel->delete( + array('abschlusspruefung_id' => $abschlusspruefung_id) + ); + + if (isError($result)) + { + return $this->terminateWithError($result, self::ERROR_TYPE_GENERAL); + } + if (!hasData($result)) + { + $this->outputJson($result); + } + return $this->terminateWithSuccess(current(getData($result)) ? : null); + } } diff --git a/application/models/education/Abschlusspruefung_model.php b/application/models/education/Abschlusspruefung_model.php index d783e5a34..2a547a3fe 100644 --- a/application/models/education/Abschlusspruefung_model.php +++ b/application/models/education/Abschlusspruefung_model.php @@ -151,23 +151,22 @@ class Abschlusspruefung_model extends DB_Model person_pruefer2.nachname as p2_nachname, person_pruefer3.nachname as p3_nachname, person_vorsitzender.nachname as vorsitz_nachname, - beurteilung.bezeichnung as beurteilung_bezeichnung + beurteilung.bezeichnung as beurteilung_bezeichnung, + antritt.bezeichnung as antritt_bezeichnung FROM lehre.tbl_abschlusspruefung exam JOIN lehre.tbl_pruefungstyp USING (pruefungstyp_kurzbz) - JOIN public.tbl_benutzer ben_vorsitzender ON (ben_vorsitzender.uid = vorsitz) - JOIN public.tbl_person person_vorsitzender ON (ben_vorsitzender.person_id = person_vorsitzender.person_id) - JOIN public.tbl_person person_pruefer1 ON (person_pruefer1.person_id = pruefer1) + LEFT JOIN public.tbl_benutzer ben_vorsitzender ON (ben_vorsitzender.uid = vorsitz) + LEFT JOIN public.tbl_person person_vorsitzender ON (ben_vorsitzender.person_id = person_vorsitzender.person_id) + LEFT JOIN public.tbl_person person_pruefer1 ON (person_pruefer1.person_id = pruefer1) LEFT JOIN public.tbl_person person_pruefer2 ON (person_pruefer2.person_id = pruefer2) LEFT JOIN public.tbl_person person_pruefer3 ON (person_pruefer3.person_id = pruefer3) - JOIN lehre.tbl_abschlussbeurteilung beurteilung USING (abschlussbeurteilung_kurzbz) + LEFT JOIN lehre.tbl_abschlussbeurteilung beurteilung USING (abschlussbeurteilung_kurzbz) + LEFT JOIN lehre.tbl_abschlusspruefung_antritt antritt USING (pruefungsantritt_kurzbz) WHERE student_uid = ? ORDER BY datum DESC "; return $this->execQuery($qry, array('student_uid' => $student_uid)); - - } - } diff --git a/public/js/api/stv/abschlusspruefung.js b/public/js/api/stv/abschlusspruefung.js index dfba86bf1..56ce6b4fd 100644 --- a/public/js/api/stv/abschlusspruefung.js +++ b/public/js/api/stv/abschlusspruefung.js @@ -3,17 +3,15 @@ export default { getAbschlusspruefung (url, config, params){ return this.$fhcApi.get('api/frontend/v1/stv/abschlusspruefung/getAbschlusspruefung/' + params.id); }, - addNewAbschlusspruefung(id, data) { - return this.$fhcApi.post('api/frontend/v1/stv/abschlusspruefung/addNewAbschlusspruefung/' + id, - data + addNewAbschlusspruefung(data) { + return this.$fhcApi.post('api/frontend/v1/stv/abschlusspruefung/insertAbschlusspruefung/', data ); }, loadAbschlusspruefung(id){ return this.$fhcApi.post('api/frontend/v1/stv/abschlusspruefung/loadAbschlusspruefung/', {id}); }, - updateAbschlusspruefung(id, data) { - return this.$fhcApi.post('api/frontend/v1/stv/abschlusspruefung/updateAbschlusspruefung/' + id, - data + updateAbschlusspruefung(data) { + return this.$fhcApi.post('api/frontend/v1/stv/abschlusspruefung/updateAbschlusspruefung/', data ); }, deleteAbschlusspruefung(id){ diff --git a/public/js/components/Stv/Studentenverwaltung/Details/Abschlusspruefung/AbschlusspruefungList.js b/public/js/components/Stv/Studentenverwaltung/Details/Abschlusspruefung/AbschlusspruefungList.js index 750aaaa6c..07e13eba2 100644 --- a/public/js/components/Stv/Studentenverwaltung/Details/Abschlusspruefung/AbschlusspruefungList.js +++ b/public/js/components/Stv/Studentenverwaltung/Details/Abschlusspruefung/AbschlusspruefungList.js @@ -13,6 +13,11 @@ export default { FormInput, PvAutoComplete }, + inject: { + cisRoot: { + from: 'cisRoot' + }, + }, props: { student: Object }, @@ -36,7 +41,7 @@ export default { {title: "datum", field: "format_datum"}, {title: "uhrzeit", field: "uhrzeit"}, {title: "freigabe", field: "format_freigabedatum"}, - {title: "pruefungsantritt", field: "pruefungsantritt_kurzbz"}, + {title: "pruefungsantritt", field: "antritt_bezeichnung"}, {title: "sponsion", field: "format_sponsion"}, {title: "anmerkung", field: "anmerkung"}, {title: "abschlusspruefung_id", field: "abschlusspruefung_id", visible: false}, @@ -132,7 +137,19 @@ export default { formData: { typStg: null, pruefungstyp_kurzbz: null, - akadgrad_id: null + akadgrad_id: null, + vorsitz: null, + pruefungsantritt_kurzbz: null, + abschlussbeurteilung_kurzbz: null, + datum: null, + sponsion: null, + pruefer1: null, + pruefer2: null, + pruefer3: null, + anmerkung: null, + protokoll: null, + note: null, + link: null }, statusNew: true, arrTypen: [], @@ -145,22 +162,19 @@ export default { abortController: { mitarbeiter: null, pruefer: null - } + }, } }, methods: { actionNewAbschlusspruefung() { this.resetForm(); - this.statusNew = false; + this.statusNew = true; + this.setDefaultFormData(); }, actionEditAbschlusspruefung(abschlusspruefung_id) { + this.resetForm(); this.statusNew = false; - console.log("action edit: ", abschlusspruefung_id); - this.loadAbschlusspruefung(abschlusspruefung_id).then(() => { - if (this.formData.abschlusspruefung_id){ - console.log("activate form?"); - } - }); + this.loadAbschlusspruefung(abschlusspruefung_id); }, actionDeleteAbschlusspruefung(abschlusspruefung_id) { this.$fhcAlert @@ -171,15 +185,19 @@ export default { .then(this.deleteAbschlusspruefung) .catch(this.$fhcAlert.handleSystemError); }, - addNewAbschlusspruefung(formData) { - this.formData.plz = this.formData.address.plz; - return this.$refs.formData.factory.stv.abschlusspruefung.addNewAbschlusspruefung(this.uid, this.formData) + addNewAbschlusspruefung(){ + const dataToSend = { + uid: this.student.uid, + formData: this.formData + }; + + return this.$refs.formFinalExam.factory.stv.abschlusspruefung.addNewAbschlusspruefung(dataToSend) .then(response => { this.$fhcAlert.alertSuccess(this.$p.t('ui', 'successSave')); this.resetForm(); - }).catch(this.$fhcAlert.handleSystemError) + }) + .catch(this.$fhcAlert.handleSystemError) .finally(() => { - //window.scrollTo(0, 0); this.reload(); }); }, @@ -187,25 +205,26 @@ export default { this.$refs.table.reloadTable(); }, loadAbschlusspruefung(abschlusspruefung_id) { - this.statusNew = false; return this.$fhcApi.factory.stv.abschlusspruefung.loadAbschlusspruefung(abschlusspruefung_id) .then(result => { this.formData = result.data; + this.formData.link = this.cisRoot + 'index.ci.php/lehre/Pruefungsprotokoll/showProtokoll?abschlusspruefung_id='+this.formData.abschlusspruefung_id+'&fhc_controller_id=67481e5ed5490'; return result; }) .catch(this.$fhcAlert.handleSystemError); }, updateAbschlusspruefung(abschlusspruefung_id) { - this.formData.plz = this.formData.address.plz; - return this.$refs.formData.factory.stv.abschlusspruefung.updateAbschlusspruefung(abschlusspruefung_id, - this.formData - ).then(response => { - this.$fhcAlert.alertSuccess(this.$p.t('ui', 'successSave')); - this.hideModal('adressModal'); - this.resetForm(); - }).catch(this.$fhcAlert.handleSystemError) + const dataToSend = { + id: abschlusspruefung_id, + formData: this.formData + }; + return this.$refs.formFinalExam.factory.stv.abschlusspruefung.updateAbschlusspruefung(dataToSend) + .then(response => { + this.$fhcAlert.alertSuccess(this.$p.t('ui', 'successSave')); + this.resetForm(); + }) + .catch(this.$fhcAlert.handleSystemError) .finally(() => { - //window.scrollTo(0, 0); this.reload(); }); }, @@ -213,15 +232,26 @@ export default { return this.$fhcApi.factory.stv.abschlusspruefung.deleteAbschlusspruefung(abschlusspruefung_id) .then(response => { this.$fhcAlert.alertSuccess(this.$p.t('ui', 'successDelete')); - }).catch(this.$fhcAlert.handleSystemError) + }) + .catch(this.$fhcAlert.handleSystemError) .finally(()=> { - window.scrollTo(0, 0); this.reload(); }); }, resetForm() { - this.formData = {}; - this.statusNew = true; + this.formData.pruefungstyp_kurzbz = null; + this.formData.akadgrad_id = null; + this.formData.vorsitz = null; + this.formData.pruefungsantritt_kurzbz = null; + this.formData.abschlussbeurteilung_kurzbz = null; + this.formData.datum = null; //oder new Date(); + this.formData.sponsion = null; + this.formData.pruefer1 = null; + this.formData.pruefer2 = null; + this.formData.pruefer3 = null; + this.formData.anmerkung = null; + this.formData.protokoll = null; + this.formData.note = null; }, search(event) { if (this.abortController.mitarbeiter) { @@ -229,7 +259,7 @@ export default { } this.abortController.mitarbeiter = new AbortController(); - return this.$refs.formData.factory.stv.abschlusspruefung.getMitarbeiter(event.query) + return this.$refs.formFinalExam.factory.stv.abschlusspruefung.getMitarbeiter(event.query) .then(result => { this.filteredMitarbeiter = result.data.retval; }); @@ -240,34 +270,33 @@ export default { } this.abortController.pruefer = new AbortController(); - return this.$refs.formData.factory.stv.abschlusspruefung.getPruefer(event.query) + return this.$refs.formFinalExam.factory.stv.abschlusspruefung.getPruefer(event.query) .then(result => { this.filteredPruefer = result.data.retval; }); }, setDefaultFormData(){ - //TODO(Manu) check why phrasen not working + this.resetForm(); + + //TODO(Manu) check why phrasen abschlusspruefung not working //check lg: if no prüfungsnotizen if (this.formData.typStg === 'b') { this.formData.pruefungstyp_kurzbz = 'Bachelor'; this.formData.protokoll = this.$p.t('abschlusspruefung', 'pruefungsnotizenBachelor'); - this.formData.protokoll = this.$p.t('ui', 'pruefungsnotizenMaster'); + this.formData.protokoll = this.$p.t('ui', 'pruefungsnotizenBachelor2'); } if (this.formData.typStg === 'd'){ this.formData.pruefungstyp_kurzbz = 'Diplom'; - this.formData.protokoll = this.$p.t('abschlusspruefung', 'pruefungsnotizenBachelor'); + this.formData.protokoll = this.$p.t('abschlusspruefung', 'pruefungsnotizenMaster'); } if (this.formData.typStg === 'lg') { this.formData.pruefungstyp_kurzbz = 'lgabschluss'; } - // else - // console.log("no Typ??"); if (!this.formData.akadgrad_id && this.arrAkadGrad.length > 0) { - console.log("in here"); this.formData.akadgrad_id = this.arrAkadGrad[0].akadgrad_id; } } @@ -308,10 +337,6 @@ export default { template: `

{{this.$p.t('stv','tab_finalexam')}}

- - + {{this.$p.t('global','details')}} +

[neu]

+ - + --> +
@@ -453,7 +507,7 @@ export default { {{grad.titel}} - + --> +
@@ -513,8 +575,22 @@ export default { > + +
+
+

Zur Beurteilung

+
+ +
-
+
diff --git a/system/phrasesupdate.php b/system/phrasesupdate.php index 2b0068d0f..9451ddc00 100644 --- a/system/phrasesupdate.php +++ b/system/phrasesupdate.php @@ -1715,26 +1715,26 @@ $phrases = array( ) ) ), - array( - 'app' => 'core', - 'category' => 'ui', - 'phrase' => 'geloescht', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Gelöscht', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'Deleted', - 'description' => '', - 'insertvon' => 'system' - ) - ) - ), + array( + 'app' => 'core', + 'category' => 'ui', + 'phrase' => 'geloescht', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Gelöscht', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'Deleted', + 'description' => '', + 'insertvon' => 'system' + ) + ) + ), array( 'app' => 'core', 'category' => 'ui', @@ -1776,25 +1776,25 @@ $phrases = array( ) ), array( - 'app' => 'core', - 'category' => 'anrechnung', - 'phrase' => 'benotungDerLV', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => ' Lehrveranstaltung bereits benotet', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'Course already graded', - 'description' => '', - 'insertvon' => 'system' + 'app' => 'core', + 'category' => 'anrechnung', + 'phrase' => 'benotungDerLV', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => ' Lehrveranstaltung bereits benotet', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'Course already graded', + 'description' => '', + 'insertvon' => 'system' + ) ) - ) -), + ), //*************************** CORE/filter array( @@ -1943,25 +1943,25 @@ $phrases = array( ) ), array( - 'app' => 'core', - 'category' => 'person', - 'phrase' => 'vorname', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Vorname', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'first name', - 'description' => '', - 'insertvon' => 'system' - ) + 'app' => 'core', + 'category' => 'person', + 'phrase' => 'vorname', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Vorname', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'first name', + 'description' => '', + 'insertvon' => 'system' ) - ), + ) + ), array( 'app' => 'core', 'category' => 'person', @@ -4635,26 +4635,26 @@ When on hold, the date is only a reminder.', ) ) ), - array( - 'app' => 'infocenter', - 'category' => 'infocenter', - 'phrase' => 'rtErgebnisExistiert', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Es existiert bereits ein RT-Ergebnis', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'Placement test result already exists', - 'description' => '', - 'insertvon' => 'system' - ) - ) - ), + array( + 'app' => 'infocenter', + 'category' => 'infocenter', + 'phrase' => 'rtErgebnisExistiert', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Es existiert bereits ein RT-Ergebnis', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'Placement test result already exists', + 'description' => '', + 'insertvon' => 'system' + ) + ) + ), array( 'app' => 'infocenter', 'category' => 'infocenter', @@ -5144,7 +5144,7 @@ The invoice will be sent to you again. The amount is only to be trans -Unterbrechung vor dem 15.10. bzw. 15.3.: Studienbeitrag wird rückerstattet -Unterbrechung nach dem 15.10. bzw. 15.3.: Studienbeitrag wird nicht rückerstattet -in den Folgesemestern der Unterbrechung sind keine Studienbeiträge zu zahlen; der ÖHBeitrag ist jedoch in jedem Semester der Unterbrechung zu zahlen', - 'description' => '', + 'description' => '', 'insertvon' => 'system' ), array( @@ -6401,6 +6401,26 @@ The invoice will be sent to you again. The amount is only to be trans ) ) ), + array( + 'app' => 'core', + 'category' => 'ui', + 'phrase' => 'neuUndGeaenderteAnzeigen', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Neue und geänderte anzeigen', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'Show new and changed', + 'description' => '', + 'insertvon' => 'system' + ) + ) + ), array( 'app' => 'core', 'category' => 'ui', @@ -10067,13 +10087,13 @@ Any unusual occurrences 'phrases' => array( array( 'sprache' => 'German', - 'text' => 'Der Plagiatscheck wurde durchgeführt und bestätigt, dass der zentrale Inhalt der Arbeit im erforderlichen Ausmaß eigenständig verfasst wurde (vgl. Satzungsteil Studienrechtliche Bestimmungen / Prüfungsordnung, § 20 Abs. 2 und 3).', + 'text' => 'Der Plagiatscheck wurde durchgeführt und bestätigt, dass der zentrale Inhalt der Arbeit im erforderlichen Ausmaß eigenständig verfasst wurde (vgl. Satzungsteil Studienrechtliche Bestimmungen / Prüfungsordnung, § 18 Abs. 2 und 3).', 'description' => '', 'insertvon' => 'system' ), array( 'sprache' => 'English', - 'text' => 'The plagiarism check has been carried out and confirms that the central content of the thesis has been written independently to the required extent (cf. part of the Statutes on Studies Act Provisions / Examination Regulations, § 20 Para. 2 and 3).', + 'text' => 'The plagiarism check has been carried out and confirms that the central content of the thesis has been written independently to the required extent (cf. part of the Statutes on Studies Act Provisions / Examination Regulations, § 18 Para. 2 and 3).', 'description' => '', 'insertvon' => 'system' ) @@ -12057,26 +12077,26 @@ Any unusual occurrences ) ) ), - array( - 'app' => 'core', - 'category' => 'anrechnung', - 'phrase' => 'antragStellenWegenHochschulzeugnis', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'eines Hochschulzeugnisses (vgl. § 4 Abs. 8 Satzung „Studienrechtliche Bestimmungen / Prüfungsordnung)', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'a university certificate (see § 4 para. 8, Statute on Studies Act Provisions / Examination Regulations of the UASTW)', - 'description' => '', - 'insertvon' => 'system' - ) - ) - ), + array( + 'app' => 'core', + 'category' => 'anrechnung', + 'phrase' => 'antragStellenWegenHochschulzeugnis', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'eines Hochschulzeugnisses (vgl. § 4 Abs. 8 Satzung „Studienrechtliche Bestimmungen / Prüfungsordnung)', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'a university certificate (see § 4 para. 8, Statute on Studies Act Provisions / Examination Regulations of the UASTW)', + 'description' => '', + 'insertvon' => 'system' + ) + ) + ), array( 'app' => 'core', 'category' => 'anrechnung', @@ -12097,146 +12117,146 @@ Any unusual occurrences ) ) ), - array( - 'app' => 'core', - 'category' => 'anrechnung', - 'phrase' => 'bisherAngerechneteEcts', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Bisher angerechnete ECTS', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'All previous recognized ECTS', - 'description' => '', - 'insertvon' => 'system' - ) - ) - ), - array( - 'app' => 'core', - 'category' => 'anrechnung', - 'phrase' => 'anrechnungEctsTooltipText', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Anzeige der Summe der bisher angerechneten ECTS. Für Quereinsteiger in ein höheres Semester werden die ECTS der angerechneten Semester berücksichtigt.

Seit Oktober 2021 gelten Höchstgrenzen für Anrechnungen:
max. 60 ECTS für schulische Zeugnisse (anrechenbar sind nur BHS- und AHS-Zeugnisse!)
max. 60 ECTS für berufliche Qualifikationen
max. 90 ECTS INSGESAMT für schulische und berufliche Qualifikationen', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'Sum of previous recognized ECTS. Lateral Entries are considered with ECTS of the recognized semester.

Maximum ECTS limits are applied since Octobre 2021:

max. 60 ECTS school qualification (BHS and AHS only)
max. 60 ECTS professional qualification
max. 90 ECTS OVERALL for school and professional qualification', - 'description' => '', - 'insertvon' => 'system' - ) - ) - ), - array( - 'app' => 'core', - 'category' => 'anrechnung', - 'phrase' => 'anrechnungEctsTooltipTextBeiUeberschreitung', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Seit Oktober 2021 gelten Höchstgrenzen für Anrechnungen:
max. 60 ECTS für schulische Zeugnisse (anrechenbar sind nur BHS- und AHS-Zeugnisse!)
max. 60 ECTS für berufliche Qualifikationen
max. 90 ECTS INSGESAMT für schulische Zeugnisse und berufliche Qualifikationen', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'Maximum ECTS limits are applied since Octobre 2021:
max. 60 ECTS school qualification (BHS and AHS only)
max. 60 ECTS professional qualification
max. 90 ECTS OVERALL for school and professional qualification', - 'description' => '', - 'insertvon' => 'system' - ) - ) - ), - array( - 'app' => 'core', - 'category' => 'anrechnung', - 'phrase' => 'anrechnungEctsTextBeiUeberschreitung', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => '
Die Höchstgrenze für Anrechnungen gem. § 12 Abs. 3 Fachhochschulgesetz wird überschritten.
Bisherige ECTS + ECTS dieser LV: Total: {0} [ Schulisch: {1} | Beruflich: {2} ] ', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => '
Exceedance of maximum limit for exemption (see § 12 para. 3, Regulations of the UASTW).
Former ECTS + ECTS of this course: Total: {0} [ School qualification: {1} | Professional qualification: {2} ] ', - 'description' => '', - 'insertvon' => 'system' - ) - ) - ), - array( - 'app' => 'core', - 'category' => 'anrechnung', - 'phrase' => 'textUebernehmenOderEigenenBegruendungstext', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Begründungstext aus Liste übernehmen oder eigene Begründung angeben', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'Copy reason from list above or write your own reason', - 'description' => '', - 'insertvon' => 'system' - ) - ) - ), - array( - 'app' => 'core', - 'category' => 'anrechnung', - 'phrase' => 'begruendungEcts', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Erläutern Sie die Gleichwertigkeit der ECTS', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'Explain ECTS equivalencies', - 'description' => '', - 'insertvon' => 'system' - ) - ) - ), - array( - 'app' => 'core', - 'category' => 'anrechnung', - 'phrase' => 'begruendungLvinhalt', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Erläutern Sie die Gleichwertigkeit der Lehrveranstaltungsinhalte', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'Explain the equivalence of course content', - 'description' => '', - 'insertvon' => 'system' - ) - ) - ), + array( + 'app' => 'core', + 'category' => 'anrechnung', + 'phrase' => 'bisherAngerechneteEcts', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Bisher angerechnete ECTS', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'All previous recognized ECTS', + 'description' => '', + 'insertvon' => 'system' + ) + ) + ), + array( + 'app' => 'core', + 'category' => 'anrechnung', + 'phrase' => 'anrechnungEctsTooltipText', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Anzeige der Summe der bisher angerechneten ECTS. Für Quereinsteiger in ein höheres Semester werden die ECTS der angerechneten Semester berücksichtigt.

Seit Oktober 2021 gelten Höchstgrenzen für Anrechnungen:
max. 60 ECTS für schulische Zeugnisse (anrechenbar sind nur BHS- und AHS-Zeugnisse!)
max. 60 ECTS für berufliche Qualifikationen
max. 90 ECTS INSGESAMT für schulische und berufliche Qualifikationen', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'Sum of previous recognized ECTS. Lateral Entries are considered with ECTS of the recognized semester.

Maximum ECTS limits are applied since Octobre 2021:

max. 60 ECTS school qualification (BHS and AHS only)
max. 60 ECTS professional qualification
max. 90 ECTS OVERALL for school and professional qualification', + 'description' => '', + 'insertvon' => 'system' + ) + ) + ), + array( + 'app' => 'core', + 'category' => 'anrechnung', + 'phrase' => 'anrechnungEctsTooltipTextBeiUeberschreitung', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Seit Oktober 2021 gelten Höchstgrenzen für Anrechnungen:
max. 60 ECTS für schulische Zeugnisse (anrechenbar sind nur BHS- und AHS-Zeugnisse!)
max. 60 ECTS für berufliche Qualifikationen
max. 90 ECTS INSGESAMT für schulische Zeugnisse und berufliche Qualifikationen', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'Maximum ECTS limits are applied since Octobre 2021:
max. 60 ECTS school qualification (BHS and AHS only)
max. 60 ECTS professional qualification
max. 90 ECTS OVERALL for school and professional qualification', + 'description' => '', + 'insertvon' => 'system' + ) + ) + ), + array( + 'app' => 'core', + 'category' => 'anrechnung', + 'phrase' => 'anrechnungEctsTextBeiUeberschreitung', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Die Höchstgrenze für Anrechnungen gem. § 12 Abs. 3 Fachhochschulgesetz wird überschritten.Bisherige ECTS + ECTS dieser LV: Total: {0} [ Schulisch: {1} | Beruflich: {2} ]', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => '
Exceedance of maximum limit for exemption (see § 12 para. 3, Regulations of the UASTW).
Former ECTS + ECTS of this course: Total: {0} [ School qualification: {1} | Professional qualification: {2} ] ', + 'description' => '', + 'insertvon' => 'system' + ) + ) + ), + array( + 'app' => 'core', + 'category' => 'anrechnung', + 'phrase' => 'textUebernehmenOderEigenenBegruendungstext', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Begründungstext aus Liste übernehmen oder eigene Begründung angeben', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'Copy reason from list above or write your own reason', + 'description' => '', + 'insertvon' => 'system' + ) + ) + ), + array( + 'app' => 'core', + 'category' => 'anrechnung', + 'phrase' => 'begruendungEcts', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Erläutern Sie die Gleichwertigkeit der ECTS', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'Explain ECTS equivalencies', + 'description' => '', + 'insertvon' => 'system' + ) + ) + ), + array( + 'app' => 'core', + 'category' => 'anrechnung', + 'phrase' => 'begruendungLvinhalt', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Erläutern Sie die Gleichwertigkeit der Lehrveranstaltungsinhalte', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'Explain the equivalence of course content', + 'description' => '', + 'insertvon' => 'system' + ) + ) + ), array( 'app' => 'core', 'category' => 'anrechnung', @@ -13029,86 +13049,86 @@ Any unusual occurrences ) ) ), - array( - 'app' => 'core', - 'category' => 'anrechnung', - 'phrase' => 'empfehlungNegativKenntnisseNichtGleichwertigWeil', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Die anzurechnenden Kenntnisse sind umfangmäßig und/oder inhaltlich nicht gleichwertig, weil...[Erläuterung: Bitte Begründung ergänzen.]', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'The equivalence in terms of learning objectives and the length of the course can not be determined because of...[Explanation: Please add reason.]', - 'description' => '', - 'insertvon' => 'system' - ) - ) - ), - array( - 'app' => 'core', - 'category' => 'anrechnung', - 'phrase' => 'empfehlungNegativKenntnisseNichtGleichwertigWeilHinweis', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Die anzurechnenden Kenntnisse sind umfangmäßig und/oder inhaltlich nicht gleichwertig, weil... Bei einer Ablehnung ist eine individuelle Begründung erforderlich. Dies kann nur über die Detailseite erfolgen.', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'The equivalence in terms of learning objectives and the length of the course can not be determined because of... If the application is rejected, an individual reason is required. This can only be done from the detail page.', - 'description' => '', - 'insertvon' => 'system' - ) - ) - ), - array( - 'app' => 'core', - 'category' => 'anrechnung', - 'phrase' => 'genehmigungNegativKenntnisseNichtGleichwertigWeil', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Die anzurechnenden Kenntnisse sind umfangmäßig und/oder inhaltlich nicht gleichwertig, weil...[Erläuterung: Bitte ergänzen oder Empfehlungstext des Lektors übernehmen und ggf. redigieren.]', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'The equivalence in terms of learning objectives and the length of the course can not be determined because of...[Explanation: Please complete or adopt the text of the lectors recommendation and edit it if necessary]', - 'description' => '', - 'insertvon' => 'system' - ) - ) - ), - array( - 'app' => 'core', - 'category' => 'anrechnung', - 'phrase' => 'genehmigungNegativKenntnisseNichtGleichwertigWeilHinweis', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Die anzurechnenden Kenntnisse sind umfangmäßig und/oder inhaltlich nicht gleichwertig, weil... Bei einer Ablehnung ist eine individuelle Begründung erforderlich. Dies kann nur über die Detailseite erfolgen.', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'The equivalence in terms of learning objectives and the length of the course can not be determined because of... If the application is rejected, an individual reason is required. This can only be done from the detail page.', - 'description' => '', - 'insertvon' => 'system' - ) - ) - ), + array( + 'app' => 'core', + 'category' => 'anrechnung', + 'phrase' => 'empfehlungNegativKenntnisseNichtGleichwertigWeil', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Die anzurechnenden Kenntnisse sind umfangmäßig und/oder inhaltlich nicht gleichwertig, weil...[Erläuterung: Bitte Begründung ergänzen.]', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'The equivalence in terms of learning objectives and the length of the course can not be determined because of...[Explanation: Please add reason.]', + 'description' => '', + 'insertvon' => 'system' + ) + ) + ), + array( + 'app' => 'core', + 'category' => 'anrechnung', + 'phrase' => 'empfehlungNegativKenntnisseNichtGleichwertigWeilHinweis', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Die anzurechnenden Kenntnisse sind umfangmäßig und/oder inhaltlich nicht gleichwertig, weil... Bei einer Ablehnung ist eine individuelle Begründung erforderlich. Dies kann nur über die Detailseite erfolgen.', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'The equivalence in terms of learning objectives and the length of the course can not be determined because of... If the application is rejected, an individual reason is required. This can only be done from the detail page.', + 'description' => '', + 'insertvon' => 'system' + ) + ) + ), + array( + 'app' => 'core', + 'category' => 'anrechnung', + 'phrase' => 'genehmigungNegativKenntnisseNichtGleichwertigWeil', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Die anzurechnenden Kenntnisse sind umfangmäßig und/oder inhaltlich nicht gleichwertig, weil...[Erläuterung: Bitte ergänzen oder Empfehlungstext des Lektors übernehmen und ggf. redigieren.]', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'The equivalence in terms of learning objectives and the length of the course can not be determined because of...[Explanation: Please complete or adopt the text of the lectors recommendation and edit it if necessary]', + 'description' => '', + 'insertvon' => 'system' + ) + ) + ), + array( + 'app' => 'core', + 'category' => 'anrechnung', + 'phrase' => 'genehmigungNegativKenntnisseNichtGleichwertigWeilHinweis', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Die anzurechnenden Kenntnisse sind umfangmäßig und/oder inhaltlich nicht gleichwertig, weil... Bei einer Ablehnung ist eine individuelle Begründung erforderlich. Dies kann nur über die Detailseite erfolgen.', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'The equivalence in terms of learning objectives and the length of the course can not be determined because of... If the application is rejected, an individual reason is required. This can only be done from the detail page.', + 'description' => '', + 'insertvon' => 'system' + ) + ) + ), array( 'app' => 'core', 'category' => 'anrechnung', @@ -13169,26 +13189,26 @@ Any unusual occurrences ) ) ), - array( - 'app' => 'core', - 'category' => 'ui', - 'phrase' => 'bitteBegruendungVervollstaendigen', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Bitte vervollständigen Sie die Begründung.', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'Please complete the reason.', - 'description' => '', - 'insertvon' => 'system' - ) - ) - ), + array( + 'app' => 'core', + 'category' => 'ui', + 'phrase' => 'bitteBegruendungVervollstaendigen', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Bitte vervollständigen Sie die Begründung.', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'Please complete the reason.', + 'description' => '', + 'insertvon' => 'system' + ) + ) + ), array( 'app' => 'core', 'category' => 'anrechnung', @@ -13489,26 +13509,26 @@ Any unusual occurrences ) ) ), - array( - 'app' => 'core', - 'category' => 'anrechnung', - 'phrase' => 'genehmigungNegativEctsHoechstgrenzeUeberschritten', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Anrechnung wird nicht genehmigt aufgrund einer Überschreitung der Höchstgrenzen für Anrechnungen gem. § 12 Abs. 3 Fachhochschulgesetz.', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'Recognition and exemption is rejected because of exceedance of maximum limit for exemption (see § 12 para. 3, Regulations of the UASTW).', - 'description' => '', - 'insertvon' => 'system' - ) - ) - ), + array( + 'app' => 'core', + 'category' => 'anrechnung', + 'phrase' => 'genehmigungNegativEctsHoechstgrenzeUeberschritten', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Anrechnung wird nicht genehmigt aufgrund einer Überschreitung der Höchstgrenzen für Anrechnungen gem. § 12 Abs. 3 Fachhochschulgesetz.', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'Recognition and exemption is rejected because of exceedance of maximum limit for exemption (see § 12 para. 3, Regulations of the UASTW).', + 'description' => '', + 'insertvon' => 'system' + ) + ) + ), array( 'app' => 'core', 'category' => 'anrechnung', @@ -13729,206 +13749,206 @@ Any unusual occurrences ) ) ), - array( - 'app' => 'core', - 'category' => 'anrechnung', - 'phrase' => 'anrechnungenVerwalten', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Anrechnungen verwalten', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'Administration of applications.', - 'description' => '', - 'insertvon' => 'system' - ) - ) - ), - array( - 'app' => 'core', - 'category' => 'anrechnung', - 'phrase' => 'anrechnungszeitraumFestlegen', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Anrechnungszeitraum festlegen', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'Set appplication period', - 'description' => '', - 'insertvon' => 'system' - ) - ) - ), - array( - 'app' => 'core', - 'category' => 'anrechnung', - 'phrase' => 'anrechnungszeitraumHinzufuegen', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Anrechnungszeitraum hinzufügen', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'Add appplication period', - 'description' => '', - 'insertvon' => 'system' - ) - ) - ), - array( - 'app' => 'core', - 'category' => 'anrechnung', - 'phrase' => 'anrechnungszeitraumSpeichern', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Anrechnungszeitraum speichern', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'Save application period', - 'description' => '', - 'insertvon' => 'system' - ) - ) - ), - array( - 'app' => 'core', - 'category' => 'anrechnung', - 'phrase' => 'anrechnungszeitraumStart', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Anrechnungszeitraum Start', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'Startdate application', - 'description' => '', - 'insertvon' => 'system' - ) - ) - ), - array( - 'app' => 'core', - 'category' => 'anrechnung', - 'phrase' => 'anrechnungszeitraumEnde', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Anrechnungszeitraum Ende', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'Enddate application', - 'description' => '', - 'insertvon' => 'system' - ) - ) - ), - array( - 'app' => 'core', - 'category' => 'ui', - 'phrase' => 'errorStartdatumNichtInStudiensemester', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Das Startdatum liegt außerhalb des gewählten Studiensemesters.', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'The startdate is not within the selected study semester.', - 'description' => '', - 'insertvon' => 'system' - ) - ) - ), - array( - 'app' => 'core', - 'category' => 'ui', - 'phrase' => 'errorEndedatumNichtInStudiensemester', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Das Endedatum liegt außerhalb des gewählten Studiensemesters.', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'The enddate is not within the selected study semester.', - 'description' => '', - 'insertvon' => 'system' - ) - ) - ), - array( - 'app' => 'core', - 'category' => 'ui', - 'phrase' => 'errorStartdatumNachEndedatum', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Das Startdatum muss VOR dem Endedatum liegen.', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'The startdate must be BEFORE the enddate.', - 'description' => '', - 'insertvon' => 'system' - ) - ) - ), - array( - 'app' => 'core', - 'category' => 'ui', - 'phrase' => 'frageSicherLoeschen', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => "Sicher löschen?", - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => "Definitely delete?", - 'description' => '', - 'insertvon' => 'system' - ) - ) - ), + array( + 'app' => 'core', + 'category' => 'anrechnung', + 'phrase' => 'anrechnungenVerwalten', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Anrechnungen verwalten', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'Administration of applications.', + 'description' => '', + 'insertvon' => 'system' + ) + ) + ), + array( + 'app' => 'core', + 'category' => 'anrechnung', + 'phrase' => 'anrechnungszeitraumFestlegen', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Anrechnungszeitraum festlegen', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'Set appplication period', + 'description' => '', + 'insertvon' => 'system' + ) + ) + ), + array( + 'app' => 'core', + 'category' => 'anrechnung', + 'phrase' => 'anrechnungszeitraumHinzufuegen', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Anrechnungszeitraum hinzufügen', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'Add appplication period', + 'description' => '', + 'insertvon' => 'system' + ) + ) + ), + array( + 'app' => 'core', + 'category' => 'anrechnung', + 'phrase' => 'anrechnungszeitraumSpeichern', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Anrechnungszeitraum speichern', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'Save application period', + 'description' => '', + 'insertvon' => 'system' + ) + ) + ), + array( + 'app' => 'core', + 'category' => 'anrechnung', + 'phrase' => 'anrechnungszeitraumStart', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Anrechnungszeitraum Start', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'Startdate application', + 'description' => '', + 'insertvon' => 'system' + ) + ) + ), + array( + 'app' => 'core', + 'category' => 'anrechnung', + 'phrase' => 'anrechnungszeitraumEnde', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Anrechnungszeitraum Ende', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'Enddate application', + 'description' => '', + 'insertvon' => 'system' + ) + ) + ), + array( + 'app' => 'core', + 'category' => 'ui', + 'phrase' => 'errorStartdatumNichtInStudiensemester', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Das Startdatum liegt außerhalb des gewählten Studiensemesters.', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'The startdate is not within the selected study semester.', + 'description' => '', + 'insertvon' => 'system' + ) + ) + ), + array( + 'app' => 'core', + 'category' => 'ui', + 'phrase' => 'errorEndedatumNichtInStudiensemester', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Das Endedatum liegt außerhalb des gewählten Studiensemesters.', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'The enddate is not within the selected study semester.', + 'description' => '', + 'insertvon' => 'system' + ) + ) + ), + array( + 'app' => 'core', + 'category' => 'ui', + 'phrase' => 'errorStartdatumNachEndedatum', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Das Startdatum muss VOR dem Endedatum liegen.', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'The startdate must be BEFORE the enddate.', + 'description' => '', + 'insertvon' => 'system' + ) + ) + ), + array( + 'app' => 'core', + 'category' => 'ui', + 'phrase' => 'frageSicherLoeschen', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => "Sicher löschen?", + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => "Definitely delete?", + 'description' => '', + 'insertvon' => 'system' + ) + ) + ), array( 'app' => 'core', 'category' => 'ui', @@ -14281,7 +14301,7 @@ Any unusual occurrences ) ) ), -array( + array( 'app' => 'core', 'category' => 'anrechnung', 'phrase' => 'requestAnrechnungInfoNachweisdokumenteTitle', @@ -14965,46 +14985,46 @@ array( ) ) ), - array( - 'app' => 'core', - 'category' => 'ui', - 'phrase' => 'bearbeitetVon', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => "bearbeitet von", - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => "edited by", - 'description' => '', - 'insertvon' => 'system' - ) - ) - ), - array( - 'app' => 'core', - 'category' => 'ui', - 'phrase' => 'bearbeitetAm', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => "bearbeitet am", - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => "edited on", - 'description' => '', - 'insertvon' => 'system' - ) - ) - ), + array( + 'app' => 'core', + 'category' => 'ui', + 'phrase' => 'bearbeitetVon', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => "bearbeitet von", + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => "edited by", + 'description' => '', + 'insertvon' => 'system' + ) + ) + ), + array( + 'app' => 'core', + 'category' => 'ui', + 'phrase' => 'bearbeitetAm', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => "bearbeitet am", + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => "edited on", + 'description' => '', + 'insertvon' => 'system' + ) + ) + ), array( 'app' => 'core', 'category' => 'global', @@ -15105,46 +15125,46 @@ array( ) ) ), - array( - 'app' => 'core', - 'category' => 'ui', - 'phrase' => 'errorDokumentZuGross', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => "Dokument zu groß", - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => "Document maximum size exceeded", - 'description' => '', - 'insertvon' => 'system' - ) - ) - ), - array( - 'app' => 'core', - 'category' => 'ui', - 'phrase' => 'errorUploadFehltOderZuGross', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => "Dokument fehlt oder zu groß", - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => "Document missing or maximum size exceeded", - 'description' => '', - 'insertvon' => 'system' - ) - ) - ), + array( + 'app' => 'core', + 'category' => 'ui', + 'phrase' => 'errorDokumentZuGross', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => "Dokument zu groß", + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => "Document maximum size exceeded", + 'description' => '', + 'insertvon' => 'system' + ) + ) + ), + array( + 'app' => 'core', + 'category' => 'ui', + 'phrase' => 'errorUploadFehltOderZuGross', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => "Dokument fehlt oder zu groß", + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => "Document missing or maximum size exceeded", + 'description' => '', + 'insertvon' => 'system' + ) + ) + ), array( 'app' => 'core', 'category' => 'ui', @@ -15225,26 +15245,26 @@ array( ) ) ), - array( - 'app' => 'core', - 'category' => 'ui', - 'phrase' => 'fehlendeMinZeichen', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => "Fehlende min. Zeichen", - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => "Missing min. Characters", - 'description' => '', - 'insertvon' => 'system' - ) - ) - ), + array( + 'app' => 'core', + 'category' => 'ui', + 'phrase' => 'fehlendeMinZeichen', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => "Fehlende min. Zeichen", + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => "Missing min. Characters", + 'description' => '', + 'insertvon' => 'system' + ) + ) + ), array( 'app' => 'core', 'category' => 'anrechnung', @@ -17067,27 +17087,27 @@ array( ) ) ), - array( - 'app' => 'core', - 'category' => 'ui', - 'phrase' => 'nurLeseberechtigung', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => "Nur Leseberechtigung", - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => "Read-Only Access", - 'description' => '', - 'insertvon' => 'system' - ) - ) - ), - //******************* KVP + array( + 'app' => 'core', + 'category' => 'ui', + 'phrase' => 'nurLeseberechtigung', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => "Nur Leseberechtigung", + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => "Read-Only Access", + 'description' => '', + 'insertvon' => 'system' + ) + ) + ), + //******************* KVP array( 'app' => 'core', 'category' => 'kvp', @@ -21264,30 +21284,30 @@ array( ) ) ), -/* - // es kann fuer jede Kombination Typ und Status eine Phrase der Form info__ 'core', - 'category' => 'studierendenantrag', - 'phrase' => 'info_Wiederholung_Erstellt', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Info für Wiederholung Erstellt', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'Info for Wiederholung Erstellt', - 'description' => '', - 'insertvon' => 'system' + /* + // es kann fuer jede Kombination Typ und Status eine Phrase der Form info__ 'core', + 'category' => 'studierendenantrag', + 'phrase' => 'info_Wiederholung_Erstellt', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Info für Wiederholung Erstellt', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'Info for Wiederholung Erstellt', + 'description' => '', + 'insertvon' => 'system' + ) ) - ) - ), -*/ + ), + */ array( 'app' => 'core', 'category' => 'studierendenantrag', @@ -24708,7 +24728,7 @@ array( 'text' => 'The field {field} must contain a valid email address.', 'description' => '', 'insertvon' => 'system' - ) + ) ) ), // Personalverwaltung begin @@ -26635,2232 +26655,2232 @@ array( ) ) ), - array( - 'app' => 'lehrauftrag', - 'category' => 'ui', - 'phrase' => 'hinweistextLehrauftrag', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Hinweis: Das Akzeptieren von Lehraufträgen ersetzt alle vorhergehenden Lehraufträge dieses Studiensemesters.', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'Note: Accepting teaching assignments replaces all previous teaching assignments for this study semester.', - 'description' => '', - 'insertvon' => 'system' - ) + array( + 'app' => 'lehrauftrag', + 'category' => 'ui', + 'phrase' => 'hinweistextLehrauftrag', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Hinweis: Das Akzeptieren von Lehraufträgen ersetzt alle vorhergehenden Lehraufträge dieses Studiensemesters.', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'Note: Accepting teaching assignments replaces all previous teaching assignments for this study semester.', + 'description' => '', + 'insertvon' => 'system' ) - ), - //Profil Phrasen start - array( - 'app' => 'core', - 'category' => 'profil', - 'phrase' => 'personenInformationen', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Personen Informationen', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'Person Information', - 'description' => '', - 'insertvon' => 'system' - ) + ) + ), + //Profil Phrasen start + array( + 'app' => 'core', + 'category' => 'profil', + 'phrase' => 'personenInformationen', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Personen Informationen', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'Person Information', + 'description' => '', + 'insertvon' => 'system' ) - ), - array( - 'app' => 'core', - 'category' => 'profil', - 'phrase' => 'postnomen', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Postnomen', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'post-nominals', - 'description' => '', - 'insertvon' => 'system' - ) + ) + ), + array( + 'app' => 'core', + 'category' => 'profil', + 'phrase' => 'postnomen', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Postnomen', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'post-nominals', + 'description' => '', + 'insertvon' => 'system' ) - ), - array( - 'app' => 'core', - 'category' => 'profil', - 'phrase' => 'Username', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Benutzername', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'Username', - 'description' => '', - 'insertvon' => 'system' - ) + ) + ), + array( + 'app' => 'core', + 'category' => 'profil', + 'phrase' => 'Username', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Benutzername', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'Username', + 'description' => '', + 'insertvon' => 'system' ) - ), - array( - 'app' => 'core', - 'category' => 'profil', - 'phrase' => 'Anrede', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Anrede', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'Salutation', - 'description' => '', - 'insertvon' => 'system' - ) + ) + ), + array( + 'app' => 'core', + 'category' => 'profil', + 'phrase' => 'Anrede', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Anrede', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'Salutation', + 'description' => '', + 'insertvon' => 'system' ) - ), - array( - 'app' => 'core', - 'category' => 'profil', - 'phrase' => 'Titel', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Titel', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'Title', - 'description' => '', - 'insertvon' => 'system' - ) + ) + ), + array( + 'app' => 'core', + 'category' => 'profil', + 'phrase' => 'Titel', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Titel', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'Title', + 'description' => '', + 'insertvon' => 'system' ) - ), - array( - 'app' => 'core', - 'category' => 'profil', - 'phrase' => 'Postnomen', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Postnomen', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'Postnominal', - 'description' => '', - 'insertvon' => 'system' - ) + ) + ), + array( + 'app' => 'core', + 'category' => 'profil', + 'phrase' => 'Postnomen', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Postnomen', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'Postnominal', + 'description' => '', + 'insertvon' => 'system' ) - ), - array( - 'app' => 'core', - 'category' => 'profil', - 'phrase' => 'Geburtsdatum', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Geburtsdatum', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'Birthdate', - 'description' => '', - 'insertvon' => 'system' - ) + ) + ), + array( + 'app' => 'core', + 'category' => 'profil', + 'phrase' => 'Geburtsdatum', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Geburtsdatum', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'Birthdate', + 'description' => '', + 'insertvon' => 'system' ) - ), - array( - 'app' => 'core', - 'category' => 'profil', - 'phrase' => 'Geburtsort', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Geburtsort', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'Birthplace', - 'description' => '', - 'insertvon' => 'system' - ) + ) + ), + array( + 'app' => 'core', + 'category' => 'profil', + 'phrase' => 'Geburtsort', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Geburtsort', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'Birthplace', + 'description' => '', + 'insertvon' => 'system' ) - ), - array( - 'app' => 'core', - 'category' => 'profil', - 'phrase' => 'Büro', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Büro', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'Office', - 'description' => '', - 'insertvon' => 'system' - ) + ) + ), + array( + 'app' => 'core', + 'category' => 'profil', + 'phrase' => 'Büro', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Büro', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'Office', + 'description' => '', + 'insertvon' => 'system' ) - ), - array( - 'app' => 'core', - 'category' => 'profil', - 'phrase' => 'Kurzzeichen', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Kurzzeichen', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'Abbreviation', - 'description' => '', - 'insertvon' => 'system' - ) + ) + ), + array( + 'app' => 'core', + 'category' => 'profil', + 'phrase' => 'Kurzzeichen', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Kurzzeichen', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'Abbreviation', + 'description' => '', + 'insertvon' => 'system' ) - ), - array( - 'app' => 'core', - 'category' => 'profil', - 'phrase' => 'Telefon', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Telefon', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'Telephone', - 'description' => '', - 'insertvon' => 'system' - ) + ) + ), + array( + 'app' => 'core', + 'category' => 'profil', + 'phrase' => 'Telefon', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Telefon', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'Telephone', + 'description' => '', + 'insertvon' => 'system' ) - ), - array( - 'app' => 'core', - 'category' => 'profil', - 'phrase' => 'telefon', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Telefon', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'Telephone', - 'description' => '', - 'insertvon' => 'system' - ) + ) + ), + array( + 'app' => 'core', + 'category' => 'profil', + 'phrase' => 'telefon', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Telefon', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'Telephone', + 'description' => '', + 'insertvon' => 'system' ) - ), - array( - 'app' => 'core', - 'category' => 'profil', - 'phrase' => 'intern', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Intern', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'Internal', - 'description' => '', - 'insertvon' => 'system' - ) + ) + ), + array( + 'app' => 'core', + 'category' => 'profil', + 'phrase' => 'intern', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Intern', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'Internal', + 'description' => '', + 'insertvon' => 'system' ) - ), - array( - 'app' => 'core', - 'category' => 'profil', - 'phrase' => 'alias', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Alias', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'Alias', - 'description' => '', - 'insertvon' => 'system' - ) + ) + ), + array( + 'app' => 'core', + 'category' => 'profil', + 'phrase' => 'alias', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Alias', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'Alias', + 'description' => '', + 'insertvon' => 'system' ) - ), - array( - 'app' => 'core', - 'category' => 'profil', - 'phrase' => 'email', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'E-Mail', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'E-Mail', - 'description' => '', - 'insertvon' => 'system' - ) + ) + ), + array( + 'app' => 'core', + 'category' => 'profil', + 'phrase' => 'email', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'E-Mail', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'E-Mail', + 'description' => '', + 'insertvon' => 'system' ) - ), - array( - 'app' => 'core', - 'category' => 'profil', - 'phrase' => 'Anmerkung', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Anmerkung', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'Remark', - 'description' => '', - 'insertvon' => 'system' - ) + ) + ), + array( + 'app' => 'core', + 'category' => 'profil', + 'phrase' => 'Anmerkung', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Anmerkung', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'Remark', + 'description' => '', + 'insertvon' => 'system' ) - ), - array( - 'app' => 'core', - 'category' => 'profil', - 'phrase' => 'notfallkontakt', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Notfallkontakt', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'Emergency contact', - 'description' => '', - 'insertvon' => 'system' - ) + ) + ), + array( + 'app' => 'core', + 'category' => 'profil', + 'phrase' => 'notfallkontakt', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Notfallkontakt', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'Emergency contact', + 'description' => '', + 'insertvon' => 'system' ) - ), - array( - 'app' => 'core', - 'category' => 'profil', - 'phrase' => 'Straße', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Straße', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'Street', - 'description' => '', - 'insertvon' => 'system' - ) + ) + ), + array( + 'app' => 'core', + 'category' => 'profil', + 'phrase' => 'Straße', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Straße', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'Street', + 'description' => '', + 'insertvon' => 'system' ) - ), - array( - 'app' => 'core', - 'category' => 'profil', - 'phrase' => 'Strasse', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Straße', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'Street', - 'description' => '', - 'insertvon' => 'system' - ) + ) + ), + array( + 'app' => 'core', + 'category' => 'profil', + 'phrase' => 'Strasse', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Straße', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'Street', + 'description' => '', + 'insertvon' => 'system' ) - ), - array( - 'app' => 'core', - 'category' => 'profil', - 'phrase' => 'PLZ', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'PLZ', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'PLZ', - 'description' => '', - 'insertvon' => 'system' - ) + ) + ), + array( + 'app' => 'core', + 'category' => 'profil', + 'phrase' => 'PLZ', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'PLZ', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'PLZ', + 'description' => '', + 'insertvon' => 'system' ) - ), - array( - 'app' => 'core', - 'category' => 'profil', - 'phrase' => 'Ort', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Ort', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'Locality', - 'description' => '', - 'insertvon' => 'system' - ) + ) + ), + array( + 'app' => 'core', + 'category' => 'profil', + 'phrase' => 'Ort', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Ort', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'Locality', + 'description' => '', + 'insertvon' => 'system' ) - ), - array( - 'app' => 'core', - 'category' => 'profil', - 'phrase' => 'Typ', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Typ', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'Type', - 'description' => '', - 'insertvon' => 'system' - ) + ) + ), + array( + 'app' => 'core', + 'category' => 'profil', + 'phrase' => 'Typ', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Typ', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'Type', + 'description' => '', + 'insertvon' => 'system' ) - ), - array( - 'app' => 'core', - 'category' => 'profil', - 'phrase' => 'privateKontakte', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Private Kontakte', - 'description' => 'Profil Kategorie in der die ganzen privaten Kontakte einer Person aufgelistet werden', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'Private Contacts', - 'description' => 'Profile category in which all private contacts of a person are listed', - 'insertvon' => 'system' - ) + ) + ), + array( + 'app' => 'core', + 'category' => 'profil', + 'phrase' => 'privateKontakte', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Private Kontakte', + 'description' => 'Profil Kategorie in der die ganzen privaten Kontakte einer Person aufgelistet werden', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'Private Contacts', + 'description' => 'Profile category in which all private contacts of a person are listed', + 'insertvon' => 'system' ) - ), - array( - 'app' => 'core', - 'category' => 'profil', - 'phrase' => 'privateAdressen', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Private Adressen', - 'description' => 'Profil Kategorie in der die ganzen privaten Adressen einer Person aufgelistet werden', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'Private Addresses', - 'description' => 'Profile category in which all private addresses of a person are listed', - 'insertvon' => 'system' - ) + ) + ), + array( + 'app' => 'core', + 'category' => 'profil', + 'phrase' => 'privateAdressen', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Private Adressen', + 'description' => 'Profil Kategorie in der die ganzen privaten Adressen einer Person aufgelistet werden', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'Private Addresses', + 'description' => 'Profile category in which all private addresses of a person are listed', + 'insertvon' => 'system' ) - ), - array( - 'app' => 'core', - 'category' => 'profil', - 'phrase' => 'profilBearbeiten', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Profil bearbeiten', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'edit profil', - 'description' => '', - 'insertvon' => 'system' - ) + ) + ), + array( + 'app' => 'core', + 'category' => 'profil', + 'phrase' => 'profilBearbeiten', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Profil bearbeiten', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'edit profil', + 'description' => '', + 'insertvon' => 'system' ) - ), - array( - 'app' => 'core', - 'category' => 'profil', - 'phrase' => 'mitarbeiterIn', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'MitarbeiterIn', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'Employee', - 'description' => '', - 'insertvon' => 'system' - ) + ) + ), + array( + 'app' => 'core', + 'category' => 'profil', + 'phrase' => 'mitarbeiterIn', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'MitarbeiterIn', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'Employee', + 'description' => '', + 'insertvon' => 'system' ) - ), - array( - 'app' => 'core', - 'category' => 'profil', - 'phrase' => 'entlehnteBetriebsmittel', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Entlehnte Betriebsmittel', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'Borrowed Company Resources', - 'description' => '', - 'insertvon' => 'system' - ) + ) + ), + array( + 'app' => 'core', + 'category' => 'profil', + 'phrase' => 'entlehnteBetriebsmittel', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Entlehnte Betriebsmittel', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'Borrowed Company Resources', + 'description' => '', + 'insertvon' => 'system' ) - ), - array( - 'app' => 'core', - 'category' => 'profil', - 'phrase' => 'mitarbeiterInformation', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Mitarbeiter Information', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'Employee Information', - 'description' => '', - 'insertvon' => 'system' - ) + ) + ), + array( + 'app' => 'core', + 'category' => 'profil', + 'phrase' => 'mitarbeiterInformation', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Mitarbeiter Information', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'Employee Information', + 'description' => '', + 'insertvon' => 'system' ) - ), - array( - 'app' => 'core', - 'category' => 'profil', - 'phrase' => 'studentIn', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'StudentIn', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'Student', - 'description' => '', - 'insertvon' => 'system' - ) + ) + ), + array( + 'app' => 'core', + 'category' => 'profil', + 'phrase' => 'studentIn', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'StudentIn', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'Student', + 'description' => '', + 'insertvon' => 'system' ) - ), - array( - 'app' => 'core', - 'category' => 'profil', - 'phrase' => 'studentInformation', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Student Information', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'Student Information', - 'description' => '', - 'insertvon' => 'system' - ) + ) + ), + array( + 'app' => 'core', + 'category' => 'profil', + 'phrase' => 'studentInformation', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Student Information', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'Student Information', + 'description' => '', + 'insertvon' => 'system' ) - ), - array( - 'app' => 'core', - 'category' => 'profil', - 'phrase' => 'zutrittsGruppen', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Zutrittsgruppen', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'Access groups', - 'description' => '', - 'insertvon' => 'system' - ) + ) + ), + array( + 'app' => 'core', + 'category' => 'profil', + 'phrase' => 'zutrittsGruppen', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Zutrittsgruppen', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'Access groups', + 'description' => '', + 'insertvon' => 'system' ) - ), - array( - 'app' => 'core', - 'category' => 'profil', - 'phrase' => 'fhAusweisStatus', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Der FH Ausweis ist am {0} ausgegeben worden.', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'The FH ID card was issued on {0}', - 'description' => '', - 'insertvon' => 'system' - ) + ) + ), + array( + 'app' => 'core', + 'category' => 'profil', + 'phrase' => 'fhAusweisStatus', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Der FH Ausweis ist am {0} ausgegeben worden.', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'The FH ID card was issued on {0}', + 'description' => '', + 'insertvon' => 'system' ) - ), - array( - 'app' => 'core', - 'category' => 'profil', - 'phrase' => 'mailverteiler', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Mailverteiler', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'Mailing list', - 'description' => '', - 'insertvon' => 'system' - ) + ) + ), + array( + 'app' => 'core', + 'category' => 'profil', + 'phrase' => 'mailverteiler', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Mailverteiler', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'Mailing list', + 'description' => '', + 'insertvon' => 'system' ) - ), - array( - 'app' => 'core', - 'category' => 'profil', - 'phrase' => 'mailverteilerMitglied', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Sie sind Mitglied in folgenden Mailverteilern:', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'You are a member of the following mailing lists:', - 'description' => '', - 'insertvon' => 'system' - ) + ) + ), + array( + 'app' => 'core', + 'category' => 'profil', + 'phrase' => 'mailverteilerMitglied', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Sie sind Mitglied in folgenden Mailverteilern:', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'You are a member of the following mailing lists:', + 'description' => '', + 'insertvon' => 'system' ) - ), - array( - 'app' => 'core', - 'category' => 'profil', - 'phrase' => 'quickLinks', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Quick Links', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'Quick Links', - 'description' => '', - 'insertvon' => 'system' - ) + ) + ), + array( + 'app' => 'core', + 'category' => 'profil', + 'phrase' => 'quickLinks', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Quick Links', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'Quick Links', + 'description' => '', + 'insertvon' => 'system' ) - ), - array( - 'app' => 'core', - 'category' => 'profil', - 'phrase' => 'zeitwuensche', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Zeitwünsche', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'Time wishes', - 'description' => '', - 'insertvon' => 'system' - ) + ) + ), + array( + 'app' => 'core', + 'category' => 'profil', + 'phrase' => 'zeitwuensche', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Zeitwünsche', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'Time wishes', + 'description' => '', + 'insertvon' => 'system' ) - ), - array( - 'app' => 'core', - 'category' => 'profil', - 'phrase' => 'lehrveranstaltungen', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Lehrveranstaltungen', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'Courses', - 'description' => '', - 'insertvon' => 'system' - ) + ) + ), + array( + 'app' => 'core', + 'category' => 'profil', + 'phrase' => 'lehrveranstaltungen', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Lehrveranstaltungen', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'Courses', + 'description' => '', + 'insertvon' => 'system' ) - ), - array( - 'app' => 'core', - 'category' => 'profil', - 'phrase' => 'zeitsperren', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Zeitsperren', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'Time locks', - 'description' => '', - 'insertvon' => 'system' - ) + ) + ), + array( + 'app' => 'core', + 'category' => 'profil', + 'phrase' => 'zeitsperren', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Zeitsperren', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'Time locks', + 'description' => '', + 'insertvon' => 'system' ) - ), - //Profil Phrasen ende - //ProfilUpdate Phrasen start - array( - 'app' => 'core', - 'category' => 'profilUpdate', - 'phrase' => 'profilUpdates', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Profil Updates', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'Profile Updates', - 'description' => '', - 'insertvon' => 'system' - ) + ) + ), + //Profil Phrasen ende + //ProfilUpdate Phrasen start + array( + 'app' => 'core', + 'category' => 'profilUpdate', + 'phrase' => 'profilUpdates', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Profil Updates', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'Profile Updates', + 'description' => '', + 'insertvon' => 'system' ) - ), - array( - 'app' => 'core', - 'category' => 'profilUpdate', - 'phrase' => 'topic', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Thema', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'topic', - 'description' => '', - 'insertvon' => 'system' - ) + ) + ), + array( + 'app' => 'core', + 'category' => 'profilUpdate', + 'phrase' => 'topic', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Thema', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'topic', + 'description' => '', + 'insertvon' => 'system' ) - ), - array( - 'app' => 'core', - 'category' => 'profilUpdate', - 'phrase' => 'zustell_adressen_warning', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Einer ihrer Adressen wird bereits zur Zustellung verwendet, möchten sie diese Adressen als Zustellungsadresse übernehmen?', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'One of your addresses is already used as a contact address, would you like to use this address as your new contact address?', - 'description' => '', - 'insertvon' => 'system' - ) + ) + ), + array( + 'app' => 'core', + 'category' => 'profilUpdate', + 'phrase' => 'zustell_adressen_warning', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Einer ihrer Adressen wird bereits zur Zustellung verwendet, möchten sie diese Adressen als Zustellungsadresse übernehmen?', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'One of your addresses is already used as a contact address, would you like to use this address as your new contact address?', + 'description' => '', + 'insertvon' => 'system' ) - ), - array( - 'app' => 'core', - 'category' => 'profilUpdate', - 'phrase' => 'zustell_kontakte_warning', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Einer ihrer Kontakte wird bereits zur Zustellung verwendet, möchten sie diesen Kontakt als Zustellungskontakt übernehmen?', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'One of your contacts is already used as a communication mean, would you like to use this contact as your new communication mean?', - 'description' => '', - 'insertvon' => 'system' - ) + ) + ), + array( + 'app' => 'core', + 'category' => 'profilUpdate', + 'phrase' => 'zustell_kontakte_warning', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Einer ihrer Kontakte wird bereits zur Zustellung verwendet, möchten sie diesen Kontakt als Zustellungskontakt übernehmen?', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'One of your contacts is already used as a communication mean, would you like to use this contact as your new communication mean?', + 'description' => '', + 'insertvon' => 'system' ) - ), + ) + ), - array( - 'app' => 'core', - 'category' => 'profilUpdate', - 'phrase' => 'kontaktTyp', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Kontakttyp', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'contact type', - 'description' => '', - 'insertvon' => 'system' - ) - ) - ), - array( - 'app' => 'core', - 'category' => 'profilUpdate', - 'phrase' => 'nebenwohnsitz', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Nebenwohnsitz', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'secondary residence', - 'description' => '', - 'insertvon' => 'system' - ) - ) - ), - array( - 'app' => 'core', - 'category' => 'profilUpdate', - 'phrase' => 'hauptwohnsitz', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Hauptwohnsitz', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'main residence', - 'description' => '', - 'insertvon' => 'system' - ) - ) - ), - array( - 'app' => 'core', - 'category' => 'profilUpdate', - 'phrase' => 'homeoffice', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Homeoffice', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'Homeoffice', - 'description' => '', - 'insertvon' => 'system' - ) - ) - ), - array( - 'app' => 'core', - 'category' => 'profilUpdate', - 'phrase' => 'rechnungsadresse', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Rechnungsadresse', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'Billing address', - 'description' => '', - 'insertvon' => 'system' - ) - ) - ), - array( - 'app' => 'core', - 'category' => 'profilUpdate', - 'phrase' => 'notfallkontakt', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Notfallkontakt', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'Emergency contact', - 'description' => '', - 'insertvon' => 'system' - ) - ) - ), - array( - 'app' => 'core', - 'category' => 'profilUpdate', - 'phrase' => 'mobiltelefonnummer', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Mobiltelefonnummer', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'Cell phone number', - 'description' => '', - 'insertvon' => 'system' - ) - ) - ), - array( - 'app' => 'core', - 'category' => 'profilUpdate', - 'phrase' => 'homepage', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Homepage', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'Homepage', - 'description' => '', - 'insertvon' => 'system' - ) - ) - ), - array( - 'app' => 'core', - 'category' => 'profilUpdate', - 'phrase' => 'faxnummer', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Faxnummer', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'Fax number', - 'description' => '', - 'insertvon' => 'system' - ) - ) - ), - array( - 'app' => 'core', - 'category' => 'profilUpdate', - 'phrase' => 'zustellungsKontakt', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Zustellungs Kontakt', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'Delivery contact', - 'description' => '', - 'insertvon' => 'system' - ) - ) - ), - array( - 'app' => 'core', - 'category' => 'profilUpdate', - 'phrase' => 'statusMessage', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Status Mitteilung', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'Status message', - 'description' => '', - 'insertvon' => 'system' - ) - ) - ), - array( - 'app' => 'core', - 'category' => 'profilUpdate', - 'phrase' => 'profilUpdateInformationMessage', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Erneuern Sie ihr {0} und laden Sie die passenden Beweisdokumente hoch', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'Please update your {0} and upload the corresponding Document of proof', - 'description' => '', - 'insertvon' => 'system' - ) - ) - ), - array( - 'app' => 'core', - 'category' => 'profilUpdate', - 'phrase' => 'profilUpdateRequest', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Profil Änderungs Anfrage', - 'description' => 'Eine Änderungs Anfrage', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'Profil Update Request', - 'description' => 'One profil update request', - 'insertvon' => 'system' - ) - ) - ), - array( - 'app' => 'core', - 'category' => 'profilUpdate', - 'phrase' => 'profilUpdateRequests', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Profil Änderungs Anfragen', - 'description' => 'Mehrere Änderungs Anfragen', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'Profil Update Requests', - 'description' => 'Multiple update requests', - 'insertvon' => 'system' - ) - ) - ), - array( - 'app' => 'core', - 'category' => 'profilUpdate', - 'phrase' => 'statusDate', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Status Datum', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'Date of Status', - 'description' => '', - 'insertvon' => 'system' - ) - ) - ), - array( - 'app' => 'core', - 'category' => 'profilUpdate', - 'phrase' => 'userID', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'UserID', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'UserID', - 'description' => '', - 'insertvon' => 'system' - ) - ) - ), - array( - 'app' => 'core', - 'category' => 'profilUpdate', - 'phrase' => 'anfrageThema', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Thema der Anfrage', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'Topic of Request', - 'description' => '', - 'insertvon' => 'system' - ) - ) - ), - array( - 'app' => 'core', - 'category' => 'profilUpdate', - 'phrase' => 'anfrageDatum', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Datum der Anfrage', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'Date of Request', - 'description' => '', - 'insertvon' => 'system' - ) - ) - ), - array( - 'app' => 'core', - 'category' => 'profilUpdate', - 'phrase' => 'update', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Aktualisierung', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'update', - 'description' => '', - 'insertvon' => 'system' - ) - ) - ), - array( - 'app' => 'core', - 'category' => 'profilUpdate', - 'phrase' => 'accept', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Annehmen', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'accept', - 'description' => '', - 'insertvon' => 'system' - ) - ) - ), - array( - 'app' => 'core', - 'category' => 'profilUpdate', - 'phrase' => 'deny', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Ablehnen', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'deny', - 'description' => '', - 'insertvon' => 'system' - ) - ) - ), - array( - 'app' => 'core', - 'category' => 'profilUpdate', - 'phrase' => 'UID', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Benutzer', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'User', - 'description' => '', - 'insertvon' => 'system' - ) - ) - ), - array( - 'app' => 'core', - 'category' => 'profilUpdate', - 'phrase' => 'pendingRequests', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Ausstehende Anfragen', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'Pending Requests', - 'description' => '', - 'insertvon' => 'system' - ) - ) - ), - array( - 'app' => 'core', - 'category' => 'profilUpdate', - 'phrase' => 'acceptedRequests', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Angenommene Anfragen', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'Accepted Requests', - 'description' => '', - 'insertvon' => 'system' - ) - ) - ), - array( - 'app' => 'core', - 'category' => 'profilUpdate', - 'phrase' => 'rejectedRequests', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Abgelehnte Anfragen', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'Rejected Requests', - 'description' => '', - 'insertvon' => 'system' - ) - ) - ), - array( - 'app' => 'core', - 'category' => 'profilUpdate', - 'phrase' => 'allRequests', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Alle Anfragen', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'All Requests', - 'description' => '', - 'insertvon' => 'system' - ) - ) - ), - array( - 'app' => 'core', - 'category' => 'profilUpdate', - 'phrase' => 'deleteContact', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Kontakt löschen', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'Delete contact', - 'description' => '', - 'insertvon' => 'system' - ) - ) - ), - array( - 'app' => 'core', - 'category' => 'profilUpdate', - 'phrase' => 'deleteAddress', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Adresse löschen', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'Delete address', - 'description' => '', - 'insertvon' => 'system' - ) - ) - ), - array( - 'app' => 'core', - 'category' => 'profilUpdate', - 'phrase' => 'addContact', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Kontakt hinzufügen', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'Add contact', - 'description' => '', - 'insertvon' => 'system' - ) - ) - ), - array( - 'app' => 'core', - 'category' => 'profilUpdate', - 'phrase' => 'addContact', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Adresse hinzufügen', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'Add address', - 'description' => '', - 'insertvon' => 'system' - ) - ) - ), - array( - 'app' => 'core', - 'category' => 'profilUpdate', - 'phrase' => 'vorname', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Vorname', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'First name', - 'description' => '', - 'insertvon' => 'system' - ) - ) - ), - array( - 'app' => 'core', - 'category' => 'profilUpdate', - 'phrase' => 'nachname', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Nachname', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'Last name', - 'description' => '', - 'insertvon' => 'system' - ) - ) - ), - array( - 'app' => 'core', - 'category' => 'profilUpdate', - 'phrase' => 'title', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Titel', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'Title', - 'description' => '', - 'insertvon' => 'system' - ) - ) - ), - array( - 'app' => 'core', - 'category' => 'profilUpdate', - 'phrase' => 'pending', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Ausstehend', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'Pending', - 'description' => '', - 'insertvon' => 'system' - ) - ) - ), - array( - 'app' => 'core', - 'category' => 'profilUpdate', - 'phrase' => 'accepted', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Akzeptiert', - 'description' => 'Profil Änderungen die akzeptiert wurden', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'Accepted', - 'description' => 'Profil updates that were accepted', - 'insertvon' => 'system' - ) - ) - ), - array( - 'app' => 'core', - 'category' => 'profilUpdate', - 'phrase' => 'rejected', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Abgelehnt', - 'description' => 'Profil Änderungen die abgelehnt wurden', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'Rejected', - 'description' => 'Profil updates that were rejected', - 'insertvon' => 'system' - ) - ) - ), - array( - 'app' => 'core', - 'category' => 'profilUpdate', - 'phrase' => 'profilUdate_address_error', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Nicht möglich adressenID {0} für profil Änderung {1} hinzuzufügen', - 'description' => 'Fehlermeldung wenn die AdressenID bereits in einer Profil Änderung verwendet wurde', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'was not able to add addressID {0} to profilRequest {1}', - 'description' => 'Error message when the addressID was already used for another profil update', - 'insertvon' => 'system' - ) - ) - ), - array( - 'app' => 'core', - 'category' => 'profilUpdate', - 'phrase' => 'profilUpdate_permission_error', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Notwendinge Berechtigungen fehlen', - 'description' => 'Fehlermeldung wenn notwendige Berechtigungen für Aktionen fehlen', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'Missing necessary permission', - 'description' => 'Error message if necessary permissions are missing', - 'insertvon' => 'system' - ) - ) - ), - array( - 'app' => 'core', - 'category' => 'profilUpdate', - 'phrase' => 'profilUpdate_dms_error', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Das angeforderte Dokument ist kein Anhang einer Profil Änderung', - 'description' => 'Fehlermeldung wenn ein Dokument angefordert wird, das nicht im zusammenhang mit einer Profil Änderung ist', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'The requested document is not an attachment for any profil update', - 'description' => 'Error message if a document is requested that is not connected with a profil update', - 'insertvon' => 'system' - ) - ) - ), - array( - 'app' => 'core', - 'category' => 'profilUpdate', - 'phrase' => 'profilUpdate_email_error', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Ein Fehler ist aufgetreten beim sender der Email', - 'description' => 'Fehlermeldung wenn ein Fehler beim senden einer Email auftritt', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'An error occurred when sending an email', - 'description' => 'Error message if an error occurred while sending emails', - 'insertvon' => 'system' - ) - ) - ), - array( - 'app' => 'core', - 'category' => 'profilUpdate', - 'phrase' => 'profilUpdate_studentCheck_error', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Ein Fehler ist aufgetreten beim Überprüfen ob die Person ein Student ist', - 'description' => 'Fehlermeldung wenn ein Fehler beim überprüfen eines Studenten auftritt', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'An error occurred while checking if the person is a student', - 'description' => 'Error message if an error occurred when checking if a person is a student', - 'insertvon' => 'system' - ) - ) - ), - array( - 'app' => 'core', - 'category' => 'profilUpdate', - 'phrase' => 'profilUpdate_mitarbeiterCheck_error', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Ein Fehler ist aufgetreten, es wurde kein Mitarbeiter mit der gleichen uid gefunden', - 'description' => 'Fehlermeldung wenn ein Fehler beim überprüfen eines Mitarbeiter auftritt', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'An error occurred while checking if the person is a mitarbeiter', - 'description' => 'Error message if an error occurred when checking if a person is a mitarbeiter', - 'insertvon' => 'system' - ) - ) - ), - array( - 'app' => 'core', - 'category' => 'profilUpdate', - 'phrase' => 'profilUpdate_loading_error', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Ein Fehler beim laden der Profil Änderung ist aufgetreten', - 'description' => 'Fehlermeldung wenn ein Fehler beim laden einer Profil Änderung auftritt', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'An error occurred while loading the profil update', - 'description' => 'Error message if an error occurred when loading a profil update', - 'insertvon' => 'system' - ) - ) - ), - array( - 'app' => 'core', - 'category' => 'profilUpdate', - 'phrase' => 'profilUpdate_dmsVersion_error', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Ein Fehler beim laden der Dms Version ist aufgetreten', - 'description' => 'Fehlermeldung wenn ein Fehler beim laden einer Dms Version auftritt', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'An error occurred while loading the dms version', - 'description' => 'Error message if an error occurred when loading a dms version', - 'insertvon' => 'system' - ) - ) - ), - array( - 'app' => 'core', - 'category' => 'profilUpdate', - 'phrase' => 'profilUpdate_deleteZustellung_error', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Ein Fehler ist aufgetretten, man kann keine Zustellung löschen', - 'description' => 'Fehlermeldung wenn versucht wird eine Zustellungsresource zu löschen', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'An error occurred, it is not possible to delete a resource marked as zustellung', - 'description' => 'Error message if someone tried to delete a resource that is marked as zustellung', - 'insertvon' => 'system' - ) - ) - ), - array( - 'app' => 'core', - 'category' => 'profilUpdate', - 'phrase' => 'profilUpdate_changeTwice_error', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Ein Fehler ist aufgetretten, man kann die gleiche Profil Information nicht zweimal ändern', - 'description' => 'Fehlermeldung wenn versucht wird eine Information zweimal zu ändern', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'An error occurred, it is not possible to change the same profil information twice', - 'description' => 'Error message if someone tried to change the same profil information twice', - 'insertvon' => 'system' - ) - ) - ), - array( - 'app' => 'core', - 'category' => 'profilUpdate', - 'phrase' => 'profilUpdate_changeTopicTwice_error', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Eine Anfrage {0} ist bereits geöffnet worden', - 'description' => 'Wenn die Profil Änderung nicht über Kontakte oder Adressen ist dann darf das Topic nur einmalig verändert werden', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'A request to change {0} is already open', - 'description' => 'if the profil update is not about contacts or addresses then the topic has to be unique', - 'insertvon' => 'system' - ) - ) - ), - array( - 'app' => 'core', - 'category' => 'profilUpdate', - 'phrase' => 'profilUpdate_loadingOE_error', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Ein Fehler beim laden der oe_einheit ist aufgetreten', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'An error occurred, when loading the oe_einheit', - 'description' => '', - 'insertvon' => 'system' - ) - ) - ), - array( - 'app' => 'core', - 'category' => 'profilUpdate', - 'phrase' => 'profilUpdate_requiredInformation_error', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Ein Fehler ist aufgetreten, notwendige Informationen fehlen', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'An error occurred, required informations are missing', - 'description' => '', - 'insertvon' => 'system' - ) - ) - ), - array( - 'app' => 'core', - 'category' => 'profilUpdate', - 'phrase' => 'profilUpdate_insert_error', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Ein Fehler ist beim hinzufügen der Profil Änderung aufgetreten', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'An error occurred during the insertion of the profil update', - 'description' => '', - 'insertvon' => 'system' - ) - ) - ), - array( - 'app' => 'core', - 'category' => 'profilUpdate', - 'phrase' => 'profilUpdate_insertKontakt_error', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Ein Fehler ist beim hinzufügen des Kontaktes aufgetreten', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'An error occurred during the insertion of the contact', - 'description' => '', - 'insertvon' => 'system' - ) - ) - ), - array( - 'app' => 'core', - 'category' => 'profilUpdate', - 'phrase' => 'profilUpdate_insertAdresse_error', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Ein Fehler ist beim hinzufügen der Adresse aufgetreten', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'An error occurred during the insertion of the address', - 'description' => '', - 'insertvon' => 'system' - ) - ) - ), - array( - 'app' => 'core', - 'category' => 'profilUpdate', - 'phrase' => 'profilUpdate_updateKontakt_error', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Ein Fehler ist beim ändern eines Kontaktes aufgetreten', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'An error occurred while updating a profil update contact', - 'description' => '', - 'insertvon' => 'system' - ) - ) - ), - array( - 'app' => 'core', - 'category' => 'profilUpdate', - 'phrase' => 'profilUpdate_updateAdresse_error', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Ein Fehler ist beim ändern einer Adresse aufgetreten', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'An error occurred while updating a profil update address', - 'description' => '', - 'insertvon' => 'system' - ) - ) - ), - array( - 'app' => 'core', - 'category' => 'profilUpdate', - 'phrase' => 'profilUpdate_loadingZustellkontakte_error', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Ein Fehler ist während dem laden der Zustellkontakte aufgetreten', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'An error occurred when querying zustellkontakte', - 'description' => '', - 'insertvon' => 'system' - ) - ) - ), - array( - 'app' => 'core', - 'category' => 'profilUpdate', - 'phrase' => 'profilUpdate_loadingZustellAdressen_error', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Ein Fehler ist während dem laden der Zustelladressen aufgetreten', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'An error occurred when querying zustelladressen', - 'description' => '', - 'insertvon' => 'system' - ) - ) - ), - array( - 'app' => 'core', - 'category' => 'profilUpdate', - 'phrase' => 'acceptUpdate', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Änderung annehmen', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'Accept Request', - 'description' => '', - 'insertvon' => 'system' - ) - ) - ), - array( - 'app' => 'core', - 'category' => 'profilUpdate', - 'phrase' => 'denyUpdate', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Änderung ablehnen', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'Deny Request', - 'description' => '', - 'insertvon' => 'system' - ) - ) - ), - array( - 'app' => 'core', - 'category' => 'profilUpdate', - 'phrase' => 'showRequest', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Änderung anzeigen', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'Show request', - 'description' => '', - 'insertvon' => 'system' - ) - ) - ), - array( - 'app' => 'core', - 'category' => 'profilUpdate', - 'phrase' => 'profilUpdate_status_error', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Ein Fehler ist aufgetreten, der Status "{0}" ist unbekannt', - 'description' => 'Fehler der auftritt wenn es den Status nicht in der Datenbank gibt', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'An error occurred, the status "{0}" is not known', - 'description' => 'error that occurrs when the used status is not present in the database', - 'insertvon' => 'system' - ) - ) - ), - array( - 'app' => 'core', - 'category' => 'profilUpdate', - 'phrase' => 'profilUpdate_topic_error', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Ein Fehler ist aufgetreten, das Topic "{0}" existiert nicht', - 'description' => 'Fehler der auftritt wenn es das Topic nicht in der Datenbank gibt', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'An error occurred, the topic "{0}" is not known', - 'description' => 'error that occurrs when the used topic is not present in the database', - 'insertvon' => 'system' - ) - ) - ), - array( - 'app' => 'core', - 'category' => 'profilUpdate', - 'phrase' => 'profilUpdate_address_error', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Ein Fehler ist aufgetreten, Es war nicht möglich die Adresse mit ID {0} in der Datenbank anzulegen', - 'description' => 'Fehler der auftritt wenn es nicht möglich war eine neue Adresse anzulegen', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'An error occurred, it wasn\'t possible to add new address with ID {0} to the database', - 'description' => 'error that occurrs when it wasn\'t possible to add new address in db', - 'insertvon' => 'system' - ) - ) - ), - array( - 'app' => 'core', - 'category' => 'profilUpdate', - 'phrase' => 'profilUpdate_kontakt_error', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Ein Fehler ist aufgetreten, Es war nicht möglich den Kontakt mit ID {0} in der Datenbank anzulegen', - 'description' => 'Fehler der auftritt wenn es nicht möglich war einen neuen Kontakt anzulegen', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'An error occurred, it wasn\'t possible to add new contact with ID {0} to the database', - 'description' => 'error that occurrs when it wasn\'t possible to add new contact in db', - 'insertvon' => 'system' - ) - ) - ), - array( - 'app' => 'core', - 'category' => 'profilUpdate', - 'phrase' => 'Name', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Name', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'Name', - 'description' => '', - 'insertvon' => 'system' - ) - ) - ), - array( - 'app' => 'core', - 'category' => 'profilUpdate', - 'phrase' => 'Topic', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Thema', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'Topic', - 'description' => '', - 'insertvon' => 'system' - ) - ) - ), - array( - 'app' => 'core', - 'category' => 'profilUpdate', - 'phrase' => 'insertamum', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Einfüge Datum', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'Insert Date', - 'description' => '', - 'insertvon' => 'system' - ) - ) - ), - array( - 'app' => 'core', - 'category' => 'profilUpdate', - 'phrase' => 'actions', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Aktionen', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'Actions', - 'description' => '', - 'insertvon' => 'system' - ) - ) - ), - array( - 'app' => 'core', - 'category' => 'profilUpdate', - 'phrase' => 'Status', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Status', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'Status', - 'description' => '', - 'insertvon' => 'system' - ) - ) - ), + array( + 'app' => 'core', + 'category' => 'profilUpdate', + 'phrase' => 'kontaktTyp', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Kontakttyp', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'contact type', + 'description' => '', + 'insertvon' => 'system' + ) + ) + ), + array( + 'app' => 'core', + 'category' => 'profilUpdate', + 'phrase' => 'nebenwohnsitz', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Nebenwohnsitz', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'secondary residence', + 'description' => '', + 'insertvon' => 'system' + ) + ) + ), + array( + 'app' => 'core', + 'category' => 'profilUpdate', + 'phrase' => 'hauptwohnsitz', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Hauptwohnsitz', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'main residence', + 'description' => '', + 'insertvon' => 'system' + ) + ) + ), + array( + 'app' => 'core', + 'category' => 'profilUpdate', + 'phrase' => 'homeoffice', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Homeoffice', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'Homeoffice', + 'description' => '', + 'insertvon' => 'system' + ) + ) + ), + array( + 'app' => 'core', + 'category' => 'profilUpdate', + 'phrase' => 'rechnungsadresse', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Rechnungsadresse', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'Billing address', + 'description' => '', + 'insertvon' => 'system' + ) + ) + ), + array( + 'app' => 'core', + 'category' => 'profilUpdate', + 'phrase' => 'notfallkontakt', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Notfallkontakt', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'Emergency contact', + 'description' => '', + 'insertvon' => 'system' + ) + ) + ), + array( + 'app' => 'core', + 'category' => 'profilUpdate', + 'phrase' => 'mobiltelefonnummer', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Mobiltelefonnummer', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'Cell phone number', + 'description' => '', + 'insertvon' => 'system' + ) + ) + ), + array( + 'app' => 'core', + 'category' => 'profilUpdate', + 'phrase' => 'homepage', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Homepage', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'Homepage', + 'description' => '', + 'insertvon' => 'system' + ) + ) + ), + array( + 'app' => 'core', + 'category' => 'profilUpdate', + 'phrase' => 'faxnummer', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Faxnummer', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'Fax number', + 'description' => '', + 'insertvon' => 'system' + ) + ) + ), + array( + 'app' => 'core', + 'category' => 'profilUpdate', + 'phrase' => 'zustellungsKontakt', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Zustellungs Kontakt', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'Delivery contact', + 'description' => '', + 'insertvon' => 'system' + ) + ) + ), + array( + 'app' => 'core', + 'category' => 'profilUpdate', + 'phrase' => 'statusMessage', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Status Mitteilung', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'Status message', + 'description' => '', + 'insertvon' => 'system' + ) + ) + ), + array( + 'app' => 'core', + 'category' => 'profilUpdate', + 'phrase' => 'profilUpdateInformationMessage', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Erneuern Sie ihr {0} und laden Sie die passenden Beweisdokumente hoch', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'Please update your {0} and upload the corresponding Document of proof', + 'description' => '', + 'insertvon' => 'system' + ) + ) + ), + array( + 'app' => 'core', + 'category' => 'profilUpdate', + 'phrase' => 'profilUpdateRequest', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Profil Änderungs Anfrage', + 'description' => 'Eine Änderungs Anfrage', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'Profil Update Request', + 'description' => 'One profil update request', + 'insertvon' => 'system' + ) + ) + ), + array( + 'app' => 'core', + 'category' => 'profilUpdate', + 'phrase' => 'profilUpdateRequests', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Profil Änderungs Anfragen', + 'description' => 'Mehrere Änderungs Anfragen', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'Profil Update Requests', + 'description' => 'Multiple update requests', + 'insertvon' => 'system' + ) + ) + ), + array( + 'app' => 'core', + 'category' => 'profilUpdate', + 'phrase' => 'statusDate', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Status Datum', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'Date of Status', + 'description' => '', + 'insertvon' => 'system' + ) + ) + ), + array( + 'app' => 'core', + 'category' => 'profilUpdate', + 'phrase' => 'userID', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'UserID', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'UserID', + 'description' => '', + 'insertvon' => 'system' + ) + ) + ), + array( + 'app' => 'core', + 'category' => 'profilUpdate', + 'phrase' => 'anfrageThema', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Thema der Anfrage', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'Topic of Request', + 'description' => '', + 'insertvon' => 'system' + ) + ) + ), + array( + 'app' => 'core', + 'category' => 'profilUpdate', + 'phrase' => 'anfrageDatum', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Datum der Anfrage', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'Date of Request', + 'description' => '', + 'insertvon' => 'system' + ) + ) + ), + array( + 'app' => 'core', + 'category' => 'profilUpdate', + 'phrase' => 'update', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Aktualisierung', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'update', + 'description' => '', + 'insertvon' => 'system' + ) + ) + ), + array( + 'app' => 'core', + 'category' => 'profilUpdate', + 'phrase' => 'accept', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Annehmen', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'accept', + 'description' => '', + 'insertvon' => 'system' + ) + ) + ), + array( + 'app' => 'core', + 'category' => 'profilUpdate', + 'phrase' => 'deny', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Ablehnen', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'deny', + 'description' => '', + 'insertvon' => 'system' + ) + ) + ), + array( + 'app' => 'core', + 'category' => 'profilUpdate', + 'phrase' => 'UID', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Benutzer', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'User', + 'description' => '', + 'insertvon' => 'system' + ) + ) + ), + array( + 'app' => 'core', + 'category' => 'profilUpdate', + 'phrase' => 'pendingRequests', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Ausstehende Anfragen', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'Pending Requests', + 'description' => '', + 'insertvon' => 'system' + ) + ) + ), + array( + 'app' => 'core', + 'category' => 'profilUpdate', + 'phrase' => 'acceptedRequests', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Angenommene Anfragen', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'Accepted Requests', + 'description' => '', + 'insertvon' => 'system' + ) + ) + ), + array( + 'app' => 'core', + 'category' => 'profilUpdate', + 'phrase' => 'rejectedRequests', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Abgelehnte Anfragen', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'Rejected Requests', + 'description' => '', + 'insertvon' => 'system' + ) + ) + ), + array( + 'app' => 'core', + 'category' => 'profilUpdate', + 'phrase' => 'allRequests', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Alle Anfragen', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'All Requests', + 'description' => '', + 'insertvon' => 'system' + ) + ) + ), + array( + 'app' => 'core', + 'category' => 'profilUpdate', + 'phrase' => 'deleteContact', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Kontakt löschen', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'Delete contact', + 'description' => '', + 'insertvon' => 'system' + ) + ) + ), + array( + 'app' => 'core', + 'category' => 'profilUpdate', + 'phrase' => 'deleteAddress', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Adresse löschen', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'Delete address', + 'description' => '', + 'insertvon' => 'system' + ) + ) + ), + array( + 'app' => 'core', + 'category' => 'profilUpdate', + 'phrase' => 'addContact', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Kontakt hinzufügen', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'Add contact', + 'description' => '', + 'insertvon' => 'system' + ) + ) + ), + array( + 'app' => 'core', + 'category' => 'profilUpdate', + 'phrase' => 'addContact', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Adresse hinzufügen', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'Add address', + 'description' => '', + 'insertvon' => 'system' + ) + ) + ), + array( + 'app' => 'core', + 'category' => 'profilUpdate', + 'phrase' => 'vorname', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Vorname', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'First name', + 'description' => '', + 'insertvon' => 'system' + ) + ) + ), + array( + 'app' => 'core', + 'category' => 'profilUpdate', + 'phrase' => 'nachname', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Nachname', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'Last name', + 'description' => '', + 'insertvon' => 'system' + ) + ) + ), + array( + 'app' => 'core', + 'category' => 'profilUpdate', + 'phrase' => 'title', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Titel', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'Title', + 'description' => '', + 'insertvon' => 'system' + ) + ) + ), + array( + 'app' => 'core', + 'category' => 'profilUpdate', + 'phrase' => 'pending', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Ausstehend', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'Pending', + 'description' => '', + 'insertvon' => 'system' + ) + ) + ), + array( + 'app' => 'core', + 'category' => 'profilUpdate', + 'phrase' => 'accepted', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Akzeptiert', + 'description' => 'Profil Änderungen die akzeptiert wurden', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'Accepted', + 'description' => 'Profil updates that were accepted', + 'insertvon' => 'system' + ) + ) + ), + array( + 'app' => 'core', + 'category' => 'profilUpdate', + 'phrase' => 'rejected', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Abgelehnt', + 'description' => 'Profil Änderungen die abgelehnt wurden', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'Rejected', + 'description' => 'Profil updates that were rejected', + 'insertvon' => 'system' + ) + ) + ), + array( + 'app' => 'core', + 'category' => 'profilUpdate', + 'phrase' => 'profilUdate_address_error', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Nicht möglich adressenID {0} für profil Änderung {1} hinzuzufügen', + 'description' => 'Fehlermeldung wenn die AdressenID bereits in einer Profil Änderung verwendet wurde', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'was not able to add addressID {0} to profilRequest {1}', + 'description' => 'Error message when the addressID was already used for another profil update', + 'insertvon' => 'system' + ) + ) + ), + array( + 'app' => 'core', + 'category' => 'profilUpdate', + 'phrase' => 'profilUpdate_permission_error', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Notwendinge Berechtigungen fehlen', + 'description' => 'Fehlermeldung wenn notwendige Berechtigungen für Aktionen fehlen', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'Missing necessary permission', + 'description' => 'Error message if necessary permissions are missing', + 'insertvon' => 'system' + ) + ) + ), + array( + 'app' => 'core', + 'category' => 'profilUpdate', + 'phrase' => 'profilUpdate_dms_error', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Das angeforderte Dokument ist kein Anhang einer Profil Änderung', + 'description' => 'Fehlermeldung wenn ein Dokument angefordert wird, das nicht im zusammenhang mit einer Profil Änderung ist', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'The requested document is not an attachment for any profil update', + 'description' => 'Error message if a document is requested that is not connected with a profil update', + 'insertvon' => 'system' + ) + ) + ), + array( + 'app' => 'core', + 'category' => 'profilUpdate', + 'phrase' => 'profilUpdate_email_error', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Ein Fehler ist aufgetreten beim sender der Email', + 'description' => 'Fehlermeldung wenn ein Fehler beim senden einer Email auftritt', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'An error occurred when sending an email', + 'description' => 'Error message if an error occurred while sending emails', + 'insertvon' => 'system' + ) + ) + ), + array( + 'app' => 'core', + 'category' => 'profilUpdate', + 'phrase' => 'profilUpdate_studentCheck_error', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Ein Fehler ist aufgetreten beim Überprüfen ob die Person ein Student ist', + 'description' => 'Fehlermeldung wenn ein Fehler beim überprüfen eines Studenten auftritt', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'An error occurred while checking if the person is a student', + 'description' => 'Error message if an error occurred when checking if a person is a student', + 'insertvon' => 'system' + ) + ) + ), + array( + 'app' => 'core', + 'category' => 'profilUpdate', + 'phrase' => 'profilUpdate_mitarbeiterCheck_error', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Ein Fehler ist aufgetreten, es wurde kein Mitarbeiter mit der gleichen uid gefunden', + 'description' => 'Fehlermeldung wenn ein Fehler beim überprüfen eines Mitarbeiter auftritt', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'An error occurred while checking if the person is a mitarbeiter', + 'description' => 'Error message if an error occurred when checking if a person is a mitarbeiter', + 'insertvon' => 'system' + ) + ) + ), + array( + 'app' => 'core', + 'category' => 'profilUpdate', + 'phrase' => 'profilUpdate_loading_error', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Ein Fehler beim laden der Profil Änderung ist aufgetreten', + 'description' => 'Fehlermeldung wenn ein Fehler beim laden einer Profil Änderung auftritt', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'An error occurred while loading the profil update', + 'description' => 'Error message if an error occurred when loading a profil update', + 'insertvon' => 'system' + ) + ) + ), + array( + 'app' => 'core', + 'category' => 'profilUpdate', + 'phrase' => 'profilUpdate_dmsVersion_error', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Ein Fehler beim laden der Dms Version ist aufgetreten', + 'description' => 'Fehlermeldung wenn ein Fehler beim laden einer Dms Version auftritt', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'An error occurred while loading the dms version', + 'description' => 'Error message if an error occurred when loading a dms version', + 'insertvon' => 'system' + ) + ) + ), + array( + 'app' => 'core', + 'category' => 'profilUpdate', + 'phrase' => 'profilUpdate_deleteZustellung_error', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Ein Fehler ist aufgetretten, man kann keine Zustellung löschen', + 'description' => 'Fehlermeldung wenn versucht wird eine Zustellungsresource zu löschen', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'An error occurred, it is not possible to delete a resource marked as zustellung', + 'description' => 'Error message if someone tried to delete a resource that is marked as zustellung', + 'insertvon' => 'system' + ) + ) + ), + array( + 'app' => 'core', + 'category' => 'profilUpdate', + 'phrase' => 'profilUpdate_changeTwice_error', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Ein Fehler ist aufgetretten, man kann die gleiche Profil Information nicht zweimal ändern', + 'description' => 'Fehlermeldung wenn versucht wird eine Information zweimal zu ändern', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'An error occurred, it is not possible to change the same profil information twice', + 'description' => 'Error message if someone tried to change the same profil information twice', + 'insertvon' => 'system' + ) + ) + ), + array( + 'app' => 'core', + 'category' => 'profilUpdate', + 'phrase' => 'profilUpdate_changeTopicTwice_error', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Eine Anfrage {0} ist bereits geöffnet worden', + 'description' => 'Wenn die Profil Änderung nicht über Kontakte oder Adressen ist dann darf das Topic nur einmalig verändert werden', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'A request to change {0} is already open', + 'description' => 'if the profil update is not about contacts or addresses then the topic has to be unique', + 'insertvon' => 'system' + ) + ) + ), + array( + 'app' => 'core', + 'category' => 'profilUpdate', + 'phrase' => 'profilUpdate_loadingOE_error', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Ein Fehler beim laden der oe_einheit ist aufgetreten', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'An error occurred, when loading the oe_einheit', + 'description' => '', + 'insertvon' => 'system' + ) + ) + ), + array( + 'app' => 'core', + 'category' => 'profilUpdate', + 'phrase' => 'profilUpdate_requiredInformation_error', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Ein Fehler ist aufgetreten, notwendige Informationen fehlen', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'An error occurred, required informations are missing', + 'description' => '', + 'insertvon' => 'system' + ) + ) + ), + array( + 'app' => 'core', + 'category' => 'profilUpdate', + 'phrase' => 'profilUpdate_insert_error', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Ein Fehler ist beim hinzufügen der Profil Änderung aufgetreten', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'An error occurred during the insertion of the profil update', + 'description' => '', + 'insertvon' => 'system' + ) + ) + ), + array( + 'app' => 'core', + 'category' => 'profilUpdate', + 'phrase' => 'profilUpdate_insertKontakt_error', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Ein Fehler ist beim hinzufügen des Kontaktes aufgetreten', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'An error occurred during the insertion of the contact', + 'description' => '', + 'insertvon' => 'system' + ) + ) + ), + array( + 'app' => 'core', + 'category' => 'profilUpdate', + 'phrase' => 'profilUpdate_insertAdresse_error', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Ein Fehler ist beim hinzufügen der Adresse aufgetreten', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'An error occurred during the insertion of the address', + 'description' => '', + 'insertvon' => 'system' + ) + ) + ), + array( + 'app' => 'core', + 'category' => 'profilUpdate', + 'phrase' => 'profilUpdate_updateKontakt_error', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Ein Fehler ist beim ändern eines Kontaktes aufgetreten', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'An error occurred while updating a profil update contact', + 'description' => '', + 'insertvon' => 'system' + ) + ) + ), + array( + 'app' => 'core', + 'category' => 'profilUpdate', + 'phrase' => 'profilUpdate_updateAdresse_error', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Ein Fehler ist beim ändern einer Adresse aufgetreten', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'An error occurred while updating a profil update address', + 'description' => '', + 'insertvon' => 'system' + ) + ) + ), + array( + 'app' => 'core', + 'category' => 'profilUpdate', + 'phrase' => 'profilUpdate_loadingZustellkontakte_error', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Ein Fehler ist während dem laden der Zustellkontakte aufgetreten', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'An error occurred when querying zustellkontakte', + 'description' => '', + 'insertvon' => 'system' + ) + ) + ), + array( + 'app' => 'core', + 'category' => 'profilUpdate', + 'phrase' => 'profilUpdate_loadingZustellAdressen_error', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Ein Fehler ist während dem laden der Zustelladressen aufgetreten', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'An error occurred when querying zustelladressen', + 'description' => '', + 'insertvon' => 'system' + ) + ) + ), + array( + 'app' => 'core', + 'category' => 'profilUpdate', + 'phrase' => 'acceptUpdate', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Änderung annehmen', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'Accept Request', + 'description' => '', + 'insertvon' => 'system' + ) + ) + ), + array( + 'app' => 'core', + 'category' => 'profilUpdate', + 'phrase' => 'denyUpdate', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Änderung ablehnen', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'Deny Request', + 'description' => '', + 'insertvon' => 'system' + ) + ) + ), + array( + 'app' => 'core', + 'category' => 'profilUpdate', + 'phrase' => 'showRequest', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Änderung anzeigen', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'Show request', + 'description' => '', + 'insertvon' => 'system' + ) + ) + ), + array( + 'app' => 'core', + 'category' => 'profilUpdate', + 'phrase' => 'profilUpdate_status_error', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Ein Fehler ist aufgetreten, der Status "{0}" ist unbekannt', + 'description' => 'Fehler der auftritt wenn es den Status nicht in der Datenbank gibt', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'An error occurred, the status "{0}" is not known', + 'description' => 'error that occurrs when the used status is not present in the database', + 'insertvon' => 'system' + ) + ) + ), + array( + 'app' => 'core', + 'category' => 'profilUpdate', + 'phrase' => 'profilUpdate_topic_error', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Ein Fehler ist aufgetreten, das Topic "{0}" existiert nicht', + 'description' => 'Fehler der auftritt wenn es das Topic nicht in der Datenbank gibt', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'An error occurred, the topic "{0}" is not known', + 'description' => 'error that occurrs when the used topic is not present in the database', + 'insertvon' => 'system' + ) + ) + ), + array( + 'app' => 'core', + 'category' => 'profilUpdate', + 'phrase' => 'profilUpdate_address_error', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Ein Fehler ist aufgetreten, Es war nicht möglich die Adresse mit ID {0} in der Datenbank anzulegen', + 'description' => 'Fehler der auftritt wenn es nicht möglich war eine neue Adresse anzulegen', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'An error occurred, it wasn\'t possible to add new address with ID {0} to the database', + 'description' => 'error that occurrs when it wasn\'t possible to add new address in db', + 'insertvon' => 'system' + ) + ) + ), + array( + 'app' => 'core', + 'category' => 'profilUpdate', + 'phrase' => 'profilUpdate_kontakt_error', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Ein Fehler ist aufgetreten, Es war nicht möglich den Kontakt mit ID {0} in der Datenbank anzulegen', + 'description' => 'Fehler der auftritt wenn es nicht möglich war einen neuen Kontakt anzulegen', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'An error occurred, it wasn\'t possible to add new contact with ID {0} to the database', + 'description' => 'error that occurrs when it wasn\'t possible to add new contact in db', + 'insertvon' => 'system' + ) + ) + ), + array( + 'app' => 'core', + 'category' => 'profilUpdate', + 'phrase' => 'Name', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Name', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'Name', + 'description' => '', + 'insertvon' => 'system' + ) + ) + ), + array( + 'app' => 'core', + 'category' => 'profilUpdate', + 'phrase' => 'Topic', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Thema', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'Topic', + 'description' => '', + 'insertvon' => 'system' + ) + ) + ), + array( + 'app' => 'core', + 'category' => 'profilUpdate', + 'phrase' => 'insertamum', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Einfüge Datum', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'Insert Date', + 'description' => '', + 'insertvon' => 'system' + ) + ) + ), + array( + 'app' => 'core', + 'category' => 'profilUpdate', + 'phrase' => 'actions', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Aktionen', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'Actions', + 'description' => '', + 'insertvon' => 'system' + ) + ) + ), + array( + 'app' => 'core', + 'category' => 'profilUpdate', + 'phrase' => 'Status', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Status', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'Status', + 'description' => '', + 'insertvon' => 'system' + ) + ) + ), - //ProfilUpdate Phrasen ende + //ProfilUpdate Phrasen ende array( 'app' => 'core', 'category' => 'global', @@ -33404,7 +33424,7 @@ array( 'insertvon' => 'system' ) ) - ), + ), array( 'app' => 'core', 'category' => 'lehre', @@ -33426,25 +33446,25 @@ array( ) ), array( - 'app' => 'core', - 'category' => 'lehre', - 'phrase' => 'last_status_confirm_delete', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Das Löschen der letzten Rolle löscht auch den gesamten Prestudent-Datensatz! Möchten Sie fortfahren?', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'Deleting the last role also deletes the entire Prestudent record! Do you want to continue?', - 'description' => '', - 'insertvon' => 'system' - ) + 'app' => 'core', + 'category' => 'lehre', + 'phrase' => 'last_status_confirm_delete', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Das Löschen der letzten Rolle löscht auch den gesamten Prestudent-Datensatz! Möchten Sie fortfahren?', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'Deleting the last role also deletes the entire Prestudent record! Do you want to continue?', + 'description' => '', + 'insertvon' => 'system' ) - ), + ) + ), array( 'app' => 'core', 'category' => 'lehre', @@ -33907,25 +33927,25 @@ array( ) ), array( - 'app' => 'core', - 'category' => 'lehre', - 'phrase' => 'error_rolleBereitsVorhanden', - 'insertvon' => 'system', - 'phrases' => array( - array( - 'sprache' => 'German', - 'text' => 'Diese Rolle ist bereits vorhanden!', - 'description' => '', - 'insertvon' => 'system' - ), - array( - 'sprache' => 'English', - 'text' => 'This role already exists!', - 'description' => '', - 'insertvon' => 'system' - ) + 'app' => 'core', + 'category' => 'lehre', + 'phrase' => 'error_rolleBereitsVorhanden', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Diese Rolle ist bereits vorhanden!', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'This role already exists!', + 'description' => '', + 'insertvon' => 'system' ) - ), + ) + ), array( 'app' => 'core', 'category' => 'lehre', @@ -36494,7 +36514,6 @@ array( ) ) ), - // Betriebsmittel end array( 'app' => 'core', 'category' => 'uhstat', @@ -36696,7 +36715,7 @@ array( ) ) ), - array( + array( 'app' => 'core', 'category' => 'ampeln', 'phrase' => 'super', @@ -37157,9 +37176,74 @@ array( 'insertvon' => 'system' ) ) - ) -// CIS4 phrases from legacy code end ), +// CIS4 phrases from legacy code end +// FHC4 Phrases Abschlusspruefung + array( + 'app' => 'core', + 'category' => 'stv', + 'phrase' => 'tab_finalexam', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Abschlussprüfung', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'Final exam', + 'description' => '', + 'insertvon' => 'system' + ) + ) + ), + array( + 'app' => 'core', + 'category' => 'ui', + 'phrase' => 'pruefungsnotizenBachelor2', + 'insertvon' => 'system', + 'phrases' => array( + array( + 'sprache' => 'German', + 'text' => 'Prüfungsteil/e in Englisch (Optional - entsprechend der Vorgabe des Studiengangs): + << Nichtzutreffendes löschen >> + * Präsentation der Bachelorarbeit + * Prüfungsgespräch über die Bachelorarbeit + + Fragen zur Eröffnung des Prüfungsgesprächs + << Bitte ausfüllen >> + + Gründe für negative Beurteilung ODER allfällige Anmerkungen bei positiver Beurteilung + << Bitte ausfüllen >> + + Allfällige besondere Vorkommnisse + << Bitte ausfüllen >>', + 'description' => '', + 'insertvon' => 'system' + ), + array( + 'sprache' => 'English', + 'text' => 'Parts of the examination held in English (Optional - in line with the degree program\'s guidelines): + << Delete as appropriate >> + * Presentation of the Bachelor Paper + * Examination interview on the Bachelor Paper + + Question(s) to open the examination interview + << Please fill out >> + + Reasons for failing OR any possible explanatory notes on a passing grade + << Please fill out >> + + Any unusual occurrences + << Please fill out >>', + 'description' => '', + 'insertvon' => 'system' + ) + ) + ), +// FHC4 Phrases Abschlusspruefung End ); @@ -37191,11 +37275,11 @@ foreach ($phrases as $phrase) insertvon, category) VALUES(". - $db->db_add_param($phrase['app']). ','. - $db->db_add_param($phrase['phrase']). ','. - ' now(),'. - $db->db_add_param($phrase['insertvon']). ','. - $db->db_add_param($phrase['category']). ');'; + $db->db_add_param($phrase['app']). ','. + $db->db_add_param($phrase['phrase']). ','. + ' now(),'. + $db->db_add_param($phrase['insertvon']). ','. + $db->db_add_param($phrase['category']). ');'; if ($db->db_query($qry_insert)) { @@ -37213,7 +37297,7 @@ foreach ($phrases as $phrase) } else echo 'Fehler: '. $phrase['category']. '/'. - $phrase['phrase']. ' hinzufügen nicht möglich
'; + $phrase['phrase']. ' hinzufügen nicht möglich
'; } //phrase existing -> get phrase_id else @@ -37256,14 +37340,14 @@ foreach ($phrases as $phrase) insertamum, insertvon) VALUES(". - $db->db_add_param($phrase_id, FHC_INTEGER). ','. - $db->db_add_param($phrase_phrases['sprache']). ','. - ' NULL,'. - ' NULL,'. - $db->db_add_param($phrase_phrases['text']). ','. - $db->db_add_param($phrase_phrases['description']). ','. - ' now(),'. - $db->db_add_param($phrase_phrases['insertvon']). ');'; + $db->db_add_param($phrase_id, FHC_INTEGER). ','. + $db->db_add_param($phrase_phrases['sprache']). ','. + ' NULL,'. + ' NULL,'. + $db->db_add_param($phrase_phrases['text']). ','. + $db->db_add_param($phrase_phrases['description']). ','. + ' now(),'. + $db->db_add_param($phrase_phrases['insertvon']). ');'; if ($db->db_query($qry_insert)) {