mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-01 20:29:29 +00:00
Make Dieter Dummy lecturer seemingly disappear
- deactivate profile page (error message is shown) - removed from CIS search results - no profile link in lvplan
This commit is contained in:
@@ -35,6 +35,7 @@ require_once('../../../include/ort.class.php');
|
||||
require_once('../../../include/functions.inc.php');
|
||||
require_once('../../../include/datum.class.php');
|
||||
require_once('../../../include/phrasen.class.php');
|
||||
require_once('../../../include/mitarbeiter.class.php');
|
||||
|
||||
$sprache = getSprache();
|
||||
$p = new phrasen($sprache);
|
||||
@@ -231,11 +232,21 @@ if ($num_rows_stpl>0)
|
||||
$titel = trim($row->titel);
|
||||
$gesamtanzahl = ($anzahl_grp!=0?$anzahl_grp:$anzahl_lvb);
|
||||
$ort->load($ortkurzbz);
|
||||
|
||||
|
||||
// no profile link for fake Mitarbeiter like Dummylektor, Personalnr must be > 0
|
||||
$profileLink = true;
|
||||
$mitarbeiter = new mitarbeiter();
|
||||
|
||||
if ($mitarbeiter->load($row->uid))
|
||||
{
|
||||
if (isset($mitarbeiter->personalnummer) && is_numeric($mitarbeiter->personalnummer) && (int)$mitarbeiter->personalnummer < 0)
|
||||
$profileLink = false;
|
||||
}
|
||||
|
||||
echo '
|
||||
<tr class="liste'.($i%2).'">
|
||||
<td>'.$db->convert_html_chars($unr).'</td>
|
||||
<td><A class="Item" href="../profile/index.php?uid='.$row->uid.'" target="_self" onClick="window.resizeTo(1200,880)">'.$db->convert_html_chars($titelpre.' '.$pers_vorname.' '.$pers_nachname.' '.$titelpost).'</A></td>
|
||||
<td>'.($profileLink ? '<A class="Item" href="../profile/index.php?uid='.$row->uid.'" target="_self" onClick="window.resizeTo(1200,880)">' : '').$db->convert_html_chars($titelpre.' '.$pers_vorname.' '.$pers_nachname.' '.$titelpost).($profileLink ? '</A>' : '').'</td>
|
||||
<td title="'.$db->convert_html_chars($ort->bezeichnung).'">'.(!empty($ortkurzbz)?($ort->content_id!=''?'<a href="../../../cms/content.php?content_id='.$ort->content_id.'" target="_self" onClick="window.resizeTo(1200,880)">'.$db->convert_html_chars($ortkurzbz).'</a>':$db->convert_html_chars($ortkurzbz)):$db->convert_html_chars($ortkurzbz)).'</td>
|
||||
<td>'.$db->convert_html_chars($lehrfachkurzbz).'</td>
|
||||
<td>'.$db->convert_html_chars($bezeichnung).'</td>
|
||||
|
||||
@@ -127,6 +127,9 @@ if (!$user->load($uid))
|
||||
|
||||
if ($type == 'mitarbeiter')
|
||||
{
|
||||
if (isset($user->personalnummer) && is_numeric($user->personalnummer) && (int)$user->personalnummer < 0)
|
||||
die($p->t('profil/keinGueltigesProfil'));
|
||||
|
||||
$vorwahl = '';
|
||||
$kontakt = new kontakt();
|
||||
$kontakt->loadFirmaKontakttyp($user->standort_id,'telefon');
|
||||
|
||||
@@ -113,7 +113,8 @@ function searchPerson($searchItems)
|
||||
{
|
||||
global $db, $p, $noalias, $uid;
|
||||
$bn = new benutzer();
|
||||
$bn->search($searchItems, 21);
|
||||
//search only active and Mitarbeiter with positive Personalnr
|
||||
$bn->search($searchItems, 21, true, true);
|
||||
|
||||
if(count($bn->result)>0)
|
||||
{
|
||||
|
||||
+524
-520
File diff suppressed because it is too large
Load Diff
@@ -865,7 +865,7 @@ class mitarbeiter extends benutzer
|
||||
* Nachname, Vorname, UID $filter enthaelt
|
||||
* @param $filter
|
||||
*/
|
||||
public function search($filter, $limit=null, $aktiv=true)
|
||||
public function search($filter, $limit=null, $aktiv=true, $positivePersonalnr=false)
|
||||
{
|
||||
$qry = "SELECT vorname, nachname, titelpre, titelpost, kurzbz, vornamen, uid
|
||||
FROM campus.vw_mitarbeiter
|
||||
@@ -880,7 +880,6 @@ class mitarbeiter extends benutzer
|
||||
if(!is_null($limit) && is_numeric($limit))
|
||||
$qry.=" LIMIT ".$limit;
|
||||
|
||||
//echo $qry;
|
||||
if($this->db_query($qry))
|
||||
{
|
||||
while($row = $this->db_fetch_object())
|
||||
|
||||
+84
-83
@@ -1,83 +1,84 @@
|
||||
<?php
|
||||
$this->phrasen['profil/profil']='Profil';
|
||||
$this->phrasen['profil/mitarbeiter']='MitarbeiterIn';
|
||||
$this->phrasen['profil/home']='HOME';
|
||||
$this->phrasen['profil/meinCis']='Mein CIS';
|
||||
$this->phrasen['profil/bildHochladen']='Profilfoto hochladen';
|
||||
$this->phrasen['profil/email']='eMail';
|
||||
$this->phrasen['profil/kontaktPrivat']='Private Kontakte';
|
||||
$this->phrasen['profil/mobil']='Mobil';
|
||||
$this->phrasen['profil/telefon']='Telefon';
|
||||
$this->phrasen['profil/intern']='Intern';
|
||||
$this->phrasen['profil/alias']='Alias';
|
||||
$this->phrasen['profil/homepage']='Homepage';
|
||||
$this->phrasen['profil/student']='StudentIn';
|
||||
$this->phrasen['profil/martrikelnummer']='Personenkennzeichen';
|
||||
$this->phrasen['profil/leistungsbeurteilung']='Leistungsbeurteilung';
|
||||
$this->phrasen['profil/kurzzeichen']='Kurzzeichen';
|
||||
$this->phrasen['profil/telefonTw']='Telefon';
|
||||
$this->phrasen['profil/faxTw']='Fax';
|
||||
$this->phrasen['profil/zeitwuensche']='Zeitwünsche';
|
||||
$this->phrasen['profil/funktionen']='Funktionen';
|
||||
$this->phrasen['profil/entlehnteBetriebsmittel']='Entlehnte Betriebsmittel';
|
||||
$this->phrasen['profil/betriebsmittel']='Betriebsmittel';
|
||||
$this->phrasen['profil/nummer']='Nummer';
|
||||
$this->phrasen['profil/ausgegebenAm']='Ausgegeben am';
|
||||
$this->phrasen['profil/sieSindMitgliedInFolgendenVerteilern']='Sie sind Mitglied in folgenden Verteilern';
|
||||
$this->phrasen['profil/derUserIstInFolgendenVerteilern'] = 'Der User %s ist Mitglied in folgenden Verteilern';
|
||||
$this->phrasen['profil/alleStudentenVon']='Alle StudentInnen von';
|
||||
$this->phrasen['profil/kurzbeschreibungFuerOeh']='Kurzbeschreibung für die ÖH-Kandidatur';
|
||||
$this->phrasen['profil/solltenDatenNichtStimmen']='Sollten Ihre Daten nicht stimmen, wenden Sie sich bitte an die zuständige Assistenz';
|
||||
$this->phrasen['profil/esWurdenKeineProfileGefunden']='Es wurden keine oder mehrere Profile für Ihren Useraccount gefunden';
|
||||
$this->phrasen['profil/adminstration']='Administration';
|
||||
$this->phrasen['profil/zustaendigeAssistenz']='zuständige Assistenz';
|
||||
$this->phrasen['profil/wendenSieSichAn']='Bitte wenden Sie sich an die';
|
||||
$this->phrasen['profil/solltenDatenNichtStimmen']='Sollten Ihre Daten nicht stimmen, wenden Sie sich bitte an die';
|
||||
$this->phrasen['profil/buero']='Büro';
|
||||
$this->phrasen['profil/zeitsperrenVon']='Zeitsperren von';
|
||||
$this->phrasen['profil/lvplanVon']='LV-Plan von';
|
||||
|
||||
$this->phrasen['profil/AccountInaktiv']='Achtung: Dieser Account ist nicht mehr aktiv';
|
||||
$this->phrasen['profil/inaktivStudent']='Achtung!<br> Wir möchten Sie darauf aufmerksam machen, dass Ihr Benutzerdatensatz
|
||||
deaktiviert wurde.Durch diese Deaktivierung wurden Sie auch aus allen Email-Verteilern gelöscht. <br><br>
|
||||
Sollte innerhalb von 6 Monaten (für Studierende) bzw. 3 Wochen (für AbbrecherInnen) nach der Deaktivierung keine
|
||||
neuerliche Aktivierung Ihres Benutzerdatensatzes erfolgen, dann werden automatisch auch<br>- Ihr Account, <br>- Ihre Mailbox (inkl. aller E-Mails) und<br>
|
||||
- Ihr Home-Verzeichnis (inkl. aller Dateien) gelöscht.<br><br>Falls es sich bei der Deaktivierung um einen Irrtum handelt, würden wir Sie bitten,
|
||||
sich umgehend mit Ihrer Studiengangsassistenz in Verbindung zu setzen.<br>';
|
||||
|
||||
$this->phrasen['profil/inaktivMitarbeiter']='Achtung!<br> Wir möchten Sie darauf aufmerksam machen, dass Ihr Benutzerdatensatz
|
||||
deaktiviert wurde.Durch diese Deaktivierung wurden Sie auch aus allen Email-Verteilern gelöscht. <br><br>
|
||||
Sollte innerhalb von 12 Monaten nach der Deaktivierung keine neuerliche Aktivierung Ihres Benutzerdatensatzes erfolgen, dann werden automatisch auch<br>
|
||||
- Ihr Account, <br>- Ihre Mailbox (inkl. aller E-Mails) und<br>
|
||||
- Ihr Home-Verzeichnis (inkl. aller Dateien) gelöscht.<br><br>Falls es sich bei der Deaktivierung um einen Irrtum handelt, würden wir Sie bitten,
|
||||
sich umgehend mit Ihrer Studiengangsassistenz in Verbindung zu setzen.<br>';
|
||||
|
||||
$this->phrasen['profil/inaktivSonstige']='Achtung!<br> Wir möchten Sie darauf aufmerksam machen, dass Ihr Benutzerdatensatz
|
||||
deaktiviert wurde.Durch diese Deaktivierung wurden Sie auch aus allen Email-Verteilern gelöscht. <br><br>
|
||||
Sollte innerhalb der nächsten Tagen keine neuerliche Aktivierung Ihres Benutzerdatensatzes erfolgen, dann werden automatisch auch<br>
|
||||
- Ihr Account, <br>- Ihre Mailbox (inkl. aller E-Mails) und<br>
|
||||
- Ihr Home-Verzeichnis (inkl. aller Dateien) gelöscht.<br><br>Falls es sich bei der Deaktivierung um einen Irrtum handelt, würden wir Sie bitten,
|
||||
sich umgehend mit Ihrer Studiengangsassistenz in Verbindung zu setzen.<br>';
|
||||
|
||||
$this->phrasen['profil/nurJPGBilder']='Derzeit können nur Bilder im JPG Format hochgeladen werden';
|
||||
$this->phrasen['profil/BilduploadInfotext']='Derzeit können nur Bilder im JPG Format mit einer Maximalgröße von 15MB hochgeladen werden!<br><br><b>Bitte beachten Sie die <a href="'.APP_ROOT.'cms/content.php?content_id=%s">Richtlinien für den Bildupload</a></b>';
|
||||
$this->phrasen['profil/Bild']='Profilfoto';
|
||||
$this->phrasen['profil/Bildupload']='Bildupload';
|
||||
$this->phrasen['profil/fotofreigeben']='Sperre des Profilfotos aufheben';
|
||||
$this->phrasen['profil/fotosperren']='Profilfoto sperren';
|
||||
$this->phrasen['profil/infotextSperre']='Gesperrte Profilbilder werden nur für Zutrittskarten verwendet und scheinen nicht auf Anwesenheitslisten oder in der Personensuche auf';
|
||||
$this->phrasen['profil/profilfotoGesperrt']='Profilfoto gesperrt';
|
||||
$this->phrasen['profil/profilfotoUploadGesperrt']='Der Upload des Profilfotos ist nicht mehr möglich';
|
||||
$this->phrasen['profil/fhausweisStatus']='FH-Ausweis Status';
|
||||
$this->phrasen['profil/fhausweisWurdeBereitsAusgegeben']='Der FH Ausweis ist am %s ausgegeben worden.';
|
||||
$this->phrasen['profil/ladenSieBitteEinGueltigesFotoHoch']='Laden Sie bitte ein gültiges Foto hoch';
|
||||
$this->phrasen['profil/fotoWurdeNochNichtAkzeptiert']='Foto wurde noch nicht akzeptiert';
|
||||
$this->phrasen['profil/fhausweisGedrucktAm']='FH-Ausweis gedruckt am';
|
||||
$this->phrasen['profil/fhausweisAbholbereitAmEmpfangAb']='FH-Ausweis abholbereit am Empfang ab';
|
||||
$this->phrasen['profil/fhausweisWurdeNochNichtGedruckt']='FH-Ausweis wurde noch nicht gedruckt';
|
||||
$this->phrasen['profil/ihrFotoWurdeNochNichtGeprueft']='Ihr Foto wurde noch nicht geprüft';
|
||||
$this->phrasen['profil/fotoAuswählen']='Klicken Sie auf das Bild um ein Foto hochzuladen';
|
||||
$this->phrasen['profil/bildSpeichern']='Bild speichern';
|
||||
$this->phrasen['profil/gueltigvon']='Gültig von';
|
||||
$this->phrasen['profil/gueltigbis']='Gültig bis';
|
||||
?>
|
||||
<?php
|
||||
$this->phrasen['profil/profil']='Profil';
|
||||
$this->phrasen['profil/mitarbeiter']='MitarbeiterIn';
|
||||
$this->phrasen['profil/home']='HOME';
|
||||
$this->phrasen['profil/meinCis']='Mein CIS';
|
||||
$this->phrasen['profil/bildHochladen']='Profilfoto hochladen';
|
||||
$this->phrasen['profil/email']='eMail';
|
||||
$this->phrasen['profil/kontaktPrivat']='Private Kontakte';
|
||||
$this->phrasen['profil/mobil']='Mobil';
|
||||
$this->phrasen['profil/telefon']='Telefon';
|
||||
$this->phrasen['profil/intern']='Intern';
|
||||
$this->phrasen['profil/alias']='Alias';
|
||||
$this->phrasen['profil/homepage']='Homepage';
|
||||
$this->phrasen['profil/student']='StudentIn';
|
||||
$this->phrasen['profil/martrikelnummer']='Personenkennzeichen';
|
||||
$this->phrasen['profil/leistungsbeurteilung']='Leistungsbeurteilung';
|
||||
$this->phrasen['profil/kurzzeichen']='Kurzzeichen';
|
||||
$this->phrasen['profil/telefonTw']='Telefon';
|
||||
$this->phrasen['profil/faxTw']='Fax';
|
||||
$this->phrasen['profil/zeitwuensche']='Zeitwünsche';
|
||||
$this->phrasen['profil/funktionen']='Funktionen';
|
||||
$this->phrasen['profil/entlehnteBetriebsmittel']='Entlehnte Betriebsmittel';
|
||||
$this->phrasen['profil/betriebsmittel']='Betriebsmittel';
|
||||
$this->phrasen['profil/nummer']='Nummer';
|
||||
$this->phrasen['profil/ausgegebenAm']='Ausgegeben am';
|
||||
$this->phrasen['profil/sieSindMitgliedInFolgendenVerteilern']='Sie sind Mitglied in folgenden Verteilern';
|
||||
$this->phrasen['profil/derUserIstInFolgendenVerteilern'] = 'Der User %s ist Mitglied in folgenden Verteilern';
|
||||
$this->phrasen['profil/alleStudentenVon']='Alle StudentInnen von';
|
||||
$this->phrasen['profil/kurzbeschreibungFuerOeh']='Kurzbeschreibung für die ÖH-Kandidatur';
|
||||
$this->phrasen['profil/solltenDatenNichtStimmen']='Sollten Ihre Daten nicht stimmen, wenden Sie sich bitte an die zuständige Assistenz';
|
||||
$this->phrasen['profil/esWurdenKeineProfileGefunden']='Es wurden keine oder mehrere Profile für Ihren Useraccount gefunden';
|
||||
$this->phrasen['profil/keinGueltigesProfil']='Kein gültiges Profil';
|
||||
$this->phrasen['profil/adminstration']='Administration';
|
||||
$this->phrasen['profil/zustaendigeAssistenz']='zuständige Assistenz';
|
||||
$this->phrasen['profil/wendenSieSichAn']='Bitte wenden Sie sich an die';
|
||||
$this->phrasen['profil/solltenDatenNichtStimmen']='Sollten Ihre Daten nicht stimmen, wenden Sie sich bitte an die';
|
||||
$this->phrasen['profil/buero']='Büro';
|
||||
$this->phrasen['profil/zeitsperrenVon']='Zeitsperren von';
|
||||
$this->phrasen['profil/lvplanVon']='LV-Plan von';
|
||||
|
||||
$this->phrasen['profil/AccountInaktiv']='Achtung: Dieser Account ist nicht mehr aktiv';
|
||||
$this->phrasen['profil/inaktivStudent']='Achtung!<br> Wir möchten Sie darauf aufmerksam machen, dass Ihr Benutzerdatensatz
|
||||
deaktiviert wurde.Durch diese Deaktivierung wurden Sie auch aus allen Email-Verteilern gelöscht. <br><br>
|
||||
Sollte innerhalb von 6 Monaten (für Studierende) bzw. 3 Wochen (für AbbrecherInnen) nach der Deaktivierung keine
|
||||
neuerliche Aktivierung Ihres Benutzerdatensatzes erfolgen, dann werden automatisch auch<br>- Ihr Account, <br>- Ihre Mailbox (inkl. aller E-Mails) und<br>
|
||||
- Ihr Home-Verzeichnis (inkl. aller Dateien) gelöscht.<br><br>Falls es sich bei der Deaktivierung um einen Irrtum handelt, würden wir Sie bitten,
|
||||
sich umgehend mit Ihrer Studiengangsassistenz in Verbindung zu setzen.<br>';
|
||||
|
||||
$this->phrasen['profil/inaktivMitarbeiter']='Achtung!<br> Wir möchten Sie darauf aufmerksam machen, dass Ihr Benutzerdatensatz
|
||||
deaktiviert wurde.Durch diese Deaktivierung wurden Sie auch aus allen Email-Verteilern gelöscht. <br><br>
|
||||
Sollte innerhalb von 12 Monaten nach der Deaktivierung keine neuerliche Aktivierung Ihres Benutzerdatensatzes erfolgen, dann werden automatisch auch<br>
|
||||
- Ihr Account, <br>- Ihre Mailbox (inkl. aller E-Mails) und<br>
|
||||
- Ihr Home-Verzeichnis (inkl. aller Dateien) gelöscht.<br><br>Falls es sich bei der Deaktivierung um einen Irrtum handelt, würden wir Sie bitten,
|
||||
sich umgehend mit Ihrer Studiengangsassistenz in Verbindung zu setzen.<br>';
|
||||
|
||||
$this->phrasen['profil/inaktivSonstige']='Achtung!<br> Wir möchten Sie darauf aufmerksam machen, dass Ihr Benutzerdatensatz
|
||||
deaktiviert wurde.Durch diese Deaktivierung wurden Sie auch aus allen Email-Verteilern gelöscht. <br><br>
|
||||
Sollte innerhalb der nächsten Tagen keine neuerliche Aktivierung Ihres Benutzerdatensatzes erfolgen, dann werden automatisch auch<br>
|
||||
- Ihr Account, <br>- Ihre Mailbox (inkl. aller E-Mails) und<br>
|
||||
- Ihr Home-Verzeichnis (inkl. aller Dateien) gelöscht.<br><br>Falls es sich bei der Deaktivierung um einen Irrtum handelt, würden wir Sie bitten,
|
||||
sich umgehend mit Ihrer Studiengangsassistenz in Verbindung zu setzen.<br>';
|
||||
|
||||
$this->phrasen['profil/nurJPGBilder']='Derzeit können nur Bilder im JPG Format hochgeladen werden';
|
||||
$this->phrasen['profil/BilduploadInfotext']='Derzeit können nur Bilder im JPG Format mit einer Maximalgröße von 15MB hochgeladen werden!<br><br><b>Bitte beachten Sie die <a href="'.APP_ROOT.'cms/content.php?content_id=%s">Richtlinien für den Bildupload</a></b>';
|
||||
$this->phrasen['profil/Bild']='Profilfoto';
|
||||
$this->phrasen['profil/Bildupload']='Bildupload';
|
||||
$this->phrasen['profil/fotofreigeben']='Sperre des Profilfotos aufheben';
|
||||
$this->phrasen['profil/fotosperren']='Profilfoto sperren';
|
||||
$this->phrasen['profil/infotextSperre']='Gesperrte Profilbilder werden nur für Zutrittskarten verwendet und scheinen nicht auf Anwesenheitslisten oder in der Personensuche auf';
|
||||
$this->phrasen['profil/profilfotoGesperrt']='Profilfoto gesperrt';
|
||||
$this->phrasen['profil/profilfotoUploadGesperrt']='Der Upload des Profilfotos ist nicht mehr möglich';
|
||||
$this->phrasen['profil/fhausweisStatus']='FH-Ausweis Status';
|
||||
$this->phrasen['profil/fhausweisWurdeBereitsAusgegeben']='Der FH Ausweis ist am %s ausgegeben worden.';
|
||||
$this->phrasen['profil/ladenSieBitteEinGueltigesFotoHoch']='Laden Sie bitte ein gültiges Foto hoch';
|
||||
$this->phrasen['profil/fotoWurdeNochNichtAkzeptiert']='Foto wurde noch nicht akzeptiert';
|
||||
$this->phrasen['profil/fhausweisGedrucktAm']='FH-Ausweis gedruckt am';
|
||||
$this->phrasen['profil/fhausweisAbholbereitAmEmpfangAb']='FH-Ausweis abholbereit am Empfang ab';
|
||||
$this->phrasen['profil/fhausweisWurdeNochNichtGedruckt']='FH-Ausweis wurde noch nicht gedruckt';
|
||||
$this->phrasen['profil/ihrFotoWurdeNochNichtGeprueft']='Ihr Foto wurde noch nicht geprüft';
|
||||
$this->phrasen['profil/fotoAuswählen']='Klicken Sie auf das Bild um ein Foto hochzuladen';
|
||||
$this->phrasen['profil/bildSpeichern']='Bild speichern';
|
||||
$this->phrasen['profil/gueltigvon']='Gültig von';
|
||||
$this->phrasen['profil/gueltigbis']='Gültig bis';
|
||||
?>
|
||||
|
||||
+82
-81
@@ -1,81 +1,82 @@
|
||||
<?php
|
||||
$this->phrasen['profil/home']='HOME';
|
||||
$this->phrasen['profil/profil']='Profile';
|
||||
$this->phrasen['profil/mitarbeiter']='Employee';
|
||||
$this->phrasen['profil/meinCis']='My CIS';
|
||||
$this->phrasen['profil/bildHochladen']='Upload picture';
|
||||
$this->phrasen['profil/email']='eMail';
|
||||
$this->phrasen['profil/kontaktPrivat']='Private Contacts';
|
||||
$this->phrasen['profil/intern']='Intern';
|
||||
$this->phrasen['profil/alias']='Alias';
|
||||
$this->phrasen['profil/homepage']='Homepage';
|
||||
$this->phrasen['profil/student']='Student';
|
||||
$this->phrasen['profil/martrikelnummer']='matriculation number';
|
||||
$this->phrasen['profil/leistungsbeurteilung']='Performance assessment';
|
||||
$this->phrasen['profil/kurzzeichen']='Abbreviation';
|
||||
$this->phrasen['profil/telefonTw']='Telephone';
|
||||
$this->phrasen['profil/faxTw']='Fax';
|
||||
$this->phrasen['profil/zeitwuensche']='Preferred teaching times';
|
||||
$this->phrasen['profil/funktionen']='Functions';
|
||||
$this->phrasen['profil/entlehnteBetriebsmittel']='Borrowed equipment';
|
||||
$this->phrasen['profil/betriebsmittel']='Equipment';
|
||||
$this->phrasen['profil/nummer']='Number';
|
||||
$this->phrasen['profil/ausgegebenAm']='Issued on';
|
||||
$this->phrasen['profil/sieSindMitgliedInFolgendenVerteilern']='You are member of the following mailing lists';
|
||||
$this->phrasen['profil/derUserIstInFolgendenVerteilern'] = 'User %s is a member of the following mailing lists';
|
||||
$this->phrasen['profil/alleStudentenVon']='All students from';
|
||||
$this->phrasen['profil/kurzbeschreibungFuerOeh']='Brief description for the Austian Student Union candidacy';
|
||||
$this->phrasen['profil/solltenDatenNichtStimmen']='If your data is incorrect, please contact the responsible assistant';
|
||||
$this->phrasen['profil/esWurdenKeineProfileGefunden']='No profile ore multiple profiles were found for your user account';
|
||||
$this->phrasen['profil/adminstration']='Administration';
|
||||
$this->phrasen['profil/zustaendigeAssistenz']='Administrative Assistant';
|
||||
$this->phrasen['profil/wendenSieSichAn']='Please contact the';
|
||||
$this->phrasen['profil/solltenDatenNichtStimmen']='If your data is incorrect, please contact the responsible';
|
||||
$this->phrasen['profil/buero']='Office';
|
||||
$this->phrasen['profil/zeitsperrenVon']='Unavailabilities of';
|
||||
$this->phrasen['profil/lvplanVon']='Schedule from';
|
||||
|
||||
$this->phrasen['profil/AccountInaktiv']='NOTICE: This account is no longer active';
|
||||
$this->phrasen['profil/inaktivStudent']='NOTICE!<br> We would like to remind you that your user record has been deactivated.
|
||||
You were also removed from all e-mail distribution lists when your account was deactivated.<br><br>
|
||||
If your user account is not reactivated within 6 months (for students) or 3 weeks (for dropouts) of being deactivated, the following data will be automatically deleted:<br>
|
||||
- Your account<br>- Your mailbox (including all e-mails) and<br>- Your home directory (including all files).<br><br>
|
||||
If your account has been deactivated by mistake, please contact the administrative assistant for your degree program immediately.<br>';
|
||||
|
||||
$this->phrasen['profil/inaktivMitarbeiter']='NOTICE!<br> We would like to remind you that your user record has been deactivated.
|
||||
You were also removed from all e-mail distribution lists when your account was deactivated.<br><br>
|
||||
If your user account is not reactivated within 12 months of being deactivated, the following data will be automatically deleted:<br>
|
||||
- Your account<br>- Your mailbox (including all e-mails) and<br>- Your home directory (including all files).<br><br>
|
||||
If your account has been deactivated by mistake, please contact the administrative assistant for your degree program immediately.<br>';
|
||||
|
||||
$this->phrasen['profil/inaktivSonstige']='NOTICE!<br> We would like to remind you that your user record has been deactivated.
|
||||
You were also removed from all e-mail distribution lists when your account was deactivated.<br><br>
|
||||
If your user account is not reactivated within the next days of being deactivated, the following data will be automatically deleted:<br>
|
||||
- Your account<br>- Your mailbox (including all e-mails) and<br>- Your home directory (including all files).<br><br>
|
||||
If your account has been deactivated by mistake, please contact the administrative assistant for your degree program immediately.<br>';
|
||||
|
||||
|
||||
|
||||
|
||||
$this->phrasen['profil/nurJPGBilder']='Currently it is only possible to upload JPEG images';
|
||||
$this->phrasen['profil/BilduploadInfotext']='Currently it is only possible to upload JPG images with a maximum size of 15MB!<br><br><b>Please follow the <a href="'.APP_ROOT.'cms/content.php?content_id=%s">guidelines for uploading images</a></b>';
|
||||
$this->phrasen['profil/Bild']='Picture';
|
||||
$this->phrasen['profil/Bildupload']='Upload Picture';
|
||||
$this->phrasen['profil/fotofreigeben']='Unlock your profile photo';
|
||||
$this->phrasen['profil/fotosperren']='Lock your profile photo';
|
||||
$this->phrasen['profil/infotextSperre']='Locked profile photos are only used for access cards, and do not appear on attendance lists or in the people search';
|
||||
$this->phrasen['profil/profilfotoGesperrt']='Profile photo locked';
|
||||
$this->phrasen['profil/profilfotoUploadGesperrt']='It is no longer possible to upload a profile photo';
|
||||
$this->phrasen['profil/fhausweisStatus']='UAS ID card status';
|
||||
$this->phrasen['profil/fhausweisWurdeBereitsAusgegeben']='UAS ID card has already been issued on %s.';
|
||||
$this->phrasen['profil/ladenSieBitteEinGueltigesFotoHoch']='Please upload a valid photo';
|
||||
$this->phrasen['profil/fotoWurdeNochNichtAkzeptiert']='Photo has not yet been accepted';
|
||||
$this->phrasen['profil/fhausweisGedrucktAm']='UAS ID card printed on';
|
||||
$this->phrasen['profil/fhausweisAbholbereitAmEmpfangAb']='UAS ID card will be ready for pick-up at the information desk on';
|
||||
$this->phrasen['profil/fhausweisWurdeNochNichtGedruckt']='UAS ID card has not yet been printed';
|
||||
$this->phrasen['profil/ihrFotoWurdeNochNichtGeprueft']='Your photo has not yet been approved';
|
||||
$this->phrasen['profil/fotoAuswählen']='Click on the image below to upload a photo';
|
||||
$this->phrasen['profil/bildSpeichern']='Save image';
|
||||
$this->phrasen['profil/gueltigvon']='Valid from';
|
||||
$this->phrasen['profil/gueltigbis']='Valid to';
|
||||
?>
|
||||
<?php
|
||||
$this->phrasen['profil/home']='HOME';
|
||||
$this->phrasen['profil/profil']='Profile';
|
||||
$this->phrasen['profil/mitarbeiter']='Employee';
|
||||
$this->phrasen['profil/meinCis']='My CIS';
|
||||
$this->phrasen['profil/bildHochladen']='Upload picture';
|
||||
$this->phrasen['profil/email']='eMail';
|
||||
$this->phrasen['profil/kontaktPrivat']='Private Contacts';
|
||||
$this->phrasen['profil/intern']='Intern';
|
||||
$this->phrasen['profil/alias']='Alias';
|
||||
$this->phrasen['profil/homepage']='Homepage';
|
||||
$this->phrasen['profil/student']='Student';
|
||||
$this->phrasen['profil/martrikelnummer']='matriculation number';
|
||||
$this->phrasen['profil/leistungsbeurteilung']='Performance assessment';
|
||||
$this->phrasen['profil/kurzzeichen']='Abbreviation';
|
||||
$this->phrasen['profil/telefonTw']='Telephone';
|
||||
$this->phrasen['profil/faxTw']='Fax';
|
||||
$this->phrasen['profil/zeitwuensche']='Preferred teaching times';
|
||||
$this->phrasen['profil/funktionen']='Functions';
|
||||
$this->phrasen['profil/entlehnteBetriebsmittel']='Borrowed equipment';
|
||||
$this->phrasen['profil/betriebsmittel']='Equipment';
|
||||
$this->phrasen['profil/nummer']='Number';
|
||||
$this->phrasen['profil/ausgegebenAm']='Issued on';
|
||||
$this->phrasen['profil/sieSindMitgliedInFolgendenVerteilern']='You are member of the following mailing lists';
|
||||
$this->phrasen['profil/derUserIstInFolgendenVerteilern'] = 'User %s is a member of the following mailing lists';
|
||||
$this->phrasen['profil/alleStudentenVon']='All students from';
|
||||
$this->phrasen['profil/kurzbeschreibungFuerOeh']='Brief description for the Austian Student Union candidacy';
|
||||
$this->phrasen['profil/solltenDatenNichtStimmen']='If your data is incorrect, please contact the responsible assistant';
|
||||
$this->phrasen['profil/esWurdenKeineProfileGefunden']='No profile ore multiple profiles were found for your user account';
|
||||
$this->phrasen['profil/keinGueltigesProfil']='Not a valid profile';
|
||||
$this->phrasen['profil/adminstration']='Administration';
|
||||
$this->phrasen['profil/zustaendigeAssistenz']='Administrative Assistant';
|
||||
$this->phrasen['profil/wendenSieSichAn']='Please contact the';
|
||||
$this->phrasen['profil/solltenDatenNichtStimmen']='If your data is incorrect, please contact the responsible';
|
||||
$this->phrasen['profil/buero']='Office';
|
||||
$this->phrasen['profil/zeitsperrenVon']='Unavailabilities of';
|
||||
$this->phrasen['profil/lvplanVon']='Schedule from';
|
||||
|
||||
$this->phrasen['profil/AccountInaktiv']='NOTICE: This account is no longer active';
|
||||
$this->phrasen['profil/inaktivStudent']='NOTICE!<br> We would like to remind you that your user record has been deactivated.
|
||||
You were also removed from all e-mail distribution lists when your account was deactivated.<br><br>
|
||||
If your user account is not reactivated within 6 months (for students) or 3 weeks (for dropouts) of being deactivated, the following data will be automatically deleted:<br>
|
||||
- Your account<br>- Your mailbox (including all e-mails) and<br>- Your home directory (including all files).<br><br>
|
||||
If your account has been deactivated by mistake, please contact the administrative assistant for your degree program immediately.<br>';
|
||||
|
||||
$this->phrasen['profil/inaktivMitarbeiter']='NOTICE!<br> We would like to remind you that your user record has been deactivated.
|
||||
You were also removed from all e-mail distribution lists when your account was deactivated.<br><br>
|
||||
If your user account is not reactivated within 12 months of being deactivated, the following data will be automatically deleted:<br>
|
||||
- Your account<br>- Your mailbox (including all e-mails) and<br>- Your home directory (including all files).<br><br>
|
||||
If your account has been deactivated by mistake, please contact the administrative assistant for your degree program immediately.<br>';
|
||||
|
||||
$this->phrasen['profil/inaktivSonstige']='NOTICE!<br> We would like to remind you that your user record has been deactivated.
|
||||
You were also removed from all e-mail distribution lists when your account was deactivated.<br><br>
|
||||
If your user account is not reactivated within the next days of being deactivated, the following data will be automatically deleted:<br>
|
||||
- Your account<br>- Your mailbox (including all e-mails) and<br>- Your home directory (including all files).<br><br>
|
||||
If your account has been deactivated by mistake, please contact the administrative assistant for your degree program immediately.<br>';
|
||||
|
||||
|
||||
|
||||
|
||||
$this->phrasen['profil/nurJPGBilder']='Currently it is only possible to upload JPEG images';
|
||||
$this->phrasen['profil/BilduploadInfotext']='Currently it is only possible to upload JPG images with a maximum size of 15MB!<br><br><b>Please follow the <a href="'.APP_ROOT.'cms/content.php?content_id=%s">guidelines for uploading images</a></b>';
|
||||
$this->phrasen['profil/Bild']='Picture';
|
||||
$this->phrasen['profil/Bildupload']='Upload Picture';
|
||||
$this->phrasen['profil/fotofreigeben']='Unlock your profile photo';
|
||||
$this->phrasen['profil/fotosperren']='Lock your profile photo';
|
||||
$this->phrasen['profil/infotextSperre']='Locked profile photos are only used for access cards, and do not appear on attendance lists or in the people search';
|
||||
$this->phrasen['profil/profilfotoGesperrt']='Profile photo locked';
|
||||
$this->phrasen['profil/profilfotoUploadGesperrt']='It is no longer possible to upload a profile photo';
|
||||
$this->phrasen['profil/fhausweisStatus']='UAS ID card status';
|
||||
$this->phrasen['profil/fhausweisWurdeBereitsAusgegeben']='UAS ID card has already been issued on %s.';
|
||||
$this->phrasen['profil/ladenSieBitteEinGueltigesFotoHoch']='Please upload a valid photo';
|
||||
$this->phrasen['profil/fotoWurdeNochNichtAkzeptiert']='Photo has not yet been accepted';
|
||||
$this->phrasen['profil/fhausweisGedrucktAm']='UAS ID card printed on';
|
||||
$this->phrasen['profil/fhausweisAbholbereitAmEmpfangAb']='UAS ID card will be ready for pick-up at the information desk on';
|
||||
$this->phrasen['profil/fhausweisWurdeNochNichtGedruckt']='UAS ID card has not yet been printed';
|
||||
$this->phrasen['profil/ihrFotoWurdeNochNichtGeprueft']='Your photo has not yet been approved';
|
||||
$this->phrasen['profil/fotoAuswählen']='Click on the image below to upload a photo';
|
||||
$this->phrasen['profil/bildSpeichern']='Save image';
|
||||
$this->phrasen['profil/gueltigvon']='Valid from';
|
||||
$this->phrasen['profil/gueltigbis']='Valid to';
|
||||
?>
|
||||
|
||||
+63
-62
@@ -1,62 +1,63 @@
|
||||
<?php
|
||||
$this->phrasen['profil/AccountInaktiv']='Attenzione: questo account non è più attivo';
|
||||
$this->phrasen['profil/adminstration']='Gestione notizie';
|
||||
$this->phrasen['profil/alias']='alias';
|
||||
$this->phrasen['profil/alleStudentenVon']='Tutti gli studenti di';
|
||||
$this->phrasen['profil/ausgegebenAm']='';
|
||||
$this->phrasen['profil/betriebsmittel']='';
|
||||
$this->phrasen['profil/Bild']='';
|
||||
$this->phrasen['profil/bildHochladen']='';
|
||||
$this->phrasen['profil/bildSpeichern']='';
|
||||
$this->phrasen['profil/Bildupload']='';
|
||||
$this->phrasen['profil/BilduploadInfotext']='';
|
||||
$this->phrasen['profil/buero']='';
|
||||
$this->phrasen['profil/derUserIstInFolgendenVerteilern ']='';
|
||||
$this->phrasen['profil/email']='Email';
|
||||
$this->phrasen['profil/entlehnteBetriebsmittel']='';
|
||||
$this->phrasen['profil/esWurdenKeineProfileGefunden']='Nessun profilo o più profili per l\'utente richiesto';
|
||||
$this->phrasen['profil/faxTw']='fax';
|
||||
$this->phrasen['profil/fhausweisAbholbereitAmEmpfangAb']='';
|
||||
$this->phrasen['profil/fhausweisGedrucktAm']='';
|
||||
$this->phrasen['profil/fhausweisStatus']='';
|
||||
$this->phrasen['profil/fhausweisWurdeBereitsAusgegeben']='Tesserino consegnato il %s.';
|
||||
$this->phrasen['profil/fhausweisWurdeNochNichtGedruckt']='';
|
||||
$this->phrasen['profil/fotoAuswählen']='';
|
||||
$this->phrasen['profil/fotofreigeben']='';
|
||||
$this->phrasen['profil/fotosperren']='';
|
||||
$this->phrasen['profil/fotoWurdeNochNichtAkzeptiert']='';
|
||||
$this->phrasen['profil/funktionen']='';
|
||||
$this->phrasen['profil/home']='';
|
||||
$this->phrasen['profil/homepage']='';
|
||||
$this->phrasen['profil/ihrFotoWurdeNochNichtGeprueft']='';
|
||||
$this->phrasen['profil/inaktivMitarbeiter']='';
|
||||
$this->phrasen['profil/inaktivSonstige']='';
|
||||
$this->phrasen['profil/inaktivStudent']='';
|
||||
$this->phrasen['profil/infotextSperre']='';
|
||||
$this->phrasen['profil/intern']='E-mail di Ateneo';
|
||||
$this->phrasen['profil/kontaktPrivat']='Contatti Personali';
|
||||
$this->phrasen['profil/kurzbeschreibungFuerOeh']='';
|
||||
$this->phrasen['profil/kurzzeichen']='ID breve';
|
||||
$this->phrasen['profil/ladenSieBitteEinGueltigesFotoHoch']='';
|
||||
$this->phrasen['profil/leistungsbeurteilung']='';
|
||||
$this->phrasen['profil/lvplanVon']='';
|
||||
$this->phrasen['profil/martrikelnummer']='Codice Persona';
|
||||
$this->phrasen['profil/meinCis']='';
|
||||
$this->phrasen['profil/mitarbeiter']='';
|
||||
$this->phrasen['profil/mobil']='Cellulare';
|
||||
$this->phrasen['profil/nummer']='';
|
||||
$this->phrasen['profil/nurJPGBilder']='';
|
||||
$this->phrasen['profil/profil']='';
|
||||
$this->phrasen['profil/profilfotoGesperrt']='';
|
||||
$this->phrasen['profil/profilfotoUploadGesperrt']='';
|
||||
$this->phrasen['profil/sieSindMitgliedInFolgendenVerteilern']='';
|
||||
$this->phrasen['profil/solltenDatenNichtStimmen']='La preghiamo di rivolgersi alla segreteria nel caso i dati non risultino essere corretti.';
|
||||
$this->phrasen['profil/student']='Studente';
|
||||
$this->phrasen['profil/telefon']='';
|
||||
$this->phrasen['profil/telefonTw']='';
|
||||
$this->phrasen['profil/wendenSieSichAn']='';
|
||||
$this->phrasen['profil/zeitsperrenVon']='';
|
||||
$this->phrasen['profil/zeitwuensche']='';
|
||||
$this->phrasen['profil/zustaendigeAssistenz']='';
|
||||
|
||||
?>
|
||||
<?php
|
||||
$this->phrasen['profil/AccountInaktiv']='Attenzione: questo account non è più attivo';
|
||||
$this->phrasen['profil/adminstration']='Gestione notizie';
|
||||
$this->phrasen['profil/alias']='alias';
|
||||
$this->phrasen['profil/alleStudentenVon']='Tutti gli studenti di';
|
||||
$this->phrasen['profil/ausgegebenAm']='';
|
||||
$this->phrasen['profil/betriebsmittel']='';
|
||||
$this->phrasen['profil/Bild']='';
|
||||
$this->phrasen['profil/bildHochladen']='';
|
||||
$this->phrasen['profil/bildSpeichern']='';
|
||||
$this->phrasen['profil/Bildupload']='';
|
||||
$this->phrasen['profil/BilduploadInfotext']='';
|
||||
$this->phrasen['profil/buero']='';
|
||||
$this->phrasen['profil/derUserIstInFolgendenVerteilern ']='';
|
||||
$this->phrasen['profil/email']='Email';
|
||||
$this->phrasen['profil/entlehnteBetriebsmittel']='';
|
||||
$this->phrasen['profil/esWurdenKeineProfileGefunden']='Nessun profilo o più profili per l\'utente richiesto';
|
||||
$this->phrasen['profil/keinGueltigesProfil']='';
|
||||
$this->phrasen['profil/faxTw']='fax';
|
||||
$this->phrasen['profil/fhausweisAbholbereitAmEmpfangAb']='';
|
||||
$this->phrasen['profil/fhausweisGedrucktAm']='';
|
||||
$this->phrasen['profil/fhausweisStatus']='';
|
||||
$this->phrasen['profil/fhausweisWurdeBereitsAusgegeben']='Tesserino consegnato il %s.';
|
||||
$this->phrasen['profil/fhausweisWurdeNochNichtGedruckt']='';
|
||||
$this->phrasen['profil/fotoAuswählen']='';
|
||||
$this->phrasen['profil/fotofreigeben']='';
|
||||
$this->phrasen['profil/fotosperren']='';
|
||||
$this->phrasen['profil/fotoWurdeNochNichtAkzeptiert']='';
|
||||
$this->phrasen['profil/funktionen']='';
|
||||
$this->phrasen['profil/home']='';
|
||||
$this->phrasen['profil/homepage']='';
|
||||
$this->phrasen['profil/ihrFotoWurdeNochNichtGeprueft']='';
|
||||
$this->phrasen['profil/inaktivMitarbeiter']='';
|
||||
$this->phrasen['profil/inaktivSonstige']='';
|
||||
$this->phrasen['profil/inaktivStudent']='';
|
||||
$this->phrasen['profil/infotextSperre']='';
|
||||
$this->phrasen['profil/intern']='E-mail di Ateneo';
|
||||
$this->phrasen['profil/kontaktPrivat']='Contatti Personali';
|
||||
$this->phrasen['profil/kurzbeschreibungFuerOeh']='';
|
||||
$this->phrasen['profil/kurzzeichen']='ID breve';
|
||||
$this->phrasen['profil/ladenSieBitteEinGueltigesFotoHoch']='';
|
||||
$this->phrasen['profil/leistungsbeurteilung']='';
|
||||
$this->phrasen['profil/lvplanVon']='';
|
||||
$this->phrasen['profil/martrikelnummer']='Codice Persona';
|
||||
$this->phrasen['profil/meinCis']='';
|
||||
$this->phrasen['profil/mitarbeiter']='';
|
||||
$this->phrasen['profil/mobil']='Cellulare';
|
||||
$this->phrasen['profil/nummer']='';
|
||||
$this->phrasen['profil/nurJPGBilder']='';
|
||||
$this->phrasen['profil/profil']='';
|
||||
$this->phrasen['profil/profilfotoGesperrt']='';
|
||||
$this->phrasen['profil/profilfotoUploadGesperrt']='';
|
||||
$this->phrasen['profil/sieSindMitgliedInFolgendenVerteilern']='';
|
||||
$this->phrasen['profil/solltenDatenNichtStimmen']='La preghiamo di rivolgersi alla segreteria nel caso i dati non risultino essere corretti.';
|
||||
$this->phrasen['profil/student']='Studente';
|
||||
$this->phrasen['profil/telefon']='';
|
||||
$this->phrasen['profil/telefonTw']='';
|
||||
$this->phrasen['profil/wendenSieSichAn']='';
|
||||
$this->phrasen['profil/zeitsperrenVon']='';
|
||||
$this->phrasen['profil/zeitwuensche']='';
|
||||
$this->phrasen['profil/zustaendigeAssistenz']='';
|
||||
|
||||
?>
|
||||
|
||||
Reference in New Issue
Block a user