Changeset 187

Show
Ignore:
Timestamp:
2008-12-27 18:21:14 (3 years ago)
Author:
hannes
Message:

frontend for bot definitions (ticket #47)

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/classes/pages/Page.php

    r166 r187  
    77 *              shared by all pages 
    88 * 
    9  * Copyright (C) 2007 Hannes Schueller 
     9 * Copyright (C) 2007, 2008 Hannes Schueller 
    1010 * 
    1111 * This program is free software: you can redistribute it and/or modify 
     
    120120                $a = $div->addChild('a', $LANG['Footer']); 
    121121                $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)); 
    122125                $div->addChild('br'); 
    123126                $div->addChild('hr'); 
  • trunk/includes/lang/de.php

    r128 r187  
    66 * Description: German language module 
    77 * 
    8  * Copyright (C) 2007 Hannes Schueller 
     8 * Copyright (C) 2007, 2008 Hannes Schueller 
    99 * 
    1010 * This program is free software: you can redistribute it and/or modify 
     
    183183$LANG['Error'] = 'Fehler'; 
    184184$LANG['Subscribed'] = 'Abonniert'; 
     185$LANG['Bots'] = 'Bots'; 
    185186 
    186187/* multi-word statements */ 
     
    400401$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/."; 
    401402$LANG['installer_warning_insecure_directories'] = "Warnung: Das Installationsskript konnte die Verzeichnisse &quot;db&quot; (das die Datenbank enthält) und &quot;sessions&quot; (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.'; 
    402404 
    403405/* error messages */ 
     
    443445$LANG['error_memberstages_file_not_writable'] = "Fehler: Die &quot;memberstages&quot;-Datei ist nicht schreibbar. Bitte passen Sie die Rechte entsprechend an."; 
    444446$LANG['error_bans_file_not_writable'] = "Fehler: Die &quot;bans&quot;-Datei ist nicht schreibbar. Bitte passen Sie die Rechte entsprechend an."; 
     447$LANG['error_bot_file_not_writable'] = "Fehler: Die &quot;bots&quot;-Datei ist nicht schreibbar. Bitte passen Sie die Rechte entsprechend an."; 
    445448$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."; 
    446449$LANG['error_avatar_file_missing'] = "Fehler: Sie scheinen vergessen zu haben, die hochzuladende Datei auszuwählen."; 
  • trunk/includes/lang/en.php

    r128 r187  
    77 *              so it should be used as a basis for translations 
    88 * 
    9  * Copyright (C) 2007 Hannes Schueller 
     9 * Copyright (C) 2007, 2008 Hannes Schueller 
    1010 * 
    1111 * This program is free software: you can redistribute it and/or modify 
     
    184184$LANG['Error'] = 'Error'; 
    185185$LANG['Subscribed'] = 'Subscribed'; 
     186$LANG['Bots'] = 'Bots'; 
    186187 
    187188/* multi-word statements */ 
     
    401402$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/."; 
    402403$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.'; 
    403405 
    404406/* error messages */ 
     
    444446$LANG['error_memberstages_file_not_writable'] = "Error: The memberstages file isn't writable. Please adjust the permissions accordingly."; 
    445447$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."; 
    446449$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."; 
    447450$LANG['error_avatar_file_missing'] = "Error: It seems you didn't select a file to upload.";