]> git.mjollnir.org Git - s9y.git/commitdiff
Here is support for filtering RSS feeds via authors much like we have been able to...
authorjtate <jtate>
Sat, 1 Oct 2005 05:48:24 +0000 (05:48 +0000)
committerjtate <jtate>
Sat, 1 Oct 2005 05:48:24 +0000 (05:48 +0000)
56 files changed:
include/functions_permalinks.inc.php
include/tpl/config_local.inc.php
index.php
lang/UTF-8/serendipity_lang_bg.inc.php
lang/UTF-8/serendipity_lang_cn.inc.php
lang/UTF-8/serendipity_lang_cs.inc.php
lang/UTF-8/serendipity_lang_cz.inc.php
lang/UTF-8/serendipity_lang_da.inc.php
lang/UTF-8/serendipity_lang_de.inc.php
lang/UTF-8/serendipity_lang_en.inc.php
lang/UTF-8/serendipity_lang_es.inc.php
lang/UTF-8/serendipity_lang_fa.inc.php
lang/UTF-8/serendipity_lang_fi.inc.php
lang/UTF-8/serendipity_lang_fr.inc.php
lang/UTF-8/serendipity_lang_hu.inc.php
lang/UTF-8/serendipity_lang_is.inc.php
lang/UTF-8/serendipity_lang_it.inc.php
lang/UTF-8/serendipity_lang_ja.inc.php
lang/UTF-8/serendipity_lang_ko.inc.php
lang/UTF-8/serendipity_lang_nl.inc.php
lang/UTF-8/serendipity_lang_no.inc.php
lang/UTF-8/serendipity_lang_pt.inc.php
lang/UTF-8/serendipity_lang_pt_PT.inc.php
lang/UTF-8/serendipity_lang_ro.inc.php
lang/UTF-8/serendipity_lang_ru.inc.php
lang/UTF-8/serendipity_lang_se.inc.php
lang/UTF-8/serendipity_lang_tn.inc.php
lang/UTF-8/serendipity_lang_tw.inc.php
lang/UTF-8/serendipity_lang_zh.inc.php
lang/serendipity_lang_bg.inc.php
lang/serendipity_lang_cn.inc.php
lang/serendipity_lang_cs.inc.php
lang/serendipity_lang_cz.inc.php
lang/serendipity_lang_da.inc.php
lang/serendipity_lang_de.inc.php
lang/serendipity_lang_en.inc.php
lang/serendipity_lang_es.inc.php
lang/serendipity_lang_fa.inc.php
lang/serendipity_lang_fi.inc.php
lang/serendipity_lang_fr.inc.php
lang/serendipity_lang_hu.inc.php
lang/serendipity_lang_is.inc.php
lang/serendipity_lang_it.inc.php
lang/serendipity_lang_ja.inc.php
lang/serendipity_lang_ko.inc.php
lang/serendipity_lang_nl.inc.php
lang/serendipity_lang_no.inc.php
lang/serendipity_lang_pt.inc.php
lang/serendipity_lang_pt_PT.inc.php
lang/serendipity_lang_ro.inc.php
lang/serendipity_lang_ru.inc.php
lang/serendipity_lang_se.inc.php
lang/serendipity_lang_tn.inc.php
lang/serendipity_lang_tw.inc.php
lang/serendipity_lang_zh.inc.php
rss.php

index 7ba11fbf874830ace892791523748c7ef7f11b08..6a6d18902903451522f46a6a90c791088bf5cc5a 100644 (file)
@@ -117,6 +117,10 @@ function serendipity_initPermalinks() {
         $serendipity['permalinkStructure'] = 'archives/%id%-%title%.html';
     }
     
+    if (!isset($serendipity['permalinkFeedAuthorStructure'])) {
+        $serendipity['permalinkFeedAuthorStructure'] = 'feeds/authors/%id%-%realname%.rss';
+    }
+    
     if (!isset($serendipity['permalinkFeedCategoryStructure'])) {
         $serendipity['permalinkFeedCategoryStructure'] = 'feeds/categories/%id%-%name%.rss';
     }
@@ -141,6 +145,10 @@ function serendipity_initPermalinks() {
         $serendipity['permalinkCategoriesPath'] = 'categories';
     }
     
+    if (!isset($serendipity['permalinkAuthorsPath'])) {
+        $serendipity['permalinkAuthorsPath'] = 'authors';
+    }
+    
     if (!isset($serendipity['permalinkUnsubscribePath'])) {
         $serendipity['permalinkUnsubscribePath'] = 'unsubscribe';
     }
