mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-07-15 14:02:17 +00:00
d7b700f781
- Extension installer is visible only for system/extensions - Removed the old phrases editor from Vilesci - system/checksystem.php does not call anymore system/phrasesupdate.php - system/phrasesupdate.php has been removed - Added new directory application/phrases - application/phrases contains one file for each phrases category, and one file contains all the phrases for that category - Added new controller system/phrases/Manager to install phrases in the core - Added new constants CORE_PHRASES_DIRECTORY, INSERT_BY, APP, CATEGORY, PHRASE, SPRACHE, TEXT and DESCRIPTION to libraries/PhrasesLib - libraries/PhrasesLib now loads EPrintfLib - Removed public methods getPhraseByApp, getPhraseInhalt, delPhrasentext, savePhrase, getPhrasentextById, insertPhraseinhalt, getVorlagetextById and updatePhraseInhalt from libraries/PhrasesLib - Renamed public method getJSON to toJSON in libraries/PhrasesLib - Added new public methods installFromCore and installFrom to libraries/PhrasesLib - Added new private methods _installPhrases and _addPhrases to libraries/PhrasesLib
1468 lines
26 KiB
PHP
1468 lines
26 KiB
PHP
<?php
|
|
/* Copyright (C) 2013 FH Technikum-Wien
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as
|
|
* published by the Free Software Foundation; either version 2 of the
|
|
* License, or (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
|
*
|
|
*/
|
|
|
|
$phrases = array(
|
|
array(
|
|
'app' => 'core',
|
|
'category' => 'global',
|
|
'phrase' => 'antragBearbeiten',
|
|
'phrases' => array(
|
|
array(
|
|
'sprache' => 'German',
|
|
'text' => "Antrag bearbeiten",
|
|
'description' => '',
|
|
),
|
|
array(
|
|
'sprache' => 'English',
|
|
'text' => "Go to application",
|
|
'description' => '',
|
|
)
|
|
)
|
|
),
|
|
array(
|
|
'app' => 'core',
|
|
'category' => 'global',
|
|
'phrase' => 'gueltigVon',
|
|
'phrases' => array(
|
|
array(
|
|
'sprache' => 'German',
|
|
'text' => "gültig von",
|
|
'description' => '',
|
|
),
|
|
array(
|
|
'sprache' => 'English',
|
|
'text' => "valid from",
|
|
'description' => '',
|
|
)
|
|
)
|
|
),
|
|
array(
|
|
'app' => 'core',
|
|
'category' => 'global',
|
|
'phrase' => 'gueltigBis',
|
|
'phrases' => array(
|
|
array(
|
|
'sprache' => 'German',
|
|
'text' => "gültig bis",
|
|
'description' => '',
|
|
),
|
|
array(
|
|
'sprache' => 'English',
|
|
'text' => "valid to",
|
|
'description' => '',
|
|
)
|
|
)
|
|
),
|
|
array(
|
|
'app' => 'core',
|
|
'category' => 'global',
|
|
'phrase' => 'unbeschraenkt',
|
|
'phrases' => array(
|
|
array(
|
|
'sprache' => 'German',
|
|
'text' => "unbeschränkt",
|
|
'description' => '',
|
|
),
|
|
array(
|
|
'sprache' => 'English',
|
|
'text' => "unlimited",
|
|
'description' => '',
|
|
)
|
|
)
|
|
),
|
|
array(
|
|
'app' => 'core',
|
|
'category' => 'global',
|
|
'phrase' => 'alle',
|
|
'phrases' => array(
|
|
array(
|
|
'sprache' => 'German',
|
|
'text' => 'alle',
|
|
'description' => '',
|
|
),
|
|
array(
|
|
'sprache' => 'English',
|
|
'text' => 'all',
|
|
'description' => '',
|
|
)
|
|
)
|
|
),
|
|
array(
|
|
'app' => 'core',
|
|
'category' => 'global',
|
|
'phrase' => 'bearbeitungGesperrt',
|
|
'phrases' => array(
|
|
array(
|
|
'sprache' => 'German',
|
|
'text' => 'Bearbeitung gesperrt',
|
|
'description' => '',
|
|
),
|
|
array(
|
|
'sprache' => 'English',
|
|
'text' => 'Locked for editing',
|
|
'description' => '',
|
|
)
|
|
)
|
|
),
|
|
array(
|
|
'app' => 'core',
|
|
'category' => 'global',
|
|
'phrase' => 'zeilen',
|
|
'phrases' => array(
|
|
array(
|
|
'sprache' => 'German',
|
|
'text' => 'Zeilen',
|
|
'description' => '',
|
|
),
|
|
array(
|
|
'sprache' => 'English',
|
|
'text' => 'lines',
|
|
'description' => '',
|
|
)
|
|
)
|
|
),
|
|
array(
|
|
'app' => 'core',
|
|
'category' => 'global',
|
|
'phrase' => 'text',
|
|
'phrases' => array(
|
|
array(
|
|
'sprache' => 'German',
|
|
'text' => 'Text',
|
|
'description' => '',
|
|
),
|
|
array(
|
|
'sprache' => 'English',
|
|
'text' => 'text',
|
|
'description' => '',
|
|
)
|
|
)
|
|
),
|
|
array(
|
|
'app' => 'core',
|
|
'category' => 'global',
|
|
'phrase' => 'titel',
|
|
'phrases' => array(
|
|
array(
|
|
'sprache' => 'German',
|
|
'text' => 'Titel',
|
|
'description' => '',
|
|
),
|
|
array(
|
|
'sprache' => 'English',
|
|
'text' => 'title',
|
|
'description' => '',
|
|
)
|
|
)
|
|
),
|
|
array(
|
|
'app' => 'core',
|
|
'category' => 'global',
|
|
'phrase' => 'uebersicht',
|
|
'phrases' => array(
|
|
array(
|
|
'sprache' => 'German',
|
|
'text' => 'Übersicht',
|
|
'description' => '',
|
|
),
|
|
array(
|
|
'sprache' => 'English',
|
|
'text' => 'overview',
|
|
'description' => '',
|
|
)
|
|
)
|
|
),
|
|
array(
|
|
'app' => 'core',
|
|
'category' => 'global',
|
|
'phrase' => 'details',
|
|
'phrases' => array(
|
|
array(
|
|
'sprache' => 'German',
|
|
'text' => 'Details',
|
|
'description' => '',
|
|
),
|
|
array(
|
|
'sprache' => 'English',
|
|
'text' => 'details',
|
|
'description' => '',
|
|
)
|
|
)
|
|
),
|
|
array(
|
|
'app' => 'core',
|
|
'category' => 'global',
|
|
'phrase' => 'waehlen',
|
|
'phrases' => array(
|
|
array(
|
|
'sprache' => 'German',
|
|
'text' => 'wählen',
|
|
'description' => '',
|
|
),
|
|
array(
|
|
'sprache' => 'English',
|
|
'text' => 'select',
|
|
'description' => '',
|
|
)
|
|
)
|
|
),
|
|
array(
|
|
'app' => 'core',
|
|
'category' => 'global',
|
|
'phrase' => 'vollstaendig',
|
|
'phrases' => array(
|
|
array(
|
|
'sprache' => 'German',
|
|
'text' => 'vollständig',
|
|
'description' => '',
|
|
),
|
|
array(
|
|
'sprache' => 'English',
|
|
'text' => 'complete',
|
|
'description' => '',
|
|
)
|
|
)
|
|
),
|
|
array(
|
|
'app' => 'core',
|
|
'category' => 'global',
|
|
'phrase' => 'unvollstaendig',
|
|
'phrases' => array(
|
|
array(
|
|
'sprache' => 'German',
|
|
'text' => 'unvollständig',
|
|
'description' => '',
|
|
),
|
|
array(
|
|
'sprache' => 'English',
|
|
'text' => 'incomplete',
|
|
'description' => '',
|
|
)
|
|
)
|
|
),
|
|
array(
|
|
'app' => 'core',
|
|
'category' => 'global',
|
|
'phrase' => 'betreff',
|
|
'phrases' => array(
|
|
array(
|
|
'sprache' => 'German',
|
|
'text' => 'Betreff',
|
|
'description' => '',
|
|
),
|
|
array(
|
|
'sprache' => 'English',
|
|
'text' => 'subject',
|
|
'description' => '',
|
|
)
|
|
)
|
|
),
|
|
array(
|
|
'app' => 'core',
|
|
'category' => 'global',
|
|
'phrase' => 'sender',
|
|
'phrases' => array(
|
|
array(
|
|
'sprache' => 'German',
|
|
'text' => 'Sender',
|
|
'description' => '',
|
|
),
|
|
array(
|
|
'sprache' => 'English',
|
|
'text' => 'sender',
|
|
'description' => '',
|
|
)
|
|
)
|
|
),
|
|
array(
|
|
'app' => 'core',
|
|
'category' => 'global',
|
|
'phrase' => 'empfaenger',
|
|
'phrases' => array(
|
|
array(
|
|
'sprache' => 'German',
|
|
'text' => 'Empfänger',
|
|
'description' => '',
|
|
),
|
|
array(
|
|
'sprache' => 'English',
|
|
'text' => 'receiver',
|
|
'description' => '',
|
|
)
|
|
)
|
|
),
|
|
array(
|
|
'app' => 'core',
|
|
'category' => 'global',
|
|
'phrase' => 'gesendetAm',
|
|
'phrases' => array(
|
|
array(
|
|
'sprache' => 'German',
|
|
'text' => 'gesendet am',
|
|
'description' => '',
|
|
),
|
|
array(
|
|
'sprache' => 'English',
|
|
'text' => 'sent on',
|
|
'description' => '',
|
|
)
|
|
)
|
|
),
|
|
array(
|
|
'app' => 'core',
|
|
'category' => 'global',
|
|
'phrase' => 'gelesenAm',
|
|
'phrases' => array(
|
|
array(
|
|
'sprache' => 'German',
|
|
'text' => 'gelesen am',
|
|
'description' => '',
|
|
),
|
|
array(
|
|
'sprache' => 'English',
|
|
'text' => 'read on',
|
|
'description' => '',
|
|
)
|
|
)
|
|
),
|
|
array(
|
|
'app' => 'core',
|
|
'category' => 'global',
|
|
'phrase' => 'datum',
|
|
'phrases' => array(
|
|
array(
|
|
'sprache' => 'German',
|
|
'text' => 'Datum',
|
|
'description' => '',
|
|
),
|
|
array(
|
|
'sprache' => 'English',
|
|
'text' => 'date',
|
|
'description' => '',
|
|
)
|
|
)
|
|
),
|
|
array(
|
|
'app' => 'core',
|
|
'category' => 'global',
|
|
'phrase' => 'freigeben',
|
|
'phrases' => array(
|
|
array(
|
|
'sprache' => 'German',
|
|
'text' => 'freigeben',
|
|
'description' => '',
|
|
),
|
|
array(
|
|
'sprache' => 'English',
|
|
'text' => 'approve',
|
|
'description' => '',
|
|
)
|
|
)
|
|
),
|
|
array(
|
|
'app' => 'core',
|
|
'category' => 'global',
|
|
'phrase' => 'letzterBearbeiter',
|
|
'phrases' => array(
|
|
array(
|
|
'sprache' => 'German',
|
|
'text' => 'letzter Bearbeiter',
|
|
'description' => '',
|
|
),
|
|
array(
|
|
'sprache' => 'English',
|
|
'text' => 'last change',
|
|
'description' => '',
|
|
)
|
|
)
|
|
),
|
|
array(
|
|
'app' => 'core',
|
|
'category' => 'global',
|
|
'phrase' => 'letzteAktion',
|
|
'phrases' => array(
|
|
array(
|
|
'sprache' => 'German',
|
|
'text' => 'letzte Aktion',
|
|
'description' => '',
|
|
),
|
|
array(
|
|
'sprache' => 'English',
|
|
'text' => 'last action',
|
|
'description' => '',
|
|
)
|
|
)
|
|
),
|
|
array(
|
|
'app' => 'core',
|
|
'category' => 'global',
|
|
'phrase' => 'gesperrtVon',
|
|
'phrases' => array(
|
|
array(
|
|
'sprache' => 'German',
|
|
'text' => 'gesperrt von',
|
|
'description' => '',
|
|
),
|
|
array(
|
|
'sprache' => 'English',
|
|
'text' => 'locked by',
|
|
'description' => '',
|
|
)
|
|
)
|
|
),
|
|
array(
|
|
'app' => 'core',
|
|
'category' => 'global',
|
|
'phrase' => 'sperrdatum',
|
|
'phrases' => array(
|
|
array(
|
|
'sprache' => 'German',
|
|
'text' => 'sperrdatum',
|
|
'description' => '',
|
|
),
|
|
array(
|
|
'sprache' => 'English',
|
|
'text' => 'locking date',
|
|
'description' => '',
|
|
)
|
|
)
|
|
),
|
|
array(
|
|
'app' => 'core',
|
|
'category' => 'global',
|
|
'phrase' => 'anzahl',
|
|
'phrases' => array(
|
|
array(
|
|
'sprache' => 'German',
|
|
'text' => 'Anzahl',
|
|
'description' => '',
|
|
),
|
|
array(
|
|
'sprache' => 'English',
|
|
'text' => 'amount',
|
|
'description' => '',
|
|
)
|
|
)
|
|
),
|
|
array(
|
|
'app' => 'core',
|
|
'category' => 'global',
|
|
'phrase' => 'abgeschickt',
|
|
'phrases' => array(
|
|
array(
|
|
'sprache' => 'German',
|
|
'text' => 'abgeschickt',
|
|
'description' => '',
|
|
),
|
|
array(
|
|
'sprache' => 'English',
|
|
'text' => 'sent',
|
|
'description' => '',
|
|
)
|
|
)
|
|
),
|
|
array(
|
|
'app' => 'core',
|
|
'category' => 'global',
|
|
'phrase' => 'inaktiv',
|
|
'phrases' => array(
|
|
array(
|
|
'sprache' => 'German',
|
|
'text' => 'inaktiv',
|
|
'description' => '',
|
|
),
|
|
array(
|
|
'sprache' => 'English',
|
|
'text' => 'inactive',
|
|
'description' => '',
|
|
)
|
|
)
|
|
),
|
|
array(
|
|
'app' => 'core',
|
|
'category' => 'global',
|
|
'phrase' => 'aktiv',
|
|
'phrases' => array(
|
|
array(
|
|
'sprache' => 'German',
|
|
'text' => 'aktiv',
|
|
'description' => '',
|
|
),
|
|
array(
|
|
'sprache' => 'English',
|
|
'text' => 'active',
|
|
'description' => '',
|
|
)
|
|
)
|
|
),
|
|
array(
|
|
'app' => 'core',
|
|
'category' => 'global',
|
|
'phrase' => 'gesendet',
|
|
'phrases' => array(
|
|
array(
|
|
'sprache' => 'German',
|
|
'text' => 'gesendet',
|
|
'description' => '',
|
|
),
|
|
array(
|
|
'sprache' => 'English',
|
|
'text' => 'sent',
|
|
'description' => '',
|
|
)
|
|
)
|
|
),
|
|
array(
|
|
'app' => 'core',
|
|
'category' => 'global',
|
|
'phrase' => 'nichtGesendet',
|
|
'phrases' => array(
|
|
array(
|
|
'sprache' => 'German',
|
|
'text' => 'nicht gesendet',
|
|
'description' => '',
|
|
),
|
|
array(
|
|
'sprache' => 'English',
|
|
'text' => 'not sent',
|
|
'description' => '',
|
|
)
|
|
)
|
|
),
|
|
array(
|
|
'app' => 'core',
|
|
'category' => 'global',
|
|
'phrase' => 'anzahlNichtGesendet',
|
|
'phrases' => array(
|
|
array(
|
|
'sprache' => 'German',
|
|
'text' => 'Anzahl (nicht gesendet)',
|
|
'description' => '',
|
|
),
|
|
array(
|
|
'sprache' => 'English',
|
|
'text' => 'amount (not sent)',
|
|
'description' => '',
|
|
)
|
|
)
|
|
),
|
|
array(
|
|
'app' => 'core',
|
|
'category' => 'global',
|
|
'phrase' => 'kontakt',
|
|
'phrases' => array(
|
|
array(
|
|
'sprache' => 'German',
|
|
'text' => 'Kontakt',
|
|
'description' => '',
|
|
),
|
|
array(
|
|
'sprache' => 'English',
|
|
'text' => 'contact',
|
|
'description' => '',
|
|
)
|
|
)
|
|
),
|
|
array(
|
|
'app' => 'core',
|
|
'category' => 'global',
|
|
'phrase' => 'typ',
|
|
'phrases' => array(
|
|
array(
|
|
'sprache' => 'German',
|
|
'text' => 'Typ',
|
|
'description' => '',
|
|
),
|
|
array(
|
|
'sprache' => 'English',
|
|
'text' => 'type',
|
|
'description' => '',
|
|
)
|
|
)
|
|
),
|
|
array(
|
|
'app' => 'core',
|
|
'category' => 'global',
|
|
'phrase' => 'anmerkung',
|
|
'phrases' => array(
|
|
array(
|
|
'sprache' => 'German',
|
|
'text' => 'Anmerkung',
|
|
'description' => '',
|
|
),
|
|
array(
|
|
'sprache' => 'English',
|
|
'text' => 'note',
|
|
'description' => '',
|
|
)
|
|
)
|
|
),
|
|
array(
|
|
'app' => 'core',
|
|
'category' => 'global',
|
|
'phrase' => 'name',
|
|
'phrases' => array(
|
|
array(
|
|
'sprache' => 'German',
|
|
'text' => 'Name',
|
|
'description' => '',
|
|
),
|
|
array(
|
|
'sprache' => 'English',
|
|
'text' => 'name',
|
|
'description' => '',
|
|
)
|
|
)
|
|
),
|
|
array(
|
|
'app' => 'core',
|
|
'category' => 'global',
|
|
'phrase' => 'stammdaten',
|
|
'phrases' => array(
|
|
array(
|
|
'sprache' => 'German',
|
|
'text' => 'Stammdaten',
|
|
'description' => '',
|
|
),
|
|
array(
|
|
'sprache' => 'English',
|
|
'text' => 'master data',
|
|
'description' => '',
|
|
)
|
|
)
|
|
),
|
|
array(
|
|
'app' => 'core',
|
|
'category' => 'global',
|
|
'phrase' => 'uploaddatum',
|
|
'phrases' => array(
|
|
array(
|
|
'sprache' => 'German',
|
|
'text' => 'Uploaddatum',
|
|
'description' => '',
|
|
),
|
|
array(
|
|
'sprache' => 'English',
|
|
'text' => 'upload date',
|
|
'description' => '',
|
|
)
|
|
)
|
|
),
|
|
array(
|
|
'app' => 'core',
|
|
'category' => 'global',
|
|
'phrase' => 'letzterStatus',
|
|
'phrases' => array(
|
|
array(
|
|
'sprache' => 'German',
|
|
'text' => 'letzter Status',
|
|
'description' => '',
|
|
),
|
|
array(
|
|
'sprache' => 'English',
|
|
'text' => 'last status',
|
|
'description' => '',
|
|
)
|
|
)
|
|
),
|
|
array(
|
|
'app' => 'core',
|
|
'category' => 'global',
|
|
'phrase' => 'nachrichten',
|
|
'phrases' => array(
|
|
array(
|
|
'sprache' => 'German',
|
|
'text' => 'Nachrichten',
|
|
'description' => '',
|
|
),
|
|
array(
|
|
'sprache' => 'English',
|
|
'text' => 'Messages',
|
|
'description' => '',
|
|
)
|
|
)
|
|
),
|
|
array(
|
|
'app' => 'core',
|
|
'category' => 'global',
|
|
'phrase' => 'aktivitaeten',
|
|
'phrases' => array(
|
|
array(
|
|
'sprache' => 'German',
|
|
'text' => 'Aktivitäten',
|
|
'description' => '',
|
|
),
|
|
array(
|
|
'sprache' => 'English',
|
|
'text' => 'activities',
|
|
'description' => '',
|
|
)
|
|
)
|
|
),
|
|
array(
|
|
'app' => 'core',
|
|
'category' => 'global',
|
|
'phrase' => 'notizen',
|
|
'phrases' => array(
|
|
array(
|
|
'sprache' => 'German',
|
|
'text' => 'Notizen',
|
|
'description' => '',
|
|
),
|
|
array(
|
|
'sprache' => 'English',
|
|
'text' => 'notes',
|
|
'description' => '',
|
|
)
|
|
)
|
|
),
|
|
array(
|
|
'app' => 'core',
|
|
'category' => 'global',
|
|
'phrase' => 'notiz',
|
|
'phrases' => array(
|
|
array(
|
|
'sprache' => 'German',
|
|
'text' => 'Notiz',
|
|
'description' => '',
|
|
),
|
|
array(
|
|
'sprache' => 'English',
|
|
'text' => 'note',
|
|
'description' => '',
|
|
)
|
|
)
|
|
),
|
|
array(
|
|
'app' => 'core',
|
|
'category' => 'global',
|
|
'phrase' => 'notizDerSTGL',
|
|
'phrases' => array(
|
|
array(
|
|
'sprache' => 'German',
|
|
'text' => 'Notiz der STGL',
|
|
'description' => '',
|
|
),
|
|
array(
|
|
'sprache' => 'English',
|
|
'text' => 'Note of the study course director',
|
|
'description' => '',
|
|
)
|
|
)
|
|
),
|
|
array(
|
|
'app' => 'core',
|
|
'category' => 'global',
|
|
'phrase' => 'aktivitaet',
|
|
'phrases' => array(
|
|
array(
|
|
'sprache' => 'German',
|
|
'text' => 'Aktivität',
|
|
'description' => '',
|
|
),
|
|
array(
|
|
'sprache' => 'English',
|
|
'text' => 'activity',
|
|
'description' => '',
|
|
)
|
|
)
|
|
),
|
|
array(
|
|
'app' => 'core',
|
|
'category' => 'global',
|
|
'phrase' => 'hinzufuegen',
|
|
'phrases' => array(
|
|
array(
|
|
'sprache' => 'German',
|
|
'text' => 'hinzufügen',
|
|
'description' => '',
|
|
),
|
|
array(
|
|
'sprache' => 'English',
|
|
'text' => 'add',
|
|
'description' => '',
|
|
)
|
|
)
|
|
),
|
|
array(
|
|
'app' => 'core',
|
|
'category' => 'global',
|
|
'phrase' => 'wirdBearbeitetVon',
|
|
'phrases' => array(
|
|
array(
|
|
'sprache' => 'German',
|
|
'text' => 'wird bearbeitet von',
|
|
'description' => '',
|
|
),
|
|
array(
|
|
'sprache' => 'English',
|
|
'text' => 'edited by',
|
|
'description' => '',
|
|
)
|
|
)
|
|
),
|
|
array(
|
|
'app' => 'core',
|
|
'category' => 'global',
|
|
'phrase' => 'bewerberVorhanden',
|
|
'phrases' => array(
|
|
array(
|
|
'sprache' => 'German',
|
|
'text' => 'BewerberIn bereits vorhanden',
|
|
'description' => '',
|
|
),
|
|
array(
|
|
'sprache' => 'English',
|
|
'text' => 'Applicant already available',
|
|
'description' => '',
|
|
)
|
|
)
|
|
),
|
|
array(
|
|
'app' => 'core',
|
|
'category' => 'global',
|
|
'phrase' => 'nichtAbgeschickt',
|
|
'phrases' => array(
|
|
array(
|
|
'sprache' => 'German',
|
|
'text' => 'nicht abgeschickt',
|
|
'description' => '',
|
|
),
|
|
array(
|
|
'sprache' => 'English',
|
|
'text' => 'not sent',
|
|
'description' => '',
|
|
)
|
|
)
|
|
),
|
|
array(
|
|
'app' => 'core',
|
|
'category' => 'global',
|
|
'phrase' => 'anStudiengangFreigegeben',
|
|
'phrases' => array(
|
|
array(
|
|
'sprache' => 'German',
|
|
'text' => 'an Studiengang freigegeben',
|
|
'description' => '',
|
|
),
|
|
array(
|
|
'sprache' => 'English',
|
|
'text' => 'approved for the course',
|
|
'description' => '',
|
|
)
|
|
)
|
|
),
|
|
array(
|
|
'app' => 'core',
|
|
'category' => 'global',
|
|
'phrase' => 'zumReihungstestFreigegeben',
|
|
'phrases' => array(
|
|
array(
|
|
'sprache' => 'German',
|
|
'text' => 'zum Reihungstest freigegeben',
|
|
'description' => '',
|
|
),
|
|
array(
|
|
'sprache' => 'English',
|
|
'text' => 'approved for placement test',
|
|
'description' => '',
|
|
)
|
|
)
|
|
),
|
|
array(
|
|
'app' => 'core',
|
|
'category' => 'global',
|
|
'phrase' => 'nachricht',
|
|
'phrases' => array(
|
|
array(
|
|
'sprache' => 'German',
|
|
'text' => 'Nachricht',
|
|
'description' => '',
|
|
),
|
|
array(
|
|
'sprache' => 'English',
|
|
'text' => 'Message',
|
|
'description' => '',
|
|
)
|
|
)
|
|
),
|
|
array(
|
|
'app' => 'core',
|
|
'category' => 'global',
|
|
'phrase' => 'vorschau',
|
|
'phrases' => array(
|
|
array(
|
|
'sprache' => 'German',
|
|
'text' => 'Vorschau',
|
|
'description' => '',
|
|
),
|
|
array(
|
|
'sprache' => 'English',
|
|
'text' => 'preview',
|
|
'description' => '',
|
|
)
|
|
)
|
|
),
|
|
array(
|
|
'app' => 'core',
|
|
'category' => 'global',
|
|
'phrase' => 'vorlage',
|
|
'phrases' => array(
|
|
array(
|
|
'sprache' => 'German',
|
|
'text' => 'Vorlage',
|
|
'description' => '',
|
|
),
|
|
array(
|
|
'sprache' => 'English',
|
|
'text' => 'template',
|
|
'description' => '',
|
|
)
|
|
)
|
|
),
|
|
array(
|
|
'app' => 'core',
|
|
'category' => 'global',
|
|
'phrase' => 'bis',
|
|
'phrases' => array(
|
|
array(
|
|
'sprache' => 'German',
|
|
'text' => 'bis',
|
|
'description' => '',
|
|
),
|
|
array(
|
|
'sprache' => 'English',
|
|
'text' => 'until',
|
|
'description' => '',
|
|
)
|
|
)
|
|
),
|
|
array(
|
|
'app' => 'core',
|
|
'category' => 'global',
|
|
'phrase' => 'mailAnXversandt',
|
|
'phrases' => array(
|
|
array(
|
|
'sprache' => 'German',
|
|
'text' => 'Mail an {email} versandt.',
|
|
'description' => '',
|
|
),
|
|
array(
|
|
'sprache' => 'English',
|
|
'text' => 'Mail was sent to {email}.',
|
|
'description' => '',
|
|
)
|
|
)
|
|
),
|
|
array(
|
|
'app' => 'core',
|
|
'category' => 'global',
|
|
'phrase' => 'beschreibung',
|
|
'phrases' => array(
|
|
array(
|
|
'sprache' => 'German',
|
|
'text' => 'Beschreibung',
|
|
'description' => '',
|
|
),
|
|
array(
|
|
'sprache' => 'English',
|
|
'text' => 'description',
|
|
'description' => '',
|
|
)
|
|
)
|
|
),
|
|
array(
|
|
'app' => 'core',
|
|
'category' => 'global',
|
|
'phrase' => 'nichtvorhanden',
|
|
'phrases' => array(
|
|
array(
|
|
'sprache' => 'German',
|
|
'text' => 'n.v.',
|
|
'description' => '',
|
|
),
|
|
array(
|
|
'sprache' => 'English',
|
|
'text' => 'n/a',
|
|
'description' => '',
|
|
)
|
|
)
|
|
),
|
|
array(
|
|
'app' => 'core',
|
|
'category' => 'global',
|
|
'phrase' => 'ohne',
|
|
'phrases' => array(
|
|
array(
|
|
'sprache' => 'German',
|
|
'text' => 'ohne',
|
|
'description' => '',
|
|
),
|
|
array(
|
|
'sprache' => 'English',
|
|
'text' => 'without',
|
|
'description' => '',
|
|
)
|
|
)
|
|
),
|
|
array(
|
|
'app' => 'core',
|
|
'category' => 'global',
|
|
'phrase' => 'parkdatum',
|
|
'phrases' => array(
|
|
array(
|
|
'sprache' => 'German',
|
|
'text' => 'parkdatum',
|
|
'description' => '',
|
|
),
|
|
array(
|
|
'sprache' => 'English',
|
|
'text' => 'parking date',
|
|
'description' => '',
|
|
)
|
|
)
|
|
),
|
|
array(
|
|
'app' => 'core',
|
|
'category' => 'global',
|
|
'phrase' => 'rueckstelldatum',
|
|
'phrases' => array(
|
|
array(
|
|
'sprache' => 'German',
|
|
'text' => 'rückstelldatum',
|
|
'description' => '',
|
|
),
|
|
array(
|
|
'sprache' => 'English',
|
|
'text' => 'onHold date',
|
|
'description' => '',
|
|
)
|
|
)
|
|
),
|
|
array(
|
|
'app' => 'core',
|
|
'category' => 'global',
|
|
'phrase' => 'status',
|
|
'phrases' => array(
|
|
array(
|
|
'sprache' => 'German',
|
|
'text' => 'Status',
|
|
'description' => '',
|
|
),
|
|
array(
|
|
'sprache' => 'English',
|
|
'text' => 'Status',
|
|
'description' => '',
|
|
)
|
|
)
|
|
),
|
|
array(
|
|
'app' => 'core',
|
|
'category' => 'global',
|
|
'phrase' => 'lehrauftraegeBestellen',
|
|
'phrases' => array(
|
|
array(
|
|
'sprache' => 'German',
|
|
'text' => 'Lehraufträge bestellen',
|
|
'description' => '',
|
|
),
|
|
array(
|
|
'sprache' => 'English',
|
|
'text' => 'Order lectureships',
|
|
'description' => '',
|
|
)
|
|
)
|
|
),
|
|
array(
|
|
'app' => 'core',
|
|
'category' => 'global',
|
|
'phrase' => 'lehrauftraegeErteilen',
|
|
'phrases' => array(
|
|
array(
|
|
'sprache' => 'German',
|
|
'text' => 'Lehraufträge erteilen',
|
|
'description' => '',
|
|
),
|
|
array(
|
|
'sprache' => 'English',
|
|
'text' => 'Approve lectureships',
|
|
'description' => '',
|
|
)
|
|
)
|
|
),
|
|
array(
|
|
'app' => 'core',
|
|
'category' => 'global',
|
|
'phrase' => 'lehrauftraegeAnnehmen',
|
|
'phrases' => array(
|
|
array(
|
|
'sprache' => 'German',
|
|
'text' => 'Lehraufträge annehmen',
|
|
'description' => '',
|
|
),
|
|
array(
|
|
'sprache' => 'English',
|
|
'text' => 'Accept lectureships',
|
|
'description' => '',
|
|
)
|
|
)
|
|
),
|
|
array(
|
|
'app' => 'core',
|
|
'category' => 'global',
|
|
'phrase' => 'stornierteLehrauftraege',
|
|
'phrases' => array(
|
|
array(
|
|
'sprache' => 'German',
|
|
'text' => 'Stornierte Lehraufträge',
|
|
'description' => '',
|
|
),
|
|
array(
|
|
'sprache' => 'English',
|
|
'text' => 'Cancelled lectureships',
|
|
'description' => '',
|
|
)
|
|
)
|
|
),
|
|
array(
|
|
'app' => 'core',
|
|
'category' => 'global',
|
|
'phrase' => 'received',
|
|
'phrases' => array(
|
|
array(
|
|
'sprache' => 'German',
|
|
'text' => 'Empfangen',
|
|
'description' => '',
|
|
),
|
|
array(
|
|
'sprache' => 'English',
|
|
'text' => 'Received',
|
|
'description' => '',
|
|
)
|
|
)
|
|
),
|
|
array(
|
|
'app' => 'core',
|
|
'category' => 'global',
|
|
'phrase' => 'reply',
|
|
'phrases' => array(
|
|
array(
|
|
'sprache' => 'German',
|
|
'text' => 'Antworten',
|
|
'description' => '',
|
|
),
|
|
array(
|
|
'sprache' => 'English',
|
|
'text' => 'Reply',
|
|
'description' => '',
|
|
)
|
|
)
|
|
),
|
|
array(
|
|
'app' => 'core',
|
|
'category' => 'global',
|
|
'phrase' => 'personalnummer',
|
|
'phrases' => array(
|
|
array(
|
|
'sprache' => 'German',
|
|
'text' => 'Personalnummer',
|
|
'description' => '',
|
|
),
|
|
array(
|
|
'sprache' => 'English',
|
|
'text' => 'personnel number',
|
|
'description' => '',
|
|
)
|
|
)
|
|
),
|
|
array(
|
|
'app' => 'core',
|
|
'category' => 'global',
|
|
'phrase' => 'mehrHilfe',
|
|
'phrases' => array(
|
|
array(
|
|
'sprache' => 'German',
|
|
'text' => 'Mehr Hilfe?',
|
|
'description' => '',
|
|
),
|
|
array(
|
|
'sprache' => 'English',
|
|
'text' => 'Need more Help?',
|
|
'description' => '',
|
|
)
|
|
)
|
|
),
|
|
array(
|
|
'app' => 'core',
|
|
'category' => 'global',
|
|
'phrase' => 'weitereInformationenUnter',
|
|
'phrases' => array(
|
|
array(
|
|
'sprache' => 'German',
|
|
'text' => 'Weitere Informationen unter ',
|
|
'description' => '',
|
|
),
|
|
array(
|
|
'sprache' => 'English',
|
|
'text' => 'For further information please go to ',
|
|
'description' => '',
|
|
)
|
|
)
|
|
),
|
|
array(
|
|
'app' => 'core',
|
|
'category' => 'global',
|
|
'phrase' => 'dokumentePDF',
|
|
'phrases' => array(
|
|
array(
|
|
'sprache' => 'German',
|
|
'text' => 'Dokumente PDF',
|
|
'description' => '',
|
|
),
|
|
array(
|
|
'sprache' => 'English',
|
|
'text' => 'Documents PDF',
|
|
'description' => '',
|
|
)
|
|
)
|
|
),
|
|
array(
|
|
'app' => 'core',
|
|
'category' => 'global',
|
|
'phrase' => 'PDFLehrauftraegeFH',
|
|
'phrases' => array(
|
|
array(
|
|
'sprache' => 'German',
|
|
'text' => 'PDF Lehraufträge FH',
|
|
'description' => '',
|
|
),
|
|
array(
|
|
'sprache' => 'English',
|
|
'text' => 'PDF Lectureships UAS',
|
|
'description' => '',
|
|
)
|
|
)
|
|
),
|
|
array(
|
|
'app' => 'core',
|
|
'category' => 'global',
|
|
'phrase' => 'PDFLehrauftraegeLehrgaenge',
|
|
'phrases' => array(
|
|
array(
|
|
'sprache' => 'German',
|
|
'text' => 'PDF Lehraufträge Lehrgänge',
|
|
'description' => '',
|
|
),
|
|
array(
|
|
'sprache' => 'English',
|
|
'text' => 'PDF Lectureships Acadamy Courses',
|
|
'description' => '',
|
|
)
|
|
)
|
|
),
|
|
array(
|
|
'app' => 'core',
|
|
'category' => 'global',
|
|
'phrase' => 'und',
|
|
'phrases' => array(
|
|
array(
|
|
'sprache' => 'German',
|
|
'text' => 'und',
|
|
'description' => '',
|
|
),
|
|
array(
|
|
'sprache' => 'English',
|
|
'text' => 'and',
|
|
'description' => '',
|
|
)
|
|
)
|
|
),
|
|
array(
|
|
'app' => 'core',
|
|
'category' => 'global',
|
|
'phrase' => 'genehmigen',
|
|
'phrases' => array(
|
|
array(
|
|
'sprache' => 'German',
|
|
'text' => 'Genehmigen',
|
|
'description' => '',
|
|
),
|
|
array(
|
|
'sprache' => 'English',
|
|
'text' => 'Approve',
|
|
'description' => '',
|
|
)
|
|
)
|
|
),
|
|
array(
|
|
'app' => 'core',
|
|
'category' => 'global',
|
|
'phrase' => 'ablehnen',
|
|
'phrases' => array(
|
|
array(
|
|
'sprache' => 'German',
|
|
'text' => 'Ablehnen',
|
|
'description' => '',
|
|
),
|
|
array(
|
|
'sprache' => 'English',
|
|
'text' => 'Reject',
|
|
'description' => '',
|
|
)
|
|
)
|
|
),
|
|
array(
|
|
'app' => 'core',
|
|
'category' => 'global',
|
|
'phrase' => 'begruendung',
|
|
'phrases' => array(
|
|
array(
|
|
'sprache' => 'German',
|
|
'text' => 'Begründung',
|
|
'description' => '',
|
|
),
|
|
array(
|
|
'sprache' => 'English',
|
|
'text' => 'Reason',
|
|
'description' => '',
|
|
)
|
|
)
|
|
),
|
|
array(
|
|
'app' => 'core',
|
|
'category' => 'global',
|
|
'phrase' => 'detailsicht',
|
|
'phrases' => array(
|
|
array(
|
|
'sprache' => 'German',
|
|
'text' => 'Detailsicht',
|
|
'description' => '',
|
|
),
|
|
array(
|
|
'sprache' => 'English',
|
|
'text' => 'Details',
|
|
'description' => '',
|
|
)
|
|
)
|
|
),
|
|
array(
|
|
'app' => 'core',
|
|
'category' => 'global',
|
|
'phrase' => 'zgv',
|
|
'phrases' => array(
|
|
array(
|
|
'sprache' => 'German',
|
|
'text' => 'ZGV',
|
|
'description' => '',
|
|
),
|
|
array(
|
|
'sprache' => 'English',
|
|
'text' => 'ZGV',
|
|
'description' => '',
|
|
)
|
|
)
|
|
),
|
|
array(
|
|
'app' => 'core',
|
|
'category' => 'global',
|
|
'phrase' => 'antragWurdeAngelegt',
|
|
'phrases' => array(
|
|
array(
|
|
'sprache' => 'German',
|
|
'text' => 'Antrag wurde angelegt',
|
|
'description' => '',
|
|
),
|
|
array(
|
|
'sprache' => 'English',
|
|
'text' => 'Application was created',
|
|
'description' => '',
|
|
)
|
|
)
|
|
),
|
|
array(
|
|
'app' => 'core',
|
|
'category' => 'global',
|
|
'phrase' => 'zuruecknehmen',
|
|
'phrases' => array(
|
|
array(
|
|
'sprache' => 'German',
|
|
'text' => "Zurücknehmen",
|
|
'description' => '',
|
|
),
|
|
array(
|
|
'sprache' => 'English',
|
|
'text' => "Withdraw",
|
|
'description' => '',
|
|
)
|
|
)
|
|
),
|
|
array(
|
|
'app' => 'core',
|
|
'category' => 'global',
|
|
'phrase' => 'antragWurdeGestellt',
|
|
'phrases' => array(
|
|
array(
|
|
'sprache' => 'German',
|
|
'text' => "Antrag wurde gestellt.",
|
|
'description' => '',
|
|
),
|
|
array(
|
|
'sprache' => 'English',
|
|
'text' => "Application was submitted successfully.",
|
|
'description' => '',
|
|
)
|
|
)
|
|
),
|
|
array(
|
|
'app' => 'core',
|
|
'category' => 'global',
|
|
'phrase' => 'antragBereitsGestellt',
|
|
'phrases' => array(
|
|
array(
|
|
'sprache' => 'German',
|
|
'text' => "Der Antrag wurde bereits gestellt.",
|
|
'description' => '',
|
|
),
|
|
array(
|
|
'sprache' => 'English',
|
|
'text' => "Application has already been submitted.",
|
|
'description' => '',
|
|
)
|
|
)
|
|
),
|
|
array(
|
|
'app' => 'core',
|
|
'category' => 'global',
|
|
'phrase' => 'antragAnlegen',
|
|
'phrases' => array(
|
|
array(
|
|
'sprache' => 'German',
|
|
'text' => "Antrag anlegen",
|
|
'description' => '',
|
|
),
|
|
array(
|
|
'sprache' => 'English',
|
|
'text' => "Create Application",
|
|
'description' => '',
|
|
)
|
|
)
|
|
)
|
|
);
|
|
|