1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
|
<? /* ©2003 Proverbs, LLC. All rights reserved. */
if (eregi("german.lng.php", $_SERVER['PHP_SELF'])) { // redirect to calendar page header("Location: calendar.php"); exit; }
if(!defined("GERMAN_LANGUAGE")) { define("GERMAN_LANGUAGE", TRUE);
require ('baselang.inc.php');
class languageset extends baselanguage { // Constructor function languageset() { $this->lang_value = "de"; $this->day_long = Array('Sonntag', 'Montag', 'Dienstag', 'Mittwoch', 'Donnerstag', 'Freitag', 'Samstag'); $this->day_short = Array('Son', 'Mon', 'Die', 'Mitt', 'Don', 'Fre', 'Sam'); $this->day_init = Array('S', 'M', 'D', 'M', 'D', 'F', 'S'); $this->month_long = Array(1 => 'Januar', 'Februar', 'März', 'April', 'Mai', 'Juni', 'Juli', 'August', 'September', 'Oktober', 'November', 'Dezember'); $this->month_short = Array(1 => 'Jan', 'Feb', 'Mär', 'Apr', 'Mai', 'Jun', 'Jul', 'Aug', 'Sep', 'Okt', 'Nov', 'Dez'); $this->word_today_date = "Heute"; $this->word_day = "Tag"; $this->word_month = "Monat"; $this->word_year = "Jahr"; $this->word_all_day = "Uhrzeit"; $this->word_no_javascript = "Dieser Kalender funktioniert nur richtig, wenn Javascript aktiviert ist"; $this->word_administration = "Kalender-Administration"; $this->word_full = "voll"; $this->word_author = "Autor"; $this->word_submit = "Ausführen"; $this->word_refresh = "Neu laden"; $this->word_more = "mehr"; $this->word_username = "Benutzername"; $this->word_password = "Kennwort"; $this->word_login = "Login"; $this->word_access_denied = "Zugriff verweigert"; $this->word_calendar_administration = "Kalender-Administration"; $this->word_user_admin = "Benutzer-Admin"; $this->word_user_administration = "Benutzer-Administration"; $this->word_access_level = "Zugriffsberechtigung"; $this->word_events = "Einträge"; $this->word_event_title = "Eintragstitel"; $this->word_event_details = "Eintragsdetails"; $this->word_start_time = "Startzeit"; $this->word_end_time = "Endzeit"; $this->word_event_type = "Eintragsart"; $this->word_date = "Datum"; $this->word_all = "Alle"; $this->word_weekday = "Wochentag"; $this->word_every = "Jeder"; $this->word_of = "im"; $this->word_all_months = "Alle Monate"; $this->word_show_events = "Zeige Einträge zwischen"; $this->word_show_weekday_events = "Zeige Wochentagseinträge"; $this->word_create_event = "Eintrag erstellen"; $this->word_delete_event = "Eintrag löschen"; $this->word_update_event = "Eintrag ändern"; $this->word_create_ok = "Kalendereintrag erfolgreich erstellt"; $this->word_update_ok = "Kalendereintrag erfolgreich aktualisiert"; $this->word_delete_ok = "Kalendereintrag wurde entfernt"; $this->word_fail_select = "FEHLER: Kein Event ausgewählt"; $this->word_create_fail = "FEHLER: Ein erforderlichers Feld ist leer oder ungültig"; $this->word_create_unknown = "FEHLER: Eine unbekannter Fehler ist aufgetreten"; $this->word_existing_events = "Vorhandene Einträge"; $this->word_create_user = "Benutzer anlegen"; $this->word_delete_user = "Benutzer löschen"; $this->word_update_user = "Benutzer ändern"; $this->word_existing_users = "Vorhandene Benutzerkonten"; $this->word_fail_nouser = "FEHLER: Benutzername ist leer oder ungültig"; $this->word_fail_duplicate = "FEHLER: Doppelter Benutzername"; $this->word_fail_selflower = "FEHLER: Sie können nicht Ihre eigene Zugriffsberechtigung erabsetzen"; $this->word_fail_selfdelete = "FEHLER: Sie können nicht Ihr eigenes Konto entfernen"; $this->word_createuser_ok = "Benutzerkonto erfolgreich erstellt"; $this->word_deleteuser_ok = "Benutzerkonto entfernt"; $this->word_updateuser_ok = "Benutzerkonto erfolgreich aktualisiert"; $this->word_emptyfield = "Ein erforderlichers Feld ist leer oder ungültig"; } } } ?>
|