@@ -216,6 +224,7 @@ function &serendipity_permalinkPatterns($return = false) {
     $PAT['PERMALINK']                = '@'   . serendipity_makePermalinkRegex($serendipity['permalinkStructure'], 'entry') . '@i';
     $PAT['PERMALINK_CATEGORIES']     = '@'   . serendipity_makePermalinkRegex($serendipity['permalinkCategoryStructure'], 'category') . '@i';
     $PAT['PERMALINK_FEEDCATEGORIES'] = '@'   . serendipity_makePermalinkRegex($serendipity['permalinkFeedCategoryStructure'], 'category') . '@i';
+    $PAT['PERMALINK_FEEDAUTHORS']    = '@'   . serendipity_makePermalinkRegex($serendipity['permalinkFeedAuthorStructure'], 'author') . '@i';
     $PAT['PERMALINK_AUTHORS']        = '@'   . serendipity_makePermalinkRegex($serendipity['permalinkAuthorStructure'], 'author') . '@i';
 
     if ($return) {
@@ -477,6 +486,15 @@ function serendipity_feedCategoryURL(&$data, $key = 'baseURL', $checkrewrite = t
     return $path;
 }
 
+function serendipity_feedAuthorURL(&$data, $key = 'baseURL', $checkrewrite = true) {
+    global $serendipity;
+    $path = serendipity_makePermalink($serendipity['permalinkFeedAuthorStructure'], $data, 'author');
+    if ($checkrewrite) {
+        $path = serendipity_rewriteURL($path, $key);
+    }
+    return $path;
+}
+
 function serendipity_archiveDateUrl($range, $summary=false, $key='baseURL') {
     return serendipity_rewriteURL(PATH_ARCHIVES . '/' . $range . ($summary ? '/summary' : '') . '.html', $key);
 }
index e340102e06af7c1e1420e0ac586138d7d432dd37..0888a56f79dac04f09b29600012d2999277322ee 100644 (file)
                                           'permission'  => 'siteConfiguration',
                                           'flags'       => array('ifEmpty')),
 
+                                    array('var'         => 'permalinkFeedAuthorStructure',
+                                          'title'       => INSTALL_PERMALINK_FEEDAUTHOR,
+                                          'description' => INSTALL_PERMALINK_FEEDAUTHOR_DESC,
+                                          'type'        => 'string',
+                                          'default'     => 'feeds/authors/%id%-%realname%.rss',
+                                          'permission'  => 'siteConfiguration',
+                                          'flags'       => array('ifEmpty')),
+
                                     array('var'         => 'permalinkArchivesPath',
                                           'title'       => INSTALL_PERMALINK_ARCHIVESPATH,
                                           'description' => '',
                                           'permission'  => 'siteConfiguration',
                                           'flags'       => array('ifEmpty')),
 
+                                    array('var'         => 'permalinkAuthorsPath',
+                                          'title'       => INSTALL_PERMALINK_CATEGORIESPATH,
+                                          'description' => '',
+                                          'type'        => 'string',
+                                          'default'     => 'authors',
+                                          'permission'  => 'siteConfiguration',
+                                          'flags'       => array('ifEmpty')),
+
                                     array('var'         => 'permalinkUnsubscribePath',
                                           'title'       => INSTALL_PERMALINK_UNSUBSCRIBEPATH,
                                           'description' => '',
index 94a73e7c169c41448329f810250463973ef9f87e..61143ad8030053f6c1af4fd531d11842eba93775 100644 (file)
--- a/index.php
+++ b/index.php
@@ -237,7 +237,7 @@ if (preg_match(PAT_ARCHIVES, $uri, $matches) || isset($serendipity['GET']['range
         fclose($fp);
     }
     print $data;
-} elseif (preg_match(PAT_PERMALINK_FEEDCATEGORIES, $uri, $matches) || preg_match(PAT_FEEDS, $uri)) {
+} elseif (preg_match(PAT_PERMALINK_FEEDCATEGORIES, $uri, $matches) || preg_match(PAT_PERMALINK_FEEDAUTHORS, $uri, $matches) || preg_match(PAT_FEEDS, $uri)) {
     header('Content-Type: text/html; charset=utf-8');
 
     if (preg_match('@/(index|atom[0-9]*|rss|comments|opml)\.(rss[0-9]?|rdf|rss|xml|atom)@', $uri, $vmatches)) {
@@ -245,10 +245,18 @@ if (preg_match(PAT_ARCHIVES, $uri, $matches) || isset($serendipity['GET']['range
     }
 
     if (is_array($matches)) {
-        $uri = preg_replace('@(/?' . preg_quote(PATH_FEEDS, '@') . '/)(.+)\.rss@i', '\2', $uri);
-        $catid = serendipity_searchPermalink($serendipity['permalinkFeedCategoryStructure'], $uri, $matches[1], 'category');
-        if (is_numeric($catid) && $catid > 0) {
-            $_GET['category'] = $catid;
+        $uri = preg_replace('@(/?' . $serendipity['serendipityHTTPPath'] . preg_quote(PATH_FEEDS, '@') . '/)(.+)\.rss@i', '\2', $uri);
+        if (strpos($uri, $serendipity['permalinkCategoriesPath']) === 0) {
+            $catid = serendipity_searchPermalink($serendipity['permalinkFeedCategoryStructure'], $uri, $matches[1], 'category');
+            if (is_numeric($catid) && $catid > 0) {
+                $_GET['category'] = $catid;
+            }
+        }
+        elseif (strpos($uri, $serendipity['permalinkAuthorsPath']) === 0) {
+            $authorid = serendipity_searchPermalink($serendipity['permalinkFeedAuthorStructure'], $uri, $matches[1], 'author');
+            if (is_numeric($authorid) && $authorid > 0) {
+                $_GET['viewAuthor'] = $authorid;
+            }
         }
     }
      
index f68cbe4a27101da0f4357ac777535a29463230a8..1da8712c978d8d82303eea23a233a48c3b3f2531 100644 (file)
@@ -1,4 +1,4 @@
-<?php # $Id: serendipity_lang_bg.inc.php 489 2005-09-26 07:55:11Z garvinhicking $
+<?php # $Id: serendipity_lang_bg.inc.php 495 2005-09-26 15:57:03Z garvinhicking $
 # Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
 # All rights reserved.  See LICENSE file for licensing details
 # Translation (c) 2004 Bogomil Shopov <bogomil@spisanie.com>
 @define('USERCONF_CHECK_PASSWORD_DESC', 'If you change the password in the field above, you need to enter the current user password into this field.');
 @define('USERCONF_CHECK_PASSWORD_ERROR', 'You did not specify the right old password, and are not authorized to change the new password. Your settings were not saved.');
 @define('ERROR_XSRF', 'Your browser did not sent a valid HTTP-Referrer string. This may have either been caused by a misconfigured browser/proxy or by a Cross Site Request Forgery (XSRF) aimed at you. The action you requested could not be completed.');
+@define('INSTALL_PERMALINK_FEEDAUTHOR_DESC', 'Here you can define the relative URL structure beginning from your base URL to where RSS-feeds from specific users may be viewed. You can use the variables %id%, %realname%, %username%, %email% and any other characters.');
+@define('INSTALL_PERMALINK_FEEDAUTHOR', 'Permalink RSS-Feed Author URL structure');
index 85fa12c18cfe7684c0454d51c407f6f9e7a7165a..e0706b27c41a3c74662d5ed7baaf545f9728cc2a 100644 (file)
@@ -1,4 +1,4 @@
-<?php # $Id: serendipity_lang_cn.inc.php 489 2005-09-26 07:55:11Z garvinhicking $
+<?php # $Id: serendipity_lang_cn.inc.php 495 2005-09-26 15:57:03Z garvinhicking $
 # Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
 # All rights reserved.  See LICENSE file for licensing details
 /* vim: set sts=4 ts=4 expandtab : */
 @define('USERCONF_CHECK_PASSWORD_DESC', 'If you change the password in the field above, you need to enter the current user password into this field.');
 @define('USERCONF_CHECK_PASSWORD_ERROR', 'You did not specify the right old password, and are not authorized to change the new password. Your settings were not saved.');
 @define('ERROR_XSRF', 'Your browser did not sent a valid HTTP-Referrer string. This may have either been caused by a misconfigured browser/proxy or by a Cross Site Request Forgery (XSRF) aimed at you. The action you requested could not be completed.');
+@define('INSTALL_PERMALINK_FEEDAUTHOR_DESC', 'Here you can define the relative URL structure beginning from your base URL to where RSS-feeds from specific users may be viewed. You can use the variables %id%, %realname%, %username%, %email% and any other characters.');
+@define('INSTALL_PERMALINK_FEEDAUTHOR', 'Permalink RSS-Feed Author URL structure');
index 189bd4d8522c2c54ae624b7eae202b433a3632e6..69b0812bb9c6f0aae372b1bc391aa969ebffc417 100644 (file)
@@ -1,4 +1,4 @@
-<?php # $Id: serendipity_lang_cs.inc.php 489 2005-09-26 07:55:11Z garvinhicking $
+<?php # $Id: serendipity_lang_cs.inc.php 495 2005-09-26 15:57:03Z garvinhicking $
 # Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
 # All rights reserved.  See LICENSE file for licensing details
 # Translation (c) 2005 Josef Klimosz <ok2wo@centrum.cz>
 @define('USERCONF_CHECK_PASSWORD_DESC', 'If you change the password in the field above, you need to enter the current user password into this field.');
 @define('USERCONF_CHECK_PASSWORD_ERROR', 'You did not specify the right old password, and are not authorized to change the new password. Your settings were not saved.');
 @define('ERROR_XSRF', 'Your browser did not sent a valid HTTP-Referrer string. This may have either been caused by a misconfigured browser/proxy or by a Cross Site Request Forgery (XSRF) aimed at you. The action you requested could not be completed.');
+@define('INSTALL_PERMALINK_FEEDAUTHOR_DESC', 'Here you can define the relative URL structure beginning from your base URL to where RSS-feeds from specific users may be viewed. You can use the variables %id%, %realname%, %username%, %email% and any other characters.');
+@define('INSTALL_PERMALINK_FEEDAUTHOR', 'Permalink RSS-Feed Author URL structure');
index 1f700b11b982e23439234626037ebed290fd800f..47feb087e149d659e4b2bc74d5cee7a8e7786fa7 100644 (file)
@@ -1,4 +1,4 @@
-<?php # $Id: serendipity_lang_cz.inc.php 489 2005-09-26 07:55:11Z garvinhicking $
+<?php # $Id: serendipity_lang_cz.inc.php 495 2005-09-26 15:57:03Z garvinhicking $
 # Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
 # All rights reserved.  See LICENSE file for licensing details
 # Translation (c) 2004 Josef Klimosz <ok2wo@centrum.cz>
 @define('USERCONF_CHECK_PASSWORD_DESC', 'If you change the password in the field above, you need to enter the current user password into this field.');
 @define('USERCONF_CHECK_PASSWORD_ERROR', 'You did not specify the right old password, and are not authorized to change the new password. Your settings were not saved.');
 @define('ERROR_XSRF', 'Your browser did not sent a valid HTTP-Referrer string. This may have either been caused by a misconfigured browser/proxy or by a Cross Site Request Forgery (XSRF) aimed at you. The action you requested could not be completed.');
+@define('INSTALL_PERMALINK_FEEDAUTHOR_DESC', 'Here you can define the relative URL structure beginning from your base URL to where RSS-feeds from specific users may be viewed. You can use the variables %id%, %realname%, %username%, %email% and any other characters.');
+@define('INSTALL_PERMALINK_FEEDAUTHOR', 'Permalink RSS-Feed Author URL structure');
index 397fe510c78e5acdd8727720bf6d2171ec19a7a9..a8675951e5cc05c1e0c4b8e9d7d44fe69eaf21a4 100644 (file)
@@ -1,4 +1,4 @@
-<?php # $Id: serendipity_lang_da.inc.php 489 2005-09-26 07:55:11Z garvinhicking $
+<?php # $Id: serendipity_lang_da.inc.php 495 2005-09-26 15:57:03Z garvinhicking $
 # Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
 # All rights reserved.  See LICENSE file for licensing details
 # Translation (c) by Tom Sommer, <ts@dreamcoder.dk>
 @define('USERCONF_CHECK_PASSWORD_DESC', 'If you change the password in the field above, you need to enter the current user password into this field.');
 @define('USERCONF_CHECK_PASSWORD_ERROR', 'You did not specify the right old password, and are not authorized to change the new password. Your settings were not saved.');
 @define('ERROR_XSRF', 'Your browser did not sent a valid HTTP-Referrer string. This may have either been caused by a misconfigured browser/proxy or by a Cross Site Request Forgery (XSRF) aimed at you. The action you requested could not be completed.');
+@define('INSTALL_PERMALINK_FEEDAUTHOR_DESC', 'Here you can define the relative URL structure beginning from your base URL to where RSS-feeds from specific users may be viewed. You can use the variables %id%, %realname%, %username%, %email% and any other characters.');
+@define('INSTALL_PERMALINK_FEEDAUTHOR', 'Permalink RSS-Feed Author URL structure');
index 2234452958fdb703737cfd4f6ebcbcc8f586d467..5ca0684d9e8829ae46b6641dbde8de4ca309b683 100644 (file)
@@ -1,4 +1,4 @@
-<?php # $Id: serendipity_lang_de.inc.php 489 2005-09-26 07:55:11Z garvinhicking $
+<?php # $Id: serendipity_lang_de.inc.php 496 2005-09-26 16:24:27Z garvinhicking $
 # Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
 # All rights reserved.  See LICENSE file for licensing details
 # Translation (c) Jannis Hermanns, Garvin Hicking and others
 @define('USERCONF_CHECK_PASSWORD_DESC', 'Falls Sie das Passwort im vorhergehenden Feld ändern, müssen Sie das aktuelle Password in diesem Feld eingeben.');
 @define('USERCONF_CHECK_PASSWORD_ERROR', 'Sie haben kein gültiges derzeitiges Passwort angegeben, und sind daher nicht berechtigt, das neue Passwort umzusetzen. Ihre Einstellungen wurden nicht gespeichert.');
 @define('ERROR_XSRF', 'Ihr Browser hat keinen gültigen HTTP-Referrer übermittelt. Dies kann entweder daher kommen, dass ihr Browser/Proxy nicht korrekt konfiguriert ist, oder dass Sie Opfer einer "Cross Site Request Forgery (XSRF)" waren, mit der man Sie ungewollten Änderungen zwingen wollte. Die angeforderte Aktion konnte daher nicht durchgeführt werden.');
+@define('INSTALL_PERMALINK_FEEDAUTHOR_DESC', 'Here you can define the relative URL structure beginning from your base URL to where RSS-feeds from specific users may be viewed. You can use the variables %id%, %realname%, %username%, %email% and any other characters.');
+@define('INSTALL_PERMALINK_FEEDAUTHOR', 'Permalink RSS-Feed Author URL structure');
index cce767ae29a4d25fe231a54e16b522441ad8eff5..4ec9f9ba43f53c801112179154e4ca13b60c9eac 100644 (file)
@@ -1,4 +1,4 @@
-<?php # $Id: serendipity_lang_en.inc.php 489 2005-09-26 07:55:11Z garvinhicking $
+<?php # $Id: serendipity_lang_en.inc.php 495 2005-09-26 15:57:03Z garvinhicking $
 # Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
 # All rights reserved.  See LICENSE file for licensing details
 /* vim: set sts=4 ts=4 expandtab : */
 @define('INSTALL_PERMALINK_CATEGORY_DESC', 'Here you can define the relative URL structure beginning from your base URL to where entries from certain categories may become available. You can use the variables %id%, %name%, %description% and any other characters.');
 @define('INSTALL_PERMALINK_FEEDCATEGORY', 'Permalink RSS-Feed Category URL structure');
 @define('INSTALL_PERMALINK_FEEDCATEGORY_DESC', 'Here you can define the relative URL structure beginning from your base URL to where RSS-feeds from certain categories may become available. You can use the variables %id%, %name%, %description% and any other characters.');
+@define('INSTALL_PERMALINK_FEEDAUTHOR', 'Permalink RSS-Feed Author URL structure');
+@define('INSTALL_PERMALINK_FEEDAUTHOR_DESC', 'Here you can define the relative URL structure beginning from your base URL to where RSS-feeds from specific users may be viewed. You can use the variables %id%, %realname%, %username%, %email% and any other characters.');
 @define('INSTALL_PERMALINK_ARCHIVESPATH', 'Path to archives');
 @define('INSTALL_PERMALINK_ARCHIVEPATH', 'Path to archive');
 @define('INSTALL_PERMALINK_CATEGORIESPATH', 'Path to categories');
index d734b7a00b59dfdad1d2cd0f2dd32f03c9856582..393869a96edf8bade6e91d57a3e9bb48a967266f 100644 (file)
@@ -1,4 +1,4 @@
-<?php # $Id: serendipity_lang_es.inc.php 489 2005-09-26 07:55:11Z garvinhicking $
+<?php # $Id: serendipity_lang_es.inc.php 495 2005-09-26 15:57:03Z garvinhicking $
 # Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
 # All rights reserved.  See LICENSE file for licensing details
 # Translation (c) by Luis Cervantes <LuisCervantes@ono.com>,
 @define('USERCONF_CHECK_PASSWORD_DESC', 'If you change the password in the field above, you need to enter the current user password into this field.');
 @define('USERCONF_CHECK_PASSWORD_ERROR', 'You did not specify the right old password, and are not authorized to change the new password. Your settings were not saved.');
 @define('ERROR_XSRF', 'Your browser did not sent a valid HTTP-Referrer string. This may have either been caused by a misconfigured browser/proxy or by a Cross Site Request Forgery (XSRF) aimed at you. The action you requested could not be completed.');
+@define('INSTALL_PERMALINK_FEEDAUTHOR_DESC', 'Here you can define the relative URL structure beginning from your base URL to where RSS-feeds from specific users may be viewed. You can use the variables %id%, %realname%, %username%, %email% and any other characters.');
+@define('INSTALL_PERMALINK_FEEDAUTHOR', 'Permalink RSS-Feed Author URL structure');
index 7600b11c0e2e5f38807dcc2b5b9293a119dde3bb..dd01e5611f54b92a3a1279a299f1a82f3f34b12c 100644 (file)
@@ -1,4 +1,4 @@
-<?php # $Id: serendipity_lang_fa.inc.php 489 2005-09-26 07:55:11Z garvinhicking $
+<?php # $Id: serendipity_lang_fa.inc.php 495 2005-09-26 15:57:03Z garvinhicking $
 # Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
 # All rights reserved. See LICENSE file for licensing details
 # this translation, translated by Omid Mottaghi <http://oxygenws.com>
 @define('USERCONF_CHECK_PASSWORD_DESC', 'If you change the password in the field above, you need to enter the current user password into this field.');
 @define('USERCONF_CHECK_PASSWORD_ERROR', 'You did not specify the right old password, and are not authorized to change the new password. Your settings were not saved.');
 @define('ERROR_XSRF', 'Your browser did not sent a valid HTTP-Referrer string. This may have either been caused by a misconfigured browser/proxy or by a Cross Site Request Forgery (XSRF) aimed at you. The action you requested could not be completed.');
+@define('INSTALL_PERMALINK_FEEDAUTHOR_DESC', 'Here you can define the relative URL structure beginning from your base URL to where RSS-feeds from specific users may be viewed. You can use the variables %id%, %realname%, %username%, %email% and any other characters.');
+@define('INSTALL_PERMALINK_FEEDAUTHOR', 'Permalink RSS-Feed Author URL structure');
index 1fc4bc5bf78efc9dbded8a1940e5b111f93b05f1..5629175f2ba670934ced389bc400763a86b0814f 100644 (file)
@@ -1,4 +1,4 @@
-<?php # $Id: serendipity_lang_fi.inc.php 489 2005-09-26 07:55:11Z garvinhicking $
+<?php # $Id: serendipity_lang_fi.inc.php 495 2005-09-26 15:57:03Z garvinhicking $
 # Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
 # All rights reserved.  See LICENSE file for licensing details
 /* vim: set sts=4 ts=4 expandtab : */
 @define('USERCONF_CHECK_PASSWORD_DESC', 'If you change the password in the field above, you need to enter the current user password into this field.');
 @define('USERCONF_CHECK_PASSWORD_ERROR', 'You did not specify the right old password, and are not authorized to change the new password. Your settings were not saved.');
 @define('ERROR_XSRF', 'Your browser did not sent a valid HTTP-Referrer string. This may have either been caused by a misconfigured browser/proxy or by a Cross Site Request Forgery (XSRF) aimed at you. The action you requested could not be completed.');
+@define('INSTALL_PERMALINK_FEEDAUTHOR_DESC', 'Here you can define the relative URL structure beginning from your base URL to where RSS-feeds from specific users may be viewed. You can use the variables %id%, %realname%, %username%, %email% and any other characters.');
+@define('INSTALL_PERMALINK_FEEDAUTHOR', 'Permalink RSS-Feed Author URL structure');
index 8e4fc35ca81c8b6ccd7db2e6daf951d8a1de7a9d..3f504a5e43f12e6899ba43476fb4232eb4a3ef34 100644 (file)
@@ -1,4 +1,4 @@
-<?php # $Id: serendipity_lang_fr.inc.php 489 2005-09-26 07:55:11Z garvinhicking $
+<?php # $Id: serendipity_lang_fr.inc.php 495 2005-09-26 15:57:03Z garvinhicking $
 # Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
 # All rights reserved.  See LICENSE file for licensing details
 # Translation by Sebastian Mordziol <argh@php-tools.net>
 @define('USERCONF_CHECK_PASSWORD_DESC', 'If you change the password in the field above, you need to enter the current user password into this field.');
 @define('USERCONF_CHECK_PASSWORD_ERROR', 'You did not specify the right old password, and are not authorized to change the new password. Your settings were not saved.');
 @define('ERROR_XSRF', 'Your browser did not sent a valid HTTP-Referrer string. This may have either been caused by a misconfigured browser/proxy or by a Cross Site Request Forgery (XSRF) aimed at you. The action you requested could not be completed.');
+@define('INSTALL_PERMALINK_FEEDAUTHOR_DESC', 'Here you can define the relative URL structure beginning from your base URL to where RSS-feeds from specific users may be viewed. You can use the variables %id%, %realname%, %username%, %email% and any other characters.');
+@define('INSTALL_PERMALINK_FEEDAUTHOR', 'Permalink RSS-Feed Author URL structure');
index 0eb97a1f93a4631744a03b2e2781e1b5c6d9f5e5..1cd5dfad1879244069bf31d9e8920c138a212be0 100644 (file)
 @define('USERCONF_CHECK_PASSWORD_DESC', 'If you change the password in the field above, you need to enter the current user password into this field.');
 @define('USERCONF_CHECK_PASSWORD_ERROR', 'You did not specify the right old password, and are not authorized to change the new password. Your settings were not saved.');
 @define('ERROR_XSRF', 'Your browser did not sent a valid HTTP-Referrer string. This may have either been caused by a misconfigured browser/proxy or by a Cross Site Request Forgery (XSRF) aimed at you. The action you requested could not be completed.');
+@define('INSTALL_PERMALINK_FEEDAUTHOR_DESC', 'Here you can define the relative URL structure beginning from your base URL to where RSS-feeds from specific users may be viewed. You can use the variables %id%, %realname%, %username%, %email% and any other characters.');
+@define('INSTALL_PERMALINK_FEEDAUTHOR', 'Permalink RSS-Feed Author URL structure');
index f20ca9305a13171819924b4c92dfc7963c04e851..235b58b89bcbf898f4ab9cf9eaa8a9db87dca518 100644 (file)
@@ -1,4 +1,4 @@
-<?php # $Id: serendipity_lang_is.inc.php 489 2005-09-26 07:55:11Z garvinhicking $
+<?php # $Id: serendipity_lang_is.inc.php 495 2005-09-26 15:57:03Z garvinhicking $
 # Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
 # All rights reserved.  See LICENSE file for licensing details
 /* vim: set sts=4 ts=4 expandtab : */
 @define('USERCONF_CHECK_PASSWORD_DESC', 'If you change the password in the field above, you need to enter the current user password into this field.');
 @define('USERCONF_CHECK_PASSWORD_ERROR', 'You did not specify the right old password, and are not authorized to change the new password. Your settings were not saved.');
 @define('ERROR_XSRF', 'Your browser did not sent a valid HTTP-Referrer string. This may have either been caused by a misconfigured browser/proxy or by a Cross Site Request Forgery (XSRF) aimed at you. The action you requested could not be completed.');
+@define('INSTALL_PERMALINK_FEEDAUTHOR_DESC', 'Here you can define the relative URL structure beginning from your base URL to where RSS-feeds from specific users may be viewed. You can use the variables %id%, %realname%, %username%, %email% and any other characters.');
+@define('INSTALL_PERMALINK_FEEDAUTHOR', 'Permalink RSS-Feed Author URL structure');
index 604db77fcf9361dea40ad3ee8f07fc3f99a753f6..1f0cb9d095b864dd48ab417f879f15414fd95e4a 100644 (file)
@@ -1,4 +1,4 @@
-<?php # $Id: serendipity_lang_it.inc.php 489 2005-09-26 07:55:11Z garvinhicking $
+<?php # $Id: serendipity_lang_it.inc.php 495 2005-09-26 15:57:03Z garvinhicking $
 # Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
 # All rights reserved.  See LICENSE file for licensing details
 # Translation (c) by Alessandro Pellizzari <alex@amiran.it>
 @define('USERCONF_CHECK_PASSWORD_DESC', 'If you change the password in the field above, you need to enter the current user password into this field.');
 @define('USERCONF_CHECK_PASSWORD_ERROR', 'You did not specify the right old password, and are not authorized to change the new password. Your settings were not saved.');
 @define('ERROR_XSRF', 'Your browser did not sent a valid HTTP-Referrer string. This may have either been caused by a misconfigured browser/proxy or by a Cross Site Request Forgery (XSRF) aimed at you. The action you requested could not be completed.');
+@define('INSTALL_PERMALINK_FEEDAUTHOR_DESC', 'Here you can define the relative URL structure beginning from your base URL to where RSS-feeds from specific users may be viewed. You can use the variables %id%, %realname%, %username%, %email% and any other characters.');
+@define('INSTALL_PERMALINK_FEEDAUTHOR', 'Permalink RSS-Feed Author URL structure');
index ab93cb06964508fe6858c1c8617592c607e51dc6..280e2f1d751a2e4ff10a36200667a7efaa5d0233 100644 (file)
@@ -1,4 +1,4 @@
-<?php # $Id: serendipity_lang_ja.inc.php 492 2005-09-26 10:02:04Z elf2000 $
+<?php # $Id: serendipity_lang_ja.inc.php 509 2005-09-30 03:37:46Z elf2000 $
 # Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
 # All rights reserved.  See LICENSE file for licensing details
 # Translation (c) Tadashi Jokagi <elf2000@users.sourceforge.net>, 2004-2005.
 @define('SAVE', '保存');
 @define('NAME', '名前');
 @define('CREATE_NEW_CAT', '新規カテゴリを作成する');
-@define('I_WANT_THUMB', 'エントリ内ではサムネイルを使用する');
-@define('I_WANT_BIG_IMAGE', 'エントリ内では大きな画像を使用する');
-@define('I_WANT_NO_LINK', 'ただの画像として表示する');
-@define('I_WANT_IT_TO_LINK', '画像はこの URL へのリンクとして表示する:');
+@define('I_WANT_THUMB', 'エントリ中でサムネイルを使用したい');
+@define('I_WANT_BIG_IMAGE', 'エントリの中で大きな画像を使用したい');
+@define('I_WANT_NO_LINK', ' 画像としてそれを表示したい');
+@define('I_WANT_IT_TO_LINK', 'それをこの URL へのリンクとして表示したい:');
 @define('BACK', '戻る');
 @define('FORWARD', '転送');
 @define('ANONYMOUS', '匿名');
@@ -52,7 +52,7 @@
 @define('ENTRIES', 'エントリ');
 @define('NEW_ENTRY', '新規エントリ追加');
 @define('EDIT_ENTRIES', 'エントリ編集');
-@define('CATEGORIES', 'カテゴリ一覧');
+@define('CATEGORIES', 'カテゴリ管理');
 @define('WARNING_THIS_BLAHBLAH', "警告:\\nサムネイルなしの画像が多い場合、長時間かかるかもしれません。");
 @define('CREATE_THUMBS', 'サムネイル再構築');
 @define('MANAGE_IMAGES', '画像管理');
@@ -75,8 +75,8 @@
 @define('EXTENDED_BODY', '拡張本文');
 @define('CATEGORY', 'カテゴリ');
 @define('EDIT', '編集');
-@define('NO_ENTRIES_BLAHBLAH', 'キーワード %s はどのエントリにも見つけられませんでした。' . "\n");
-@define('YOUR_SEARCH_RETURNED_BLAHBLAH', '%s の検索結果は %s 個あります:');
+@define('NO_ENTRIES_BLAHBLAH', 'キーワード「%s」はどのエントリでも見つけられませんでした。' . "\n");
+@define('YOUR_SEARCH_RETURNED_BLAHBLAH', '「%s」の検索結果は %s 個あります:');
 @define('IMAGE', '画像');
 @define('ERROR_FILE_NOT_EXISTS', 'エラー: 古いファイル名が存在しません!');
 @define('ERROR_FILE_EXISTS', 'エラー: 既に新しいファイル名が使用されています。別の名前を指定してください!');
@@ -89,7 +89,7 @@
 @define('NEWSIZE', '新規サイズ: ');
 @define('RESIZE_BLAHBLAH', '<b>リサイズ %s</b><p>');
 @define('ORIGINAL_SIZE', '元サイズ: <i>%sx%s</i> ピクセル');
-@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>Here, you can adjust the image size. If you want to resize the image proportionally, just enter a value in one of the two boxes and press the TAB key --  I\'ll automatically calculate the new size so the image proportions don\'t get messed up</p>');
+@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>ここで、画像サイズを調節することができます。画像の比率を変えずにサイズ変更をしたい場合は、2 つの入力ボックスのうちの 1 つにだけ値入力して、TAB キーを押してください - 自動的に新しいサイズを計算します。したがって、イメージは台無しになりません。</p>');
 @define('QUICKJUMP_CALENDAR', 'カレンダークイックジャンプ');
 @define('QUICKSEARCH', 'クイックサーチ');
 @define('SEARCH_FOR_ENTRY', 'エントリの検索');
 @define('BROWSE_ARCHIVES', '月単位の書庫表示');
 @define('TOP_REFERRER', 'トップリファラ一覧');
 @define('SHOWS_TOP_SITES', 'あなたのブログにリンクしたサイトのトップを表示します。');
-@define('TOP_EXITS', 'Top Exits');
+@define('TOP_EXITS', 'トップ退出一覧');
 @define('SHOWS_TOP_EXIT', 'あなたのブログから退出したリンクのトップを表示します。');
-@define('SYNDICATION', 'Syndication');
-@define('SHOWS_RSS_BLAHBLAH', 'RSS syndication リンクを表示します。');
+@define('SYNDICATION', '配信');
+@define('SHOWS_RSS_BLAHBLAH', 'RSS 配信のリンクを表示します。');
 @define('ADVERTISES_BLAHBLAH', 'ブログの元を宣伝します。');
 @define('HTML_NUGGET', 'HTML ナゲット');
 @define('HOLDS_A_BLAHBLAH', 'サイドバーに HTML の情報(ナゲット)を保持します。');
 @define('TITLE_FOR_NUGGET', 'ナゲットの題名');
 @define('THE_NUGGET', 'HTML の塊です!');
-@define('SYNDICATE_THIS_BLOG', 'ã\81\93ã\81®ã\83\96ã\83­ã\82°ã\81¨ Syndicate');
+@define('SYNDICATE_THIS_BLOG', 'ã\81\93ã\81®ã\83\96ã\83­ã\82°ã\81®é\85\8dä¿¡');
 @define('YOU_CHOSE', 'あなたは %s を選択しました。');
 @define('IMAGE_ROTATE_LEFT', '左回り(時計と反対回り)に 90 度回転する');
 @define('IMAGE_ROTATE_RIGHT', '右回り(時計回り)に 90 度回転する');
 @define('LINK_TO_REMOTE_ENTRY', 'リモートエントリへのリンク');
 @define('IP_ADDRESS', 'IP アドレス');
 @define('USER', 'ユーザー');
-@define('THUMBNAIL_USING_OWN', 'Using %s as it\'s own thumbnail because it is so small already.');
-@define('THUMBNAIL_FAILED_COPY', 'Wanted to use %s as it\'s own thumbnail, but failed to copy!');
+@define('THUMBNAIL_USING_OWN', '既に非常に小さいので、自分がサムネイルとして %s を使用します。');
+@define('THUMBNAIL_FAILED_COPY', '自分自身をサムネイルとして %s を使いたかったのですが、コピーに失敗しました!');
 @define('AUTHOR', '執筆者');
 @define('LAST_UPDATED', '最終更新日');
 @define('TRACKBACK_SPECIFIC', 'このエントリのトラックバック URI を指定する');
 @define('DIRECT_LINK', 'このエントリへのダイレクトリンク');
 @define('COMMENT_ADDED', 'コメントの追加に成功しました。');
-@define('COMMENT_ADDED_CLICK', '%s戻る%s をクリックするとコメントに戻ります。%s閉じる%s ウィンドウを閉じます。');
+@define('COMMENT_ADDED_CLICK', '%sここ%s をクリックするとコメントに戻ります。%sここ%s をクリックするとウィンドウを閉じます。');
 @define('COMMENT_NOT_ADDED', 'このエントリへのコメントが無効になったのでコメントは追加できませんでした。');
 @define('COMMENT_NOT_ADDED_CLICK', '%s戻る%s でコメントに戻ります。%s閉じる%s でウィンドウを閉じます。');
 @define('COMMENTS_DISABLE', 'このエントリのコメントを許可しない');
 @define('FILE_WRITE_ERROR', 'ファイル %s の書き込みができませんでした。');
 @define('FILE_CREATE_YOURSELF', '自分でファイルを作成するか、パーミッションを調べてください');
 @define('COPY_CODE_BELOW', '<br />* Just copy the code below and place it in %s in your %s folder:<b><pre>%s</pre></b>' . "\n");
-@define('WWW_USER', 'Change www to the user apache runs as (i.e. nobody).');
+@define('WWW_USER', 'apache を実行しているユーザーに www を変更します(例えば nobody)');
 @define('BROWSER_RELOAD', '一度これを実行してにはブラウザーの「再読み込み」ボタンをクリックします。');
 @define('DIAGNOSTIC_ERROR', 'あなたの入力した情報の診断を実行する間にいくつかのエラーを検知しました:');
 @define('SERENDIPITY_NOT_INSTALLED', 'Serendipity はまだインストールされていません。今から<a href="%s">インストール</a> してください。');
 @define('DATABASE_ERROR', 'serendipity エラー: データベースに接続できませんでした - 終了します。');
 @define('CREATE_DATABASE', 'デフォルトデータベースセットアップの作成中...');
 @define('ATTEMPT_WRITE_FILE', 'ファイル %s の書き込みを試みます...');
-@define('WRITTEN_N_SAVED', '設定の書き込みと保存をました。');
-@define('IMAGE_ALIGNMENT', '画像位置あわせ');
+@define('WRITTEN_N_SAVED', '設定の書き込みと保存を行いました。');
+@define('IMAGE_ALIGNMENT', '画像位置あわせ');
 @define('ENTER_NEW_NAME', '新規名称の入力: ');
-@define('RESIZING', 'ã\83ªã\82µã\82¤ã\82º中');
-@define('RESIZE_DONE', 'çµ\82äº\86ã\81\97ã\81¾ã\81\97ã\81\9f (%s ã\81\93ã\81®ã\82¤ã\83¡ã\83¼ã\82¸ã\82\92ã\83ªã\82µã\82¤ã\82ºしました)');
+@define('RESIZING', 'ã\82µã\82¤ã\82ºå¤\89æ\9b´中');
+@define('RESIZE_DONE', 'çµ\82äº\86ã\81\97ã\81¾ã\81\97ã\81\9f (%s ã\81\93ã\81®ã\82¤ã\83¡ã\83¼ã\82¸ã\82\92ã\82µã\82¤ã\82ºå¤\89æ\9b´しました)');
 @define('SYNCING', 'データベースと画像フォルダーの同期中');
 @define('SYNC_DONE', '終了しました (%s この画像を同期しました)');
 @define('FILE_NOT_FOUND', '<b>%s</b> とタイトルをつけられたファイルは既に削除されたため、恐らく見つけることができません。');
 @define('UNSUBSCRIBE_OK', "%s は今、このエントリの購読を取り消しました。");
 @define('NEW_COMMENT_TO_SUBSCRIBED_ENTRY', '購読済エントリ "%s" に新規コメントです');
 @define('SUBSCRIPTION_MAIL', "こんにちは %s さん。\n監視中のエントリに新しいコメントが作成されました。\n\nブログ名:\n%s\nエントリ名:\n%s\n\n下記でエントリを見つけることができます:\n%s\n\n下記のリンクをクリックすると購読解除することができます:\n%s\n");
-@define('SUBSCRIPTION_TRACKBACK_MAIL', "Hello %s,\n\nA new trackback was added to the entry you are monitoring on \"%s\", entitled \"%s\"\nThe name of the poster is: %s\n\nここでエントリを探すことができます:\n%s\n\nこのリンクをクリックすると購読をやめることが出来ます:\n%s\n");
+@define('SUBSCRIPTION_TRACKBACK_MAIL', "Hello %s,\n\nA new trackback was added to the entry you are monitoring on \"%s\", entitled \"%s\"\nThe name of the poster is: %s\n\nここでエントリを探すことができます:\n%s\n\nこのリンクをクリックすると購読をやめることができます:\n%s\n");
 @define('SIGNATURE', "\n-- \n%s は Serendipityを使っています。\n最良の blog を探しているなら <http://s9y.org> を見てください。");
 @define('SYNDICATION_PLUGIN_091', 'RSS 0.91 フィード');
 @define('SYNDICATION_PLUGIN_10', 'RSS 1.0 フォード');
 @define('SYNDICATION_PLUGIN_TTL', '"ttl" フィールド(生存期間)');
 @define('SYNDICATION_PLUGIN_TTL_DESC', 'Amount of minutes after which your blog should not be cached any more by foreign sites/applications (empty: hidden) [RSS 2.0]');
 @define('SYNDICATION_PLUGIN_PUBDATE', '"pubDate" フィールド');
-@define('SYNDICATION_PLUGIN_PUBDATE_DESC', 'Should the "pubDate"-field be embedded for a RSS-channel, to show the date of the latest entry?');
+@define('SYNDICATION_PLUGIN_PUBDATE_DESC', 'RSS チャンネルに最新のエントリの日付を表すために「pubDate」項目を組み込みますか?');
 @define('CONTENT', '内容');
 @define('TYPE', '種類');
 @define('DRAFT', '草稿');
 @define('ERROR_TEMPLATE_FILE', 'テンプレートファイルを開けません。serendipity をアップデートしてください!');
 @define('ADVANCED_OPTIONS', '高度なオプション');
 @define('EDIT_ENTRY', 'エントリ編集');
-@define('HTACCESS_ERROR', 'To check your local webserver installation, serendipity needs to be able to write the file ".htaccess". This was not possible because of permission errors. Please adjust the permissions like this: <br />&nbsp;&nbsp;%s<br />and reload this page.');
+@define('HTACCESS_ERROR', 'ローカルのウェブサーバでのインストールを確認するために、serendipity はファイル「.htaccess」を書き込みできる書くことができる必要があります。これは権限エラーのためにできませんでした。このように権限を調整してください: <br />&nbsp;&nbsp;%s<br /> そして、このページを再読み込みします。');
 @define('SIDEBAR_PLUGINS', 'サイドバープラグイン');
 @define('EVENT_PLUGINS', 'イベントプラグイン');
 @define('SORT_ORDER', 'ソート順');
 @define('SERENDIPITY_UPGRADER_PROCEED_DOIT', 'はい、そうしてください');
 @define('SERENDIPITY_UPGRADER_NO_UPGRADES', 'アップグレードの実行を必要としないように見えます。');
 @define('SERENDIPITY_UPGRADER_CONSIDER_DONE', '改良された Serendipity にアップグレードしました。');
-@define('SERENDIPITY_UPGRADER_YOU_HAVE_IGNORED', '
-Serendipity のアップグレードステージを無視しました。正しいデータベースが確実にインストールされ、スケジュール機能を実行します。');
+@define('SERENDIPITY_UPGRADER_YOU_HAVE_IGNORED', 'Serendipity のアップグレードステージを無視しました。正しいデータベースが確実にインストールされ、スケジュール機能を実行します。');
 @define('SERENDIPITY_UPGRADER_NOW_UPGRADED', 'あなたの Serendipity は今バージョン %s にアップグレードしました。');
 @define('SERENDIPITY_UPGRADER_RETURN_HERE', '%sここ%s をクリックするとブログに戻ることができます。');
 @define('MANAGE_USERS', 'ユーザー管理');
@@ -396,8 +395,8 @@ Serendipity のアップグレードステージを無視しました。正し
 @define('INSTALL_POPUP_DESC', 'コメントやトラックバックにポップアップウィンドウを使用しますか?');
 @define('INSTALL_EMBED', 'serendipity を組み込みで使用しますか?');
 @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. より詳しい情報はファイル README を参照してください!');
-@define('INSTALL_TOP_AS_LINKS', 'ã\83\88ã\83\83ã\83\97ã\81®é\80\80å\87º/ã\83ªã\83\95ã\82¡ã\83©ã\83¼ã\81®ã\83ªã\83³ã\82¯ã\82\92表示しますか?');
-@define('INSTALL_TOP_AS_LINKS_DESC', '"いいえ": Exits and Referrers are shown as plain text to prevent google spam. "yes": Exits and Referrers are shown as hyperlinks. "デフォルト": 一般設定をの設定を使用します(推奨)');
+@define('INSTALL_TOP_AS_LINKS', 'ã\83\88ã\83\83ã\83\97ã\81®é\80\80å\87º/ã\83ªã\83\95ã\82¡ã\83©ã\83¼ã\82\92ã\83ªã\83³ã\82¯ã\81¨ã\81\97ã\81¦表示しますか?');
+@define('INSTALL_TOP_AS_LINKS_DESC', '"いいえ": google スパムを防ぐために退出とリファラーをただのテキストとして表示します。"はい": 退出とリファラーをハイパーリンクとして表示します。"デフォルト": 一般設定をの設定を使用します(推奨)');
 @define('INSTALL_BLOCKREF', 'リファラーブロック');
 @define('INSTALL_BLOCKREF_DESC', 'Are there any special hosts you want not to show up in the referers list? ホスト名の一覧を「;」で列挙し、そのホスト名が部分一致でブロックされることに注意してください!');
 @define('INSTALL_REWRITE', 'URL 書き換え');
@@ -407,7 +406,7 @@ Serendipity のアップグレードステージを無視しました。正し
 @define('INSTALL_CAT_IMAGECONV', '画像変換設定');
 @define('INSTALL_CAT_IMAGECONV_DESC', 'serendipity がどのようにイメージを扱わなければならないかに関する一般的な情報を入力します。');
 @define('INSTALL_IMAGEMAGICK', 'Imagemagick を使う');
-@define('INSTALL_IMAGEMAGICK_DESC', 'image magick ã\81\8cã\82¤ã\83³ã\82¹ã\83\88ã\83¼ã\83«æ¸\88ã\81§ã\80\81ã\81\9dã\82\8cã\82\92使ã\81£ã\81¦ç\94»å\83\8fã\81®ã\83ªã\82µã\82¤ã\82ºã\82\92ã\81\97ã\81\9fã\81\84ã\81§すか?');
+@define('INSTALL_IMAGEMAGICK_DESC', 'image magick ã\81\8cã\82¤ã\83³ã\82¹ã\83\88ã\83¼ã\83«æ¸\88ã\81§ã\80\81ã\81\9dã\82\8cã\82\92使ã\81£ã\81¦ç\94»å\83\8fã\81®ã\83ªã\82µã\82¤ã\82ºã\82\92ã\81\97ã\81¾すか?');
 @define('INSTALL_IMAGEMAGICKPATH', 'convert バイナリへのパス');
 @define('INSTALL_IMAGEMAGICKPATH_DESC', 'image magic convert バイナリのフルパスと名前');
 @define('INSTALL_THUMBSUFFIX', 'サムネイル接尾辞');
@@ -424,13 +423,13 @@ Serendipity のアップグレードステージを無視しました。正し
 @define('USERCONF_PASSWORD_DESC', 'ブログにログインするときに使うパスワードを指定します。');
 @define('USERCONF_EMAIL', '電子メールアドレス');
 @define('USERCONF_EMAIL_DESC', '個人の電子メールアドレスをしていします。');
-@define('USERCONF_SENDCOMMENTS', 'コメントのお知らせを送信しますか?');
-@define('USERCONF_SENDCOMMENTS_DESC', 'ã\82¨ã\83³ã\83\88ã\83ªã\81\8cã\82³ã\83¡ã\83³ã\83\88ã\82\92受けたとき、電子メールを受信しますか?');
+@define('USERCONF_SENDCOMMENTS', 'コメント告知を送信しますか?');
+@define('USERCONF_SENDCOMMENTS_DESC', 'ã\82³ã\83¡ã\83³ã\83\88ã\82\92ã\81\82ã\81ªã\81\9fã\81®ã\82¨ã\83³ã\83\88ã\83ªã\81\8c受けたとき、電子メールを受信しますか?');
 @define('USERCONF_SENDTRACKBACKS', 'トラックバック告知を送信しますか?');
-@define('USERCONF_SENDTRACKBACKS_DESC', 'ã\82¨ã\83³ã\83\88ã\83ªã\81\8cã\83\88ã\83©ã\83\83ã\82¯ã\83\90ã\83\83ã\82¯ã\82\92受けたとき、電子メールを受信しますか?');
+@define('USERCONF_SENDTRACKBACKS_DESC', 'ã\83\88ã\83©ã\83\83ã\82¯ã\83\90ã\83\83ã\82¯ã\82\92ã\81\82ã\81ªã\81\9fã\81®ã\82¨ã\83³ã\83\88ã\83ªã\81\8c受けたとき、電子メールを受信しますか?');
 @define('USERCONF_ALLOWPUBLISH', '権限: エントリを公開しますか?');
 @define('USERCONF_ALLOWPUBLISH_DESC', 'このユーザーがエントリを公開することを許可しますか?');
-@define('SUCCESS', 'Success');
+@define('SUCCESS', '成功');
 @define('POWERED_BY_SHOW_TEXT', 'テキストとして "Serendipity" を表示する');
 @define('POWERED_BY_SHOW_TEXT_DESC', 'テキストとして "Serendipity Weblog" を表示するでしょう。');
 @define('POWERED_BY_SHOW_IMAGE', '"Serendipity" とロゴを表示');
@@ -464,7 +463,7 @@ Serendipity のアップグレードステージを無視しました。正し
 @define('PLUGIN_SUPERUSER_HTTPS', 'ログインに https を使う');
 @define('PLUGIN_SUPERUSER_HTTPS_DESC', 'ログインの https ロケーションへのリンクポイントです。ウェブサーバーがこれをサポートしている必要があります!');
 @define('INSTALL_SHOW_EXTERNAL_LINKS', '外部リンクをクリック可能にしますか?');
-@define('INSTALL_SHOW_EXTERNAL_LINKS_DESC', '"いいえ": Unchecked external links (Top Exits, Top Referrers, User comments) are not shown/shown as plain text where applicable to prevent google spam (recommended). "はい": Unchecked external links are shown as hyperlinks. Can be overridden within sidebar plugin configuration!');
+@define('INSTALL_SHOW_EXTERNAL_LINKS_DESC', '"いいえ": google スパムを防ぐために適用可能な未確認外部リンク (トップ退出、トップ入口、ユーザーコメント) はただのテキストとして表示する/しないを指定します (推奨). "はい": 未確認外部リンクはハイパーリンクとして表示します。サイドバープラグインの設定で上書きすることができます!');
 @define('PAGE_BROWSE_COMMENTS', 'ページ %s/%s, 合計 %s コメント');
 @define('FILTERS', 'フィルター');
 @define('FIND_ENTRIES', 'エントリ検索');
@@ -526,7 +525,7 @@ Serendipity のアップグレードステージを無視しました。正し
 @define('MONTHS', '月');
 @define('DAYS', '日');
 @define('ARCHIVE_FREQUENCY', 'カレンダー項目の周期');
-@define('ARCHIVE_FREQUENCY_DESC', 'リストの中で各項目間で使用するカレンダーの間隔');
+@define('ARCHIVE_FREQUENCY_DESC', 'リストの中で各項目間で使用するカレンダーの間隔です。');
 @define('ARCHIVE_COUNT', '一覧中の項目の数');
 @define('ARCHIVE_COUNT_DESC', '表示する月・週または日の合計数');
 @define('BELOW_IS_A_LIST_OF_INSTALLED_PLUGINS', '以下にインストール済のプラグインの一覧があります。');
@@ -657,7 +656,7 @@ Serendipity のアップグレードステージを無視しました。正し
 @define('EMPTY_SETTING', '%s の値が正しく指定されていません!');
 @define('USERCONF_REALNAME', '本名');
 @define('USERCONF_REALNAME_DESC', '著作者のフルネームです。これは読者に見える名前です。');
-@define('HOTLINK_DONE', 'ファイルをホットリンクしました。<br />完了です。'); // Translate
+@define('HOTLINK_DONE', 'ファイルをホットリンクしました。<br />完了です。');
 @define('ENTER_MEDIA_URL_METHOD', '取得方法:');
 @define('ADD_MEDIA_BLAHBLAH_NOTE', '注: ホットリンクは、それらをローカルに格納せずに、リモートのイメージを使用することを可能にします。サーバーへのホットリンクを選択した場合、自分のウェブサイトか指定のウェブサイトへホットリンクする許可を持っていることを確認してください。');
 @define('MEDIA_HOTLINKED', 'ホットリンク済');
@@ -708,14 +707,14 @@ Serendipity のアップグレードステージを無視しました。正し
 @define('DELETE_GROUP', 'グループ番号 #%d の「%s」を削除します。本気ですか?');
 @define('USERLEVEL_OBSOLETE', '注意: ユーザーレベル属性は現在プラグインと認証の後方互換性のみに使用されます。ユーザーの特権は現在グループ会員で扱います!');
 @define('SYNDICATION_PLUGIN_FEEDBURNERID', 'FeedBurner ID');
-@define('SYNDICATION_PLUGIN_FEEDBURNERID_DESC', 'The ID of the feed you wish to publish');
+@define('SYNDICATION_PLUGIN_FEEDBURNERID_DESC', '公開したい フィードの ID です.');
 @define('SYNDICATION_PLUGIN_FEEDBURNERIMG', 'FeedBurner 画像');
 @define('SYNDICATION_PLUGIN_FEEDBURNERIMG_DESC', 'Name of image to display (or leave blank for counter), located on feedburner.com, ex: fbapix.gif');
 @define('SYNDICATION_PLUGIN_FEEDBURNERTITLE', 'FeedBurner 題名');
 @define('SYNDICATION_PLUGIN_FEEDBURNERTITLE_DESC', 'イメージの側に表示するべきタイトルです(もしあれば)');
 @define('SYNDICATION_PLUGIN_FEEDBURNERALT', 'FeedBurner 画像のテキスト');
 @define('SYNDICATION_PLUGIN_FEEDBURNERALT_DESC', 'Text (if any) to display when hovering the image');
-@define('SEARCH_TOO_SHORT', '検索キーワードはYour search-query must be longer than 3 characters. You can try to append * to shorter words, like: s9y* to trick the search into using shorter words.');
+@define('SEARCH_TOO_SHORT', 'Your search-query must be longer than 3 characters. You can try to append * to shorter words, like: s9y* to trick the search into using shorter words.');
 @define('INSTALL_DBPORT', 'データベースのポート番号');
 @define('INSTALL_DBPORT_DESC', 'データベースサーバーへの接続に使用するポート番号です。');
 @define('PLUGIN_GROUP_FRONTEND_EXTERNAL_SERVICES', 'フロントエンド: 外部サービス');
@@ -729,7 +728,7 @@ Serendipity のアップグレードステージを無視しました。正し
 @define('PLUGIN_GROUP_BACKEND_TEMPLATES', 'バックエンド: テンプレート');
 @define('PLUGIN_GROUP_BACKEND_FEATURES', 'バックエンド: 機能');
 @define('PLUGIN_GROUP_IMAGES', '画像');
-@define('PLUGIN_GROUP_ANTISPAM', 'アンチ spam');
+@define('PLUGIN_GROUP_ANTISPAM', 'アンチスパム');
 @define('PLUGIN_GROUP_MARKUP', 'マークアップ');
 @define('PLUGIN_GROUP_STATISTICS', '統計');
 @define('PERMISSION_PERSONALCONFIGURATION', '個人設定: 個人設定のアクセス');
@@ -763,8 +762,7 @@ Serendipity のアップグレードステージを無視しました。正し
 @define('PERMISSION_ADMINCOMMENTS', 'コメント管理: コメント管理');
 @define('PERMISSION_ADMINTEMPLATES', 'テンプレート管理: テンプレート管理');
 @define('INSTALL_BLOG_EMAIL', 'ブログの電子メールアドレス');
-@define('INSTALL_BLOG_EMAIL_DESC', '
-この設定は送信メールの「From」パートの電子メールアドレスとして使用されます。必ず、ホスト上で使用するメールサーバーで認識するアドレスとしてこれを設定定します - 多くのメールサーバーが、不明の From アドレス後を持っているメッセージを拒絶します。');
+@define('INSTALL_BLOG_EMAIL_DESC', 'この設定は送信メールの「From」パートの電子メールアドレスとして使用されます。必ず、ホスト上で使用するメールサーバーで認識するアドレスとしてこれを設定定します - 多くのメールサーバーが、不明の From アドレス後を持っているメッセージを拒絶します。');
 @define('CATEGORIES_PARENT_BASE', 'カテゴリの下のみ表示する...');
 @define('CATEGORIES_PARENT_BASE_DESC', '子カテゴリーだけが表示されるように、親カテゴリーを選ぶことができます。');
 @define('CATEGORIES_HIDE_PARALLEL', 'カテゴリツリーの一部ではないカテゴリを隠す');
@@ -781,9 +779,13 @@ Serendipity のアップグレードステージを無視しました。正し
 
 @define('PERM_DENIED', 'アクセス拒否です。');
 @define('INSTALL_ACL', 'カテゴリの読み込み権限を適用する');
-@define('INSTALL_ACL_DESC', 'If enabled, the usergroup permission settings you setup for categories will be applied when logged-in users view your blog. If disabled, the read-permissions of the categories are NOT applied, but the positive effect is a little speedup on your blog. So if you don\'t need multi-user read permissions for your blog, disable this setting.');
-@define('PLUGIN_API_VALIDATE_ERROR', 'Configuration syntax wrong for option "%s". Needs content of type "%s".');
+@define('INSTALL_ACL_DESC', '有効な場合、ログインしたウェブログ閲覧ユーザーユーザーはグループ許可設定のカテゴリ設定が適用されるでしょう。無効な場合、カテゴリの読み込み許可は適用されません。しかし、しかし、前向きな結果はあなたのウェブログ上の小さなスピードアップです。マルチユーザーを必要としない場合ウェブログ読み込み権限は必要なく、これを無効に設定します。');
+@define('PLUGIN_API_VALIDATE_ERROR', 'Configuration syntax wrong for option "%s". 種類「%s」の内容が必要です。');
 @define('USERCONF_CHECK_PASSWORD', '古いパスワード');
-@define('USERCONF_CHECK_PASSWORD_DESC', 'If you change the password in the field above, you need to enter the current user password into this field.');
-@define('USERCONF_CHECK_PASSWORD_ERROR', 'You did not specify the right old password, and are not authorized to change the new password. Your settings were not saved.');
-@define('ERROR_XSRF', 'Your browser did not sent a valid HTTP-Referrer string. This may have either been caused by a misconfigured browser/proxy or by a Cross Site Request Forgery (XSRF) aimed at you. The action you requested could not be completed.');
+@define('USERCONF_CHECK_PASSWORD_DESC', '上の項目でパスワードを変更する場合、この項目に現在のユーザーパスワードを入力する必要があります。');
+@define('USERCONF_CHECK_PASSWORD_ERROR', '正しい古いパスワードを指定せず、新しいパスワードを変更することは許可されていません.設定は保存されませんでした。');
+@define('ERROR_XSRF', 'ブラウザーは有効な HTTP-Referrer 文字列を送信しませんでした。これは誤設定されたブラウザー/プロクシ、あるいはあなたに向けたCross Site Request Forgery(XSRF)を引き起ここすかどちらかかもしれません。要求した操作は完了できませんでした。');
+
+?>
+@define('INSTALL_PERMALINK_FEEDAUTHOR_DESC', 'Here you can define the relative URL structure beginning from your base URL to where RSS-feeds from specific users may be viewed. You can use the variables %id%, %realname%, %username%, %email% and any other characters.');
+@define('INSTALL_PERMALINK_FEEDAUTHOR', 'Permalink RSS-Feed Author URL structure');
index f0cdc514ebdd98ef8d87346f43a99cf3846ea730..709af32822dd9f1592bd697eebd9bc16618cba64 100644 (file)
@@ -1,4 +1,4 @@
-<?php # $Id: serendipity_lang_ko.inc.php 495 2005-09-27 00:57:03 +0900 (Tue, 27 Sep 2005) garvinhicking $
+<?php # $Id: serendipity_lang_ko.inc.php 507 2005-09-29 12:23:38Z wesley $
 # Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
 # All rights reserved.  See LICENSE file for licensing details
 # Translated by: Wesley Hwang-Chung <wesley96@gmail.com> 
 @define('USERCONF_CHECK_PASSWORD_DESC', '위의 적힌 암호를 변경하려면 여기에 현재 사용중인 암호를 적으십시오.');
 @define('USERCONF_CHECK_PASSWORD_ERROR', '이전 암호가 올바르지 않으므로 새 암호로 변경할 권한이 없습니다. 설정이 저장되지 않았습니다.');
 @define('ERROR_XSRF', '브라우저가 유효한 HTTP 진입자(referrer) 문자열을 보내지 않았습니다. 브라우저/프록시 설정이 잘못되었거나 당신을 겨냥한 상호 사이트 요청 위조(XSRF) 때문이었을 수 있습니다. 요청한 사항을 처리할 수 없었습니다.');
+@define('INSTALL_PERMALINK_FEEDAUTHOR_DESC', 'Here you can define the relative URL structure beginning from your base URL to where RSS-feeds from specific users may be viewed. You can use the variables %id%, %realname%, %username%, %email% and any other characters.');
+@define('INSTALL_PERMALINK_FEEDAUTHOR', 'Permalink RSS-Feed Author URL structure');
index bb9c21ba9f3065b82722ee00f5d195115d5a6475..b93145201d0b820c4cbdc20b2b85229944b7acb8 100644 (file)
@@ -1,4 +1,4 @@
-<?php # $Id: serendipity_lang_nl.inc.php 489 2005-09-26 07:55:11Z garvinhicking $
+<?php # $Id: serendipity_lang_nl.inc.php 495 2005-09-26 15:57:03Z garvinhicking $
 # Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
 # All rights reserved.  See LICENSE file for licensing details
 # Translation (c) by Christiaan Heerze <webmaster@heimp.nl>
 @define('USERCONF_CHECK_PASSWORD_DESC', 'If you change the password in the field above, you need to enter the current user password into this field.');
 @define('USERCONF_CHECK_PASSWORD_ERROR', 'You did not specify the right old password, and are not authorized to change the new password. Your settings were not saved.');
 @define('ERROR_XSRF', 'Your browser did not sent a valid HTTP-Referrer string. This may have either been caused by a misconfigured browser/proxy or by a Cross Site Request Forgery (XSRF) aimed at you. The action you requested could not be completed.');
+@define('INSTALL_PERMALINK_FEEDAUTHOR_DESC', 'Here you can define the relative URL structure beginning from your base URL to where RSS-feeds from specific users may be viewed. You can use the variables %id%, %realname%, %username%, %email% and any other characters.');
+@define('INSTALL_PERMALINK_FEEDAUTHOR', 'Permalink RSS-Feed Author URL structure');
index 51b140102f57618b7e1936767fb389c7fcdd2370..81695e1dfb06380f09dfef79cb0815d82f80eee3 100644 (file)
@@ -1,4 +1,4 @@
-<?php # $Id: serendipity_lang_no.inc.php 489 2005-09-26 07:55:11Z garvinhicking $
+<?php # $Id: serendipity_lang_no.inc.php 495 2005-09-26 15:57:03Z garvinhicking $
 # Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
 # All rights reserved.  See LICENSE file for licensing details
 # Translation (c) by Jo Christian Oterhals <oterhals@gmail.com>
 @define('USERCONF_CHECK_PASSWORD_DESC', 'If you change the password in the field above, you need to enter the current user password into this field.');
 @define('USERCONF_CHECK_PASSWORD_ERROR', 'You did not specify the right old password, and are not authorized to change the new password. Your settings were not saved.');
 @define('ERROR_XSRF', 'Your browser did not sent a valid HTTP-Referrer string. This may have either been caused by a misconfigured browser/proxy or by a Cross Site Request Forgery (XSRF) aimed at you. The action you requested could not be completed.');
+@define('INSTALL_PERMALINK_FEEDAUTHOR_DESC', 'Here you can define the relative URL structure beginning from your base URL to where RSS-feeds from specific users may be viewed. You can use the variables %id%, %realname%, %username%, %email% and any other characters.');
+@define('INSTALL_PERMALINK_FEEDAUTHOR', 'Permalink RSS-Feed Author URL structure');
index a6e129f41961d8a65b625a75e190982c3d8457c2..033458651a7c43c62b2fb0633a647bf599db1aa4 100644 (file)
@@ -1,4 +1,4 @@
-<?php # $Id: serendipity_lang_pt.inc.php 489 2005-09-26 07:55:11Z garvinhicking $
+<?php # $Id: serendipity_lang_pt.inc.php 495 2005-09-26 15:57:03Z garvinhicking $
 # Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
 # All rights reserved.  See LICENSE file for licensing details
 # Translation (c) by Agner Olson <agner@agner.net> 
 @define('USERCONF_CHECK_PASSWORD_DESC', 'If you change the password in the field above, you need to enter the current user password into this field.');
 @define('USERCONF_CHECK_PASSWORD_ERROR', 'You did not specify the right old password, and are not authorized to change the new password. Your settings were not saved.');
 @define('ERROR_XSRF', 'Your browser did not sent a valid HTTP-Referrer string. This may have either been caused by a misconfigured browser/proxy or by a Cross Site Request Forgery (XSRF) aimed at you. The action you requested could not be completed.');
+@define('INSTALL_PERMALINK_FEEDAUTHOR_DESC', 'Here you can define the relative URL structure beginning from your base URL to where RSS-feeds from specific users may be viewed. You can use the variables %id%, %realname%, %username%, %email% and any other characters.');
+@define('INSTALL_PERMALINK_FEEDAUTHOR', 'Permalink RSS-Feed Author URL structure');
index e954902dc53e350f9f550ae4cd2f66242557122d..fa0715941e2034afaae18b17a30452852e74155f 100644 (file)
 @define('USERCONF_CHECK_PASSWORD_DESC', 'If you change the password in the field above, you need to enter the current user password into this field.');
 @define('USERCONF_CHECK_PASSWORD_ERROR', 'You did not specify the right old password, and are not authorized to change the new password. Your settings were not saved.');
 @define('ERROR_XSRF', 'Your browser did not sent a valid HTTP-Referrer string. This may have either been caused by a misconfigured browser/proxy or by a Cross Site Request Forgery (XSRF) aimed at you. The action you requested could not be completed.');
+@define('INSTALL_PERMALINK_FEEDAUTHOR_DESC', 'Here you can define the relative URL structure beginning from your base URL to where RSS-feeds from specific users may be viewed. You can use the variables %id%, %realname%, %username%, %email% and any other characters.');
+@define('INSTALL_PERMALINK_FEEDAUTHOR', 'Permalink RSS-Feed Author URL structure');
index edfa39df6d13e328593be4aa2a3732fbaca4baa2..0cb3ad993d806e824fd51ee2fc2c63898c6685fc 100644 (file)
 @define('USERCONF_CHECK_PASSWORD_DESC', 'If you change the password in the field above, you need to enter the current user password into this field.');
 @define('USERCONF_CHECK_PASSWORD_ERROR', 'You did not specify the right old password, and are not authorized to change the new password. Your settings were not saved.');
 @define('ERROR_XSRF', 'Your browser did not sent a valid HTTP-Referrer string. This may have either been caused by a misconfigured browser/proxy or by a Cross Site Request Forgery (XSRF) aimed at you. The action you requested could not be completed.');
+@define('INSTALL_PERMALINK_FEEDAUTHOR_DESC', 'Here you can define the relative URL structure beginning from your base URL to where RSS-feeds from specific users may be viewed. You can use the variables %id%, %realname%, %username%, %email% and any other characters.');
+@define('INSTALL_PERMALINK_FEEDAUTHOR', 'Permalink RSS-Feed Author URL structure');
index 7c1ea7b3ec8a1624e8c63003d7c8337f186d810c..6f67c597bba2d1583015f29800a7ed9634410028 100644 (file)
@@ -1,4 +1,4 @@
-<?php # $Id: serendipity_lang_ru.inc.php 489 2005-09-26 07:55:11Z garvinhicking $
+<?php # $Id: serendipity_lang_ru.inc.php 495 2005-09-26 15:57:03Z garvinhicking $
 # Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
 # All rights reserved.  See LICENSE file for licensing details
 /* vim: set sts=4 ts=4 expandtab : */
@@ -786,3 +786,5 @@ $i18n_filename_to   = array('_', 'a', 'A', 'b', 'B', 'v', 'V', 'g', 'G', 'd', 'D
 @define('USERCONF_CHECK_PASSWORD_DESC', 'If you change the password in the field above, you need to enter the current user password into this field.');
 @define('USERCONF_CHECK_PASSWORD_ERROR', 'You did not specify the right old password, and are not authorized to change the new password. Your settings were not saved.');
 @define('ERROR_XSRF', 'Your browser did not sent a valid HTTP-Referrer string. This may have either been caused by a misconfigured browser/proxy or by a Cross Site Request Forgery (XSRF) aimed at you. The action you requested could not be completed.');
+@define('INSTALL_PERMALINK_FEEDAUTHOR_DESC', 'Here you can define the relative URL structure beginning from your base URL to where RSS-feeds from specific users may be viewed. You can use the variables %id%, %realname%, %username%, %email% and any other characters.');
+@define('INSTALL_PERMALINK_FEEDAUTHOR', 'Permalink RSS-Feed Author URL structure');
index e4a883755619ac2c25a6db00f3deda91feba0947..798db5fcc3c924920450792e4b0d4bf2a2a2501f 100644 (file)
 @define('USERCONF_CHECK_PASSWORD_DESC', 'If you change the password in the field above, you need to enter the current user password into this field.');
 @define('USERCONF_CHECK_PASSWORD_ERROR', 'You did not specify the right old password, and are not authorized to change the new password. Your settings were not saved.');
 @define('ERROR_XSRF', 'Your browser did not sent a valid HTTP-Referrer string. This may have either been caused by a misconfigured browser/proxy or by a Cross Site Request Forgery (XSRF) aimed at you. The action you requested could not be completed.');
+@define('INSTALL_PERMALINK_FEEDAUTHOR_DESC', 'Here you can define the relative URL structure beginning from your base URL to where RSS-feeds from specific users may be viewed. You can use the variables %id%, %realname%, %username%, %email% and any other characters.');
+@define('INSTALL_PERMALINK_FEEDAUTHOR', 'Permalink RSS-Feed Author URL structure');
index 498471fb4360a10ef9e1cc82dccb90d3eea3867a..4a3981cca9f20e28f5532c74f8f2ec11978dcbb9 100644 (file)
@@ -1,4 +1,4 @@
-<?php # $Id: serendipity_lang_tn.inc.php 489 2005-09-26 07:55:11Z garvinhicking $
+<?php # $Id: serendipity_lang_tn.inc.php 495 2005-09-26 15:57:03Z garvinhicking $
 # Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
 # All rights reserved.  See LICENSE file for licensing details
 # Translated by CapriSkye <admin@capriskye.com>
 @define('USERCONF_CHECK_PASSWORD_DESC', 'If you change the password in the field above, you need to enter the current user password into this field.');
 @define('USERCONF_CHECK_PASSWORD_ERROR', 'You did not specify the right old password, and are not authorized to change the new password. Your settings were not saved.');
 @define('ERROR_XSRF', 'Your browser did not sent a valid HTTP-Referrer string. This may have either been caused by a misconfigured browser/proxy or by a Cross Site Request Forgery (XSRF) aimed at you. The action you requested could not be completed.');
+@define('INSTALL_PERMALINK_FEEDAUTHOR_DESC', 'Here you can define the relative URL structure beginning from your base URL to where RSS-feeds from specific users may be viewed. You can use the variables %id%, %realname%, %username%, %email% and any other characters.');
+@define('INSTALL_PERMALINK_FEEDAUTHOR', 'Permalink RSS-Feed Author URL structure');
index 7c4232620c5b9e74b18c2954ffaf17cce343b7e0..c56f887e2d90ad66ad955ff05ef193be432959b7 100644 (file)
@@ -1,4 +1,4 @@
-<?php # $Id: serendipity_lang_tw.inc.php 489 2005-09-26 07:55:11Z garvinhicking $
+<?php # $Id: serendipity_lang_tw.inc.php 495 2005-09-26 15:57:03Z garvinhicking $
 # Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
 # All rights reserved.  See LICENSE file for licensing details
 # Translated by CapriSkye <admin@capriskye.com>
 @define('USERCONF_CHECK_PASSWORD_DESC', 'If you change the password in the field above, you need to enter the current user password into this field.');
 @define('USERCONF_CHECK_PASSWORD_ERROR', 'You did not specify the right old password, and are not authorized to change the new password. Your settings were not saved.');
 @define('ERROR_XSRF', 'Your browser did not sent a valid HTTP-Referrer string. This may have either been caused by a misconfigured browser/proxy or by a Cross Site Request Forgery (XSRF) aimed at you. The action you requested could not be completed.');
+@define('INSTALL_PERMALINK_FEEDAUTHOR_DESC', 'Here you can define the relative URL structure beginning from your base URL to where RSS-feeds from specific users may be viewed. You can use the variables %id%, %realname%, %username%, %email% and any other characters.');
+@define('INSTALL_PERMALINK_FEEDAUTHOR', 'Permalink RSS-Feed Author URL structure');
index 87cbebb03610649a792c7731372aba46e3bc6af4..ac62cecfbfaab745b516641db24560e5e6800f46 100644 (file)
@@ -1,4 +1,4 @@
-<?php # $Id: serendipity_lang_zh.inc.php 489 2005-09-26 07:55:11Z garvinhicking $
+<?php # $Id: serendipity_lang_zh.inc.php 495 2005-09-26 15:57:03Z garvinhicking $
 # Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
 # All rights reserved.  See LICENSE file for licensing details
 /* vim: set sts=4 ts=4 expandtab : */
 @define('USERCONF_CHECK_PASSWORD_DESC', 'If you change the password in the field above, you need to enter the current user password into this field.');
 @define('USERCONF_CHECK_PASSWORD_ERROR', 'You did not specify the right old password, and are not authorized to change the new password. Your settings were not saved.');
 @define('ERROR_XSRF', 'Your browser did not sent a valid HTTP-Referrer string. This may have either been caused by a misconfigured browser/proxy or by a Cross Site Request Forgery (XSRF) aimed at you. The action you requested could not be completed.');
+@define('INSTALL_PERMALINK_FEEDAUTHOR_DESC', 'Here you can define the relative URL structure beginning from your base URL to where RSS-feeds from specific users may be viewed. You can use the variables %id%, %realname%, %username%, %email% and any other characters.');
+@define('INSTALL_PERMALINK_FEEDAUTHOR', 'Permalink RSS-Feed Author URL structure');
index 7e59016d4be03c19971ada9f2490e013cfbbc749..ed18529010ba489d8c9e15fa97f3e43fbe24b21e 100644 (file)
 @define('USERCONF_CHECK_PASSWORD_DESC', 'If you change the password in the field above, you need to enter the current user password into this field.');
 @define('USERCONF_CHECK_PASSWORD_ERROR', 'You did not specify the right old password, and are not authorized to change the new password. Your settings were not saved.');
 @define('ERROR_XSRF', 'Your browser did not sent a valid HTTP-Referrer string. This may have either been caused by a misconfigured browser/proxy or by a Cross Site Request Forgery (XSRF) aimed at you. The action you requested could not be completed.');
+@define('INSTALL_PERMALINK_FEEDAUTHOR_DESC', 'Here you can define the relative URL structure beginning from your base URL to where RSS-feeds from specific users may be viewed. You can use the variables %id%, %realname%, %username%, %email% and any other characters.');
+@define('INSTALL_PERMALINK_FEEDAUTHOR', 'Permalink RSS-Feed Author URL structure');
index 052ca1ab614f4efecdaee7f932ab42475f6820eb..2a7b3d9e25be0f693062bae2be91cdd5cc12b1d0 100644 (file)
 @define('USERCONF_CHECK_PASSWORD_DESC', 'If you change the password in the field above, you need to enter the current user password into this field.');
 @define('USERCONF_CHECK_PASSWORD_ERROR', 'You did not specify the right old password, and are not authorized to change the new password. Your settings were not saved.');
 @define('ERROR_XSRF', 'Your browser did not sent a valid HTTP-Referrer string. This may have either been caused by a misconfigured browser/proxy or by a Cross Site Request Forgery (XSRF) aimed at you. The action you requested could not be completed.');
+@define('INSTALL_PERMALINK_FEEDAUTHOR_DESC', 'Here you can define the relative URL structure beginning from your base URL to where RSS-feeds from specific users may be viewed. You can use the variables %id%, %realname%, %username%, %email% and any other characters.');
+@define('INSTALL_PERMALINK_FEEDAUTHOR', 'Permalink RSS-Feed Author URL structure');
index af928785bd8e99b06fcb08e19f08e507ab3f6530..aa813d7aeedee3cb2f538a14d48e833b90709f90 100644 (file)
 @define('USERCONF_CHECK_PASSWORD_DESC', 'If you change the password in the field above, you need to enter the current user password into this field.');
 @define('USERCONF_CHECK_PASSWORD_ERROR', 'You did not specify the right old password, and are not authorized to change the new password. Your settings were not saved.');
 @define('ERROR_XSRF', 'Your browser did not sent a valid HTTP-Referrer string. This may have either been caused by a misconfigured browser/proxy or by a Cross Site Request Forgery (XSRF) aimed at you. The action you requested could not be completed.');
+@define('INSTALL_PERMALINK_FEEDAUTHOR_DESC', 'Here you can define the relative URL structure beginning from your base URL to where RSS-feeds from specific users may be viewed. You can use the variables %id%, %realname%, %username%, %email% and any other characters.');
+@define('INSTALL_PERMALINK_FEEDAUTHOR', 'Permalink RSS-Feed Author URL structure');
index 9f6b619136ae1cc043bb19364cc2eb94896010cc..8762e2b6465dd443255dbb34751e28283a23b070 100644 (file)
 @define('USERCONF_CHECK_PASSWORD_DESC', 'If you change the password in the field above, you need to enter the current user password into this field.');
 @define('USERCONF_CHECK_PASSWORD_ERROR', 'You did not specify the right old password, and are not authorized to change the new password. Your settings were not saved.');
 @define('ERROR_XSRF', 'Your browser did not sent a valid HTTP-Referrer string. This may have either been caused by a misconfigured browser/proxy or by a Cross Site Request Forgery (XSRF) aimed at you. The action you requested could not be completed.');
+@define('INSTALL_PERMALINK_FEEDAUTHOR_DESC', 'Here you can define the relative URL structure beginning from your base URL to where RSS-feeds from specific users may be viewed. You can use the variables %id%, %realname%, %username%, %email% and any other characters.');
+@define('INSTALL_PERMALINK_FEEDAUTHOR', 'Permalink RSS-Feed Author URL structure');
index e6d21e359e3a55021067663d4442f73511d35e9b..3d2c3125fc9ffc6aa8eb62305833000b38f75980 100644 (file)
 @define('USERCONF_CHECK_PASSWORD_DESC', 'If you change the password in the field above, you need to enter the current user password into this field.');
 @define('USERCONF_CHECK_PASSWORD_ERROR', 'You did not specify the right old password, and are not authorized to change the new password. Your settings were not saved.');
 @define('ERROR_XSRF', 'Your browser did not sent a valid HTTP-Referrer string. This may have either been caused by a misconfigured browser/proxy or by a Cross Site Request Forgery (XSRF) aimed at you. The action you requested could not be completed.');
+@define('INSTALL_PERMALINK_FEEDAUTHOR_DESC', 'Here you can define the relative URL structure beginning from your base URL to where RSS-feeds from specific users may be viewed. You can use the variables %id%, %realname%, %username%, %email% and any other characters.');
+@define('INSTALL_PERMALINK_FEEDAUTHOR', 'Permalink RSS-Feed Author URL structure');
index db10a48de24be1ac71336f6b1fc3879151db3ecd..aa6276437cd9a320b97b3563b003d10158d050af 100644 (file)
 @define('USERCONF_CHECK_PASSWORD_DESC', 'Falls Sie das Passwort im vorhergehenden Feld ändern, müssen Sie das aktuelle Password in diesem Feld eingeben.');
 @define('USERCONF_CHECK_PASSWORD_ERROR', 'Sie haben kein gültiges derzeitiges Passwort angegeben, und sind daher nicht berechtigt, das neue Passwort umzusetzen. Ihre Einstellungen wurden nicht gespeichert.');
 @define('ERROR_XSRF', 'Ihr Browser hat keinen gültigen HTTP-Referrer übermittelt. Dies kann entweder daher kommen, dass ihr Browser/Proxy nicht korrekt konfiguriert ist, oder dass Sie Opfer einer "Cross Site Request Forgery (XSRF)" waren, mit der man Sie ungewollten Änderungen zwingen wollte. Die angeforderte Aktion konnte daher nicht durchgeführt werden.');
+@define('INSTALL_PERMALINK_FEEDAUTHOR_DESC', 'Here you can define the relative URL structure beginning from your base URL to where RSS-feeds from specific users may be viewed. You can use the variables %id%, %realname%, %username%, %email% and any other characters.');
+@define('INSTALL_PERMALINK_FEEDAUTHOR', 'Permalink RSS-Feed Author URL structure');
index 762790f324df4c6dfdd498d7f98b32bbc5f76bbd..9801310d3d77e97a64cf60142f4e8953337415be 100644 (file)
 @define('INSTALL_PERMALINK_CATEGORY_DESC', 'Here you can define the relative URL structure beginning from your base URL to where entries from certain categories may become available. You can use the variables %id%, %name%, %description% and any other characters.');
 @define('INSTALL_PERMALINK_FEEDCATEGORY', 'Permalink RSS-Feed Category URL structure');
 @define('INSTALL_PERMALINK_FEEDCATEGORY_DESC', 'Here you can define the relative URL structure beginning from your base URL to where RSS-feeds from certain categories may become available. You can use the variables %id%, %name%, %description% and any other characters.');
+@define('INSTALL_PERMALINK_FEEDAUTHOR', 'Permalink RSS-Feed Author URL structure');
+@define('INSTALL_PERMALINK_FEEDAUTHOR_DESC', 'Here you can define the relative URL structure beginning from your base URL to where RSS-feeds from specific users may be viewed. You can use the variables %id%, %realname%, %username%, %email% and any other characters.');
 @define('INSTALL_PERMALINK_ARCHIVESPATH', 'Path to archives');
 @define('INSTALL_PERMALINK_ARCHIVEPATH', 'Path to archive');
 @define('INSTALL_PERMALINK_CATEGORIESPATH', 'Path to categories');
index 5688872571e10e721e259ec88b1f9f1c5c76fc59..72409d0cd5c59ea0039d79c4f2d92f9e4a598c35 100644 (file)
 @define('USERCONF_CHECK_PASSWORD_DESC', 'If you change the password in the field above, you need to enter the current user password into this field.');
 @define('USERCONF_CHECK_PASSWORD_ERROR', 'You did not specify the right old password, and are not authorized to change the new password. Your settings were not saved.');
 @define('ERROR_XSRF', 'Your browser did not sent a valid HTTP-Referrer string. This may have either been caused by a misconfigured browser/proxy or by a Cross Site Request Forgery (XSRF) aimed at you. The action you requested could not be completed.');
+@define('INSTALL_PERMALINK_FEEDAUTHOR_DESC', 'Here you can define the relative URL structure beginning from your base URL to where RSS-feeds from specific users may be viewed. You can use the variables %id%, %realname%, %username%, %email% and any other characters.');
+@define('INSTALL_PERMALINK_FEEDAUTHOR', 'Permalink RSS-Feed Author URL structure');
index 1d2c5595a3451b65e37f912bd724760d56766612..b9a8bee34989cff1fca6cad7e297d5b15c17d3cf 100644 (file)
 @define('USERCONF_CHECK_PASSWORD_DESC', 'If you change the password in the field above, you need to enter the current user password into this field.');
 @define('USERCONF_CHECK_PASSWORD_ERROR', 'You did not specify the right old password, and are not authorized to change the new password. Your settings were not saved.');
 @define('ERROR_XSRF', 'Your browser did not sent a valid HTTP-Referrer string. This may have either been caused by a misconfigured browser/proxy or by a Cross Site Request Forgery (XSRF) aimed at you. The action you requested could not be completed.');
+@define('INSTALL_PERMALINK_FEEDAUTHOR_DESC', 'Here you can define the relative URL structure beginning from your base URL to where RSS-feeds from specific users may be viewed. You can use the variables %id%, %realname%, %username%, %email% and any other characters.');
+@define('INSTALL_PERMALINK_FEEDAUTHOR', 'Permalink RSS-Feed Author URL structure');
index 3bd9d8c465585c65ca5038c1007b5b09bba0952d..c191fd6044df78261b22ea41896c4579439442a2 100644 (file)
 @define('USERCONF_CHECK_PASSWORD_DESC', 'If you change the password in the field above, you need to enter the current user password into this field.');
 @define('USERCONF_CHECK_PASSWORD_ERROR', 'You did not specify the right old password, and are not authorized to change the new password. Your settings were not saved.');
 @define('ERROR_XSRF', 'Your browser did not sent a valid HTTP-Referrer string. This may have either been caused by a misconfigured browser/proxy or by a Cross Site Request Forgery (XSRF) aimed at you. The action you requested could not be completed.');
+@define('INSTALL_PERMALINK_FEEDAUTHOR_DESC', 'Here you can define the relative URL structure beginning from your base URL to where RSS-feeds from specific users may be viewed. You can use the variables %id%, %realname%, %username%, %email% and any other characters.');
+@define('INSTALL_PERMALINK_FEEDAUTHOR', 'Permalink RSS-Feed Author URL structure');
index 3bfdf9c4e88d733c03abf29b442188f34b619659..a57720975fdcd201f84f196c9570044bcf52ee2f 100644 (file)
 @define('USERCONF_CHECK_PASSWORD_DESC', 'If you change the password in the field above, you need to enter the current user password into this field.');
 @define('USERCONF_CHECK_PASSWORD_ERROR', 'You did not specify the right old password, and are not authorized to change the new password. Your settings were not saved.');
 @define('ERROR_XSRF', 'Your browser did not sent a valid HTTP-Referrer string. This may have either been caused by a misconfigured browser/proxy or by a Cross Site Request Forgery (XSRF) aimed at you. The action you requested could not be completed.');
+@define('INSTALL_PERMALINK_FEEDAUTHOR_DESC', 'Here you can define the relative URL structure beginning from your base URL to where RSS-feeds from specific users may be viewed. You can use the variables %id%, %realname%, %username%, %email% and any other characters.');
+@define('INSTALL_PERMALINK_FEEDAUTHOR', 'Permalink RSS-Feed Author URL structure');
index e7c72baa6b3395a73ec7ddc9105b079ab71ed648..c6c336a82ccd4025b1cf230c3aa5d43e9c113480 100644 (file)
 @define('USERCONF_CHECK_PASSWORD_DESC', 'If you change the password in the field above, you need to enter the current user password into this field.');
 @define('USERCONF_CHECK_PASSWORD_ERROR', 'You did not specify the right old password, and are not authorized to change the new password. Your settings were not saved.');
 @define('ERROR_XSRF', 'Your browser did not sent a valid HTTP-Referrer string. This may have either been caused by a misconfigured browser/proxy or by a Cross Site Request Forgery (XSRF) aimed at you. The action you requested could not be completed.');
+@define('INSTALL_PERMALINK_FEEDAUTHOR_DESC', 'Here you can define the relative URL structure beginning from your base URL to where RSS-feeds from specific users may be viewed. You can use the variables %id%, %realname%, %username%, %email% and any other characters.');
+@define('INSTALL_PERMALINK_FEEDAUTHOR', 'Permalink RSS-Feed Author URL structure');
index e639fa979984d439a15b9b821c41958227a4c447..c5c40c656ef87d2bcb70aec54f6f6adde75af138 100644 (file)
 @define('USERCONF_CHECK_PASSWORD_DESC', 'If you change the password in the field above, you need to enter the current user password into this field.');
 @define('USERCONF_CHECK_PASSWORD_ERROR', 'You did not specify the right old password, and are not authorized to change the new password. Your settings were not saved.');
 @define('ERROR_XSRF', 'Your browser did not sent a valid HTTP-Referrer string. This may have either been caused by a misconfigured browser/proxy or by a Cross Site Request Forgery (XSRF) aimed at you. The action you requested could not be completed.');
+@define('INSTALL_PERMALINK_FEEDAUTHOR_DESC', 'Here you can define the relative URL structure beginning from your base URL to where RSS-feeds from specific users may be viewed. You can use the variables %id%, %realname%, %username%, %email% and any other characters.');
+@define('INSTALL_PERMALINK_FEEDAUTHOR', 'Permalink RSS-Feed Author URL structure');
index d72ad2ab2c603a74371cbca16495bebfd5efdeb9..deab90ce176aa6af9d91ab1b8b226b267f85b2c4 100644 (file)
 @define('USERCONF_CHECK_PASSWORD_DESC', 'If you change the password in the field above, you need to enter the current user password into this field.');
 @define('USERCONF_CHECK_PASSWORD_ERROR', 'You did not specify the right old password, and are not authorized to change the new password. Your settings were not saved.');
 @define('ERROR_XSRF', 'Your browser did not sent a valid HTTP-Referrer string. This may have either been caused by a misconfigured browser/proxy or by a Cross Site Request Forgery (XSRF) aimed at you. The action you requested could not be completed.');
+@define('INSTALL_PERMALINK_FEEDAUTHOR_DESC', 'Here you can define the relative URL structure beginning from your base URL to where RSS-feeds from specific users may be viewed. You can use the variables %id%, %realname%, %username%, %email% and any other characters.');
+@define('INSTALL_PERMALINK_FEEDAUTHOR', 'Permalink RSS-Feed Author URL structure');
index 53036705514c6f3004e5d42b204684a256ba59c3..32cbe3917472ad7e844d4c1ad966ce73351e00f4 100644 (file)
 @define('ERROR_XSRF', 'ブラウザーは有効な HTTP-Referrer 文字列を送信しませんでした。これは誤設定されたブラウザー/プロクシ、あるいはあなたに向けたCross Site Request Forgery(XSRF)を引き起ここすかどちらかかもしれません。要求した操作は完了できませんでした。');
 
 ?>
+@define('INSTALL_PERMALINK_FEEDAUTHOR_DESC', 'Here you can define the relative URL structure beginning from your base URL to where RSS-feeds from specific users may be viewed. You can use the variables %id%, %realname%, %username%, %email% and any other characters.');
+@define('INSTALL_PERMALINK_FEEDAUTHOR', 'Permalink RSS-Feed Author URL structure');
index 38e7d4564a60223f48a7db7590cbf207190de3a8..87217ca6983449a4b81d018d1ab1c4bee56c20b4 100644 (file)
 @define('USERCONF_CHECK_PASSWORD_DESC', '위의 적힌 암호를 변경하려면 여기에 현재 사용중인 암호를 적으십시오.');
 @define('USERCONF_CHECK_PASSWORD_ERROR', '이전 암호가 올바르지 않으므로 새 암호로 변경할 권한이 없습니다. 설정이 저장되지 않았습니다.');
 @define('ERROR_XSRF', '브라우저가 유효한 HTTP 진입자(referrer) 문자열을 보내지 않았습니다. 브라우저/프록시 설정이 잘못되었거나 당신을 겨냥한 상호 사이트 요청 위조(XSRF) 때문이었을 수 있습니다. 요청한 사항을 처리할 수 없었습니다.');
+@define('INSTALL_PERMALINK_FEEDAUTHOR_DESC', 'Here you can define the relative URL structure beginning from your base URL to where RSS-feeds from specific users may be viewed. You can use the variables %id%, %realname%, %username%, %email% and any other characters.');
+@define('INSTALL_PERMALINK_FEEDAUTHOR', 'Permalink RSS-Feed Author URL structure');
index 5375a5cac3d663aeca7a5e293abb4fecacec7134..ca977acbdb892472f4c1adc8edab26d7fd4b0b85 100644 (file)
 @define('USERCONF_CHECK_PASSWORD_DESC', 'If you change the password in the field above, you need to enter the current user password into this field.');
 @define('USERCONF_CHECK_PASSWORD_ERROR', 'You did not specify the right old password, and are not authorized to change the new password. Your settings were not saved.');
 @define('ERROR_XSRF', 'Your browser did not sent a valid HTTP-Referrer string. This may have either been caused by a misconfigured browser/proxy or by a Cross Site Request Forgery (XSRF) aimed at you. The action you requested could not be completed.');
+@define('INSTALL_PERMALINK_FEEDAUTHOR_DESC', 'Here you can define the relative URL structure beginning from your base URL to where RSS-feeds from specific users may be viewed. You can use the variables %id%, %realname%, %username%, %email% and any other characters.');
+@define('INSTALL_PERMALINK_FEEDAUTHOR', 'Permalink RSS-Feed Author URL structure');
index 65d6ae799830c9da72af93ab6b598ce3b64e49a3..a057d0237c87420e4b57304632f089ca0aae6a8f 100644 (file)
 @define('USERCONF_CHECK_PASSWORD_DESC', 'If you change the password in the field above, you need to enter the current user password into this field.');
 @define('USERCONF_CHECK_PASSWORD_ERROR', 'You did not specify the right old password, and are not authorized to change the new password. Your settings were not saved.');
 @define('ERROR_XSRF', 'Your browser did not sent a valid HTTP-Referrer string. This may have either been caused by a misconfigured browser/proxy or by a Cross Site Request Forgery (XSRF) aimed at you. The action you requested could not be completed.');
+@define('INSTALL_PERMALINK_FEEDAUTHOR_DESC', 'Here you can define the relative URL structure beginning from your base URL to where RSS-feeds from specific users may be viewed. You can use the variables %id%, %realname%, %username%, %email% and any other characters.');
+@define('INSTALL_PERMALINK_FEEDAUTHOR', 'Permalink RSS-Feed Author URL structure');
index 518d0db7736bf6bafbdd2066e9592daa171b24c8..4a8de47466a6c7e69a04339a75db426b99bce0f5 100644 (file)
 @define('USERCONF_CHECK_PASSWORD_DESC', 'If you change the password in the field above, you need to enter the current user password into this field.');
 @define('USERCONF_CHECK_PASSWORD_ERROR', 'You did not specify the right old password, and are not authorized to change the new password. Your settings were not saved.');
 @define('ERROR_XSRF', 'Your browser did not sent a valid HTTP-Referrer string. This may have either been caused by a misconfigured browser/proxy or by a Cross Site Request Forgery (XSRF) aimed at you. The action you requested could not be completed.');
+@define('INSTALL_PERMALINK_FEEDAUTHOR_DESC', 'Here you can define the relative URL structure beginning from your base URL to where RSS-feeds from specific users may be viewed. You can use the variables %id%, %realname%, %username%, %email% and any other characters.');
+@define('INSTALL_PERMALINK_FEEDAUTHOR', 'Permalink RSS-Feed Author URL structure');
index b39afdc26124933ea9adec7efb377c296ce6cd80..323e4232b539aeee94c79c36daef9347e616ad38 100644 (file)
 @define('USERCONF_CHECK_PASSWORD_DESC', 'If you change the password in the field above, you need to enter the current user password into this field.');
 @define('USERCONF_CHECK_PASSWORD_ERROR', 'You did not specify the right old password, and are not authorized to change the new password. Your settings were not saved.');
 @define('ERROR_XSRF', 'Your browser did not sent a valid HTTP-Referrer string. This may have either been caused by a misconfigured browser/proxy or by a Cross Site Request Forgery (XSRF) aimed at you. The action you requested could not be completed.');
+@define('INSTALL_PERMALINK_FEEDAUTHOR_DESC', 'Here you can define the relative URL structure beginning from your base URL to where RSS-feeds from specific users may be viewed. You can use the variables %id%, %realname%, %username%, %email% and any other characters.');
+@define('INSTALL_PERMALINK_FEEDAUTHOR', 'Permalink RSS-Feed Author URL structure');
index edfa39df6d13e328593be4aa2a3732fbaca4baa2..0cb3ad993d806e824fd51ee2fc2c63898c6685fc 100644 (file)
 @define('USERCONF_CHECK_PASSWORD_DESC', 'If you change the password in the field above, you need to enter the current user password into this field.');
 @define('USERCONF_CHECK_PASSWORD_ERROR', 'You did not specify the right old password, and are not authorized to change the new password. Your settings were not saved.');
 @define('ERROR_XSRF', 'Your browser did not sent a valid HTTP-Referrer string. This may have either been caused by a misconfigured browser/proxy or by a Cross Site Request Forgery (XSRF) aimed at you. The action you requested could not be completed.');
+@define('INSTALL_PERMALINK_FEEDAUTHOR_DESC', 'Here you can define the relative URL structure beginning from your base URL to where RSS-feeds from specific users may be viewed. You can use the variables %id%, %realname%, %username%, %email% and any other characters.');
+@define('INSTALL_PERMALINK_FEEDAUTHOR', 'Permalink RSS-Feed Author URL structure');
index 34f4ac796a74b5bab31cc15db322ae7d2c31e8fc..1828ea8b26cb4b366b4765dfb21d5a8aa02547a4 100644 (file)
@@ -786,3 +786,5 @@ $i18n_filename_to   = array('_', 'a', 'A', 'b', 'B', 'v', 'V', 'g', 'G', 'd', 'D
 @define('USERCONF_CHECK_PASSWORD_DESC', 'If you change the password in the field above, you need to enter the current user password into this field.');
 @define('USERCONF_CHECK_PASSWORD_ERROR', 'You did not specify the right old password, and are not authorized to change the new password. Your settings were not saved.');
 @define('ERROR_XSRF', 'Your browser did not sent a valid HTTP-Referrer string. This may have either been caused by a misconfigured browser/proxy or by a Cross Site Request Forgery (XSRF) aimed at you. The action you requested could not be completed.');
+@define('INSTALL_PERMALINK_FEEDAUTHOR_DESC', 'Here you can define the relative URL structure beginning from your base URL to where RSS-feeds from specific users may be viewed. You can use the variables %id%, %realname%, %username%, %email% and any other characters.');
+@define('INSTALL_PERMALINK_FEEDAUTHOR', 'Permalink RSS-Feed Author URL structure');
index 4abe388a952e74e6724430fb4644c48192b75a02..69f2ba5c464fd8cb3c51d82f5f204a40062946de 100644 (file)
 @define('USERCONF_CHECK_PASSWORD_DESC', 'If you change the password in the field above, you need to enter the current user password into this field.');
 @define('USERCONF_CHECK_PASSWORD_ERROR', 'You did not specify the right old password, and are not authorized to change the new password. Your settings were not saved.');
 @define('ERROR_XSRF', 'Your browser did not sent a valid HTTP-Referrer string. This may have either been caused by a misconfigured browser/proxy or by a Cross Site Request Forgery (XSRF) aimed at you. The action you requested could not be completed.');
+@define('INSTALL_PERMALINK_FEEDAUTHOR_DESC', 'Here you can define the relative URL structure beginning from your base URL to where RSS-feeds from specific users may be viewed. You can use the variables %id%, %realname%, %username%, %email% and any other characters.');
+@define('INSTALL_PERMALINK_FEEDAUTHOR', 'Permalink RSS-Feed Author URL structure');
index a10cfdcc6845412f4ed95d996270d1375c093537..ae48403b0bb0c14208ff572c6f82d4126796fb19 100644 (file)
 @define('USERCONF_CHECK_PASSWORD_DESC', 'If you change the password in the field above, you need to enter the current user password into this field.');
 @define('USERCONF_CHECK_PASSWORD_ERROR', 'You did not specify the right old password, and are not authorized to change the new password. Your settings were not saved.');
 @define('ERROR_XSRF', 'Your browser did not sent a valid HTTP-Referrer string. This may have either been caused by a misconfigured browser/proxy or by a Cross Site Request Forgery (XSRF) aimed at you. The action you requested could not be completed.');
+@define('INSTALL_PERMALINK_FEEDAUTHOR_DESC', 'Here you can define the relative URL structure beginning from your base URL to where RSS-feeds from specific users may be viewed. You can use the variables %id%, %realname%, %username%, %email% and any other characters.');
+@define('INSTALL_PERMALINK_FEEDAUTHOR', 'Permalink RSS-Feed Author URL structure');
index 306671fb269d4d42f6892dbd6e62c5f25e14cc70..c9ff2ad105474ebc318d86b38b6130de57343823 100644 (file)
 @define('USERCONF_CHECK_PASSWORD_DESC', 'If you change the password in the field above, you need to enter the current user password into this field.');
 @define('USERCONF_CHECK_PASSWORD_ERROR', 'You did not specify the right old password, and are not authorized to change the new password. Your settings were not saved.');
 @define('ERROR_XSRF', 'Your browser did not sent a valid HTTP-Referrer string. This may have either been caused by a misconfigured browser/proxy or by a Cross Site Request Forgery (XSRF) aimed at you. The action you requested could not be completed.');
+@define('INSTALL_PERMALINK_FEEDAUTHOR_DESC', 'Here you can define the relative URL structure beginning from your base URL to where RSS-feeds from specific users may be viewed. You can use the variables %id%, %realname%, %username%, %email% and any other characters.');
+@define('INSTALL_PERMALINK_FEEDAUTHOR', 'Permalink RSS-Feed Author URL structure');
index 56e36e3747abf194762909c2f4a07c6ad03584c8..3284cb2457e682d10e006e209ac4f8d4e32d0e89 100644 (file)
 @define('USERCONF_CHECK_PASSWORD_DESC', 'If you change the password in the field above, you need to enter the current user password into this field.');
 @define('USERCONF_CHECK_PASSWORD_ERROR', 'You did not specify the right old password, and are not authorized to change the new password. Your settings were not saved.');
 @define('ERROR_XSRF', 'Your browser did not sent a valid HTTP-Referrer string. This may have either been caused by a misconfigured browser/proxy or by a Cross Site Request Forgery (XSRF) aimed at you. The action you requested could not be completed.');
+@define('INSTALL_PERMALINK_FEEDAUTHOR_DESC', 'Here you can define the relative URL structure beginning from your base URL to where RSS-feeds from specific users may be viewed. You can use the variables %id%, %realname%, %username%, %email% and any other characters.');
+@define('INSTALL_PERMALINK_FEEDAUTHOR', 'Permalink RSS-Feed Author URL structure');
diff --git a/rss.php b/rss.php
index 703edacfefc643b9f23990e29667d5bedb4580ef..fe2a4ef6b63d1a3a108a649f9069b4e9850c0af5 100644 (file)
--- a/rss.php
+++ b/rss.php
@@ -20,6 +20,10 @@ if (isset($_GET['category'])) {
     $serendipity['GET']['category'] = $_GET['category'];
 }
 
+if (isset($_GET['viewAuthor'])) {
+    $serendipity['GET']['viewAuthor'] = $_GET['viewAuthor'];
+}
+
 if (!isset($_GET['type'])) {
     $_GET['type'] = 'content';
 }
@@ -31,7 +35,7 @@ if (!isset($_GET['nocache'])) {
         break;
     case 'content':
     default:
-            $latest_entry = serendipity_fetchEntries(null, false, 1, false, false, 'last_modified DESC', '', false, true);
+        $latest_entry = serendipity_fetchEntries(null, false, 1, false, false, 'last_modified DESC', '', false, true);
         break;
     }
 
@@ -86,6 +90,9 @@ default:
 if (!empty($serendipity['GET']['category'])) {
     $cInfo       = serendipity_fetchCategoryInfo((int)$serendipity['GET']['category']);
     $title       = serendipity_utf8_encode(htmlspecialchars($title . ' - '. $cInfo['category_name']));
+} elseif (!empty($serendipity['GET']['viewAuthor'])) {
+    list($aInfo) = serendipity_fetchAuthor((int)$serendipity['GET']['viewAuthor']);
+    $title       = serendipity_utf8_encode(htmlspecialchars($aInfo['realname'] . ' - '. $title ));
 } else {
     $title       = serendipity_utf8_encode(htmlspecialchars($title));
 }