source: extensions/ContactForm/language/de_DE/plugin.lang.php @ 7197

Last change on this file since 7197 was 7197, checked in by plg, 14 years ago

feature 1897 added: the core "Contact Webmaster" link in footer is replaced by
a link to the ContactForm page. It works with a smarty prefilter, so it should
work with all themes.

The configurable template variable name was removed. It is hard coded as
$ContactFormLink. I've seen no example using another variable name. It was
hard to understand for users in the administration panel and not very useful.
The corresponding language keys were removed from all languages.

bug 1916 fixed: apply the same rule for link display in footer as in menu. If
the administrator has allowed the ContactForm page for guests, let's display
it in the menu + footer.

File size: 4.3 KB
Line 
1<?php
2
3/* $Id: plugin.lang.php,v 1.11 2009/09/01 17:10:50 Criss Exp $ */
4
5if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!');
6
7global $lang;
8
9
10
11$lang['cf_plugin_name'] = 'Kontaktformular';
12
13$lang['contact_form_debug'] = 'Anzeige von Debug-Informationen';
14
15
16
17// ==================================================================
18
19// Default values if not configured
20
21$lang['contact_form_title'] = 'Kontaktformular';
22
23$lang['contact_form'] = 'Kontaktieren';
24
25$lang['contact_form_link'] = 'Den Webmaster kontaktieren';
26
27
28
29// ==================================================================
30
31// Redirect page
32
33$lang['contact_redirect_title'] = 'Status der Nachricht';
34
35
36
37// ==================================================================
38
39// Menubar block
40
41$lang['cf_from_name'] = 'Ihr Name';
42
43$lang['cf_from_mail'] = 'Ihre E-Mail';
44
45$lang['cf_subject'] = 'Betreff';
46
47$lang['cf_message'] = 'Mitteilung';
48
49$lang['cf_submit'] = 'senden';
50
51
52
53// ==================================================================
54
55// Messages
56
57$lang['cf_from_name_error'] = 'Bitte fügen Sie Ihren Namen ein';
58
59$lang['cf_mail_format_error'] = $lang['reg_err_mail_address'];
60
61$lang['cf_subject_error'] = 'Bitte fügen Sie den Betreff ein';
62
63$lang['cf_message_error'] = 'Bitte fügen Sie eine Mitteilung hinzu';
64
65$lang['cf_error_sending_mail'] = 'Es ist ein Fehler beim Versand der E-Mail aufgetreten'; 
66
67$lang['cf_sending_mail_successful'] = 'Die E-Mail wurde erfolgreich versendet';
68
69$lang['cf_form_error'] = 'Ungültige Daten'; 
70
71$lang['cf_inconsistent_version'] = '%s : Inkompatible Version';
72
73$lang['cf_no_unlink'] = 'Die Funktion \'unlink\' ist nicht verfügbar...';
74
75$lang['cf_unlink_errors'] = 'Es ist ein Fehler während der Löschung der Datei entstanden';
76
77$lang['cf_config_saved'] = 'Die Konfiguration wurde erfolgreich gespeichert werden';
78
79$lang['cf_config_saved_with_errors'] = 'Die Konfiguration wurde mit Fehlern gespeichert';
80
81$lang['cf_length_not_integer'] = 'Die Grössen müssen Integer zahlen sein';
82
83$lang['cf_delay_not_integer'] = 'Die Verzögerung muss eine Integer zahl sein';
84
85$lang['cf_link_error'] = 'Die Variabel darf keine Lehrzeichen enthalten';
86
87$lang['cf_hide'] = 'Verstecken';
88
89
90
91// ==================================================================
92
93// Admin page
94
95$lang['cf_validate'] = 'Einstellung speichern';
96
97// Configuration tab
98
99$lang['cf_tab_config'] = 'Konfiguration';
100
101$lang['cf_config'] = 'Konfiguration';
102
103$lang['cf_config_desc'] = 'Hauptkonfiguration des Plug-in\'s';
104
105$lang['cf_label_config'] = 'Algemeine Konfiguration';
106
107$lang['cf_label_mail'] = 'E-mail Konfiguration';
108
109$lang['cf_menu_link'] = 'Füge einen Link im Menü hinzu';
110
111$lang['cf_guest_allowed'] = 'Erlaube den Gästen die Benutzung des Kontaktformulars';
112
113$lang['cf_mail_prefix'] = 'Präfix des Betreffs der gesendeten E-Mail';
114
115$lang['cf_separator'] = 'Benutzter Charakter, welcher eine Trennleiste in der E-Mail im Textformat definiert';
116
117$lang['cf_separator_length'] = 'Grösse der Trennleiste';
118
119$lang['cf_mandatory_name'] = 'Der Name ist obligatorisch';
120
121$lang['cf_mandatory_mail'] = 'Die E-Mail ist obligatorisch';
122
123$lang['cf_redirect_delay'] = 'Wartezeit bis zur Weiterleitung (s) ';
124
125// Emails tab
126
127$lang['cf_tab_emails'] = 'E-Mails';
128
129$lang['cf_emails'] = 'E-Mails';
130
131$lang['cf_emails_desc'] = 'Verwaltung des E-Mail Bestimmungsortes';
132
133$lang['cf_active'] = 'Aktive E-Mail';
134
135$lang['cf_no_mail'] = 'Keine E-Mail Adresse verfügbar';
136
137$lang['cf_refresh'] = 'Regeneriere die E-Mail Adressenliste';
138
139// Language tab
140
141$lang['cf_tab_language'] = 'Lokalisation';
142
143$lang['cf_language'] = 'Lokalisation';
144
145$lang['cf_language_desc'] = 'Übersetzung der Mitteilungen';
146
147$lang['cf_select_item'] = 'Das zu übersetzende Item auswählen';
148
149$lang['cf_default_lang'] = 'Default';
150
151$lang['contact_form_title_label'] = 'Benutzter Titel in der Menüleiste';
152
153$lang['contact_form_label'] = 'Angezeigter Name in der Menüleiste';
154
155$lang['contact_form_link_label'] = 'Benutzter Text als Kontaktlink in der Fusszeile';
156
157// History tab
158
159$lang['cf_tab_history'] = 'Historie';
160
161$lang['cf_history'] = 'Historie';
162
163$lang['cf_history_desc'] = 'Historie der Revisionen';
164
165$lang['cf_history_date'] = 'Datum';
166
167$lang['cf_history_version'] = 'Version';
168
169$lang['cf_history_log'] = 'Change log';
170
171$lang['cf_file_not_found'] = 'Datei konnte nicht gefunden werden';
172
173$lang['cf_file_empty'] = 'Die Datei ist lehr';
174
175$lang['cf_format_date'] = '%D %M %Y';
176
177?>
Note: See TracBrowser for help on using the repository browser.