1 | <?php |
---|
2 | // +-----------------------------------------------------------------------+ |
---|
3 | // | Mod Name : Download_multi | |
---|
4 | // | Mod Version : 0.9-1.3 | |
---|
5 | // | Mod Orignal author: Tboris | |
---|
6 | // | Mod Second author : Cestlodovic | |
---|
7 | // | Mod Version author : FlipFlip <flipflip@free.fr> | |
---|
8 | // | Mod description : | |
---|
9 | // | Ce module est base sur le module existant pour le telechargement, | |
---|
10 | // | cette version permet le telechargement sur plusieurs pages. | |
---|
11 | // +-----------------------------------------------------------------------+ |
---|
12 | // | This program is free software; you can redistribute it and/or modify | |
---|
13 | // | it under the terms of the GNU General Public License as published by | |
---|
14 | // | the Free Software Foundation | |
---|
15 | // | | |
---|
16 | // | This program is distributed in the hope that it will be useful, but | |
---|
17 | // | WITHOUT ANY WARRANTY; without even the implied warranty of | |
---|
18 | // | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
---|
19 | // | General Public License for more details. | |
---|
20 | // | | |
---|
21 | // | You should have received a copy of the GNU General Public License | |
---|
22 | // | along with this program; if not, write to the Free Software | |
---|
23 | // | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, | |
---|
24 | // | USA. | |
---|
25 | // +-----------------------------------------------------------------------+ |
---|
26 | |
---|
27 | $lang['dl_select_all'] = 'Wähle alle aus'; |
---|
28 | $lang['dl_start'] = 'Lade die Sammlung herunter'; |
---|
29 | $lang['dl_preview'] = 'Schau dir deine Sammlung an'; |
---|
30 | $lang['dl_uncheck'] = 'Alle abwählen'; |
---|
31 | $lang['dl_select'] = 'Zur Sammlung hinzufügen'; |
---|
32 | $lang['dl_title'] = 'Lade die Fotos herunter'; |
---|
33 | $lang['dl_thumbnail'] = 'Lade die Vorschaubilder herunter'; |
---|
34 | $lang['dl_normal'] = 'Lade die normalen Fotos herunter'; |
---|
35 | $lang['dl_high'] = 'Lade die Fotos in hoher Auflösung herunter'; |
---|
36 | $lang['dl_legend_select'] = 'Wähle die Fotos aus'; |
---|
37 | $lang['dl_message_cart'] = 'Du hast %s Fotos'; |
---|
38 | $lang['dl_trash'] = 'Verwerfe die Sammlung'; |
---|
39 | $lang['dl_archive'] = 'Sehe die Archive an'; |
---|
40 | $lang['dl_choice_image'] = 'Du must mindestens ein Bild auswählen.'; |
---|
41 | $lang['dl_dir_zip'] = 'Es ist nicht möglich einen Ordner zu erstellen'; |
---|
42 | $lang['dl_title_erreur'] = 'Fehler'; |
---|
43 | $lang['dl_title_telechargement'] = 'Dateiliste'; |
---|
44 | $lang['dl_empty_cart'] = 'keine Fotos gesammelt'; |
---|
45 | $lang['dl_bt_select'] = 'alle auswählen'; |
---|
46 | $lang['dl_bt_unselect'] = 'alle abwählen'; |
---|
47 | $lang['dl_bt_delete'] = 'Markierte löschen'; |
---|
48 | $lang['dl_th_file'] = 'Dateien'; |
---|
49 | $lang['dl_th_date'] = 'Erstellungsdatum'; |
---|
50 | $lang['dl_th_action'] = 'Auswahl'; |
---|
51 | $lang['dl_no_file'] = 'Keine Dateien'; |
---|
52 | $lang['dl_prefix_file'] = 'Präfix der Zipdatei'; |
---|
53 | $lang['dl_prefix_button'] = 'Übernehmen'; |
---|
54 | $lang['dl_type_thumbnail'] = 'Vorschaubild'; |
---|
55 | $lang['dl_type_normal'] = 'Normal'; |
---|
56 | $lang['dl_type_high'] = 'Hochauflösend'; |
---|
57 | $lang['dl_cart'] = 'Sammlung'; |
---|
58 | $lang['dl_no_download_title'] = 'Die folgenden Bilder können nicht in hoher Auflösung heruntergeladen werden'; |
---|
59 | $lang['dl_no_download_high'] = ' stehen nicht in hoher Auflösung zur Verfügung;'; |
---|
60 | $lang['dl_no_download_http'] = ' nicht zum Download zur Verfügung;'; |
---|
61 | $lang['dl_no_file'] = 'Keine Dateien zum Download.'; |
---|
62 | |
---|
63 | /* ----------- Administration ------------ */ |
---|
64 | $lang['dl_title'] = 'Download Multi'; |
---|
65 | $lang['dl_title_config'] = 'Download Multi Einstellungen'; |
---|
66 | $lang['dl_zip_active_comment'] = 'Aktiviert Kommentare in der Zip-Datei<br /><i>Gilt nicht für free.fr</i>'; |
---|
67 | $lang['dl_zip_comment'] = 'Kommentar in der Zip-Datei'; |
---|
68 | $lang['dl_group_id'] = 'Folgender(n) Gruppe(n) den Download erlauben. Die Taste <i>ctrl</i> benutzen um mehrere auszuwählen.'; |
---|
69 | $lang['dl_max_size'] = 'Maximale Größe des Archives in Bytes'; |
---|
70 | $lang['dl_zip_prefix'] = 'Standardpräfix für den Name der Zipdatei'; |
---|
71 | $lang['dl_zip_prefix_car'] = 'Das Feld <i>Standardpräfix für den Name der Zipdatei</i> darf nur Zahlen oder Buchstaben ohne Akzente enthalten.'; |
---|
72 | $lang['dl_zip_dir_prefix'] = 'Entpackordner'; |
---|
73 | $lang['dl_zip_dir_prefix_car'] = 'Das Feld <i>Entpackordner</i> darf nur Zahlen oder Buchstaben ohne Akzente enthalten.'; |
---|
74 | $lang['dl_backup_config'] = 'Download Multi, ihre Konfiguration wurde gespeichert'; |
---|
75 | $lang['dl_converter'] = 'Umrechner'; |
---|
76 | $lang['dl_zip_pattern_name'] = 'Generierung des Namens der Zipdatei, [date] erzeugt das aktuelle Datum in Form von YYYYMMDD und [rand] generiert eine Zufallszahl.'; |
---|
77 | $lang['dl_select_dl'] = 'Standard für Download'; |
---|
78 | |
---|
79 | $lang['dl_error_group_id'] = 'Sie müssen einer Gruppe den Download erlauben '; |
---|
80 | $lang['dl_error_file_size'] = 'Geben Sie die Größe des Archives an'; |
---|
81 | $lang['dl_error_file_size_car'] = 'Das Feld <i>Maximale Größe des Archives in Bytes</i> darf nur Zahlen enthalten.'; |
---|
82 | $lang['dl_zip_pattern_name_car'] = 'Das Feld <i>Generierung des Namens der Zipdatei</i> darf nur Zahlen oder Buchstaben ohne Akzente enthalten.'; |
---|
83 | $lang['dl_error_pattern_name'] = 'Das Feld <i>Generierung des Namens der Zipdatei</i> darf nicht leer sein'; |
---|
84 | |
---|
85 | $lang['dl_title_information'] = 'Informationen über ihre Serverkonfiguration'; |
---|
86 | $lang['dl_class_zip'] = 'Sie verwenden: '; |
---|
87 | $lang['dl_class_exist'] = 'Um ordnungsgemäß zu funktionieren, muss Ihr Server PHP ZipArchive Klasse nutzen. Kontaktieren Sie Ihren Webhost für diese Klasse aktiviert.'; |
---|
88 | $lang['dl_create_category'] = 'Die Struktur der Kategorien erstellen in der generierten Dateien'; |
---|
89 | $lang['dl_install_ok'] = 'Installation OK'; |
---|
90 | $lang['dl_mysql_version'] = 'MySQL-Version nicht kompatibel. Erforderliche Mindest-Version liegt bei 4.1'; |
---|
91 | $lang['dl_php_version'] = 'PHP-Version kleiner als 5, Installation unmöglich'; |
---|
92 | ?> |
---|