Update of /cvsroot/php-blog/serendipity/lang
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9362/lang
Modified Files:
serendipity_lang_de.inc.php serendipity_lang_en.inc.php
Log Message:
Prototypical implementation of Top Links as text, optional as links
(configuration setting included).
Index: serendipity_lang_de.inc.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/lang/serendipity_lang_de.inc.php,v
retrieving revision 1.56
retrieving revision 1.57
diff -u -d -r1.56 -r1.57
--- serendipity_lang_de.inc.php 1 Jul 2004 18:35:18 -0000 1.56
+++ serendipity_lang_de.inc.php 5 Jul 2004 06:28:15 -0000 1.57
@@ -460,6 +460,8 @@
@define('INSTALL_POPUP_DESC', 'Sollen die Links zu den Kommentaren, Trackbacks etc. mit Popups geöffnet werden?');
@define('INSTALL_EMBED', 'Eingebettete Nutzung von Serendipity aktivieren?');
@define('INSTALL_EMBED_DESC', 'Falls serendipity innerhalb einer normalen Seite eingebettet werden soll, aktivieren Sie diese Option. Serendipity stellt dann nur Inhalte dar, und Sie können sich um Header und Footer kümmern. Lesen Sie die Datei README für weitere Informationen.');
+@define('INSTALL_TOP_AS_LINKS', 'Top Exits/Referrers als Link anzeigen?');
+@define('INSTALL_TOP_AS_LINKS_DESC', 'Die Top Exits und Top Referrer des Blogs werden nun per Default nur noch als Text angezeigt, um Google Spamming zu verhindern. Wenn sie weiterhin als Links angezeigt werden sollen, ist diese Option einzuschalten.');
@define('INSTALL_BLOCKREF', 'Geblockte Referer');
@define('INSTALL_BLOCKREF_DESC', 'Sollen spezielle Hosts aus der Referrer-Liste gesperrt werden? Hostnamen getrennt mit ";" eingeben. Jeder Hostname wird als Teilstring überprüft, so dass "goo" sowohl "google.com" als auch "googlegroups.com" sperren würde.');
@define('INSTALL_REWRITE', 'URL-Formung');
@@ -512,4 +514,4 @@
/* vim: set sts=4 ts=4 expandtab : */
-?>
\ No newline at end of file
+?>
Index: serendipity_lang_en.inc.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/lang/serendipity_lang_en.inc.php,v
retrieving revision 1.46
retrieving revision 1.47
diff -u -d -r1.46 -r1.47
--- serendipity_lang_en.inc.php 1 Jul 2004 18:35:18 -0000 1.46
+++ serendipity_lang_en.inc.php 5 Jul 2004 06:28:15 -0000 1.47
@@ -462,6 +462,8 @@
@define('INSTALL_POPUP_DESC', 'Do you want to use the blog to use popup windows for comments, trackbacks et al?');
@define('INSTALL_EMBED', 'Is serendipity embedded?');
@define('INSTALL_EMBED_DESC', 'If you want to embed serendipity within a regular page, set to true to discard any headers and just print the contents. You can make use of the indexFile option to use a wrapper class where you put your normal webpage headers. See the README file for more information!');
+@define('INSTALL_TOP_AS_LINKS', 'Show Top Exits/Referrers as links?');
+@define('INSTALL_TOP_AS_LINKS_DESC', 'By default, serendipity now shows the top exits and top referrers of your blog as plain text to prevent google spamming. If you still want to see these links as links, enable this setting.');
@define('INSTALL_BLOCKREF', 'Blocked Referers');
@define('INSTALL_BLOCKREF_DESC', 'Are there any special hosts you want not to show up in the referers list? Separate the list of hostnames with \';\' and note that the host is blocked by substring matches!');
@define('INSTALL_REWRITE', 'URL Rewriting');
|