diff options
Diffstat (limited to 'include')
| -rw-r--r-- | include/feedbrowser.php | 2 | ||||
| -rw-r--r-- | include/functions.php | 6 | ||||
| -rw-r--r-- | include/localized_schema.php | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/include/feedbrowser.php b/include/feedbrowser.php index 5b33fb73c..e5ee4a70d 100644 --- a/include/feedbrowser.php +++ b/include/feedbrowser.php @@ -80,7 +80,7 @@ $class = ($feedctr % 2) ? "even" : "odd"; if ($line['articles_archived'] > 0) { - $archived = sprintf(__("%d archived articles"), $line['articles_archived']); + $archived = sprintf(ngettext("%d archived article", "%d archived articles", $line['articles_archived']), $line['articles_archived']); $archived = " <span class='subscribers'>($archived)</span>"; } else { $archived = ''; diff --git a/include/functions.php b/include/functions.php index 2ae0dc3b9..962ebb057 100644 --- a/include/functions.php +++ b/include/functions.php @@ -2666,7 +2666,7 @@ $entries = $doc->getElementsByTagName("*"); $allowed_elements = array('a', 'address', 'audio', 'article', - 'b', 'big', 'blockquote', 'body', 'br', 'cite', + 'b', 'big', 'blockquote', 'body', 'br', 'cite', 'center', 'code', 'dd', 'del', 'details', 'div', 'dl', 'font', 'dt', 'em', 'footer', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'header', 'html', 'i', 'img', 'ins', 'kbd', @@ -3002,7 +3002,7 @@ <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"/> <title>Tiny Tiny RSS - ".$line["title"]."</title> <link rel=\"stylesheet\" type=\"text/css\" href=\"tt-rss.css\"> - </head><body>"; + </head><body id=\"ttrssZoom\">"; } $rv['content'] .= "<div class=\"postReply\" id=\"POST-$id\">"; @@ -3115,7 +3115,7 @@ if ($zoom_mode) { $rv['content'] .= " - <div style=\"text-align : center\"> + <div class='footer'> <button onclick=\"return window.close()\">". __("Close this window")."</button></div>"; $rv['content'] .= "</body></html>"; diff --git a/include/localized_schema.php b/include/localized_schema.php index 4a55094ef..2c2538aee 100644 --- a/include/localized_schema.php +++ b/include/localized_schema.php @@ -1,4 +1,4 @@ -<?php # This file has been generated at: Thu Mar 21 23:29:09 MSK 2013 +<?php # This file has been generated at: Sun Mar 24 20:08:41 MSK 2013 __("Title"); __("Title or Content"); |