1 | <?php |
---|
2 | // +-----------------------------------------------------------------------+ |
---|
3 | // | Piwigo - a PHP based picture gallery | |
---|
4 | // +-----------------------------------------------------------------------+ |
---|
5 | // | Copyright(C) 2008-2009 Piwigo Team http://piwigo.org | |
---|
6 | // | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net | |
---|
7 | // | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick | |
---|
8 | // +-----------------------------------------------------------------------+ |
---|
9 | // | This program is free software; you can redistribute it and/or modify | |
---|
10 | // | it under the terms of the GNU General Public License as published by | |
---|
11 | // | the Free Software Foundation | |
---|
12 | // | | |
---|
13 | // | This program is distributed in the hope that it will be useful, but | |
---|
14 | // | WITHOUT ANY WARRANTY; without even the implied warranty of | |
---|
15 | // | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
---|
16 | // | General Public License for more details. | |
---|
17 | // | | |
---|
18 | // | You should have received a copy of the GNU General Public License | |
---|
19 | // | along with this program; if not, write to the Free Software | |
---|
20 | // | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, | |
---|
21 | // | USA. | |
---|
22 | // +-----------------------------------------------------------------------+ |
---|
23 | |
---|
24 | $lang['Installation'] = 'Installation'; |
---|
25 | $lang['Initial_config'] = 'Basis-Konfiguration'; |
---|
26 | $lang['Default_lang'] = 'Standardsprache der Galerie'; |
---|
27 | $lang['step1_title'] = 'Konfiguration der Datenbank'; |
---|
28 | $lang['step2_title'] = 'Konfiguration des Administrator-Kontos'; |
---|
29 | $lang['Start_Install'] = 'Start der Installation'; |
---|
30 | $lang['reg_err_mail_address'] = 'Die E-Mail-Adresse muss in der Form xxx@yyy.eee (Beispiel: jack@altern.org)'; |
---|
31 | |
---|
32 | $lang['install_webmaster'] = 'Administrator'; |
---|
33 | $lang['install_webmaster_info'] = 'Benutzername des Administrators'; |
---|
34 | |
---|
35 | $lang['step1_confirmation'] = 'Die Parameter sind korrekt ausgefüllt'; |
---|
36 | $lang['step1_err_db'] = 'Die Verbindung zum Server ist OK, aber nicht die Verbindung zu dieser Datenbank'; |
---|
37 | $lang['step1_err_server'] = 'Es konnte keine Verbindung zum Datenbankserver aufgebaut werden'; |
---|
38 | |
---|
39 | $lang['step1_host'] = 'MySQL Host'; |
---|
40 | $lang['step1_host_info'] = 'localhost, sql.multimania.com, toto.freesurf.fr'; |
---|
41 | $lang['step1_user'] = 'Benutzer'; |
---|
42 | $lang['step1_user_info'] = 'Benutzernamen für die MySQL Datenbank'; |
---|
43 | $lang['step1_pass'] = 'Passwort'; |
---|
44 | $lang['step1_pass_info'] = 'das von Ihrem Hosting-Provider'; |
---|
45 | $lang['step1_database'] = 'Name der Datenbank'; |
---|
46 | $lang['step1_database_info'] = 'Passwort für die MySQL Datenbank'; |
---|
47 | $lang['step1_prefix'] = 'Vorwahl Tabellen'; |
---|
48 | $lang['step1_prefix_info'] = 'die Namen der Tabellen mit diesem Präfix (ermöglicht eine bessere Verwaltung der Datenbank)'; |
---|
49 | $lang['step2_err_login1'] = 'gib bitte einen Benutzernamen für den Webmaster an'; |
---|
50 | $lang['step2_err_login3'] = 'der Benutzername des Webmasters darf nicht die Zeichen \' und " enthalten'; |
---|
51 | $lang['step2_err_pass'] = 'Bitte wählen Sie ein Passwort'; |
---|
52 | $lang['install_end_title'] = 'Installation abgeschlossen'; |
---|
53 | $lang['step2_pwd'] = 'Passwort'; |
---|
54 | $lang['step2_pwd_info'] = 'Administratorpasswort'; |
---|
55 | $lang['step2_pwd_conf'] = 'Passwort [Bestätigung]'; |
---|
56 | $lang['step2_pwd_conf_info'] = 'Wiederholen Sie das eingegebene Passwort'; |
---|
57 | $lang['step1_err_copy'] = 'Kopieren Sie den rosa Text ohne die Bindestriche und fügen Sie ihn in die Datei "include / mysql.inc.php" auf dem Webserver ein (Warnung: die Datei "mysql.inc.php" darf nur die rosa Zeichen enthalten, nicht mehr und nicht weniger)'; |
---|
58 | $lang['install_help'] = 'Brauchen Sie Hilfe? Stellen Sie Ihre Frage auf der <a href="%s"> Forum Piwigo </ a>.'; |
---|
59 | $lang['install_end_message'] = 'Die Konfiguration der Piwigo abgeschlossen ist, hier ist der nächste Schritt<br /><br /> |
---|
60 | * Gehen Sie zum Anmelden auf die Startseite: [ <a href="./identification.php">Identifizierung</a> ] und verwenden Sie die Login / Passwort für Webmaster<br /> |
---|
61 | * diesem Login ermöglicht Ihnen den Zugang zu den Verwaltungs-Panel und der Bilder- und Benutzerverwaltung.'; |
---|
62 | $lang['conf_mail_webmaster'] = 'Webmaster Mail-Adresse'; |
---|
63 | $lang['conf_mail_webmaster_info'] = 'Kontakt E-Mailadresse (nur für angemeldete Benutzer sichtbar)'; |
---|
64 | ?> |
---|