Changeset 187
- Timestamp:
- 2008-12-27 18:21:14 (3 years ago)
- Files:
-
- trunk/admin/classes/pages/Bots.php (added)
- trunk/classes/pages/Page.php (modified) (2 diffs)
- trunk/includes/lang/de.php (modified) (4 diffs)
- trunk/includes/lang/en.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/classes/pages/Page.php
r166 r187 7 7 * shared by all pages 8 8 * 9 * Copyright (C) 2007 Hannes Schueller9 * Copyright (C) 2007, 2008 Hannes Schueller 10 10 * 11 11 * This program is free software: you can redistribute it and/or modify … … 120 120 $a = $div->addChild('a', $LANG['Footer']); 121 121 $a->addAttribute('href', $F->link('footer', TRUE)); 122 $div->addChild('br'); 123 $a = $div->addChild('a', $LANG['Bots']); 124 $a->addAttribute('href', $F->link('bots', TRUE)); 122 125 $div->addChild('br'); 123 126 $div->addChild('hr'); trunk/includes/lang/de.php
r128 r187 6 6 * Description: German language module 7 7 * 8 * Copyright (C) 2007 Hannes Schueller8 * Copyright (C) 2007, 2008 Hannes Schueller 9 9 * 10 10 * This program is free software: you can redistribute it and/or modify … … 183 183 $LANG['Error'] = 'Fehler'; 184 184 $LANG['Subscribed'] = 'Abonniert'; 185 $LANG['Bots'] = 'Bots'; 185 186 186 187 /* multi-word statements */ … … 400 401 $LANG['installer_warning_cleanup_failed'] = "Warnung: Obwohl das Installationsskript erfolgreich zu Ende gelaufen ist, könnte es nicht komplett hinter sich "aufräumen". Das macht prinzipiell nichts, es bedeutet nur, dass im Verzeichnisbaum noch ein paar Templatedateien von vor der Installation herumschwirren. Wenn Sie es vollkommen sauber haben wollen, löschen Sie bitte alle .tmpl-Dateien in includes/config/."; 401 402 $LANG['installer_warning_insecure_directories'] = "Warnung: Das Installationsskript konnte die Verzeichnisse "db" (das die Datenbank enthält) und "sessions" (das die Sessions enthält) nicht absichern. Es ist <i>essentiell</i>, dass auf diese Verzeichnisse nicht per HTTP zugegriffen werden kann! Andererseits könnte die gesamte Welt Ihre Datenbank herunterladen und alle Sessions einsehen! Weitere Erklärungen und eine Anleitung, was Sie tun müssen, bevor Sie das Board produktiv benutzen können, finden sie unter <a href=\"http://www.spamboard.net/wiki/SecuringDirectories\" target=\"_blank\">http://www.spamboard.net/wiki/SecuringDirectories</a>."; 403 $LANG['bots_updated'] = 'Die Bot-Definitionen wurden gespeichert.'; 402 404 403 405 /* error messages */ … … 443 445 $LANG['error_memberstages_file_not_writable'] = "Fehler: Die "memberstages"-Datei ist nicht schreibbar. Bitte passen Sie die Rechte entsprechend an."; 444 446 $LANG['error_bans_file_not_writable'] = "Fehler: Die "bans"-Datei ist nicht schreibbar. Bitte passen Sie die Rechte entsprechend an."; 447 $LANG['error_bot_file_not_writable'] = "Fehler: Die "bots"-Datei ist nicht schreibbar. Bitte passen Sie die Rechte entsprechend an."; 445 448 $LANG['error_mail_address_already_used'] = "Fehler: Unter der E-Mail-Adresse, die Sie angegeben haben, wurde bereits ein Account registiert. Die Administratoren haben sich jedoch entschlossen, nur einen Account pro Adresse zuzulassen."; 446 449 $LANG['error_avatar_file_missing'] = "Fehler: Sie scheinen vergessen zu haben, die hochzuladende Datei auszuwählen."; trunk/includes/lang/en.php
r128 r187 7 7 * so it should be used as a basis for translations 8 8 * 9 * Copyright (C) 2007 Hannes Schueller9 * Copyright (C) 2007, 2008 Hannes Schueller 10 10 * 11 11 * This program is free software: you can redistribute it and/or modify … … 184 184 $LANG['Error'] = 'Error'; 185 185 $LANG['Subscribed'] = 'Subscribed'; 186 $LANG['Bots'] = 'Bots'; 186 187 187 188 /* multi-word statements */ … … 401 402 $LANG['installer_warning_cleanup_failed'] = "Warning: Although the installation of your board has been finished successfully, the install script didn't manage to clean every up. This isn't fatal at all, it just meant there are still a few pre-install files floating around your directory tree. If you like to have it completely clean, delete all .tmpl files in includes/config/."; 402 403 $LANG['installer_warning_insecure_directories'] = "Warning: The installer couldn't secure the directories 'db' (containing the database) and 'sessions' (containing the user sessions). It is <i>essential</i> that these directories can't be accessed via HTTP! Otherwise, the whole world will be able to download your whole database and view all sessions! Refer to <a href=\"http://www.spamboard.net/wiki/SecuringDirectories\" target=\"_blank\">http://www.spamboard.net/wiki/SecuringDirectories</a> before you actually start using your board."; 404 $LANG['bots_updated'] = 'Bot definitions have been updated.'; 403 405 404 406 /* error messages */ … … 444 446 $LANG['error_memberstages_file_not_writable'] = "Error: The memberstages file isn't writable. Please adjust the permissions accordingly."; 445 447 $LANG['error_bans_file_not_writable'] = "Error: The bans file isn't writable. Please adjust the permissions accordingly."; 448 $LANG['error_bot_file_not_writable'] = "Error: The bots file isn't writable. Please adjust the permissions accordingly."; 446 449 $LANG['error_mail_address_already_used'] = "Error: The e-mail address you entered has already been used to register another account. The board administrators have chosen to allow only one account per address."; 447 450 $LANG['error_avatar_file_missing'] = "Error: It seems you didn't select a file to upload.";
