From ee199236f1146431748ad15dc39b54ebf8cd151e Mon Sep 17 00:00:00 2001 From: alex Date: Mon, 7 Oct 2019 10:09:47 +0200 Subject: [PATCH] CIS profil Funktionen: - added Wochenstunden column - added Wochenstunden and Vertragsstunden Summe - removed semester and institut column - --- cis/private/profile/index.php | 45 +++++++-- locale/de-AT/profil.php | 167 +++++++++++++++++----------------- locale/en-US/profil.php | 163 ++++++++++++++++----------------- locale/it-IT/profil.php | 125 ++++++++++++------------- 4 files changed, 268 insertions(+), 232 deletions(-) diff --git a/cis/private/profile/index.php b/cis/private/profile/index.php index 5f93930cc..d1d6c96b5 100644 --- a/cis/private/profile/index.php +++ b/cis/private/profile/index.php @@ -507,7 +507,7 @@ if (!defined('CIS_PROFIL_FUNKTIONEN_ANZEIGEN') || CIS_PROFIL_FUNKTIONEN_ANZEIGEN $qry = "SELECT *, tbl_benutzerfunktion.oe_kurzbz as oe_kurzbz, tbl_organisationseinheit.bezeichnung as oe_bezeichnung, tbl_benutzerfunktion.semester, tbl_benutzerfunktion.bezeichnung as bf_bezeichnung, - tbl_benutzerfunktion.datum_von, tbl_benutzerfunktion.datum_bis + tbl_benutzerfunktion.wochenstunden, tbl_benutzerfunktion.datum_von, tbl_benutzerfunktion.datum_bis FROM public.tbl_benutzerfunktion JOIN public.tbl_funktion USING(funktion_kurzbz) @@ -526,14 +526,15 @@ if (!defined('CIS_PROFIL_FUNKTIONEN_ANZEIGEN') || CIS_PROFIL_FUNKTIONEN_ANZEIGEN '.$p->t('global/bezeichnung').' '.$p->t('global/organisationseinheit').' - '.$p->t('global/semester').' - '.$p->t('global/institut').' '.$p->t('profil/gueltigvon').' '.$p->t('profil/gueltigbis').' + '.$p->t('profil/wochenstunden').' '; + $wochenstunden_sum = 0.00; + while($row_funktion = $db->db_fetch_object($result_funktion)) { echo " @@ -544,13 +545,45 @@ if (!defined('CIS_PROFIL_FUNKTIONEN_ANZEIGEN') || CIS_PROFIL_FUNKTIONEN_ANZEIGEN echo ' - '.$row_funktion->bf_bezeichnung; echo " ".$row_funktion->organisationseinheittyp_kurzbz.' '.$row_funktion->oe_bezeichnung." - $row_funktion->semester - $row_funktion->fachbereich_kurzbz ".$datum_obj->formatDatum($row_funktion->datum_von,'d.m.Y')." ".$datum_obj->formatDatum($row_funktion->datum_bis,'d.m.Y')." + ".$row_funktion->wochenstunden." "; + + if(isset($row_funktion->wochenstunden)) + $wochenstunden_sum += (double)$row_funktion->wochenstunden; } - echo '
'; + echo '
'; + + //vertragsstunden + $vertragsstunden = 0.00; + $qry = "SELECT sum(vertragsstunden) AS vertragsstdsumme from bis.tbl_bisverwendung + WHERE mitarbeiter_uid = ".$db->db_add_param($uid)." + AND (ende > now() OR ende IS NULL)"; + + if ($result_vertragsstd = $db->db_query($qry)) + { + if ($db->db_num_rows($result_vertragsstd) > 0) + { + while($row_vertragsstd = $db->db_fetch_object($result_vertragsstd)) + { + $vertragsstunden = $row_vertragsstd->vertragsstdsumme; + } + } + } + + echo " + + + + + Summe Wochenstunden (Vertragsstunden) +  ".number_format($wochenstunden_sum,2). + " (".number_format($vertragsstunden,2).") + + "; + echo ""; + } } } diff --git a/locale/de-AT/profil.php b/locale/de-AT/profil.php index 52f1c439d..61c89784e 100644 --- a/locale/de-AT/profil.php +++ b/locale/de-AT/profil.php @@ -1,83 +1,84 @@ -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!
Wir möchten Sie darauf aufmerksam machen, dass Ihr Benutzerdatensatz -deaktiviert wurde.Durch diese Deaktivierung wurden Sie auch aus allen Email-Verteilern gelöscht.

-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
- Ihr Account,
- Ihre Mailbox (inkl. aller E-Mails) und
-- Ihr Home-Verzeichnis (inkl. aller Dateien) gelöscht.

Falls es sich bei der Deaktivierung um einen Irrtum handelt, würden wir Sie bitten, -sich umgehend mit Ihrer Studiengangsassistenz in Verbindung zu setzen.
'; - -$this->phrasen['profil/inaktivMitarbeiter']='Achtung!
Wir möchten Sie darauf aufmerksam machen, dass Ihr Benutzerdatensatz -deaktiviert wurde.Durch diese Deaktivierung wurden Sie auch aus allen Email-Verteilern gelöscht.

-Sollte innerhalb von 12 Monaten nach der Deaktivierung keine neuerliche Aktivierung Ihres Benutzerdatensatzes erfolgen, dann werden automatisch auch
-- Ihr Account,
- Ihre Mailbox (inkl. aller E-Mails) und
-- Ihr Home-Verzeichnis (inkl. aller Dateien) gelöscht.

Falls es sich bei der Deaktivierung um einen Irrtum handelt, würden wir Sie bitten, -sich umgehend mit Ihrer Studiengangsassistenz in Verbindung zu setzen.
'; - -$this->phrasen['profil/inaktivSonstige']='Achtung!
Wir möchten Sie darauf aufmerksam machen, dass Ihr Benutzerdatensatz -deaktiviert wurde.Durch diese Deaktivierung wurden Sie auch aus allen Email-Verteilern gelöscht.

-Sollte innerhalb der nächsten Tagen keine neuerliche Aktivierung Ihres Benutzerdatensatzes erfolgen, dann werden automatisch auch
-- Ihr Account,
- Ihre Mailbox (inkl. aller E-Mails) und
-- Ihr Home-Verzeichnis (inkl. aller Dateien) gelöscht.

Falls es sich bei der Deaktivierung um einen Irrtum handelt, würden wir Sie bitten, -sich umgehend mit Ihrer Studiengangsassistenz in Verbindung zu setzen.
'; - -$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!

Bitte beachten Sie die Richtlinien für den Bildupload'; -$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'; -?> +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!
Wir möchten Sie darauf aufmerksam machen, dass Ihr Benutzerdatensatz +deaktiviert wurde.Durch diese Deaktivierung wurden Sie auch aus allen Email-Verteilern gelöscht.

+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
- Ihr Account,
- Ihre Mailbox (inkl. aller E-Mails) und
+- Ihr Home-Verzeichnis (inkl. aller Dateien) gelöscht.

Falls es sich bei der Deaktivierung um einen Irrtum handelt, würden wir Sie bitten, +sich umgehend mit Ihrer Studiengangsassistenz in Verbindung zu setzen.
'; + +$this->phrasen['profil/inaktivMitarbeiter']='Achtung!
Wir möchten Sie darauf aufmerksam machen, dass Ihr Benutzerdatensatz +deaktiviert wurde.Durch diese Deaktivierung wurden Sie auch aus allen Email-Verteilern gelöscht.

+Sollte innerhalb von 12 Monaten nach der Deaktivierung keine neuerliche Aktivierung Ihres Benutzerdatensatzes erfolgen, dann werden automatisch auch
+- Ihr Account,
- Ihre Mailbox (inkl. aller E-Mails) und
+- Ihr Home-Verzeichnis (inkl. aller Dateien) gelöscht.

Falls es sich bei der Deaktivierung um einen Irrtum handelt, würden wir Sie bitten, +sich umgehend mit Ihrer Studiengangsassistenz in Verbindung zu setzen.
'; + +$this->phrasen['profil/inaktivSonstige']='Achtung!
Wir möchten Sie darauf aufmerksam machen, dass Ihr Benutzerdatensatz +deaktiviert wurde.Durch diese Deaktivierung wurden Sie auch aus allen Email-Verteilern gelöscht.

+Sollte innerhalb der nächsten Tagen keine neuerliche Aktivierung Ihres Benutzerdatensatzes erfolgen, dann werden automatisch auch
+- Ihr Account,
- Ihre Mailbox (inkl. aller E-Mails) und
+- Ihr Home-Verzeichnis (inkl. aller Dateien) gelöscht.

Falls es sich bei der Deaktivierung um einen Irrtum handelt, würden wir Sie bitten, +sich umgehend mit Ihrer Studiengangsassistenz in Verbindung zu setzen.
'; + +$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!

Bitte beachten Sie die Richtlinien für den Bildupload'; +$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'; +$this->phrasen['profil/wochenstunden']='Wochenstunden'; +?> diff --git a/locale/en-US/profil.php b/locale/en-US/profil.php index 30ea23f1a..538c1d1e4 100644 --- a/locale/en-US/profil.php +++ b/locale/en-US/profil.php @@ -1,81 +1,82 @@ -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!
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.

-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:
-- Your account
- Your mailbox (including all e-mails) and
- Your home directory (including all files).

-If your account has been deactivated by mistake, please contact the administrative assistant for your degree program immediately.
'; - -$this->phrasen['profil/inaktivMitarbeiter']='NOTICE!
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.

-If your user account is not reactivated within 12 months of being deactivated, the following data will be automatically deleted:
-- Your account
- Your mailbox (including all e-mails) and
- Your home directory (including all files).

-If your account has been deactivated by mistake, please contact the administrative assistant for your degree program immediately.
'; - -$this->phrasen['profil/inaktivSonstige']='NOTICE!
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.

-If your user account is not reactivated within the next days of being deactivated, the following data will be automatically deleted:
-- Your account
- Your mailbox (including all e-mails) and
- Your home directory (including all files).

-If your account has been deactivated by mistake, please contact the administrative assistant for your degree program immediately.
'; - - - - -$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!

Please follow the guidelines for uploading images'; -$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'; -?> +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!
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.

+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:
+- Your account
- Your mailbox (including all e-mails) and
- Your home directory (including all files).

+If your account has been deactivated by mistake, please contact the administrative assistant for your degree program immediately.
'; + +$this->phrasen['profil/inaktivMitarbeiter']='NOTICE!
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.

+If your user account is not reactivated within 12 months of being deactivated, the following data will be automatically deleted:
+- Your account
- Your mailbox (including all e-mails) and
- Your home directory (including all files).

+If your account has been deactivated by mistake, please contact the administrative assistant for your degree program immediately.
'; + +$this->phrasen['profil/inaktivSonstige']='NOTICE!
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.

+If your user account is not reactivated within the next days of being deactivated, the following data will be automatically deleted:
+- Your account
- Your mailbox (including all e-mails) and
- Your home directory (including all files).

+If your account has been deactivated by mistake, please contact the administrative assistant for your degree program immediately.
'; + + + + +$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!

Please follow the guidelines for uploading images'; +$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'; +$this->phrasen['profil/wochenstunden']='week hours'; +?> diff --git a/locale/it-IT/profil.php b/locale/it-IT/profil.php index 72bd47e65..14636a082 100644 --- a/locale/it-IT/profil.php +++ b/locale/it-IT/profil.php @@ -1,62 +1,63 @@ -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']=''; - -?> +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']=''; +$this->phrasen['profil/wochenstunden']=''; + +?>