summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--cdm.css8
-rw-r--r--classes/feeds.php22
-rw-r--r--config.php-dist2
-rw-r--r--include/functions.php28
-rw-r--r--include/localized_schema.php2
-rw-r--r--index.php27
-rw-r--r--js/functions.js62
-rw-r--r--js/viewfeed.js34
-rw-r--r--lib/position.js31
-rw-r--r--locale/ca_CA/LC_MESSAGES/messages.mobin26266 -> 26266 bytes
-rw-r--r--locale/ca_CA/LC_MESSAGES/messages.po96
-rwxr-xr-xlocale/de_DE/LC_MESSAGES/messages.mobin53733 -> 58698 bytes
-rwxr-xr-xlocale/de_DE/LC_MESSAGES/messages.po1427
-rw-r--r--locale/es_ES/LC_MESSAGES/messages.mobin44623 -> 44623 bytes
-rw-r--r--locale/es_ES/LC_MESSAGES/messages.po96
-rw-r--r--locale/fr_FR/LC_MESSAGES/messages.mobin48327 -> 48327 bytes
-rw-r--r--locale/fr_FR/LC_MESSAGES/messages.po96
-rw-r--r--locale/hu_HU/LC_MESSAGES/messages.mobin54643 -> 54643 bytes
-rw-r--r--locale/hu_HU/LC_MESSAGES/messages.po96
-rw-r--r--locale/it_IT/LC_MESSAGES/messages.mobin42709 -> 42709 bytes
-rw-r--r--locale/it_IT/LC_MESSAGES/messages.po96
-rw-r--r--locale/ja_JP/LC_MESSAGES/messages.mobin24150 -> 24150 bytes
-rw-r--r--locale/ja_JP/LC_MESSAGES/messages.po96
-rw-r--r--locale/lv_LV/LC_MESSAGES/messages.mobin52919 -> 52919 bytes
-rw-r--r--locale/lv_LV/LC_MESSAGES/messages.po96
-rw-r--r--locale/nb_NO/LC_MESSAGES/messages.mobin24815 -> 24815 bytes
-rw-r--r--locale/nb_NO/LC_MESSAGES/messages.po96
-rw-r--r--locale/pl_PL/LC_MESSAGES/messages.mobin50042 -> 50042 bytes
-rw-r--r--locale/pl_PL/LC_MESSAGES/messages.po96
-rw-r--r--locale/pt_BR/LC_MESSAGES/messages.mobin6790 -> 6790 bytes
-rw-r--r--locale/pt_BR/LC_MESSAGES/messages.po96
-rw-r--r--locale/ru_RU/LC_MESSAGES/messages.mobin42371 -> 42371 bytes
-rw-r--r--locale/ru_RU/LC_MESSAGES/messages.po96
-rw-r--r--locale/zh_CN/LC_MESSAGES/messages.mobin40105 -> 40105 bytes
-rw-r--r--locale/zh_CN/LC_MESSAGES/messages.po96
-rw-r--r--messages.pot96
-rw-r--r--plugins/af_unburn/init.php11
-rw-r--r--plugins/digest/digest.js2
-rw-r--r--plugins/digest/digest_body.php22
-rw-r--r--prefs.php25
-rw-r--r--register.php6
-rw-r--r--tt-rss.css12
42 files changed, 1566 insertions, 1403 deletions
diff --git a/cdm.css b/cdm.css
index 7d02bc645..b793ee058 100644
--- a/cdm.css
+++ b/cdm.css
@@ -45,10 +45,6 @@ div.cdmHeader img, div.cdmFooter img {
margin : 0px 2px 0px 2px;
}
-div.cdmContent, div.cdmContentInner * {
- font-weight : normal;
-}
-
div.cdmContent a {
color : #4684ff;
}
@@ -155,3 +151,7 @@ div.cdmHeader div.hlFeed, div.cdmHeader div.hlFeed a {
div.cdmContentInner p {
max-width : 650px;
}
+
+.Unread div.cdmHeader {
+ font-weight : bold;
+}
diff --git a/classes/feeds.php b/classes/feeds.php
index c464303c1..0568eb985 100644
--- a/classes/feeds.php
+++ b/classes/feeds.php
@@ -263,6 +263,8 @@ class Feeds extends Handler_Protected {
if ($_REQUEST["debug"]) $timing_info = print_checkpoint("PS", $timing_info);
+ $expand_cdm = get_pref($this->link, 'CDM_EXPANDED');
+
while ($line = db_fetch_assoc($result)) {
$class = ($lnum % 2) ? "even" : "odd";
@@ -512,8 +514,6 @@ class Feeds extends Handler_Protected {
}
}
- $expand_cdm = get_pref($this->link, 'CDM_EXPANDED');
-
$mouseover_attrs = "onmouseover='postMouseIn($id)'
onmouseout='postMouseOut($id)'";
@@ -627,16 +627,17 @@ class Feeds extends Handler_Protected {
}
$reply['content'] .= "<span id=\"CWRAP-$id\">";
- $reply['content'] .= $line["content"];
- $reply['content'] .= "</span>";
-/* $tmp_result = db_query($this->link, "SELECT always_display_enclosures FROM
- ttrss_feeds WHERE id = ".
- (($line['feed_id'] == null) ? $line['orig_feed_id'] :
- $line['feed_id'])." AND owner_uid = ".$_SESSION["uid"]);
+ if (!$expand_cdm) {
+ $reply['content'] .= "<span id=\"CENCW-$id\">";
+ $reply['content'] .= htmlspecialchars($line["content"]);
+ $reply['content'] .= "</span.";
+
+ } else {
+ $reply['content'] .= $line["content"];
+ }
- $always_display_enclosures = sql_bool_to_bool(db_fetch_result($tmp_result,
- 0, "always_display_enclosures")); */
+ $reply['content'] .= "</span>";
$always_display_enclosures = sql_bool_to_bool($line["always_display_enclosures"]);
@@ -945,6 +946,5 @@ class Feeds extends Handler_Protected {
return $reply;
}
-
}
?>
diff --git a/config.php-dist b/config.php-dist
index a742cf9af..4414e77d3 100644
--- a/config.php-dist
+++ b/config.php-dist
@@ -128,6 +128,8 @@
define('SESSION_COOKIE_LIFETIME', 86400*30);
// Default lifetime of a session (e.g. login) cookie. In seconds,
// 0 means cookie will be deleted when browser closes.
+ // Setting this to zero will affect several user preferences
+ // like widescreen mode not saving.
define('SESSION_EXPIRE_TIME', 86400*30);
// Hard expiration limit for sessions. Should be
diff --git a/include/functions.php b/include/functions.php
index 62699e175..d9a3a5963 100644
--- a/include/functions.php
+++ b/include/functions.php
@@ -295,7 +295,7 @@
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout ? $timeout : 15);
curl_setopt($ch, CURLOPT_TIMEOUT, $timeout ? $timeout : 45);
- //curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
+ curl_setopt($ch, CURLOPT_FOLLOWLOCATION, !ini_get("safe_mode"));
curl_setopt($ch, CURLOPT_MAXREDIRS, 20);
curl_setopt($ch, CURLOPT_BINARYTRANSFER, true);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
@@ -2609,7 +2609,8 @@
}
if ($entry->nodeName == 'img') {
- if (get_pref($link, "STRIP_IMAGES", $owner) || $force_remove_images) {
+ if (($owner && get_pref($link, "STRIP_IMAGES", $owner)) ||
+ $force_remove_images) {
$p = $doc->createElement('p');
@@ -3633,7 +3634,7 @@
array_push($entries, $entry);
}
- if (!get_pref($link, "STRIP_IMAGES")) {
+ if ($_SESSION['uid'] && !get_pref($link, "STRIP_IMAGES")) {
if ($always_display_enclosures ||
!preg_match("/<img/i", $article_content)) {
@@ -4069,4 +4070,25 @@
return $rv;
}
+ function stylesheet_tag($filename) {
+ $timestamp = filemtime($filename);
+
+ echo "<link rel=\"stylesheet\" type=\"text/css\" href=\"$filename?$timestamp\"/>\n";
+ }
+
+ function javascript_tag($filename) {
+ $query = "";
+
+ if (!(strpos($filename, "?") === FALSE)) {
+ $query = substr($filename, strpos($filename, "?")+1);
+ $filename = substr($filename, 0, strpos($filename, "?"));
+ }
+
+ $timestamp = filemtime($filename);
+
+ if ($query) $timestamp .= "&$query";
+
+ echo "<script type=\"text/javascript\" charset=\"utf-8\" src=\"$filename?$timestamp\"></script>\n";
+ }
+
?>
diff --git a/include/localized_schema.php b/include/localized_schema.php
index 71436d96a..2f5903dc7 100644
--- a/include/localized_schema.php
+++ b/include/localized_schema.php
@@ -1,4 +1,4 @@
-<?php # This file has been generated at: Wed Mar 20 10:24:45 MSK 2013
+<?php # This file has been generated at: Wed Mar 20 15:53:19 MSK 2013
__("Title");
__("Title or Content");
diff --git a/index.php b/index.php
index 840959a18..8cb73777c 100644
--- a/index.php
+++ b/index.php
@@ -44,8 +44,6 @@
login_sequence($link);
- $dt_add = time();
-
no_cache_incantation();
header('Content-Type: text/html; charset=utf-8');
@@ -56,9 +54,10 @@
<html>
<head>
<title><?php echo PAGE_TITLE ?></title>
- <link rel="stylesheet" type="text/css" href="lib/dijit/themes/claro/claro.css"/>
- <link rel="stylesheet" type="text/css" href="tt-rss.css?<?php echo $dt_add ?>"/>
- <link rel="stylesheet" type="text/css" href="cdm.css?<?php echo $dt_add ?>"/>
+
+ <?php echo stylesheet_tag("lib/dijit/themes/claro/claro.css"); ?>
+ <?php echo stylesheet_tag("tt-rss.css"); ?>
+ <?php echo stylesheet_tag("cdm.css"); ?>
<?php print_user_stylesheet($link) ?>
@@ -74,14 +73,18 @@
<link rel="shortcut icon" type="image/png" href="images/favicon.png"/>
- <script type="text/javascript" src="lib/prototype.js"></script>
- <script type="text/javascript" src="lib/scriptaculous/scriptaculous.js?load=effects,dragdrop,controls"></script>
- <script type="text/javascript" src="lib/dojo/dojo.js"></script>
- <script type="text/javascript" src="lib/dijit/dijit.js"></script>
- <script type="text/javascript" src="lib/dojo/tt-rss-layer.js"></script>
+ <?php
+ foreach (array("lib/prototype.js",
+ "lib/scriptaculous/scriptaculous.js?load=effects,dragdrop,controls",
+ "lib/dojo/dojo.js",
+ "lib/dijit/dijit.js",
+ "lib/dojo/tt-rss-layer.js",
+ "localized_js.php",
+ "errors.php?mode=js") as $jsfile) {
+
+ echo javascript_tag($jsfile);
- <script type="text/javascript" charset="utf-8" src="localized_js.php?<?php echo $dt_add ?>"></script>
- <script type="text/javascript" charset="utf-8" src="errors.php?mode=js"></script>
+ } ?>
<script type="text/javascript">
<?php
diff --git a/js/functions.js b/js/functions.js
index be78294df..d7e10c652 100644
--- a/js/functions.js
+++ b/js/functions.js
@@ -1913,3 +1913,65 @@ function helpDialog(topic) {
}
}
+function htmlspecialchars_decode (string, quote_style) {
+ // http://kevin.vanzonneveld.net
+ // + original by: Mirek Slugen
+ // + improved by: Kevin van Zonneveld (http://kevin.vanzonneveld.net)
+ // + bugfixed by: Mateusz "loonquawl" Zalega
+ // + input by: ReverseSyntax
+ // + input by: Slawomir Kaniecki
+ // + input by: Scott Cariss
+ // + input by: Francois
+ // + bugfixed by: Onno Marsman
+ // + revised by: Kevin van Zonneveld (http://kevin.vanzonneveld.net)
+ // + bugfixed by: Brett Zamir (http://brett-zamir.me)
+ // + input by: Ratheous
+ // + input by: Mailfaker (http://www.weedem.fr/)
+ // + reimplemented by: Brett Zamir (http://brett-zamir.me)
+ // + bugfixed by: Brett Zamir (http://brett-zamir.me)
+ // * example 1: htmlspecialchars_decode("<p>this -&gt; &quot;</p>", 'ENT_NOQUOTES');
+ // * returns 1: '<p>this -> &quot;</p>'
+ // * example 2: htmlspecialchars_decode("&amp;quot;");
+ // * returns 2: '&quot;'
+ var optTemp = 0,
+ i = 0,
+ noquotes = false;
+ if (typeof quote_style === 'undefined') {
+ quote_style = 2;
+ }
+ string = string.toString().replace(/&lt;/g, '<').replace(/&gt;/g, '>');
+ var OPTS = {
+ 'ENT_NOQUOTES': 0,
+ 'ENT_HTML_QUOTE_SINGLE': 1,
+ 'ENT_HTML_QUOTE_DOUBLE': 2,
+ 'ENT_COMPAT': 2,
+ 'ENT_QUOTES': 3,
+ 'ENT_IGNORE': 4
+ };
+ if (quote_style === 0) {
+ noquotes = true;
+ }
+ if (typeof quote_style !== 'number') { // Allow for a single string or an array of string flags
+ quote_style = [].concat(quote_style);
+ for (i = 0; i < quote_style.length; i++) {
+ // Resolve string input to bitwise e.g. 'PATHINFO_EXTENSION' becomes 4
+ if (OPTS[quote_style[i]] === 0) {
+ noquotes = true;
+ } else if (OPTS[quote_style[i]]) {
+ optTemp = optTemp | OPTS[quote_style[i]];
+ }
+ }
+ quote_style = optTemp;
+ }
+ if (quote_style & OPTS.ENT_HTML_QUOTE_SINGLE) {
+ string = string.replace(/&#0*39;/g, "'"); // PHP doesn't currently escape if more than one 0, but it should
+ // string = string.replace(/&apos;|&#x0*27;/g, "'"); // This would also be useful here, but not a part of PHP
+ }
+ if (!noquotes) {
+ string = string.replace(/&quot;/g, '"');
+ }
+ // Put this in last place to avoid escape being double-decoded
+ string = string.replace(/&amp;/g, '&');
+
+ return string;
+}
diff --git a/js/viewfeed.js b/js/viewfeed.js
index 2555215ce..4c6d90366 100644
--- a/js/viewfeed.js
+++ b/js/viewfeed.js
@@ -559,16 +559,23 @@ function moveToPost(mode, noscroll) {
var prev_article = $("RROW-" + prev_id);
var ctr = $("headlines-frame");
- if (!noscroll && article && article.offsetTop < ctr.scrollTop) {
- scrollArticle(-ctr.offsetHeight/3);
- } else if (!noscroll && prev_article &&
- prev_article.offsetTop < ctr.scrollTop) {
+ if (!getInitParam("cdm_expanded")) {
cdmExpandArticle(prev_id);
- scrollArticle(-ctr.offsetHeight/3);
- } else if (prev_id) {
- cdmExpandArticle(prev_id);
- cdmScrollToArticleId(prev_id, noscroll);
+ cdmScrollToArticleId(prev_id, true);
+ } else {
+
+ if (!noscroll && article && article.offsetTop < ctr.scrollTop) {
+ scrollArticle(-ctr.offsetHeight/3);
+ } else if (!noscroll && prev_article &&
+ prev_article.offsetTop < ctr.scrollTop) {
+ cdmExpandArticle(prev_id);
+ scrollArticle(-ctr.offsetHeight/3);
+ } else if (prev_id) {
+ cdmExpandArticle(prev_id);
+ cdmScrollToArticleId(prev_id, noscroll);
+ }
}
+
} else if (prev_id) {
correctHeadlinesOffset(prev_id);
view(prev_id, getActiveFeedId());
@@ -1366,12 +1373,23 @@ function cdmExpandArticle(id) {
setActiveArticleId(id);
+ if (!getInitParam("cdm_expanded")) {
+ cdmScrollToArticleId(id, true);
+ }
+
elem = $("CICD-" + id);
var collapse = $$("div#RROW-" + id +
" span[class='collapseBtn']")[0];
+ var cencw = $("CENCW-" + id);
+
if (!Element.visible(elem)) {
+ if (cencw) {
+ cencw.innerHTML = htmlspecialchars_decode(cencw.innerHTML);
+ cencw.setAttribute('id', '');
+ }
+
Element.show(elem);
Element.hide("CEXC-" + id);
Element.show(collapse);
diff --git a/lib/position.js b/lib/position.js
deleted file mode 100644
index 43ea85f76..000000000
--- a/lib/position.js
+++ /dev/null
@@ -1,31 +0,0 @@
-/* http://textsnippets.com/posts/show/835 */
-
-Position.GetWindowSize = function(w) {
- w = w ? w : window;
- var width = w.innerWidth || (w.document.documentElement.clientWidth || w.document.body.clientWidth);
- var height = w.innerHeight || (w.document.documentElement.clientHeight || w.document.body.clientHeight);
- return [width, height];
-};
-
-/* http://textsnippets.com/posts/show/836 */
-
-Position.Center = function(element, parent) {
- var w, h, pw, ph;
- var d = Element.getDimensions(element);
- w = d.width;
- h = d.height;
- Position.prepare();
- if (!parent) {
- var ws = Position.GetWindowSize();
- pw = ws[0];
- ph = ws[1];
- } else {
- pw = parent.offsetWidth;
- ph = parent.offsetHeight;
- }
- element.style.top = (ph/2) - (h/2) - Position.deltaY + "px";
- element.style.left = (pw/2) - (w/2) - Position.deltaX + "px";
-};
-
-
-
diff --git a/locale/ca_CA/LC_MESSAGES/messages.mo b/locale/ca_CA/LC_MESSAGES/messages.mo
index 540235508..5dd9cb6bd 100644
--- a/locale/ca_CA/LC_MESSAGES/messages.mo
+++ b/locale/ca_CA/LC_MESSAGES/messages.mo
Binary files differ
diff --git a/locale/ca_CA/LC_MESSAGES/messages.po b/locale/ca_CA/LC_MESSAGES/messages.po
index f11bfc081..dce525ae8 100644
--- a/locale/ca_CA/LC_MESSAGES/messages.po
+++ b/locale/ca_CA/LC_MESSAGES/messages.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: messages\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-03-20 10:24+0400\n"
+"POT-Creation-Date: 2013-03-20 15:53+0400\n"
"PO-Revision-Date: 2009-11-19 09:40+0100\n"
"Last-Translator: Alfred Galitó <[email protected]>\n"
"Language-Team: Català <[email protected]>\n"
@@ -262,7 +262,7 @@ msgstr ""
#: index.php:117 index.php:147 index.php:252 prefs.php:79
#: classes/backend.php:5 classes/pref/labels.php:296
#: classes/pref/filters.php:609 classes/pref/feeds.php:1296
-#: plugins/digest/digest_body.php:45 js/viewfeed.js:1174
+#: plugins/digest/digest_body.php:45 js/viewfeed.js:1181
msgid "Loading, please wait..."
msgstr "S'està obrint, preneu paciència..."
@@ -338,7 +338,7 @@ msgstr "Actualitza"
#: index.php:191 index.php:221 include/functions.php:1906
#: include/localized_schema.php:10 classes/feeds.php:111 classes/feeds.php:136
-#: classes/feeds.php:408 js/FeedTree.js:128 js/FeedTree.js:156
+#: classes/feeds.php:410 js/FeedTree.js:128 js/FeedTree.js:156
#: plugins/digest/digest.js:630
msgid "Mark as read"
msgstr "Marca'l com a llegit"
@@ -713,12 +713,12 @@ msgstr "Publica l'article"
msgid "Open in new window"
msgstr "Obre l'article en una finestra nova"
-#: include/functions.php:1886 js/viewfeed.js:1798
+#: include/functions.php:1886 js/viewfeed.js:1818
#, fuzzy
msgid "Mark below as read"
msgstr "Marca'l com a llegit"
-#: include/functions.php:1887 js/viewfeed.js:1792
+#: include/functions.php:1887 js/viewfeed.js:1812
#, fuzzy
msgid "Mark above as read"
msgstr "Marca'l com a llegit"
@@ -871,42 +871,42 @@ msgstr "Mostra el diàleg de cerca"
msgid "Search results: %s"
msgstr "Resultats de la cerca"
-#: include/functions.php:2892 js/viewfeed.js:1885
+#: include/functions.php:2893 js/viewfeed.js:1905
#, fuzzy
msgid "Click to play"
msgstr "Feu clic per editar"
-#: include/functions.php:2893 js/viewfeed.js:1884
+#: include/functions.php:2894 js/viewfeed.js:1904
msgid "Play"
msgstr ""
-#: include/functions.php:3014
+#: include/functions.php:3015
msgid " - "
msgstr " - "
-#: include/functions.php:3036 include/functions.php:3353 classes/rpc.php:360
+#: include/functions.php:3037 include/functions.php:3354 classes/rpc.php:360
msgid "no tags"
msgstr "sense etiqueta"
-#: include/functions.php:3046 classes/feeds.php:653
+#: include/functions.php:3047 classes/feeds.php:656
msgid "Edit tags for this article"
msgstr "Edita les etiquetes d'aquest article"
-#: include/functions.php:3075 classes/feeds.php:608
+#: include/functions.php:3076 classes/feeds.php:610
#, fuzzy
msgid "Originally from:"
msgstr "Mostra el contingut original de l'article"
-#: include/functions.php:3088 classes/feeds.php:621 classes/pref/feeds.php:507
+#: include/functions.php:3089 classes/feeds.php:623 classes/pref/feeds.php:507
#, fuzzy
msgid "Feed URL"
msgstr "Canal"
-#: include/functions.php:3117
+#: include/functions.php:3118
msgid "Related"
msgstr ""
-#: include/functions.php:3144 classes/dlg.php:43 classes/dlg.php:162
+#: include/functions.php:3145 classes/dlg.php:43 classes/dlg.php:162
#: classes/dlg.php:185 classes/dlg.php:222 classes/dlg.php:508
#: classes/dlg.php:543 classes/dlg.php:574 classes/dlg.php:608
#: classes/dlg.php:620 classes/backend.php:105 classes/pref/users.php:106
@@ -917,16 +917,16 @@ msgstr ""
msgid "Close this window"
msgstr "Tanca la finestra"
-#: include/functions.php:3378
+#: include/functions.php:3379
#, fuzzy
msgid "(edit note)"
msgstr "edita la nota"
-#: include/functions.php:3611
+#: include/functions.php:3612
msgid "unknown type"
msgstr "tipus desconegut"
-#: include/functions.php:3661
+#: include/functions.php:3662
#, fuzzy
msgid "Attachments"
msgstr "Adjuncions:"
@@ -965,7 +965,7 @@ msgstr "Publica l'article"
msgid "Assign tags"
msgstr "Assigna etiquetes"
-#: include/localized_schema.php:14 js/viewfeed.js:1849
+#: include/localized_schema.php:14 js/viewfeed.js:1869
msgid "Assign label"
msgstr "Assigna-li l'etiqueta"
@@ -1689,32 +1689,32 @@ msgstr "Marca l'article"
msgid "Feed:"
msgstr "Flux&nbsp;:"
-#: classes/feeds.php:201 classes/feeds.php:798
+#: classes/feeds.php:201 classes/feeds.php:801
msgid "Feed not found."
msgstr "No s'ha trobat el canal."
-#: classes/feeds.php:498
+#: classes/feeds.php:500
msgid "mark as read"
msgstr "Marca'l com a llegit"
-#: classes/feeds.php:553
+#: classes/feeds.php:555
#, fuzzy
msgid "Collapse article"
msgstr "Buida els articles"
-#: classes/feeds.php:699
+#: classes/feeds.php:702
msgid "No unread articles found to display."
msgstr "No es poden mostrar els articles no llegits perquè no n'hi ha."
-#: classes/feeds.php:702
+#: classes/feeds.php:705
msgid "No updated articles found to display."
msgstr "No hi ha cap article actualitzat."
-#: classes/feeds.php:705
+#: classes/feeds.php:708
msgid "No starred articles found to display."
msgstr "No hi ha articles marcats per mostrar."
-#: classes/feeds.php:709
+#: classes/feeds.php:712
msgid ""
"No articles found to display. You can assign articles to labels manually "
"(see the Actions menu above) or use a filter."
@@ -1722,22 +1722,22 @@ msgstr ""
"No s'han trobat articles per a mostrar. Podeu assignar articles a etiquetes "
"manualment (mireu el menú Accions) o utilitzeu un filtre."
-#: classes/feeds.php:711
+#: classes/feeds.php:714
msgid "No articles found to display."
msgstr "No s'han trobat articles per a mostrar."
-#: classes/feeds.php:726 classes/feeds.php:907
+#: classes/feeds.php:729 classes/feeds.php:910
#, fuzzy, php-format
msgid "Feeds last updated at %s"
msgstr "Erreurs de mise à jour"
-#: classes/feeds.php:736 classes/feeds.php:917
+#: classes/feeds.php:739 classes/feeds.php:920
msgid "Some feeds have update errors (click for details)"
msgstr ""
"S'han detectat errors en alguns canals (feu clic aquí per veure'n els "
"detalls)"
-#: classes/feeds.php:897
+#: classes/feeds.php:900
msgid "No feed selected."
msgstr "No heu seleccionat cap canal."
@@ -3246,92 +3246,92 @@ msgstr "Marca l'article"
msgid "Unpublish article"
msgstr "Deixa de publicar l'article"
-#: js/viewfeed.js:674 js/viewfeed.js:702 js/viewfeed.js:729 js/viewfeed.js:791
-#: js/viewfeed.js:823 js/viewfeed.js:960 js/viewfeed.js:1003
-#: js/viewfeed.js:1053 js/viewfeed.js:1967 plugins/mailto/init.js:7
+#: js/viewfeed.js:681 js/viewfeed.js:709 js/viewfeed.js:736 js/viewfeed.js:798
+#: js/viewfeed.js:830 js/viewfeed.js:967 js/viewfeed.js:1010
+#: js/viewfeed.js:1060 js/viewfeed.js:1987 plugins/mailto/init.js:7
#: plugins/mail/mail.js:7
msgid "No articles are selected."
msgstr "No hi ha cap article seleccionat."
-#: js/viewfeed.js:940
+#: js/viewfeed.js:947
msgid "Mark all visible articles in %s as read?"
msgstr ""
"Esteu segur que voleu marcar tots els articles visibles de %s com a llegits ?"
-#: js/viewfeed.js:968
+#: js/viewfeed.js:975
#, fuzzy
msgid "Delete %d selected articles in %s?"
msgstr ""
"Esteu segur que voleu marcar els %d articles seleccionats de %s com a "
"llegits?"
-#: js/viewfeed.js:970
+#: js/viewfeed.js:977
#, fuzzy
msgid "Delete %d selected articles?"
msgstr ""
"Esteu segur que voleu eliminar els articles seleccionats de l'etiqueta?"
-#: js/viewfeed.js:1012
+#: js/viewfeed.js:1019
#, fuzzy
msgid "Archive %d selected articles in %s?"
msgstr ""
"Esteu segur que voleu marcar els %d articles seleccionats de %s com a "
"llegits?"
-#: js/viewfeed.js:1015
+#: js/viewfeed.js:1022
#, fuzzy
msgid "Move %d archived articles back?"
msgstr "Articles marcats"
-#: js/viewfeed.js:1059
+#: js/viewfeed.js:1066
msgid "Mark %d selected articles in %s as read?"
msgstr ""
"Esteu segur que voleu marcar els %d articles seleccionats de %s com a "
"llegits?"
-#: js/viewfeed.js:1083
+#: js/viewfeed.js:1090
#, fuzzy
msgid "Edit article Tags"
msgstr "Edita les etiquetes"
-#: js/viewfeed.js:1252
+#: js/viewfeed.js:1259
msgid "No article is selected."
msgstr "No hi ha cap article seleccionat."
-#: js/viewfeed.js:1287
+#: js/viewfeed.js:1294
msgid "No articles found to mark"
msgstr "No s'han trobat articles per a marcar."
-#: js/viewfeed.js:1289
+#: js/viewfeed.js:1296
msgid "Mark %d article(s) as read?"
msgstr "Esteu segur que voleu marcar %d article(s) com a llegit(s) ?"
-#: js/viewfeed.js:1784
+#: js/viewfeed.js:1804
#, fuzzy
msgid "Open original article"
msgstr "Mostra el contingut original de l'article"
-#: js/viewfeed.js:1854
+#: js/viewfeed.js:1874
#, fuzzy
msgid "Remove label"
msgstr "Esteu segur que voleu suprimir les etiquetes seleccionades?"
-#: js/viewfeed.js:1878
+#: js/viewfeed.js:1898
#, fuzzy
msgid "Playing..."
msgstr "S'està carregant la llista de canals..."
-#: js/viewfeed.js:1879
+#: js/viewfeed.js:1899
#, fuzzy
msgid "Click to pause"
msgstr "Feu clic per editar"
-#: js/viewfeed.js:1936
+#: js/viewfeed.js:1956
#, fuzzy
msgid "Please enter new score for selected articles:"
msgstr "Si us plau, escriviu una nota per aquest article:"
-#: js/viewfeed.js:1978
+#: js/viewfeed.js:1998
#, fuzzy
msgid "Please enter new score for this article:"
msgstr "Si us plau, escriviu una nota per aquest article:"
diff --git a/locale/de_DE/LC_MESSAGES/messages.mo b/locale/de_DE/LC_MESSAGES/messages.mo
index 5102b9b65..aee7b7772 100755
--- a/locale/de_DE/LC_MESSAGES/messages.mo
+++ b/locale/de_DE/LC_MESSAGES/messages.mo
Binary files differ
diff --git a/locale/de_DE/LC_MESSAGES/messages.po b/locale/de_DE/LC_MESSAGES/messages.po
index 01092860c..57a03ced4 100755
--- a/locale/de_DE/LC_MESSAGES/messages.po
+++ b/locale/de_DE/LC_MESSAGES/messages.po
@@ -11,16 +11,16 @@ msgid ""
msgstr ""
"Project-Id-Version: Tiny Tiny RSS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-03-20 10:24+0400\n"
-"PO-Revision-Date: 2013-03-21 18:57+0100\n"
-"Last-Translator: Walter Weiss <[email protected]>\n"
-"Language-Team: German (http://www.transifex.net/projects/p/tt-rss/language/"
-"de/)\n"
+"POT-Creation-Date: 2013-03-20 15:53+0400\n"
+"PO-Revision-Date: 2013-03-20 16:42+0100\n"
+"Last-Translator: Joschasa <[email protected]>\n"
+"Language-Team: \n"
"Language: de\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1)\n"
+"X-Poedit-Language: German\n"
#: backend.php:71
msgid "Use default"
@@ -54,39 +54,48 @@ msgstr "Nach 3 Monaten"
msgid "Default interval"
msgstr "Standard-Intervall"
-#: backend.php:81 backend.php:91
+#: backend.php:81
+#: backend.php:91
msgid "Disable updates"
msgstr "Nie"
-#: backend.php:82 backend.php:92
+#: backend.php:82
+#: backend.php:92
msgid "Each 15 minutes"
msgstr "Alle 15 Minuten"
-#: backend.php:83 backend.php:93
+#: backend.php:83
+#: backend.php:93
msgid "Each 30 minutes"
msgstr "Alle 30 Minuten"
-#: backend.php:84 backend.php:94
+#: backend.php:84
+#: backend.php:94
msgid "Hourly"
msgstr "Stündlich"
-#: backend.php:85 backend.php:95
+#: backend.php:85
+#: backend.php:95
msgid "Each 4 hours"
msgstr "Alle 4 Stunden"
-#: backend.php:86 backend.php:96
+#: backend.php:86
+#: backend.php:96
msgid "Each 12 hours"
msgstr "Alle 12 Stunden"
-#: backend.php:87 backend.php:97
+#: backend.php:87
+#: backend.php:97
msgid "Daily"
msgstr "Täglich"
-#: backend.php:88 backend.php:98
+#: backend.php:88
+#: backend.php:98
msgid "Weekly"
msgstr "Wöchentlich"
-#: backend.php:101 classes/pref/users.php:139
+#: backend.php:101
+#: classes/pref/users.php:139
msgid "User"
msgstr "Benutzer"
@@ -100,7 +109,7 @@ msgstr "Administrator"
#: db-updater.php:19
msgid "Your access level is insufficient to run this script."
-msgstr "Sie haben nicht die benötigten Rechte um dieses Skript auszuführen."
+msgstr "Sie haben nicht die benötigten Rechte, um dieses Skript auszuführen."
#: db-updater.php:44
msgid "Database Updater"
@@ -122,10 +131,19 @@ msgstr ", gefunden: "
msgid "Tiny Tiny RSS database is up to date."
msgstr "Tiny Tiny RSS Datenbank ist auf dem neusten Stand."
-#: db-updater.php:94 db-updater.php:163 db-updater.php:176 register.php:194
-#: register.php:239 register.php:252 register.php:267 register.php:286
-#: register.php:371 register.php:381 register.php:393
-#: classes/handler/public.php:611 classes/handler/public.php:699
+#: db-updater.php:94
+#: db-updater.php:163
+#: db-updater.php:176
+#: register.php:194
+#: register.php:239
+#: register.php:252
+#: register.php:267
+#: register.php:286
+#: register.php:371
+#: register.php:381
+#: register.php:393
+#: classes/handler/public.php:611
+#: classes/handler/public.php:699
msgid "Return to Tiny Tiny RSS"
msgstr "Zu Tiny Tiny RSS zurückkehren"
@@ -135,12 +153,8 @@ msgstr "Bitte sichern Sie Ihre Datenbank bevor Sie fortfahren."
#: db-updater.php:102
#, php-format
-msgid ""
-"Your Tiny Tiny RSS database needs update to the latest version (<b>%d</b> to "
-"<b>%d</b>)."
-msgstr ""
-"Ihre Tiny Tiny RSS Datenbank benötigt eine Aktualisierung auf die neuste "
-"Version (<b>%d</b> nach <b>%d</b>)."
+msgid "Your Tiny Tiny RSS database needs update to the latest version (<b>%d</b> to <b>%d</b>)."
+msgstr "Ihre Tiny Tiny RSS Datenbank benötigt eine Aktualisierung auf die neuste Version (<b>%d</b> nach <b>%d</b>)."
#: db-updater.php:116
msgid "Perform updates"
@@ -168,17 +182,17 @@ msgid "ERROR!"
msgstr "FEHLER!"
#: db-updater.php:158
-#, fuzzy, php-format
+#, php-format
msgid ""
"Finished. Performed <b>%d</b> update(s) up to schema\n"
"\t\t\tversion <b>%d</b>."
msgstr ""
"Beendet. <b>%d</b> Aktualisierung(en) auf Schema\n"
-"\t\tVersion <b>%d</b> durchgeführt."
+"\t\t\tVersion <b>%d</b> durchgeführt."
#: db-updater.php:168
msgid "Your database schema is from a newer version of Tiny Tiny RSS."
-msgstr "Ihr Datenbankschema ist von einer neueren Version von Tiny Tiny RSS."
+msgstr "Ihr Datenbankschema stammt von einer neueren Tiny Tiny RSS Version."
#: db-updater.php:170
#, php-format
@@ -186,28 +200,16 @@ msgid "Found schema version: <b>%d</b>, required: <b>%d</b>."
msgstr "Gefundene Schemaversion: <b>%d</b>, benötigt: <b>%d</b>."
#: db-updater.php:172
-msgid ""
-"Schema upgrade impossible. Please update Tiny Tiny RSS files to the newer "
-"version and continue."
-msgstr ""
-"Aktualisierung des Schemas nicht möglich. Bitte aktualisieren Sie die Tiny "
-"Tiny RSS Dateien auf die neuere Version und fahren Sie fort."
+msgid "Schema upgrade impossible. Please update Tiny Tiny RSS files to the newer version and continue."
+msgstr "Aktualisierung des Schemas nicht möglich. Bitte aktualisieren Sie die Tiny Tiny RSS Dateien auf die neuere Version und fahren Sie fort."
#: errors.php:9
-msgid ""
-"This program requires XmlHttpRequest to function properly. Your browser "
-"doesn't seem to support it."
-msgstr ""
-"Dieses Programm benötigt XmlHttpRequest um ordnungsgemäß zu funktionieren. "
-"Ihr Browser scheint dies nicht zu unterstützen."
+msgid "This program requires XmlHttpRequest to function properly. Your browser doesn't seem to support it."
+msgstr "Dieses Programm benötigt XmlHttpRequest um ordnungsgemäß zu funktionieren. Ihr Browser scheint dies nicht zu unterstützen."
#: errors.php:12
-msgid ""
-"This program requires cookies to function properly. Your browser doesn't "
-"seem to support them."
-msgstr ""
-"Dieses Programm benötigt Cookies um ordungsgemäß zu funktionieren. Ihr "
-"Browser scheint diese nicht zu unterstützen."
+msgid "This program requires cookies to function properly. Your browser doesn't seem to support them."
+msgstr "Dieses Programm benötigt Cookies um ordungsgemäß zu funktionieren. Ihr Browser scheint diese nicht zu unterstützen."
#: errors.php:15
msgid "Backend sanity check failed"
@@ -218,12 +220,8 @@ msgid "Frontend sanity check failed."
msgstr "Frontend Sicherheitsprüfung fehlgeschlagen."
#: errors.php:19
-msgid ""
-"Incorrect database schema version. &lt;a href='db-updater.php'&gt;Please "
-"update&lt;/a&gt;."
-msgstr ""
-"Falsche Version des Datenbankschemas. &lt;a href='update.php'&gt;Bitte "
-"aktualisieren&lt;/a&gt;."
+msgid "Incorrect database schema version. &lt;a href='db-updater.php'&gt;Please update&lt;/a&gt;."
+msgstr "Falsche Version des Datenbankschemas. &lt;a href='update.php'&gt;Bitte aktualisieren&lt;/a&gt;."
#: errors.php:21
msgid "Request not authorized."
@@ -234,50 +232,49 @@ msgid "No operation to perform."
msgstr "Keine Funktion ausgewählt."
#: errors.php:25
-msgid ""
-"Could not display feed: query failed. Please check label match syntax or "
-"local configuration."
-msgstr ""
-"Kann Feed nicht angezeigen: fehlgeschlagene Abfrage. Bitte überprüfen Sie "
-"die Label Match-Syntax oder die lokale Konfiguration."
+msgid "Could not display feed: query failed. Please check label match syntax or local configuration."
+msgstr "Kann Feed nicht angezeigen: Abfrage fehlgeschlagen. Bitte überprüfen Sie die Label Such-Syntax oder die lokale Konfiguration."
#: errors.php:27
msgid "Denied. Your access level is insufficient to access this page."
-msgstr ""
-"Zugriff verweigert. Sie haben nicht die benötigten Rechte um auf diese Seite "
-"zuzugreifen."
+msgstr "Zugriff verweigert. Sie haben nicht die benötigten Rechte um auf diese Seite zuzugreifen."
#: errors.php:29
msgid "Configuration check failed"
msgstr "Konfigurationsprüfung fehlgeschlagen"
#: errors.php:31
-#, fuzzy
msgid ""
"Your version of MySQL is not currently supported. Please see\n"
"\t\tofficial site for more information."
msgstr ""
-"Ihre Version von MySQL wird zur Zeit nicht unterstüzt. Bitte \n"
+"Ihre Version von MySQL wird zur Zeit nicht unterstüzt. Bitte\n"
"\t\tinformieren Sie sich auf der offiziellen Website."
#: errors.php:36
msgid "SQL escaping test failed, check your database and PHP configuration"
-msgstr ""
-"SQL Escaping Test fehlgeschlagen, überprüfen Sie Ihre Datenbank und PHP "
-"Konfiguration"
-
-#: index.php:117 index.php:147 index.php:252 prefs.php:79
-#: classes/backend.php:5 classes/pref/labels.php:296
-#: classes/pref/filters.php:609 classes/pref/feeds.php:1296
-#: plugins/digest/digest_body.php:45 js/viewfeed.js:1174
+msgstr "SQL Escaping Test fehlgeschlagen, überprüfen Sie Ihre Datenbank und PHP Konfiguration"
+
+#: index.php:117
+#: index.php:147
+#: index.php:252
+#: prefs.php:79
+#: classes/backend.php:5
+#: classes/pref/labels.php:296
+#: classes/pref/filters.php:609
+#: classes/pref/feeds.php:1296
+#: plugins/digest/digest_body.php:45
+#: js/viewfeed.js:1181
msgid "Loading, please wait..."
msgstr "Ladevorgang, bitte warten..."
-#: index.php:127 index.php:198
+#: index.php:127
+#: index.php:198
msgid "Communication problem with server."
msgstr "Kommunikationsfehler mit Server"
-#: index.php:133 index.php:206
+#: index.php:133
+#: index.php:206
msgid "New version of Tiny Tiny RSS is available!"
msgstr "Neue Version von Tiny Tiny RSS verfügbar!"
@@ -287,7 +284,7 @@ msgstr "Feedliste verbergen"
#: index.php:164
msgid "Show articles"
-msgstr "Neue Artikel"
+msgstr "Artikel anzeigen"
#: index.php:167
msgid "Adaptive"
@@ -297,15 +294,21 @@ msgstr "Adaptiv"
msgid "All Articles"
msgstr "Alle Artikel"
-#: index.php:169 include/functions.php:1915 classes/feeds.php:106
+#: index.php:169
+#: include/functions.php:1915
+#: classes/feeds.php:106
msgid "Starred"
msgstr "Markiert"
-#: index.php:170 include/functions.php:1916 classes/feeds.php:107
+#: index.php:170
+#: include/functions.php:1916
+#: classes/feeds.php:107
msgid "Published"
msgstr "Veröffentlicht"
-#: index.php:171 classes/feeds.php:93 classes/feeds.php:105
+#: index.php:171
+#: classes/feeds.php:93
+#: classes/feeds.php:105
msgid "Unread"
msgstr "Ungelesen"
@@ -329,7 +332,8 @@ msgstr "Standard"
msgid "Date"
msgstr "Datum"
-#: index.php:181 include/localized_schema.php:3
+#: index.php:181
+#: include/localized_schema.php:3
msgid "Title"
msgstr "Titel"
@@ -337,13 +341,21 @@ msgstr "Titel"
msgid "Score"
msgstr "Bewertung"
-#: index.php:187 classes/pref/feeds.php:535 classes/pref/feeds.php:758
+#: index.php:187
+#: classes/pref/feeds.php:535
+#: classes/pref/feeds.php:758
msgid "Update"
msgstr "Aktualisieren"
-#: index.php:191 index.php:221 include/functions.php:1906
-#: include/localized_schema.php:10 classes/feeds.php:111 classes/feeds.php:136
-#: classes/feeds.php:408 js/FeedTree.js:128 js/FeedTree.js:156
+#: index.php:191
+#: index.php:221
+#: include/functions.php:1906
+#: include/localized_schema.php:10
+#: classes/feeds.php:111
+#: classes/feeds.php:136
+#: classes/feeds.php:410
+#: js/FeedTree.js:128
+#: js/FeedTree.js:156
#: plugins/digest/digest.js:630
msgid "Mark as read"
msgstr "Als gelesen markieren"
@@ -364,7 +376,8 @@ msgstr "Suchen..."
msgid "Feed actions:"
msgstr "Feed-Aktionen:"
-#: index.php:216 classes/handler/public.php:541
+#: index.php:216
+#: classes/handler/public.php:541
msgid "Subscribe to feed..."
msgstr "Feed abonnieren..."
@@ -376,7 +389,9 @@ msgstr "Feed bearbeiten..."
msgid "Rescore feed"
msgstr "Feed neu bewerten"
-#: index.php:219 classes/pref/feeds.php:684 classes/pref/feeds.php:1269
+#: index.php:219
+#: classes/pref/feeds.php:684
+#: classes/pref/feeds.php:1269
#: js/PrefFeedTree.js:73
msgid "Unsubscribe"
msgstr "Feed abbestellen"
@@ -401,7 +416,8 @@ msgstr "Zur Zusammenfassung wechseln..."
msgid "Show tag cloud..."
msgstr "Tagwolke anzeigen..."
-#: index.php:229 include/functions.php:1893
+#: index.php:229
+#: include/functions.php:1893
msgid "Toggle widescreen mode"
msgstr "Breitbild-Modus umschalten"
@@ -421,12 +437,16 @@ msgstr "Filter erstellen..."
msgid "Keyboard shortcuts help"
msgstr "Tastaturkürzel..."
-#: index.php:236 mobile/mobile-functions.php:69
-#: mobile/mobile-functions.php:244 plugins/digest/digest_body.php:59
+#: index.php:236
+#: mobile/mobile-functions.php:69
+#: mobile/mobile-functions.php:244
+#: plugins/digest/digest_body.php:59
msgid "Logout"
msgstr "Abmelden"
-#: prefs.php:28 prefs.php:99 include/functions.php:1918
+#: prefs.php:28
+#: prefs.php:99
+#: include/functions.php:1918
#: classes/pref/prefs.php:377
msgid "Preferences"
msgstr "Einstellungen"
@@ -439,17 +459,23 @@ msgstr "Tastaturkürzel"
msgid "Exit preferences"
msgstr "Einstellungen verlassen"
-#: prefs.php:102 classes/pref/feeds.php:100 classes/pref/feeds.php:1174
+#: prefs.php:102
+#: classes/pref/feeds.php:100
+#: classes/pref/feeds.php:1174
#: classes/pref/feeds.php:1237
msgid "Feeds"
msgstr "Feeds"
-#: prefs.php:105 classes/pref/filters.php:117
+#: prefs.php:105
+#: classes/pref/filters.php:117
msgid "Filters"
msgstr "Filter"
-#: prefs.php:108 mobile/mobile-functions.php:205 include/functions.php:1121
-#: include/functions.php:1742 classes/pref/labels.php:90
+#: prefs.php:108
+#: mobile/mobile-functions.php:205
+#: include/functions.php:1121
+#: include/functions.php:1742
+#: classes/pref/labels.php:90
msgid "Labels"
msgstr "Label"
@@ -457,7 +483,8 @@ msgstr "Label"
msgid "Users"
msgstr "Benutzer"
-#: register.php:186 include/login_form.php:212
+#: register.php:186
+#: include/login_form.php:212
msgid "Create new account"
msgstr "Neues Konto erstellen"
@@ -466,14 +493,8 @@ msgid "New user registrations are administratively disabled."
msgstr "Die Registrierung für neue Benutzer wurde administrativ deaktiviert."
#: register.php:215
-msgid ""
-"Your temporary password will be sent to the specified email. Accounts, which "
-"were not logged in once, are erased automatically 24 hours after temporary "
-"password is sent."
-msgstr ""
-"Ihr vorübergehendes Passwort wird an Ihre angegebene E-Mail-Adresse "
-"gesendet. Konten, die nicht innerhalb von 24 Stunden aktiviert wurden, "
-"werden gelöscht."
+msgid "Your temporary password will be sent to the specified email. Accounts, which were not logged in once, are erased automatically 24 hours after temporary password is sent."
+msgstr "Ihr vorübergehendes Passwort wird an Ihre angegebene E-Mail-Adresse gesendet. Konten, die nicht innerhalb von 24 Stunden aktiviert wurden, werden gelöscht."
#: register.php:221
msgid "Desired login:"
@@ -497,7 +518,7 @@ msgstr "Registrierung abschicken"
#: register.php:250
msgid "Your registration information is incomplete."
-msgstr "Ihre Registrieungsinformationen sind unvollständig."
+msgstr "Ihre Registrierungsinformationen sind unvollständig."
#: register.php:265
msgid "Sorry, this username is already taken."
@@ -519,17 +540,20 @@ msgstr "Registrierung für neue Benutzer ist momentan geschlossen."
msgid "Tiny Tiny RSS data update script."
msgstr "Skript zum Updaten von Tiny Tiny RSS."
-#: mobile/login_form.php:28 include/login_form.php:209
+#: mobile/login_form.php:28
+#: include/login_form.php:209
#: classes/handler/public.php:469
msgid "Log in"
msgstr "Anmelden"
-#: mobile/login_form.php:40 include/login_form.php:169
+#: mobile/login_form.php:40
+#: include/login_form.php:169
#: classes/handler/public.php:453
msgid "Login:"
msgstr "Benutzername:"
-#: mobile/login_form.php:45 include/login_form.php:178
+#: mobile/login_form.php:45
+#: include/login_form.php:178
#: classes/handler/public.php:456
msgid "Password:"
msgstr "Passwort:"
@@ -538,39 +562,51 @@ msgstr "Passwort:"
msgid "Open regular version"
msgstr "Reguläre Version öffnen"
-#: mobile/mobile-functions.php:68 mobile/mobile-functions.php:144
-#: mobile/mobile-functions.php:180 mobile/mobile-functions.php:207
-#: mobile/mobile-functions.php:243 mobile/mobile-functions.php:382
+#: mobile/mobile-functions.php:68
+#: mobile/mobile-functions.php:144
+#: mobile/mobile-functions.php:180
+#: mobile/mobile-functions.php:207
+#: mobile/mobile-functions.php:243
+#: mobile/mobile-functions.php:382
#: mobile/prefs.php:19
msgid "Home"
msgstr "Startseite"
-#: mobile/mobile-functions.php:178 include/functions.php:1119
+#: mobile/mobile-functions.php:178
+#: include/functions.php:1119
#: include/functions.php:1740
msgid "Special"
msgstr "Sonderfeeds"
#: mobile/mobile-functions.php:418
msgid "Nothing found (click to reload feed)."
-msgstr "Nicht gefunden (klicken um Feed zu aktualisieren)"
+msgstr "Nichts gefunden (klicken um Feed zu aktualisieren)"
#: mobile/prefs.php:24
msgid "Enable categories"
msgstr "Feedkategorien aktivieren"
-#: mobile/prefs.php:25 mobile/prefs.php:30 mobile/prefs.php:36
-#: mobile/prefs.php:41 mobile/prefs.php:46 mobile/prefs.php:51
+#: mobile/prefs.php:25
+#: mobile/prefs.php:30
+#: mobile/prefs.php:36
+#: mobile/prefs.php:41
+#: mobile/prefs.php:46
+#: mobile/prefs.php:51
msgid "ON"
msgstr "AN"
-#: mobile/prefs.php:25 mobile/prefs.php:30 mobile/prefs.php:36
-#: mobile/prefs.php:41 mobile/prefs.php:46 mobile/prefs.php:51
+#: mobile/prefs.php:25
+#: mobile/prefs.php:30
+#: mobile/prefs.php:36
+#: mobile/prefs.php:41
+#: mobile/prefs.php:46
+#: mobile/prefs.php:51
msgid "OFF"
msgstr "AUS"
#: mobile/prefs.php:29
msgid "Browse categories like folders"
-msgstr "Kategoriefolge zurücksetzen"
+msgstr "Kategorien wie Ordner behandeln"
#: mobile/prefs.php:35
msgid "Show images in posts"
@@ -578,19 +614,24 @@ msgstr "Bilder in Artikeln anzeigen"
#: mobile/prefs.php:40
msgid "Hide read articles and feeds"
-msgstr "Gelesene Artikel und Feeds nicht anzeigen"
+msgstr "Gelesene Artikel und Feeds verstecken"
#: mobile/prefs.php:45
msgid "Sort feeds by unread count"
msgstr "Feeds nach Anzahl der ungelesenen Artikel sortieren"
-#: mobile/prefs.php:50 include/localized_schema.php:45
+#: mobile/prefs.php:50
+#: include/localized_schema.php:45
msgid "Reverse headline order (oldest first)"
msgstr "Schlagzeilensortierung umkehren (älteste zuerst)"
-#: include/digest.php:131 include/functions.php:1130
-#: include/functions.php:1643 include/functions.php:1728
-#: include/functions.php:1750 classes/opml.php:416 classes/pref/feeds.php:188
+#: include/digest.php:131
+#: include/functions.php:1130
+#: include/functions.php:1643
+#: include/functions.php:1728
+#: include/functions.php:1750
+#: classes/opml.php:416
+#: classes/pref/feeds.php:188
msgid "Uncategorized"
msgstr "Unkategorisiert"
@@ -605,9 +646,11 @@ msgstr "Keine Feeds gefunden."
#: include/functions.php:701
msgid "Session failed to validate (incorrect IP)"
-msgstr "Session konnte nicht validiert werden (falsche IP)"
+msgstr "Sitzung konnte nicht validiert werden (falsche IP)"
-#: include/functions.php:1592 classes/dlg.php:371 classes/pref/filters.php:368
+#: include/functions.php:1592
+#: classes/dlg.php:371
+#: classes/pref/filters.php:368
msgid "All feeds"
msgstr "Alle Feeds"
@@ -623,7 +666,8 @@ msgstr "Veröffentlichte Artikel"
msgid "Fresh articles"
msgstr "Neue Artikel"
-#: include/functions.php:1799 include/functions.php:1913
+#: include/functions.php:1799
+#: include/functions.php:1913
msgid "All articles"
msgstr "Alle Artikel"
@@ -657,11 +701,11 @@ msgstr "Vorherigen Artikel öffnen"
#: include/functions.php:1875
msgid "Open next article (don't scroll long articles)"
-msgstr ""
+msgstr "Nächsten Artikel laden (lange Artikel werden nicht gescrollt)"
#: include/functions.php:1876
msgid "Open previous article (don't scroll long articles)"
-msgstr ""
+msgstr "Vorherigen Artikel laden (lange Artikel werden nicht gescrollt)"
#: include/functions.php:1877
msgid "Show search dialog"
@@ -673,15 +717,15 @@ msgstr "Artikel"
#: include/functions.php:1879
msgid "Toggle starred"
-msgstr "Markierung umschalten"
+msgstr "Markierung ein-/ausschalten"
#: include/functions.php:1880
msgid "Toggle published"
-msgstr "Veröffentlicht umschalten"
+msgstr "Veröffentlichung ein-/ausschalten"
#: include/functions.php:1881
msgid "Toggle unread"
-msgstr "Gelesen umschalten"
+msgstr "Gelesen-Status umschalten"
#: include/functions.php:1882
msgid "Edit tags"
@@ -698,15 +742,16 @@ msgid "Dismiss read"
msgstr "Gelesene Artikel verbergen"
#: include/functions.php:1885
-#, fuzzy
msgid "Open in new window"
msgstr "In neuem Fenster öffnen"
-#: include/functions.php:1886 js/viewfeed.js:1798
+#: include/functions.php:1886
+#: js/viewfeed.js:1818
msgid "Mark below as read"
msgstr "Untere als gelesen markieren"
-#: include/functions.php:1887 js/viewfeed.js:1792
+#: include/functions.php:1887
+#: js/viewfeed.js:1812
msgid "Mark above as read"
msgstr "Obige als gelesen markieren"
@@ -753,33 +798,35 @@ msgid "Select published"
msgstr "Veröffentlichte Artikel auswählen"
#: include/functions.php:1899
-#, fuzzy
msgid "Invert selection"
-msgstr "Artikelauswahl umkehren"
+msgstr "Auswahl umkehren"
#: include/functions.php:1900
msgid "Deselect everything"
msgstr "Auswahl aufheben"
-#: include/functions.php:1901 classes/pref/feeds.php:488
+#: include/functions.php:1901
+#: classes/pref/feeds.php:488
#: classes/pref/feeds.php:719
msgid "Feed"
msgstr "Feed"
#: include/functions.php:1902
-#, fuzzy
msgid "Refresh current feed"
-msgstr "Feed aktualisieren"
+msgstr "Aktuellen Feed aktualisieren"
#: include/functions.php:1903
msgid "Un/hide read feeds"
-msgstr "Gelesene zeigen/verstecken"
+msgstr "Gelesene Feeds zeigen/verstecken"
-#: include/functions.php:1904 classes/pref/feeds.php:1240
+#: include/functions.php:1904
+#: classes/pref/feeds.php:1240
msgid "Subscribe to feed"
msgstr "Feed abonnieren"
-#: include/functions.php:1905 js/FeedTree.js:135 js/PrefFeedTree.js:67
+#: include/functions.php:1905
+#: js/FeedTree.js:135
+#: js/PrefFeedTree.js:67
msgid "Edit feed"
msgstr "Feed bearbeiten"
@@ -792,7 +839,8 @@ msgstr "Schlagzeilensortierung umkehren"
msgid "Debug feed update"
msgstr "Aktualisierung im Diagnose-Modus durchführen"
-#: include/functions.php:1909 js/FeedTree.js:177
+#: include/functions.php:1909
+#: js/FeedTree.js:177
msgid "Mark all feeds as read"
msgstr "Alle Feeds als gelesen markieren"
@@ -805,9 +853,8 @@ msgid "Toggle combined mode"
msgstr "Kombinierte Feed-Anzeige umschalten"
#: include/functions.php:1912
-#, fuzzy
msgid "Go to"
-msgstr "Gehe zu..."
+msgstr "Gehe zu"
#: include/functions.php:1914
msgid "Fresh"
@@ -821,16 +868,17 @@ msgstr "Tagwolke"
msgid "Other"
msgstr "Sonstiges"
-#: include/functions.php:1920 classes/pref/labels.php:281
+#: include/functions.php:1920
+#: classes/pref/labels.php:281
msgid "Create label"
msgstr "Label erstellen"
-#: include/functions.php:1921 classes/pref/filters.php:587
+#: include/functions.php:1921
+#: classes/pref/filters.php:587
msgid "Create filter"
msgstr "Filter erstellen"
#: include/functions.php:1922
-#, fuzzy
msgid "Un/collapse sidebar"
msgstr "Seitenleiste ein-/ausklappen"
@@ -843,60 +891,79 @@ msgstr "Hilfe anzeigen"
msgid "Search results: %s"
msgstr "Suchergebnisse: %s"
-#: include/functions.php:2892 js/viewfeed.js:1885
+#: include/functions.php:2893
+#: js/viewfeed.js:1905
msgid "Click to play"
msgstr "Zum Abspielen klicken"
-#: include/functions.php:2893 js/viewfeed.js:1884
+#: include/functions.php:2894
+#: js/viewfeed.js:1904
msgid "Play"
msgstr "Abspielen"
-#: include/functions.php:3014
+#: include/functions.php:3015
msgid " - "
msgstr " - "
-#: include/functions.php:3036 include/functions.php:3353 classes/rpc.php:360
+#: include/functions.php:3037
+#: include/functions.php:3354
+#: classes/rpc.php:360
msgid "no tags"
msgstr "Keine Tags"
-#: include/functions.php:3046 classes/feeds.php:653
+#: include/functions.php:3047
+#: classes/feeds.php:656
msgid "Edit tags for this article"
msgstr "Tags für diesen Artikel bearbeiten"
-#: include/functions.php:3075 classes/feeds.php:608
+#: include/functions.php:3076
+#: classes/feeds.php:610
msgid "Originally from:"
msgstr "Original von:"
-#: include/functions.php:3088 classes/feeds.php:621 classes/pref/feeds.php:507
+#: include/functions.php:3089
+#: classes/feeds.php:623
+#: classes/pref/feeds.php:507
msgid "Feed URL"
msgstr "Feed URL"
-#: include/functions.php:3117
+#: include/functions.php:3118
msgid "Related"
msgstr "Ähnlich"
-#: include/functions.php:3144 classes/dlg.php:43 classes/dlg.php:162
-#: classes/dlg.php:185 classes/dlg.php:222 classes/dlg.php:508
-#: classes/dlg.php:543 classes/dlg.php:574 classes/dlg.php:608
-#: classes/dlg.php:620 classes/backend.php:105 classes/pref/users.php:106
-#: classes/pref/filters.php:108 classes/pref/feeds.php:1553
-#: classes/pref/feeds.php:1624 plugins/import_export/init.php:407
-#: plugins/import_export/init.php:431 plugins/share/init.php:67
+#: include/functions.php:3145
+#: classes/dlg.php:43
+#: classes/dlg.php:162
+#: classes/dlg.php:185
+#: classes/dlg.php:222
+#: classes/dlg.php:508
+#: classes/dlg.php:543
+#: classes/dlg.php:574
+#: classes/dlg.php:608
+#: classes/dlg.php:620
+#: classes/backend.php:105
+#: classes/pref/users.php:106
+#: classes/pref/filters.php:108
+#: classes/pref/feeds.php:1553
+#: classes/pref/feeds.php:1624
+#: plugins/import_export/init.php:407
+#: plugins/import_export/init.php:431
+#: plugins/share/init.php:67
#: plugins/updater/init.php:330
msgid "Close this window"
msgstr "Fenster schließen"
-#: include/functions.php:3378
+#: include/functions.php:3379
msgid "(edit note)"
msgstr "(Notiz bearbeiten)"
-#: include/functions.php:3611
+#: include/functions.php:3612
msgid "unknown type"
msgstr "unbekannter Typ"
-#: include/functions.php:3661
+#: include/functions.php:3662
msgid "Attachments"
-msgstr "Anhänge:"
+msgstr "Anhänge"
#: include/localized_schema.php:4
msgid "Title or Content"
@@ -922,8 +989,10 @@ msgstr "Artikel löschen"
msgid "Set starred"
msgstr "Markierung setzen"
-#: include/localized_schema.php:12 js/viewfeed.js:478
-#: plugins/digest/digest.js:264 plugins/digest/digest.js:736
+#: include/localized_schema.php:12
+#: js/viewfeed.js:478
+#: plugins/digest/digest.js:264
+#: plugins/digest/digest.js:736
msgid "Publish article"
msgstr "Artikel veröffentlichen"
@@ -931,7 +1000,8 @@ msgstr "Artikel veröffentlichen"
msgid "Assign tags"
msgstr "Tags zuweisen"
-#: include/localized_schema.php:14 js/viewfeed.js:1849
+#: include/localized_schema.php:14
+#: js/viewfeed.js:1869
msgid "Assign label"
msgstr "Label zuweisen"
@@ -941,7 +1011,7 @@ msgstr "Bewertung ändern"
#: include/localized_schema.php:17
msgid "General"
-msgstr "Allgemeines"
+msgstr "Allgemein"
#: include/localized_schema.php:18
msgid "Interface"
@@ -952,64 +1022,36 @@ msgid "Advanced"
msgstr "Erweiterte Einstellungen"
#: include/localized_schema.php:21
-msgid ""
-"This option is useful when you are reading several planet-type aggregators "
-"with partially colliding userbase. When disabled, it forces same posts from "
-"different feeds to appear only once."
-msgstr ""
-"Diese Option dient zum Lesen mehrerer ähnlicher Feeds mit teilweise gleichen "
-"Artikeln. Ist diese Option deaktiviert, werden die selben Artikel von "
-"unterschiedlichen Feeds nur einmal erscheinen."
+msgid "This option is useful when you are reading several planet-type aggregators with partially colliding userbase. When disabled, it forces same posts from different feeds to appear only once."
+msgstr "Diese Option dient zum Lesen von Feedsammlungen mit teilweise wiederkehrenden Artikeln. Ist diese Option deaktiviert, wird ein Artikel von unterschiedlichen Feedsquellen nur einmal angezeigt."
#: include/localized_schema.php:22
-msgid ""
-"Display expanded list of feed articles, instead of separate displays for "
-"headlines and article content"
-msgstr ""
-"Erweiterte Anzeigeliste für Artikel, anstatt einzelne Fenster für "
-"Schlagzeilen und Artikelinhalt"
+msgid "Display expanded list of feed articles, instead of separate displays for headlines and article content"
+msgstr "Erweiterte Anzeigeliste für Artikel, anstelle von einzelnen Fenstern für Schlagzeilen und Artikelinhalt"
#: include/localized_schema.php:23
-msgid ""
-"Automatically open next feed with unread articles after marking one as read"
-msgstr ""
+msgid "Automatically open next feed with unread articles after marking one as read"
+msgstr "Automatisch nächsten Feed mit ungelesenen Artikeln laden, nachdem ein Feed als gelesen markiert wurde"
#: include/localized_schema.php:24
-msgid ""
-"This option enables sending daily digest of new (and unread) headlines on "
-"your configured e-mail address"
-msgstr ""
-"Diese Option aktiviert das Senden einer täglichen Zusammenfassung über neue "
-"(und ungelesene) Schlagzeilen an Ihre angegebene E-Mail-Adresse"
+msgid "This option enables sending daily digest of new (and unread) headlines on your configured e-mail address"
+msgstr "Diese Option aktiviert das Senden einer täglichen Zusammenfassung über neue (und ungelesene) Schlagzeilen an Ihre angegebene E-Mail-Adresse"
#: include/localized_schema.php:25
-msgid ""
-"This option enables marking articles as read automatically while you scroll "
-"article list."
-msgstr ""
-"Diese Option aktiviert das automatische \"Als gelesen markieren\" im "
-"kombinierten Anzeigemodus (ausgenommen ist der Neue-Artikel-Feed), während "
-"Sie durch die Artikelliste scrollen."
+msgid "This option enables marking articles as read automatically while you scroll article list."
+msgstr "Diese Option aktiviert das automatische \"Als gelesen markieren\" im kombinierten Anzeigemodus (ausgenommen ist der Neue-Artikel-Feed), während Sie durch die Artikelliste scrollen."
#: include/localized_schema.php:26
msgid "Strip all but most common HTML tags when reading articles."
-msgstr "Alle außer den meist gebräuchlichen HTML Tags beim Lesen entfernen."
+msgstr "Alle außer den meist verwendeten HTML Tags beim Lesen entfernen."
#: include/localized_schema.php:27
-msgid ""
-"When auto-detecting tags in articles these tags will not be applied (comma-"
-"separated list)."
-msgstr ""
-"Bei der automatischen Erkennung von Tags in Artikeln werden die folgenden "
-"nicht verwendet (durch Komma getrennte Liste)."
+msgid "When auto-detecting tags in articles these tags will not be applied (comma-separated list)."
+msgstr "Bei der automatischen Erkennung von Tags in Artikeln werden die folgenden nicht verwendet (durch Komma getrennte Liste)."
#: include/localized_schema.php:28
-msgid ""
-"When this option is enabled, headlines in Special feeds and Labels are "
-"grouped by feeds"
-msgstr ""
-"Wenn diese Option aktiviert ist, werden Schlagzeilen in Sonderfeeds und "
-"Labels nach Feeds gruppiert"
+msgid "When this option is enabled, headlines in Special feeds and Labels are grouped by feeds"
+msgstr "Wenn diese Option aktiviert ist, werden Schlagzeilen in Sonderfeeds und Labels nach Feeds gruppiert"
#: include/localized_schema.php:29
msgid "Customize CSS stylesheet to your liking"
@@ -1017,9 +1059,7 @@ msgstr "CSS Stylesheet nach Ihren Vorlieben anpassen"
#: include/localized_schema.php:30
msgid "Use feed-specified date to sort headlines instead of local import date."
-msgstr ""
-"Benutze feed-spezifisches Datum statt des lokalen Importdatums um "
-"Schlagzeilen zu sortieren."
+msgstr "Benutze feed-spezifisches Datum statt des lokalen Importdatums um Schlagzeilen zu sortieren."
#: include/localized_schema.php:31
msgid "Click to register your SSL client certificate with tt-rss"
@@ -1035,11 +1075,11 @@ msgstr "Alte Artikel nach dieser Anzahl an Tagen löschen (0 - deaktivert)"
#: include/localized_schema.php:34
msgid "Default interval between feed updates"
-msgstr "Standard Intervall zwischen Feed-Aktualisierungen (in Minuten)"
+msgstr "Standard Intervall zwischen Feed-Aktualisierungen"
#: include/localized_schema.php:35
msgid "Amount of articles to display at once"
-msgstr "Keine Artikel zum Anzeigen gefunden."
+msgstr "Anzahl der Artikel, die gleichzeitig geladen werden"
#: include/localized_schema.php:36
msgid "Allow duplicate posts"
@@ -1134,13 +1174,14 @@ msgstr "Externe API aktivieren"
msgid "User timezone"
msgstr "Zeitzone des Benutzers"
-#: include/localized_schema.php:60 js/prefs.js:1740
+#: include/localized_schema.php:60
+#: js/prefs.js:1740
msgid "Customize stylesheet"
-msgstr "Benutzer Stylesheet"
+msgstr "Benutzerdefiniertes Stylesheet"
#: include/localized_schema.php:61
msgid "Sort headlines by feed date"
-msgstr "Feeds nach Feed-Datum sortieren"
+msgstr "Feeds nach Schlagzeilendatum sortieren"
#: include/localized_schema.php:62
msgid "Login with an SSL certificate"
@@ -1152,9 +1193,10 @@ msgstr "Zusammenfassungen zu einer bestimmten Uhrzeit zu senden"
#: include/localized_schema.php:64
msgid "Assign articles to labels automatically"
-msgstr ""
+msgstr "Artikel den Labeln automatisch zuordnen"
-#: include/login_form.php:185 classes/handler/public.php:459
+#: include/login_form.php:185
+#: classes/handler/public.php:459
msgid "Language:"
msgstr "Sprache:"
@@ -1162,8 +1204,10 @@ msgstr "Sprache:"
msgid "Profile:"
msgstr "Profil:"
-#: include/login_form.php:197 classes/handler/public.php:212
-#: classes/rpc.php:64 classes/dlg.php:98
+#: include/login_form.php:197
+#: classes/handler/public.php:212
+#: classes/rpc.php:64
+#: classes/dlg.php:98
msgid "Default profile"
msgstr "Standardprofil"
@@ -1175,7 +1219,8 @@ msgstr "Weniger Datenverkehr nutzen"
msgid "Article not found."
msgstr "Artikel nicht gefunden."
-#: classes/handler/public.php:394 plugins/bookmarklets/init.php:38
+#: classes/handler/public.php:394
+#: plugins/bookmarklets/init.php:38
msgid "Share with Tiny Tiny RSS"
msgstr "Teilen mit Tiny Tiny RSS"
@@ -1183,36 +1228,49 @@ msgstr "Teilen mit Tiny Tiny RSS"
msgid "Title:"
msgstr "Titel:"
-#: classes/handler/public.php:404 classes/dlg.php:667
-#: classes/pref/feeds.php:505 classes/pref/feeds.php:734
+#: classes/handler/public.php:404
+#: classes/dlg.php:667
+#: classes/pref/feeds.php:505
+#: classes/pref/feeds.php:734
#: plugins/instances/init.php:215
msgid "URL:"
msgstr "URL:"
#: classes/handler/public.php:406
msgid "Content:"
-msgstr "Inhalt"
+msgstr "Inhalt:"
#: classes/handler/public.php:408
msgid "Labels:"
-msgstr "Label"
+msgstr "Label:"
#: classes/handler/public.php:427
msgid "Shared article will appear in the Published feed."
-msgstr "Weiterempfohlene Artikel erscheinen unter 'Veröffentlichte Artikel'."
+msgstr "Geteilte Artikel erscheinen unter 'Veröffentlichte Artikel'."
#: classes/handler/public.php:429
msgid "Share"
msgstr "Teilen"
-#: classes/handler/public.php:430 classes/handler/public.php:472
-#: classes/dlg.php:297 classes/dlg.php:350 classes/dlg.php:410
-#: classes/dlg.php:441 classes/dlg.php:652 classes/dlg.php:702
-#: classes/dlg.php:751 classes/pref/users.php:194 classes/pref/labels.php:81
-#: classes/pref/filters.php:349 classes/pref/filters.php:729
-#: classes/pref/filters.php:798 classes/pref/filters.php:865
-#: classes/pref/feeds.php:701 classes/pref/feeds.php:849
-#: plugins/mail/init.php:131 plugins/note/init.php:55
+#: classes/handler/public.php:430
+#: classes/handler/public.php:472
+#: classes/dlg.php:297
+#: classes/dlg.php:350
+#: classes/dlg.php:410
+#: classes/dlg.php:441
+#: classes/dlg.php:652
+#: classes/dlg.php:702
+#: classes/dlg.php:751
+#: classes/pref/users.php:194
+#: classes/pref/labels.php:81
+#: classes/pref/filters.php:349
+#: classes/pref/filters.php:729
+#: classes/pref/filters.php:798
+#: classes/pref/filters.php:865
+#: classes/pref/feeds.php:701
+#: classes/pref/feeds.php:849
+#: plugins/mail/init.php:131
+#: plugins/note/init.php:55
#: plugins/instances/init.php:251
msgid "Cancel"
msgstr "Abbrechen"
@@ -1225,77 +1283,99 @@ msgstr "Nicht angemeldet"
msgid "Incorrect username or password"
msgstr "Benutzername oder Passwort falsch"
-#: classes/handler/public.php:547 classes/handler/public.php:644
+#: classes/handler/public.php:547
+#: classes/handler/public.php:644
#, php-format
msgid "Already subscribed to <b>%s</b>."
msgstr "<b>%s</b> bereits abonniert."
-#: classes/handler/public.php:550 classes/handler/public.php:635
+#: classes/handler/public.php:550
+#: classes/handler/public.php:635
#, php-format
msgid "Subscribed to <b>%s</b>."
msgstr "<b>%s</b> abonniert."
-#: classes/handler/public.php:553 classes/handler/public.php:638
+#: classes/handler/public.php:553
+#: classes/handler/public.php:638
#, php-format
msgid "Could not subscribe to <b>%s</b>."
-msgstr "<b>%s</b> bereits abonniert."
+msgstr "Konnte <b>%s</b> nicht abonnieren."
-#: classes/handler/public.php:556 classes/handler/public.php:641
+#: classes/handler/public.php:556
+#: classes/handler/public.php:641
#, php-format
msgid "No feeds found in <b>%s</b>."
msgstr "Keine Feeds in <b>%s</b> gefunden."
-#: classes/handler/public.php:559 classes/handler/public.php:647
+#: classes/handler/public.php:559
+#: classes/handler/public.php:647
msgid "Multiple feed URLs found."
msgstr "Mehrere Feed-URLs gefunden."
-#: classes/handler/public.php:563 classes/handler/public.php:652
+#: classes/handler/public.php:563
+#: classes/handler/public.php:652
#, php-format
msgid "Could not subscribe to <b>%s</b>.<br>Can't download the Feed URL."
-msgstr ""
-"Das Abonnieren von <b>%s</b> ist fehlgeschlagen.<br>Der Feed konnte nicht "
-"heruntergeladen werden."
+msgstr "Das Abonnieren von <b>%s</b> ist fehlgeschlagen.<br>Der Feed konnte nicht heruntergeladen werden."
-#: classes/handler/public.php:581 classes/handler/public.php:670
+#: classes/handler/public.php:581
+#: classes/handler/public.php:670
msgid "Subscribe to selected feed"
msgstr "Ausgewählte Feeds abonnieren"
-#: classes/handler/public.php:606 classes/handler/public.php:694
+#: classes/handler/public.php:606
+#: classes/handler/public.php:694
msgid "Edit subscription options"
msgstr "Abonnementoptionen bearbeiten"
#: classes/dlg.php:22
-msgid ""
-"If you have imported labels and/or filters, you might need to reload "
-"preferences to see your new data."
-msgstr ""
-"Wenn Label und/oder Filter importiert wurden, müssen die Einstellungen "
-"erneut geladen werden um alle neuen Einstellungen zu sehen."
-
-#: classes/dlg.php:55 classes/pref/users.php:378 classes/pref/labels.php:272
-#: classes/pref/filters.php:230 classes/pref/filters.php:277
-#: classes/pref/filters.php:578 classes/pref/filters.php:657
-#: classes/pref/filters.php:684 classes/pref/feeds.php:1228
-#: classes/pref/feeds.php:1498 classes/pref/feeds.php:1567
+msgid "If you have imported labels and/or filters, you might need to reload preferences to see your new data."
+msgstr "Wenn Label und/oder Filter importiert wurden, müssen die Einstellungen erneut geladen werden, um alle neuen Einstellungen zu sehen."
+
+#: classes/dlg.php:55
+#: classes/pref/users.php:378
+#: classes/pref/labels.php:272
+#: classes/pref/filters.php:230
+#: classes/pref/filters.php:277
+#: classes/pref/filters.php:578
+#: classes/pref/filters.php:657
+#: classes/pref/filters.php:684
+#: classes/pref/feeds.php:1228
+#: classes/pref/feeds.php:1498
+#: classes/pref/feeds.php:1567
#: plugins/instances/init.php:287
msgid "Select"
msgstr "Auswahl"
-#: classes/dlg.php:58 classes/feeds.php:92 classes/pref/users.php:381
-#: classes/pref/labels.php:275 classes/pref/filters.php:233
-#: classes/pref/filters.php:280 classes/pref/filters.php:581
-#: classes/pref/filters.php:660 classes/pref/filters.php:687
-#: classes/pref/feeds.php:1231 classes/pref/feeds.php:1501
-#: classes/pref/feeds.php:1570 plugins/instances/init.php:290
+#: classes/dlg.php:58
+#: classes/feeds.php:92
+#: classes/pref/users.php:381
+#: classes/pref/labels.php:275
+#: classes/pref/filters.php:233
+#: classes/pref/filters.php:280
+#: classes/pref/filters.php:581
+#: classes/pref/filters.php:660
+#: classes/pref/filters.php:687
+#: classes/pref/feeds.php:1231
+#: classes/pref/feeds.php:1501
+#: classes/pref/feeds.php:1570
+#: plugins/instances/init.php:290
msgid "All"
msgstr "Alle"
-#: classes/dlg.php:60 classes/feeds.php:95 classes/pref/users.php:383
-#: classes/pref/labels.php:277 classes/pref/filters.php:235
-#: classes/pref/filters.php:282 classes/pref/filters.php:583
-#: classes/pref/filters.php:662 classes/pref/filters.php:689
-#: classes/pref/feeds.php:1233 classes/pref/feeds.php:1503
-#: classes/pref/feeds.php:1572 plugins/instances/init.php:292
+#: classes/dlg.php:60
+#: classes/feeds.php:95
+#: classes/pref/users.php:383
+#: classes/pref/labels.php:277
+#: classes/pref/filters.php:235
+#: classes/pref/filters.php:282
+#: classes/pref/filters.php:583
+#: classes/pref/filters.php:662
+#: classes/pref/filters.php:689
+#: classes/pref/feeds.php:1233
+#: classes/pref/feeds.php:1503
+#: classes/pref/feeds.php:1572
+#: plugins/instances/init.php:292
msgid "None"
msgstr "Keine"
@@ -1303,7 +1383,8 @@ msgstr "Keine"
msgid "Create profile"
msgstr "Profil erstellen"
-#: classes/dlg.php:92 classes/dlg.php:122
+#: classes/dlg.php:92
+#: classes/dlg.php:122
msgid "(active)"
msgstr "(aktiv)"
@@ -1313,7 +1394,7 @@ msgstr "Ausgewählte Profile entfernen"
#: classes/dlg.php:158
msgid "Activate profile"
-msgstr "Aktives Profil"
+msgstr "Profil aktivieren"
#: classes/dlg.php:168
msgid "Public OPML URL"
@@ -1323,7 +1404,8 @@ msgstr "Öffentliche OPML-URL"
msgid "Your Public OPML URL is:"
msgstr "Ihre öffentliche OPML-URL lautet:"
-#: classes/dlg.php:182 classes/dlg.php:571
+#: classes/dlg.php:182
+#: classes/dlg.php:571
msgid "Generate new URL"
msgstr "Erzeuge neue URL"
@@ -1332,36 +1414,26 @@ msgid "Notice"
msgstr "Anmerkung"
#: classes/dlg.php:200
-msgid ""
-"Update daemon is enabled in configuration, but daemon process is not "
-"running, which prevents all feeds from updating. Please start the daemon "
-"process or contact instance owner."
-msgstr ""
-"Der Aktualisierungs-Daemon ist in den Einstellungen aktiviert, aber der "
-"Daemon Prozess läuft nicht, weshalb keine Feeds aktualisiert werden können. "
-"Bitte starten Sie den Prozess des Daemons oder benachrichtigen Sie den "
-"Besitzer der Instanz."
+msgid "Update daemon is enabled in configuration, but daemon process is not running, which prevents all feeds from updating. Please start the daemon process or contact instance owner."
+msgstr "Der Aktualisierungs-Daemon ist in den Einstellungen aktiviert, aber der Daemon Prozess läuft nicht, weshalb keine Feeds aktualisiert werden können. Bitte starten Sie den Prozess des Daemons oder benachrichtigen Sie den Besitzer der Instanz."
-#: classes/dlg.php:204 classes/dlg.php:213
+#: classes/dlg.php:204
+#: classes/dlg.php:213
msgid "Last update:"
msgstr "Letzte Aktualisierung:"
#: classes/dlg.php:209
-msgid ""
-"Update daemon is taking too long to perform a feed update. This could "
-"indicate a problem like crash or a hang. Please check the daemon process or "
-"contact instance owner."
-msgstr ""
-"Der Aktualisierungs Daemon braucht zu lange um eine Aktualisierung "
-"durchzuführen. Dies könnte auf ein Problem wie einen Absturz oder eine "
-"Blockierung hinweisen. Bitte überprüfen Sie den Prozess des Daemons oder "
-"benachrichtigen Sie den Besitzer des Instanz."
+msgid "Update daemon is taking too long to perform a feed update. This could indicate a problem like crash or a hang. Please check the daemon process or contact instance owner."
+msgstr "Der Aktualisierungs Daemon braucht zu lange um eine Aktualisierung durchzuführen. Dies könnte auf ein Problem wie einen Absturz oder eine Blockierung hinweisen. Bitte überprüfen Sie den Prozess des Daemons oder benachrichtigen Sie den Besitzer des Instanz."
-#: classes/dlg.php:234 classes/dlg.php:243
+#: classes/dlg.php:234
+#: classes/dlg.php:243
msgid "Feed or site URL"
-msgstr "URL von Feed oder Site"
+msgstr "URL von Feed oder Seite"
-#: classes/dlg.php:249 classes/dlg.php:715 classes/pref/feeds.php:527
+#: classes/dlg.php:249
+#: classes/dlg.php:715
+#: classes/pref/feeds.php:527
#: classes/pref/feeds.php:747
msgid "Place in category:"
msgstr "In Kategorie einordnen:"
@@ -1370,18 +1442,26 @@ msgstr "In Kategorie einordnen:"
msgid "Available feeds"
msgstr "Verfügbare Feeds"
-#: classes/dlg.php:269 classes/pref/users.php:155 classes/pref/feeds.php:557
+#: classes/dlg.php:269
+#: classes/pref/users.php:155
+#: classes/pref/feeds.php:557
#: classes/pref/feeds.php:783
msgid "Authentication"
msgstr "Authentifizierung"
-#: classes/dlg.php:273 classes/dlg.php:729 classes/pref/users.php:438
-#: classes/pref/feeds.php:563 classes/pref/feeds.php:787
+#: classes/dlg.php:273
+#: classes/dlg.php:729
+#: classes/pref/users.php:438
+#: classes/pref/feeds.php:563
+#: classes/pref/feeds.php:787
msgid "Login"
msgstr "Benutzername"
-#: classes/dlg.php:276 classes/dlg.php:732 classes/pref/prefs.php:202
-#: classes/pref/feeds.php:569 classes/pref/feeds.php:793
+#: classes/dlg.php:276
+#: classes/dlg.php:732
+#: classes/pref/prefs.php:202
+#: classes/pref/feeds.php:569
+#: classes/pref/feeds.php:793
msgid "Password"
msgstr "Passwort"
@@ -1389,7 +1469,9 @@ msgstr "Passwort"
msgid "This feed requires authentication."
msgstr "Dieser Feed erfordert Authentifizierung."
-#: classes/dlg.php:291 classes/dlg.php:348 classes/dlg.php:750
+#: classes/dlg.php:291
+#: classes/dlg.php:348
+#: classes/dlg.php:750
msgid "Subscribe"
msgstr "Abonnieren"
@@ -1397,8 +1479,12 @@ msgstr "Abonnieren"
msgid "More feeds"
msgstr "Weitere Feeds"
-#: classes/dlg.php:318 classes/dlg.php:409 classes/pref/users.php:368
-#: classes/pref/filters.php:574 classes/pref/feeds.php:1224 js/tt-rss.js:166
+#: classes/dlg.php:318
+#: classes/dlg.php:409
+#: classes/pref/users.php:368
+#: classes/pref/filters.php:574
+#: classes/pref/feeds.php:1224
+#: js/tt-rss.js:166
msgid "Search"
msgstr "Suchen"
@@ -1414,9 +1500,13 @@ msgstr "Feed-Archiv"
msgid "limit:"
msgstr "Grenzwert:"
-#: classes/dlg.php:349 classes/pref/users.php:394 classes/pref/labels.php:284
-#: classes/pref/filters.php:339 classes/pref/filters.php:596
-#: classes/pref/feeds.php:674 plugins/instances/init.php:297
+#: classes/dlg.php:349
+#: classes/pref/users.php:394
+#: classes/pref/labels.php:284
+#: classes/pref/filters.php:339
+#: classes/pref/filters.php:596
+#: classes/pref/feeds.php:674
+#: plugins/instances/init.php:297
msgid "Remove"
msgstr "Entfernen"
@@ -1434,13 +1524,19 @@ msgstr "Diesen Feed"
#: classes/dlg.php:416
msgid "Tags for this article (separated by commas):"
-msgstr "Tags für diesen Artikel (kommagetrennt)"
-
-#: classes/dlg.php:439 classes/dlg.php:650 classes/pref/users.php:192
-#: classes/pref/labels.php:79 classes/pref/filters.php:346
-#: classes/pref/feeds.php:700 classes/pref/feeds.php:846
-#: plugins/nsfw/init.php:86 plugins/note/init.php:53
-#: plugins/owncloud/init.php:62 plugins/instances/init.php:248
+msgstr "Tags für diesen Artikel (durch Komma getrennt):"
+
+#: classes/dlg.php:439
+#: classes/dlg.php:650
+#: classes/pref/users.php:192
+#: classes/pref/labels.php:79
+#: classes/pref/filters.php:346
+#: classes/pref/feeds.php:700
+#: classes/pref/feeds.php:846
+#: plugins/nsfw/init.php:86
+#: plugins/note/init.php:53
+#: plugins/owncloud/init.php:62
+#: plugins/instances/init.php:248
msgid "Save"
msgstr "Speichern"
@@ -1472,7 +1568,8 @@ msgstr "Welche Tags?"
msgid "Display entries"
msgstr "Einträge anzeigen"
-#: classes/dlg.php:551 classes/feeds.php:138
+#: classes/dlg.php:551
+#: classes/feeds.php:138
msgid "View as RSS"
msgstr "Als RSS anzeigen"
@@ -1480,18 +1577,18 @@ msgstr "Als RSS anzeigen"
msgid "You can view this feed as RSS using the following URL:"
msgstr "Sie finden diesen Feed als RSS unter der folgenden URL:"
-#: classes/dlg.php:591 plugins/updater/init.php:304
+#: classes/dlg.php:591
+#: plugins/updater/init.php:304
#, php-format
msgid "New version of Tiny Tiny RSS is available (%s)."
msgstr "Neue Version von Tiny Tiny RSS verfügbar (%s)."
#: classes/dlg.php:599
-msgid ""
-"You can update using built-in updater in the Preferences or by using update."
-"php"
-msgstr ""
+msgid "You can update using built-in updater in the Preferences or by using update.php"
+msgstr "Um ein Update durchzuführen können Sie den eingebauten Updater in den Einstellungen oder die update.php benutzen"
-#: classes/dlg.php:603 classes/pref/users.php:390
+#: classes/dlg.php:603
+#: classes/pref/users.php:390
msgid "Details"
msgstr "Details"
@@ -1501,44 +1598,42 @@ msgstr "Download"
#: classes/dlg.php:613
msgid "Error receiving version information or no new version available."
-msgstr "Das Abrufen von Update-Informationen ist fehlgeschlagen."
+msgstr "Das Abrufen von Update-Informationen ist fehlgeschlagen oder es ist bereits die neuste Version installiert."
#: classes/dlg.php:634
#, php-format
-msgid ""
-"You can override colors, fonts and layout of your currently selected theme "
-"with custom CSS declarations here. <a target=\"_blank\" class=\"visibleLink"
-"\" href=\"%s\">This file</a> can be used as a baseline."
-msgstr ""
-"Sie können Farben, Schriftarten und das Layout Ihres aktuell gewählten "
-"Themas mit einem eigenen CSS-Stylesheet übergehen. <a target=\"_blank\" "
-"class=\"visibleLink\" href=\"%s\">Diese Datei</a> kann als Basis benutzt "
-"werden."
+msgid "You can override colors, fonts and layout of your currently selected theme with custom CSS declarations here. <a target=\"_blank\" class=\"visibleLink\" href=\"%s\">This file</a> can be used as a baseline."
+msgstr "Sie können Farben, Schriftarten und das Layout Ihres aktuell gewählten Themas mit einem eigenen CSS-Stylesheet überschreiben. <a target=\"_blank\" class=\"visibleLink\" href=\"%s\">Diese Datei</a> kann als Grundlage benutzt werden."
-#: classes/dlg.php:661 plugins/instances/init.php:207
+#: classes/dlg.php:661
+#: plugins/instances/init.php:207
msgid "Instance"
msgstr "Instanz"
-#: classes/dlg.php:670 plugins/instances/init.php:218
+#: classes/dlg.php:670
+#: plugins/instances/init.php:218
#: plugins/instances/init.php:315
msgid "Instance URL"
msgstr "Instanz-URL"
-#: classes/dlg.php:680 plugins/instances/init.php:229
+#: classes/dlg.php:680
+#: plugins/instances/init.php:229
msgid "Access key:"
msgstr "Zugriffsberechtigung:"
-#: classes/dlg.php:683 plugins/instances/init.php:232
+#: classes/dlg.php:683
+#: plugins/instances/init.php:232
#: plugins/instances/init.php:316
msgid "Access key"
msgstr "Zugriffsberechtigung"
-#: classes/dlg.php:687 plugins/instances/init.php:236
+#: classes/dlg.php:687
+#: plugins/instances/init.php:236
msgid "Use one access key for both linked instances."
-msgstr ""
-"Benutzen Sie den selben Zugriffschlüssel für beide verbundenen Instanzen."
+msgstr "Benutzen Sie den selben Zugriffschlüssel für beide verbundenen Instanzen."
-#: classes/dlg.php:695 plugins/instances/init.php:244
+#: classes/dlg.php:695
+#: plugins/instances/init.php:244
msgid "Generate new key"
msgstr "Neuen Zugriffsschlüssel erzeugen"
@@ -1548,15 +1643,15 @@ msgstr "Verbindung herstellen"
#: classes/dlg.php:712
msgid "Add one valid RSS feed per line (no feed detection is done)"
-msgstr "Einen gültigen RSS Feed pro Zeile hinzufügen (Keine Feederkennung)"
+msgstr "Einen gültigen RSS Feed pro Zeile hinzufügen (Es findet keine Feederkennung statt)"
#: classes/dlg.php:721
msgid "Feeds to subscribe, One per line"
-msgstr "Zu abonierende Feeds, Einen pro Zeile"
+msgstr "Zu abonnierende Feeds, Einen pro Zeile"
#: classes/dlg.php:743
msgid "Feeds require authentication."
-msgstr "Feeds benötigen Anmeldung."
+msgstr "Feeds benötigen Authentifizierung."
#: classes/feeds.php:68
msgid "Visit the website"
@@ -1576,7 +1671,7 @@ msgstr "Umkehren"
#: classes/feeds.php:101
msgid "More..."
-msgstr "Mehr.."
+msgstr "Mehr..."
#: classes/feeds.php:103
msgid "Selection toggle:"
@@ -1598,13 +1693,17 @@ msgstr "Archiv"
msgid "Move back"
msgstr "Zurückgehen"
-#: classes/feeds.php:118 classes/pref/filters.php:242
-#: classes/pref/filters.php:289 classes/pref/filters.php:669
+#: classes/feeds.php:118
+#: classes/pref/filters.php:242
+#: classes/pref/filters.php:289
+#: classes/pref/filters.php:669
#: classes/pref/filters.php:696
msgid "Delete"
msgstr "Löschen"
-#: classes/feeds.php:125 classes/feeds.php:130 plugins/mailto/init.php:28
+#: classes/feeds.php:125
+#: classes/feeds.php:130
+#: plugins/mailto/init.php:28
#: plugins/mail/init.php:28
msgid "Forward by email"
msgstr "Per E-Mail weiterleiten"
@@ -1613,55 +1712,53 @@ msgstr "Per E-Mail weiterleiten"
msgid "Feed:"
msgstr "Feed:"
-#: classes/feeds.php:201 classes/feeds.php:798
+#: classes/feeds.php:201
+#: classes/feeds.php:801
msgid "Feed not found."
msgstr "Feed nicht gefunden."
-#: classes/feeds.php:498
+#: classes/feeds.php:500
msgid "mark as read"
msgstr "als gelesen markieren"
-#: classes/feeds.php:553
-#, fuzzy
+#: classes/feeds.php:555
msgid "Collapse article"
-msgstr "Artikel schließen"
+msgstr "Artikel einklappen"
-#: classes/feeds.php:699
+#: classes/feeds.php:702
msgid "No unread articles found to display."
msgstr "Keine ungelesenen Artikel zum Anzeigen gefunden."
-#: classes/feeds.php:702
+#: classes/feeds.php:705
msgid "No updated articles found to display."
msgstr "Keine aktualisierten Artikel zum Anzeigen gefunden."
-#: classes/feeds.php:705
+#: classes/feeds.php:708
msgid "No starred articles found to display."
msgstr "Keine markierten Artikel zum Anzeigen gefunden."
-#: classes/feeds.php:709
-msgid ""
-"No articles found to display. You can assign articles to labels manually "
-"(see the Actions menu above) or use a filter."
-msgstr ""
-"Keine Artikel zum Anzeigen gefunden. Sie können Artikel zu Labeln manuell "
-"hinzufügen (siehe obiges Aktionsmenü) oder einen Filter benutzen."
+#: classes/feeds.php:712
+msgid "No articles found to display. You can assign articles to labels manually (see the Actions menu above) or use a filter."
+msgstr "Keine Artikel zum Anzeigen gefunden. Sie können Artikel zu Labeln manuell hinzufügen (siehe obiges Aktionsmenü) oder durch das Benutzen von Filtern."
-#: classes/feeds.php:711
+#: classes/feeds.php:714
msgid "No articles found to display."
msgstr "Keine Artikel zum Anzeigen gefunden."
-#: classes/feeds.php:726 classes/feeds.php:907
+#: classes/feeds.php:729
+#: classes/feeds.php:910
#, php-format
msgid "Feeds last updated at %s"
msgstr "Feeds zuletzt aktualisiert am %s"
-#: classes/feeds.php:736 classes/feeds.php:917
+#: classes/feeds.php:739
+#: classes/feeds.php:920
msgid "Some feeds have update errors (click for details)"
msgstr "Einige Feeds haben Aktualisierungsfehler (klicken für Details)"
-#: classes/feeds.php:897
+#: classes/feeds.php:900
msgid "No feed selected."
-msgstr "Kein Feed ausgewählt."
+msgstr "Keinen Feed ausgewählt."
#: classes/backend.php:34
msgid "Keyboard Shortcuts"
@@ -1669,11 +1766,11 @@ msgstr "Tastaturkürzel"
#: classes/backend.php:57
msgid "Shift"
-msgstr ""
+msgstr "Shift"
#: classes/backend.php:60
msgid "Ctrl"
-msgstr ""
+msgstr "Strg"
#: classes/backend.php:84
msgid "Other interface tips are available in the Tiny Tiny RSS wiki."
@@ -1683,7 +1780,8 @@ msgstr "Im Wiki von Tiny Tiny RSS finden Sie weitere Tipps."
msgid "Help topic not found."
msgstr "Hilfethema nicht gefunden."
-#: classes/opml.php:28 classes/opml.php:33
+#: classes/opml.php:28
+#: classes/opml.php:33
msgid "OPML Utility"
msgstr "OPML Werkzeug"
@@ -1713,7 +1811,7 @@ msgstr "Füge Label %s hinzu"
#: classes/opml.php:298
#, php-format
msgid "Duplicate label: %s"
-msgstr "Label %s kopieren."
+msgstr "Doppeltes Label: %s"
#: classes/opml.php:310
#, php-format
@@ -1727,7 +1825,7 @@ msgstr "Füge Filter hinzu..."
#: classes/opml.php:416
#, php-format
msgid "Processing category: %s"
-msgstr "Bearbeite Kategorie: %s"
+msgstr "Verarbeite Kategorie: %s"
#: classes/opml.php:468
msgid "Error: please upload OPML file."
@@ -1737,10 +1835,10 @@ msgstr "Fehler: bitte eine OPML-Datei hochladen."
msgid "Error while parsing document."
msgstr "Fehler beim Parsen des Dokuments."
-#: classes/pref/users.php:6 plugins/instances/init.php:157
+#: classes/pref/users.php:6
+#: plugins/instances/init.php:157
msgid "Your access level is insufficient to open this tab."
-msgstr ""
-"Sie haben nicht die benötigten Rechte um diese Registerkarte zu öffnen."
+msgstr "Sie haben nicht die benötigten Rechte um diese Registerkarte zu öffnen."
#: classes/pref/users.php:27
msgid "User details"
@@ -1750,7 +1848,8 @@ msgstr "Benutzerdetails"
msgid "User not found"
msgstr "Benutzer nicht gefunden"
-#: classes/pref/users.php:60 classes/pref/users.php:440
+#: classes/pref/users.php:60
+#: classes/pref/users.php:440
msgid "Registered"
msgstr "Registriert"
@@ -1778,7 +1877,8 @@ msgstr "Zugriffsberechtigung: "
msgid "Change password to"
msgstr "Passwort ändern in"
-#: classes/pref/users.php:177 classes/pref/feeds.php:577
+#: classes/pref/users.php:177
+#: classes/pref/feeds.php:577
#: classes/pref/feeds.php:799
msgid "Options"
msgstr "Optionen"
@@ -1803,11 +1903,11 @@ msgid "User <b>%s</b> already exists."
msgstr "Benutzer <b>%s</b> existiert bereits."
#: classes/pref/users.php:292
-#, fuzzy, php-format
+#, php-format
msgid ""
"Changed password of user <b>%s</b>\n"
"\t\t\t\t to <b>%s</b>"
-msgstr "Passwort für Benutzer <b>%s</b> auf <b>%s</b> geändert."
+msgstr "Passwort für Benutzer <b>%s</b> auf <b>%s</b> geändert"
#: classes/pref/users.php:299
#, php-format
@@ -1822,7 +1922,8 @@ msgstr "[tt-rss] Benachrichtigung: Passwort geändert"
msgid "Create user"
msgstr "Benutzer anlegen"
-#: classes/pref/users.php:392 classes/pref/filters.php:593
+#: classes/pref/users.php:392
+#: classes/pref/filters.php:593
#: plugins/instances/init.php:296
msgid "Edit"
msgstr "Bearbeiten"
@@ -1839,7 +1940,8 @@ msgstr "Zugriffsberechtigung"
msgid "Last login"
msgstr "Zuletzt angemeldet"
-#: classes/pref/users.php:462 plugins/instances/init.php:337
+#: classes/pref/users.php:462
+#: plugins/instances/init.php:337
msgid "Click to edit"
msgstr "Zum Bearbeiten klicken"
@@ -1882,40 +1984,42 @@ msgstr "Artikel, die auf diesen Filter passen: "
#: classes/pref/filters.php:94
msgid "No recent articles matching this filter have been found."
-msgstr ""
-"Keine kürzlich erschienenen Artikel gefunden, die auf diesen Filter passen."
+msgstr "Keine kürzlich erschienenen Artikel gefunden, die auf diesen Filter passen."
#: classes/pref/filters.php:98
-msgid ""
-"Complex expressions might not give results while testing due to issues with "
-"database server regexp implementation."
-msgstr ""
-"Komplexe Filter liefern im Testmodus möglichweise keine Ergebnisse, da es "
-"Probleme mit der RegExp-Implementierung des Datenbankservers gibt."
+msgid "Complex expressions might not give results while testing due to issues with database server regexp implementation."
+msgstr "Komplexe Filter liefern im Testmodus möglichweise keine Ergebnisse, da es Probleme mit der RegExp-Implementierung des Datenbankservers gibt."
-#: classes/pref/filters.php:225 classes/pref/filters.php:652
+#: classes/pref/filters.php:225
+#: classes/pref/filters.php:652
#: classes/pref/filters.php:767
msgid "Match"
-msgstr "Übereinstimmung"
+msgstr "Kriterien"
-#: classes/pref/filters.php:239 classes/pref/filters.php:286
-#: classes/pref/filters.php:666 classes/pref/filters.php:693
+#: classes/pref/filters.php:239
+#: classes/pref/filters.php:286
+#: classes/pref/filters.php:666
+#: classes/pref/filters.php:693
msgid "Add"
msgstr "Hinzufügen"
-#: classes/pref/filters.php:272 classes/pref/filters.php:679
+#: classes/pref/filters.php:272
+#: classes/pref/filters.php:679
msgid "Apply actions"
msgstr "Aktionen anwenden"
-#: classes/pref/filters.php:322 classes/pref/filters.php:708
+#: classes/pref/filters.php:322
+#: classes/pref/filters.php:708
msgid "Enabled"
msgstr "Aktiviert"
-#: classes/pref/filters.php:331 classes/pref/filters.php:711
+#: classes/pref/filters.php:331
+#: classes/pref/filters.php:711
msgid "Match any rule"
-msgstr "Einzelne Übereinstimmung ist ausreichend"
+msgstr "Ein erfülltes Kriterium ist ausreichend"
-#: classes/pref/filters.php:343 classes/pref/filters.php:723
+#: classes/pref/filters.php:343
+#: classes/pref/filters.php:723
msgid "Test"
msgstr "Test"
@@ -1928,7 +2032,8 @@ msgstr "%s innerhalb %s von %s"
msgid "Combine"
msgstr "Zusammenfügen"
-#: classes/pref/filters.php:600 classes/pref/feeds.php:1283
+#: classes/pref/filters.php:600
+#: classes/pref/feeds.php:1283
msgid "Rescore articles"
msgstr "Artikel neu bewerten"
@@ -1940,7 +2045,8 @@ msgstr "Erstellen"
msgid "on field"
msgstr "in Feld"
-#: classes/pref/filters.php:782 js/PrefFilterTree.js:29
+#: classes/pref/filters.php:782
+#: js/PrefFilterTree.js:29
#: plugins/digest/digest.js:241
msgid "in"
msgstr "in"
@@ -1949,7 +2055,8 @@ msgstr "in"
msgid "Save rule"
msgstr "Regel speichern"
-#: classes/pref/filters.php:795 js/functions.js:1078
+#: classes/pref/filters.php:795
+#: js/functions.js:1078
msgid "Add rule"
msgstr "Regel hinzufügen"
@@ -1965,7 +2072,8 @@ msgstr "mit Parametern:"
msgid "Save action"
msgstr "Aktion speichern"
-#: classes/pref/filters.php:862 js/functions.js:1104
+#: classes/pref/filters.php:862
+#: js/functions.js:1104
msgid "Add action"
msgstr "Aktion hinzufügen"
@@ -1983,7 +2091,7 @@ msgstr "Die eingegebenen Passwörter stimmen nicht überein."
#: classes/pref/prefs.php:37
msgid "Function not supported by authentication module."
-msgstr ""
+msgstr "Funktion vom Authentifizierungsmodul nicht unterstützt."
#: classes/pref/prefs.php:69
msgid "The configuration was saved."
@@ -2000,7 +2108,7 @@ msgstr "Ihre persönlichen Daten wurden gespeichert."
#: classes/pref/prefs.php:137
msgid "Personal data / Authentication"
-msgstr "Persönliche Daten / Anmeldung"
+msgstr "Persönliche Daten / Authentifizierung"
#: classes/pref/prefs.php:157
msgid "Personal data"
@@ -2046,7 +2154,8 @@ msgstr "Passwort ändern"
msgid "One time passwords / Authenticator"
msgstr "Einmalpasswörter (OTP) / Authentifikator"
-#: classes/pref/prefs.php:294 classes/pref/prefs.php:345
+#: classes/pref/prefs.php:294
+#: classes/pref/prefs.php:345
msgid "Enter your password"
msgstr "Geben Sie Ihr Passwort ein"
@@ -2055,12 +2164,8 @@ msgid "Disable OTP"
msgstr "Einmalpasswörter ausschalten"
#: classes/pref/prefs.php:311
-msgid ""
-"You will need a compatible Authenticator to use this. Changing your password "
-"would automatically disable OTP."
-msgstr ""
-"Sie benötigen einen kompatiblen Authentifikator. Sollten Sie Ihr Passwort "
-"ändern, wird diese Funktion automatisch ausgeschaltet."
+msgid "You will need a compatible Authenticator to use this. Changing your password would automatically disable OTP."
+msgstr "Sie benötigen einen kompatiblen Authentifikator. Sollten Sie Ihr Passwort ändern, wird diese Funktion automatisch ausgeschaltet."
#: classes/pref/prefs.php:313
msgid "Scan the following code by the Authenticator application:"
@@ -2068,9 +2173,7 @@ msgstr "Scannen Sie den folgenden Code mit Ihrem Authentifikator:"
#: classes/pref/prefs.php:354
msgid "I have scanned the code and would like to enable OTP"
-msgstr ""
-"Ich habe den Code gescannt und möchte die Anmeldung mit Einmalpasswörtern "
-"jetzt aktivieren"
+msgstr "Ich habe den Code gescannt und möchte die Anmeldung mit Einmalpasswörtern jetzt aktivieren"
#: classes/pref/prefs.php:362
msgid "Enable OTP"
@@ -2109,35 +2212,39 @@ msgstr "Auf Standardwerte zurücksetzen"
msgid "Show additional preferences"
msgstr "Erweiterte Einstellungen zeigen"
-#: classes/pref/prefs.php:625 classes/pref/prefs.php:627
-#, fuzzy
+#: classes/pref/prefs.php:625
+#: classes/pref/prefs.php:627
msgid "Plugins"
-msgstr "Benutzer-Plugins"
+msgstr "Plugins"
#: classes/pref/prefs.php:655
-#, fuzzy
msgid "System plugins"
-msgstr "Benutzer-Plugins"
+msgstr "System-Plugins"
-#: classes/pref/prefs.php:659 classes/pref/prefs.php:708
+#: classes/pref/prefs.php:659
+#: classes/pref/prefs.php:708
msgid "Plugin"
-msgstr ""
+msgstr "Plugin"
-#: classes/pref/prefs.php:660 classes/pref/prefs.php:709
+#: classes/pref/prefs.php:660
+#: classes/pref/prefs.php:709
msgid "Description"
-msgstr ""
+msgstr "Beschreibung"
-#: classes/pref/prefs.php:661 classes/pref/prefs.php:710
+#: classes/pref/prefs.php:661
+#: classes/pref/prefs.php:710
msgid "Version"
-msgstr ""
+msgstr "Version"
-#: classes/pref/prefs.php:662 classes/pref/prefs.php:711
+#: classes/pref/prefs.php:662
+#: classes/pref/prefs.php:711
msgid "Author"
msgstr "Autor"
-#: classes/pref/prefs.php:695 classes/pref/prefs.php:746
+#: classes/pref/prefs.php:695
+#: classes/pref/prefs.php:746
msgid "Clear data"
-msgstr "Feed-Daten löschen"
+msgstr "Daten löschen"
#: classes/pref/prefs.php:704
msgid "User plugins"
@@ -2147,7 +2254,8 @@ msgstr "Benutzer-Plugins"
msgid "Enable selected plugins"
msgstr "Ausgewählte Plugins aktivieren"
-#: classes/pref/prefs.php:816 classes/pref/prefs.php:834
+#: classes/pref/prefs.php:816
+#: classes/pref/prefs.php:834
msgid "Incorrect password"
msgstr "Falsches Passwort"
@@ -2155,52 +2263,57 @@ msgstr "Falsches Passwort"
msgid "Check to enable field"
msgstr "Ankreuzen um das Feld zu aktivieren"
-#: classes/pref/feeds.php:58 classes/pref/feeds.php:175
-#: classes/pref/feeds.php:217 classes/pref/feeds.php:223
+#: classes/pref/feeds.php:58
+#: classes/pref/feeds.php:175
+#: classes/pref/feeds.php:217
+#: classes/pref/feeds.php:223
#: classes/pref/feeds.php:248
#, php-format
msgid "(%d feeds)"
-msgstr "(%d) Feeds"
+msgstr "(%d Feeds)"
#: classes/pref/feeds.php:494
msgid "Feed Title"
msgstr "Feed-Titel"
-#: classes/pref/feeds.php:550 classes/pref/feeds.php:774
+#: classes/pref/feeds.php:550
+#: classes/pref/feeds.php:774
msgid "Article purging:"
msgstr "Artikel löschen:"
#: classes/pref/feeds.php:573
-msgid ""
-"<b>Hint:</b> you need to fill in your login information if your feed "
-"requires authentication, except for Twitter feeds."
-msgstr ""
-"<b>Hinweise:</b> Sie müssen Ihre Login-Informationen eingeben, wenn Ihr Feed "
-"eine Authentifizierung erfordert (außer Twitter-Feeds)."
+msgid "<b>Hint:</b> you need to fill in your login information if your feed requires authentication, except for Twitter feeds."
+msgstr "<b>Hinweis:</b> Sie müssen Ihre Login-Informationen eingeben, wenn Ihr Feed eine Authentifizierung erfordert (außer Twitter-Feeds)."
-#: classes/pref/feeds.php:589 classes/pref/feeds.php:803
+#: classes/pref/feeds.php:589
+#: classes/pref/feeds.php:803
msgid "Hide from Popular feeds"
-msgstr "Auf meiner Feedliste verbergen"
+msgstr "Nicht unter beliebten Feeds aufführen"
-#: classes/pref/feeds.php:601 classes/pref/feeds.php:809
+#: classes/pref/feeds.php:601
+#: classes/pref/feeds.php:809
msgid "Include in e-mail digest"
msgstr "In E-Mail-Zusammenfassung aufnehmen"
-#: classes/pref/feeds.php:614 classes/pref/feeds.php:815
+#: classes/pref/feeds.php:614
+#: classes/pref/feeds.php:815
msgid "Always display image attachments"
msgstr "Angehängte Bilder immer anzeigen"
-#: classes/pref/feeds.php:627 classes/pref/feeds.php:823
+#: classes/pref/feeds.php:627
+#: classes/pref/feeds.php:823
msgid "Do not embed images"
-msgstr ""
+msgstr "Bilder nicht einbetten"
-#: classes/pref/feeds.php:640 classes/pref/feeds.php:831
+#: classes/pref/feeds.php:640
+#: classes/pref/feeds.php:831
msgid "Cache images locally"
msgstr "Bilder lokal zwischenspeichern"
-#: classes/pref/feeds.php:652 classes/pref/feeds.php:837
+#: classes/pref/feeds.php:652
+#: classes/pref/feeds.php:837
msgid "Mark updated articles as unread"
-msgstr "Alle Artikel als ungelesen markieren"
+msgstr "Aktualisierte Artikel als ungelesen markieren"
#: classes/pref/feeds.php:658
msgid "Icon"
@@ -2216,17 +2329,16 @@ msgstr "Abonnierte Feeds:"
#: classes/pref/feeds.php:698
msgid "Resets PubSubHubbub subscription status for push-enabled feeds."
-msgstr "PubSubHubbub-Abonnementstatus für push-enabled Feeds zurücksetzen"
+msgstr "PubSubHubbub-Abonnementstatus für Push-fähige Feeds zurücksetzen."
#: classes/pref/feeds.php:713
msgid "Enable the options you wish to apply using checkboxes on the right:"
-msgstr ""
-"Benutzen Sie die Auswahlkästchen auf der rechten Seite um die gewünschen "
-"Optionen anzuwenden:"
+msgstr "Benutzen Sie die Auswahlkästchen auf der rechten Seite um die gewünschen Optionen anzuwenden:"
-#: classes/pref/feeds.php:1077 classes/pref/feeds.php:1130
+#: classes/pref/feeds.php:1077
+#: classes/pref/feeds.php:1130
msgid "All done."
-msgstr "Alle fertig."
+msgstr "Fertig."
#: classes/pref/feeds.php:1185
msgid "Feeds with errors"
@@ -2238,13 +2350,15 @@ msgstr "Inaktive Feeds"
#: classes/pref/feeds.php:1242
msgid "Edit selected feeds"
-msgstr "Bearbeite gewählten Feed..."
+msgstr "Bearbeite ausgewählte Feeds"
-#: classes/pref/feeds.php:1244 classes/pref/feeds.php:1258
+#: classes/pref/feeds.php:1244
+#: classes/pref/feeds.php:1258
msgid "Reset sort order"
msgstr "Sortierreihenfolge zurücksetzen"
-#: classes/pref/feeds.php:1246 js/prefs.js:1785
+#: classes/pref/feeds.php:1246
+#: js/prefs.js:1785
msgid "Batch subscribe"
msgstr "Mehrere Feeds abonnieren"
@@ -2270,7 +2384,7 @@ msgstr "Mehr Aktionen..."
#: classes/pref/feeds.php:1278
msgid "Manual purge"
-msgstr "Manuelle Säuberung"
+msgstr "Manuelles Löschen"
#: classes/pref/feeds.php:1282
msgid "Clear feed data"
@@ -2281,12 +2395,8 @@ msgid "OPML"
msgstr "OPML"
#: classes/pref/feeds.php:1335
-msgid ""
-"Using OPML you can export and import your feeds, filters, labels and Tiny "
-"Tiny RSS settings."
-msgstr ""
-"Über OPML können Feeds, Filter, Label und Tiny-Tiny-RSS-Einstellungen "
-"importiert und export werden."
+msgid "Using OPML you can export and import your feeds, filters, labels and Tiny Tiny RSS settings."
+msgstr "Über OPML können Feeds, Filter, Label und Tiny-Tiny-RSS-Einstellungen importiert und exportiert werden."
#: classes/pref/feeds.php:1337
msgid "Only main settings profile can be migrated using OPML."
@@ -2298,32 +2408,23 @@ msgstr "OPML importieren"
#: classes/pref/feeds.php:1354
msgid "Filename:"
-msgstr "Dateiname"
+msgstr "Dateiname:"
#: classes/pref/feeds.php:1356
msgid "Include settings"
-msgstr "Einstellungen hinzufügen"
+msgstr "Inklusive Einstellungen"
#: classes/pref/feeds.php:1360
msgid "Export OPML"
msgstr "OPML exportieren"
#: classes/pref/feeds.php:1364
-msgid ""
-"Your OPML can be published publicly and can be subscribed by anyone who "
-"knows the URL below."
-msgstr ""
-"Veröffentlichte Artikel werden als öffentlicher RSS-Feed exportiert und "
-"können von jedem abonniert werden, der die folgende URL kennt."
+msgid "Your OPML can be published publicly and can be subscribed by anyone who knows the URL below."
+msgstr "Ihre OPML können veröffentlicht werden, so dass jeder, der die URL kennt, diese abonnieren kann."
#: classes/pref/feeds.php:1366
-msgid ""
-"Published OPML does not include your Tiny Tiny RSS settings, feeds that "
-"require authentication or feeds hidden from Popular feeds."
-msgstr ""
-"Eine öffentliche OPML enthält keine Tiny-Tiny-RSS-Einstellungen, "
-"passwortgeschützte Feeds oder Feeds, die nicht in den Favoriten enthalten "
-"sind."
+msgid "Published OPML does not include your Tiny Tiny RSS settings, feeds that require authentication or feeds hidden from Popular feeds."
+msgstr "Eine öffentliche OPML enthält keine Tiny-Tiny-RSS-Einstellungen, passwortgeschützte Feeds oder Feeds, die nicht in den beliebten Feeds auftauchen sollen."
#: classes/pref/feeds.php:1369
msgid "Display published OPML URL"
@@ -2334,12 +2435,8 @@ msgid "Firefox integration"
msgstr "Firefox-Integration"
#: classes/pref/feeds.php:1381
-msgid ""
-"This Tiny Tiny RSS site can be used as a Firefox Feed Reader by clicking the "
-"link below."
-msgstr ""
-"Tiny Tiny RSS kann durch den folgenden Link als Feedreader für Firefox "
-"verwendet werden."
+msgid "This Tiny Tiny RSS site can be used as a Firefox Feed Reader by clicking the link below."
+msgstr "Tiny Tiny RSS kann durch den folgenden Link als Feedreader für Firefox verwendet werden."
#: classes/pref/feeds.php:1388
msgid "Click here to register this site as a feed reader."
@@ -2347,19 +2444,15 @@ msgstr "Diese Website als Feedreader registrieren."
#: classes/pref/feeds.php:1396
msgid "Published & shared articles / Generated feeds"
-msgstr "Veröffentlichte & gesendete Artikel / erzeugte Feeds"
+msgstr "Veröffentlichte & geteilte Artikel / erzeugte Feeds"
#: classes/pref/feeds.php:1398
msgid "Published articles and generated feeds"
msgstr "Veröffentlichte Artikel und erzeugte Feeds"
#: classes/pref/feeds.php:1400
-msgid ""
-"Published articles are exported as a public RSS feed and can be subscribed "
-"by anyone who knows the URL specified below."
-msgstr ""
-"Veröffentlichte Artikel werden als öffentlicher RSS-Feed exportiert und "
-"können von jedem abonniert werden, der die nachstehende URL kennt."
+msgid "Published articles are exported as a public RSS feed and can be subscribed by anyone who knows the URL specified below."
+msgstr "Veröffentlichte Artikel werden als öffentlicher RSS-Feed exportiert und können von jedem abonniert werden, der die nachstehende URL kennt."
#: classes/pref/feeds.php:1406
msgid "Display URL"
@@ -2382,18 +2475,16 @@ msgid "Unshare all articles"
msgstr "Alle veröffentlichten Artikel zurückziehen"
#: classes/pref/feeds.php:1494
-msgid ""
-"These feeds have not been updated with new content for 3 months (oldest "
-"first):"
-msgstr ""
-"Folgende Feeds konnten seit 3 Monaten nicht aktualisiert werden (älteste "
-"zuerst):"
+msgid "These feeds have not been updated with new content for 3 months (oldest first):"
+msgstr "Folgende Feeds konnten seit 3 Monaten nicht aktualisiert werden (älteste zuerst):"
-#: classes/pref/feeds.php:1531 classes/pref/feeds.php:1600
+#: classes/pref/feeds.php:1531
+#: classes/pref/feeds.php:1600
msgid "Click to edit feed"
msgstr "Zum Bearbeiten klicken"
-#: classes/pref/feeds.php:1549 classes/pref/feeds.php:1620
+#: classes/pref/feeds.php:1549
+#: classes/pref/feeds.php:1620
msgid "Unsubscribe from selected feeds"
msgstr "Ausgewählte Feeds abbestellen"
@@ -2403,17 +2494,16 @@ msgstr "Folgende Feeds konnten aufgrund von Fehlern nicht aktualisiert werden:"
#: plugins/pocket/init.php:30
msgid "Pocket"
-msgstr ""
+msgstr "Pocket"
#: plugins/digest/digest_body.php:39
-#, fuzzy
msgid ""
"Your browser doesn't support Javascript, which is required\n"
"\t\t\tfor this application to function properly. Please check your\n"
"\t\t\tbrowser settings."
msgstr ""
"Diese Anwendung benötigt Javascript um ordnungsgemäß zu\n"
-"\t\tfunktionieren.\t\tBitte überprüfen Sie Ihre Browser-Einstellungen."
+"\t\tfunktionieren. Bitte überprüfen Sie Ihre Browser-Einstellungen."
#: plugins/digest/digest_body.php:51
msgid "Back to feeds"
@@ -2431,13 +2521,14 @@ msgstr "Reguläre Version"
msgid "Close article"
msgstr "Artikel schließen"
-#: plugins/nsfw/init.php:32 plugins/nsfw/init.php:43
+#: plugins/nsfw/init.php:32
+#: plugins/nsfw/init.php:43
msgid "Not work safe (click to toggle)"
-msgstr ""
+msgstr "NSFW (Klicken zum Anzeigen)"
#: plugins/nsfw/init.php:53
msgid "NSFW Plugin"
-msgstr ""
+msgstr "NSFW Plugin"
#: plugins/nsfw/init.php:80
msgid "Tags to consider NSFW (comma-separated)"
@@ -2449,7 +2540,7 @@ msgstr "Die Einstellungen wurden gespeichert."
#: plugins/pinterest/init.php:29
msgid "Pinterest"
-msgstr ""
+msgstr "Pinterest"
#: plugins/auth_internal/init.php:62
msgid "Please enter your one time password:"
@@ -2463,46 +2554,41 @@ msgstr "Passwort wurde geändert."
msgid "Old password is incorrect."
msgstr "Altes Passwort ist falsch."
-#: plugins/mailto/init.php:52 plugins/mailto/init.php:58
-#: plugins/mail/init.php:71 plugins/mail/init.php:77
+#: plugins/mailto/init.php:52
+#: plugins/mailto/init.php:58
+#: plugins/mail/init.php:71
+#: plugins/mail/init.php:77
msgid "[Forwarded]"
msgstr "[Weitergeleitet]"
-#: plugins/mailto/init.php:52 plugins/mail/init.php:71
+#: plugins/mailto/init.php:52
+#: plugins/mail/init.php:71
msgid "Multiple articles"
msgstr "Mehrere Artikel"
#: plugins/mailto/init.php:74
msgid "Clicking the following link to invoke your mail client:"
-msgstr ""
+msgstr "Klicken Sie den folgenden Link, um Ihren Mailclienten aufzurufen:"
#: plugins/mailto/init.php:78
-#, fuzzy
msgid "Forward selected article(s) by email."
-msgstr "Artikel via E-Mail weiterleiten"
+msgstr "Markierte(n) Artikel per E-Mail weiterleiten"
#: plugins/mailto/init.php:81
-msgid ""
-"You should be able to edit the message before sending in your mail client."
-msgstr ""
+msgid "You should be able to edit the message before sending in your mail client."
+msgstr "Sie können die Nachricht bearbeiten, bevor Sie diese mit Ihrem Mailclienten abschicken."
#: plugins/mailto/init.php:86
-#, fuzzy
msgid "Close this dialog"
-msgstr "Dieses Panel schließen"
+msgstr "Diesen Dialog schließen"
#: plugins/bookmarklets/init.php:22
msgid "Bookmarklets"
-msgstr ""
+msgstr "Lesezeichen"
#: plugins/bookmarklets/init.php:24
-msgid ""
-"Drag the link below to your browser toolbar, open the feed you're interested "
-"in in your browser and click on the link to subscribe to it."
-msgstr ""
-"Ziehen Sie den folgenden Link in Ihre Browser-Toolbar, öffnen den Feed, an "
-"dem Sie interessiert sind in Ihren Browser und klicken auf den Link, um ihn "
-"zu abonnieren."
+msgid "Drag the link below to your browser toolbar, open the feed you're interested in in your browser and click on the link to subscribe to it."
+msgstr "Ziehen Sie den folgenden Link in Ihre Browser-Toolbar, öffnen Sie den Feed, an dem Sie interessiert sind, in Ihren Browser und klicken auf den Link, um ihn zu abonnieren."
#: plugins/bookmarklets/init.php:28
#, php-format
@@ -2515,7 +2601,7 @@ msgstr "Abonnieren in Tiny Tiny RSS"
#: plugins/bookmarklets/init.php:34
msgid "Use this bookmarklet to publish arbitrary pages using Tiny Tiny RSS"
-msgstr ""
+msgstr "Benutzen Sie dieses Lesezeichen, um beliebige Seiten mit Tiny Tiny RSS zu teilen"
#: plugins/import_export/init.php:64
msgid "Import and export"
@@ -2526,10 +2612,8 @@ msgid "Article archive"
msgstr "Artikelarchiv"
#: plugins/import_export/init.php:68
-msgid ""
-"You can export and import your Starred and Archived articles for safekeeping "
-"or when migrating between tt-rss instances."
-msgstr "Die markierten und archivierten Artikel können exportiert werden."
+msgid "You can export and import your Starred and Archived articles for safekeeping or when migrating between tt-rss instances."
+msgstr "Die markierten und archivierten Artikel können zur Aufbewahrung oder Migration zwischen verschiedenen Tiny Tiny RSS Instanzen exportiert werden."
#: plugins/import_export/init.php:71
msgid "Export my data"
@@ -2545,7 +2629,7 @@ msgstr "Import fehlgeschlagen: Falsche Schemaversion"
#: plugins/import_export/init.php:226
msgid "Could not import: unrecognized document format."
-msgstr "Import fehlgeschlagen: Unbekanntes Format"
+msgstr "Import fehlgeschlagen: Unbekanntes Dateiformat"
#: plugins/import_export/init.php:385
#, php-format
@@ -2561,13 +2645,13 @@ msgid "Prepare data"
msgstr "Bereite Daten vor"
#: plugins/import_export/init.php:424
-#, fuzzy, php-format
+#, php-format
msgid ""
"Could not upload file. You might need to adjust upload_max_filesize\n"
"\t\t\t\tin PHP.ini (current value = %s)"
msgstr ""
"Datei konnte nicht hochgeladen werden. Bitte upload_max_filesize \n"
-"in PHP.ini anpassen. (Aktueller Wert = %s)"
+"\t\t\tin PHP.ini anpassen. (Aktueller Wert = %s)"
#: plugins/mail/init.php:92
msgid "From:"
@@ -2585,13 +2669,14 @@ msgstr "Betreff:"
msgid "Send e-mail"
msgstr "E-Mail versenden"
-#: plugins/note/init.php:28 plugins/note/note.js:11
+#: plugins/note/init.php:28
+#: plugins/note/note.js:11
msgid "Edit article note"
msgstr "Artikelnotizen bearbeiten"
#: plugins/example/init.php:38
msgid "Example Pane"
-msgstr ""
+msgstr "Beispiel Pane"
#: plugins/example/init.php:69
msgid "Sample value"
@@ -2607,32 +2692,27 @@ msgstr "Auf identi.ca teilen"
#: plugins/owncloud/init.php:35
msgid "Owncloud"
-msgstr ""
+msgstr "Owncloud"
#: plugins/owncloud/init.php:59
msgid "Owncloud url"
-msgstr ""
+msgstr "Owncloud URL"
#: plugins/owncloud/init.php:74
msgid "Bookmark on OwnCloud "
-msgstr ""
+msgstr "Lesezeichen in OwnCloud anlegen"
#: plugins/instances/init.php:144
msgid "Linked"
-msgstr "Link"
+msgstr "Verbunden"
#: plugins/instances/init.php:295
msgid "Link instance"
msgstr "Instanz verbinden"
#: plugins/instances/init.php:307
-msgid ""
-"You can connect other instances of Tiny Tiny RSS to this one to share "
-"Popular feeds. Link to this instance of Tiny Tiny RSS by using this URL:"
-msgstr ""
-"Sie können andere Instanzen von Tiny Tiny RSS mit dieser verbinden um "
-"beliebte Feeds zu teilen. Verbinden Sie diese Instanz von Tiny Tiny RSS mit "
-"folgender URL:"
+msgid "You can connect other instances of Tiny Tiny RSS to this one to share Popular feeds. Link to this instance of Tiny Tiny RSS by using this URL:"
+msgstr "Sie können andere Instanzen von Tiny Tiny RSS mit dieser verbinden, um beliebte Feeds zu teilen. Verbinden Sie diese Instanz von Tiny Tiny RSS mit folgender URL:"
#: plugins/instances/init.php:317
msgid "Last connected"
@@ -2640,7 +2720,7 @@ msgstr "Zuletzt verbunden"
#: plugins/instances/init.php:318
msgid "Status"
-msgstr ""
+msgstr "Status"
#: plugins/instances/init.php:319
msgid "Stored feeds"
@@ -2652,18 +2732,18 @@ msgstr "Per URL teilen"
#: plugins/share/init.php:49
msgid "You can share this article by the following unique URL:"
-msgstr "Sie können diesen Artikel über folgende URL teilen:"
+msgstr "Sie können diesen Artikel über folgende eindeutige URL teilen:"
#: plugins/flattr/init.php:30
-#, fuzzy
msgid "Flattr this article."
-msgstr "Artikel flattrn"
+msgstr "Artikel flattrn."
#: plugins/googleplus/init.php:29
msgid "Share on Google+"
msgstr "Auf Google+ teilen"
-#: plugins/updater/init.php:295 plugins/updater/init.php:307
+#: plugins/updater/init.php:295
+#: plugins/updater/init.php:307
#: plugins/updater/updater.js:10
msgid "Update Tiny Tiny RSS"
msgstr "Tiny Tiny RSS updaten"
@@ -2673,10 +2753,8 @@ msgid "Your Tiny Tiny RSS installation is up to date."
msgstr "Tiny Tiny RSS ist auf dem neuesten Stand."
#: plugins/updater/init.php:320
-msgid ""
-"Do not close this dialog until updating is finished. Backup your tt-rss "
-"directory before continuing."
-msgstr ""
+msgid "Do not close this dialog until updating is finished. Backup your tt-rss directory before continuing."
+msgstr "Diesen Dialog nicht Schließen, bis das Update abgeschlossen ist. Sichern Sie ihr tt-rss Verzeichnis, bevor Sie fortfahren."
#: plugins/updater/init.php:323
msgid "Ready to update."
@@ -2684,7 +2762,7 @@ msgstr "Bereit zum Updaten."
#: plugins/updater/init.php:328
msgid "Start update"
-msgstr "Starte Iüdate"
+msgstr "Starte update"
#: plugins/tweet/init.php:29
msgid "Share on Twitter"
@@ -2692,20 +2770,17 @@ msgstr "Auf Twitter teilen"
#: js/feedlist.js:215
msgid "New articles available in this feed (click to show)"
-msgstr "Neue Artikel verfügbar (klicken zum anzeigen)"
+msgstr "Neue Artikel verfügbar (klicken zum Anzeigen)"
-#: js/feedlist.js:417 js/feedlist.js:432 plugins/digest/digest.js:25
+#: js/feedlist.js:417
+#: js/feedlist.js:432
+#: plugins/digest/digest.js:25
msgid "Mark all articles in %s as read?"
msgstr "Alle Artikel in %s als gelesen markieren?"
#: js/functions.js:91
-msgid ""
-"Are you sure to report this exception to tt-rss.org? The report will include "
-"your browser information. Your IP would be saved in the database."
-msgstr ""
-"Sind Sie sicher, dass Sie tt-rss.org diese Ausnahme melden wollen? Der "
-"Bericht enthält Ihre Browser-Informationen. Ihre IP-Adresse würde in der "
-"Datenbank gespeichert werden."
+msgid "Are you sure to report this exception to tt-rss.org? The report will include your browser information. Your IP would be saved in the database."
+msgstr "Sind Sie sicher, dass Sie diesen Fehler an tt-rss.org melden wollen? Der Bericht enthält Ihre Browser-Informationen. Ihre IP-Adresse würde in der Datenbank gespeichert werden."
#: js/functions.js:627
msgid "Date syntax appears to be correct:"
@@ -2717,7 +2792,7 @@ msgstr "Die Datumssyntax ist falsch."
#: js/functions.js:757
msgid "Remove stored feed icon?"
-msgstr "Gespeicherte Feed-Icons entfernen"
+msgstr "Gespeichertes Feed-Symbol entfernen?"
#: js/functions.js:789
msgid "Please select an image file to upload."
@@ -2725,7 +2800,7 @@ msgstr "Bitte eine Bilddatei zum Hochladen auswählen."
#: js/functions.js:791
msgid "Upload new icon for this feed?"
-msgstr "Neues Icon für diesen Feed hochladen"
+msgstr "Neues Symbol für diesen Feed hochladen?"
#: js/functions.js:808
msgid "Please enter label caption:"
@@ -2745,7 +2820,7 @@ msgstr "%s abonniert"
#: js/functions.js:888
msgid "Specified URL seems to be invalid."
-msgstr "Die angegebene URL scheint ungültig zu sein"
+msgstr "Die angegebene URL scheint ungültig zu sein."
#: js/functions.js:891
msgid "Specified URL doesn't seem to contain any feeds."
@@ -2753,7 +2828,7 @@ msgstr "Die angegebene URL scheint keine Feeds zu enthalten."
#: js/functions.js:944
msgid "Couldn't download the specified URL: %s"
-msgstr "Die angegebene Feed-URL konnte nicht heruntergeladen werden: %s"
+msgstr "Die angegebene URL konnte nicht heruntergeladen werden: %s"
#: js/functions.js:948
msgid "You are already subscribed to this feed."
@@ -2761,7 +2836,7 @@ msgstr "Sie haben diesen Feed bereits abonniert."
#: js/functions.js:1078
msgid "Edit rule"
-msgstr "Filter bearbeiten"
+msgstr "Regel bearbeiten"
#: js/functions.js:1104
msgid "Edit action"
@@ -2772,14 +2847,11 @@ msgid "Create Filter"
msgstr "Filter erstellen"
#: js/functions.js:1245
-msgid ""
-"Reset subscription? Tiny Tiny RSS will try to subscribe to the notification "
-"hub again on next feed update."
-msgstr ""
-"Abonnement zurücksetzen? Tiny Tiny RSS wird versuchen, sich bei der nächsten "
-"Feed-Aktualisierung erneut beim Benachrichtigungs-Hub anzumelden."
+msgid "Reset subscription? Tiny Tiny RSS will try to subscribe to the notification hub again on next feed update."
+msgstr "Abonnement zurücksetzen? Tiny Tiny RSS wird versuchen, sich bei der nächsten Feed-Aktualisierung erneut beim Benachrichtigungs-Hub anzumelden."
-#: js/functions.js:1266 js/tt-rss.js:369
+#: js/functions.js:1266
+#: js/tt-rss.js:369
msgid "Unsubscribe from %s?"
msgstr "%s abbestellen?"
@@ -2791,7 +2863,9 @@ msgstr "Bitte geben Sie den Kategorietitel ein:"
msgid "Generate new syndication address for this feed?"
msgstr "Neue Veröffentlichungsadresse für diesen Feed erzeugen?"
-#: js/functions.js:1597 js/tt-rss.js:350 js/tt-rss.js:729
+#: js/functions.js:1597
+#: js/tt-rss.js:350
+#: js/tt-rss.js:729
msgid "You can't edit this kind of feed."
msgstr "Sie können diese Art von Feed nicht bearbeiten."
@@ -2803,25 +2877,28 @@ msgstr "Feed bearbeiten"
msgid "More Feeds"
msgstr "Weitere Feeds"
-#: js/functions.js:1711 js/functions.js:1821 js/prefs.js:397 js/prefs.js:427
-#: js/prefs.js:459 js/prefs.js:642 js/prefs.js:662 js/prefs.js:1210
+#: js/functions.js:1711
+#: js/functions.js:1821
+#: js/prefs.js:397
+#: js/prefs.js:427
+#: js/prefs.js:459
+#: js/prefs.js:642
+#: js/prefs.js:662
+#: js/prefs.js:1210
#: js/prefs.js:1355
msgid "No feeds are selected."
msgstr "Keine Feeds ausgewählt."
#: js/functions.js:1753
-msgid ""
-"Remove selected feeds from the archive? Feeds with stored articles will not "
-"be removed."
-msgstr ""
-"Die ausgewählten Feeds aus dem Archiv löschen? Feeds mit gespeicherten "
-"Artikeln werden nicht gelöscht"
+msgid "Remove selected feeds from the archive? Feeds with stored articles will not be removed."
+msgstr "Die ausgewählten Feeds aus dem Archiv löschen? Feeds mit gespeicherten Artikeln werden nicht gelöscht"
#: js/functions.js:1792
msgid "Feeds with update errors"
msgstr "Feeds mit Aktualisierungsfehlern"
-#: js/functions.js:1803 js/prefs.js:1192
+#: js/functions.js:1803
+#: js/prefs.js:1192
msgid "Remove selected feeds?"
msgstr "Ausgewählte Feeds entfernen?"
@@ -2839,7 +2916,7 @@ msgstr "Kategorie entfernen"
#: js/PrefFilterTree.js:32
msgid "Inverse"
-msgstr "(Invertiert)"
+msgstr "Invertiert"
#: js/prefs.js:55
msgid "Please enter login:"
@@ -2859,21 +2936,21 @@ msgstr "Filter entfernen?"
#: js/prefs.js:279
msgid "Remove selected labels?"
-msgstr "Ausgewählte Labels entfernen?"
+msgstr "Ausgewählte Label entfernen?"
-#: js/prefs.js:295 js/prefs.js:1396
+#: js/prefs.js:295
+#: js/prefs.js:1396
msgid "No labels are selected."
-msgstr "Keine Labels ausgewählt."
+msgstr "Keine Label ausgewählt."
#: js/prefs.js:309
-msgid ""
-"Remove selected users? Neither default admin nor your account will be "
-"removed."
-msgstr ""
-"Ausgewählte Benutzer löschen? Weder der Administrator noch Ihr eigenes Konto "
-"werden gelöscht."
+msgid "Remove selected users? Neither default admin nor your account will be removed."
+msgstr "Ausgewählte Benutzer löschen? Weder der Administrator noch Ihr eigenes Konto werden gelöscht."
-#: js/prefs.js:326 js/prefs.js:507 js/prefs.js:528 js/prefs.js:567
+#: js/prefs.js:326
+#: js/prefs.js:507
+#: js/prefs.js:528
+#: js/prefs.js:567
msgid "No users are selected."
msgstr "Keine Benutzer ausgewählt."
@@ -2881,7 +2958,9 @@ msgstr "Keine Benutzer ausgewählt."
msgid "Remove selected filters?"
msgstr "Ausgewählte Filter entfernen?"
-#: js/prefs.js:359 js/prefs.js:597 js/prefs.js:616
+#: js/prefs.js:359
+#: js/prefs.js:597
+#: js/prefs.js:616
msgid "No filters are selected."
msgstr "Keine Filter ausgewählt."
@@ -2905,7 +2984,9 @@ msgstr "Artikel für wieviele Tage aufbewahren (0 - Standardwert nutzen)?"
msgid "Login field cannot be blank."
msgstr "Feld für Benutzername darf nicht leer sein."
-#: js/prefs.js:512 js/prefs.js:533 js/prefs.js:572
+#: js/prefs.js:512
+#: js/prefs.js:533
+#: js/prefs.js:572
msgid "Please select only one user."
msgstr "Bitte nur einen Benutzer auswählen."
@@ -2942,9 +3023,8 @@ msgid "Reset to defaults?"
msgstr "Auf Standardwerte zurücksetzen?"
#: js/prefs.js:1099
-msgid ""
-"Remove category %s? Any nested feeds would be placed into Uncategorized."
-msgstr ""
+msgid "Remove category %s? Any nested feeds would be placed into Uncategorized."
+msgstr "Kategorie %s löschen? Feeds dieser Kategorie werden dann nach Unkategorisiert verschoben."
#: js/prefs.js:1126
msgid "Remove selected categories?"
@@ -2956,7 +3036,7 @@ msgstr "Keine Kategorien ausgewählt."
#: js/prefs.js:1150
msgid "Category title:"
-msgstr "Titel der Kategorie:"
+msgstr "Name der Kategorie:"
#: js/prefs.js:1181
msgid "Feeds without recent updates"
@@ -2972,54 +3052,49 @@ msgstr "Artikel in gewählten Feeds neu bewerten?"
#: js/prefs.js:1362
msgid "Rescore all articles? This operation may take a lot of time."
-msgstr ""
-"Alle Artikel neu bewerten? Dieser Vorgang kann viel Zeit in Anspruch nehmen."
+msgstr "Alle Artikel neu bewerten? Dieser Vorgang kann viel Zeit in Anspruch nehmen."
#: js/prefs.js:1382
msgid "Reset selected labels to default colors?"
-msgstr "Label-Farben auf Standardwerte zurücksetzen?"
+msgstr "Farben der ausgewählten Label auf Standardwerte zurücksetzen?"
#: js/prefs.js:1419
msgid "Settings Profiles"
msgstr "Einstellungsprofile"
#: js/prefs.js:1428
-msgid ""
-"Remove selected profiles? Active and default profiles will not be removed."
-msgstr ""
-"Ausgewählte Profile löschen? Das aktive und das Standardprofil werden nicht "
-"gelöscht"
+msgid "Remove selected profiles? Active and default profiles will not be removed."
+msgstr "Ausgewählte Profile löschen? Das aktive und das Standardprofil werden nicht gelöscht."
#: js/prefs.js:1446
msgid "No profiles are selected."
msgstr "Keine Profile ausgewählt."
-#: js/prefs.js:1454 js/prefs.js:1507
+#: js/prefs.js:1454
+#: js/prefs.js:1507
msgid "Activate selected profile?"
msgstr "Ausgewählte Profile entfernen?"
-#: js/prefs.js:1470 js/prefs.js:1523
+#: js/prefs.js:1470
+#: js/prefs.js:1523
msgid "Please choose a profile to activate."
-msgstr "Bitte ein Profil zum aktivieren auswählen"
+msgstr "Bitte ein Profil zum Aktivieren auswählen."
#: js/prefs.js:1531
msgid "This will invalidate all previously generated feed URLs. Continue?"
-msgstr "Dies wird alle zuvor erstellten Feed-URLs ungültig machen. Fortfahren?"
+msgstr "Alle zuvor erstellten Feed-URLs werden ungültig. Fortfahren?"
#: js/prefs.js:1550
msgid "This will invalidate all previously shared article URLs. Continue?"
-msgstr "Alle bisher geteilten Artikel URLs werden ungültig Weiter?"
+msgstr "Alle bisher geteilten Artikel URLs werden ungültig. Fortfahren?"
#: js/prefs.js:1648
msgid "Label Editor"
msgstr "Label-Editor"
#: js/prefs.js:1711
-msgid ""
-"This will clear your stored authentication information for Twitter. Continue?"
-msgstr ""
-"Dies wird Ihre gespeicherten Authentifizierungsinformationen für Twitter "
-"löschen. Fortfahren?"
+msgid "This will clear your stored authentication information for Twitter. Continue?"
+msgstr "Dies wird Ihre gespeicherten Authentifizierungsinformationen für Twitter löschen. Fortfahren?"
#: js/prefs.js:1791
msgid "Subscribing to feeds..."
@@ -3027,7 +3102,7 @@ msgstr "Abonniere Feeds..."
#: js/prefs.js:1828
msgid "Clear stored data for this plugin?"
-msgstr ""
+msgstr "Gesicherte Daten dieses Plugins löschen?"
#: js/tt-rss.js:120
msgid "Mark all articles as read?"
@@ -3037,7 +3112,8 @@ msgstr "Alle Artikel als gelesen markieren?"
msgid "You can't unsubscribe from the category."
msgstr "Sie können die Kategorie nicht abbestellen."
-#: js/tt-rss.js:363 js/tt-rss.js:513
+#: js/tt-rss.js:363
+#: js/tt-rss.js:513
msgid "Please select some feed first."
msgstr "Bitte erst einen Feed auswählen."
@@ -3061,91 +3137,101 @@ msgstr "Neue Version verfügbar!"
msgid "Cancel search"
msgstr "Suche abbrechen"
-#: js/viewfeed.js:435 plugins/digest/digest.js:257
+#: js/viewfeed.js:435
+#: plugins/digest/digest.js:257
#: plugins/digest/digest.js:696
msgid "Unstar article"
-msgstr "Artikelbewertung zurücknehmen"
+msgstr "Artikelmarkierung entfernen"
-#: js/viewfeed.js:440 plugins/digest/digest.js:259
+#: js/viewfeed.js:440
+#: plugins/digest/digest.js:259
#: plugins/digest/digest.js:700
msgid "Star article"
-msgstr "Artikel bewerten"
+msgstr "Artikel markieren"
-#: js/viewfeed.js:473 plugins/digest/digest.js:262
+#: js/viewfeed.js:473
+#: plugins/digest/digest.js:262
#: plugins/digest/digest.js:731
msgid "Unpublish article"
msgstr "Artikelveröffentlichung widerrufen"
-#: js/viewfeed.js:674 js/viewfeed.js:702 js/viewfeed.js:729 js/viewfeed.js:791
-#: js/viewfeed.js:823 js/viewfeed.js:960 js/viewfeed.js:1003
-#: js/viewfeed.js:1053 js/viewfeed.js:1967 plugins/mailto/init.js:7
+#: js/viewfeed.js:681
+#: js/viewfeed.js:709
+#: js/viewfeed.js:736
+#: js/viewfeed.js:798
+#: js/viewfeed.js:830
+#: js/viewfeed.js:967
+#: js/viewfeed.js:1010
+#: js/viewfeed.js:1060
+#: js/viewfeed.js:1987
+#: plugins/mailto/init.js:7
#: plugins/mail/mail.js:7
msgid "No articles are selected."
msgstr "Keine Artikel ausgewählt."
-#: js/viewfeed.js:940
+#: js/viewfeed.js:947
msgid "Mark all visible articles in %s as read?"
msgstr "Alle sichtbaren Artikel in %s als gelesen markieren?"
-#: js/viewfeed.js:968
+#: js/viewfeed.js:975
msgid "Delete %d selected articles in %s?"
msgstr "%d ausgewählte Artikel in %s löschen?"
-#: js/viewfeed.js:970
+#: js/viewfeed.js:977
msgid "Delete %d selected articles?"
msgstr "%d ausgewählte Artikel löschen?"
-#: js/viewfeed.js:1012
+#: js/viewfeed.js:1019
msgid "Archive %d selected articles in %s?"
msgstr "%d ausgewählte Artikel in %s archivieren?"
-#: js/viewfeed.js:1015
+#: js/viewfeed.js:1022
msgid "Move %d archived articles back?"
-msgstr "%d archivierte Artikel zurück verschieben"
+msgstr "%d archivierte Artikel zurück verschieben?"
-#: js/viewfeed.js:1059
+#: js/viewfeed.js:1066
msgid "Mark %d selected articles in %s as read?"
msgstr "%d ausgewählte Artikel in %s als gelesen markieren?"
-#: js/viewfeed.js:1083
+#: js/viewfeed.js:1090
msgid "Edit article Tags"
msgstr "Artikel-Tags bearbeiten"
-#: js/viewfeed.js:1252
+#: js/viewfeed.js:1259
msgid "No article is selected."
msgstr "Kein Artikel ausgewählt."
-#: js/viewfeed.js:1287
+#: js/viewfeed.js:1294
msgid "No articles found to mark"
-msgstr "Keine Artikel zum markieren gefunden."
+msgstr "Keine Artikel zum markieren gefunden"
-#: js/viewfeed.js:1289
+#: js/viewfeed.js:1296
msgid "Mark %d article(s) as read?"
msgstr "%d Artikel als gelesen markieren?"
-#: js/viewfeed.js:1784
+#: js/viewfeed.js:1804
msgid "Open original article"
msgstr "Originalartikel öffnen"
-#: js/viewfeed.js:1854
+#: js/viewfeed.js:1874
msgid "Remove label"
-msgstr "Ausgewähltes Label entfernen?"
+msgstr "Label entfernen"
-#: js/viewfeed.js:1878
+#: js/viewfeed.js:1898
msgid "Playing..."
msgstr "Abspielen..."
-#: js/viewfeed.js:1879
+#: js/viewfeed.js:1899
msgid "Click to pause"
msgstr "Zum Pausieren klicken"
-#: js/viewfeed.js:1936
+#: js/viewfeed.js:1956
msgid "Please enter new score for selected articles:"
-msgstr "Bitte geben Sie eine Bewertung für den ausgewählten Artikel ab:"
+msgstr "Bitte geben Sie eine neue Bewertung für die ausgewählten Artikel ab:"
-#: js/viewfeed.js:1978
+#: js/viewfeed.js:1998
msgid "Please enter new score for this article:"
-msgstr "Bitte geben Sie eine Bewertung für diesen Artikel ab:"
+msgstr "Bitte geben Sie eine neue Bewertung für diesen Artikel ab:"
#: plugins/digest/digest.js:71
msgid "Mark %d displayed articles as read?"
@@ -3153,26 +3239,26 @@ msgstr "%d Artikel als gelesen markieren?"
#: plugins/digest/digest.js:289
msgid "Error: unable to load article."
-msgstr "Fehler: bitte eine OPML Datei hochladen."
+msgstr "Fehler: konnte Artikel nicht laden."
#: plugins/digest/digest.js:447
msgid "Click to expand article."
-msgstr "Klicken um den Artikel aufzuklappen"
+msgstr "Klicken um den Artikel aufzuklappen."
#: plugins/digest/digest.js:518
-#, fuzzy
msgid "%d more..."
-msgstr "Gehe zu..."
+msgstr "%d mehr..."
#: plugins/digest/digest.js:525
msgid "No unread feeds."
-msgstr "Gelesene ein-/ausblenden"
+msgstr "Keine ungelesenen Feeds."
#: plugins/digest/digest.js:632
msgid "Load more..."
-msgstr "Gehe zu..."
+msgstr "Mehr laden..."
-#: plugins/mailto/init.js:21 plugins/mail/mail.js:21
+#: plugins/mailto/init.js:21
+#: plugins/mail/mail.js:21
msgid "Forward article by email"
msgstr "Artikel via E-Mail weiterleiten"
@@ -3181,12 +3267,8 @@ msgid "Export Data"
msgstr "Daten exportieren"
#: plugins/import_export/import_export.js:40
-msgid ""
-"Finished, exported %d articles. You can download the data <a "
-"class='visibleLink' href='%u'>here</a>."
-msgstr ""
-"Fertig, %d Artikel exportiert. <a class='visibleLink' href='%u'>Hier</a> "
-"herunterladen."
+msgid "Finished, exported %d articles. You can download the data <a class='visibleLink' href='%u'>here</a>."
+msgstr "Fertig, %d Artikel exportiert. <a class='visibleLink' href='%u'>Hier</a> herunterladen."
#: plugins/import_export/import_export.js:93
msgid "Data Import"
@@ -3208,7 +3290,8 @@ msgstr "Instanz bearbeiten"
msgid "Remove selected instances?"
msgstr "Ausgewählte Instanzen entfernen?"
-#: plugins/instances/instances.js:139 plugins/instances/instances.js:151
+#: plugins/instances/instances.js:139
+#: plugins/instances/instances.js:151
msgid "No instances are selected."
msgstr "Keine Instanzen ausgewählt."
@@ -3221,10 +3304,8 @@ msgid "Share article by URL"
msgstr "Artikel über URL teilen"
#: plugins/updater/updater.js:58
-msgid ""
-"Live updating is considered experimental. Backup your tt-rss directory "
-"before continuing. Please type 'yes' to continue."
-msgstr ""
+msgid "Live updating is considered experimental. Backup your tt-rss directory before continuing. Please type 'yes' to continue."
+msgstr "Direktes Updaten ist noch experimentell. Sichern Sie Ihr tt-rss Verzeichnis, bevor Sie fortfahren. Schreiben Sie 'yes' zum fortfahren."
#~ msgid "Yes"
#~ msgstr "Ja"
diff --git a/locale/es_ES/LC_MESSAGES/messages.mo b/locale/es_ES/LC_MESSAGES/messages.mo
index b31384c42..4b9b0d753 100644
--- a/locale/es_ES/LC_MESSAGES/messages.mo
+++ b/locale/es_ES/LC_MESSAGES/messages.mo
Binary files differ
diff --git a/locale/es_ES/LC_MESSAGES/messages.po b/locale/es_ES/LC_MESSAGES/messages.po
index 1f91eb1f5..cc7de552b 100644
--- a/locale/es_ES/LC_MESSAGES/messages.po
+++ b/locale/es_ES/LC_MESSAGES/messages.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: messages\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-03-20 10:24+0400\n"
+"POT-Creation-Date: 2013-03-20 15:53+0400\n"
"PO-Revision-Date: 2012-10-25 00:12+0100\n"
"Last-Translator: DavidM <[email protected]>\n"
"Language-Team: Español <[email protected]>\n"
@@ -266,7 +266,7 @@ msgstr ""
#: index.php:117 index.php:147 index.php:252 prefs.php:79
#: classes/backend.php:5 classes/pref/labels.php:296
#: classes/pref/filters.php:609 classes/pref/feeds.php:1296
-#: plugins/digest/digest_body.php:45 js/viewfeed.js:1174
+#: plugins/digest/digest_body.php:45 js/viewfeed.js:1181
msgid "Loading, please wait..."
msgstr "Cargando. Por favor, espere..."
@@ -340,7 +340,7 @@ msgstr "Actualizar"
#: index.php:191 index.php:221 include/functions.php:1906
#: include/localized_schema.php:10 classes/feeds.php:111 classes/feeds.php:136
-#: classes/feeds.php:408 js/FeedTree.js:128 js/FeedTree.js:156
+#: classes/feeds.php:410 js/FeedTree.js:128 js/FeedTree.js:156
#: plugins/digest/digest.js:630
msgid "Mark as read"
msgstr "Marcar como leído"
@@ -707,11 +707,11 @@ msgstr "Publicar artículo"
msgid "Open in new window"
msgstr "Abrir el artículo en una nueva pestaña o ventana"
-#: include/functions.php:1886 js/viewfeed.js:1798
+#: include/functions.php:1886 js/viewfeed.js:1818
msgid "Mark below as read"
msgstr "Marcar artículos posteriores como leídos"
-#: include/functions.php:1887 js/viewfeed.js:1792
+#: include/functions.php:1887 js/viewfeed.js:1812
msgid "Mark above as read"
msgstr "Marcar artículos anteriores como leídos"
@@ -861,39 +861,39 @@ msgstr "Mostrar el diálogo de búsqueda"
msgid "Search results: %s"
msgstr "Resultados de búsqueda: %s"
-#: include/functions.php:2892 js/viewfeed.js:1885
+#: include/functions.php:2893 js/viewfeed.js:1905
msgid "Click to play"
msgstr "Clic para reproducir"
-#: include/functions.php:2893 js/viewfeed.js:1884
+#: include/functions.php:2894 js/viewfeed.js:1904
msgid "Play"
msgstr "Reproducir"
-#: include/functions.php:3014
+#: include/functions.php:3015
msgid " - "
msgstr " - "
-#: include/functions.php:3036 include/functions.php:3353 classes/rpc.php:360
+#: include/functions.php:3037 include/functions.php:3354 classes/rpc.php:360
msgid "no tags"
msgstr "sin etiquetas"
-#: include/functions.php:3046 classes/feeds.php:653
+#: include/functions.php:3047 classes/feeds.php:656
msgid "Edit tags for this article"
msgstr "Editar las etiquetas de este artículo"
-#: include/functions.php:3075 classes/feeds.php:608
+#: include/functions.php:3076 classes/feeds.php:610
msgid "Originally from:"
msgstr "Original de:"
-#: include/functions.php:3088 classes/feeds.php:621 classes/pref/feeds.php:507
+#: include/functions.php:3089 classes/feeds.php:623 classes/pref/feeds.php:507
msgid "Feed URL"
msgstr "URL de la fuente"
-#: include/functions.php:3117
+#: include/functions.php:3118
msgid "Related"
msgstr "Relacionado"
-#: include/functions.php:3144 classes/dlg.php:43 classes/dlg.php:162
+#: include/functions.php:3145 classes/dlg.php:43 classes/dlg.php:162
#: classes/dlg.php:185 classes/dlg.php:222 classes/dlg.php:508
#: classes/dlg.php:543 classes/dlg.php:574 classes/dlg.php:608
#: classes/dlg.php:620 classes/backend.php:105 classes/pref/users.php:106
@@ -904,15 +904,15 @@ msgstr "Relacionado"
msgid "Close this window"
msgstr "Cerrar esta ventana"
-#: include/functions.php:3378
+#: include/functions.php:3379
msgid "(edit note)"
msgstr "(editar nota)"
-#: include/functions.php:3611
+#: include/functions.php:3612
msgid "unknown type"
msgstr "tipo desconocido"
-#: include/functions.php:3661
+#: include/functions.php:3662
msgid "Attachments"
msgstr "Adjuntos"
@@ -949,7 +949,7 @@ msgstr "Publicar artículo"
msgid "Assign tags"
msgstr "Asignar etiquetas"
-#: include/localized_schema.php:14 js/viewfeed.js:1849
+#: include/localized_schema.php:14 js/viewfeed.js:1869
msgid "Assign label"
msgstr "Asignar marcador"
@@ -1648,32 +1648,32 @@ msgstr "Enviar por correo electrónico"
msgid "Feed:"
msgstr "Fuente:"
-#: classes/feeds.php:201 classes/feeds.php:798
+#: classes/feeds.php:201 classes/feeds.php:801
msgid "Feed not found."
msgstr "Fuente no encontrada."
-#: classes/feeds.php:498
+#: classes/feeds.php:500
msgid "mark as read"
msgstr "marcar como leído"
-#: classes/feeds.php:553
+#: classes/feeds.php:555
#, fuzzy
msgid "Collapse article"
msgstr "Cerrar artículo"
-#: classes/feeds.php:699
+#: classes/feeds.php:702
msgid "No unread articles found to display."
msgstr "No se han encontrado artículos sin leer."
-#: classes/feeds.php:702
+#: classes/feeds.php:705
msgid "No updated articles found to display."
msgstr "No se han encontrado artículos actualizados."
-#: classes/feeds.php:705
+#: classes/feeds.php:708
msgid "No starred articles found to display."
msgstr "No se han encontrado artículos favoritos."
-#: classes/feeds.php:709
+#: classes/feeds.php:712
msgid ""
"No articles found to display. You can assign articles to labels manually "
"(see the Actions menu above) or use a filter."
@@ -1682,21 +1682,21 @@ msgstr ""
"artículos a los marcadores manualmente (ver arriba el menú Acciones) o usar "
"un filtro."
-#: classes/feeds.php:711
+#: classes/feeds.php:714
msgid "No articles found to display."
msgstr "No se han encontrado artículos que mostrar."
-#: classes/feeds.php:726 classes/feeds.php:907
+#: classes/feeds.php:729 classes/feeds.php:910
#, php-format
msgid "Feeds last updated at %s"
msgstr "Última actualización de las fuentes: %s"
-#: classes/feeds.php:736 classes/feeds.php:917
+#: classes/feeds.php:739 classes/feeds.php:920
msgid "Some feeds have update errors (click for details)"
msgstr ""
"Error al actualizar algunas fuentes (pulse aquí para obtener los detalles)"
-#: classes/feeds.php:897
+#: classes/feeds.php:900
msgid "No feed selected."
msgstr "No se ha seleccionado ninguna fuente."
@@ -3182,75 +3182,75 @@ msgstr "Marcar el artículo como favorito"
msgid "Unpublish article"
msgstr "Despublicar artículo"
-#: js/viewfeed.js:674 js/viewfeed.js:702 js/viewfeed.js:729 js/viewfeed.js:791
-#: js/viewfeed.js:823 js/viewfeed.js:960 js/viewfeed.js:1003
-#: js/viewfeed.js:1053 js/viewfeed.js:1967 plugins/mailto/init.js:7
+#: js/viewfeed.js:681 js/viewfeed.js:709 js/viewfeed.js:736 js/viewfeed.js:798
+#: js/viewfeed.js:830 js/viewfeed.js:967 js/viewfeed.js:1010
+#: js/viewfeed.js:1060 js/viewfeed.js:1987 plugins/mailto/init.js:7
#: plugins/mail/mail.js:7
msgid "No articles are selected."
msgstr "No se han seleccionado artículos."
-#: js/viewfeed.js:940
+#: js/viewfeed.js:947
msgid "Mark all visible articles in %s as read?"
msgstr "¿Marcar todos los artículos visibles de %s como leídos?"
-#: js/viewfeed.js:968
+#: js/viewfeed.js:975
msgid "Delete %d selected articles in %s?"
msgstr "¿Borrar %d artículos seleccionados en %s?"
-#: js/viewfeed.js:970
+#: js/viewfeed.js:977
msgid "Delete %d selected articles?"
msgstr "¿Borrar %d artículos seleccionados?"
-#: js/viewfeed.js:1012
+#: js/viewfeed.js:1019
msgid "Archive %d selected articles in %s?"
msgstr "¿Archivar %d artículos seleccionados en %s?"
-#: js/viewfeed.js:1015
+#: js/viewfeed.js:1022
msgid "Move %d archived articles back?"
msgstr "¿Mover %d artículos archivados a su fuente original?"
-#: js/viewfeed.js:1059
+#: js/viewfeed.js:1066
msgid "Mark %d selected articles in %s as read?"
msgstr "¿Marcar %d artículos seleccionados de %s como leídos?"
-#: js/viewfeed.js:1083
+#: js/viewfeed.js:1090
msgid "Edit article Tags"
msgstr "Editar las etiquetas del artículo"
-#: js/viewfeed.js:1252
+#: js/viewfeed.js:1259
msgid "No article is selected."
msgstr "No se ha seleccionado ningún artículo."
-#: js/viewfeed.js:1287
+#: js/viewfeed.js:1294
msgid "No articles found to mark"
msgstr "No se han encontrado artículos que marcar"
-#: js/viewfeed.js:1289
+#: js/viewfeed.js:1296
msgid "Mark %d article(s) as read?"
msgstr "¿Marcar %d artículo(s) como leído(s)?"
-#: js/viewfeed.js:1784
+#: js/viewfeed.js:1804
msgid "Open original article"
msgstr "Abrir artículo original"
-#: js/viewfeed.js:1854
+#: js/viewfeed.js:1874
msgid "Remove label"
msgstr "Borrar marcador"
-#: js/viewfeed.js:1878
+#: js/viewfeed.js:1898
msgid "Playing..."
msgstr "Reproduciendo..."
-#: js/viewfeed.js:1879
+#: js/viewfeed.js:1899
msgid "Click to pause"
msgstr "Clic para pausar"
-#: js/viewfeed.js:1936
+#: js/viewfeed.js:1956
#, fuzzy
msgid "Please enter new score for selected articles:"
msgstr "Por favor, introduzca una nota para este artículo:"
-#: js/viewfeed.js:1978
+#: js/viewfeed.js:1998
#, fuzzy
msgid "Please enter new score for this article:"
msgstr "Por favor, introduzca una nota para este artículo:"
diff --git a/locale/fr_FR/LC_MESSAGES/messages.mo b/locale/fr_FR/LC_MESSAGES/messages.mo
index 6c103a2db..48114a1c6 100644
--- a/locale/fr_FR/LC_MESSAGES/messages.mo
+++ b/locale/fr_FR/LC_MESSAGES/messages.mo
Binary files differ
diff --git a/locale/fr_FR/LC_MESSAGES/messages.po b/locale/fr_FR/LC_MESSAGES/messages.po
index 3b716caae..0a869d004 100644
--- a/locale/fr_FR/LC_MESSAGES/messages.po
+++ b/locale/fr_FR/LC_MESSAGES/messages.po
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Tiny Tiny RSS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-03-20 10:24+0400\n"
+"POT-Creation-Date: 2013-03-20 15:53+0400\n"
"PO-Revision-Date: 2012-02-14 08:32+0000\n"
"Last-Translator: Thomas Jost <[email protected]>\n"
"Language-Team: French (France) (http://www.transifex.net/projects/p/tt-rss/"
@@ -269,7 +269,7 @@ msgstr ""
#: index.php:117 index.php:147 index.php:252 prefs.php:79
#: classes/backend.php:5 classes/pref/labels.php:296
#: classes/pref/filters.php:609 classes/pref/feeds.php:1296
-#: plugins/digest/digest_body.php:45 js/viewfeed.js:1174
+#: plugins/digest/digest_body.php:45 js/viewfeed.js:1181
msgid "Loading, please wait..."
msgstr "Chargement en cours, veuillez patienter..."
@@ -343,7 +343,7 @@ msgstr "Mettre à jour"
#: index.php:191 index.php:221 include/functions.php:1906
#: include/localized_schema.php:10 classes/feeds.php:111 classes/feeds.php:136
-#: classes/feeds.php:408 js/FeedTree.js:128 js/FeedTree.js:156
+#: classes/feeds.php:410 js/FeedTree.js:128 js/FeedTree.js:156
#: plugins/digest/digest.js:630
msgid "Mark as read"
msgstr "Marquer comme lu"
@@ -710,11 +710,11 @@ msgstr "Exclure les articles lus"
msgid "Open in new window"
msgstr "Ouvrir les articles dans une nouvelle fenêtre"
-#: include/functions.php:1886 js/viewfeed.js:1798
+#: include/functions.php:1886 js/viewfeed.js:1818
msgid "Mark below as read"
msgstr "Marquer les articles en-dessous comme lus"
-#: include/functions.php:1887 js/viewfeed.js:1792
+#: include/functions.php:1887 js/viewfeed.js:1812
msgid "Mark above as read"
msgstr "Marquer les articles au-dessus comme lus"
@@ -863,40 +863,40 @@ msgstr "Afficher la fenêtre de recherche"
msgid "Search results: %s"
msgstr ""
-#: include/functions.php:2892 js/viewfeed.js:1885
+#: include/functions.php:2893 js/viewfeed.js:1905
msgid "Click to play"
msgstr "Cliquez pour lancer la lecture"
-#: include/functions.php:2893 js/viewfeed.js:1884
+#: include/functions.php:2894 js/viewfeed.js:1904
msgid "Play"
msgstr "Lecture"
-#: include/functions.php:3014
+#: include/functions.php:3015
msgid " - "
msgstr " - "
-#: include/functions.php:3036 include/functions.php:3353 classes/rpc.php:360
+#: include/functions.php:3037 include/functions.php:3354 classes/rpc.php:360
msgid "no tags"
msgstr "aucun tag"
-#: include/functions.php:3046 classes/feeds.php:653
+#: include/functions.php:3047 classes/feeds.php:656
msgid "Edit tags for this article"
msgstr "Modifier les tags pour cet article"
-#: include/functions.php:3075 classes/feeds.php:608
+#: include/functions.php:3076 classes/feeds.php:610
msgid "Originally from:"
msgstr "Origine :"
-#: include/functions.php:3088 classes/feeds.php:621 classes/pref/feeds.php:507
+#: include/functions.php:3089 classes/feeds.php:623 classes/pref/feeds.php:507
msgid "Feed URL"
msgstr "URL du flux"
-#: include/functions.php:3117
+#: include/functions.php:3118
#, fuzzy
msgid "Related"
msgstr "Lire plus tard"
-#: include/functions.php:3144 classes/dlg.php:43 classes/dlg.php:162
+#: include/functions.php:3145 classes/dlg.php:43 classes/dlg.php:162
#: classes/dlg.php:185 classes/dlg.php:222 classes/dlg.php:508
#: classes/dlg.php:543 classes/dlg.php:574 classes/dlg.php:608
#: classes/dlg.php:620 classes/backend.php:105 classes/pref/users.php:106
@@ -907,15 +907,15 @@ msgstr "Lire plus tard"
msgid "Close this window"
msgstr "Fermer cette fenêtre"
-#: include/functions.php:3378
+#: include/functions.php:3379
msgid "(edit note)"
msgstr "(modifier l'annotation)"
-#: include/functions.php:3611
+#: include/functions.php:3612
msgid "unknown type"
msgstr "type inconnu"
-#: include/functions.php:3661
+#: include/functions.php:3662
#, fuzzy
msgid "Attachments"
msgstr "Fichiers attachés :"
@@ -953,7 +953,7 @@ msgstr "Publier l'article"
msgid "Assign tags"
msgstr "Assigner des tags"
-#: include/localized_schema.php:14 js/viewfeed.js:1849
+#: include/localized_schema.php:14 js/viewfeed.js:1869
msgid "Assign label"
msgstr "Assigner l'étiquette"
@@ -1650,32 +1650,32 @@ msgstr "Transférer par email"
msgid "Feed:"
msgstr "Flux :"
-#: classes/feeds.php:201 classes/feeds.php:798
+#: classes/feeds.php:201 classes/feeds.php:801
msgid "Feed not found."
msgstr "Flux non trouvé."
-#: classes/feeds.php:498
+#: classes/feeds.php:500
msgid "mark as read"
msgstr "marquer comme lu"
-#: classes/feeds.php:553
+#: classes/feeds.php:555
#, fuzzy
msgid "Collapse article"
msgstr "Fermer l'article"
-#: classes/feeds.php:699
+#: classes/feeds.php:702
msgid "No unread articles found to display."
msgstr "Aucun article non-lu à afficher"
-#: classes/feeds.php:702
+#: classes/feeds.php:705
msgid "No updated articles found to display."
msgstr "Aucun article mis à jour à afficher"
-#: classes/feeds.php:705
+#: classes/feeds.php:708
msgid "No starred articles found to display."
msgstr "Aucun article remarquable à afficher"
-#: classes/feeds.php:709
+#: classes/feeds.php:712
msgid ""
"No articles found to display. You can assign articles to labels manually "
"(see the Actions menu above) or use a filter."
@@ -1683,22 +1683,22 @@ msgstr ""
"Aucun article à afficher. Vous pouvez assigner des étiquettes aux articles "
"manuellement (voir les actions du menu ci-dessus) ou utiliser un filtre."
-#: classes/feeds.php:711
+#: classes/feeds.php:714
msgid "No articles found to display."
msgstr "Aucun article à afficher"
-#: classes/feeds.php:726 classes/feeds.php:907
+#: classes/feeds.php:729 classes/feeds.php:910
#, php-format
msgid "Feeds last updated at %s"
msgstr "Flux mis à jour à %s"
-#: classes/feeds.php:736 classes/feeds.php:917
+#: classes/feeds.php:739 classes/feeds.php:920
msgid "Some feeds have update errors (click for details)"
msgstr ""
"Des erreurs sont survenues pendant la mise à jour de certains flux (cliquer "
"ici pour les détails)"
-#: classes/feeds.php:897
+#: classes/feeds.php:900
msgid "No feed selected."
msgstr "Aucun flux sélectionné."
@@ -3155,75 +3155,75 @@ msgstr "Marquer comme remarquable"
msgid "Unpublish article"
msgstr "Ne plus publier l'article"
-#: js/viewfeed.js:674 js/viewfeed.js:702 js/viewfeed.js:729 js/viewfeed.js:791
-#: js/viewfeed.js:823 js/viewfeed.js:960 js/viewfeed.js:1003
-#: js/viewfeed.js:1053 js/viewfeed.js:1967 plugins/mailto/init.js:7
+#: js/viewfeed.js:681 js/viewfeed.js:709 js/viewfeed.js:736 js/viewfeed.js:798
+#: js/viewfeed.js:830 js/viewfeed.js:967 js/viewfeed.js:1010
+#: js/viewfeed.js:1060 js/viewfeed.js:1987 plugins/mailto/init.js:7
#: plugins/mail/mail.js:7
msgid "No articles are selected."
msgstr "Aucun article sélectionné."
-#: js/viewfeed.js:940
+#: js/viewfeed.js:947
msgid "Mark all visible articles in %s as read?"
msgstr "Marquer tous les articles visibles de %s comme lus ?"
-#: js/viewfeed.js:968
+#: js/viewfeed.js:975
msgid "Delete %d selected articles in %s?"
msgstr "Supprimer les %d articles sélectionnés de %s ?"
-#: js/viewfeed.js:970
+#: js/viewfeed.js:977
msgid "Delete %d selected articles?"
msgstr "Supprimer les %d articles sélectionnés ?"
-#: js/viewfeed.js:1012
+#: js/viewfeed.js:1019
msgid "Archive %d selected articles in %s?"
msgstr "Archiver les %d articles sélectionnés de %s ?"
-#: js/viewfeed.js:1015
+#: js/viewfeed.js:1022
msgid "Move %d archived articles back?"
msgstr "Restaurer les articles archivés ?"
-#: js/viewfeed.js:1059
+#: js/viewfeed.js:1066
msgid "Mark %d selected articles in %s as read?"
msgstr "Marquer %d articles sélectionnés de %s comme lus ?"
-#: js/viewfeed.js:1083
+#: js/viewfeed.js:1090
msgid "Edit article Tags"
msgstr "Modifier les étiquettes de l'article"
-#: js/viewfeed.js:1252
+#: js/viewfeed.js:1259
msgid "No article is selected."
msgstr "Aucun article sélectionné."
-#: js/viewfeed.js:1287
+#: js/viewfeed.js:1294
msgid "No articles found to mark"
msgstr "Aucun article à marquer"
-#: js/viewfeed.js:1289
+#: js/viewfeed.js:1296
msgid "Mark %d article(s) as read?"
msgstr "Marquer %d article(s) comme lu(s) ?"
-#: js/viewfeed.js:1784
+#: js/viewfeed.js:1804
msgid "Open original article"
msgstr "Ouvrir l'article original"
-#: js/viewfeed.js:1854
+#: js/viewfeed.js:1874
msgid "Remove label"
msgstr "Supprimer l'étiquette"
-#: js/viewfeed.js:1878
+#: js/viewfeed.js:1898
msgid "Playing..."
msgstr "Lecture..."
-#: js/viewfeed.js:1879
+#: js/viewfeed.js:1899
msgid "Click to pause"
msgstr "Cliquez pour mettre en pause"
-#: js/viewfeed.js:1936
+#: js/viewfeed.js:1956
#, fuzzy
msgid "Please enter new score for selected articles:"
msgstr "Supprimer les %d articles sélectionnés ?"
-#: js/viewfeed.js:1978
+#: js/viewfeed.js:1998
#, fuzzy
msgid "Please enter new score for this article:"
msgstr "Veuillez saisir un titre pour cette catégorie :"
diff --git a/locale/hu_HU/LC_MESSAGES/messages.mo b/locale/hu_HU/LC_MESSAGES/messages.mo
index 268575892..9ec433fde 100644
--- a/locale/hu_HU/LC_MESSAGES/messages.mo
+++ b/locale/hu_HU/LC_MESSAGES/messages.mo
Binary files differ
diff --git a/locale/hu_HU/LC_MESSAGES/messages.po b/locale/hu_HU/LC_MESSAGES/messages.po
index c2a5c2756..2685bb0c8 100644
--- a/locale/hu_HU/LC_MESSAGES/messages.po
+++ b/locale/hu_HU/LC_MESSAGES/messages.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-03-20 10:24+0400\n"
+"POT-Creation-Date: 2013-03-20 15:53+0400\n"
"PO-Revision-Date: 2013-03-16 22:33+0100\n"
"Last-Translator: Zoltan Faludi <[email protected]>\n"
"Language-Team: HUNGARIAN\n"
@@ -262,7 +262,7 @@ msgstr ""
#: index.php:117 index.php:147 index.php:252 prefs.php:79
#: classes/backend.php:5 classes/pref/labels.php:296
#: classes/pref/filters.php:609 classes/pref/feeds.php:1296
-#: plugins/digest/digest_body.php:45 js/viewfeed.js:1174
+#: plugins/digest/digest_body.php:45 js/viewfeed.js:1181
msgid "Loading, please wait..."
msgstr "Betöltés, kérem várjon..."
@@ -336,7 +336,7 @@ msgstr "Frissítés"
#: index.php:191 index.php:221 include/functions.php:1906
#: include/localized_schema.php:10 classes/feeds.php:111 classes/feeds.php:136
-#: classes/feeds.php:408 js/FeedTree.js:128 js/FeedTree.js:156
+#: classes/feeds.php:410 js/FeedTree.js:128 js/FeedTree.js:156
#: plugins/digest/digest.js:630
msgid "Mark as read"
msgstr "Megjelölés olvasottként"
@@ -701,11 +701,11 @@ msgstr "Látható olvasott hírek elrejtése"
msgid "Open in new window"
msgstr "Hír megnyitása új ablakban"
-#: include/functions.php:1886 js/viewfeed.js:1798
+#: include/functions.php:1886 js/viewfeed.js:1818
msgid "Mark below as read"
msgstr "Olvasottnak jel ez alatt"
-#: include/functions.php:1887 js/viewfeed.js:1792
+#: include/functions.php:1887 js/viewfeed.js:1812
msgid "Mark above as read"
msgstr "Olvasottnak jel ez fölött"
@@ -854,39 +854,39 @@ msgstr "Keresőmező megjelenítése"
msgid "Search results: %s"
msgstr "Keresési eredmények: %s"
-#: include/functions.php:2892 js/viewfeed.js:1885
+#: include/functions.php:2893 js/viewfeed.js:1905
msgid "Click to play"
msgstr "Kattintson a lejátszáshoz"
-#: include/functions.php:2893 js/viewfeed.js:1884
+#: include/functions.php:2894 js/viewfeed.js:1904
msgid "Play"
msgstr "Lejátszás"
-#: include/functions.php:3014
+#: include/functions.php:3015
msgid " - "
msgstr "-"
-#: include/functions.php:3036 include/functions.php:3353 classes/rpc.php:360
+#: include/functions.php:3037 include/functions.php:3354 classes/rpc.php:360
msgid "no tags"
msgstr "nincs címke"
-#: include/functions.php:3046 classes/feeds.php:653
+#: include/functions.php:3047 classes/feeds.php:656
msgid "Edit tags for this article"
msgstr "Címkék hozzáadása a hírhez"
-#: include/functions.php:3075 classes/feeds.php:608
+#: include/functions.php:3076 classes/feeds.php:610
msgid "Originally from:"
msgstr "Eredeti innen:"
-#: include/functions.php:3088 classes/feeds.php:621 classes/pref/feeds.php:507
+#: include/functions.php:3089 classes/feeds.php:623 classes/pref/feeds.php:507
msgid "Feed URL"
msgstr "Hírcsatorna URL"
-#: include/functions.php:3117
+#: include/functions.php:3118
msgid "Related"
msgstr "Kapcsolódik"
-#: include/functions.php:3144 classes/dlg.php:43 classes/dlg.php:162
+#: include/functions.php:3145 classes/dlg.php:43 classes/dlg.php:162
#: classes/dlg.php:185 classes/dlg.php:222 classes/dlg.php:508
#: classes/dlg.php:543 classes/dlg.php:574 classes/dlg.php:608
#: classes/dlg.php:620 classes/backend.php:105 classes/pref/users.php:106
@@ -897,15 +897,15 @@ msgstr "Kapcsolódik"
msgid "Close this window"
msgstr "Ablak bezárása"
-#: include/functions.php:3378
+#: include/functions.php:3379
msgid "(edit note)"
msgstr "(jegyzet szerkesztése)"
-#: include/functions.php:3611
+#: include/functions.php:3612
msgid "unknown type"
msgstr "ismeretlen hírcsatornatípus"
-#: include/functions.php:3661
+#: include/functions.php:3662
msgid "Attachments"
msgstr "Csatolmányok:"
@@ -942,7 +942,7 @@ msgstr "Hír publikálása"
msgid "Assign tags"
msgstr "Címke hozzáadása"
-#: include/localized_schema.php:14 js/viewfeed.js:1849
+#: include/localized_schema.php:14 js/viewfeed.js:1869
msgid "Assign label"
msgstr "Címke hozzáadása"
@@ -1627,32 +1627,32 @@ msgstr "Továbbítás emaiben"
msgid "Feed:"
msgstr "Hírcsatorna:"
-#: classes/feeds.php:201 classes/feeds.php:798
+#: classes/feeds.php:201 classes/feeds.php:801
msgid "Feed not found."
msgstr "Hírcsatorna nem található"
-#: classes/feeds.php:498
+#: classes/feeds.php:500
msgid "mark as read"
msgstr "olvasottként jelöl"
-#: classes/feeds.php:553
+#: classes/feeds.php:555
#, fuzzy
msgid "Collapse article"
msgstr "Hír bezárása"
-#: classes/feeds.php:699
+#: classes/feeds.php:702
msgid "No unread articles found to display."
msgstr "Nincs megjeleníthető olvasatlan hír."
-#: classes/feeds.php:702
+#: classes/feeds.php:705
msgid "No updated articles found to display."
msgstr "Nincs megjeleníthető friss hír."
-#: classes/feeds.php:705
+#: classes/feeds.php:708
msgid "No starred articles found to display."
msgstr "Nincs megjeleníthető csillagozott hír."
-#: classes/feeds.php:709
+#: classes/feeds.php:712
msgid ""
"No articles found to display. You can assign articles to labels manually "
"(see the Actions menu above) or use a filter."
@@ -1661,21 +1661,21 @@ msgstr ""
"Címkék alá híreket besorolhat manuálisan (lásd a fenti Műveletek menüt) vagy "
"a besoroláshoz használhat Szűrőket."
-#: classes/feeds.php:711
+#: classes/feeds.php:714
msgid "No articles found to display."
msgstr "Nincs megjeleníthető hír."
-#: classes/feeds.php:726 classes/feeds.php:907
+#: classes/feeds.php:729 classes/feeds.php:910
#, php-format
msgid "Feeds last updated at %s"
msgstr "Hírcsatornák utolsó frissítése: %s"
-#: classes/feeds.php:736 classes/feeds.php:917
+#: classes/feeds.php:739 classes/feeds.php:920
msgid "Some feeds have update errors (click for details)"
msgstr ""
"Néhány hírcsatorna frissítésével gond akadt. (Kattints ide a részletekhez!)"
-#: classes/feeds.php:897
+#: classes/feeds.php:900
msgid "No feed selected."
msgstr "Nincs kiválasztott hírcsatorna."
@@ -3101,74 +3101,74 @@ msgstr "Hír csillagozása"
msgid "Unpublish article"
msgstr "Publikálás visszavonása"
-#: js/viewfeed.js:674 js/viewfeed.js:702 js/viewfeed.js:729 js/viewfeed.js:791
-#: js/viewfeed.js:823 js/viewfeed.js:960 js/viewfeed.js:1003
-#: js/viewfeed.js:1053 js/viewfeed.js:1967 plugins/mailto/init.js:7
+#: js/viewfeed.js:681 js/viewfeed.js:709 js/viewfeed.js:736 js/viewfeed.js:798
+#: js/viewfeed.js:830 js/viewfeed.js:967 js/viewfeed.js:1010
+#: js/viewfeed.js:1060 js/viewfeed.js:1987 plugins/mailto/init.js:7
#: plugins/mail/mail.js:7
msgid "No articles are selected."
msgstr "Nincsen kiválasztott hír."
-#: js/viewfeed.js:940
+#: js/viewfeed.js:947
msgid "Mark all visible articles in %s as read?"
msgstr "Minden látható hírt megjelöl olvasottként itt: %s?"
-#: js/viewfeed.js:968
+#: js/viewfeed.js:975
msgid "Delete %d selected articles in %s?"
msgstr "%d kijelölt hír törlése innen: %s?"
-#: js/viewfeed.js:970
+#: js/viewfeed.js:977
msgid "Delete %d selected articles?"
msgstr "Törli a %d kijelölt hírt?"
-#: js/viewfeed.js:1012
+#: js/viewfeed.js:1019
msgid "Archive %d selected articles in %s?"
msgstr "%d kijelölt hír archiválása inne: %s?"
-#: js/viewfeed.js:1015
+#: js/viewfeed.js:1022
msgid "Move %d archived articles back?"
msgstr "%d archivált hír visszaállítása?"
-#: js/viewfeed.js:1059
+#: js/viewfeed.js:1066
msgid "Mark %d selected articles in %s as read?"
msgstr "%d kijelölt hír megjelölése olvasottként itt: %s?"
-#: js/viewfeed.js:1083
+#: js/viewfeed.js:1090
msgid "Edit article Tags"
msgstr "Hír címkéinek szerkesztése"
-#: js/viewfeed.js:1252
+#: js/viewfeed.js:1259
msgid "No article is selected."
msgstr "Nincs kiválasztott hír."
-#: js/viewfeed.js:1287
+#: js/viewfeed.js:1294
msgid "No articles found to mark"
msgstr "Nincs megjelölendő hír."
-#: js/viewfeed.js:1289
+#: js/viewfeed.js:1296
msgid "Mark %d article(s) as read?"
msgstr "%d hír megjelölése olvasottként?"
-#: js/viewfeed.js:1784
+#: js/viewfeed.js:1804
msgid "Open original article"
msgstr "Eredeti hír megjelenítése"
-#: js/viewfeed.js:1854
+#: js/viewfeed.js:1874
msgid "Remove label"
msgstr "Címke eltávolítás"
-#: js/viewfeed.js:1878
+#: js/viewfeed.js:1898
msgid "Playing..."
msgstr "Lejátszás..."
-#: js/viewfeed.js:1879
+#: js/viewfeed.js:1899
msgid "Click to pause"
msgstr "Kattintson a megállításhoz"
-#: js/viewfeed.js:1936
+#: js/viewfeed.js:1956
msgid "Please enter new score for selected articles:"
msgstr "Adjon meg egy új pontszámot a kijelölt hírekhez:"
-#: js/viewfeed.js:1978
+#: js/viewfeed.js:1998
msgid "Please enter new score for this article:"
msgstr "Adjon meg egy új pontszámot a hírhez:"
diff --git a/locale/it_IT/LC_MESSAGES/messages.mo b/locale/it_IT/LC_MESSAGES/messages.mo
index bd00f3ce3..ec7e2ed2a 100644
--- a/locale/it_IT/LC_MESSAGES/messages.mo
+++ b/locale/it_IT/LC_MESSAGES/messages.mo
Binary files differ
diff --git a/locale/it_IT/LC_MESSAGES/messages.po b/locale/it_IT/LC_MESSAGES/messages.po
index 89be52e67..c96c153ae 100644
--- a/locale/it_IT/LC_MESSAGES/messages.po
+++ b/locale/it_IT/LC_MESSAGES/messages.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Tiny Tiny RSS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-03-20 10:24+0400\n"
+"POT-Creation-Date: 2013-03-20 15:53+0400\n"
"PO-Revision-Date: 2012-02-14 08:31+0000\n"
"Last-Translator: gothfox <[email protected]>\n"
"Language-Team: LANGUAGE <[email protected]>\n"
@@ -263,7 +263,7 @@ msgstr ""
#: index.php:117 index.php:147 index.php:252 prefs.php:79
#: classes/backend.php:5 classes/pref/labels.php:296
#: classes/pref/filters.php:609 classes/pref/feeds.php:1296
-#: plugins/digest/digest_body.php:45 js/viewfeed.js:1174
+#: plugins/digest/digest_body.php:45 js/viewfeed.js:1181
msgid "Loading, please wait..."
msgstr "Caricamento, attendere prego..."
@@ -337,7 +337,7 @@ msgstr "Aggiorna"
#: index.php:191 index.php:221 include/functions.php:1906
#: include/localized_schema.php:10 classes/feeds.php:111 classes/feeds.php:136
-#: classes/feeds.php:408 js/FeedTree.js:128 js/FeedTree.js:156
+#: classes/feeds.php:410 js/FeedTree.js:128 js/FeedTree.js:156
#: plugins/digest/digest.js:630
msgid "Mark as read"
msgstr "Segna come letto"
@@ -704,11 +704,11 @@ msgstr "Rimuovi articoli letti"
msgid "Open in new window"
msgstr "Aprire gli articoli in una nuova finestra"
-#: include/functions.php:1886 js/viewfeed.js:1798
+#: include/functions.php:1886 js/viewfeed.js:1818
msgid "Mark below as read"
msgstr ""
-#: include/functions.php:1887 js/viewfeed.js:1792
+#: include/functions.php:1887 js/viewfeed.js:1812
msgid "Mark above as read"
msgstr ""
@@ -856,39 +856,39 @@ msgstr "Mostra il dialogo di ricerca"
msgid "Search results: %s"
msgstr ""
-#: include/functions.php:2892 js/viewfeed.js:1885
+#: include/functions.php:2893 js/viewfeed.js:1905
msgid "Click to play"
msgstr "Fare clic per riprodurre"
-#: include/functions.php:2893 js/viewfeed.js:1884
+#: include/functions.php:2894 js/viewfeed.js:1904
msgid "Play"
msgstr "Riproduci"
-#: include/functions.php:3014
+#: include/functions.php:3015
msgid " - "
msgstr " - "
-#: include/functions.php:3036 include/functions.php:3353 classes/rpc.php:360
+#: include/functions.php:3037 include/functions.php:3354 classes/rpc.php:360
msgid "no tags"
msgstr "nessuna etichetta"
-#: include/functions.php:3046 classes/feeds.php:653
+#: include/functions.php:3047 classes/feeds.php:656
msgid "Edit tags for this article"
msgstr "Modifica le etichette per questo articolo"
-#: include/functions.php:3075 classes/feeds.php:608
+#: include/functions.php:3076 classes/feeds.php:610
msgid "Originally from:"
msgstr "Originariamente da:"
-#: include/functions.php:3088 classes/feeds.php:621 classes/pref/feeds.php:507
+#: include/functions.php:3089 classes/feeds.php:623 classes/pref/feeds.php:507
msgid "Feed URL"
msgstr "URL del notiziario"
-#: include/functions.php:3117
+#: include/functions.php:3118
msgid "Related"
msgstr ""
-#: include/functions.php:3144 classes/dlg.php:43 classes/dlg.php:162
+#: include/functions.php:3145 classes/dlg.php:43 classes/dlg.php:162
#: classes/dlg.php:185 classes/dlg.php:222 classes/dlg.php:508
#: classes/dlg.php:543 classes/dlg.php:574 classes/dlg.php:608
#: classes/dlg.php:620 classes/backend.php:105 classes/pref/users.php:106
@@ -899,15 +899,15 @@ msgstr ""
msgid "Close this window"
msgstr "Chiudi questa finestra"
-#: include/functions.php:3378
+#: include/functions.php:3379
msgid "(edit note)"
msgstr "(modifica note)"
-#: include/functions.php:3611
+#: include/functions.php:3612
msgid "unknown type"
msgstr "tipo sconosciuto"
-#: include/functions.php:3661
+#: include/functions.php:3662
#, fuzzy
msgid "Attachments"
msgstr "Allegati:"
@@ -945,7 +945,7 @@ msgstr "Pubblica articolo"
msgid "Assign tags"
msgstr "Assegna etichette"
-#: include/localized_schema.php:14 js/viewfeed.js:1849
+#: include/localized_schema.php:14 js/viewfeed.js:1869
msgid "Assign label"
msgstr "Assegna etichetta"
@@ -1640,32 +1640,32 @@ msgstr "Inoltra per email"
msgid "Feed:"
msgstr "Notiziario:"
-#: classes/feeds.php:201 classes/feeds.php:798
+#: classes/feeds.php:201 classes/feeds.php:801
msgid "Feed not found."
msgstr "Notiziario non trovato."
-#: classes/feeds.php:498
+#: classes/feeds.php:500
msgid "mark as read"
msgstr "segna come letto"
-#: classes/feeds.php:553
+#: classes/feeds.php:555
#, fuzzy
msgid "Collapse article"
msgstr "Tutti gli articoli"
-#: classes/feeds.php:699
+#: classes/feeds.php:702
msgid "No unread articles found to display."
msgstr "Nessun articolo non letto trovato da visualizzare."
-#: classes/feeds.php:702
+#: classes/feeds.php:705
msgid "No updated articles found to display."
msgstr "Nessun articolo non aggiornato trovato da visualizzare."
-#: classes/feeds.php:705
+#: classes/feeds.php:708
msgid "No starred articles found to display."
msgstr "Nessun articolo con stella trovato da visualizzare."
-#: classes/feeds.php:709
+#: classes/feeds.php:712
msgid ""
"No articles found to display. You can assign articles to labels manually "
"(see the Actions menu above) or use a filter."
@@ -1674,21 +1674,21 @@ msgstr ""
"gli articoli alle etichette (vedere il menù «Azioni» sopra) o utilizzare un "
"filtro."
-#: classes/feeds.php:711
+#: classes/feeds.php:714
msgid "No articles found to display."
msgstr "Nessun articolo trovato da visualizzare."
-#: classes/feeds.php:726 classes/feeds.php:907
+#: classes/feeds.php:729 classes/feeds.php:910
#, php-format
msgid "Feeds last updated at %s"
msgstr "Ultimo aggiornamento notiziari alle %s"
-#: classes/feeds.php:736 classes/feeds.php:917
+#: classes/feeds.php:739 classes/feeds.php:920
msgid "Some feeds have update errors (click for details)"
msgstr ""
"Qualche notiziario ha degli errori di aggiornamento (fare clic per dettagli)"
-#: classes/feeds.php:897
+#: classes/feeds.php:900
msgid "No feed selected."
msgstr "Nessun notiziario selezionato."
@@ -3147,75 +3147,75 @@ msgstr "Metti la stella all&apos;articolo"
msgid "Unpublish article"
msgstr "Non pubblicare articolo"
-#: js/viewfeed.js:674 js/viewfeed.js:702 js/viewfeed.js:729 js/viewfeed.js:791
-#: js/viewfeed.js:823 js/viewfeed.js:960 js/viewfeed.js:1003
-#: js/viewfeed.js:1053 js/viewfeed.js:1967 plugins/mailto/init.js:7
+#: js/viewfeed.js:681 js/viewfeed.js:709 js/viewfeed.js:736 js/viewfeed.js:798
+#: js/viewfeed.js:830 js/viewfeed.js:967 js/viewfeed.js:1010
+#: js/viewfeed.js:1060 js/viewfeed.js:1987 plugins/mailto/init.js:7
#: plugins/mail/mail.js:7
msgid "No articles are selected."
msgstr "Nessun articolo selezionato."
-#: js/viewfeed.js:940
+#: js/viewfeed.js:947
msgid "Mark all visible articles in %s as read?"
msgstr "Segnare tutti gli articoli visibili in «%s» come letti?"
-#: js/viewfeed.js:968
+#: js/viewfeed.js:975
msgid "Delete %d selected articles in %s?"
msgstr "Eliminare i %d articoli selezionati in «%s»?"
-#: js/viewfeed.js:970
+#: js/viewfeed.js:977
msgid "Delete %d selected articles?"
msgstr "Eliminare i %d articoli selezionati?"
-#: js/viewfeed.js:1012
+#: js/viewfeed.js:1019
msgid "Archive %d selected articles in %s?"
msgstr "Archiviare i %d articoli selezionati in «%s»?"
-#: js/viewfeed.js:1015
+#: js/viewfeed.js:1022
msgid "Move %d archived articles back?"
msgstr "Spostare %d articoli archiviati indietro?"
-#: js/viewfeed.js:1059
+#: js/viewfeed.js:1066
msgid "Mark %d selected articles in %s as read?"
msgstr "Segnare %d articoli selezionati in «%s» come letti?"
-#: js/viewfeed.js:1083
+#: js/viewfeed.js:1090
msgid "Edit article Tags"
msgstr "Modifica etichette articolo"
-#: js/viewfeed.js:1252
+#: js/viewfeed.js:1259
msgid "No article is selected."
msgstr "Nessun articolo selezionato."
-#: js/viewfeed.js:1287
+#: js/viewfeed.js:1294
msgid "No articles found to mark"
msgstr "Nessun articolo trovato da segnare"
-#: js/viewfeed.js:1289
+#: js/viewfeed.js:1296
msgid "Mark %d article(s) as read?"
msgstr "Segnare %d articolo/i come letto/i?"
-#: js/viewfeed.js:1784
+#: js/viewfeed.js:1804
msgid "Open original article"
msgstr "Apri articolo di origine"
-#: js/viewfeed.js:1854
+#: js/viewfeed.js:1874
msgid "Remove label"
msgstr "Rimuovi etichetta"
-#: js/viewfeed.js:1878
+#: js/viewfeed.js:1898
msgid "Playing..."
msgstr "In riproduzione..."
-#: js/viewfeed.js:1879
+#: js/viewfeed.js:1899
msgid "Click to pause"
msgstr "Fare clic per mettere in pausa"
-#: js/viewfeed.js:1936
+#: js/viewfeed.js:1956
#, fuzzy
msgid "Please enter new score for selected articles:"
msgstr "Eliminare i %d articoli selezionati?"
-#: js/viewfeed.js:1978
+#: js/viewfeed.js:1998
#, fuzzy
msgid "Please enter new score for this article:"
msgstr "Inserire il titolo della categoria:"
diff --git a/locale/ja_JP/LC_MESSAGES/messages.mo b/locale/ja_JP/LC_MESSAGES/messages.mo
index 8b4c14c3b..ead1f7cc9 100644
--- a/locale/ja_JP/LC_MESSAGES/messages.mo
+++ b/locale/ja_JP/LC_MESSAGES/messages.mo
Binary files differ
diff --git a/locale/ja_JP/LC_MESSAGES/messages.po b/locale/ja_JP/LC_MESSAGES/messages.po
index 512d5a88e..ff90d0508 100644
--- a/locale/ja_JP/LC_MESSAGES/messages.po
+++ b/locale/ja_JP/LC_MESSAGES/messages.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: tt-rss unstable\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-03-20 10:24+0400\n"
+"POT-Creation-Date: 2013-03-20 15:53+0400\n"
"PO-Revision-Date: 2009-05-12 03:25+0900\n"
"Last-Translator: Tadashi Jokagi <[email protected]>\n"
"Language-Team: Japanese <http://oss.poyo.jp/>\n"
@@ -262,7 +262,7 @@ msgstr ""
#: index.php:117 index.php:147 index.php:252 prefs.php:79
#: classes/backend.php:5 classes/pref/labels.php:296
#: classes/pref/filters.php:609 classes/pref/feeds.php:1296
-#: plugins/digest/digest_body.php:45 js/viewfeed.js:1174
+#: plugins/digest/digest_body.php:45 js/viewfeed.js:1181
msgid "Loading, please wait..."
msgstr "読み込みんでいます。しばらくお待ちください..."
@@ -338,7 +338,7 @@ msgstr "更新"
#: index.php:191 index.php:221 include/functions.php:1906
#: include/localized_schema.php:10 classes/feeds.php:111 classes/feeds.php:136
-#: classes/feeds.php:408 js/FeedTree.js:128 js/FeedTree.js:156
+#: classes/feeds.php:410 js/FeedTree.js:128 js/FeedTree.js:156
#: plugins/digest/digest.js:630
msgid "Mark as read"
msgstr "既読にする"
@@ -709,12 +709,12 @@ msgstr "公開記事"
msgid "Open in new window"
msgstr "新しいウィンドウで記事を開く"
-#: include/functions.php:1886 js/viewfeed.js:1798
+#: include/functions.php:1886 js/viewfeed.js:1818
#, fuzzy
msgid "Mark below as read"
msgstr "既読にする"
-#: include/functions.php:1887 js/viewfeed.js:1792
+#: include/functions.php:1887 js/viewfeed.js:1812
#, fuzzy
msgid "Mark above as read"
msgstr "既読にする"
@@ -867,42 +867,42 @@ msgstr "検索ダイアログを表示する"
msgid "Search results: %s"
msgstr "検索結果"
-#: include/functions.php:2892 js/viewfeed.js:1885
+#: include/functions.php:2893 js/viewfeed.js:1905
#, fuzzy
msgid "Click to play"
msgstr "編集するにはクリック"
-#: include/functions.php:2893 js/viewfeed.js:1884
+#: include/functions.php:2894 js/viewfeed.js:1904
msgid "Play"
msgstr ""
-#: include/functions.php:3014
+#: include/functions.php:3015
msgid " - "
msgstr " - "
-#: include/functions.php:3036 include/functions.php:3353 classes/rpc.php:360
+#: include/functions.php:3037 include/functions.php:3354 classes/rpc.php:360
msgid "no tags"
msgstr "タグがありません"
-#: include/functions.php:3046 classes/feeds.php:653
+#: include/functions.php:3047 classes/feeds.php:656
msgid "Edit tags for this article"
msgstr "この記事のタグを編集する"
-#: include/functions.php:3075 classes/feeds.php:608
+#: include/functions.php:3076 classes/feeds.php:610
#, fuzzy
msgid "Originally from:"
msgstr "元の記事内容を表示する"
-#: include/functions.php:3088 classes/feeds.php:621 classes/pref/feeds.php:507
+#: include/functions.php:3089 classes/feeds.php:623 classes/pref/feeds.php:507
#, fuzzy
msgid "Feed URL"
msgstr "フィード"
-#: include/functions.php:3117
+#: include/functions.php:3118
msgid "Related"
msgstr ""
-#: include/functions.php:3144 classes/dlg.php:43 classes/dlg.php:162
+#: include/functions.php:3145 classes/dlg.php:43 classes/dlg.php:162
#: classes/dlg.php:185 classes/dlg.php:222 classes/dlg.php:508
#: classes/dlg.php:543 classes/dlg.php:574 classes/dlg.php:608
#: classes/dlg.php:620 classes/backend.php:105 classes/pref/users.php:106
@@ -913,16 +913,16 @@ msgstr ""
msgid "Close this window"
msgstr "このウィンドウを閉じる"
-#: include/functions.php:3378
+#: include/functions.php:3379
#, fuzzy
msgid "(edit note)"
msgstr "ノートの編集"
-#: include/functions.php:3611
+#: include/functions.php:3612
msgid "unknown type"
msgstr "未知の種類"
-#: include/functions.php:3661
+#: include/functions.php:3662
#, fuzzy
msgid "Attachments"
msgstr "添付:"
@@ -961,7 +961,7 @@ msgstr "公開記事"
msgid "Assign tags"
msgstr "タグの割り当て"
-#: include/localized_schema.php:14 js/viewfeed.js:1849
+#: include/localized_schema.php:14 js/viewfeed.js:1869
msgid "Assign label"
msgstr "ラベルの割り当て"
@@ -1658,32 +1658,32 @@ msgstr "記事をお気に入りにする"
msgid "Feed:"
msgstr "フィード:"
-#: classes/feeds.php:201 classes/feeds.php:798
+#: classes/feeds.php:201 classes/feeds.php:801
msgid "Feed not found."
msgstr "フィードが見つかりません。"
-#: classes/feeds.php:498
+#: classes/feeds.php:500
msgid "mark as read"
msgstr "既読にする"
-#: classes/feeds.php:553
+#: classes/feeds.php:555
#, fuzzy
msgid "Collapse article"
msgstr "記事を消去する"
-#: classes/feeds.php:699
+#: classes/feeds.php:702
msgid "No unread articles found to display."
msgstr "表示する未読記事が見つかりませんでした。"
-#: classes/feeds.php:702
+#: classes/feeds.php:705
msgid "No updated articles found to display."
msgstr "表示する更新された記事が見つかりませんでした。"
-#: classes/feeds.php:705
+#: classes/feeds.php:708
msgid "No starred articles found to display."
msgstr "表示するお気に入りの記事が見つかりませんでした。"
-#: classes/feeds.php:709
+#: classes/feeds.php:712
msgid ""
"No articles found to display. You can assign articles to labels manually "
"(see the Actions menu above) or use a filter."
@@ -1691,20 +1691,20 @@ msgstr ""
"表示する記事が見つかりません。手動でラベルに記事を割り当てるか(上の操作メ"
"ニューを参照します)、フィルターを使うことができます。"
-#: classes/feeds.php:711
+#: classes/feeds.php:714
msgid "No articles found to display."
msgstr "表示する記事が見つかりません。"
-#: classes/feeds.php:726 classes/feeds.php:907
+#: classes/feeds.php:729 classes/feeds.php:910
#, php-format
msgid "Feeds last updated at %s"
msgstr ""
-#: classes/feeds.php:736 classes/feeds.php:917
+#: classes/feeds.php:739 classes/feeds.php:920
msgid "Some feeds have update errors (click for details)"
msgstr "いくつかのフィードの更新エラーです (詳細はクリックしてください)"
-#: classes/feeds.php:897
+#: classes/feeds.php:900
msgid "No feed selected."
msgstr "フィードは選択されていません。"
@@ -3197,84 +3197,84 @@ msgstr "記事をお気に入りにする"
msgid "Unpublish article"
msgstr "非公開記事"
-#: js/viewfeed.js:674 js/viewfeed.js:702 js/viewfeed.js:729 js/viewfeed.js:791
-#: js/viewfeed.js:823 js/viewfeed.js:960 js/viewfeed.js:1003
-#: js/viewfeed.js:1053 js/viewfeed.js:1967 plugins/mailto/init.js:7
+#: js/viewfeed.js:681 js/viewfeed.js:709 js/viewfeed.js:736 js/viewfeed.js:798
+#: js/viewfeed.js:830 js/viewfeed.js:967 js/viewfeed.js:1010
+#: js/viewfeed.js:1060 js/viewfeed.js:1987 plugins/mailto/init.js:7
#: plugins/mail/mail.js:7
msgid "No articles are selected."
msgstr "記事は選択されていません。"
-#: js/viewfeed.js:940
+#: js/viewfeed.js:947
msgid "Mark all visible articles in %s as read?"
msgstr "「%s」のすべての可視記事を既読に設定しますか?"
-#: js/viewfeed.js:968
+#: js/viewfeed.js:975
#, fuzzy
msgid "Delete %d selected articles in %s?"
msgstr "選択した %d 件の記事を「%s」に設定しますか?"
-#: js/viewfeed.js:970
+#: js/viewfeed.js:977
#, fuzzy
msgid "Delete %d selected articles?"
msgstr "ラベルから選択した記事を削除しますか?"
-#: js/viewfeed.js:1012
+#: js/viewfeed.js:1019
#, fuzzy
msgid "Archive %d selected articles in %s?"
msgstr "選択した %d 件の記事を「%s」に設定しますか?"
-#: js/viewfeed.js:1015
+#: js/viewfeed.js:1022
#, fuzzy
msgid "Move %d archived articles back?"
msgstr "お気に入りの記事"
-#: js/viewfeed.js:1059
+#: js/viewfeed.js:1066
msgid "Mark %d selected articles in %s as read?"
msgstr "選択した %d 件の記事を「%s」に設定しますか?"
-#: js/viewfeed.js:1083
+#: js/viewfeed.js:1090
#, fuzzy
msgid "Edit article Tags"
msgstr "タグを編集する"
-#: js/viewfeed.js:1252
+#: js/viewfeed.js:1259
msgid "No article is selected."
msgstr "選択された記事はありません。"
-#: js/viewfeed.js:1287
+#: js/viewfeed.js:1294
msgid "No articles found to mark"
msgstr "マークした記事が見つかりません"
-#: js/viewfeed.js:1289
+#: js/viewfeed.js:1296
msgid "Mark %d article(s) as read?"
msgstr "%d 件のマークした記事を既読として設定しますか?"
-#: js/viewfeed.js:1784
+#: js/viewfeed.js:1804
#, fuzzy
msgid "Open original article"
msgstr "元の記事内容を表示する"
-#: js/viewfeed.js:1854
+#: js/viewfeed.js:1874
#, fuzzy
msgid "Remove label"
msgstr "選択したラベルを削除しますか?"
-#: js/viewfeed.js:1878
+#: js/viewfeed.js:1898
#, fuzzy
msgid "Playing..."
msgstr "フィード一覧を読み込んでいます..."
-#: js/viewfeed.js:1879
+#: js/viewfeed.js:1899
#, fuzzy
msgid "Click to pause"
msgstr "編集するにはクリック"
-#: js/viewfeed.js:1936
+#: js/viewfeed.js:1956
#, fuzzy
msgid "Please enter new score for selected articles:"
msgstr "このアーティクルのノートを入力してください:"
-#: js/viewfeed.js:1978
+#: js/viewfeed.js:1998
#, fuzzy
msgid "Please enter new score for this article:"
msgstr "このアーティクルのノートを入力してください:"
diff --git a/locale/lv_LV/LC_MESSAGES/messages.mo b/locale/lv_LV/LC_MESSAGES/messages.mo
index 768407cdb..b962aec70 100644
--- a/locale/lv_LV/LC_MESSAGES/messages.mo
+++ b/locale/lv_LV/LC_MESSAGES/messages.mo
Binary files differ
diff --git a/locale/lv_LV/LC_MESSAGES/messages.po b/locale/lv_LV/LC_MESSAGES/messages.po
index 166da533a..ced1b14a8 100644
--- a/locale/lv_LV/LC_MESSAGES/messages.po
+++ b/locale/lv_LV/LC_MESSAGES/messages.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: 1.0\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-03-20 10:24+0400\n"
+"POT-Creation-Date: 2013-03-20 15:53+0400\n"
"PO-Revision-Date: 2013-03-18 22:55+0300\n"
"Last-Translator: Valdis Vītoliņš <[email protected]>\n"
"Language-Team: \n"
@@ -259,7 +259,7 @@ msgstr ""
#: index.php:117 index.php:147 index.php:252 prefs.php:79
#: classes/backend.php:5 classes/pref/labels.php:296
#: classes/pref/filters.php:609 classes/pref/feeds.php:1296
-#: plugins/digest/digest_body.php:45 js/viewfeed.js:1174
+#: plugins/digest/digest_body.php:45 js/viewfeed.js:1181
msgid "Loading, please wait..."
msgstr "Ielādē, lūdzu gaidiet..."
@@ -333,7 +333,7 @@ msgstr "Atjaunot"
#: index.php:191 index.php:221 include/functions.php:1906
#: include/localized_schema.php:10 classes/feeds.php:111 classes/feeds.php:136
-#: classes/feeds.php:408 js/FeedTree.js:128 js/FeedTree.js:156
+#: classes/feeds.php:410 js/FeedTree.js:128 js/FeedTree.js:156
#: plugins/digest/digest.js:630
msgid "Mark as read"
msgstr "Atzīmēt kā lasītu"
@@ -698,11 +698,11 @@ msgstr "Atmest lasītos rakstus"
msgid "Open in new window"
msgstr "Atvērt rakstu jaunā logā"
-#: include/functions.php:1886 js/viewfeed.js:1798
+#: include/functions.php:1886 js/viewfeed.js:1818
msgid "Mark below as read"
msgstr "Iezīmēt lejup kā lasītus"
-#: include/functions.php:1887 js/viewfeed.js:1792
+#: include/functions.php:1887 js/viewfeed.js:1812
msgid "Mark above as read"
msgstr "Iezīmēt augšup kā lasītus"
@@ -851,39 +851,39 @@ msgstr "Rādīt meklēšanas logu"
msgid "Search results: %s"
msgstr "Meklēšanas rezultāti: %s"
-#: include/functions.php:2892 js/viewfeed.js:1885
+#: include/functions.php:2893 js/viewfeed.js:1905
msgid "Click to play"
msgstr "Klikšķiniet, lai atskaņotu"
-#: include/functions.php:2893 js/viewfeed.js:1884
+#: include/functions.php:2894 js/viewfeed.js:1904
msgid "Play"
msgstr "Atskaņot"
-#: include/functions.php:3014
+#: include/functions.php:3015
msgid " - "
msgstr "–"
-#: include/functions.php:3036 include/functions.php:3353 classes/rpc.php:360
+#: include/functions.php:3037 include/functions.php:3354 classes/rpc.php:360
msgid "no tags"
msgstr "nav iezīmju"
-#: include/functions.php:3046 classes/feeds.php:653
+#: include/functions.php:3047 classes/feeds.php:656
msgid "Edit tags for this article"
msgstr "Rediģēt šī raksta iezīmes"
-#: include/functions.php:3075 classes/feeds.php:608
+#: include/functions.php:3076 classes/feeds.php:610
msgid "Originally from:"
msgstr "Sākotnējais no:"
-#: include/functions.php:3088 classes/feeds.php:621 classes/pref/feeds.php:507
+#: include/functions.php:3089 classes/feeds.php:623 classes/pref/feeds.php:507
msgid "Feed URL"
msgstr "Barotnes URL"
-#: include/functions.php:3117
+#: include/functions.php:3118
msgid "Related"
msgstr "Saistīts"
-#: include/functions.php:3144 classes/dlg.php:43 classes/dlg.php:162
+#: include/functions.php:3145 classes/dlg.php:43 classes/dlg.php:162
#: classes/dlg.php:185 classes/dlg.php:222 classes/dlg.php:508
#: classes/dlg.php:543 classes/dlg.php:574 classes/dlg.php:608
#: classes/dlg.php:620 classes/backend.php:105 classes/pref/users.php:106
@@ -894,15 +894,15 @@ msgstr "Saistīts"
msgid "Close this window"
msgstr "Aizvērt šo logu"
-#: include/functions.php:3378
+#: include/functions.php:3379
msgid "(edit note)"
msgstr "(rediģēt piezīmi)"
-#: include/functions.php:3611
+#: include/functions.php:3612
msgid "unknown type"
msgstr "nezināms tips"
-#: include/functions.php:3661
+#: include/functions.php:3662
msgid "Attachments"
msgstr "Pielikumi"
@@ -939,7 +939,7 @@ msgstr "Publicēt rakstu"
msgid "Assign tags"
msgstr "Pievienot iezīmi"
-#: include/localized_schema.php:14 js/viewfeed.js:1849
+#: include/localized_schema.php:14 js/viewfeed.js:1869
msgid "Assign label"
msgstr "Pievienot etiķeti"
@@ -1619,32 +1619,32 @@ msgstr "Pārsūtīt e-pastā"
msgid "Feed:"
msgstr "Barotne:"
-#: classes/feeds.php:201 classes/feeds.php:798
+#: classes/feeds.php:201 classes/feeds.php:801
msgid "Feed not found."
msgstr "Barotne netika atrasta."
-#: classes/feeds.php:498
+#: classes/feeds.php:500
msgid "mark as read"
msgstr "iezīmēt kā lasītu"
-#: classes/feeds.php:553
+#: classes/feeds.php:555
#, fuzzy
msgid "Collapse article"
msgstr "Aizvērt rakstu"
-#: classes/feeds.php:699
+#: classes/feeds.php:702
msgid "No unread articles found to display."
msgstr "Nav neizlasītu rakstu, ko rādīt."
-#: classes/feeds.php:702
+#: classes/feeds.php:705
msgid "No updated articles found to display."
msgstr "Nav atjaunotu rakstu, ko rādīt."
-#: classes/feeds.php:705
+#: classes/feeds.php:708
msgid "No starred articles found to display."
msgstr "Nav zvaigžņotu rakstu, ko rādīt."
-#: classes/feeds.php:709
+#: classes/feeds.php:712
msgid ""
"No articles found to display. You can assign articles to labels manually "
"(see the Actions menu above) or use a filter."
@@ -1652,21 +1652,21 @@ msgstr ""
"Netika atrasti parādāmi raksti. Jūs varat pievienot rakstus etiķetēm manuāli "
"(skatiet darbību izvēlni), vai arī ar filtru."
-#: classes/feeds.php:711
+#: classes/feeds.php:714
msgid "No articles found to display."
msgstr "Netika atrasti raksti, ko rādīt."
-#: classes/feeds.php:726 classes/feeds.php:907
+#: classes/feeds.php:729 classes/feeds.php:910
#, php-format
msgid "Feeds last updated at %s"
msgstr "Barotnes pēdējo reizi atjaunotas %s."
-#: classes/feeds.php:736 classes/feeds.php:917
+#: classes/feeds.php:739 classes/feeds.php:920
msgid "Some feeds have update errors (click for details)"
msgstr ""
"Dažas barotnes ir atjaunotas ar kļūdām (klikšķiniet lai skatītu vairāk)"
-#: classes/feeds.php:897
+#: classes/feeds.php:900
msgid "No feed selected."
msgstr "Nav izvēlēta barotne."
@@ -3083,74 +3083,74 @@ msgstr "Zvaigžņot rakstu"
msgid "Unpublish article"
msgstr "Atpublicēt rakstu"
-#: js/viewfeed.js:674 js/viewfeed.js:702 js/viewfeed.js:729 js/viewfeed.js:791
-#: js/viewfeed.js:823 js/viewfeed.js:960 js/viewfeed.js:1003
-#: js/viewfeed.js:1053 js/viewfeed.js:1967 plugins/mailto/init.js:7
+#: js/viewfeed.js:681 js/viewfeed.js:709 js/viewfeed.js:736 js/viewfeed.js:798
+#: js/viewfeed.js:830 js/viewfeed.js:967 js/viewfeed.js:1010
+#: js/viewfeed.js:1060 js/viewfeed.js:1987 plugins/mailto/init.js:7
#: plugins/mail/mail.js:7
msgid "No articles are selected."
msgstr "Nav norādīts raksts."
-#: js/viewfeed.js:940
+#: js/viewfeed.js:947
msgid "Mark all visible articles in %s as read?"
msgstr "Vai atzīmēt redzamos rakstus %s kā lasītus?"
-#: js/viewfeed.js:968
+#: js/viewfeed.js:975
msgid "Delete %d selected articles in %s?"
msgstr "Dzēst %d izvēlētos rakstus %s?"
-#: js/viewfeed.js:970
+#: js/viewfeed.js:977
msgid "Delete %d selected articles?"
msgstr "Dzēst %d izvēlētos rakstus?"
-#: js/viewfeed.js:1012
+#: js/viewfeed.js:1019
msgid "Archive %d selected articles in %s?"
msgstr "Arhivēt %d izvēlētos rakstus %s?"
-#: js/viewfeed.js:1015
+#: js/viewfeed.js:1022
msgid "Move %d archived articles back?"
msgstr "Pārvietot %d arhivētos rakstus atpakaļ?"
-#: js/viewfeed.js:1059
+#: js/viewfeed.js:1066
msgid "Mark %d selected articles in %s as read?"
msgstr "Atzīmēt %d izvēlētos rakstus %s kā lasītus?"
-#: js/viewfeed.js:1083
+#: js/viewfeed.js:1090
msgid "Edit article Tags"
msgstr "Rediģēt rakstu iezīmes"
-#: js/viewfeed.js:1252
+#: js/viewfeed.js:1259
msgid "No article is selected."
msgstr "Nav izvēlēts raksts."
-#: js/viewfeed.js:1287
+#: js/viewfeed.js:1294
msgid "No articles found to mark"
msgstr "Nav atrasti iezīmējamie raksti"
-#: js/viewfeed.js:1289
+#: js/viewfeed.js:1296
msgid "Mark %d article(s) as read?"
msgstr "Iezīmēt %d rakstus kā lasītus?"
-#: js/viewfeed.js:1784
+#: js/viewfeed.js:1804
msgid "Open original article"
msgstr "Atvērt sākotnējo rakstu"
-#: js/viewfeed.js:1854
+#: js/viewfeed.js:1874
msgid "Remove label"
msgstr "Dzēst etiķeti"
-#: js/viewfeed.js:1878
+#: js/viewfeed.js:1898
msgid "Playing..."
msgstr "Atskaņo..."
-#: js/viewfeed.js:1879
+#: js/viewfeed.js:1899
msgid "Click to pause"
msgstr "Klikšķiniet, lai apturētu"
-#: js/viewfeed.js:1936
+#: js/viewfeed.js:1956
msgid "Please enter new score for selected articles:"
msgstr "Ievadiet jauno vērtējumu izvēlētajiem rakstiem:"
-#: js/viewfeed.js:1978
+#: js/viewfeed.js:1998
msgid "Please enter new score for this article:"
msgstr "Ievadiet jaunu vērtējumu šim rakstam:"
diff --git a/locale/nb_NO/LC_MESSAGES/messages.mo b/locale/nb_NO/LC_MESSAGES/messages.mo
index 1c2e07ab1..12669403c 100644
--- a/locale/nb_NO/LC_MESSAGES/messages.mo
+++ b/locale/nb_NO/LC_MESSAGES/messages.mo
Binary files differ
diff --git a/locale/nb_NO/LC_MESSAGES/messages.po b/locale/nb_NO/LC_MESSAGES/messages.po
index 86f90f113..93bd9983b 100644
--- a/locale/nb_NO/LC_MESSAGES/messages.po
+++ b/locale/nb_NO/LC_MESSAGES/messages.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Tiny Tiny RSS 1.3.3\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-03-20 10:24+0400\n"
+"POT-Creation-Date: 2013-03-20 15:53+0400\n"
"PO-Revision-Date: 2009-05-02 00:10+0100\n"
"Last-Translator: Christian Lomsdalen <[email protected]>\n"
"Language-Team: Norwegian Bokmål <[email protected]>\n"
@@ -260,7 +260,7 @@ msgstr ""
#: index.php:117 index.php:147 index.php:252 prefs.php:79
#: classes/backend.php:5 classes/pref/labels.php:296
#: classes/pref/filters.php:609 classes/pref/feeds.php:1296
-#: plugins/digest/digest_body.php:45 js/viewfeed.js:1174
+#: plugins/digest/digest_body.php:45 js/viewfeed.js:1181
msgid "Loading, please wait..."
msgstr "laster, vennligst vent"
@@ -336,7 +336,7 @@ msgstr "Oppdater"
#: index.php:191 index.php:221 include/functions.php:1906
#: include/localized_schema.php:10 classes/feeds.php:111 classes/feeds.php:136
-#: classes/feeds.php:408 js/FeedTree.js:128 js/FeedTree.js:156
+#: classes/feeds.php:410 js/FeedTree.js:128 js/FeedTree.js:156
#: plugins/digest/digest.js:630
msgid "Mark as read"
msgstr "Marker som lest"
@@ -710,12 +710,12 @@ msgstr "Publiser artiklen"
msgid "Open in new window"
msgstr "Åpne artikkel i nytt nettleservindu"
-#: include/functions.php:1886 js/viewfeed.js:1798
+#: include/functions.php:1886 js/viewfeed.js:1818
#, fuzzy
msgid "Mark below as read"
msgstr "Marker som lest"
-#: include/functions.php:1887 js/viewfeed.js:1792
+#: include/functions.php:1887 js/viewfeed.js:1812
#, fuzzy
msgid "Mark above as read"
msgstr "Marker som lest"
@@ -868,42 +868,42 @@ msgstr "Vis søkevinduet"
msgid "Search results: %s"
msgstr "Søkeresultat"
-#: include/functions.php:2892 js/viewfeed.js:1885
+#: include/functions.php:2893 js/viewfeed.js:1905
#, fuzzy
msgid "Click to play"
msgstr "Trykk for å endre"
-#: include/functions.php:2893 js/viewfeed.js:1884
+#: include/functions.php:2894 js/viewfeed.js:1904
msgid "Play"
msgstr ""
-#: include/functions.php:3014
+#: include/functions.php:3015
msgid " - "
msgstr "-"
-#: include/functions.php:3036 include/functions.php:3353 classes/rpc.php:360
+#: include/functions.php:3037 include/functions.php:3354 classes/rpc.php:360
msgid "no tags"
msgstr "Ingen stikkord"
-#: include/functions.php:3046 classes/feeds.php:653
+#: include/functions.php:3047 classes/feeds.php:656
msgid "Edit tags for this article"
msgstr "Rediger stikkordene for denne artikkelen"
-#: include/functions.php:3075 classes/feeds.php:608
+#: include/functions.php:3076 classes/feeds.php:610
#, fuzzy
msgid "Originally from:"
msgstr "Vis opprinnelig artikkelinnhold"
-#: include/functions.php:3088 classes/feeds.php:621 classes/pref/feeds.php:507
+#: include/functions.php:3089 classes/feeds.php:623 classes/pref/feeds.php:507
#, fuzzy
msgid "Feed URL"
msgstr "Nyhetsstrøm"
-#: include/functions.php:3117
+#: include/functions.php:3118
msgid "Related"
msgstr ""
-#: include/functions.php:3144 classes/dlg.php:43 classes/dlg.php:162
+#: include/functions.php:3145 classes/dlg.php:43 classes/dlg.php:162
#: classes/dlg.php:185 classes/dlg.php:222 classes/dlg.php:508
#: classes/dlg.php:543 classes/dlg.php:574 classes/dlg.php:608
#: classes/dlg.php:620 classes/backend.php:105 classes/pref/users.php:106
@@ -914,16 +914,16 @@ msgstr ""
msgid "Close this window"
msgstr "Lukk dette vinduet"
-#: include/functions.php:3378
+#: include/functions.php:3379
#, fuzzy
msgid "(edit note)"
msgstr "Rediger notat"
-#: include/functions.php:3611
+#: include/functions.php:3612
msgid "unknown type"
msgstr "Ukjent type"
-#: include/functions.php:3661
+#: include/functions.php:3662
#, fuzzy
msgid "Attachments"
msgstr "Vedlegg:"
@@ -962,7 +962,7 @@ msgstr "Publiser artiklen"
msgid "Assign tags"
msgstr "Tildel stikkord"
-#: include/localized_schema.php:14 js/viewfeed.js:1849
+#: include/localized_schema.php:14 js/viewfeed.js:1869
msgid "Assign label"
msgstr "Tildel stikkord"
@@ -1682,32 +1682,32 @@ msgstr "Marker artikkel som favoritt"
msgid "Feed:"
msgstr "Nyhetsstrøm:"
-#: classes/feeds.php:201 classes/feeds.php:798
+#: classes/feeds.php:201 classes/feeds.php:801
msgid "Feed not found."
msgstr "Nyhetsstrømmen ble ikke funnet"
-#: classes/feeds.php:498
+#: classes/feeds.php:500
msgid "mark as read"
msgstr "marker som lest"
-#: classes/feeds.php:553
+#: classes/feeds.php:555
#, fuzzy
msgid "Collapse article"
msgstr "Fjern artikler"
-#: classes/feeds.php:699
+#: classes/feeds.php:702
msgid "No unread articles found to display."
msgstr "Ingen uleste artikler funnet som kunne vises"
-#: classes/feeds.php:702
+#: classes/feeds.php:705
msgid "No updated articles found to display."
msgstr "Ingen oppdaterte artikler funnet som kunne vises"
-#: classes/feeds.php:705
+#: classes/feeds.php:708
msgid "No starred articles found to display."
msgstr "Ingen markerte artikler som kan vises"
-#: classes/feeds.php:709
+#: classes/feeds.php:712
msgid ""
"No articles found to display. You can assign articles to labels manually "
"(see the Actions menu above) or use a filter."
@@ -1715,20 +1715,20 @@ msgstr ""
"Ingen artikler ble funnet. Du kan gi artikler merkelapper manuelt (se aksjon-"
"menyen ovenfor) eller bruke et filter."
-#: classes/feeds.php:711
+#: classes/feeds.php:714
msgid "No articles found to display."
msgstr "Ingen artikler funnet som kan vises"
-#: classes/feeds.php:726 classes/feeds.php:907
+#: classes/feeds.php:729 classes/feeds.php:910
#, fuzzy, php-format
msgid "Feeds last updated at %s"
msgstr "Oppdateringsfeil"
-#: classes/feeds.php:736 classes/feeds.php:917
+#: classes/feeds.php:739 classes/feeds.php:920
msgid "Some feeds have update errors (click for details)"
msgstr "Noen nyhetsstrømmer har oppdateringsfeil (trykk for detaljer)"
-#: classes/feeds.php:897
+#: classes/feeds.php:900
msgid "No feed selected."
msgstr "Ingen valgt nyhetsstrøm"
@@ -3224,84 +3224,84 @@ msgstr "Marker artikkel som favoritt"
msgid "Unpublish article"
msgstr "Fjern publiseringen av artikkelen."
-#: js/viewfeed.js:674 js/viewfeed.js:702 js/viewfeed.js:729 js/viewfeed.js:791
-#: js/viewfeed.js:823 js/viewfeed.js:960 js/viewfeed.js:1003
-#: js/viewfeed.js:1053 js/viewfeed.js:1967 plugins/mailto/init.js:7
+#: js/viewfeed.js:681 js/viewfeed.js:709 js/viewfeed.js:736 js/viewfeed.js:798
+#: js/viewfeed.js:830 js/viewfeed.js:967 js/viewfeed.js:1010
+#: js/viewfeed.js:1060 js/viewfeed.js:1987 plugins/mailto/init.js:7
#: plugins/mail/mail.js:7
msgid "No articles are selected."
msgstr "Ingen artikler er valgt."
-#: js/viewfeed.js:940
+#: js/viewfeed.js:947
msgid "Mark all visible articles in %s as read?"
msgstr "Marker alle synlige artikler i %s som leste?"
-#: js/viewfeed.js:968
+#: js/viewfeed.js:975
#, fuzzy
msgid "Delete %d selected articles in %s?"
msgstr "Marker %d valgte artikler i %s som leste?"
-#: js/viewfeed.js:970
+#: js/viewfeed.js:977
#, fuzzy
msgid "Delete %d selected articles?"
msgstr "Fjerne merkede artikler fra merkelappen?"
-#: js/viewfeed.js:1012
+#: js/viewfeed.js:1019
#, fuzzy
msgid "Archive %d selected articles in %s?"
msgstr "Marker %d valgte artikler i %s som leste?"
-#: js/viewfeed.js:1015
+#: js/viewfeed.js:1022
#, fuzzy
msgid "Move %d archived articles back?"
msgstr "Favorittartikler"
-#: js/viewfeed.js:1059
+#: js/viewfeed.js:1066
msgid "Mark %d selected articles in %s as read?"
msgstr "Marker %d valgte artikler i %s som leste?"
-#: js/viewfeed.js:1083
+#: js/viewfeed.js:1090
#, fuzzy
msgid "Edit article Tags"
msgstr "Endre Stikkord"
-#: js/viewfeed.js:1252
+#: js/viewfeed.js:1259
msgid "No article is selected."
msgstr "Ingen artikkel er valgt."
-#: js/viewfeed.js:1287
+#: js/viewfeed.js:1294
msgid "No articles found to mark"
msgstr "Ingen artikler funnet som kan markeres"
-#: js/viewfeed.js:1289
+#: js/viewfeed.js:1296
msgid "Mark %d article(s) as read?"
msgstr "Marker %d artikkel/artikler som leste?"
-#: js/viewfeed.js:1784
+#: js/viewfeed.js:1804
#, fuzzy
msgid "Open original article"
msgstr "Vis opprinnelig artikkelinnhold"
-#: js/viewfeed.js:1854
+#: js/viewfeed.js:1874
#, fuzzy
msgid "Remove label"
msgstr "Fjerne merkede merkelapper?"
-#: js/viewfeed.js:1878
+#: js/viewfeed.js:1898
#, fuzzy
msgid "Playing..."
msgstr "Laster nyhetsstrømmer..."
-#: js/viewfeed.js:1879
+#: js/viewfeed.js:1899
#, fuzzy
msgid "Click to pause"
msgstr "Trykk for å endre"
-#: js/viewfeed.js:1936
+#: js/viewfeed.js:1956
#, fuzzy
msgid "Please enter new score for selected articles:"
msgstr "Vennligst skriv inn et notat for denne artikkelen:"
-#: js/viewfeed.js:1978
+#: js/viewfeed.js:1998
#, fuzzy
msgid "Please enter new score for this article:"
msgstr "Vennligst skriv inn et notat for denne artikkelen:"
diff --git a/locale/pl_PL/LC_MESSAGES/messages.mo b/locale/pl_PL/LC_MESSAGES/messages.mo
index b4be3a08a..34b6eb33d 100644
--- a/locale/pl_PL/LC_MESSAGES/messages.mo
+++ b/locale/pl_PL/LC_MESSAGES/messages.mo
Binary files differ
diff --git a/locale/pl_PL/LC_MESSAGES/messages.po b/locale/pl_PL/LC_MESSAGES/messages.po
index 6d1c01f80..dafc16d5a 100644
--- a/locale/pl_PL/LC_MESSAGES/messages.po
+++ b/locale/pl_PL/LC_MESSAGES/messages.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Tiny Tiny RSS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-03-20 10:24+0400\n"
+"POT-Creation-Date: 2013-03-20 15:53+0400\n"
"PO-Revision-Date: 2012-10-06 16:54+0100\n"
"Last-Translator: Mirosław Lach <[email protected]>\n"
"Language-Team: Polish (http://www.transifex.com/projects/p/tt-rss/language/"
@@ -269,7 +269,7 @@ msgstr ""
#: index.php:117 index.php:147 index.php:252 prefs.php:79
#: classes/backend.php:5 classes/pref/labels.php:296
#: classes/pref/filters.php:609 classes/pref/feeds.php:1296
-#: plugins/digest/digest_body.php:45 js/viewfeed.js:1174
+#: plugins/digest/digest_body.php:45 js/viewfeed.js:1181
msgid "Loading, please wait..."
msgstr "Trwa ładowanie, proszę czekać..."
@@ -343,7 +343,7 @@ msgstr "Aktualizuj"
#: index.php:191 index.php:221 include/functions.php:1906
#: include/localized_schema.php:10 classes/feeds.php:111 classes/feeds.php:136
-#: classes/feeds.php:408 js/FeedTree.js:128 js/FeedTree.js:156
+#: classes/feeds.php:410 js/FeedTree.js:128 js/FeedTree.js:156
#: plugins/digest/digest.js:630
msgid "Mark as read"
msgstr "Oznacz jako przeczytane"
@@ -711,11 +711,11 @@ msgstr "Odwołaj przeczytane artykuły"
msgid "Open in new window"
msgstr "Otwórz artykuł w nowym oknie"
-#: include/functions.php:1886 js/viewfeed.js:1798
+#: include/functions.php:1886 js/viewfeed.js:1818
msgid "Mark below as read"
msgstr "Oznacz poniższe jako przeczytane"
-#: include/functions.php:1887 js/viewfeed.js:1792
+#: include/functions.php:1887 js/viewfeed.js:1812
msgid "Mark above as read"
msgstr "Oznacz powyższe jako przeczytane"
@@ -864,39 +864,39 @@ msgstr "Otwórz okno wyszukiwania"
msgid "Search results: %s"
msgstr "Wyniki wyszukiwania: %s"
-#: include/functions.php:2892 js/viewfeed.js:1885
+#: include/functions.php:2893 js/viewfeed.js:1905
msgid "Click to play"
msgstr "Wciśnij aby odtworzyć"
-#: include/functions.php:2893 js/viewfeed.js:1884
+#: include/functions.php:2894 js/viewfeed.js:1904
msgid "Play"
msgstr "Odtwórz"
-#: include/functions.php:3014
+#: include/functions.php:3015
msgid " - "
msgstr " - "
-#: include/functions.php:3036 include/functions.php:3353 classes/rpc.php:360
+#: include/functions.php:3037 include/functions.php:3354 classes/rpc.php:360
msgid "no tags"
msgstr "brak tagów"
-#: include/functions.php:3046 classes/feeds.php:653
+#: include/functions.php:3047 classes/feeds.php:656
msgid "Edit tags for this article"
msgstr "Edytuj tagi dla tego artykułu"
-#: include/functions.php:3075 classes/feeds.php:608
+#: include/functions.php:3076 classes/feeds.php:610
msgid "Originally from:"
msgstr "Oryginał pochodzi z:"
-#: include/functions.php:3088 classes/feeds.php:621 classes/pref/feeds.php:507
+#: include/functions.php:3089 classes/feeds.php:623 classes/pref/feeds.php:507
msgid "Feed URL"
msgstr "Adres kanału"
-#: include/functions.php:3117
+#: include/functions.php:3118
msgid "Related"
msgstr "Pokrewne"
-#: include/functions.php:3144 classes/dlg.php:43 classes/dlg.php:162
+#: include/functions.php:3145 classes/dlg.php:43 classes/dlg.php:162
#: classes/dlg.php:185 classes/dlg.php:222 classes/dlg.php:508
#: classes/dlg.php:543 classes/dlg.php:574 classes/dlg.php:608
#: classes/dlg.php:620 classes/backend.php:105 classes/pref/users.php:106
@@ -907,15 +907,15 @@ msgstr "Pokrewne"
msgid "Close this window"
msgstr "Zamknij to okno"
-#: include/functions.php:3378
+#: include/functions.php:3379
msgid "(edit note)"
msgstr "(edytuj notatkę)"
-#: include/functions.php:3611
+#: include/functions.php:3612
msgid "unknown type"
msgstr "nieznany typ"
-#: include/functions.php:3661
+#: include/functions.php:3662
msgid "Attachments"
msgstr "Załączniki"
@@ -952,7 +952,7 @@ msgstr "Opublikuj"
msgid "Assign tags"
msgstr "Przypisz tagi"
-#: include/localized_schema.php:14 js/viewfeed.js:1849
+#: include/localized_schema.php:14 js/viewfeed.js:1869
msgid "Assign label"
msgstr "Przypisz etykietę"
@@ -1648,32 +1648,32 @@ msgstr "Przekaż za pomocą emaila"
msgid "Feed:"
msgstr "Kanał:"
-#: classes/feeds.php:201 classes/feeds.php:798
+#: classes/feeds.php:201 classes/feeds.php:801
msgid "Feed not found."
msgstr "Kanał nie został odnaleziony."
-#: classes/feeds.php:498
+#: classes/feeds.php:500
msgid "mark as read"
msgstr "oznacz jako przeczytane"
-#: classes/feeds.php:553
+#: classes/feeds.php:555
#, fuzzy
msgid "Collapse article"
msgstr "Zamknij artykuł"
-#: classes/feeds.php:699
+#: classes/feeds.php:702
msgid "No unread articles found to display."
msgstr "Nie znaleziono nieprzeczytanych artykułów."
-#: classes/feeds.php:702
+#: classes/feeds.php:705
msgid "No updated articles found to display."
msgstr "Nie znaleziono uaktualnionych artykułów."
-#: classes/feeds.php:705
+#: classes/feeds.php:708
msgid "No starred articles found to display."
msgstr "Nie znaleziono artykułów oznaczonych gwiazdką."
-#: classes/feeds.php:709
+#: classes/feeds.php:712
msgid ""
"No articles found to display. You can assign articles to labels manually "
"(see the Actions menu above) or use a filter."
@@ -1681,22 +1681,22 @@ msgstr ""
"Nie znaleziono artykułów. Możesz ręcznie przypisać artykuły do etykiet "
"(zobacz menu Akcje powyżej) lub wykorzystać do tego celu filtry."
-#: classes/feeds.php:711
+#: classes/feeds.php:714
msgid "No articles found to display."
msgstr "Nie znaleziono artykułów."
-#: classes/feeds.php:726 classes/feeds.php:907
+#: classes/feeds.php:729 classes/feeds.php:910
#, php-format
msgid "Feeds last updated at %s"
msgstr "Kanały ostatnio uaktualnione o %s"
-#: classes/feeds.php:736 classes/feeds.php:917
+#: classes/feeds.php:739 classes/feeds.php:920
msgid "Some feeds have update errors (click for details)"
msgstr ""
"Wystąpiły błędy aktualizacji niektórych kanałów (kliknij aby zobaczyć "
"szczegóły)"
-#: classes/feeds.php:897
+#: classes/feeds.php:900
msgid "No feed selected."
msgstr "Nie wybrano kanału."
@@ -3148,75 +3148,75 @@ msgstr "Oznacz artykuł gwiazdką"
msgid "Unpublish article"
msgstr "Anuluj publikacje artykułu"
-#: js/viewfeed.js:674 js/viewfeed.js:702 js/viewfeed.js:729 js/viewfeed.js:791
-#: js/viewfeed.js:823 js/viewfeed.js:960 js/viewfeed.js:1003
-#: js/viewfeed.js:1053 js/viewfeed.js:1967 plugins/mailto/init.js:7
+#: js/viewfeed.js:681 js/viewfeed.js:709 js/viewfeed.js:736 js/viewfeed.js:798
+#: js/viewfeed.js:830 js/viewfeed.js:967 js/viewfeed.js:1010
+#: js/viewfeed.js:1060 js/viewfeed.js:1987 plugins/mailto/init.js:7
#: plugins/mail/mail.js:7
msgid "No articles are selected."
msgstr "Nie wybrano żadnych artykułów"
-#: js/viewfeed.js:940
+#: js/viewfeed.js:947
msgid "Mark all visible articles in %s as read?"
msgstr "Oznaczyć wszystkie widoczne artykuły z %s jako przeczytane?"
-#: js/viewfeed.js:968
+#: js/viewfeed.js:975
msgid "Delete %d selected articles in %s?"
msgstr "Usunąć %d zaznaczonych artykułów z %s?"
-#: js/viewfeed.js:970
+#: js/viewfeed.js:977
msgid "Delete %d selected articles?"
msgstr "Usunąć %d zaznaczonych artykułów?"
-#: js/viewfeed.js:1012
+#: js/viewfeed.js:1019
msgid "Archive %d selected articles in %s?"
msgstr "Zarchiwizować %d zaznaczonych artykułów z %s?"
-#: js/viewfeed.js:1015
+#: js/viewfeed.js:1022
msgid "Move %d archived articles back?"
msgstr "Przywrócić %d zarchiwizowanych artykułów?"
-#: js/viewfeed.js:1059
+#: js/viewfeed.js:1066
msgid "Mark %d selected articles in %s as read?"
msgstr "Oznaczyć %d wybranych artykułów z %s jako przeczytane?"
-#: js/viewfeed.js:1083
+#: js/viewfeed.js:1090
msgid "Edit article Tags"
msgstr "Edytuj tagi artykułu"
-#: js/viewfeed.js:1252
+#: js/viewfeed.js:1259
msgid "No article is selected."
msgstr "Nie wybrano żadnego artykułu."
-#: js/viewfeed.js:1287
+#: js/viewfeed.js:1294
msgid "No articles found to mark"
msgstr "Nie znaleziono artykułów do oznaczenia"
-#: js/viewfeed.js:1289
+#: js/viewfeed.js:1296
msgid "Mark %d article(s) as read?"
msgstr "Oznaczyć %d artykuły(ów) jako przeczytane?"
-#: js/viewfeed.js:1784
+#: js/viewfeed.js:1804
msgid "Open original article"
msgstr "Otwórz oryginalny artykuł"
-#: js/viewfeed.js:1854
+#: js/viewfeed.js:1874
msgid "Remove label"
msgstr "Usuń etykietę"
-#: js/viewfeed.js:1878
+#: js/viewfeed.js:1898
msgid "Playing..."
msgstr "Odtwarzam..."
-#: js/viewfeed.js:1879
+#: js/viewfeed.js:1899
msgid "Click to pause"
msgstr "Kliknij aby zapauzować"
-#: js/viewfeed.js:1936
+#: js/viewfeed.js:1956
#, fuzzy
msgid "Please enter new score for selected articles:"
msgstr "Usunąć %d zaznaczonych artykułów?"
-#: js/viewfeed.js:1978
+#: js/viewfeed.js:1998
#, fuzzy
msgid "Please enter new score for this article:"
msgstr "Wprowadź tytuł kategorii:"
diff --git a/locale/pt_BR/LC_MESSAGES/messages.mo b/locale/pt_BR/LC_MESSAGES/messages.mo
index 06fea5192..4398c14b4 100644
--- a/locale/pt_BR/LC_MESSAGES/messages.mo
+++ b/locale/pt_BR/LC_MESSAGES/messages.mo
Binary files differ
diff --git a/locale/pt_BR/LC_MESSAGES/messages.po b/locale/pt_BR/LC_MESSAGES/messages.po
index a77f0f2d9..14f43bafb 100644
--- a/locale/pt_BR/LC_MESSAGES/messages.po
+++ b/locale/pt_BR/LC_MESSAGES/messages.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: tt-rss 1.2.14.2\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-03-20 10:24+0400\n"
+"POT-Creation-Date: 2013-03-20 15:53+0400\n"
"PO-Revision-Date: 2007-10-24 00:47-0200\n"
"Last-Translator: Marcelo Jorge VIeira (metal) <[email protected]>\n"
"Language-Team: Portuguese/Brazil\n"
@@ -247,7 +247,7 @@ msgstr ""
#: index.php:117 index.php:147 index.php:252 prefs.php:79
#: classes/backend.php:5 classes/pref/labels.php:296
#: classes/pref/filters.php:609 classes/pref/feeds.php:1296
-#: plugins/digest/digest_body.php:45 js/viewfeed.js:1174
+#: plugins/digest/digest_body.php:45 js/viewfeed.js:1181
msgid "Loading, please wait..."
msgstr ""
@@ -325,7 +325,7 @@ msgstr "Atualizar"
#: index.php:191 index.php:221 include/functions.php:1906
#: include/localized_schema.php:10 classes/feeds.php:111 classes/feeds.php:136
-#: classes/feeds.php:408 js/FeedTree.js:128 js/FeedTree.js:156
+#: classes/feeds.php:410 js/FeedTree.js:128 js/FeedTree.js:156
#: plugins/digest/digest.js:630
msgid "Mark as read"
msgstr "Marcar como lido"
@@ -709,12 +709,12 @@ msgstr "Favoritos"
msgid "Open in new window"
msgstr ""
-#: include/functions.php:1886 js/viewfeed.js:1798
+#: include/functions.php:1886 js/viewfeed.js:1818
#, fuzzy
msgid "Mark below as read"
msgstr "Marcar como lido"
-#: include/functions.php:1887 js/viewfeed.js:1792
+#: include/functions.php:1887 js/viewfeed.js:1812
#, fuzzy
msgid "Mark above as read"
msgstr "Marcar como lido"
@@ -866,44 +866,44 @@ msgstr "Favoritos"
msgid "Search results: %s"
msgstr ""
-#: include/functions.php:2892 js/viewfeed.js:1885
+#: include/functions.php:2893 js/viewfeed.js:1905
#, fuzzy
msgid "Click to play"
msgstr "Favoritos"
-#: include/functions.php:2893 js/viewfeed.js:1884
+#: include/functions.php:2894 js/viewfeed.js:1904
msgid "Play"
msgstr ""
-#: include/functions.php:3014
+#: include/functions.php:3015
#, fuzzy
msgid " - "
msgstr " - por "
-#: include/functions.php:3036 include/functions.php:3353 classes/rpc.php:360
+#: include/functions.php:3037 include/functions.php:3354 classes/rpc.php:360
msgid "no tags"
msgstr "sem tags"
-#: include/functions.php:3046 classes/feeds.php:653
+#: include/functions.php:3047 classes/feeds.php:656
#, fuzzy
msgid "Edit tags for this article"
msgstr "Favoritos"
-#: include/functions.php:3075 classes/feeds.php:608
+#: include/functions.php:3076 classes/feeds.php:610
#, fuzzy
msgid "Originally from:"
msgstr "Favoritos"
-#: include/functions.php:3088 classes/feeds.php:621 classes/pref/feeds.php:507
+#: include/functions.php:3089 classes/feeds.php:623 classes/pref/feeds.php:507
#, fuzzy
msgid "Feed URL"
msgstr "Feed"
-#: include/functions.php:3117
+#: include/functions.php:3118
msgid "Related"
msgstr ""
-#: include/functions.php:3144 classes/dlg.php:43 classes/dlg.php:162
+#: include/functions.php:3145 classes/dlg.php:43 classes/dlg.php:162
#: classes/dlg.php:185 classes/dlg.php:222 classes/dlg.php:508
#: classes/dlg.php:543 classes/dlg.php:574 classes/dlg.php:608
#: classes/dlg.php:620 classes/backend.php:105 classes/pref/users.php:106
@@ -914,16 +914,16 @@ msgstr ""
msgid "Close this window"
msgstr "Fechar esta janela"
-#: include/functions.php:3378
+#: include/functions.php:3379
msgid "(edit note)"
msgstr ""
-#: include/functions.php:3611
+#: include/functions.php:3612
#, fuzzy
msgid "unknown type"
msgstr "Erro desconhecido"
-#: include/functions.php:3661
+#: include/functions.php:3662
#, fuzzy
msgid "Attachments"
msgstr "Conteúdo"
@@ -964,7 +964,7 @@ msgstr ""
msgid "Assign tags"
msgstr "sem tags"
-#: include/localized_schema.php:14 js/viewfeed.js:1849
+#: include/localized_schema.php:14 js/viewfeed.js:1869
msgid "Assign label"
msgstr ""
@@ -1658,56 +1658,56 @@ msgstr "Favoritos"
msgid "Feed:"
msgstr "Feed:"
-#: classes/feeds.php:201 classes/feeds.php:798
+#: classes/feeds.php:201 classes/feeds.php:801
msgid "Feed not found."
msgstr "Feed não encontrado."
-#: classes/feeds.php:498
+#: classes/feeds.php:500
#, fuzzy
msgid "mark as read"
msgstr "Marcar como lido"
-#: classes/feeds.php:553
+#: classes/feeds.php:555
#, fuzzy
msgid "Collapse article"
msgstr "Favoritos"
-#: classes/feeds.php:699
+#: classes/feeds.php:702
#, fuzzy
msgid "No unread articles found to display."
msgstr "Sem Feeds para exibir."
-#: classes/feeds.php:702
+#: classes/feeds.php:705
#, fuzzy
msgid "No updated articles found to display."
msgstr "Sem Feeds para exibir."
-#: classes/feeds.php:705
+#: classes/feeds.php:708
#, fuzzy
msgid "No starred articles found to display."
msgstr "Sem Feeds para exibir."
-#: classes/feeds.php:709
+#: classes/feeds.php:712
msgid ""
"No articles found to display. You can assign articles to labels manually "
"(see the Actions menu above) or use a filter."
msgstr ""
-#: classes/feeds.php:711
+#: classes/feeds.php:714
#, fuzzy
msgid "No articles found to display."
msgstr "Sem Feeds para exibir."
-#: classes/feeds.php:726 classes/feeds.php:907
+#: classes/feeds.php:729 classes/feeds.php:910
#, fuzzy, php-format
msgid "Feeds last updated at %s"
msgstr "Atualizar"
-#: classes/feeds.php:736 classes/feeds.php:917
+#: classes/feeds.php:739 classes/feeds.php:920
msgid "Some feeds have update errors (click for details)"
msgstr "Alguns feeds estão com erros (clique aqui para detalhes)"
-#: classes/feeds.php:897
+#: classes/feeds.php:900
msgid "No feed selected."
msgstr "Nenhum feed foi selecionado."
@@ -3226,90 +3226,90 @@ msgstr "Favoritos"
msgid "Unpublish article"
msgstr "Publicado"
-#: js/viewfeed.js:674 js/viewfeed.js:702 js/viewfeed.js:729 js/viewfeed.js:791
-#: js/viewfeed.js:823 js/viewfeed.js:960 js/viewfeed.js:1003
-#: js/viewfeed.js:1053 js/viewfeed.js:1967 plugins/mailto/init.js:7
+#: js/viewfeed.js:681 js/viewfeed.js:709 js/viewfeed.js:736 js/viewfeed.js:798
+#: js/viewfeed.js:830 js/viewfeed.js:967 js/viewfeed.js:1010
+#: js/viewfeed.js:1060 js/viewfeed.js:1987 plugins/mailto/init.js:7
#: plugins/mail/mail.js:7
#, fuzzy
msgid "No articles are selected."
msgstr "Nenhum filtro foi selecionado."
-#: js/viewfeed.js:940
+#: js/viewfeed.js:947
#, fuzzy
msgid "Mark all visible articles in %s as read?"
msgstr "Marcando todos os feeds como lidos..."
-#: js/viewfeed.js:968
+#: js/viewfeed.js:975
#, fuzzy
msgid "Delete %d selected articles in %s?"
msgstr "Favoritos"
-#: js/viewfeed.js:970
+#: js/viewfeed.js:977
#, fuzzy
msgid "Delete %d selected articles?"
msgstr "Remover os filtros selecionados?"
-#: js/viewfeed.js:1012
+#: js/viewfeed.js:1019
#, fuzzy
msgid "Archive %d selected articles in %s?"
msgstr "Favoritos"
-#: js/viewfeed.js:1015
+#: js/viewfeed.js:1022
#, fuzzy
msgid "Move %d archived articles back?"
msgstr "Favoritos"
-#: js/viewfeed.js:1059
+#: js/viewfeed.js:1066
#, fuzzy
msgid "Mark %d selected articles in %s as read?"
msgstr "Marcando todos os feeds como lidos..."
-#: js/viewfeed.js:1083
+#: js/viewfeed.js:1090
#, fuzzy
msgid "Edit article Tags"
msgstr "Editar Tags"
-#: js/viewfeed.js:1252
+#: js/viewfeed.js:1259
#, fuzzy
msgid "No article is selected."
msgstr "Nenhum filtro foi selecionado."
-#: js/viewfeed.js:1287
+#: js/viewfeed.js:1294
#, fuzzy
msgid "No articles found to mark"
msgstr "Sem Feeds para exibir."
-#: js/viewfeed.js:1289
+#: js/viewfeed.js:1296
#, fuzzy
msgid "Mark %d article(s) as read?"
msgstr "Marcando todos os feeds como lidos..."
-#: js/viewfeed.js:1784
+#: js/viewfeed.js:1804
#, fuzzy
msgid "Open original article"
msgstr "Favoritos"
-#: js/viewfeed.js:1854
+#: js/viewfeed.js:1874
#, fuzzy
msgid "Remove label"
msgstr "Remover"
-#: js/viewfeed.js:1878
+#: js/viewfeed.js:1898
#, fuzzy
msgid "Playing..."
msgstr "Salvando o Feed..."
-#: js/viewfeed.js:1879
+#: js/viewfeed.js:1899
#, fuzzy
msgid "Click to pause"
msgstr "Favoritos"
-#: js/viewfeed.js:1936
+#: js/viewfeed.js:1956
#, fuzzy
msgid "Please enter new score for selected articles:"
msgstr "Remover os filtros selecionados?"
-#: js/viewfeed.js:1978
+#: js/viewfeed.js:1998
#, fuzzy
msgid "Please enter new score for this article:"
msgstr "Salvando categoria..."
diff --git a/locale/ru_RU/LC_MESSAGES/messages.mo b/locale/ru_RU/LC_MESSAGES/messages.mo
index 1dd107667..dea279ca3 100644
--- a/locale/ru_RU/LC_MESSAGES/messages.mo
+++ b/locale/ru_RU/LC_MESSAGES/messages.mo
Binary files differ
diff --git a/locale/ru_RU/LC_MESSAGES/messages.po b/locale/ru_RU/LC_MESSAGES/messages.po
index d8ca1cbe7..8e396b1e7 100644
--- a/locale/ru_RU/LC_MESSAGES/messages.po
+++ b/locale/ru_RU/LC_MESSAGES/messages.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: 1.0\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-03-20 10:24+0400\n"
+"POT-Creation-Date: 2013-03-20 15:53+0400\n"
"PO-Revision-Date: 2009-05-29 14:38+0300\n"
"Last-Translator: Max Kamashev <[email protected]>\n"
"Language-Team: Русский <[email protected]>\n"
@@ -262,7 +262,7 @@ msgstr ""
#: index.php:117 index.php:147 index.php:252 prefs.php:79
#: classes/backend.php:5 classes/pref/labels.php:296
#: classes/pref/filters.php:609 classes/pref/feeds.php:1296
-#: plugins/digest/digest_body.php:45 js/viewfeed.js:1174
+#: plugins/digest/digest_body.php:45 js/viewfeed.js:1181
msgid "Loading, please wait..."
msgstr "Идет загрузка..."
@@ -336,7 +336,7 @@ msgstr "Обновить"
#: index.php:191 index.php:221 include/functions.php:1906
#: include/localized_schema.php:10 classes/feeds.php:111 classes/feeds.php:136
-#: classes/feeds.php:408 js/FeedTree.js:128 js/FeedTree.js:156
+#: classes/feeds.php:410 js/FeedTree.js:128 js/FeedTree.js:156
#: plugins/digest/digest.js:630
msgid "Mark as read"
msgstr "Как прочитанные"
@@ -706,11 +706,11 @@ msgstr "Опубликовать"
msgid "Open in new window"
msgstr "Открыть статью в новом окне"
-#: include/functions.php:1886 js/viewfeed.js:1798
+#: include/functions.php:1886 js/viewfeed.js:1818
msgid "Mark below as read"
msgstr "Отметить статьи ниже как прочитанные"
-#: include/functions.php:1887 js/viewfeed.js:1792
+#: include/functions.php:1887 js/viewfeed.js:1812
msgid "Mark above as read"
msgstr "Отметить статьи выше как прочитанные"
@@ -860,40 +860,40 @@ msgstr "Показать диалог поиска"
msgid "Search results: %s"
msgstr "Результаты поиска"
-#: include/functions.php:2892 js/viewfeed.js:1885
+#: include/functions.php:2893 js/viewfeed.js:1905
msgid "Click to play"
msgstr "Щёлкните для проигрывания"
-#: include/functions.php:2893 js/viewfeed.js:1884
+#: include/functions.php:2894 js/viewfeed.js:1904
msgid "Play"
msgstr "Играть"
-#: include/functions.php:3014
+#: include/functions.php:3015
msgid " - "
msgstr " - "
-#: include/functions.php:3036 include/functions.php:3353 classes/rpc.php:360
+#: include/functions.php:3037 include/functions.php:3354 classes/rpc.php:360
msgid "no tags"
msgstr "нет тегов"
-#: include/functions.php:3046 classes/feeds.php:653
+#: include/functions.php:3047 classes/feeds.php:656
msgid "Edit tags for this article"
msgstr "Редактировать теги статьи"
-#: include/functions.php:3075 classes/feeds.php:608
+#: include/functions.php:3076 classes/feeds.php:610
msgid "Originally from:"
msgstr "Оригинал:"
-#: include/functions.php:3088 classes/feeds.php:621 classes/pref/feeds.php:507
+#: include/functions.php:3089 classes/feeds.php:623 classes/pref/feeds.php:507
#, fuzzy
msgid "Feed URL"
msgstr "Канал"
-#: include/functions.php:3117
+#: include/functions.php:3118
msgid "Related"
msgstr ""
-#: include/functions.php:3144 classes/dlg.php:43 classes/dlg.php:162
+#: include/functions.php:3145 classes/dlg.php:43 classes/dlg.php:162
#: classes/dlg.php:185 classes/dlg.php:222 classes/dlg.php:508
#: classes/dlg.php:543 classes/dlg.php:574 classes/dlg.php:608
#: classes/dlg.php:620 classes/backend.php:105 classes/pref/users.php:106
@@ -904,16 +904,16 @@ msgstr ""
msgid "Close this window"
msgstr "Закрыть это окно"
-#: include/functions.php:3378
+#: include/functions.php:3379
#, fuzzy
msgid "(edit note)"
msgstr "править заметку"
-#: include/functions.php:3611
+#: include/functions.php:3612
msgid "unknown type"
msgstr "неизвестный тип"
-#: include/functions.php:3661
+#: include/functions.php:3662
#, fuzzy
msgid "Attachments"
msgstr "Вложения:"
@@ -951,7 +951,7 @@ msgstr "Опубликовать"
msgid "Assign tags"
msgstr "Применить теги"
-#: include/localized_schema.php:14 js/viewfeed.js:1849
+#: include/localized_schema.php:14 js/viewfeed.js:1869
msgid "Assign label"
msgstr "Применить метку"
@@ -1645,32 +1645,32 @@ msgstr "Отправить по почте"
msgid "Feed:"
msgstr "Канал:"
-#: classes/feeds.php:201 classes/feeds.php:798
+#: classes/feeds.php:201 classes/feeds.php:801
msgid "Feed not found."
msgstr "Канал не найден."
-#: classes/feeds.php:498
+#: classes/feeds.php:500
msgid "mark as read"
msgstr "Отметить как прочитанные"
-#: classes/feeds.php:553
+#: classes/feeds.php:555
#, fuzzy
msgid "Collapse article"
msgstr "Закрыть статью"
-#: classes/feeds.php:699
+#: classes/feeds.php:702
msgid "No unread articles found to display."
msgstr "Не найдено не прочитанных статей"
-#: classes/feeds.php:702
+#: classes/feeds.php:705
msgid "No updated articles found to display."
msgstr "Не найдено не прочитанных статей."
-#: classes/feeds.php:705
+#: classes/feeds.php:708
msgid "No starred articles found to display."
msgstr "Не найдено отмеченных статей"
-#: classes/feeds.php:709
+#: classes/feeds.php:712
msgid ""
"No articles found to display. You can assign articles to labels manually "
"(see the Actions menu above) or use a filter."
@@ -1678,20 +1678,20 @@ msgstr ""
"Нет статей для показа. Вы можете присвоить метку вручную (смотрите выше меню "
"Действия) или используйте фильтр."
-#: classes/feeds.php:711
+#: classes/feeds.php:714
msgid "No articles found to display."
msgstr "Статей не найдено."
-#: classes/feeds.php:726 classes/feeds.php:907
+#: classes/feeds.php:729 classes/feeds.php:910
#, php-format
msgid "Feeds last updated at %s"
msgstr "Последнее обновление в %s"
-#: classes/feeds.php:736 classes/feeds.php:917
+#: classes/feeds.php:739 classes/feeds.php:920
msgid "Some feeds have update errors (click for details)"
msgstr "Некоторые каналы не могут быть обновлены (щёлкните для подробностей)"
-#: classes/feeds.php:897
+#: classes/feeds.php:900
msgid "No feed selected."
msgstr "Канал не выбран."
@@ -3147,76 +3147,76 @@ msgstr "Отмеченные"
msgid "Unpublish article"
msgstr "Не публиковать"
-#: js/viewfeed.js:674 js/viewfeed.js:702 js/viewfeed.js:729 js/viewfeed.js:791
-#: js/viewfeed.js:823 js/viewfeed.js:960 js/viewfeed.js:1003
-#: js/viewfeed.js:1053 js/viewfeed.js:1967 plugins/mailto/init.js:7
+#: js/viewfeed.js:681 js/viewfeed.js:709 js/viewfeed.js:736 js/viewfeed.js:798
+#: js/viewfeed.js:830 js/viewfeed.js:967 js/viewfeed.js:1010
+#: js/viewfeed.js:1060 js/viewfeed.js:1987 plugins/mailto/init.js:7
#: plugins/mail/mail.js:7
msgid "No articles are selected."
msgstr "Нет выбранных статей."
-#: js/viewfeed.js:940
+#: js/viewfeed.js:947
msgid "Mark all visible articles in %s as read?"
msgstr "Отметить все видимые статьи в %s как прочитанные?"
-#: js/viewfeed.js:968
+#: js/viewfeed.js:975
#, fuzzy
msgid "Delete %d selected articles in %s?"
msgstr "Отметить %d выбранные статьи в %s как прочитанные?"
-#: js/viewfeed.js:970
+#: js/viewfeed.js:977
msgid "Delete %d selected articles?"
msgstr "Удалить %d выбранных статей?"
-#: js/viewfeed.js:1012
+#: js/viewfeed.js:1019
msgid "Archive %d selected articles in %s?"
msgstr "Архивировать %d выбранных статей в %s?"
-#: js/viewfeed.js:1015
+#: js/viewfeed.js:1022
msgid "Move %d archived articles back?"
msgstr "Переместить %d архивированных статей назад?"
-#: js/viewfeed.js:1059
+#: js/viewfeed.js:1066
msgid "Mark %d selected articles in %s as read?"
msgstr "Отметить %d выбранные статьи в %s как прочитанные?"
-#: js/viewfeed.js:1083
+#: js/viewfeed.js:1090
msgid "Edit article Tags"
msgstr "Редактировать теги"
-#: js/viewfeed.js:1252
+#: js/viewfeed.js:1259
msgid "No article is selected."
msgstr "Статья не выбрана"
-#: js/viewfeed.js:1287
+#: js/viewfeed.js:1294
msgid "No articles found to mark"
msgstr "Статей для отметки не найдено."
-#: js/viewfeed.js:1289
+#: js/viewfeed.js:1296
msgid "Mark %d article(s) as read?"
msgstr "Отметить %d статью(ей) как прочитанные?"
-#: js/viewfeed.js:1784
+#: js/viewfeed.js:1804
msgid "Open original article"
msgstr "Показать оригинальное содержимое статьи"
-#: js/viewfeed.js:1854
+#: js/viewfeed.js:1874
msgid "Remove label"
msgstr "Удалить метку"
-#: js/viewfeed.js:1878
+#: js/viewfeed.js:1898
msgid "Playing..."
msgstr "Проигрываю..."
-#: js/viewfeed.js:1879
+#: js/viewfeed.js:1899
msgid "Click to pause"
msgstr "Пауза"
-#: js/viewfeed.js:1936
+#: js/viewfeed.js:1956
#, fuzzy
msgid "Please enter new score for selected articles:"
msgstr "Пожалуйста, укажите заметку для статьи:"
-#: js/viewfeed.js:1978
+#: js/viewfeed.js:1998
#, fuzzy
msgid "Please enter new score for this article:"
msgstr "Пожалуйста, укажите заметку для статьи:"
diff --git a/locale/zh_CN/LC_MESSAGES/messages.mo b/locale/zh_CN/LC_MESSAGES/messages.mo
index e53b3c99b..a434304ce 100644
--- a/locale/zh_CN/LC_MESSAGES/messages.mo
+++ b/locale/zh_CN/LC_MESSAGES/messages.mo
Binary files differ
diff --git a/locale/zh_CN/LC_MESSAGES/messages.po b/locale/zh_CN/LC_MESSAGES/messages.po
index 9eb832614..1eadaae5b 100644
--- a/locale/zh_CN/LC_MESSAGES/messages.po
+++ b/locale/zh_CN/LC_MESSAGES/messages.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Tiny Tiny RSS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-03-20 10:24+0400\n"
+"POT-Creation-Date: 2013-03-20 15:53+0400\n"
"PO-Revision-Date: 2012-02-14 08:32+0000\n"
"Last-Translator: Sai <[email protected]>\n"
"Language-Team: Chinese (China) (http://www.transifex.net/projects/p/tt-rss/"
@@ -250,7 +250,7 @@ msgstr "SQL 脱出测试失败,请检查您的数据库和 PHP 设置。"
#: index.php:117 index.php:147 index.php:252 prefs.php:79
#: classes/backend.php:5 classes/pref/labels.php:296
#: classes/pref/filters.php:609 classes/pref/feeds.php:1296
-#: plugins/digest/digest_body.php:45 js/viewfeed.js:1174
+#: plugins/digest/digest_body.php:45 js/viewfeed.js:1181
msgid "Loading, please wait..."
msgstr "读取中,请稍候……"
@@ -324,7 +324,7 @@ msgstr "更新列表"
#: index.php:191 index.php:221 include/functions.php:1906
#: include/localized_schema.php:10 classes/feeds.php:111 classes/feeds.php:136
-#: classes/feeds.php:408 js/FeedTree.js:128 js/FeedTree.js:156
+#: classes/feeds.php:410 js/FeedTree.js:128 js/FeedTree.js:156
#: plugins/digest/digest.js:630
msgid "Mark as read"
msgstr "标记为已读"
@@ -687,11 +687,11 @@ msgstr "不再显示已读文章"
msgid "Open in new window"
msgstr "在新窗口打开文章"
-#: include/functions.php:1886 js/viewfeed.js:1798
+#: include/functions.php:1886 js/viewfeed.js:1818
msgid "Mark below as read"
msgstr ""
-#: include/functions.php:1887 js/viewfeed.js:1792
+#: include/functions.php:1887 js/viewfeed.js:1812
msgid "Mark above as read"
msgstr ""
@@ -840,39 +840,39 @@ msgstr "显示搜索对话框"
msgid "Search results: %s"
msgstr ""
-#: include/functions.php:2892 js/viewfeed.js:1885
+#: include/functions.php:2893 js/viewfeed.js:1905
msgid "Click to play"
msgstr "点击播放"
-#: include/functions.php:2893 js/viewfeed.js:1884
+#: include/functions.php:2894 js/viewfeed.js:1904
msgid "Play"
msgstr "播放"
-#: include/functions.php:3014
+#: include/functions.php:3015
msgid " - "
msgstr " - "
-#: include/functions.php:3036 include/functions.php:3353 classes/rpc.php:360
+#: include/functions.php:3037 include/functions.php:3354 classes/rpc.php:360
msgid "no tags"
msgstr "无标签"
-#: include/functions.php:3046 classes/feeds.php:653
+#: include/functions.php:3047 classes/feeds.php:656
msgid "Edit tags for this article"
msgstr "为本文编辑自定义标签"
-#: include/functions.php:3075 classes/feeds.php:608
+#: include/functions.php:3076 classes/feeds.php:610
msgid "Originally from:"
msgstr "来源:"
-#: include/functions.php:3088 classes/feeds.php:621 classes/pref/feeds.php:507
+#: include/functions.php:3089 classes/feeds.php:623 classes/pref/feeds.php:507
msgid "Feed URL"
msgstr "信息源 URL"
-#: include/functions.php:3117
+#: include/functions.php:3118
msgid "Related"
msgstr ""
-#: include/functions.php:3144 classes/dlg.php:43 classes/dlg.php:162
+#: include/functions.php:3145 classes/dlg.php:43 classes/dlg.php:162
#: classes/dlg.php:185 classes/dlg.php:222 classes/dlg.php:508
#: classes/dlg.php:543 classes/dlg.php:574 classes/dlg.php:608
#: classes/dlg.php:620 classes/backend.php:105 classes/pref/users.php:106
@@ -883,15 +883,15 @@ msgstr ""
msgid "Close this window"
msgstr "关闭本窗口"
-#: include/functions.php:3378
+#: include/functions.php:3379
msgid "(edit note)"
msgstr "(编辑注记)"
-#: include/functions.php:3611
+#: include/functions.php:3612
msgid "unknown type"
msgstr "未知类型"
-#: include/functions.php:3661
+#: include/functions.php:3662
#, fuzzy
msgid "Attachments"
msgstr "附件:"
@@ -929,7 +929,7 @@ msgstr "发布文章"
msgid "Assign tags"
msgstr "添加自定义标签"
-#: include/localized_schema.php:14 js/viewfeed.js:1849
+#: include/localized_schema.php:14 js/viewfeed.js:1869
msgid "Assign label"
msgstr "添加预定义标签"
@@ -1598,32 +1598,32 @@ msgstr "通过邮件转发"
msgid "Feed:"
msgstr "信息源:"
-#: classes/feeds.php:201 classes/feeds.php:798
+#: classes/feeds.php:201 classes/feeds.php:801
msgid "Feed not found."
msgstr "找不到信息源。"
-#: classes/feeds.php:498
+#: classes/feeds.php:500
msgid "mark as read"
msgstr "标记为已读"
-#: classes/feeds.php:553
+#: classes/feeds.php:555
#, fuzzy
msgid "Collapse article"
msgstr "全部文章"
-#: classes/feeds.php:699
+#: classes/feeds.php:702
msgid "No unread articles found to display."
msgstr "没有未读文章。"
-#: classes/feeds.php:702
+#: classes/feeds.php:705
msgid "No updated articles found to display."
msgstr "没有最新更新的文章。"
-#: classes/feeds.php:705
+#: classes/feeds.php:708
msgid "No starred articles found to display."
msgstr "没有加星标的文章。"
-#: classes/feeds.php:709
+#: classes/feeds.php:712
msgid ""
"No articles found to display. You can assign articles to labels manually "
"(see the Actions menu above) or use a filter."
@@ -1631,20 +1631,20 @@ msgstr ""
"本标签下没有文章。你可以通过手动或过滤器的方式为文章添加预定义标签(参考上方"
"动作菜单)。"
-#: classes/feeds.php:711
+#: classes/feeds.php:714
msgid "No articles found to display."
msgstr "暂时没有文章。"
-#: classes/feeds.php:726 classes/feeds.php:907
+#: classes/feeds.php:729 classes/feeds.php:910
#, php-format
msgid "Feeds last updated at %s"
msgstr "上次信息源更新时间:%s"
-#: classes/feeds.php:736 classes/feeds.php:917
+#: classes/feeds.php:739 classes/feeds.php:920
msgid "Some feeds have update errors (click for details)"
msgstr "部分信息源更新错误(点击了解详情)"
-#: classes/feeds.php:897
+#: classes/feeds.php:900
msgid "No feed selected."
msgstr "没有选中的信息源。"
@@ -3067,75 +3067,75 @@ msgstr "加星标"
msgid "Unpublish article"
msgstr "取消发布文章"
-#: js/viewfeed.js:674 js/viewfeed.js:702 js/viewfeed.js:729 js/viewfeed.js:791
-#: js/viewfeed.js:823 js/viewfeed.js:960 js/viewfeed.js:1003
-#: js/viewfeed.js:1053 js/viewfeed.js:1967 plugins/mailto/init.js:7
+#: js/viewfeed.js:681 js/viewfeed.js:709 js/viewfeed.js:736 js/viewfeed.js:798
+#: js/viewfeed.js:830 js/viewfeed.js:967 js/viewfeed.js:1010
+#: js/viewfeed.js:1060 js/viewfeed.js:1987 plugins/mailto/init.js:7
#: plugins/mail/mail.js:7
msgid "No articles are selected."
msgstr "没有选中任何文章。"
-#: js/viewfeed.js:940
+#: js/viewfeed.js:947
msgid "Mark all visible articles in %s as read?"
msgstr "标记 %s 中所有可见的文章为已读?"
-#: js/viewfeed.js:968
+#: js/viewfeed.js:975
msgid "Delete %d selected articles in %s?"
msgstr "删除 %s 中选择的 %d 篇文章?"
-#: js/viewfeed.js:970
+#: js/viewfeed.js:977
msgid "Delete %d selected articles?"
msgstr "删除选中的 %d 篇文章?"
-#: js/viewfeed.js:1012
+#: js/viewfeed.js:1019
msgid "Archive %d selected articles in %s?"
msgstr "将 %s 中的 %d 篇选中的文章存档?"
-#: js/viewfeed.js:1015
+#: js/viewfeed.js:1022
msgid "Move %d archived articles back?"
msgstr "将存档的 %d 篇文章移回原处?"
-#: js/viewfeed.js:1059
+#: js/viewfeed.js:1066
msgid "Mark %d selected articles in %s as read?"
msgstr "将 %s 中选中的 %d 篇文章标记为已读?"
-#: js/viewfeed.js:1083
+#: js/viewfeed.js:1090
msgid "Edit article Tags"
msgstr "编辑文章的自定义标签"
-#: js/viewfeed.js:1252
+#: js/viewfeed.js:1259
msgid "No article is selected."
msgstr "未选中任何文章。"
-#: js/viewfeed.js:1287
+#: js/viewfeed.js:1294
msgid "No articles found to mark"
msgstr "未找到需要标记的文章"
-#: js/viewfeed.js:1289
+#: js/viewfeed.js:1296
msgid "Mark %d article(s) as read?"
msgstr "将 %d 篇文章标记为已读?"
-#: js/viewfeed.js:1784
+#: js/viewfeed.js:1804
msgid "Open original article"
msgstr "打开原文"
-#: js/viewfeed.js:1854
+#: js/viewfeed.js:1874
msgid "Remove label"
msgstr "移除预定义标签"
-#: js/viewfeed.js:1878
+#: js/viewfeed.js:1898
msgid "Playing..."
msgstr "播放中……"
-#: js/viewfeed.js:1879
+#: js/viewfeed.js:1899
msgid "Click to pause"
msgstr "点击暂停"
-#: js/viewfeed.js:1936
+#: js/viewfeed.js:1956
#, fuzzy
msgid "Please enter new score for selected articles:"
msgstr "删除选中的 %d 篇文章?"
-#: js/viewfeed.js:1978
+#: js/viewfeed.js:1998
#, fuzzy
msgid "Please enter new score for this article:"
msgstr "请填写类别名称:"
diff --git a/messages.pot b/messages.pot
index 461091cda..edd543fb7 100644
--- a/messages.pot
+++ b/messages.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-03-20 10:24+0400\n"
+"POT-Creation-Date: 2013-03-20 15:53+0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <[email protected]>\n"
@@ -243,7 +243,7 @@ msgstr ""
#: index.php:117 index.php:147 index.php:252 prefs.php:79
#: classes/backend.php:5 classes/pref/labels.php:296
#: classes/pref/filters.php:609 classes/pref/feeds.php:1296
-#: plugins/digest/digest_body.php:45 js/viewfeed.js:1174
+#: plugins/digest/digest_body.php:45 js/viewfeed.js:1181
msgid "Loading, please wait..."
msgstr ""
@@ -317,7 +317,7 @@ msgstr ""
#: index.php:191 index.php:221 include/functions.php:1906
#: include/localized_schema.php:10 classes/feeds.php:111 classes/feeds.php:136
-#: classes/feeds.php:408 js/FeedTree.js:128 js/FeedTree.js:156
+#: classes/feeds.php:410 js/FeedTree.js:128 js/FeedTree.js:156
#: plugins/digest/digest.js:630
msgid "Mark as read"
msgstr ""
@@ -670,11 +670,11 @@ msgstr ""
msgid "Open in new window"
msgstr ""
-#: include/functions.php:1886 js/viewfeed.js:1798
+#: include/functions.php:1886 js/viewfeed.js:1818
msgid "Mark below as read"
msgstr ""
-#: include/functions.php:1887 js/viewfeed.js:1792
+#: include/functions.php:1887 js/viewfeed.js:1812
msgid "Mark above as read"
msgstr ""
@@ -804,39 +804,39 @@ msgstr ""
msgid "Search results: %s"
msgstr ""
-#: include/functions.php:2892 js/viewfeed.js:1885
+#: include/functions.php:2893 js/viewfeed.js:1905
msgid "Click to play"
msgstr ""
-#: include/functions.php:2893 js/viewfeed.js:1884
+#: include/functions.php:2894 js/viewfeed.js:1904
msgid "Play"
msgstr ""
-#: include/functions.php:3014
+#: include/functions.php:3015
msgid " - "
msgstr ""
-#: include/functions.php:3036 include/functions.php:3353 classes/rpc.php:360
+#: include/functions.php:3037 include/functions.php:3354 classes/rpc.php:360
msgid "no tags"
msgstr ""
-#: include/functions.php:3046 classes/feeds.php:653
+#: include/functions.php:3047 classes/feeds.php:656
msgid "Edit tags for this article"
msgstr ""
-#: include/functions.php:3075 classes/feeds.php:608
+#: include/functions.php:3076 classes/feeds.php:610
msgid "Originally from:"
msgstr ""
-#: include/functions.php:3088 classes/feeds.php:621 classes/pref/feeds.php:507
+#: include/functions.php:3089 classes/feeds.php:623 classes/pref/feeds.php:507
msgid "Feed URL"
msgstr ""
-#: include/functions.php:3117
+#: include/functions.php:3118
msgid "Related"
msgstr ""
-#: include/functions.php:3144 classes/dlg.php:43 classes/dlg.php:162
+#: include/functions.php:3145 classes/dlg.php:43 classes/dlg.php:162
#: classes/dlg.php:185 classes/dlg.php:222 classes/dlg.php:508
#: classes/dlg.php:543 classes/dlg.php:574 classes/dlg.php:608
#: classes/dlg.php:620 classes/backend.php:105 classes/pref/users.php:106
@@ -847,15 +847,15 @@ msgstr ""
msgid "Close this window"
msgstr ""
-#: include/functions.php:3378
+#: include/functions.php:3379
msgid "(edit note)"
msgstr ""
-#: include/functions.php:3611
+#: include/functions.php:3612
msgid "unknown type"
msgstr ""
-#: include/functions.php:3661
+#: include/functions.php:3662
msgid "Attachments"
msgstr ""
@@ -892,7 +892,7 @@ msgstr ""
msgid "Assign tags"
msgstr ""
-#: include/localized_schema.php:14 js/viewfeed.js:1849
+#: include/localized_schema.php:14 js/viewfeed.js:1869
msgid "Assign label"
msgstr ""
@@ -1540,50 +1540,50 @@ msgstr ""
msgid "Feed:"
msgstr ""
-#: classes/feeds.php:201 classes/feeds.php:798
+#: classes/feeds.php:201 classes/feeds.php:801
msgid "Feed not found."
msgstr ""
-#: classes/feeds.php:498
+#: classes/feeds.php:500
msgid "mark as read"
msgstr ""
-#: classes/feeds.php:553
+#: classes/feeds.php:555
msgid "Collapse article"
msgstr ""
-#: classes/feeds.php:699
+#: classes/feeds.php:702
msgid "No unread articles found to display."
msgstr ""
-#: classes/feeds.php:702
+#: classes/feeds.php:705
msgid "No updated articles found to display."
msgstr ""
-#: classes/feeds.php:705
+#: classes/feeds.php:708
msgid "No starred articles found to display."
msgstr ""
-#: classes/feeds.php:709
+#: classes/feeds.php:712
msgid ""
"No articles found to display. You can assign articles to labels manually "
"(see the Actions menu above) or use a filter."
msgstr ""
-#: classes/feeds.php:711
+#: classes/feeds.php:714
msgid "No articles found to display."
msgstr ""
-#: classes/feeds.php:726 classes/feeds.php:907
+#: classes/feeds.php:729 classes/feeds.php:910
#, php-format
msgid "Feeds last updated at %s"
msgstr ""
-#: classes/feeds.php:736 classes/feeds.php:917
+#: classes/feeds.php:739 classes/feeds.php:920
msgid "Some feeds have update errors (click for details)"
msgstr ""
-#: classes/feeds.php:897
+#: classes/feeds.php:900
msgid "No feed selected."
msgstr ""
@@ -2945,74 +2945,74 @@ msgstr ""
msgid "Unpublish article"
msgstr ""
-#: js/viewfeed.js:674 js/viewfeed.js:702 js/viewfeed.js:729 js/viewfeed.js:791
-#: js/viewfeed.js:823 js/viewfeed.js:960 js/viewfeed.js:1003
-#: js/viewfeed.js:1053 js/viewfeed.js:1967 plugins/mailto/init.js:7
+#: js/viewfeed.js:681 js/viewfeed.js:709 js/viewfeed.js:736 js/viewfeed.js:798
+#: js/viewfeed.js:830 js/viewfeed.js:967 js/viewfeed.js:1010
+#: js/viewfeed.js:1060 js/viewfeed.js:1987 plugins/mailto/init.js:7
#: plugins/mail/mail.js:7
msgid "No articles are selected."
msgstr ""
-#: js/viewfeed.js:940
+#: js/viewfeed.js:947
msgid "Mark all visible articles in %s as read?"
msgstr ""
-#: js/viewfeed.js:968
+#: js/viewfeed.js:975
msgid "Delete %d selected articles in %s?"
msgstr ""
-#: js/viewfeed.js:970
+#: js/viewfeed.js:977
msgid "Delete %d selected articles?"
msgstr ""
-#: js/viewfeed.js:1012
+#: js/viewfeed.js:1019
msgid "Archive %d selected articles in %s?"
msgstr ""
-#: js/viewfeed.js:1015
+#: js/viewfeed.js:1022
msgid "Move %d archived articles back?"
msgstr ""
-#: js/viewfeed.js:1059
+#: js/viewfeed.js:1066
msgid "Mark %d selected articles in %s as read?"
msgstr ""
-#: js/viewfeed.js:1083
+#: js/viewfeed.js:1090
msgid "Edit article Tags"
msgstr ""
-#: js/viewfeed.js:1252
+#: js/viewfeed.js:1259
msgid "No article is selected."
msgstr ""
-#: js/viewfeed.js:1287
+#: js/viewfeed.js:1294
msgid "No articles found to mark"
msgstr ""
-#: js/viewfeed.js:1289
+#: js/viewfeed.js:1296
msgid "Mark %d article(s) as read?"
msgstr ""
-#: js/viewfeed.js:1784
+#: js/viewfeed.js:1804
msgid "Open original article"
msgstr ""
-#: js/viewfeed.js:1854
+#: js/viewfeed.js:1874
msgid "Remove label"
msgstr ""
-#: js/viewfeed.js:1878
+#: js/viewfeed.js:1898
msgid "Playing..."
msgstr ""
-#: js/viewfeed.js:1879
+#: js/viewfeed.js:1899
msgid "Click to pause"
msgstr ""
-#: js/viewfeed.js:1936
+#: js/viewfeed.js:1956
msgid "Please enter new score for selected articles:"
msgstr ""
-#: js/viewfeed.js:1978
+#: js/viewfeed.js:1998
msgid "Please enter new score for this article:"
msgstr ""
diff --git a/plugins/af_unburn/init.php b/plugins/af_unburn/init.php
index a0c51c97e..9f0b6cb0d 100644
--- a/plugins/af_unburn/init.php
+++ b/plugins/af_unburn/init.php
@@ -29,11 +29,16 @@ class Af_Unburn extends Plugin {
if (strpos($article["plugin_data"], "unburn,$owner_uid:") === FALSE) {
- $ch = curl_init(geturl($article["link"]));
+ if (ini_get("safe_mode")) {
+ $ch = curl_init(geturl($article["link"]));
+ } else {
+ $ch = curl_init($article["link"]);
+ }
+
curl_setopt($ch, CURLOPT_TIMEOUT, 5);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HEADER, true);
- //curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
+ curl_setopt($ch, CURLOPT_FOLLOWLOCATION, !ini_get("safe_mode"));
curl_setopt($ch, CURLOPT_USERAGENT, SELF_USER_AGENT);
$contents = @curl_exec($ch);
@@ -74,7 +79,7 @@ class Af_Unburn extends Plugin {
return $article;
}
-
+
function geturl($url){
(function_exists('curl_init')) ? '' : die('cURL Must be installed for geturl function to work. Ask your host to enable it or uncomment extension=php_curl.dll in php.ini');
diff --git a/plugins/digest/digest.js b/plugins/digest/digest.js
index 88410d9ed..197847411 100644
--- a/plugins/digest/digest.js
+++ b/plugins/digest/digest.js
@@ -670,8 +670,6 @@ function init_second_stage() {
function init() {
try {
- dojo.require("dijit.Dialog");
-
new Ajax.Request("backend.php", {
parameters: {op: "rpc", method: "sanityCheck"},
onComplete: function(transport) {
diff --git a/plugins/digest/digest_body.php b/plugins/digest/digest_body.php
index c4f51d376..5ffcfd812 100644
--- a/plugins/digest/digest_body.php
+++ b/plugins/digest/digest_body.php
@@ -7,8 +7,7 @@
<head>
<title>Tiny Tiny RSS</title>
- <link rel="stylesheet" type="text/css" href="lib/dijit/themes/claro/claro.css"/>
- <link rel="stylesheet" type="text/css" href="plugins/digest/digest.css?<?php echo $dt_add ?>"/>
+ <?php echo stylesheet_tag("plugins/digest/digest.css") ?>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
@@ -16,13 +15,18 @@
<link rel="shortcut icon" type="image/png" href="images/favicon.png"/>
- <script type="text/javascript" src="lib/dojo/dojo.js" djConfig="parseOnLoad: true"></script>
- <script type="text/javascript" src="lib/prototype.js"></script>
- <script type="text/javascript" src="lib/scriptaculous/scriptaculous.js?load=effects,dragdrop,controls"></script>
+ <?php
+ foreach (array("lib/prototype.js",
+ "lib/scriptaculous/scriptaculous.js?load=effects,dragdrop,controls",
+ "localized_js.php",
+ "js/functions.js",
+ "plugins/digest/digest.js",
+ "errors.php?mode=js") as $jsfile) {
+
+ echo javascript_tag($jsfile);
+
+ } ?>
- <script type="text/javascript" charset="utf-8" src="localized_js.php?<?php echo $dt_add ?>"></script>
- <script type="text/javascript" charset="utf-8" src="errors.php?mode=js"></script>
- <script type="text/javascript" charset="utf-8" src="js/functions.js?<?php echo $dt_add ?>"></script>
<script type="text/javascript" src="plugins/digest/digest.js"></script>
<script type="text/javascript">
@@ -31,7 +35,7 @@
});
</script>
</head>
-<body id="ttrssDigest" class="claro">
+<body id="ttrssDigest">
<div id="overlay" style="display : block">
<div id="overlay_inner">
<noscript>
diff --git a/prefs.php b/prefs.php
index 0b9cb3cf2..55a8d3afd 100644
--- a/prefs.php
+++ b/prefs.php
@@ -15,8 +15,6 @@
login_sequence($link);
- $dt_add = time();
-
no_cache_incantation();
header('Content-Type: text/html; charset=utf-8');
@@ -26,21 +24,26 @@
<html>
<head>
<title><?php echo PAGE_TITLE ?> : <?php echo __("Preferences") ?></title>
- <link rel="stylesheet" type="text/css" href="lib/dijit/themes/claro/claro.css"/>
- <link rel="stylesheet" type="text/css" href="tt-rss.css?<?php echo $dt_add ?>"/>
+
+ <?php echo stylesheet_tag("lib/dijit/themes/claro/claro.css"); ?>
+ <?php echo stylesheet_tag("tt-rss.css"); ?>
<?php print_user_stylesheet($link) ?>
<link rel="shortcut icon" type="image/png" href="images/favicon.png"/>
- <script type="text/javascript" src="lib/prototype.js"></script>
- <script type="text/javascript" src="lib/position.js"></script>
- <script type="text/javascript" src="lib/scriptaculous/scriptaculous.js?load=effects,dragdrop,controls"></script>
- <script type="text/javascript" src="lib/dojo/dojo.js"></script>
- <script type="text/javascript" src="lib/dijit/dijit.js"></script>
- <script type="text/javascript" src="lib/dojo/tt-rss-layer.js"></script>
+ <?php
+ foreach (array("lib/prototype.js",
+ "lib/scriptaculous/scriptaculous.js?load=effects,dragdrop,controls",
+ "lib/dojo/dojo.js",
+ "lib/dijit/dijit.js",
+ "lib/dojo/tt-rss-layer.js",
+ "localized_js.php",
+ "errors.php?mode=js") as $jsfile) {
+
+ echo javascript_tag($jsfile);
- <script type="text/javascript" charset="utf-8" src="localized_js.php?<?php echo $dt_add ?>"></script>
+ } ?>
<script type="text/javascript">
<?php
diff --git a/register.php b/register.php
index d61bcfa29..d7ba7da5f 100644
--- a/register.php
+++ b/register.php
@@ -219,15 +219,15 @@
<table>
<tr>
<td><?php echo __('Desired login:') ?></td><td>
- <input name="login">
+ <input name="login" required>
</td><td>
<input type="submit" value="<?php echo __('Check availability') ?>" onclick='return checkUsername()'>
</td></tr>
<tr><td><?php echo __('Email:') ?></td><td>
- <input name="email">
+ <input name="email" type="email" required>
</td></tr>
<tr><td><?php echo __('How much is two plus two:') ?></td><td>
- <input name="turing_test"></td></tr>
+ <input name="turing_test" required></td></tr>
<tr><td colspan="2" align="right">
<input type="submit" name="sub_btn" value="<?php echo __('Submit registration') ?>"
disabled="disabled" onclick='return validateRegForm()'>
diff --git a/tt-rss.css b/tt-rss.css
index 3661df44f..99cd9958b 100644
--- a/tt-rss.css
+++ b/tt-rss.css
@@ -184,7 +184,6 @@ a:hover {
.even.Unread.Selected {
background : #fff7d5 ! important;
- font-weight : bold;
border-width : 0px 0px 1px 0px;
border-style : solid;
border-color : #e7d796;
@@ -192,7 +191,6 @@ a:hover {
.odd.Unread.Selected {
background : #fff7d5 ! important;
- font-weight : bold;
border-width : 0px 0px 1px 0px;
border-style : solid;
border-color : #e7d796;
@@ -244,7 +242,6 @@ a:hover {
.even.Unread {
background : #f0f0f0;
- font-weight : bold;
border-width : 0px 0px 1px 0px;
border-style : solid;
border-color : #c0c0c0;
@@ -252,7 +249,6 @@ a:hover {
}
.odd.Unread {
- font-weight : bold;
border-width : 0px 0px 1px 0px;
border-style : solid;
border-color : #c0c0c0;
@@ -720,10 +716,6 @@ div.autocomplete ul li {
cursor : pointer;
}
-#header a.feedback {
- color : #009900;
-}
-
a.visibleLink {
color : #4684ff;
}
@@ -1197,3 +1189,7 @@ span.collapseBtn {
div.postContent p {
max-width : 650px;
}
+
+.Unread div.hlTitle {
+ font-weight : bold;
+}