]> git.wh0rd.org - tt-rss.git/commitdiff
Merge branch 'master' into tunable-fetches
authorBarak Korren <barak.korren@gmail.com>
Mon, 1 Apr 2013 13:05:48 +0000 (16:05 +0300)
committerBarak Korren <barak.korren@gmail.com>
Mon, 1 Apr 2013 13:05:48 +0000 (16:05 +0300)
Conflicts:
include/rssfuncs.php

68 files changed:
classes/api.php
classes/article.php
classes/dlg.php
classes/feeds.php
classes/handler/public.php
classes/pref/feeds.php
classes/pref/filters.php
classes/pref/prefs.php
classes/rpc.php
images/overlay.png [deleted file]
images/piggie.png [deleted file]
images/piggie_icon.png [deleted file]
include/functions.php
include/localized_schema.php
include/rssfuncs.php
index.php
js/PrefFilterTree.js
js/functions.js
js/prefs.js
js/tt-rss.js
js/viewfeed.js
locale/ca_CA/LC_MESSAGES/messages.mo
locale/ca_CA/LC_MESSAGES/messages.po
locale/cs_CZ/LC_MESSAGES/messages.mo
locale/cs_CZ/LC_MESSAGES/messages.po
locale/de_DE/LC_MESSAGES/messages.mo
locale/de_DE/LC_MESSAGES/messages.po
locale/es_ES/LC_MESSAGES/messages.mo
locale/es_ES/LC_MESSAGES/messages.po
locale/fi_FI/LC_MESSAGES/messages.mo [new file with mode: 0644]
locale/fi_FI/LC_MESSAGES/messages.po [new file with mode: 0644]
locale/fr_FR/LC_MESSAGES/messages.mo
locale/fr_FR/LC_MESSAGES/messages.po
locale/hu_HU/LC_MESSAGES/messages.mo
locale/hu_HU/LC_MESSAGES/messages.po
locale/it_IT/LC_MESSAGES/messages.mo
locale/it_IT/LC_MESSAGES/messages.po
locale/ja_JP/LC_MESSAGES/messages.mo
locale/ja_JP/LC_MESSAGES/messages.po
locale/lv_LV/LC_MESSAGES/messages.mo
locale/lv_LV/LC_MESSAGES/messages.po
locale/nb_NO/LC_MESSAGES/messages.mo
locale/nb_NO/LC_MESSAGES/messages.po
locale/nl_NL/LC_MESSAGES/messages.mo
locale/nl_NL/LC_MESSAGES/messages.po
locale/pl_PL/LC_MESSAGES/messages.mo
locale/pl_PL/LC_MESSAGES/messages.po
locale/pt_BR/LC_MESSAGES/messages.mo
locale/pt_BR/LC_MESSAGES/messages.po
locale/ru_RU/LC_MESSAGES/messages.mo [deleted file]
locale/ru_RU/LC_MESSAGES/messages.po [deleted file]
locale/zh_CN/LC_MESSAGES/messages.mo
locale/zh_CN/LC_MESSAGES/messages.po
messages.pot
plugins/instances/init.php
plugins/instances/instances.js
prefs.css
prefs.php
schema/ttrss_schema_mysql.sql
schema/ttrss_schema_pgsql.sql
schema/versions/mysql/112.sql [new file with mode: 0644]
schema/versions/mysql/113.sql [new file with mode: 0644]
schema/versions/mysql/114.sql [new file with mode: 0644]
schema/versions/pgsql/112.sql [new file with mode: 0644]
schema/versions/pgsql/113.sql [new file with mode: 0644]
schema/versions/pgsql/114.sql [new file with mode: 0644]
tt-rss.css
update_daemon2.php

index 0e56e58f9ae97b2a6b48d0dd8c4b696fd5110e59..ea57a61ab256b31612f981994a7068e3af40d987 100644 (file)
@@ -165,12 +165,14 @@ class API extends Handler {
                }
 
                foreach (array(-2,-1,0) as $cat_id) {
-                       $unread = getFeedUnread($this->link, $cat_id, true);
+                       if ($include_empty || !$this->isCategoryEmpty($cat_id)) {
+                               $unread = getFeedUnread($this->link, $cat_id, true);
 
-                       if ($unread || !$unread_only) {
-                               array_push($cats, array("id" => $cat_id,
-                                       "title" => getCategoryTitle($this->link, $cat_id),
-                                       "unread" => $unread));
+                               if ($unread || !$unread_only) {
+                                       array_push($cats, array("id" => $cat_id,
+                                               "title" => getCategoryTitle($this->link, $cat_id),
+                                               "unread" => $unread));
+                               }
                        }
                }
 
@@ -724,6 +726,28 @@ class API extends Handler {
                }
 
        }
+
+       // only works for labels or uncategorized for the time being
+       private function isCategoryEmpty($id) {
+
+               if ($id == -2) {
+                       $result = db_query($this->link, "SELECT COUNT(*) AS count FROM ttrss_labels2
+                               WHERE owner_uid = " . $_SESSION["uid"]);
+
+                       return db_fetch_result($result, 0, "count") == 0;
+
+               } else if ($id == 0) {
+                       $result = db_query($this->link, "SELECT COUNT(*) AS count FROM ttrss_feeds
+                               WHERE cat_id IS NULL AND owner_uid = " . $_SESSION["uid"]);
+
+                       return db_fetch_result($result, 0, "count") == 0;
+
+               }
+
+               return false;
+       }
+
+
 }
 
 ?>
index b10766bf58386b5be761b0da252727ef138b72d7..79c94f59b482aaa81ded73851ea86ea18e55577f 100644 (file)
@@ -2,7 +2,7 @@
 class Article extends Handler_Protected {
 
        function csrf_ignore($method) {
-               $csrf_ignored = array("redirect");
+               $csrf_ignored = array("redirect", "editarticletags");
 
                return array_search($method, $csrf_ignored) !== false;
        }
@@ -174,6 +174,39 @@ class Article extends Handler_Protected {
                return $rc;
        }
 
+       function editArticleTags() {
+
+               print __("Tags for this article (separated by commas):")."<br>";
+
+               $param = db_escape_string($this->link, $_REQUEST['param']);
+
+               $tags = get_article_tags($this->link, db_escape_string($this->link, $param));
+
+               $tags_str = join(", ", $tags);
+
+               print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"id\" value=\"$param\">";
+               print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"op\" value=\"rpc\">";
+               print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"method\" value=\"setArticleTags\">";
+
+               print "<table width='100%'><tr><td>";
+
+               print "<textarea dojoType=\"dijit.form.SimpleTextarea\" rows='4'
+                       style='font-size : 12px; width : 100%' id=\"tags_str\"
+                       name='tags_str'>$tags_str</textarea>
+               <div class=\"autocomplete\" id=\"tags_choices\"
+                               style=\"display:none\"></div>";
+
+               print "</td></tr></table>";
+
+               print "<div class='dlgButtons'>";
+
+               print "<button dojoType=\"dijit.form.Button\"
+                       onclick=\"dijit.byId('editTagsDlg').execute()\">".__('Save')."</button> ";
+               print "<button dojoType=\"dijit.form.Button\"
+                       onclick=\"dijit.byId('editTagsDlg').hide()\">".__('Cancel')."</button>";
+               print "</div>";
+
+       }
 
 
 }
index e03489505a8bab301ad8af2f73c37196d1a6e1e7..e56560a47cdf2090fab88fda04afca23a3db8787 100644 (file)
@@ -4,21 +4,15 @@ class Dlg extends Handler_Protected {
 
        function before($method) {
                if (parent::before($method)) {
-                       header("Content-Type: text/xml; charset=utf-8");
+                       header("Content-Type: text/html"); # required for iframe
+
                        $this->param = db_escape_string($this->link, $_REQUEST["param"]);
-                       print "<dlg>";
                        return true;
                }
                return false;
        }
 
-       function after() {
-               print "</dlg>";
-       }
-
        function importOpml() {
-               header("Content-Type: text/html"); # required for iframe
-
                print __("If you have imported labels and/or filters, you might need to reload preferences to see your new data.") . "</p>";
 
                print "<div class=\"prefFeedOPMLHolder\">";
@@ -48,126 +42,7 @@ class Dlg extends Handler_Protected {
                //return;
        }
 
-       function editPrefProfiles() {
-               print "<div dojoType=\"dijit.Toolbar\">";
-
-               print "<div dojoType=\"dijit.form.DropDownButton\">".
-                               "<span>" . __('Select')."</span>";
-               print "<div dojoType=\"dijit.Menu\" style=\"display: none;\">";
-               print "<div onclick=\"selectTableRows('prefFeedProfileList', 'all')\"
-                       dojoType=\"dijit.MenuItem\">".__('All')."</div>";
-               print "<div onclick=\"selectTableRows('prefFeedProfileList', 'none')\"
-                       dojoType=\"dijit.MenuItem\">".__('None')."</div>";
-               print "</div></div>";
-
-               print "<div style=\"float : right\">";
-
-               print "<input name=\"newprofile\" dojoType=\"dijit.form.ValidationTextBox\"
-                               required=\"1\">
-                       <button dojoType=\"dijit.form.Button\"
-                       onclick=\"dijit.byId('profileEditDlg').addProfile()\">".
-                               __('Create profile')."</button></div>";
-
-               print "</div>";
-
-               $result = db_query($this->link, "SELECT title,id FROM ttrss_settings_profiles
-                       WHERE owner_uid = ".$_SESSION["uid"]." ORDER BY title");
-
-               print "<div class=\"prefFeedCatHolder\">";
-
-               print "<form id=\"profile_edit_form\" onsubmit=\"return false\">";
-
-               print "<table width=\"100%\" class=\"prefFeedProfileList\"
-                       cellspacing=\"0\" id=\"prefFeedProfileList\">";
-
-               print "<tr class=\"placeholder\" id=\"FCATR-0\">"; #odd
-
-               print "<td width='5%' align='center'><input
-                       id='FCATC-0'
-                       onclick='toggleSelectRow2(this);'
-                       dojoType=\"dijit.form.CheckBox\"
-                       type=\"checkbox\"></td>";
-
-               if (!$_SESSION["profile"]) {
-                       $is_active = __("(active)");
-               } else {
-                       $is_active = "";
-               }
-
-               print "<td><span>" .
-                       __("Default profile") . " $is_active</span></td>";
-
-               print "</tr>";
-
-               $lnum = 1;
-
-               while ($line = db_fetch_assoc($result)) {
-
-                       $class = ($lnum % 2) ? "even" : "odd";
-
-                       $profile_id = $line["id"];
-                       $this_row_id = "id=\"FCATR-$profile_id\"";
-
-                       print "<tr class=\"placeholder\" $this_row_id>";
-
-                       $edit_title = htmlspecialchars($line["title"]);
-
-                       print "<td width='5%' align='center'><input
-                               onclick='toggleSelectRow2(this);'
-                               id='FCATC-$profile_id'
-                               dojoType=\"dijit.form.CheckBox\"
-                               type=\"checkbox\"></td>";
-
-                       if ($_SESSION["profile"] == $line["id"]) {
-                               $is_active = __("(active)");
-                       } else {
-                               $is_active = "";
-                       }
-
-                       print "<td><span dojoType=\"dijit.InlineEditBox\"
-                               width=\"300px\" autoSave=\"false\"
-                               profile-id=\"$profile_id\">" . $edit_title .
-                               "<script type=\"dojo/method\" event=\"onChange\" args=\"item\">
-                                       var elem = this;
-                                       dojo.xhrPost({
-                                               url: 'backend.php',
-                                               content: {op: 'rpc', method: 'saveprofile',
-                                                       value: this.value,
-                                                       id: this.srcNodeRef.getAttribute('profile-id')},
-                                                       load: function(response) {
-                                                               elem.attr('value', response);
-                                               }
-                                       });
-                               </script>
-                       </span> $is_active</td>";
-
-                       print "</tr>";
-
-                       ++$lnum;
-               }
-
-               print "</table>";
-               print "</form>";
-               print "</div>";
-
-               print "<div class='dlgButtons'>
-                       <div style='float : left'>
-                       <button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('profileEditDlg').removeSelected()\">".
-                       __('Remove selected profiles')."</button>
-                       <button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('profileEditDlg').activateProfile()\">".
-                       __('Activate profile')."</button>
-                       </div>";
-
-               print "<button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('profileEditDlg').hide()\">".
-                       __('Close this window')."</button>";
-               print "</div>";
-
-       }
-
        function pubOPMLUrl() {
-               print "<title>".__('Public OPML URL')."</title>";
-               print "<content><![CDATA[";
-
                $url_path = Opml::opml_publish_url($this->link);
 
                print __("Your Public OPML URL is:");
@@ -185,15 +60,11 @@ class Dlg extends Handler_Protected {
                        __('Close this window')."</button>";
 
                print "</div>";
-               print "]]></content>";
 
                //return;
        }
 
        function explainError() {
-               print "<title>".__('Notice')."</title>";
-               print "<content><![CDATA[";
-
                print "<div class=\"errorExplained\">";
 
                if ($this->param == 1) {
@@ -222,229 +93,11 @@ class Dlg extends Handler_Protected {
                        __('Close this window')."</button>";
 
                print "</div>";
-               print "]]></content>";
-
-               //return;
-       }
-
-       function quickAddFeed() {
-               print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"op\" value=\"rpc\">";
-               print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"method\" value=\"addfeed\">";
-
-               print "<div class=\"dlgSec\">".__("Feed or site URL")."</div>";
-               print "<div class=\"dlgSecCont\">";
-
-               print "<div style='float : right'>
-                       <img style='display : none'
-                               id='feed_add_spinner' src='images/indicator_white.gif'></div>";
-
-               print "<input style=\"font-size : 16px; width : 20em;\"
-                       placeHolder=\"".__("Feed or site URL")."\"
-                       dojoType=\"dijit.form.ValidationTextBox\" required=\"1\" name=\"feed\" id=\"feedDlg_feedUrl\">";
-
-               print "<hr/>";
-
-               if (get_pref($this->link, 'ENABLE_FEED_CATS')) {
-                       print __('Place in category:') . " ";
-                       print_feed_cat_select($this->link, "cat", false, 'dojoType="dijit.form.Select"');
-               }
-
-               print "</div>";
-
-               print '<div id="feedDlg_feedsContainer" style="display : none">
-
-                               <div class="dlgSec">' . __('Available feeds') . '</div>
-                               <div class="dlgSecCont">'.
-                               '<select id="feedDlg_feedContainerSelect"
-                                       dojoType="dijit.form.Select" size="3">
-                                       <script type="dojo/method" event="onChange" args="value">
-                                               dijit.byId("feedDlg_feedUrl").attr("value", value);
-                                       </script>
-                               </select>'.
-                               '</div></div>';
-
-               print "<div id='feedDlg_loginContainer' style='display : none'>
-
-                               <div class=\"dlgSec\">".__("Authentication")."</div>
-                               <div class=\"dlgSecCont\">".
-
-                               " <input dojoType=\"dijit.form.TextBox\" name='login'\"
-                                       placeHolder=\"".__("Login")."\"
-                                       style=\"width : 10em;\"> ".
-                               " <input
-                                       placeHolder=\"".__("Password")."\"
-                                       dojoType=\"dijit.form.TextBox\" type='password'
-                                       style=\"width : 10em;\" name='pass'\">
-                       </div></div>";
-
-
-               print "<div style=\"clear : both\">
-                       <input type=\"checkbox\" name=\"need_auth\" dojoType=\"dijit.form.CheckBox\" id=\"feedDlg_loginCheck\"
-                                       onclick='checkboxToggleElement(this, \"feedDlg_loginContainer\")'>
-                               <label for=\"feedDlg_loginCheck\">".
-                               __('This feed requires authentication.')."</div>";
-
-               print "</form>";
-
-               print "<div class=\"dlgButtons\">
-                       <button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('feedAddDlg').execute()\">".__('Subscribe')."</button>";
-
-               if (!(defined('_DISABLE_FEED_BROWSER') && _DISABLE_FEED_BROWSER)) {
-                       print "<button dojoType=\"dijit.form.Button\" onclick=\"return feedBrowser()\">".__('More feeds')."</button>";
-               }
-
-               print "<button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('feedAddDlg').hide()\">".__('Cancel')."</button>
-                       </div>";
 
                //return;
        }
 
-       function feedBrowser() {
-               if (defined('_DISABLE_FEED_BROWSER') && _DISABLE_FEED_BROWSER) return;
-
-               $browser_search = db_escape_string($this->link, $_REQUEST["search"]);
-
-               print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"op\" value=\"rpc\">";
-               print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"method\" value=\"updateFeedBrowser\">";
-
-               print "<div dojoType=\"dijit.Toolbar\">
-                       <div style='float : right'>
-                       <img style='display : none'
-                               id='feed_browser_spinner' src='images/indicator_white.gif'>
-                       <input name=\"search\" dojoType=\"dijit.form.TextBox\" size=\"20\" type=\"search\"
-                               onchange=\"dijit.byId('feedBrowserDlg').update()\" value=\"$browser_search\">
-                       <button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('feedBrowserDlg').update()\">".__('Search')."</button>
-               </div>";
-
-               print " <select name=\"mode\" dojoType=\"dijit.form.Select\" onchange=\"dijit.byId('feedBrowserDlg').update()\">
-                       <option value='1'>" . __('Popular feeds') . "</option>
-                       <option value='2'>" . __('Feed archive') . "</option>
-                       </select> ";
-
-               print __("limit:");
-
-               print " <select dojoType=\"dijit.form.Select\" name=\"limit\" onchange=\"dijit.byId('feedBrowserDlg').update()\">";
-
-               foreach (array(25, 50, 100, 200) as $l) {
-                       $issel = ($l == $limit) ? "selected=\"1\"" : "";
-                       print "<option $issel value=\"$l\">$l</option>";
-               }
-
-               print "</select> ";
-
-               print "</div>";
-
-               $owner_uid = $_SESSION["uid"];
-
-               require_once "feedbrowser.php";
-
-               print "<ul class='browseFeedList' id='browseFeedList'>";
-               print make_feed_browser($this->link, $search, 25);
-               print "</ul>";
-
-               print "<div align='center'>
-                       <button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('feedBrowserDlg').execute()\">".__('Subscribe')."</button>
-                       <button dojoType=\"dijit.form.Button\" style='display : none' id='feed_archive_remove' onclick=\"dijit.byId('feedBrowserDlg').removeFromArchive()\">".__('Remove')."</button>
-                       <button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('feedBrowserDlg').hide()\" >".__('Cancel')."</button></div>";
-
-       }
-
-       function search() {
-               $this->params = explode(":", db_escape_string($this->link, $_REQUEST["param"]), 2);
-
-               $active_feed_id = sprintf("%d", $this->params[0]);
-               $is_cat = $this->params[1] != "false";
-
-               print "<div class=\"dlgSec\">".__('Look for')."</div>";
-
-               print "<div class=\"dlgSecCont\">";
-
-               print "<input dojoType=\"dijit.form.ValidationTextBox\"
-                       style=\"font-size : 16px; width : 20em;\"
-                       required=\"1\" name=\"query\" type=\"search\" value=''>";
-
-               print "<hr/>".__('Limit search to:')." ";
-
-               print "<select name=\"search_mode\" dojoType=\"dijit.form.Select\">
-                       <option value=\"all_feeds\">".__('All feeds')."</option>";
-
-               $feed_title = getFeedTitle($this->link, $active_feed_id);
-
-               if (!$is_cat) {
-                       $feed_cat_title = getFeedCatTitle($this->link, $active_feed_id);
-               } else {
-                       $feed_cat_title = getCategoryTitle($this->link, $active_feed_id);
-               }
-
-               if ($active_feed_id && !$is_cat) {
-                       print "<option selected=\"1\" value=\"this_feed\">$feed_title</option>";
-               } else {
-                       print "<option disabled=\"1\" value=\"false\">".__('This feed')."</option>";
-               }
-
-               if ($is_cat) {
-                       $cat_preselected = "selected=\"1\"";
-               }
-
-               if (get_pref($this->link, 'ENABLE_FEED_CATS') && ($active_feed_id > 0 || $is_cat)) {
-                       print "<option $cat_preselected value=\"this_cat\">$feed_cat_title</option>";
-               } else {
-                       //print "<option disabled>".__('This category')."</option>";
-               }
-
-               print "</select>";
-
-               print "</div>";
-
-               print "<div class=\"dlgButtons\">";
-
-               if (!SPHINX_ENABLED) {
-                       print "<div style=\"float : left\">
-                               <a class=\"visibleLink\" target=\"_blank\" href=\"http://tt-rss.org/wiki/SearchSyntax\">Search syntax</a>
-                               </div>";
-               }
-
-               print "<button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('searchDlg').execute()\">".__('Search')."</button>
-               <button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('searchDlg').hide()\">".__('Cancel')."</button>
-               </div>";
-       }
-
-       function editArticleTags() {
-
-               print __("Tags for this article (separated by commas):")."<br>";
-
-               $tags = get_article_tags($this->link, $this->param);
-
-               $tags_str = join(", ", $tags);
-
-               print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"id\" value=\"$this->param\">";
-               print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"op\" value=\"rpc\">";
-               print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"method\" value=\"setArticleTags\">";
-
-               print "<table width='100%'><tr><td>";
-
-               print "<textarea dojoType=\"dijit.form.SimpleTextarea\" rows='4'
-                       style='font-size : 12px; width : 100%' id=\"tags_str\"
-                       name='tags_str'>$tags_str</textarea>
-               <div class=\"autocomplete\" id=\"tags_choices\"
-                               style=\"display:none\"></div>";
-
-               print "</td></tr></table>";
-
-               print "<div class='dlgButtons'>";
-
-               print "<button dojoType=\"dijit.form.Button\"
-                       onclick=\"dijit.byId('editTagsDlg').execute()\">".__('Save')."</button> ";
-               print "<button dojoType=\"dijit.form.Button\"
-                       onclick=\"dijit.byId('editTagsDlg').hide()\">".__('Cancel')."</button>";
-               print "</div>";
-
-       }
-
        function printTagCloud() {
-               print "<title>".__('Tag Cloud')."</title>";
-               print "<content><![CDATA[";
-
                print "<div class=\"tagCloudContainer\">";
 
                // from here: http://www.roscripts.com/Create_tag_cloud-71.html
@@ -506,14 +159,10 @@ class Dlg extends Handler_Protected {
                        __('Close this window')."</button>";
                print "</div>";
 
-               print "]]></content>";
        }
 
        function printTagSelect() {
 
-               print "<title>" . __('Select item(s) by tags') . "</title>";
-               print "<content><![CDATA[";
-
                print __("Match:"). "&nbsp;" .
                        "<input class=\"noborder\" dojoType=\"dijit.form.RadioButton\" type=\"radio\" checked value=\"any\" name=\"tag_mode\" id=\"tag_mode_any\">";
                print "<label for=\"tag_mode_any\">".__("Any")."</label>";
@@ -541,14 +190,10 @@ class Dlg extends Handler_Protected {
                        __('Close this window') . "</button>";
                print "</div>";
 
-               print "]]></content>";
        }
 
        function generatedFeed() {
 
-               print "<title>".__('View as RSS')."</title>";
-               print "<content><![CDATA[";
-
                $this->params = explode(":", $this->param, 3);
                $feed_id = db_escape_string($this->link, $this->params[0]);
                $is_cat = (bool) $this->params[1];
@@ -572,7 +217,6 @@ class Dlg extends Handler_Protected {
                        __('Close this window')."</button>";
 
                print "</div>";
-               print "]]></content>";
 
                //return;
        }
@@ -623,130 +267,6 @@ class Dlg extends Handler_Protected {
 
        }
 
-       function customizeCSS() {
-               $value = get_pref($this->link, "USER_STYLESHEET");
-
-               $value = str_replace("<br/>", "\n", $value);
-
-               print_notice(T_sprintf("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.", "tt-rss.css"));
-
-               print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"op\" value=\"rpc\">";
-               print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"method\" value=\"setpref\">";
-               print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"key\" value=\"USER_STYLESHEET\">";
-
-               print "<table width='100%'><tr><td>";
-               print "<textarea dojoType=\"dijit.form.SimpleTextarea\"
-                       style='font-size : 12px; width : 100%; height: 200px;'
-                       placeHolder='body#ttrssMain { font-size : 14px; };'
-                       name='value'>$value</textarea>";
-               print "</td></tr></table>";
-
-               print "<div class='dlgButtons'>";
-               print "<button dojoType=\"dijit.form.Button\"
-                       onclick=\"dijit.byId('cssEditDlg').execute()\">".__('Save')."</button> ";
-               print "<button dojoType=\"dijit.form.Button\"
-                       onclick=\"dijit.byId('cssEditDlg').hide()\">".__('Cancel')."</button>";
-               print "</div>";
-
-       }
-
-       function addInstance() {
-               print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\"  name=\"op\" value=\"pref-instances\">";
-               print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\"  name=\"method\" value=\"add\">";
-
-               print "<div class=\"dlgSec\">".__("Instance")."</div>";
-
-               print "<div class=\"dlgSecCont\">";
-
-               /* URL */
-
-               print __("URL:") . " ";
-
-               print "<input dojoType=\"dijit.form.ValidationTextBox\" required=\"1\"
-                       placeHolder=\"".__("Instance URL")."\"
-                       regExp='^(http|https)://.*'
-                       style=\"font-size : 16px; width: 20em\" name=\"access_url\">";
-
-               print "<hr/>";
-
-               $access_key = sha1(uniqid(rand(), true));
-
-               /* Access key */
-
-               print __("Access key:") . " ";
-
-               print "<input dojoType=\"dijit.form.ValidationTextBox\" required=\"1\"
-                       placeHolder=\"".__("Access key")."\" regExp='\w{40}'
-                       style=\"width: 20em\" name=\"access_key\" id=\"instance_add_key\"
-                       value=\"$access_key\">";
-
-               print "<p class='insensitive'>" . __("Use one access key for both linked instances.");
-
-               print "</div>";
-
-               print "<div class=\"dlgButtons\">
-                       <div style='float : left'>
-                               <button dojoType=\"dijit.form.Button\"
-                                       onclick=\"return dijit.byId('instanceAddDlg').regenKey()\">".
-                                       __('Generate new key')."</button>
-                       </div>
-                       <button dojoType=\"dijit.form.Button\"
-                               onclick=\"return dijit.byId('instanceAddDlg').execute()\">".
-                               __('Create link')."</button>
-                       <button dojoType=\"dijit.form.Button\"
-                               onclick=\"return dijit.byId('instanceAddDlg').hide()\"\">".
-                               __('Cancel')."</button></div>";
-
-               return;
-       }
-
-       function batchSubscribe() {
-               print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"op\" value=\"rpc\">";
-               print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"method\" value=\"batchaddfeeds\">";
-
-               print "<table width='100%'><tr><td>
-                       ".__("Add one valid RSS feed per line (no feed detection is done)")."
-               </td><td align='right'>";
-               if (get_pref($this->link, 'ENABLE_FEED_CATS')) {
-                       print __('Place in category:') . " ";
-                       print_feed_cat_select($this->link, "cat", false, 'dojoType="dijit.form.Select"');
-               }
-               print "</td></tr><tr><td colspan='2'>";
-               print "<textarea
-                       style='font-size : 12px; width : 100%; height: 200px;'
-                       placeHolder=\"".__("Feeds to subscribe, One per line")."\"
-                       dojoType=\"dijit.form.SimpleTextarea\" required=\"1\" name=\"feeds\"></textarea>";
-
-               print "</td></tr><tr><td colspan='2'>";
-
-               print "<div id='feedDlg_loginContainer' style='display : none'>
-                               " .
-                               " <input dojoType=\"dijit.form.TextBox\" name='login'\"
-                                       placeHolder=\"".__("Login")."\"
-                                       style=\"width : 10em;\"> ".
-                               " <input
-                                       placeHolder=\"".__("Password")."\"
-                                       dojoType=\"dijit.form.TextBox\" type='password'
-                                       style=\"width : 10em;\" name='pass'\">".
-                               "</div>";
-
-               print "</td></tr><tr><td colspan='2'>";
-
-               print "<div style=\"clear : both\">
-                       <input type=\"checkbox\" name=\"need_auth\" dojoType=\"dijit.form.CheckBox\" id=\"feedDlg_loginCheck\"
-                                       onclick='checkboxToggleElement(this, \"feedDlg_loginContainer\")'>
-                               <label for=\"feedDlg_loginCheck\">".
-                               __('Feeds require authentication.')."</div>";
-
-               print "</form>";
-
-               print "</td></tr></table>";
-
-               print "<div class=\"dlgButtons\">
-                       <button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('batchSubDlg').execute()\">".__('Subscribe')."</button>
-                       <button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('batchSubDlg').hide()\">".__('Cancel')."</button>
-                       </div>";
-       }
 
 }
 ?>
index 2b00b848d2ad176fb4b47c047c6dd4da5eebc0eb..ff6b864e5da4890c5e034371e62d9bd593fa9de8 100644 (file)
@@ -4,7 +4,7 @@ require_once "colors.php";
 class Feeds extends Handler_Protected {
 
        function csrf_ignore($method) {
-               $csrf_ignored = array("index");
+               $csrf_ignored = array("index", "feedbrowser", "quickaddfeed", "search");
 
                return array_search($method, $csrf_ignored) !== false;
        }
@@ -81,7 +81,7 @@ class Feeds extends Handler_Protected {
                $reply .= "
                        <a href=\"#\"
                                title=\"".__("View as RSS feed")."\"
-                               onclick=\"displayDlg('generatedFeed', '$feed_id:$is_cat:$rss_link')\">
+                               onclick=\"displayDlg('".__("View as RSS")."','generatedFeed', '$feed_id:$is_cat:$rss_link')\">
                                <img class=\"noborder\" style=\"vertical-align : middle\" src=\"images/pub_set.svg\"></a>";
 
                $reply .= "</span>";
@@ -133,9 +133,9 @@ class Feeds extends Handler_Protected {
 
                $reply .= "<option value=\"0\" disabled=\"1\">".__('Feed:')."</option>";
 
-               $reply .= "<option value=\"catchupPage()\">".__('Mark as read')."</option>";
+               //$reply .= "<option value=\"catchupPage()\">".__('Mark as read')."</option>";
 
-               $reply .= "<option value=\"displayDlg('generatedFeed', '$feed_id:$is_cat:$rss_link')\">".__('View as RSS')."</option>";
+               $reply .= "<option value=\"displayDlg('".__("View as RSS")."','generatedFeed', '$feed_id:$is_cat:$rss_link')\">".__('View as RSS')."</option>";
 
                $reply .= "</select>";
 
@@ -836,7 +836,6 @@ class Feeds extends Handler_Protected {
                }
 
                set_pref($this->link, "_DEFAULT_VIEW_MODE", $view_mode);
-               set_pref($this->link, "_DEFAULT_VIEW_LIMIT", $limit);
                set_pref($this->link, "_DEFAULT_VIEW_ORDER_BY", $order_by);
 
                /* bump login timestamp if needed */
@@ -956,5 +955,188 @@ class Feeds extends Handler_Protected {
                return $reply;
        }
 
+       function quickAddFeed() {
+               print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"op\" value=\"rpc\">";
+               print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"method\" value=\"addfeed\">";
+
+               print "<div class=\"dlgSec\">".__("Feed or site URL")."</div>";
+               print "<div class=\"dlgSecCont\">";
+
+               print "<div style='float : right'>
+                       <img style='display : none'
+                               id='feed_add_spinner' src='images/indicator_white.gif'></div>";
+
+               print "<input style=\"font-size : 16px; width : 20em;\"
+                       placeHolder=\"".__("Feed or site URL")."\"
+                       dojoType=\"dijit.form.ValidationTextBox\" required=\"1\" name=\"feed\" id=\"feedDlg_feedUrl\">";
+
+               print "<hr/>";
+
+               if (get_pref($this->link, 'ENABLE_FEED_CATS')) {
+                       print __('Place in category:') . " ";
+                       print_feed_cat_select($this->link, "cat", false, 'dojoType="dijit.form.Select"');
+               }
+
+               print "</div>";
+
+               print '<div id="feedDlg_feedsContainer" style="display : none">
+
+                               <div class="dlgSec">' . __('Available feeds') . '</div>
+                               <div class="dlgSecCont">'.
+                               '<select id="feedDlg_feedContainerSelect"
+                                       dojoType="dijit.form.Select" size="3">
+                                       <script type="dojo/method" event="onChange" args="value">
+                                               dijit.byId("feedDlg_feedUrl").attr("value", value);
+                                       </script>
+                               </select>'.
+                               '</div></div>';
+
+               print "<div id='feedDlg_loginContainer' style='display : none'>
+
+                               <div class=\"dlgSec\">".__("Authentication")."</div>
+                               <div class=\"dlgSecCont\">".
+
+                               " <input dojoType=\"dijit.form.TextBox\" name='login'\"
+                                       placeHolder=\"".__("Login")."\"
+                                       style=\"width : 10em;\"> ".
+                               " <input
+                                       placeHolder=\"".__("Password")."\"
+                                       dojoType=\"dijit.form.TextBox\" type='password'
+                                       style=\"width : 10em;\" name='pass'\">
+                       </div></div>";
+
+
+               print "<div style=\"clear : both\">
+                       <input type=\"checkbox\" name=\"need_auth\" dojoType=\"dijit.form.CheckBox\" id=\"feedDlg_loginCheck\"
+                                       onclick='checkboxToggleElement(this, \"feedDlg_loginContainer\")'>
+                               <label for=\"feedDlg_loginCheck\">".
+                               __('This feed requires authentication.')."</div>";
+
+               print "</form>";
+
+               print "<div class=\"dlgButtons\">
+                       <button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('feedAddDlg').execute()\">".__('Subscribe')."</button>";
+
+               if (!(defined('_DISABLE_FEED_BROWSER') && _DISABLE_FEED_BROWSER)) {
+                       print "<button dojoType=\"dijit.form.Button\" onclick=\"return feedBrowser()\">".__('More feeds')."</button>";
+               }
+
+               print "<button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('feedAddDlg').hide()\">".__('Cancel')."</button>
+                       </div>";
+
+               //return;
+       }
+
+       function feedBrowser() {
+               if (defined('_DISABLE_FEED_BROWSER') && _DISABLE_FEED_BROWSER) return;
+
+               $browser_search = db_escape_string($this->link, $_REQUEST["search"]);
+
+               print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"op\" value=\"rpc\">";
+               print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"method\" value=\"updateFeedBrowser\">";
+
+               print "<div dojoType=\"dijit.Toolbar\">
+                       <div style='float : right'>
+                       <img style='display : none'
+                               id='feed_browser_spinner' src='images/indicator_white.gif'>
+                       <input name=\"search\" dojoType=\"dijit.form.TextBox\" size=\"20\" type=\"search\"
+                               onchange=\"dijit.byId('feedBrowserDlg').update()\" value=\"$browser_search\">
+                       <button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('feedBrowserDlg').update()\">".__('Search')."</button>
+               </div>";
+
+               print " <select name=\"mode\" dojoType=\"dijit.form.Select\" onchange=\"dijit.byId('feedBrowserDlg').update()\">
+                       <option value='1'>" . __('Popular feeds') . "</option>
+                       <option value='2'>" . __('Feed archive') . "</option>
+                       </select> ";
+
+               print __("limit:");
+
+               print " <select dojoType=\"dijit.form.Select\" name=\"limit\" onchange=\"dijit.byId('feedBrowserDlg').update()\">";
+
+               foreach (array(25, 50, 100, 200) as $l) {
+                       $issel = ($l == $limit) ? "selected=\"1\"" : "";
+                       print "<option $issel value=\"$l\">$l</option>";
+               }
+
+               print "</select> ";
+
+               print "</div>";
+
+               $owner_uid = $_SESSION["uid"];
+
+               require_once "feedbrowser.php";
+
+               print "<ul class='browseFeedList' id='browseFeedList'>";
+               print make_feed_browser($this->link, $search, 25);
+               print "</ul>";
+
+               print "<div align='center'>
+                       <button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('feedBrowserDlg').execute()\">".__('Subscribe')."</button>
+                       <button dojoType=\"dijit.form.Button\" style='display : none' id='feed_archive_remove' onclick=\"dijit.byId('feedBrowserDlg').removeFromArchive()\">".__('Remove')."</button>
+                       <button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('feedBrowserDlg').hide()\" >".__('Cancel')."</button></div>";
+
+       }
+
+       function search() {
+               $this->params = explode(":", db_escape_string($this->link, $_REQUEST["param"]), 2);
+
+               $active_feed_id = sprintf("%d", $this->params[0]);
+               $is_cat = $this->params[1] != "false";
+
+               print "<div class=\"dlgSec\">".__('Look for')."</div>";
+
+               print "<div class=\"dlgSecCont\">";
+
+               print "<input dojoType=\"dijit.form.ValidationTextBox\"
+                       style=\"font-size : 16px; width : 20em;\"
+                       required=\"1\" name=\"query\" type=\"search\" value=''>";
+
+               print "<hr/>".__('Limit search to:')." ";
+
+               print "<select name=\"search_mode\" dojoType=\"dijit.form.Select\">
+                       <option value=\"all_feeds\">".__('All feeds')."</option>";
+
+               $feed_title = getFeedTitle($this->link, $active_feed_id);
+
+               if (!$is_cat) {
+                       $feed_cat_title = getFeedCatTitle($this->link, $active_feed_id);
+               } else {
+                       $feed_cat_title = getCategoryTitle($this->link, $active_feed_id);
+               }
+
+               if ($active_feed_id && !$is_cat) {
+                       print "<option selected=\"1\" value=\"this_feed\">$feed_title</option>";
+               } else {
+                       print "<option disabled=\"1\" value=\"false\">".__('This feed')."</option>";
+               }
+
+               if ($is_cat) {
+                       $cat_preselected = "selected=\"1\"";
+               }
+
+               if (get_pref($this->link, 'ENABLE_FEED_CATS') && ($active_feed_id > 0 || $is_cat)) {
+                       print "<option $cat_preselected value=\"this_cat\">$feed_cat_title</option>";
+               } else {
+                       //print "<option disabled>".__('This category')."</option>";
+               }
+
+               print "</select>";
+
+               print "</div>";
+
+               print "<div class=\"dlgButtons\">";
+
+               if (!SPHINX_ENABLED) {
+                       print "<div style=\"float : left\">
+                               <a class=\"visibleLink\" target=\"_blank\" href=\"http://tt-rss.org/wiki/SearchSyntax\">Search syntax</a>
+                               </div>";
+               }
+
+               print "<button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('searchDlg').execute()\">".__('Search')."</button>
+               <button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('searchDlg').hide()\">".__('Cancel')."</button>
+               </div>";
+       }
+
+
 }
 ?>
index 6822faa771832f295232d10b73b3a22fc69e4716..37c704584798bc5bd5afb90857ff55db3e681b11 100644 (file)
@@ -65,7 +65,8 @@ class Handler_Public extends Handler {
                                if ($line['note']) {
                                        $content = "<div style=\"$note_style\">Article note: " . $line['note'] . "</div>" .
                                                $content;
-}
+                                       $tpl->setVariable('ARTICLE_NOTE', htmlspecialchars($line['note']), true);
+                               }
 
                                $tpl->setVariable('ARTICLE_CONTENT', $content, true);
 
index 7895a0396795889ef559893c798d0231832b76a1..46c3d083b3f33521db03bca6cc2acb89edd85116 100644 (file)
@@ -3,7 +3,8 @@ class Pref_Feeds extends Handler_Protected {
 
        function csrf_ignore($method) {
                $csrf_ignored = array("index", "getfeedtree", "add", "editcats", "editfeed",
-                       "savefeedorder", "uploadicon", "feedswitherrors", "inactivefeeds");
+                       "savefeedorder", "uploadicon", "feedswitherrors", "inactivefeeds",
+                       "batchsubscribe");
 
                return array_search($method, $csrf_ignored) !== false;
        }
@@ -57,7 +58,7 @@ class Pref_Feeds extends Handler_Protected {
 
                        $cat['items'] = $this->get_category_items($line['id']);
 
-                       $cat['param'] = vsprintf(ngettext('(%d feed)', '(%d feeds)', count($cat['items'])), count($cat['items']));
+                       $cat['param'] = vsprintf(_ngettext('(%d feed)', '(%d feeds)', count($cat['items'])), count($cat['items']));
 
                        if (count($cat['items']) > 0 || $show_empty_cats)
                                array_push($items, $cat);
@@ -205,7 +206,7 @@ class Pref_Feeds extends Handler_Protected {
 
                                $cat['items'] = $this->get_category_items($line['id']);
 
-                               $cat['param'] = vsprintf(ngettext('(%d feed)', '(%d feeds)', count($cat['items'])), count($cat['items']));
+                               $cat['param'] = vsprintf(_ngettext('(%d feed)', '(%d feeds)', count($cat['items'])), count($cat['items']));
 
                                if (count($cat['items']) > 0 || $show_empty_cats)
                                        array_push($root['items'], $cat);
@@ -247,13 +248,13 @@ class Pref_Feeds extends Handler_Protected {
                                array_push($cat['items'], $feed);
                        }
 
-                       $cat['param'] = vsprintf(ngettext('(%d feed)', '(%d feeds)', count($cat['items'])), count($cat['items']));
+                       $cat['param'] = vsprintf(_ngettext('(%d feed)', '(%d feeds)', count($cat['items'])), count($cat['items']));
 
                        if (count($cat['items']) > 0 || $show_empty_cats)
                                array_push($root['items'], $cat);
 
                        $root['param'] += count($cat['items']);
-                       $root['param'] = vsprintf(ngettext('(%d feed)', '(%d feeds)', count($cat['items'])), count($cat['items']));
+                       $root['param'] = vsprintf(_ngettext('(%d feed)', '(%d feeds)', count($cat['items'])), count($cat['items']));
 
                } else {
                        $feed_result = db_query($this->link, "SELECT id, title, last_error,
@@ -278,7 +279,7 @@ class Pref_Feeds extends Handler_Protected {
                                array_push($root['items'], $feed);
                        }
 
-                       $root['param'] = vsprintf(ngettext('(%d feed)', '(%d feeds)', count($cat['items'])), count($cat['items']));
+                       $root['param'] = vsprintf(_ngettext('(%d feed)', '(%d feeds)', count($cat['items'])), count($cat['items']));
                }
 
                $fl = array();
@@ -1399,7 +1400,7 @@ class Pref_Feeds extends Handler_Protected {
 
                print __("Published OPML does not include your Tiny Tiny RSS settings, feeds that require authentication or feeds hidden from Popular feeds.") . "</p>";
 
-               print "<button dojoType=\"dijit.form.Button\" onclick=\"return displayDlg('pubOPMLUrl')\">".
+               print "<button dojoType=\"dijit.form.Button\" onclick=\"return displayDlg('".__("Public OPML URL")."','pubOPMLUrl')\">".
                        __('Display published OPML URL')."</button> ";
 
                global $pluginhost;
@@ -1436,7 +1437,7 @@ class Pref_Feeds extends Handler_Protected {
                $rss_url = '-2::' . htmlspecialchars(get_self_url_prefix() .
                                "/public.php?op=rss&id=-2&view-mode=all_articles");;
 
-               print "<button dojoType=\"dijit.form.Button\" onclick=\"return displayDlg('generatedFeed', '$rss_url')\">".
+               print "<button dojoType=\"dijit.form.Button\" onclick=\"return displayDlg('".__("View as RSS")."','generatedFeed', '$rss_url')\">".
                        __('Display URL')."</button> ";
 
                print "<button dojoType=\"dijit.form.Button\" onclick=\"return clearFeedAccessKeys()\">".
@@ -1749,5 +1750,54 @@ class Pref_Feeds extends Handler_Protected {
                }
        }
 
+       function batchSubscribe() {
+               print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"op\" value=\"rpc\">";
+               print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"method\" value=\"batchaddfeeds\">";
+
+               print "<table width='100%'><tr><td>
+                       ".__("Add one valid RSS feed per line (no feed detection is done)")."
+               </td><td align='right'>";
+               if (get_pref($this->link, 'ENABLE_FEED_CATS')) {
+                       print __('Place in category:') . " ";
+                       print_feed_cat_select($this->link, "cat", false, 'dojoType="dijit.form.Select"');
+               }
+               print "</td></tr><tr><td colspan='2'>";
+               print "<textarea
+                       style='font-size : 12px; width : 100%; height: 200px;'
+                       placeHolder=\"".__("Feeds to subscribe, One per line")."\"
+                       dojoType=\"dijit.form.SimpleTextarea\" required=\"1\" name=\"feeds\"></textarea>";
+
+               print "</td></tr><tr><td colspan='2'>";
+
+               print "<div id='feedDlg_loginContainer' style='display : none'>
+                               " .
+                               " <input dojoType=\"dijit.form.TextBox\" name='login'\"
+                                       placeHolder=\"".__("Login")."\"
+                                       style=\"width : 10em;\"> ".
+                               " <input
+                                       placeHolder=\"".__("Password")."\"
+                                       dojoType=\"dijit.form.TextBox\" type='password'
+                                       style=\"width : 10em;\" name='pass'\">".
+                               "</div>";
+
+               print "</td></tr><tr><td colspan='2'>";
+
+               print "<div style=\"clear : both\">
+                       <input type=\"checkbox\" name=\"need_auth\" dojoType=\"dijit.form.CheckBox\" id=\"feedDlg_loginCheck\"
+                                       onclick='checkboxToggleElement(this, \"feedDlg_loginContainer\")'>
+                               <label for=\"feedDlg_loginCheck\">".
+                               __('Feeds require authentication.')."</div>";
+
+               print "</form>";
+
+               print "</td></tr></table>";
+
+               print "<div class=\"dlgButtons\">
+                       <button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('batchSubDlg').execute()\">".__('Subscribe')."</button>
+                       <button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('batchSubDlg').hide()\">".__('Cancel')."</button>
+                       </div>";
+       }
+
+
 }
 ?>
index 883ff0ebdfa991946d724ef0d14390f2f48d7bb5..4be1cdae529ba7c5030824f73de298d9867d25a8 100644 (file)
@@ -3,11 +3,47 @@ class Pref_Filters extends Handler_Protected {
 
        function csrf_ignore($method) {
                $csrf_ignored = array("index", "getfiltertree", "edit", "newfilter", "newrule",
-                       "newaction");
+                       "newaction", "savefilterorder");
 
                return array_search($method, $csrf_ignored) !== false;
        }
 
+       function filtersortreset() {
+               db_query($this->link, "UPDATE ttrss_filters2
+                               SET order_id = 0 WHERE owner_uid = " . $_SESSION["uid"]);
+               return;
+       }
+
+       function savefilterorder() {
+               $data = json_decode($_POST['payload'], true);
+
+               #file_put_contents("/tmp/saveorder.json", $_POST['payload']);
+               #$data = json_decode(file_get_contents("/tmp/saveorder.json"), true);
+
+               if (!is_array($data['items']))
+                       $data['items'] = json_decode($data['items'], true);
+
+               $index = 0;
+
+               if (is_array($data) && is_array($data['items'])) {
+                       foreach ($data['items'][0]['items'] as $item) {
+                               $filter_id = (int) str_replace("FILTER:", "", $item['_reference']);
+
+                               if ($filter_id > 0) {
+
+                                       db_query($this->link, "UPDATE ttrss_filters2 SET
+                                               order_id = $index WHERE id = '$filter_id' AND
+                                               owner_uid = " .$_SESSION["uid"]);
+
+                                       ++$index;
+                               }
+                       }
+               }
+
+               return;
+       }
+
+
        function testFilter() {
                $filter = array();
 
@@ -133,7 +169,7 @@ class Pref_Filters extends Handler_Protected {
                        (SELECT reg_exp FROM ttrss_filters2_rules
                                WHERE filter_id = ttrss_filters2.id ORDER BY id LIMIT 1) AS reg_exp
                        FROM ttrss_filters2 WHERE
-                       owner_uid = ".$_SESSION["uid"]." ORDER BY action_id,reg_exp");
+                       owner_uid = ".$_SESSION["uid"]." ORDER BY order_id, title");
 
 
                $action_id = -1;
@@ -142,7 +178,7 @@ class Pref_Filters extends Handler_Protected {
 
                while ($line = db_fetch_assoc($result)) {
 
-                       if ($action_id != $line["action_id"]) {
+                       /* if ($action_id != $line["action_id"]) {
                                if (count($folder['items']) > 0) {
                                        array_push($root['items'], $folder);
                                }
@@ -152,7 +188,7 @@ class Pref_Filters extends Handler_Protected {
                                $folder['name'] = __($line["action_name"]);
                                $folder['items'] = array();
                                $action_id = $line["action_id"];
-                       }
+                       } */
 
                        $name = $this->getFilterName($line["id"]);
 
@@ -195,9 +231,11 @@ class Pref_Filters extends Handler_Protected {
                        }
                }
 
-               if (count($folder['items']) > 0) {
+               /* if (count($folder['items']) > 0) {
                        array_push($root['items'], $folder);
-               }
+               } */
+
+               $root['items'] = $folder['items'];
 
                $fl = array();
                $fl['identifier'] = 'id';
@@ -218,6 +256,7 @@ class Pref_Filters extends Handler_Protected {
                $enabled = sql_bool_to_bool(db_fetch_result($result, 0, "enabled"));
                $match_any_rule = sql_bool_to_bool(db_fetch_result($result, 0, "match_any_rule"));
                $inverse = sql_bool_to_bool(db_fetch_result($result, 0, "inverse"));
+               $title = htmlspecialchars(db_fetch_result($result, 0, "title"));
 
                print "<form id=\"filter_edit_form\" onsubmit='return false'>";
 
@@ -226,6 +265,12 @@ class Pref_Filters extends Handler_Protected {
                print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"method\" value=\"editSave\">";
                print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"csrf_token\" value=\"".$_SESSION['csrf_token']."\">";
 
+               print "<div class=\"dlgSec\">".__("Caption")."</div>";
+
+               print "<input required=\"true\" dojoType=\"dijit.form.ValidationTextBox\" style=\"width : 20em;\" name=\"title\" value=\"$title\">";
+
+               print "</div>";
+
                print "<div class=\"dlgSec\">".__("Match")."</div>";
 
                print "<div dojoType=\"dijit.Toolbar\">";
@@ -422,10 +467,12 @@ class Pref_Filters extends Handler_Protected {
                $enabled = checkbox_to_sql_bool(db_escape_string($this->link, $_REQUEST["enabled"]));
                $match_any_rule = checkbox_to_sql_bool(db_escape_string($this->link, $_REQUEST["match_any_rule"]));
                $inverse = checkbox_to_sql_bool(db_escape_string($this->link, $_REQUEST["inverse"]));
+               $title = db_escape_string($this->link, $_REQUEST["title"]);
 
                $result = db_query($this->link, "UPDATE ttrss_filters2 SET enabled = $enabled,
                        match_any_rule = $match_any_rule,
-                       inverse = $inverse
+                       inverse = $inverse,
+                       title = '$title'
                        WHERE id = '$filter_id'
                        AND owner_uid = ". $_SESSION["uid"]);
 
@@ -539,14 +586,15 @@ class Pref_Filters extends Handler_Protected {
 
                $enabled = checkbox_to_sql_bool($_REQUEST["enabled"]);
                $match_any_rule = checkbox_to_sql_bool($_REQUEST["match_any_rule"]);
+               $title = db_escape_string($this->link, $_REQUEST["title"]);
 
                db_query($this->link, "BEGIN");
 
                /* create base filter */
 
                $result = db_query($this->link, "INSERT INTO ttrss_filters2
-                       (owner_uid, match_any_rule, enabled) VALUES
-                       (".$_SESSION["uid"].",$match_any_rule,$enabled)");
+                       (owner_uid, match_any_rule, enabled, title) VALUES
+                       (".$_SESSION["uid"].",$match_any_rule,$enabled, '$title')");
 
                $result = db_query($this->link, "SELECT MAX(id) AS id FROM ttrss_filters2
                        WHERE owner_uid = ".$_SESSION["uid"]);
@@ -611,6 +659,10 @@ class Pref_Filters extends Handler_Protected {
                print "<button dojoType=\"dijit.form.Button\" onclick=\"return editSelectedFilter()\">".
                        __('Edit')."</button> ";
 
+               print "<button dojoType=\"dijit.form.Button\" onclick=\"return resetFilterOrder()\">".
+                       __('Reset sort order')."</button> ";
+
+
                print "<button dojoType=\"dijit.form.Button\" onclick=\"return removeSelectedFilters()\">".
                        __('Remove')."</button> ";
 
@@ -627,14 +679,16 @@ class Pref_Filters extends Handler_Protected {
                <img src='images/indicator_tiny.gif'>".
                 __("Loading, please wait...")."</div>";
 
-               print "<div dojoType=\"dojo.data.ItemFileWriteStore\" jsId=\"filterStore\"
+               print "<div dojoType=\"fox.PrefFilterStore\" jsId=\"filterStore\"
                        url=\"backend.php?op=pref-filters&method=getfiltertree\">
                </div>
                <div dojoType=\"lib.CheckBoxStoreModel\" jsId=\"filterModel\" store=\"filterStore\"
-               query=\"{id:'root'}\" rootId=\"root\" rootLabel=\"Feeds\"
+                       query=\"{id:'root'}\" rootId=\"root\" rootLabel=\"Filters\"
                        childrenAttrs=\"items\" checkboxStrict=\"false\" checkboxAll=\"false\">
                </div>
                <div dojoType=\"fox.PrefFilterTree\" id=\"filterTree\"
+                       dndController=\"dijit.tree.dndSource\"
+                       betweenThreshold=\"5\"
                        model=\"filterModel\" openOnClick=\"true\">
                <script type=\"dojo/method\" event=\"onLoad\" args=\"item\">
                        Element.hide(\"filterlistLoading\");
@@ -668,6 +722,10 @@ class Pref_Filters extends Handler_Protected {
                print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"method\" value=\"add\">";
                print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"csrf_token\" value=\"".$_SESSION['csrf_token']."\">";
 
+               print "<div class=\"dlgSec\">".__("Caption")."</div>";
+
+               print "<input required=\"true\" dojoType=\"dijit.form.ValidationTextBox\" style=\"width : 20em;\" name=\"title\" value=\"\">";
+
                print "<div class=\"dlgSec\">".__("Match")."</div>";
 
                print "<div dojoType=\"dijit.Toolbar\">";
@@ -894,49 +952,38 @@ class Pref_Filters extends Handler_Protected {
        }
 
        private function getFilterName($id) {
-               $result = db_query($this->link,
-                       "SELECT * FROM ttrss_filters2_rules WHERE filter_id = '$id' ORDER BY id
-                       LIMIT 3");
 
-               $titles = array();
-               $count = 0;
+               $result = db_query($this->link,
+                       "SELECT title,COUNT(DISTINCT r.id) AS num_rules,COUNT(DISTINCT a.id) AS num_actions
+                               FROM ttrss_filters2 AS f LEFT JOIN ttrss_filters2_rules AS r
+                                       ON (r.filter_id = f.id)
+                                               LEFT JOIN ttrss_filters2_actions AS a
+                                                       ON (a.filter_id = f.id) WHERE f.id = '$id' GROUP BY f.title");
 
-               while ($line = db_fetch_assoc($result)) {
+               $title = db_fetch_result($result, 0, "title");
+               $num_rules = db_fetch_result($result, 0, "num_rules");
+               $num_actions = db_fetch_result($result, 0, "num_actions");
 
-                       if (sql_bool_to_bool($line["cat_filter"])) {
-                               unset($line["cat_filter"]);
-                               $line["feed_id"] = "CAT:" . (int)$line["cat_id"];
-                               unset($line["cat_id"]);
-                       }
+               if (!$title) $title = __("[No caption]");
 
-                       if (!sql_bool_to_bool($line["inverse"])) unset($line["inverse"]);
-
-                       if ($count < 2) {
-                               array_push($titles, $this->getRuleName($line));
-                       } else {
-                               array_push($titles, "...");
-                               break;
-                       }
-                       ++$count;
-               }
+               $title = sprintf(_ngettext("%s (%d rule)", "%s (%d rules)", $num_rules), $title, $num_rules);
 
                $result = db_query($this->link,
-                       "SELECT * FROM ttrss_filters2_actions WHERE filter_id = '$id' ORDER BY id LIMIT 3");
+                       "SELECT * FROM ttrss_filters2_actions WHERE filter_id = '$id' ORDER BY id LIMIT 1");
 
-               $actions = array();
-               $count = 0;
+               $actions = "";
 
-               while ($line = db_fetch_assoc($result)) {
-                       if ($count < 2) {
-                               array_push($actions, $this->getActionName($line));
-                       } else {
-                               array_push($actions, "...");
-                               break;
-                       }
-                       ++$count;
+               if (db_num_rows($result) > 0) {
+                       $line = db_fetch_assoc($result);
+                       $actions = $this->getActionName($line);
+
+                       $num_actions -= 1;
                }
 
-               return array(join(", ", $titles), join(", ", $actions));
+               if ($num_actions > 0)
+                       $actions = sprintf(_ngettext("%s (+%d action)", "%s (+%d actions)", $num_actions), $actions, $num_actions);
+
+               return array($title, $actions);
        }
 
        function join() {
index 2190dc0e7b50486f2dc2a10cb3bcfabb5f599a66..cc523092f4af3996110f6582d2d6edea988889b1 100644 (file)
@@ -2,7 +2,7 @@
 class Pref_Prefs extends Handler_Protected {
 
        function csrf_ignore($method) {
-               $csrf_ignored = array("index", "updateself");
+               $csrf_ignored = array("index", "updateself", "customizecss", "editprefprofiles");
 
                return array_search($method, $csrf_ignored) !== false;
        }
@@ -870,5 +870,150 @@ class Pref_Prefs extends Handler_Protected {
                global $pluginhost;
                $pluginhost->clear_data($pluginhost->get_plugin($name));
        }
+
+       function customizeCSS() {
+               $value = get_pref($this->link, "USER_STYLESHEET");
+
+               $value = str_replace("<br/>", "\n", $value);
+
+               print_notice(T_sprintf("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.", "tt-rss.css"));
+
+               print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"op\" value=\"rpc\">";
+               print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"method\" value=\"setpref\">";
+               print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"key\" value=\"USER_STYLESHEET\">";
+
+               print "<table width='100%'><tr><td>";
+               print "<textarea dojoType=\"dijit.form.SimpleTextarea\"
+                       style='font-size : 12px; width : 100%; height: 200px;'
+                       placeHolder='body#ttrssMain { font-size : 14px; };'
+                       name='value'>$value</textarea>";
+               print "</td></tr></table>";
+
+               print "<div class='dlgButtons'>";
+               print "<button dojoType=\"dijit.form.Button\"
+                       onclick=\"dijit.byId('cssEditDlg').execute()\">".__('Save')."</button> ";
+               print "<button dojoType=\"dijit.form.Button\"
+                       onclick=\"dijit.byId('cssEditDlg').hide()\">".__('Cancel')."</button>";
+               print "</div>";
+
+       }
+
+       function editPrefProfiles() {
+               print "<div dojoType=\"dijit.Toolbar\">";
+
+               print "<div dojoType=\"dijit.form.DropDownButton\">".
+                               "<span>" . __('Select')."</span>";
+               print "<div dojoType=\"dijit.Menu\" style=\"display: none;\">";
+               print "<div onclick=\"selectTableRows('prefFeedProfileList', 'all')\"
+                       dojoType=\"dijit.MenuItem\">".__('All')."</div>";
+               print "<div onclick=\"selectTableRows('prefFeedProfileList', 'none')\"
+                       dojoType=\"dijit.MenuItem\">".__('None')."</div>";
+               print "</div></div>";
+
+               print "<div style=\"float : right\">";
+
+               print "<input name=\"newprofile\" dojoType=\"dijit.form.ValidationTextBox\"
+                               required=\"1\">
+                       <button dojoType=\"dijit.form.Button\"
+                       onclick=\"dijit.byId('profileEditDlg').addProfile()\">".
+                               __('Create profile')."</button></div>";
+
+               print "</div>";
+
+               $result = db_query($this->link, "SELECT title,id FROM ttrss_settings_profiles
+                       WHERE owner_uid = ".$_SESSION["uid"]." ORDER BY title");
+
+               print "<div class=\"prefProfileHolder\">";
+
+               print "<form id=\"profile_edit_form\" onsubmit=\"return false\">";
+
+               print "<table width=\"100%\" class=\"prefFeedProfileList\"
+                       cellspacing=\"0\" id=\"prefFeedProfileList\">";
+
+               print "<tr class=\"placeholder\" id=\"FCATR-0\">"; #odd
+
+               print "<td width='5%' align='center'><input
+                       id='FCATC-0'
+                       onclick='toggleSelectRow2(this);'
+                       dojoType=\"dijit.form.CheckBox\"
+                       type=\"checkbox\"></td>";
+
+               if (!$_SESSION["profile"]) {
+                       $is_active = __("(active)");
+               } else {
+                       $is_active = "";
+               }
+
+               print "<td><span>" .
+                       __("Default profile") . " $is_active</span></td>";
+
+               print "</tr>";
+
+               $lnum = 1;
+
+               while ($line = db_fetch_assoc($result)) {
+
+                       $class = ($lnum % 2) ? "even" : "odd";
+
+                       $profile_id = $line["id"];
+                       $this_row_id = "id=\"FCATR-$profile_id\"";
+
+                       print "<tr class=\"placeholder\" $this_row_id>";
+
+                       $edit_title = htmlspecialchars($line["title"]);
+
+                       print "<td width='5%' align='center'><input
+                               onclick='toggleSelectRow2(this);'
+                               id='FCATC-$profile_id'
+                               dojoType=\"dijit.form.CheckBox\"
+                               type=\"checkbox\"></td>";
+
+                       if ($_SESSION["profile"] == $line["id"]) {
+                               $is_active = __("(active)");
+                       } else {
+                               $is_active = "";
+                       }
+
+                       print "<td><span dojoType=\"dijit.InlineEditBox\"
+                               width=\"300px\" autoSave=\"false\"
+                               profile-id=\"$profile_id\">" . $edit_title .
+                               "<script type=\"dojo/method\" event=\"onChange\" args=\"item\">
+                                       var elem = this;
+                                       dojo.xhrPost({
+                                               url: 'backend.php',
+                                               content: {op: 'rpc', method: 'saveprofile',
+                                                       value: this.value,
+                                                       id: this.srcNodeRef.getAttribute('profile-id')},
+                                                       load: function(response) {
+                                                               elem.attr('value', response);
+                                               }
+                                       });
+                               </script>
+                       </span> $is_active</td>";
+
+                       print "</tr>";
+
+                       ++$lnum;
+               }
+
+               print "</table>";
+               print "</form>";
+               print "</div>";
+
+               print "<div class='dlgButtons'>
+                       <div style='float : left'>
+                       <button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('profileEditDlg').removeSelected()\">".
+                       __('Remove selected profiles')."</button>
+                       <button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('profileEditDlg').activateProfile()\">".
+                       __('Activate profile')."</button>
+                       </div>";
+
+               print "<button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('profileEditDlg').hide()\">".
+                       __('Close this window')."</button>";
+               print "</div>";
+
+       }
+
+
 }
 ?>
index 3a20db6f32495ffa828916314342953592f764b7..34f623b061b594ec043a433d660b659f779cbafc 100644 (file)
@@ -407,8 +407,8 @@ class RPC extends Handler_Protected {
 
                if (!$tags_str_full) $tags_str_full = __("no tags");
 
-               print json_encode(array("tags_str" => array("id" => $id,
-                               "content" => $tags_str, "content_full" => $tags_str_full)));
+               print json_encode(array("id" => (int)$id,
+                               "content" => $tags_str, "content_full" => $tags_str_full));
        }
 
        function regenOPMLKey() {
diff --git a/images/overlay.png b/images/overlay.png
deleted file mode 100644 (file)
index be35e44..0000000
Binary files a/images/overlay.png and /dev/null differ
diff --git a/images/piggie.png b/images/piggie.png
deleted file mode 100644 (file)
index 3cb7c65..0000000
Binary files a/images/piggie.png and /dev/null differ
diff --git a/images/piggie_icon.png b/images/piggie_icon.png
deleted file mode 100644 (file)
index 9b5481b..0000000
Binary files a/images/piggie_icon.png and /dev/null differ
index fa63c9baac842df1b7c5f4ee0ebca10c48fc7037..0d9c154d625037254060d99924a3d16b3139d2b4 100644 (file)
@@ -1,6 +1,6 @@
 <?php
        define('EXPECTED_CONFIG_VERSION', 26);
-       define('SCHEMA_VERSION', 111);
+       define('SCHEMA_VERSION', 114);
 
        define('LABEL_BASE_INDEX', -1024);
        define('PLUGIN_FEED_BASE_INDEX', -128);
                                        "nb_NO" => "Norwegian bokmål",
                                        "nl_NL" => "Dutch",
                                        "pl_PL" => "Polski",
-                                       "ru_RU" => "Русский",
+//                                     "ru_RU" => "Русский",
                                        "pt_BR" => "Portuguese/Brazil",
-                                       "zh_CN" => "Simplified Chinese");
+                                       "zh_CN" => "Simplified Chinese",
+                                       "fi_FI" => "Suomi");
 
                return $tr;
        }
                $cat_id = (int)getFeedCategory($link, $feed_id);
 
                $result = db_query($link, "SELECT * FROM ttrss_filters2 WHERE
-                       owner_uid = $owner_uid AND enabled = true");
+                       owner_uid = $owner_uid AND enabled = true ORDER BY order_id, title");
 
                $check_cats = join(",", array_merge(
                        getParentCategories($link, $cat_id, $owner_uid),
index 674acabcf77fabd5592e8c5f79556cb1aa6b4254..744140e4bd7a41c14f7e194331deae427966c171 100644 (file)
@@ -1,4 +1,4 @@
-<?php # This file has been generated at:  Sun Mar 31 12:47:29 MSK 2013
+<?php # This file has been generated at:  Mon Apr 1 16:28:03 MSK 2013
 
 __("Title");
 __("Title or Content");
index 5c37b7523d33447d389b16d71724e952526927de..ce197156c4603110d4c6c8d92f629fd16c5004ee 100644 (file)
                                        _debug("update_rss_feed: fetching [$fetch_url] (ts: $cache_timestamp/$last_updated_timestamp)");
                                }
 
+                               $force_refetch = isset($_REQUEST["force_refetch"]);
+
                                $feed_data = fetch_file_contents($fetch_url, false,
                                        $auth_login, $auth_pass, false, 
                                        $no_cache ? FEED_FETCH_NO_CACHE_TIMEOUT : FEED_FETCH_TIMEOUT,
-                                       max($last_updated_timestamp, $cache_timestamp));
+                                       $force_refetch ? 0 : max($last_updated_timestamp, $cache_timestamp));
 
                                if ($debug_enabled) {
                                        _debug("update_rss_feed: fetch done.");
                        if ($filter_match) {
                                foreach ($filter["actions"] AS $action) {
                                        array_push($matches, $action);
+
+                                       // if Stop action encountered, perform no further processing
+                                       if ($action["type"] == "stop") return $matches;
                                }
                        }
                }
index d9363644c8e4b6455e325b701dacb4e14ed1180d..0b8a957bb514de2a24cdec154337c5d517a47998 100644 (file)
--- a/index.php
+++ b/index.php
                        <option value="date_reverse"><?php echo __('Oldest first') ?></option>
                </select>
 
-               <!-- deprecated -->
-               <button dojoType="dijit.form.Button" name="update" style="display : none"
-                       onclick="viewCurrentFeed()">
-                       <?php echo __('Update') ?></button>
-
                <select title="<?php echo __('Mark feed as read') ?>"
-                       onchange="catchupCurrentFeed(this)"
+                       onchange="catchupCurrentFeed(event)"
                        dojoType="dijit.form.Select" name="catchup_feed">
                        <option selected="selected" value="default"><?php echo __('Mark as read') ?></option>
                        <option value="all"><?php echo __('All articles') ?></option>
                        <option value="2weeks"><?php echo __('Older than two weeks') ?></option>
                </select>
 
+               <button dojoType="dijit.form.Button"
+                       onclick="viewCurrentFeed()">
+                       <?php echo __('Refresh') ?></button>
+
                </form>
 
                <div class="actionChooser">
                                        <div dojoType="dijit.MenuItem" disabled="1"><?php echo __('Feed actions:') ?></div>
                                        <div dojoType="dijit.MenuItem" onclick="quickMenuGo('qmcAddFeed')"><?php echo __('Subscribe to feed...') ?></div>
                                        <div dojoType="dijit.MenuItem" onclick="quickMenuGo('qmcEditFeed')"><?php echo __('Edit this feed...') ?></div>
-                                       <div dojoType="dijit.MenuItem" onclick="quickMenuGo('qmcRescoreFeed')"><?php echo __('Rescore feed') ?></div>
+                                       <!-- <div dojoType="dijit.MenuItem" onclick="quickMenuGo('qmcRescoreFeed')"><?php echo __('Rescore feed') ?></div> -->
                                        <div dojoType="dijit.MenuItem" onclick="quickMenuGo('qmcRemoveFeed')"><?php echo __('Unsubscribe') ?></div>
                                        <div dojoType="dijit.MenuItem" disabled="1"><?php echo __('All feeds:') ?></div>
                                        <div dojoType="dijit.MenuItem" onclick="quickMenuGo('qmcCatchupAll')"><?php echo __('Mark as read') ?></div>
                                        <div dojoType="dijit.MenuItem" onclick="quickMenuGo('qmcShowOnlyUnread')"><?php echo __('(Un)hide read feeds') ?></div>
                                        <div dojoType="dijit.MenuItem" disabled="1"><?php echo __('Other actions:') ?></div>
-                                       <?php if ($pluginhost->get_plugin("digest")) { ?>
+                                       <!-- <?php if ($pluginhost->get_plugin("digest")) { ?>
                                        <div dojoType="dijit.MenuItem" onclick="quickMenuGo('qmcDigest')"><?php echo __('Switch to digest...') ?></div>
-                                       <?php } ?>
-                                               <div dojoType="dijit.MenuItem" onclick="quickMenuGo('qmcTagCloud')"><?php echo __('Show tag cloud...') ?></div>
+                                       <?php } ?> -->
+                                               <!-- <div dojoType="dijit.MenuItem" onclick="quickMenuGo('qmcTagCloud')"><?php echo __('Show tag cloud...') ?></div> -->
                                                <div dojoType="dijit.MenuItem" onclick="quickMenuGo('qmcToggleWidescreen')"><?php echo __('Toggle widescreen mode') ?></div>
                                        <div dojoType="dijit.MenuItem" onclick="quickMenuGo('qmcTagSelect')"><?php echo __('Select by tags...') ?></div>
-                                       <div dojoType="dijit.MenuItem" onclick="quickMenuGo('qmcAddLabel')"><?php echo __('Create label...') ?></div>
-                                       <div dojoType="dijit.MenuItem" onclick="quickMenuGo('qmcAddFilter')"><?php echo __('Create filter...') ?></div>
+                                       <!-- <div dojoType="dijit.MenuItem" onclick="quickMenuGo('qmcAddLabel')"><?php echo __('Create label...') ?></div>
+                                       <div dojoType="dijit.MenuItem" onclick="quickMenuGo('qmcAddFilter')"><?php echo __('Create filter...') ?></div> -->
                                        <div dojoType="dijit.MenuItem" onclick="quickMenuGo('qmcHKhelp')"><?php echo __('Keyboard shortcuts help') ?></div>
                                        <?php if (!$_SESSION["hide_logout"]) { ?>
                                                <div dojoType="dijit.MenuItem" onclick="quickMenuGo('qmcLogout')"><?php echo __('Logout') ?></div>
index afa2f445aa06dea1e5958a6d38e3c1a634af830b..3546e30fb2db12ab3f7bacd3c8ad4cb31b95ea21 100644 (file)
@@ -1,6 +1,22 @@
 dojo.provide("fox.PrefFilterTree");
 
 dojo.require("lib.CheckBoxTree");
+dojo.require("dojo.data.ItemFileWriteStore");
+
+dojo.declare("fox.PrefFilterStore", dojo.data.ItemFileWriteStore, {
+
+       _saveEverything: function(saveCompleteCallback, saveFailedCallback,
+                                                               newFileContentString) {
+
+               dojo.xhrPost({
+                       url: "backend.php",
+                       content: {op: "pref-filters", method: "savefilterorder",
+                               payload: newFileContentString},
+                       error: saveFailedCallback,
+                       load: saveCompleteCallback});
+       },
+
+});
 
 dojo.declare("fox.PrefFilterTree", lib.CheckBoxTree, {
        _createTreeNode: function(args) {
@@ -48,5 +64,17 @@ dojo.declare("fox.PrefFilterTree", lib.CheckBoxTree, {
                return (!item.error || item.error == '') ? "dijitTreeRow" :
                        "dijitTreeRow Error";
        },
+       checkItemAcceptance: function(target, source, position) {
+               var item = dijit.getEnclosingWidget(target).item;
+
+               // disable copying items
+               source.copyState = function() { return false; };
+
+               return position != 'over';
+       },
+       onDndDrop: function() {
+               this.inherited(arguments);
+               this.tree.model.store.save();
+       },
 });
 
index 7da9abfbd636589861593ccca843ad4f625197d6..0b39cc46635c3404da258bdd1b25485892f13cb7 100644 (file)
@@ -415,7 +415,7 @@ function closeInfoBox(cleanup) {
 }
 
 
-function displayDlg(id, param, callback) {
+function displayDlg(title, id, param, callback) {
 
        notify_progress("Loading, please wait...", true);
 
@@ -425,14 +425,14 @@ function displayDlg(id, param, callback) {
        new Ajax.Request("backend.php", {
                parameters: query,
                onComplete: function (transport) {
-                       infobox_callback2(transport);
+                       infobox_callback2(transport, title);
                        if (callback) callback(transport);
                } });
 
        return false;
 }
 
-function infobox_callback2(transport) {
+function infobox_callback2(transport, title) {
        try {
                var dialog = false;
 
@@ -443,13 +443,7 @@ function infobox_callback2(transport) {
                //console.log("infobox_callback2");
                notify('');
 
-               var title = transport.responseXML.getElementsByTagName("title")[0];
-               if (title)
-                       title = title.firstChild.nodeValue;
-
-               var content = transport.responseXML.getElementsByTagName("content")[0];
-
-               content = content.firstChild.nodeValue;
+               var content = transport.responseText;
 
                if (!dialog) {
                        dialog = new dijit.Dialog({
@@ -639,7 +633,7 @@ function filterDlgCheckDate() {
 }
 
 function explainError(code) {
-       return displayDlg("explainError", code);
+       return displayDlg(__("Error explained"), "explainError", code);
 }
 
 function loading_set_progress(p) {
@@ -836,7 +830,7 @@ function addLabel(select, callback) {
 
 function quickAddFeed() {
        try {
-               var query = "backend.php?op=dlg&method=quickAddFeed";
+               var query = "backend.php?op=feeds&method=quickAddFeed";
 
                // overlapping widgets
                if (dijit.byId("batchSubDlg")) dijit.byId("batchSubDlg").destroyRecursive();
@@ -1641,7 +1635,7 @@ function editFeed(feed, event) {
 
 function feedBrowser() {
        try {
-               var query = "backend.php?op=dlg&method=feedBrowser";
+               var query = "backend.php?op=feeds&method=feedBrowser";
 
                if (dijit.byId("feedAddDlg"))
                        dijit.byId("feedAddDlg").hide();
index 7d12e42025a24f192084c288bfa284bdc876bcc6..5ba1e5d3d81368d63920e424e5ba232d72a04c0e 100644 (file)
@@ -767,18 +767,6 @@ function editSelectedFeeds() {
        }
 }
 
-function piggie(enable) {
-       if (enable) {
-               console.log("I LOVEDED IT!");
-               var piggie = $("piggie");
-
-               Element.show(piggie);
-               Position.Center(piggie);
-               Effect.Puff(piggie);
-
-       }
-}
-
 function opmlImportComplete(iframe) {
        try {
                if (!iframe.contentDocument.body.innerHTML) return false;
@@ -1412,7 +1400,7 @@ function editProfiles() {
                if (dijit.byId("profileEditDlg"))
                        dijit.byId("profileEditDlg").destroyRecursive();
 
-               var query = "backend.php?op=dlg&method=editPrefProfiles";
+               var query = "backend.php?op=pref-prefs&method=editPrefProfiles";
 
                dialog = new dijit.Dialog({
                        id: "profileEditDlg",
@@ -1563,6 +1551,24 @@ function clearArticleAccessKeys() {
 
        return false;
 }
+
+function resetFilterOrder() {
+       try {
+               notify_progress("Loading, please wait...");
+
+               new Ajax.Request("backend.php", {
+                       parameters: "?op=pref-filters&method=filtersortreset",
+                       onComplete: function(transport) {
+                               updateFilterList();
+                       } });
+
+
+       } catch (e) {
+               exception_error("resetFilterOrder");
+       }
+}
+
+
 function resetFeedOrder() {
        try {
                notify_progress("Loading, please wait...");
@@ -1709,7 +1715,7 @@ function editLabel(id, event) {
 
 function customizeCSS() {
        try {
-               var query = "backend.php?op=dlg&method=customizeCSS";
+               var query = "backend.php?op=pref-prefs&method=customizeCSS";
 
                if (dijit.byId("cssEditDlg"))
                        dijit.byId("cssEditDlg").destroyRecursive();
@@ -1753,7 +1759,7 @@ function gotoExportOpml(filename, settings) {
 
 function batchSubscribe() {
        try {
-               var query = "backend.php?op=dlg&method=batchSubscribe";
+               var query = "backend.php?op=pref-feeds&method=batchSubscribe";
 
                // overlapping widgets
                if (dijit.byId("batchSubDlg")) dijit.byId("batchSubDlg").destroyRecursive();
index 6c921c25872360347643e54d5cf437135b04270a..51257a693ec0fb4b4639073ffabe334424dcc008 100644 (file)
@@ -159,7 +159,7 @@ function timeout() {
 }
 
 function search() {
-       var query = "backend.php?op=dlg&method=search&param=" +
+       var query = "backend.php?op=feeds&method=search&param=" +
                param_escape(getActiveFeedId() + ":" + activeFeedIsCat());
 
        if (dijit.byId("searchDlg"))
@@ -428,7 +428,7 @@ function init() {
                                viewfeed(-2);
                };
                hotkey_actions["goto_tagcloud"] = function() {
-                               displayDlg("printTagCloud");
+                               displayDlg(__("Tag cloud"), "printTagCloud");
                };
                hotkey_actions["goto_prefs"] = function() {
                                gotoPreferences();
@@ -581,10 +581,10 @@ function quickMenuGo(opid) {
                        gotoLogout();
                        break;
                case "qmcTagCloud":
-                       displayDlg("printTagCloud");
+                       displayDlg(__("Tag cloud"), "printTagCloud");
                        break;
                case "qmcTagSelect":
-                       displayDlg("printTagSelect");
+                       displayDlg(__("Select item(s) by tags"), "printTagSelect");
                        break;
                case "qmcSearch":
                        search();
@@ -752,10 +752,6 @@ function viewModeChanged() {
        return viewCurrentFeed('');
 }
 
-function viewLimitChanged() {
-       return viewCurrentFeed('');
-}
-
 function rescoreCurrentFeed() {
 
        var actid = getActiveFeedId();
index caf40919e8500a6c649a4949f08c8654137cacaa..c24dec62eb3d9ad8a22e81665037784022e78eb1 100644 (file)
@@ -52,9 +52,9 @@ function headlines_callback2(transport, offset, background, infscroll_req) {
 
                        setActiveFeedId(feed_id, is_cat);
 
-                       dijit.getEnclosingWidget(
+                       /* dijit.getEnclosingWidget(
                                document.forms["main_toolbar_form"].update).attr('disabled',
-                                       is_cat || feed_id <= 0);
+                                       is_cat || feed_id <= 0); */
 
                        try {
                                if (infscroll_req == false) {
@@ -941,23 +941,6 @@ function selectArticles(mode) {
        }
 }
 
-function catchupPage() {
-
-       var fn = getFeedName(getActiveFeedId(), activeFeedIsCat());
-
-       var str = __("Mark all visible articles in %s as read?");
-
-       str = str.replace("%s", fn);
-
-       if (getInitParam("confirm_feed_catchup") == 1 && !confirm(str)) {
-               return;
-       }
-
-       selectArticles('all');
-       selectionToggleUnread(false, 'viewCurrentFeed()', true);
-       selectArticles('none');
-}
-
 function deleteSelection() {
 
        try {
@@ -1084,7 +1067,7 @@ function catchupSelection() {
 }
 
 function editArticleTags(id) {
-               var query = "backend.php?op=dlg&method=editArticleTags&param=" + param_escape(id);
+               var query = "backend.php?op=article&method=editArticleTags&param=" + param_escape(id);
 
                if (dijit.byId("editTagsDlg"))
                        dijit.byId("editTagsDlg").destroyRecursive();
@@ -1102,22 +1085,25 @@ function editArticleTags(id) {
                                        new Ajax.Request("backend.php", {
                                        parameters: query,
                                        onComplete: function(transport) {
-                                               notify('');
-                                               dialog.hide();
+                                               try {
+                                                       notify('');
+                                                       dialog.hide();
 
-                                               var data = JSON.parse(transport.responseText);
+                                                       var data = JSON.parse(transport.responseText);
 
-                                               if (data) {
-                                                       var tags_str = article.tags;
-                                                       var id = tags_str.id;
+                                                       if (data) {
+                                                               var id = data.id;
 
-                                                       var tags = $("ATSTR-" + id);
-                                                       var tooltip = dijit.byId("ATSTRTIP-" + id);
+                                                               console.log(id);
 
-                                                       if (tags) tags.innerHTML = tags_str.content;
-                                                       if (tooltip) tooltip.attr('label', tags_str.content_full);
+                                                               var tags = $("ATSTR-" + id);
+                                                               var tooltip = dijit.byId("ATSTRTIP-" + id);
 
-                                                       cache_delete("article:" + id);
+                                                               if (tags) tags.innerHTML = data.content;
+                                                               if (tooltip) tooltip.attr('label', data.content_full);
+                                                       }
+                                               } catch (e) {
+                                                       exception_error("editArticleTags/inner", e);
                                                }
 
                                        }});
@@ -1170,11 +1156,11 @@ function postMouseIn(e, id) {
 
        if (_post_preview_timeout) window.clearTimeout(_post_preview_timeout);
 
-       if (!isCdmMode() || !getInitParam("cdm_expanded")) {
+       /* if (!isCdmMode() || !getInitParam("cdm_expanded")) {
                _post_preview_timeout = window.setTimeout(function() {
                        displaySmallArticlePreview(e, id);
                }, 1000);
-       }
+       } */
 }
 
 function displaySmallArticlePreview(e, id) {
@@ -1553,6 +1539,8 @@ function dismissArticle(id) {
        try {
                var elem = $("RROW-" + id);
 
+               if (!elem) return;
+
                toggleUnread(id, 0, true);
 
                new Effect.Fade(elem, {duration : 0.5});
index 423aaad9431c18b119eaf5490d397f7c3f75fc68..efd7fcc3dbe625406bb8e2a65c2ea9f07e5e73e7 100644 (file)
Binary files a/locale/ca_CA/LC_MESSAGES/messages.mo and b/locale/ca_CA/LC_MESSAGES/messages.mo differ
index dfed7eea5fefd52575ec3f3aebde007e0b88a687..112f3a7fb4ad75b3e8f03f09d37a4ef049754d74 100644 (file)
@@ -6,7 +6,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: messages\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-03-31 12:47+0400\n"
+"POT-Creation-Date: 2013-04-01 16:28+0400\n"
 "PO-Revision-Date: 2009-11-19 09:40+0100\n"
 "Last-Translator: Alfred Galitó <bratac@bratac.cat>\n"
 "Language-Team: Català <bratac@bratac.cat>\n"
@@ -137,9 +137,9 @@ msgstr "La base de dades de Tiny Tiny RSS està actualitzada."
 #: register.php:336
 #: register.php:346
 #: register.php:358
-#: classes/handler/public.php:625
-#: classes/handler/public.php:713
-#: classes/handler/public.php:795
+#: classes/handler/public.php:626
+#: classes/handler/public.php:714
+#: classes/handler/public.php:796
 msgid "Return to Tiny Tiny RSS"
 msgstr "Torna a Tiny Tiny RSS"
 
@@ -252,36 +252,37 @@ msgstr "Ha fallat la sortida de prova de SQL, reviseu la base configuració de l
 
 #: index.php:135
 #: index.php:154
-#: index.php:264
-#: prefs.php:102
+#: index.php:263
+#: prefs.php:103
 #: classes/backend.php:5
 #: classes/pref/labels.php:296
-#: classes/pref/filters.php:628
-#: classes/pref/feeds.php:1330
+#: classes/pref/filters.php:680
+#: classes/pref/feeds.php:1331
 #: plugins/digest/digest_body.php:63
 #: js/feedlist.js:128
 #: js/feedlist.js:448
 #: js/functions.js:420
-#: js/functions.js:814
-#: js/functions.js:1250
-#: js/functions.js:1385
-#: js/functions.js:1697
+#: js/functions.js:808
+#: js/functions.js:1244
+#: js/functions.js:1379
+#: js/functions.js:1691
 #: js/prefs.js:86
 #: js/prefs.js:576
 #: js/prefs.js:666
-#: js/prefs.js:870
-#: js/prefs.js:1457
-#: js/prefs.js:1510
-#: js/prefs.js:1568
-#: js/prefs.js:1584
-#: js/prefs.js:1600
-#: js/prefs.js:1619
-#: js/prefs.js:1792
-#: js/prefs.js:1808
+#: js/prefs.js:858
+#: js/prefs.js:1445
+#: js/prefs.js:1498
+#: js/prefs.js:1557
+#: js/prefs.js:1574
+#: js/prefs.js:1590
+#: js/prefs.js:1606
+#: js/prefs.js:1625
+#: js/prefs.js:1798
+#: js/prefs.js:1814
 #: js/tt-rss.js:475
 #: js/tt-rss.js:492
 #: js/viewfeed.js:774
-#: js/viewfeed.js:1259
+#: js/viewfeed.js:1245
 #: plugins/import_export/import_export.js:17
 #: plugins/updater/updater.js:17
 msgid "Loading, please wait..."
@@ -305,13 +306,13 @@ msgid "All Articles"
 msgstr "Tots els articles"
 
 #: index.php:176
-#: include/functions.php:1974
+#: include/functions.php:1924
 #: classes/feeds.php:106
 msgid "Starred"
 msgstr "Marcats"
 
 #: index.php:177
-#: include/functions.php:1975
+#: include/functions.php:1925
 #: classes/feeds.php:107
 msgid "Published"
 msgstr "Publicats"
@@ -352,22 +353,15 @@ msgstr ""
 msgid "Oldest first"
 msgstr ""
 
-#: index.php:195
-#: classes/pref/feeds.php:567
-#: classes/pref/feeds.php:792
-msgid "Update"
-msgstr "Actualitza"
-
-#: index.php:197
+#: index.php:192
 msgid "Mark feed as read"
 msgstr "Marca el canal com a llegit"
 
-#: index.php:200
-#: index.php:235
-#: include/functions.php:1964
+#: index.php:195
+#: index.php:234
+#: include/functions.php:1914
 #: include/localized_schema.php:10
 #: classes/feeds.php:111
-#: classes/feeds.php:136
 #: classes/feeds.php:437
 #: js/FeedTree.js:128
 #: js/FeedTree.js:156
@@ -375,114 +369,119 @@ msgstr "Marca el canal com a llegit"
 msgid "Mark as read"
 msgstr "Marca'l com a llegit"
 
-#: index.php:201
-#: include/functions.php:1860
-#: include/functions.php:1972
+#: index.php:196
+#: include/functions.php:1810
+#: include/functions.php:1922
 msgid "All articles"
 msgstr "Tots els articles"
 
-#: index.php:202
+#: index.php:197
 msgid "Older than one day"
 msgstr ""
 
-#: index.php:203
+#: index.php:198
 msgid "Older than one week"
 msgstr ""
 
-#: index.php:204
+#: index.php:199
 msgid "Older than two weeks"
 msgstr ""
 
-#: index.php:212
+#: index.php:204
+#, fuzzy
+msgid "Refresh"
+msgstr "Actualitza"
+
+#: index.php:211
 msgid "Communication problem with server."
 msgstr ""
 
-#: index.php:220
+#: index.php:219
 msgid "New version of Tiny Tiny RSS is available!"
 msgstr "Hi ha una nova versió de Tiny Tiny RSS!"
 
-#: index.php:225
+#: index.php:224
 msgid "Actions..."
 msgstr "Accions..."
 
-#: index.php:227
+#: index.php:226
 #, fuzzy
 msgid "Preferences..."
 msgstr "Preferències"
 
-#: index.php:228
+#: index.php:227
 msgid "Search..."
 msgstr "Cerca..."
 
-#: index.php:229
+#: index.php:228
 msgid "Feed actions:"
 msgstr "Accions sobre els canals:"
 
-#: index.php:230
-#: classes/handler/public.php:555
+#: index.php:229
+#: classes/handler/public.php:556
 msgid "Subscribe to feed..."
 msgstr "Subscriviu-vos al canal"
 
-#: index.php:231
+#: index.php:230
 msgid "Edit this feed..."
 msgstr "Edita aquest canal..."
 
-#: index.php:232
+#: index.php:231
 msgid "Rescore feed"
 msgstr "Canvia la puntuació del canal"
 
-#: index.php:233
-#: classes/pref/feeds.php:716
-#: classes/pref/feeds.php:1303
+#: index.php:232
+#: classes/pref/feeds.php:717
+#: classes/pref/feeds.php:1304
 #: js/PrefFeedTree.js:73
 msgid "Unsubscribe"
 msgstr "Dóna't de baixa"
 
-#: index.php:234
+#: index.php:233
 msgid "All feeds:"
 msgstr "Tots els canals"
 
-#: index.php:236
+#: index.php:235
 msgid "(Un)hide read feeds"
 msgstr "Mostra/amaga els canals llegits"
 
-#: index.php:237
+#: index.php:236
 msgid "Other actions:"
 msgstr "Altres accions:"
 
-#: index.php:239
+#: index.php:238
 msgid "Switch to digest..."
 msgstr ""
 
-#: index.php:241
+#: index.php:240
 #, fuzzy
 msgid "Show tag cloud..."
 msgstr "Núvol d'etiquetes"
 
-#: index.php:242
-#: include/functions.php:1950
+#: index.php:241
+#: include/functions.php:1900
 #, fuzzy
 msgid "Toggle widescreen mode"
 msgstr "Canvia al mode de reordenació de categories"
 
-#: index.php:243
+#: index.php:242
 msgid "Select by tags..."
 msgstr ""
 
-#: index.php:244
+#: index.php:243
 msgid "Create label..."
 msgstr "Crea una etiqueta"
 
-#: index.php:245
+#: index.php:244
 msgid "Create filter..."
 msgstr "Crea un filtre..."
 
-#: index.php:246
+#: index.php:245
 #, fuzzy
 msgid "Keyboard shortcuts help"
 msgstr "Dreceres de teclat"
 
-#: index.php:248
+#: index.php:247
 #: plugins/digest/digest_body.php:77
 #: plugins/mobile/mobile-functions.php:62
 #: plugins/mobile/mobile-functions.php:237
@@ -490,41 +489,41 @@ msgid "Logout"
 msgstr "Surt"
 
 #: prefs.php:36
-#: prefs.php:122
-#: include/functions.php:1977
+#: prefs.php:121
+#: include/functions.php:1927
 #: classes/pref/prefs.php:377
 msgid "Preferences"
 msgstr "Preferències"
 
-#: prefs.php:113
+#: prefs.php:112
 msgid "Keyboard shortcuts"
 msgstr "Dreceres de teclat"
 
-#: prefs.php:114
+#: prefs.php:113
 msgid "Exit preferences"
 msgstr "Surt de les preferències"
 
-#: prefs.php:125
-#: classes/pref/feeds.php:106
-#: classes/pref/feeds.php:1208
-#: classes/pref/feeds.php:1271
+#: prefs.php:124
+#: classes/pref/feeds.php:107
+#: classes/pref/feeds.php:1209
+#: classes/pref/feeds.php:1272
 msgid "Feeds"
 msgstr "Canals"
 
-#: prefs.php:128
-#: classes/pref/filters.php:120
+#: prefs.php:127
+#: classes/pref/filters.php:156
 msgid "Filters"
 msgstr "Filtres"
 
-#: prefs.php:131
-#: include/functions.php:1167
-#: include/functions.php:1803
+#: prefs.php:130
+#: include/functions.php:1117
+#: include/functions.php:1753
 #: classes/pref/labels.php:90
 #: plugins/mobile/mobile-functions.php:198
 msgid "Labels"
 msgstr "Etiquetes"
 
-#: prefs.php:135
+#: prefs.php:134
 msgid "Users"
 msgstr "Usuaris"
 
@@ -550,12 +549,12 @@ msgid "Check availability"
 msgstr "Comprova la disponibilitat"
 
 #: register.php:228
-#: classes/handler/public.php:753
+#: classes/handler/public.php:754
 msgid "Email:"
 msgstr "Adreça electrònica:"
 
 #: register.php:231
-#: classes/handler/public.php:758
+#: classes/handler/public.php:759
 msgid "How much is two plus two:"
 msgstr "Quant és dos més dos:"
 
@@ -589,12 +588,12 @@ msgid "Tiny Tiny RSS data update script."
 msgstr "La base de dades de Tiny Tiny RSS està actualitzada."
 
 #: include/digest.php:109
-#: include/functions.php:1176
-#: include/functions.php:1704
-#: include/functions.php:1789
-#: include/functions.php:1811
+#: include/functions.php:1126
+#: include/functions.php:1654
+#: include/functions.php:1739
+#: include/functions.php:1761
 #: classes/opml.php:416
-#: classes/pref/feeds.php:221
+#: classes/pref/feeds.php:222
 msgid "Uncategorized"
 msgstr "Sense categoria"
 
@@ -609,366 +608,364 @@ msgstr[1] "Articles marcats"
 msgid "No feeds found."
 msgstr "No s'ha trobat cap canal."
 
-#: include/functions.php:722
-msgid "Session failed to validate (incorrect IP)"
-msgstr "No s'ha pogut validar la sessió (IP incorrecta)"
-
-#: include/functions.php:1165
-#: include/functions.php:1801
+#: include/functions.php:1115
+#: include/functions.php:1751
 #: plugins/mobile/mobile-functions.php:171
 msgid "Special"
 msgstr "Especial"
 
-#: include/functions.php:1653
-#: classes/dlg.php:369
-#: classes/pref/filters.php:382
+#: include/functions.php:1603
+#: classes/feeds.php:1097
+#: classes/pref/filters.php:427
 msgid "All feeds"
 msgstr "Tots els canals"
 
-#: include/functions.php:1854
+#: include/functions.php:1804
 msgid "Starred articles"
 msgstr "Articles marcats"
 
-#: include/functions.php:1856
+#: include/functions.php:1806
 msgid "Published articles"
 msgstr "Articles publicats"
 
-#: include/functions.php:1858
+#: include/functions.php:1808
 msgid "Fresh articles"
 msgstr "Articles nous"
 
-#: include/functions.php:1862
+#: include/functions.php:1812
 #, fuzzy
 msgid "Archived articles"
 msgstr "Articles mémorisés"
 
-#: include/functions.php:1864
+#: include/functions.php:1814
 msgid "Recently read"
 msgstr ""
 
-#: include/functions.php:1927
+#: include/functions.php:1877
 msgid "Navigation"
 msgstr "Navegació"
 
-#: include/functions.php:1928
+#: include/functions.php:1878
 #, fuzzy
 msgid "Open next feed"
 msgstr "Canals generats"
 
-#: include/functions.php:1929
+#: include/functions.php:1879
 msgid "Open previous feed"
 msgstr ""
 
-#: include/functions.php:1930
+#: include/functions.php:1880
 #, fuzzy
 msgid "Open next article"
 msgstr "Mostra el contingut original de l'article"
 
-#: include/functions.php:1931
+#: include/functions.php:1881
 #, fuzzy
 msgid "Open previous article"
 msgstr "Mostra el contingut original de l'article"
 
-#: include/functions.php:1932
+#: include/functions.php:1882
 msgid "Open next article (don't scroll long articles)"
 msgstr ""
 
-#: include/functions.php:1933
+#: include/functions.php:1883
 msgid "Open previous article (don't scroll long articles)"
 msgstr ""
 
-#: include/functions.php:1934
+#: include/functions.php:1884
 msgid "Show search dialog"
 msgstr "Mostra el diàleg de cerca"
 
-#: include/functions.php:1935
+#: include/functions.php:1885
 #, fuzzy
 msgid "Article"
 msgstr "Tots els articles"
 
-#: include/functions.php:1936
+#: include/functions.php:1886
 msgid "Toggle starred"
 msgstr "Commuta els marcats"
 
-#: include/functions.php:1937
-#: js/viewfeed.js:1920
+#: include/functions.php:1887
+#: js/viewfeed.js:1908
 msgid "Toggle published"
 msgstr "Commuta els publicats"
 
-#: include/functions.php:1938
-#: js/viewfeed.js:1898
+#: include/functions.php:1888
+#: js/viewfeed.js:1886
 msgid "Toggle unread"
 msgstr "Commuta els no llegits"
 
-#: include/functions.php:1939
+#: include/functions.php:1889
 msgid "Edit tags"
 msgstr "Edita les etiquetes"
 
-#: include/functions.php:1940
+#: include/functions.php:1890
 #, fuzzy
 msgid "Dismiss selected"
 msgstr "Esteu segur que voleu eliminar els articles seleccionats de l'etiqueta?"
 
-#: include/functions.php:1941
+#: include/functions.php:1891
 #, fuzzy
 msgid "Dismiss read"
 msgstr "Publica l'article"
 
-#: include/functions.php:1942
+#: include/functions.php:1892
 #, fuzzy
 msgid "Open in new window"
 msgstr "Obre l'article en una finestra nova"
 
-#: include/functions.php:1943
-#: js/viewfeed.js:1939
+#: include/functions.php:1893
+#: js/viewfeed.js:1927
 #, fuzzy
 msgid "Mark below as read"
 msgstr "Marca'l com a llegit"
 
-#: include/functions.php:1944
-#: js/viewfeed.js:1933
+#: include/functions.php:1894
+#: js/viewfeed.js:1921
 #, fuzzy
 msgid "Mark above as read"
 msgstr "Marca'l com a llegit"
 
-#: include/functions.php:1945
+#: include/functions.php:1895
 #, fuzzy
 msgid "Scroll down"
 msgstr "Fet!"
 
-#: include/functions.php:1946
+#: include/functions.php:1896
 msgid "Scroll up"
 msgstr ""
 
-#: include/functions.php:1947
+#: include/functions.php:1897
 #, fuzzy
 msgid "Select article under cursor"
 msgstr "Seleccioneu un article mitjançant el ratolí."
 
-#: include/functions.php:1948
+#: include/functions.php:1898
 #, fuzzy
 msgid "Email article"
 msgstr "Tots els articles"
 
-#: include/functions.php:1949
+#: include/functions.php:1899
 #, fuzzy
 msgid "Close/collapse article"
 msgstr "Buida els articles"
 
-#: include/functions.php:1951
+#: include/functions.php:1901
 #: plugins/embed_original/init.php:33
 #, fuzzy
 msgid "Toggle embed original"
 msgstr "Canvia al mode de reordenació de categories"
 
-#: include/functions.php:1952
+#: include/functions.php:1902
 #, fuzzy
 msgid "Article selection"
 msgstr "Accions actives de l'article"
 
-#: include/functions.php:1953
+#: include/functions.php:1903
 #, fuzzy
 msgid "Select all articles"
 msgstr "Buida els articles"
 
-#: include/functions.php:1954
+#: include/functions.php:1904
 #, fuzzy
 msgid "Select unread"
 msgstr "Purga els articles per llegir"
 
-#: include/functions.php:1955
+#: include/functions.php:1905
 #, fuzzy
 msgid "Select starred"
 msgstr "Marca'l com a destacat"
 
-#: include/functions.php:1956
+#: include/functions.php:1906
 #, fuzzy
 msgid "Select published"
 msgstr "Purga els articles per llegir"
 
-#: include/functions.php:1957
+#: include/functions.php:1907
 #, fuzzy
 msgid "Invert selection"
 msgstr "Accions actives de l'article"
 
-#: include/functions.php:1958
+#: include/functions.php:1908
 #, fuzzy
 msgid "Deselect everything"
 msgstr "Buida els articles"
 
-#: include/functions.php:1959
-#: classes/pref/feeds.php:520
-#: classes/pref/feeds.php:753
+#: include/functions.php:1909
+#: classes/pref/feeds.php:521
+#: classes/pref/feeds.php:754
 msgid "Feed"
 msgstr "Canal"
 
-#: include/functions.php:1960
+#: include/functions.php:1910
 #, fuzzy
 msgid "Refresh current feed"
 msgstr "Actualitza els canals actius"
 
-#: include/functions.php:1961
+#: include/functions.php:1911
 #, fuzzy
 msgid "Un/hide read feeds"
 msgstr "Mostra/amaga els canals llegits"
 
-#: include/functions.php:1962
-#: classes/pref/feeds.php:1274
+#: include/functions.php:1912
+#: classes/pref/feeds.php:1275
 msgid "Subscribe to feed"
 msgstr "Subscriu-te al canal"
 
-#: include/functions.php:1963
+#: include/functions.php:1913
 #: js/FeedTree.js:135
 #: js/PrefFeedTree.js:67
 msgid "Edit feed"
 msgstr "Edita el canal"
 
-#: include/functions.php:1965
+#: include/functions.php:1915
 #, fuzzy
 msgid "Reverse headlines"
 msgstr "Inverteix l'ordre de les capçaleres (les més antigues les primeres)"
 
-#: include/functions.php:1966
+#: include/functions.php:1916
 #, fuzzy
 msgid "Debug feed update"
 msgstr "S'ha acabat l'actualització dels canals."
 
-#: include/functions.php:1967
+#: include/functions.php:1917
 #: js/FeedTree.js:178
 msgid "Mark all feeds as read"
 msgstr "Marca tots els canals com a llegits"
 
-#: include/functions.php:1968
+#: include/functions.php:1918
 #, fuzzy
 msgid "Un/collapse current category"
 msgstr "Clica-hi per a reduir la categoria"
 
-#: include/functions.php:1969
+#: include/functions.php:1919
 #, fuzzy
 msgid "Toggle combined mode"
 msgstr "Canvia al mode de reordenació de categories"
 
-#: include/functions.php:1970
+#: include/functions.php:1920
 #, fuzzy
 msgid "Toggle auto expand in combined mode"
 msgstr "Canvia al mode de reordenació de categories"
 
-#: include/functions.php:1971
+#: include/functions.php:1921
 #, fuzzy
 msgid "Go to"
 msgstr "Vés a..."
 
-#: include/functions.php:1973
+#: include/functions.php:1923
 #, fuzzy
 msgid "Fresh"
 msgstr "Actualitza"
 
-#: include/functions.php:1976
+#: include/functions.php:1926
+#: js/tt-rss.js:431
+#: js/tt-rss.js:584
 msgid "Tag cloud"
 msgstr "Núvol d'etiquetes"
 
-#: include/functions.php:1978
+#: include/functions.php:1928
 #, fuzzy
 msgid "Other"
 msgstr "Altres:"
 
-#: include/functions.php:1979
+#: include/functions.php:1929
 #: classes/pref/labels.php:281
 msgid "Create label"
 msgstr "Crea una etiqueta"
 
-#: include/functions.php:1980
-#: classes/pref/filters.php:606
+#: include/functions.php:1930
+#: classes/pref/filters.php:654
 msgid "Create filter"
 msgstr "Crea un filtre"
 
-#: include/functions.php:1981
+#: include/functions.php:1931
 #, fuzzy
 msgid "Un/collapse sidebar"
 msgstr "Redueix la barra lateral"
 
-#: include/functions.php:1982
+#: include/functions.php:1932
 #, fuzzy
 msgid "Show help dialog"
 msgstr "Mostra el diàleg de cerca"
 
-#: include/functions.php:2467
+#: include/functions.php:2417
 #, fuzzy, php-format
 msgid "Search results: %s"
 msgstr "Resultats de la cerca"
 
-#: include/functions.php:2958
-#: js/viewfeed.js:2026
+#: include/functions.php:2908
+#: js/viewfeed.js:2014
 #, fuzzy
 msgid "Click to play"
 msgstr "Feu clic per editar"
 
-#: include/functions.php:2959
-#: js/viewfeed.js:2025
+#: include/functions.php:2909
+#: js/viewfeed.js:2013
 msgid "Play"
 msgstr ""
 
-#: include/functions.php:3076
+#: include/functions.php:3026
 msgid " - "
 msgstr " - "
 
-#: include/functions.php:3098
-#: include/functions.php:3392
+#: include/functions.php:3048
+#: include/functions.php:3342
 #: classes/rpc.php:408
 msgid "no tags"
 msgstr "sense etiqueta"
 
-#: include/functions.php:3108
+#: include/functions.php:3058
 #: classes/feeds.php:682
 msgid "Edit tags for this article"
 msgstr "Edita les etiquetes d'aquest article"
 
-#: include/functions.php:3137
+#: include/functions.php:3087
 #: classes/feeds.php:638
 #, fuzzy
 msgid "Originally from:"
 msgstr "Mostra el contingut original de l'article"
 
-#: include/functions.php:3150
+#: include/functions.php:3100
 #: classes/feeds.php:651
-#: classes/pref/feeds.php:539
+#: classes/pref/feeds.php:540
 #, fuzzy
 msgid "Feed URL"
 msgstr "Canal"
 
-#: include/functions.php:3181
-#: classes/dlg.php:43
-#: classes/dlg.php:162
-#: classes/dlg.php:185
-#: classes/dlg.php:222
-#: classes/dlg.php:506
-#: classes/dlg.php:541
-#: classes/dlg.php:572
-#: classes/dlg.php:606
-#: classes/dlg.php:618
+#: include/functions.php:3131
+#: classes/dlg.php:37
+#: classes/dlg.php:60
+#: classes/dlg.php:93
+#: classes/dlg.php:159
+#: classes/dlg.php:190
+#: classes/dlg.php:217
+#: classes/dlg.php:250
+#: classes/dlg.php:262
 #: classes/backend.php:105
 #: classes/pref/users.php:106
-#: classes/pref/filters.php:111
-#: classes/pref/feeds.php:1587
-#: classes/pref/feeds.php:1659
+#: classes/pref/filters.php:147
+#: classes/pref/prefs.php:1012
+#: classes/pref/feeds.php:1588
+#: classes/pref/feeds.php:1660
 #: plugins/import_export/init.php:409
 #: plugins/import_export/init.php:432
-#: plugins/googlereaderimport/init.php:164
+#: plugins/googlereaderimport/init.php:168
 #: plugins/share/init.php:67
 #: plugins/updater/init.php:357
 msgid "Close this window"
 msgstr "Tanca la finestra"
 
-#: include/functions.php:3417
+#: include/functions.php:3367
 #, fuzzy
 msgid "(edit note)"
 msgstr "edita la nota"
 
-#: include/functions.php:3650
+#: include/functions.php:3600
 msgid "unknown type"
 msgstr "tipus desconegut"
 
-#: include/functions.php:3706
+#: include/functions.php:3656
 #, fuzzy
 msgid "Attachments"
 msgstr "Adjuncions:"
@@ -1014,7 +1011,7 @@ msgid "Assign tags"
 msgstr "Assigna etiquetes"
 
 #: include/localized_schema.php:14
-#: js/viewfeed.js:1990
+#: js/viewfeed.js:1978
 msgid "Assign label"
 msgstr "Assigna-li l'etiqueta"
 
@@ -1203,7 +1200,7 @@ msgid "User timezone"
 msgstr ""
 
 #: include/localized_schema.php:61
-#: js/prefs.js:1719
+#: js/prefs.js:1725
 #, fuzzy
 msgid "Customize stylesheet"
 msgstr "URL de la fulla d'estils personalitzada."
@@ -1231,14 +1228,14 @@ msgid "Select theme"
 msgstr "Seleccioneu una interfície"
 
 #: include/login_form.php:183
-#: classes/handler/public.php:460
-#: classes/handler/public.php:748
+#: classes/handler/public.php:461
+#: classes/handler/public.php:749
 #: plugins/mobile/login_form.php:40
 msgid "Login:"
 msgstr "Usuari:"
 
 #: include/login_form.php:192
-#: classes/handler/public.php:463
+#: classes/handler/public.php:464
 #: plugins/mobile/login_form.php:45
 msgid "Password:"
 msgstr "Contrasenya:"
@@ -1249,7 +1246,7 @@ msgid "I forgot my password"
 msgstr "El nom d'usuari o la contrasenya és incorrecte"
 
 #: include/login_form.php:201
-#: classes/handler/public.php:466
+#: classes/handler/public.php:467
 msgid "Language:"
 msgstr "Idioma:"
 
@@ -1259,9 +1256,9 @@ msgid "Profile:"
 msgstr "Fitxer:"
 
 #: include/login_form.php:213
-#: classes/handler/public.php:210
+#: classes/handler/public.php:211
 #: classes/rpc.php:64
-#: classes/dlg.php:98
+#: classes/pref/prefs.php:948
 #, fuzzy
 msgid "Default profile"
 msgstr "Nombre maximal d'articles par défaut"
@@ -1275,507 +1272,258 @@ msgid "Remember me"
 msgstr ""
 
 #: include/login_form.php:235
-#: classes/handler/public.php:476
+#: classes/handler/public.php:477
 #: plugins/mobile/login_form.php:28
 msgid "Log in"
 msgstr "Registreu-vos"
 
+#: include/sessions.php:53
+msgid "Session failed to validate (incorrect IP)"
+msgstr "No s'ha pogut validar la sessió (IP incorrecta)"
+
 #: classes/article.php:25
 #, fuzzy
 msgid "Article not found."
 msgstr "No s'ha trobat el canal."
 
-#: classes/handler/public.php:401
+#: classes/article.php:179
+msgid "Tags for this article (separated by commas):"
+msgstr "Etiquetes per aquest article (separades per comes):"
+
+#: classes/article.php:204
+#: classes/pref/users.php:192
+#: classes/pref/labels.php:79
+#: classes/pref/filters.php:405
+#: classes/pref/prefs.php:894
+#: classes/pref/feeds.php:733
+#: classes/pref/feeds.php:881
+#: plugins/nsfw/init.php:86
+#: plugins/note/init.php:53
+#: plugins/instances/init.php:248
+msgid "Save"
+msgstr "Desa"
+
+#: classes/article.php:206
+#: classes/handler/public.php:438
+#: classes/handler/public.php:480
+#: classes/feeds.php:1024
+#: classes/feeds.php:1076
+#: classes/feeds.php:1136
+#: classes/pref/users.php:194
+#: classes/pref/labels.php:81
+#: classes/pref/filters.php:408
+#: classes/pref/filters.php:804
+#: classes/pref/filters.php:880
+#: classes/pref/filters.php:947
+#: classes/pref/prefs.php:896
+#: classes/pref/feeds.php:734
+#: classes/pref/feeds.php:884
+#: classes/pref/feeds.php:1797
+#: plugins/mail/init.php:131
+#: plugins/note/init.php:55
+#: plugins/instances/init.php:251
+#: plugins/instances/init.php:440
+msgid "Cancel"
+msgstr "Cancel·la"
+
+#: classes/handler/public.php:402
 #: plugins/bookmarklets/init.php:38
 #, fuzzy
 msgid "Share with Tiny Tiny RSS"
 msgstr "Torna a Tiny Tiny RSS"
 
-#: classes/handler/public.php:409
+#: classes/handler/public.php:410
 msgid "Title:"
 msgstr "Titre&nbsp;:"
 
-#: classes/handler/public.php:411
-#: classes/dlg.php:663
-#: classes/pref/feeds.php:537
-#: classes/pref/feeds.php:768
+#: classes/handler/public.php:412
+#: classes/pref/feeds.php:538
+#: classes/pref/feeds.php:769
 #: plugins/instances/init.php:215
+#: plugins/instances/init.php:405
 msgid "URL:"
 msgstr "URL:"
 
-#: classes/handler/public.php:413
+#: classes/handler/public.php:414
 #, fuzzy
 msgid "Content:"
 msgstr "Contingut"
 
-#: classes/handler/public.php:415
+#: classes/handler/public.php:416
 #, fuzzy
 msgid "Labels:"
 msgstr "Etiquetes"
 
-#: classes/handler/public.php:434
+#: classes/handler/public.php:435
 msgid "Shared article will appear in the Published feed."
 msgstr ""
 
-#: classes/handler/public.php:436
+#: classes/handler/public.php:437
 msgid "Share"
 msgstr ""
 
-#: classes/handler/public.php:437
-#: classes/handler/public.php:479
-#: classes/dlg.php:296
-#: classes/dlg.php:348
-#: classes/dlg.php:408
-#: classes/dlg.php:439
-#: classes/dlg.php:648
-#: classes/dlg.php:698
-#: classes/dlg.php:747
-#: classes/pref/users.php:194
-#: classes/pref/labels.php:81
-#: classes/pref/filters.php:363
-#: classes/pref/filters.php:746
-#: classes/pref/filters.php:822
-#: classes/pref/filters.php:889
-#: classes/pref/feeds.php:733
-#: classes/pref/feeds.php:883
-#: plugins/mail/init.php:131
-#: plugins/note/init.php:55
-#: plugins/instances/init.php:251
-msgid "Cancel"
-msgstr "Cancel·la"
-
-#: classes/handler/public.php:458
+#: classes/handler/public.php:459
 #, fuzzy
 msgid "Not logged in"
 msgstr "Última connexió el"
 
-#: classes/handler/public.php:525
+#: classes/handler/public.php:526
 msgid "Incorrect username or password"
 msgstr "El nom d'usuari o la contrasenya és incorrecte"
 
-#: classes/handler/public.php:561
-#: classes/handler/public.php:658
+#: classes/handler/public.php:562
+#: classes/handler/public.php:659
 #, php-format
 msgid "Already subscribed to <b>%s</b>."
 msgstr "Ja esteu subscrit a <b>%s</b>."
 
-#: classes/handler/public.php:564
-#: classes/handler/public.php:649
+#: classes/handler/public.php:565
+#: classes/handler/public.php:650
 #, php-format
 msgid "Subscribed to <b>%s</b>."
 msgstr "Subscrit a <b>%s</b>."
 
-#: classes/handler/public.php:567
-#: classes/handler/public.php:652
+#: classes/handler/public.php:568
+#: classes/handler/public.php:653
 #, fuzzy, php-format
 msgid "Could not subscribe to <b>%s</b>."
 msgstr "Ja esteu subscrit a <b>%s</b>."
 
-#: classes/handler/public.php:570
-#: classes/handler/public.php:655
+#: classes/handler/public.php:571
+#: classes/handler/public.php:656
 #, fuzzy, php-format
 msgid "No feeds found in <b>%s</b>."
 msgstr "No s'ha trobat cap canal."
 
-#: classes/handler/public.php:573
-#: classes/handler/public.php:661
+#: classes/handler/public.php:574
+#: classes/handler/public.php:662
 #, fuzzy
 msgid "Multiple feed URLs found."
 msgstr "L'adreça URL del canal ha canviat."
 
-#: classes/handler/public.php:577
-#: classes/handler/public.php:666
+#: classes/handler/public.php:578
+#: classes/handler/public.php:667
 #, fuzzy, php-format
 msgid "Could not subscribe to <b>%s</b>.<br>Can't download the Feed URL."
 msgstr "Ja esteu subscrit a <b>%s</b>."
 
-#: classes/handler/public.php:595
-#: classes/handler/public.php:684
+#: classes/handler/public.php:596
+#: classes/handler/public.php:685
 #, fuzzy
 msgid "Subscribe to selected feed"
 msgstr "Us voleu donar de baixa dels canals seleccionats?"
 
-#: classes/handler/public.php:620
-#: classes/handler/public.php:708
+#: classes/handler/public.php:621
+#: classes/handler/public.php:709
 msgid "Edit subscription options"
 msgstr "Edita les opcions de les subscripcions"
 
-#: classes/handler/public.php:735
+#: classes/handler/public.php:736
 #, fuzzy
 msgid "Password recovery"
 msgstr "Contrasenya:"
 
-#: classes/handler/public.php:741
+#: classes/handler/public.php:742
 msgid "You will need to provide valid account name and email. New password will be sent on your email address."
 msgstr ""
 
-#: classes/handler/public.php:763
+#: classes/handler/public.php:764
 #: classes/pref/users.php:378
 msgid "Reset password"
 msgstr "Reinicia la contrasenya"
 
-#: classes/handler/public.php:773
+#: classes/handler/public.php:774
 msgid "Some of the required form parameters are missing or incorrect."
 msgstr ""
 
-#: classes/handler/public.php:777
-#: classes/handler/public.php:803
+#: classes/handler/public.php:778
+#: classes/handler/public.php:804
 #: plugins/digest/digest_body.php:69
 #, fuzzy
 msgid "Go back"
 msgstr "Vés enrere"
 
-#: classes/handler/public.php:799
+#: classes/handler/public.php:800
 msgid "Sorry, login and email combination not found."
 msgstr ""
 
-#: classes/dlg.php:22
+#: classes/dlg.php:16
 msgid "If you have imported labels and/or filters, you might need to reload preferences to see your new data."
 msgstr ""
 
-#: classes/dlg.php:55
-#: classes/pref/users.php:360
-#: classes/pref/labels.php:272
-#: classes/pref/filters.php:234
-#: classes/pref/filters.php:282
-#: classes/pref/filters.php:597
-#: classes/pref/filters.php:676
-#: classes/pref/filters.php:703
-#: classes/pref/feeds.php:1262
-#: classes/pref/feeds.php:1532
-#: classes/pref/feeds.php:1602
-#: plugins/instances/init.php:287
-#, fuzzy
-msgid "Select"
-msgstr "Selecciona:"
-
-#: classes/dlg.php:58
-#: classes/feeds.php:92
-#: classes/pref/users.php:363
-#: classes/pref/labels.php:275
-#: classes/pref/filters.php:237
-#: classes/pref/filters.php:285
-#: classes/pref/filters.php:600
-#: classes/pref/filters.php:679
-#: classes/pref/filters.php:706
-#: classes/pref/feeds.php:1265
-#: classes/pref/feeds.php:1535
-#: classes/pref/feeds.php:1605
-#: plugins/instances/init.php:290
-msgid "All"
-msgstr "Tot"
-
-#: classes/dlg.php:60
-#: classes/feeds.php:95
-#: classes/pref/users.php:365
-#: classes/pref/labels.php:277
-#: classes/pref/filters.php:239
-#: classes/pref/filters.php:287
-#: classes/pref/filters.php:602
-#: classes/pref/filters.php:681
-#: classes/pref/filters.php:708
-#: classes/pref/feeds.php:1267
-#: classes/pref/feeds.php:1537
-#: classes/pref/feeds.php:1607
-#: plugins/instances/init.php:292
-msgid "None"
-msgstr "Cap"
-
-#: classes/dlg.php:69
-#, fuzzy
-msgid "Create profile"
-msgstr "Crea un filtre"
-
-#: classes/dlg.php:92
-#: classes/dlg.php:122
-#, fuzzy
-msgid "(active)"
-msgstr "Adaptatiu"
-
-#: classes/dlg.php:156
-#, fuzzy
-msgid "Remove selected profiles"
-msgstr "Esteu segur que voleu suprimir els filtres seleccionats?"
-
-#: classes/dlg.php:158
-#, fuzzy
-msgid "Activate profile"
-msgstr "Esteu segur que voleu suprimir els filtres seleccionats?"
-
-#: classes/dlg.php:168
-msgid "Public OPML URL"
-msgstr ""
-
-#: classes/dlg.php:173
+#: classes/dlg.php:48
 #, fuzzy
 msgid "Your Public OPML URL is:"
 msgstr "Enllaç als articles publicats del canal."
 
-#: classes/dlg.php:182
-#: classes/dlg.php:569
+#: classes/dlg.php:57
+#: classes/dlg.php:214
 #, fuzzy
 msgid "Generate new URL"
 msgstr "Canals generats"
 
-#: classes/dlg.php:194
-msgid "Notice"
-msgstr "Avís"
-
-#: classes/dlg.php:200
+#: classes/dlg.php:71
 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 "L'actualització de daemon està activada en la configuració però el procés daemon no funciona, fet que impedeix l'actualització de tots els canals. Si us plau, engegueu el procés del daemon o contacteu amb el responsable pertinent."
 
-#: classes/dlg.php:204
-#: classes/dlg.php:213
+#: classes/dlg.php:75
+#: classes/dlg.php:84
 msgid "Last update:"
 msgstr "Última actualització:"
 
-#: classes/dlg.php:209
+#: classes/dlg.php:80
 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 "L'actualització del daemon és més llarga que la d'un canal. Això pot indicar un problema com la caiguda. Si us plau, reviseu dels processos del daemon o contacteu amb el seu propietari."
 
-#: classes/dlg.php:234
-#: classes/dlg.php:242
-#, fuzzy
-msgid "Feed or site URL"
-msgstr "Canal"
-
-#: classes/dlg.php:248
-#: classes/dlg.php:711
-#: classes/pref/feeds.php:559
-#: classes/pref/feeds.php:781
-msgid "Place in category:"
-msgstr "Posa'l a la categoria:"
-
-#: classes/dlg.php:256
-#, fuzzy
-msgid "Available feeds"
-msgstr "Tots els canals"
-
-#: classes/dlg.php:268
-#: classes/pref/users.php:155
-#: classes/pref/feeds.php:589
-#: classes/pref/feeds.php:817
-msgid "Authentication"
-msgstr "Autenticació"
-
-#: classes/dlg.php:272
-#: classes/dlg.php:725
-#: classes/pref/users.php:420
-#: classes/pref/feeds.php:595
-#: classes/pref/feeds.php:821
-msgid "Login"
-msgstr "Entra"
-
-#: classes/dlg.php:275
-#: classes/dlg.php:728
-#: classes/pref/prefs.php:202
-#: classes/pref/feeds.php:601
-#: classes/pref/feeds.php:827
-#, fuzzy
-msgid "Password"
-msgstr "Contrasenya:"
-
-#: classes/dlg.php:285
-msgid "This feed requires authentication."
-msgstr "Aquest canal requereix autenticació."
-
-#: classes/dlg.php:290
-#: classes/dlg.php:346
-#: classes/dlg.php:746
-msgid "Subscribe"
-msgstr "Subscriu-t'hi"
-
-#: classes/dlg.php:293
-#, fuzzy
-msgid "More feeds"
-msgstr "Més canals"
-
-#: classes/dlg.php:316
-#: classes/dlg.php:407
-#: classes/pref/users.php:350
-#: classes/pref/filters.php:593
-#: classes/pref/feeds.php:1258
-#: js/tt-rss.js:170
-msgid "Search"
-msgstr "Cerca"
-
-#: classes/dlg.php:320
-#, fuzzy
-msgid "Popular feeds"
-msgstr "mostra els canals"
-
-#: classes/dlg.php:321
-#, fuzzy
-msgid "Feed archive"
-msgstr "Accions dels canals"
-
-#: classes/dlg.php:324
-#, fuzzy
-msgid "limit:"
-msgstr "Límit:"
-
-#: classes/dlg.php:347
-#: classes/pref/users.php:376
-#: classes/pref/labels.php:284
-#: classes/pref/filters.php:353
-#: classes/pref/filters.php:615
-#: classes/pref/feeds.php:706
-#: plugins/instances/init.php:297
-msgid "Remove"
-msgstr "Suprimeix"
-
-#: classes/dlg.php:358
-msgid "Look for"
-msgstr "Mirar-ho per"
-
-#: classes/dlg.php:366
-msgid "Limit search to:"
-msgstr "Limita la cerca a:"
-
-#: classes/dlg.php:382
-msgid "This feed"
-msgstr "Aquest canal"
-
-#: classes/dlg.php:414
-msgid "Tags for this article (separated by commas):"
-msgstr "Etiquetes per aquest article (separades per comes):"
-
-#: classes/dlg.php:437
-#: classes/dlg.php:646
-#: classes/pref/users.php:192
-#: classes/pref/labels.php:79
-#: classes/pref/filters.php:360
-#: classes/pref/feeds.php:732
-#: classes/pref/feeds.php:880
-#: plugins/nsfw/init.php:86
-#: plugins/note/init.php:53
-#: plugins/instances/init.php:248
-msgid "Save"
-msgstr "Desa"
-
-#: classes/dlg.php:445
-#, fuzzy
-msgid "Tag Cloud"
-msgstr "Núvol d'etiquetes"
-
-#: classes/dlg.php:514
-msgid "Select item(s) by tags"
-msgstr ""
-
-#: classes/dlg.php:517
+#: classes/dlg.php:166
 msgid "Match:"
 msgstr "Correspondance&nbsp;:"
 
-#: classes/dlg.php:519
+#: classes/dlg.php:168
 msgid "Any"
 msgstr ""
 
-#: classes/dlg.php:522
+#: classes/dlg.php:171
 #, fuzzy
 msgid "All tags."
 msgstr "sense etiqueta"
 
-#: classes/dlg.php:524
+#: classes/dlg.php:173
 msgid "Which Tags?"
 msgstr ""
 
-#: classes/dlg.php:537
+#: classes/dlg.php:186
 #, fuzzy
 msgid "Display entries"
 msgstr "mostra els canals"
 
-#: classes/dlg.php:549
-#: classes/feeds.php:138
-#, fuzzy
-msgid "View as RSS"
-msgstr "Visualitza les etiquetes"
-
-#: classes/dlg.php:560
+#: classes/dlg.php:205
 msgid "You can view this feed as RSS using the following URL:"
 msgstr ""
 
-#: classes/dlg.php:589
+#: classes/dlg.php:233
 #: plugins/updater/init.php:327
 #, fuzzy, php-format
 msgid "New version of Tiny Tiny RSS is available (%s)."
 msgstr "Hi ha una nova versió de Tiny Tiny RSS!"
 
-#: classes/dlg.php:597
+#: classes/dlg.php:241
 msgid "You can update using built-in updater in the Preferences or by using update.php"
 msgstr ""
 
-#: classes/dlg.php:601
+#: classes/dlg.php:245
 #: plugins/updater/init.php:331
 msgid "See the release notes"
 msgstr ""
 
-#: classes/dlg.php:603
+#: classes/dlg.php:247
 msgid "Download"
 msgstr ""
 
-#: classes/dlg.php:611
+#: classes/dlg.php:255
 msgid "Error receiving version information or no new version available."
 msgstr ""
 
-#: classes/dlg.php:631
-#, 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 ""
-
-#: classes/dlg.php:657
-#: plugins/instances/init.php:207
-msgid "Instance"
-msgstr ""
-
-#: classes/dlg.php:666
-#: plugins/instances/init.php:218
-#: plugins/instances/init.php:315
-msgid "Instance URL"
-msgstr ""
-
-#: classes/dlg.php:676
-#: plugins/instances/init.php:229
-#, fuzzy
-msgid "Access key:"
-msgstr "Nivell d'accés:"
-
-#: classes/dlg.php:679
-#: plugins/instances/init.php:232
-#: plugins/instances/init.php:316
-#, fuzzy
-msgid "Access key"
-msgstr "Nivell d'accés"
-
-#: classes/dlg.php:683
-#: plugins/instances/init.php:236
-msgid "Use one access key for both linked instances."
-msgstr ""
-
-#: classes/dlg.php:691
-#: plugins/instances/init.php:244
-#, fuzzy
-msgid "Generate new key"
-msgstr "Canals generats"
-
-#: classes/dlg.php:695
-#, fuzzy
-msgid "Create link"
-msgstr "Crea"
-
-#: classes/dlg.php:708
-msgid "Add one valid RSS feed per line (no feed detection is done)"
-msgstr ""
-
-#: classes/dlg.php:717
-msgid "Feeds to subscribe, One per line"
-msgstr ""
-
-#: classes/dlg.php:739
-#, fuzzy
-msgid "Feeds require authentication."
-msgstr "Aquest canal requereix autenticació."
-
 #: classes/feeds.php:68
 #, fuzzy
 msgid "Visit the website"
@@ -1786,14 +1534,53 @@ msgstr "Visiteu el web oficial"
 msgid "View as RSS feed"
 msgstr "Visualitza els canals"
 
+#: classes/feeds.php:84
+#: classes/feeds.php:138
+#: classes/pref/feeds.php:1440
+#, fuzzy
+msgid "View as RSS"
+msgstr "Visualitza les etiquetes"
+
 #: classes/feeds.php:91
 msgid "Select:"
 msgstr "Selecciona:"
 
+#: classes/feeds.php:92
+#: classes/pref/users.php:363
+#: classes/pref/labels.php:275
+#: classes/pref/filters.php:282
+#: classes/pref/filters.php:330
+#: classes/pref/filters.php:648
+#: classes/pref/filters.php:737
+#: classes/pref/filters.php:764
+#: classes/pref/prefs.php:908
+#: classes/pref/feeds.php:1266
+#: classes/pref/feeds.php:1536
+#: classes/pref/feeds.php:1606
+#: plugins/instances/init.php:290
+msgid "All"
+msgstr "Tot"
+
 #: classes/feeds.php:94
 msgid "Invert"
 msgstr "Inverteix"
 
+#: classes/feeds.php:95
+#: classes/pref/users.php:365
+#: classes/pref/labels.php:277
+#: classes/pref/filters.php:284
+#: classes/pref/filters.php:332
+#: classes/pref/filters.php:650
+#: classes/pref/filters.php:739
+#: classes/pref/filters.php:766
+#: classes/pref/prefs.php:910
+#: classes/pref/feeds.php:1268
+#: classes/pref/feeds.php:1538
+#: classes/pref/feeds.php:1608
+#: plugins/instances/init.php:292
+msgid "None"
+msgstr "Cap"
+
 #: classes/feeds.php:101
 #, fuzzy
 msgid "More..."
@@ -1823,10 +1610,10 @@ msgid "Move back"
 msgstr "Vés enrere"
 
 #: classes/feeds.php:118
-#: classes/pref/filters.php:246
-#: classes/pref/filters.php:294
-#: classes/pref/filters.php:688
-#: classes/pref/filters.php:715
+#: classes/pref/filters.php:291
+#: classes/pref/filters.php:339
+#: classes/pref/filters.php:746
+#: classes/pref/filters.php:773
 #, fuzzy
 msgid "Delete"
 msgstr "Per defecte"
@@ -1883,20 +1670,123 @@ msgid "No articles found to display."
 msgstr "No s'han trobat articles per a mostrar."
 
 #: classes/feeds.php:755
-#: classes/feeds.php:920
+#: classes/feeds.php:919
 #, fuzzy, php-format
 msgid "Feeds last updated at %s"
 msgstr "Erreurs de mise à jour"
 
 #: classes/feeds.php:765
-#: classes/feeds.php:930
+#: classes/feeds.php:929
 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:910
+#: classes/feeds.php:909
 msgid "No feed selected."
 msgstr "No heu seleccionat cap canal."
 
+#: classes/feeds.php:962
+#: classes/feeds.php:970
+#, fuzzy
+msgid "Feed or site URL"
+msgstr "Canal"
+
+#: classes/feeds.php:976
+#: classes/pref/feeds.php:560
+#: classes/pref/feeds.php:782
+#: classes/pref/feeds.php:1761
+msgid "Place in category:"
+msgstr "Posa'l a la categoria:"
+
+#: classes/feeds.php:984
+#, fuzzy
+msgid "Available feeds"
+msgstr "Tots els canals"
+
+#: classes/feeds.php:996
+#: classes/pref/users.php:155
+#: classes/pref/feeds.php:590
+#: classes/pref/feeds.php:818
+msgid "Authentication"
+msgstr "Autenticació"
+
+#: classes/feeds.php:1000
+#: classes/pref/users.php:420
+#: classes/pref/feeds.php:596
+#: classes/pref/feeds.php:822
+#: classes/pref/feeds.php:1775
+msgid "Login"
+msgstr "Entra"
+
+#: classes/feeds.php:1003
+#: classes/pref/prefs.php:202
+#: classes/pref/feeds.php:602
+#: classes/pref/feeds.php:828
+#: classes/pref/feeds.php:1778
+#, fuzzy
+msgid "Password"
+msgstr "Contrasenya:"
+
+#: classes/feeds.php:1013
+msgid "This feed requires authentication."
+msgstr "Aquest canal requereix autenticació."
+
+#: classes/feeds.php:1018
+#: classes/feeds.php:1074
+#: classes/pref/feeds.php:1796
+msgid "Subscribe"
+msgstr "Subscriu-t'hi"
+
+#: classes/feeds.php:1021
+#, fuzzy
+msgid "More feeds"
+msgstr "Més canals"
+
+#: classes/feeds.php:1044
+#: classes/feeds.php:1135
+#: classes/pref/users.php:350
+#: classes/pref/filters.php:641
+#: classes/pref/feeds.php:1259
+#: js/tt-rss.js:170
+msgid "Search"
+msgstr "Cerca"
+
+#: classes/feeds.php:1048
+#, fuzzy
+msgid "Popular feeds"
+msgstr "mostra els canals"
+
+#: classes/feeds.php:1049
+#, fuzzy
+msgid "Feed archive"
+msgstr "Accions dels canals"
+
+#: classes/feeds.php:1052
+#, fuzzy
+msgid "limit:"
+msgstr "Límit:"
+
+#: classes/feeds.php:1075
+#: classes/pref/users.php:376
+#: classes/pref/labels.php:284
+#: classes/pref/filters.php:398
+#: classes/pref/filters.php:667
+#: classes/pref/feeds.php:707
+#: plugins/instances/init.php:297
+msgid "Remove"
+msgstr "Suprimeix"
+
+#: classes/feeds.php:1086
+msgid "Look for"
+msgstr "Mirar-ho per"
+
+#: classes/feeds.php:1094
+msgid "Limit search to:"
+msgstr "Limita la cerca a:"
+
+#: classes/feeds.php:1110
+msgid "This feed"
+msgstr "Aquest canal"
+
 #: classes/backend.php:33
 msgid "Other interface tips are available in the Tiny Tiny RSS wiki."
 msgstr ""
@@ -1971,7 +1861,7 @@ msgid "Error: please upload OPML file."
 msgstr "Error: si us plau carregueu el fitxer OPML."
 
 #: classes/opml.php:475
-#: plugins/googlereaderimport/init.php:157
+#: plugins/googlereaderimport/init.php:161
 msgid "Error while parsing document."
 msgstr "Error mentre s'analitza el document."
 
@@ -2018,8 +1908,8 @@ msgid "Change password to"
 msgstr "Nova contrasenya"
 
 #: classes/pref/users.php:177
-#: classes/pref/feeds.php:609
-#: classes/pref/feeds.php:833
+#: classes/pref/feeds.php:610
+#: classes/pref/feeds.php:834
 msgid "Options"
 msgstr "Opcions"
 
@@ -2060,6 +1950,22 @@ msgstr ""
 msgid "[tt-rss] Password change notification"
 msgstr "[tt-rss] Notificació de canvi de contrasenya"
 
+#: classes/pref/users.php:360
+#: classes/pref/labels.php:272
+#: classes/pref/filters.php:279
+#: classes/pref/filters.php:327
+#: classes/pref/filters.php:645
+#: classes/pref/filters.php:734
+#: classes/pref/filters.php:761
+#: classes/pref/prefs.php:905
+#: classes/pref/feeds.php:1263
+#: classes/pref/feeds.php:1533
+#: classes/pref/feeds.php:1603
+#: plugins/instances/init.php:287
+#, fuzzy
+msgid "Select"
+msgstr "Selecciona:"
+
 #: classes/pref/users.php:368
 msgid "Create user"
 msgstr "Crea un usuari"
@@ -2070,7 +1976,7 @@ msgid "Details"
 msgstr "Diàriament"
 
 #: classes/pref/users.php:374
-#: classes/pref/filters.php:612
+#: classes/pref/filters.php:660
 #: plugins/instances/init.php:296
 msgid "Edit"
 msgstr "Edita"
@@ -2097,6 +2003,8 @@ msgid "No matching users found."
 msgstr "No s'ha trobat cap usuari que coinicideixi. "
 
 #: classes/pref/labels.php:22
+#: classes/pref/filters.php:268
+#: classes/pref/filters.php:725
 msgid "Caption"
 msgstr "Descriptif"
 
@@ -2124,128 +2032,140 @@ msgstr "S'ha creat l'etiqueta <b>%s</b> "
 msgid "Clear colors"
 msgstr "Elimina els colors"
 
-#: classes/pref/filters.php:60
+#: classes/pref/filters.php:96
 #, fuzzy
 msgid "Articles matching this filter:"
 msgstr "No s'ha trobat cap fitxer que coincideixi."
 
-#: classes/pref/filters.php:97
+#: classes/pref/filters.php:133
 #, fuzzy
 msgid "No recent articles matching this filter have been found."
 msgstr "No s'ha trobat cap fitxer que coincideixi."
 
-#: classes/pref/filters.php:101
+#: classes/pref/filters.php:137
 msgid "Complex expressions might not give results while testing due to issues with database server regexp implementation."
 msgstr ""
 
-#: classes/pref/filters.php:229
-#: classes/pref/filters.php:671
-#: classes/pref/filters.php:786
+#: classes/pref/filters.php:274
+#: classes/pref/filters.php:729
+#: classes/pref/filters.php:844
 msgid "Match"
 msgstr "Coincidència"
 
-#: classes/pref/filters.php:243
-#: classes/pref/filters.php:291
-#: classes/pref/filters.php:685
-#: classes/pref/filters.php:712
+#: classes/pref/filters.php:288
+#: classes/pref/filters.php:336
+#: classes/pref/filters.php:743
+#: classes/pref/filters.php:770
 msgid "Add"
 msgstr ""
 
-#: classes/pref/filters.php:277
-#: classes/pref/filters.php:698
+#: classes/pref/filters.php:322
+#: classes/pref/filters.php:756
 #, fuzzy
 msgid "Apply actions"
 msgstr "Accions dels canals"
 
-#: classes/pref/filters.php:327
-#: classes/pref/filters.php:727
+#: classes/pref/filters.php:372
+#: classes/pref/filters.php:785
 msgid "Enabled"
 msgstr "Activat"
 
-#: classes/pref/filters.php:336
-#: classes/pref/filters.php:730
+#: classes/pref/filters.php:381
+#: classes/pref/filters.php:788
 #, fuzzy
 msgid "Match any rule"
 msgstr "Basat en:"
 
-#: classes/pref/filters.php:345
-#: classes/pref/filters.php:733
+#: classes/pref/filters.php:390
+#: classes/pref/filters.php:791
 #, fuzzy
 msgid "Inverse matching"
 msgstr "Coincidència inversa"
 
-#: classes/pref/filters.php:357
-#: classes/pref/filters.php:740
+#: classes/pref/filters.php:402
+#: classes/pref/filters.php:798
 msgid "Test"
 msgstr "Tester"
 
-#: classes/pref/filters.php:390
+#: classes/pref/filters.php:435
 #, fuzzy
 msgid "(inverse)"
 msgstr "(Invers)"
 
-#: classes/pref/filters.php:389
+#: classes/pref/filters.php:434
 #, php-format
 msgid "%s on %s in %s %s"
 msgstr ""
 
-#: classes/pref/filters.php:609
+#: classes/pref/filters.php:657
 msgid "Combine"
 msgstr ""
 
-#: classes/pref/filters.php:619
-#: classes/pref/feeds.php:1317
+#: classes/pref/filters.php:663
+#: classes/pref/feeds.php:1279
+#: classes/pref/feeds.php:1293
+#, fuzzy
+msgid "Reset sort order"
+msgstr "Reinicia la contrasenya"
+
+#: classes/pref/filters.php:671
+#: classes/pref/feeds.php:1318
 msgid "Rescore articles"
 msgstr "Canvia la puntuació dels articles"
 
-#: classes/pref/filters.php:743
+#: classes/pref/filters.php:801
 msgid "Create"
 msgstr "Crea"
 
-#: classes/pref/filters.php:798
+#: classes/pref/filters.php:856
 msgid "Inverse regular expression matching"
 msgstr ""
 
-#: classes/pref/filters.php:800
+#: classes/pref/filters.php:858
 msgid "on field"
 msgstr "al camp"
 
-#: classes/pref/filters.php:806
-#: js/PrefFilterTree.js:29
+#: classes/pref/filters.php:864
+#: js/PrefFilterTree.js:45
 #: plugins/digest/digest.js:242
 msgid "in"
 msgstr "a"
 
-#: classes/pref/filters.php:819
+#: classes/pref/filters.php:877
 #, fuzzy
 msgid "Save rule"
 msgstr "Desa"
 
-#: classes/pref/filters.php:819
-#: js/functions.js:1069
+#: classes/pref/filters.php:877
+#: js/functions.js:1063
 #, fuzzy
 msgid "Add rule"
 msgstr "S'està afegint la categoria..."
 
-#: classes/pref/filters.php:842
+#: classes/pref/filters.php:900
 msgid "Perform Action"
 msgstr "Acció a realitzar:"
 
-#: classes/pref/filters.php:868
+#: classes/pref/filters.php:926
 msgid "with parameters:"
 msgstr "amb els paràmetres:"
 
-#: classes/pref/filters.php:886
+#: classes/pref/filters.php:944
 #, fuzzy
 msgid "Save action"
 msgstr "Quadre d'accions"
 
-#: classes/pref/filters.php:886
-#: js/functions.js:1095
+#: classes/pref/filters.php:944
+#: js/functions.js:1089
 #, fuzzy
 msgid "Add action"
 msgstr "Accions dels canals"
 
+#: classes/pref/filters.php:967
+#, fuzzy
+msgid "[No caption]"
+msgstr "Descriptif"
+
 #: classes/pref/prefs.php:17
 msgid "Old password cannot be blank."
 msgstr "El camp de contrasenya antiga no pot estar buit."
@@ -2465,265 +2385,296 @@ msgstr "Habilita les icones dels canals."
 msgid "Incorrect password"
 msgstr "El nom d'usuari o la contrasenya és incorrecte"
 
-#: classes/pref/feeds.php:12
+#: classes/pref/prefs.php:879
+#, 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 ""
+
+#: classes/pref/prefs.php:919
+#, fuzzy
+msgid "Create profile"
+msgstr "Crea un filtre"
+
+#: classes/pref/prefs.php:942
+#: classes/pref/prefs.php:972
+#, fuzzy
+msgid "(active)"
+msgstr "Adaptatiu"
+
+#: classes/pref/prefs.php:1006
+#, fuzzy
+msgid "Remove selected profiles"
+msgstr "Esteu segur que voleu suprimir els filtres seleccionats?"
+
+#: classes/pref/prefs.php:1008
+#, fuzzy
+msgid "Activate profile"
+msgstr "Esteu segur que voleu suprimir els filtres seleccionats?"
+
+#: classes/pref/feeds.php:13
 msgid "Check to enable field"
 msgstr "Seleccioneu-ho per activar els camps"
 
-#: classes/pref/feeds.php:60
-#: classes/pref/feeds.php:208
-#: classes/pref/feeds.php:250
-#: classes/pref/feeds.php:256
-#: classes/pref/feeds.php:281
-#, fuzzy, php-format
-msgid "(%d feed)"
-msgid_plural "(%d feeds)"
-msgstr[0] "Edita el canal"
-msgstr[1] "Edita el canal"
-
-#: classes/pref/feeds.php:526
+#: classes/pref/feeds.php:527
 #, fuzzy
 msgid "Feed Title"
 msgstr "Títol"
 
-#: classes/pref/feeds.php:582
-#: classes/pref/feeds.php:808
+#: classes/pref/feeds.php:568
+#: classes/pref/feeds.php:793
+msgid "Update"
+msgstr "Actualitza"
+
+#: classes/pref/feeds.php:583
+#: classes/pref/feeds.php:809
 msgid "Article purging:"
 msgstr "Neteja d'articles:"
 
-#: classes/pref/feeds.php:605
+#: classes/pref/feeds.php:606
 msgid "<b>Hint:</b> you need to fill in your login information if your feed requires authentication, except for Twitter feeds."
 msgstr ""
 
-#: classes/pref/feeds.php:621
-#: classes/pref/feeds.php:837
+#: classes/pref/feeds.php:622
+#: classes/pref/feeds.php:838
 #, fuzzy
 msgid "Hide from Popular feeds"
 msgstr "Amaga-ho de la llista de canals"
 
-#: classes/pref/feeds.php:633
-#: classes/pref/feeds.php:843
+#: classes/pref/feeds.php:634
+#: classes/pref/feeds.php:844
 msgid "Include in e-mail digest"
 msgstr "Inclou-lo en el resum diari per correu electrònic"
 
-#: classes/pref/feeds.php:646
-#: classes/pref/feeds.php:849
+#: classes/pref/feeds.php:647
+#: classes/pref/feeds.php:850
 msgid "Always display image attachments"
 msgstr "Mostra les imatges adjuntes"
 
-#: classes/pref/feeds.php:659
-#: classes/pref/feeds.php:857
+#: classes/pref/feeds.php:660
+#: classes/pref/feeds.php:858
 msgid "Do not embed images"
 msgstr ""
 
-#: classes/pref/feeds.php:672
-#: classes/pref/feeds.php:865
+#: classes/pref/feeds.php:673
+#: classes/pref/feeds.php:866
 msgid "Cache images locally"
 msgstr "Emmagatzema les imatges localment"
 
-#: classes/pref/feeds.php:684
-#: classes/pref/feeds.php:871
+#: classes/pref/feeds.php:685
+#: classes/pref/feeds.php:872
 #, fuzzy
 msgid "Mark updated articles as unread"
 msgstr "Esteu segur que voleu marcar tots els articles com a llegits?"
 
-#: classes/pref/feeds.php:690
+#: classes/pref/feeds.php:691
 #, fuzzy
 msgid "Icon"
 msgstr "Action"
 
-#: classes/pref/feeds.php:704
+#: classes/pref/feeds.php:705
 msgid "Replace"
 msgstr ""
 
-#: classes/pref/feeds.php:723
+#: classes/pref/feeds.php:724
 #, fuzzy
 msgid "Resubscribe to push updates"
 msgstr "Subscrit als canals:"
 
-#: classes/pref/feeds.php:730
+#: classes/pref/feeds.php:731
 msgid "Resets PubSubHubbub subscription status for push-enabled feeds."
 msgstr ""
 
-#: classes/pref/feeds.php:1111
-#: classes/pref/feeds.php:1164
+#: classes/pref/feeds.php:1112
+#: classes/pref/feeds.php:1165
 msgid "All done."
 msgstr "Fet!"
 
-#: classes/pref/feeds.php:1219
+#: classes/pref/feeds.php:1220
 #, fuzzy
 msgid "Feeds with errors"
 msgstr "Editor de canals"
 
-#: classes/pref/feeds.php:1239
+#: classes/pref/feeds.php:1240
 #, fuzzy
 msgid "Inactive feeds"
 msgstr "Tots els canals"
 
-#: classes/pref/feeds.php:1276
+#: classes/pref/feeds.php:1277
 #, fuzzy
 msgid "Edit selected feeds"
 msgstr "S'estan purgant els canals seleccionats..."
 
-#: classes/pref/feeds.php:1278
-#: classes/pref/feeds.php:1292
-#, fuzzy
-msgid "Reset sort order"
-msgstr "Reinicia la contrasenya"
-
-#: classes/pref/feeds.php:1280
-#: js/prefs.js:1764
+#: classes/pref/feeds.php:1281
+#: js/prefs.js:1770
 #, fuzzy
 msgid "Batch subscribe"
 msgstr "Dóna't de baixa"
 
-#: classes/pref/feeds.php:1285
+#: classes/pref/feeds.php:1286
 #, fuzzy
 msgid "Categories"
 msgstr "Catégorie&nbsp;:"
 
-#: classes/pref/feeds.php:1288
+#: classes/pref/feeds.php:1289
 #, fuzzy
 msgid "Add category"
 msgstr "S'està afegint la categoria..."
 
-#: classes/pref/feeds.php:1290
+#: classes/pref/feeds.php:1291
 #, fuzzy
 msgid "(Un)hide empty categories"
 msgstr "Edita les categories"
 
-#: classes/pref/feeds.php:1294
+#: classes/pref/feeds.php:1295
 #, fuzzy
 msgid "Remove selected"
 msgstr "Esteu segur que voleu suprimir els filtres seleccionats?"
 
-#: classes/pref/feeds.php:1308
+#: classes/pref/feeds.php:1309
 #, fuzzy
 msgid "More actions..."
 msgstr "Accions..."
 
-#: classes/pref/feeds.php:1312
+#: classes/pref/feeds.php:1313
 msgid "Manual purge"
 msgstr "Purger manuellement"
 
-#: classes/pref/feeds.php:1316
+#: classes/pref/feeds.php:1317
 msgid "Clear feed data"
 msgstr "Esborra les dades del canal"
 
-#: classes/pref/feeds.php:1367
+#: classes/pref/feeds.php:1368
 msgid "OPML"
 msgstr "OPML"
 
-#: classes/pref/feeds.php:1369
+#: classes/pref/feeds.php:1370
 msgid "Using OPML you can export and import your feeds, filters, labels and Tiny Tiny RSS settings."
 msgstr ""
 
-#: classes/pref/feeds.php:1371
+#: classes/pref/feeds.php:1372
 msgid "Only main settings profile can be migrated using OPML."
 msgstr ""
 
-#: classes/pref/feeds.php:1384
+#: classes/pref/feeds.php:1385
 #, fuzzy
 msgid "Import my OPML"
 msgstr "S'està important OPML (s'està utilitzant l'extensió DOMXML)..."
 
-#: classes/pref/feeds.php:1388
+#: classes/pref/feeds.php:1389
 msgid "Filename:"
 msgstr ""
 
-#: classes/pref/feeds.php:1390
+#: classes/pref/feeds.php:1391
 #, fuzzy
 msgid "Include settings"
 msgstr "Inclou-lo en el resum diari per correu electrònic"
 
-#: classes/pref/feeds.php:1394
+#: classes/pref/feeds.php:1395
 #, fuzzy
 msgid "Export OPML"
 msgstr "Exporta en format OPML"
 
-#: classes/pref/feeds.php:1398
+#: classes/pref/feeds.php:1399
 #, fuzzy
 msgid "Your OPML can be published publicly and can be subscribed by anyone who knows the URL below."
 msgstr "Els articles publicats s'exporten en un canal RSS públic al qual s'hi pot subscriure qualsevol que en conegui l'adreça URL."
 
-#: classes/pref/feeds.php:1400
+#: classes/pref/feeds.php:1401
 msgid "Published OPML does not include your Tiny Tiny RSS settings, feeds that require authentication or feeds hidden from Popular feeds."
 msgstr ""
 
 #: classes/pref/feeds.php:1403
+msgid "Public OPML URL"
+msgstr ""
+
+#: classes/pref/feeds.php:1404
 msgid "Display published OPML URL"
 msgstr ""
 
-#: classes/pref/feeds.php:1413
+#: classes/pref/feeds.php:1414
 #, fuzzy
 msgid "Firefox integration"
 msgstr "Integració al Firefox"
 
-#: classes/pref/feeds.php:1415
+#: classes/pref/feeds.php:1416
 msgid "This Tiny Tiny RSS site can be used as a Firefox Feed Reader by clicking the link below."
 msgstr "Podeu utilitzar Tiny Tiny RSS  com a lector de canals amb el Firefox fent clic en el següent enllaç."
 
-#: classes/pref/feeds.php:1422
+#: classes/pref/feeds.php:1423
 msgid "Click here to register this site as a feed reader."
 msgstr "Feu clic aquí per a desar aquesta pàgina web com un canal."
 
-#: classes/pref/feeds.php:1430
+#: classes/pref/feeds.php:1431
 #, fuzzy
 msgid "Published & shared articles / Generated feeds"
 msgstr "Esteu segur que voleu canviar la puntuació dels articles en les etiquetes personalitzades?"
 
-#: classes/pref/feeds.php:1432
+#: classes/pref/feeds.php:1433
 #, fuzzy
 msgid "Published articles and generated feeds"
 msgstr "Esteu segur que voleu canviar la puntuació dels articles en les etiquetes personalitzades?"
 
-#: classes/pref/feeds.php:1434
+#: classes/pref/feeds.php:1435
 msgid "Published articles are exported as a public RSS feed and can be subscribed by anyone who knows the URL specified below."
 msgstr "Els articles publicats s'exporten en un canal RSS públic al qual s'hi pot subscriure qualsevol que en conegui l'adreça URL."
 
-#: classes/pref/feeds.php:1440
+#: classes/pref/feeds.php:1441
 #, fuzzy
 msgid "Display URL"
 msgstr "afficher les étiquettes"
 
-#: classes/pref/feeds.php:1443
+#: classes/pref/feeds.php:1444
 msgid "Clear all generated URLs"
 msgstr ""
 
-#: classes/pref/feeds.php:1445
+#: classes/pref/feeds.php:1446
 #, fuzzy
 msgid "Articles shared by URL"
 msgstr "Marca l'article"
 
-#: classes/pref/feeds.php:1447
+#: classes/pref/feeds.php:1448
 msgid "You can disable all articles shared by unique URLs here."
 msgstr ""
 
-#: classes/pref/feeds.php:1450
+#: classes/pref/feeds.php:1451
 #, fuzzy
 msgid "Unshare all articles"
 msgstr "Articles mémorisés"
 
-#: classes/pref/feeds.php:1528
+#: classes/pref/feeds.php:1529
 #, fuzzy
 msgid "These feeds have not been updated with new content for 3 months (oldest first):"
 msgstr "Aquests canals no s'han actualitzat degut als següents errors:"
 
-#: classes/pref/feeds.php:1565
-#: classes/pref/feeds.php:1635
+#: classes/pref/feeds.php:1566
+#: classes/pref/feeds.php:1636
 #, fuzzy
 msgid "Click to edit feed"
 msgstr "Feu clic per editar"
 
-#: classes/pref/feeds.php:1583
-#: classes/pref/feeds.php:1655
+#: classes/pref/feeds.php:1584
+#: classes/pref/feeds.php:1656
 #, fuzzy
 msgid "Unsubscribe from selected feeds"
 msgstr "Us voleu donar de baixa dels canals seleccionats?"
 
-#: classes/pref/feeds.php:1594
+#: classes/pref/feeds.php:1595
 msgid "These feeds have not been updated because of errors:"
 msgstr "Aquests canals no s'han actualitzat degut als següents errors:"
 
+#: classes/pref/feeds.php:1758
+msgid "Add one valid RSS feed per line (no feed detection is done)"
+msgstr ""
+
+#: classes/pref/feeds.php:1767
+msgid "Feeds to subscribe, One per line"
+msgstr ""
+
+#: classes/pref/feeds.php:1789
+#, fuzzy
+msgid "Feeds require authentication."
+msgstr "Aquest canal requereix autenticació."
+
 #: plugins/digest/digest_body.php:59
 #, fuzzy
 msgid "Your browser doesn't support Javascript, which is required for this application to function properly. Please check your browser settings."
@@ -3003,24 +2954,24 @@ msgstr "Marca'l com a destacat"
 msgid "No file uploaded."
 msgstr "No hi ha cap fitxer OPML per a carregar."
 
-#: plugins/googlereaderimport/init.php:149
+#: plugins/googlereaderimport/init.php:153
 #, php-format
 msgid "All done. %d out of %d articles imported."
 msgstr ""
 
-#: plugins/googlereaderimport/init.php:153
+#: plugins/googlereaderimport/init.php:157
 msgid "The document has incorrect format."
 msgstr ""
 
-#: plugins/googlereaderimport/init.php:322
+#: plugins/googlereaderimport/init.php:326
 msgid "Import starred or shared items from Google Reader"
 msgstr ""
 
-#: plugins/googlereaderimport/init.php:326
+#: plugins/googlereaderimport/init.php:330
 msgid "Paste your starred.json or shared.json into the form below."
 msgstr ""
 
-#: plugins/googlereaderimport/init.php:340
+#: plugins/googlereaderimport/init.php:344
 msgid "Import my Starred items"
 msgstr ""
 
@@ -3029,6 +2980,41 @@ msgstr ""
 msgid "Linked"
 msgstr "Enllaç"
 
+#: plugins/instances/init.php:207
+#: plugins/instances/init.php:399
+msgid "Instance"
+msgstr ""
+
+#: plugins/instances/init.php:218
+#: plugins/instances/init.php:315
+#: plugins/instances/init.php:408
+msgid "Instance URL"
+msgstr ""
+
+#: plugins/instances/init.php:229
+#: plugins/instances/init.php:418
+#, fuzzy
+msgid "Access key:"
+msgstr "Nivell d'accés:"
+
+#: plugins/instances/init.php:232
+#: plugins/instances/init.php:316
+#: plugins/instances/init.php:421
+#, fuzzy
+msgid "Access key"
+msgstr "Nivell d'accés"
+
+#: plugins/instances/init.php:236
+#: plugins/instances/init.php:425
+msgid "Use one access key for both linked instances."
+msgstr ""
+
+#: plugins/instances/init.php:244
+#: plugins/instances/init.php:433
+#, fuzzy
+msgid "Generate new key"
+msgstr "Canals generats"
+
 #: plugins/instances/init.php:295
 #, fuzzy
 msgid "Link instance"
@@ -3051,6 +3037,11 @@ msgstr ""
 msgid "Stored feeds"
 msgstr "Més canals"
 
+#: plugins/instances/init.php:437
+#, fuzzy
+msgid "Create link"
+msgstr "Crea"
+
 #: plugins/share/init.php:27
 #, fuzzy
 msgid "Share by URL"
@@ -3115,188 +3106,192 @@ msgstr ""
 msgid "close"
 msgstr ""
 
-#: js/functions.js:627
+#: js/functions.js:621
 #, fuzzy
 msgid "Date syntax appears to be correct:"
 msgstr "La contrasenya antiga és incorrecta."
 
-#: js/functions.js:630
+#: js/functions.js:624
 #, fuzzy
 msgid "Date syntax is incorrect."
 msgstr "La contrasenya antiga és incorrecta."
 
-#: js/functions.js:724
+#: js/functions.js:636
+msgid "Error explained"
+msgstr ""
+
+#: js/functions.js:718
 #, fuzzy
 msgid "Upload complete."
 msgstr "Articles mémorisés"
 
-#: js/functions.js:748
+#: js/functions.js:742
 #, fuzzy
 msgid "Remove stored feed icon?"
 msgstr "Elimina les dades emmagatzemades"
 
-#: js/functions.js:753
+#: js/functions.js:747
 #, fuzzy
 msgid "Removing feed icon..."
 msgstr "S'està eliminant el canal..."
 
-#: js/functions.js:758
+#: js/functions.js:752
 #, fuzzy
 msgid "Feed icon removed."
 msgstr "No s'ha trobat el canal."
 
-#: js/functions.js:780
+#: js/functions.js:774
 #, fuzzy
 msgid "Please select an image file to upload."
 msgstr "Si us plau, seleccioneu un canal."
 
-#: js/functions.js:782
+#: js/functions.js:776
 msgid "Upload new icon for this feed?"
 msgstr ""
 
-#: js/functions.js:783
+#: js/functions.js:777
 #, fuzzy
 msgid "Uploading, please wait..."
 msgstr "S'està obrint, preneu paciència..."
 
-#: js/functions.js:799
+#: js/functions.js:793
 msgid "Please enter label caption:"
 msgstr "Si us plau, escriviu un títol per a l'etiqueta:"
 
-#: js/functions.js:804
+#: js/functions.js:798
 msgid "Can't create label: missing caption."
 msgstr "No s'ha pogut crear l'etiqueta: Títol desconegut."
 
-#: js/functions.js:847
+#: js/functions.js:841
 msgid "Subscribe to Feed"
 msgstr "Subscriviu-vos al canal"
 
-#: js/functions.js:874
+#: js/functions.js:868
 #, fuzzy
 msgid "Subscribed to %s"
 msgstr "Subscrit als canals:"
 
-#: js/functions.js:879
+#: js/functions.js:873
 msgid "Specified URL seems to be invalid."
 msgstr ""
 
-#: js/functions.js:882
+#: js/functions.js:876
 msgid "Specified URL doesn't seem to contain any feeds."
 msgstr ""
 
-#: js/functions.js:935
+#: js/functions.js:929
 #, fuzzy
 msgid "Couldn't download the specified URL: %s"
 msgstr "No s'ha pogut subscriure: no s'ha especificat la URL del canal."
 
-#: js/functions.js:939
+#: js/functions.js:933
 #, fuzzy
 msgid "You are already subscribed to this feed."
 msgstr "No esteu subscrit a cap canal."
 
-#: js/functions.js:1069
+#: js/functions.js:1063
 #, fuzzy
 msgid "Edit rule"
 msgstr "Filtres"
 
-#: js/functions.js:1095
+#: js/functions.js:1089
 #, fuzzy
 msgid "Edit action"
 msgstr "Accions dels canals"
 
-#: js/functions.js:1132
+#: js/functions.js:1126
 msgid "Create Filter"
 msgstr "Crea un filtre"
 
-#: js/functions.js:1247
+#: js/functions.js:1241
 msgid "Reset subscription? Tiny Tiny RSS will try to subscribe to the notification hub again on next feed update."
 msgstr ""
 
-#: js/functions.js:1258
+#: js/functions.js:1252
 #, fuzzy
 msgid "Subscription reset."
 msgstr "Subscriviu-vos al canal"
 
-#: js/functions.js:1268
+#: js/functions.js:1262
 #: js/tt-rss.js:619
 msgid "Unsubscribe from %s?"
 msgstr "Us voleu donar de baixa de %s ?"
 
-#: js/functions.js:1271
+#: js/functions.js:1265
 msgid "Removing feed..."
 msgstr "S'està eliminant el canal..."
 
-#: js/functions.js:1379
+#: js/functions.js:1373
 #, fuzzy
 msgid "Please enter category title:"
 msgstr "Si us plau, escriviu una nota per aquest article:"
 
-#: js/functions.js:1410
+#: js/functions.js:1404
 msgid "Generate new syndication address for this feed?"
 msgstr ""
 
-#: js/functions.js:1414
-#: js/prefs.js:1234
+#: js/functions.js:1408
+#: js/prefs.js:1222
 msgid "Trying to change address..."
 msgstr "S'està intentant canviar l'adreça..."
 
-#: js/functions.js:1601
+#: js/functions.js:1595
 #: js/tt-rss.js:396
 #: js/tt-rss.js:600
 msgid "You can't edit this kind of feed."
 msgstr "No podeu editar aquest tipus de canal."
 
-#: js/functions.js:1616
+#: js/functions.js:1610
 #, fuzzy
 msgid "Edit Feed"
 msgstr "Edita el canal"
 
-#: js/functions.js:1622
+#: js/functions.js:1616
 #: js/prefs.js:194
 #: js/prefs.js:749
 #, fuzzy
 msgid "Saving data..."
 msgstr "S'està desant el canal..."
 
-#: js/functions.js:1654
+#: js/functions.js:1648
 #, fuzzy
 msgid "More Feeds"
 msgstr "Més canals"
 
-#: js/functions.js:1715
-#: js/functions.js:1825
+#: js/functions.js:1709
+#: js/functions.js:1819
 #: 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
+#: js/prefs.js:1198
+#: js/prefs.js:1343
 msgid "No feeds are selected."
 msgstr "No heu seleccionat cap canal."
 
-#: js/functions.js:1757
+#: js/functions.js:1751
 msgid "Remove selected feeds from the archive? Feeds with stored articles will not be removed."
 msgstr ""
 
-#: js/functions.js:1796
+#: js/functions.js:1790
 #, fuzzy
 msgid "Feeds with update errors"
 msgstr "Erreurs de mise à jour"
 
-#: js/functions.js:1807
-#: js/prefs.js:1192
+#: js/functions.js:1801
+#: js/prefs.js:1180
 #, fuzzy
 msgid "Remove selected feeds?"
 msgstr "Esteu segur que voleu suprimir els filtres seleccionats?"
 
-#: js/functions.js:1810
-#: js/prefs.js:1195
+#: js/functions.js:1804
+#: js/prefs.js:1183
 #, fuzzy
 msgid "Removing selected feeds..."
 msgstr "S'estan suprimint els filtres seleccionats..."
 
-#: js/functions.js:1908
+#: js/functions.js:1902
 msgid "Help"
 msgstr "Ajuda"
 
@@ -3310,7 +3305,7 @@ msgstr "Edita les categories"
 msgid "Remove category"
 msgstr "Crea una categoria"
 
-#: js/PrefFilterTree.js:32
+#: js/PrefFilterTree.js:48
 #, fuzzy
 msgid "Inverse"
 msgstr "(Invers)"
@@ -3350,7 +3345,7 @@ msgid "Removing selected labels..."
 msgstr "S'estan seleccionat les etiquetes seleccionades..."
 
 #: js/prefs.js:295
-#: js/prefs.js:1396
+#: js/prefs.js:1384
 msgid "No labels are selected."
 msgstr "No heu seleccionat cap etiqueta."
 
@@ -3457,163 +3452,163 @@ msgstr "Editor múltiple de canals"
 msgid "Save changes to selected feeds?"
 msgstr "Esteu segur que voleu desar els canvis als canals seleccionats?"
 
-#: js/prefs.js:797
+#: js/prefs.js:785
 #, fuzzy
 msgid "OPML Import"
 msgstr "Importeu"
 
-#: js/prefs.js:824
+#: js/prefs.js:812
 #, fuzzy
 msgid "Please choose an OPML file first."
 msgstr "Primerament heu de seleccionar un canal."
 
-#: js/prefs.js:827
+#: js/prefs.js:815
 #: plugins/import_export/import_export.js:115
 #: plugins/googlereaderimport/init.js:45
 #, fuzzy
 msgid "Importing, please wait..."
 msgstr "S'està obrint, preneu paciència..."
 
-#: js/prefs.js:980
+#: js/prefs.js:968
 msgid "Reset to defaults?"
 msgstr "Esteu segur que voleu establir els valors per defecte?"
 
-#: js/prefs.js:1099
+#: js/prefs.js:1087
 msgid "Remove category %s? Any nested feeds would be placed into Uncategorized."
 msgstr ""
 
-#: js/prefs.js:1105
+#: js/prefs.js:1093
 #, fuzzy
 msgid "Removing category..."
 msgstr "Crea una categoria"
 
-#: js/prefs.js:1126
+#: js/prefs.js:1114
 msgid "Remove selected categories?"
 msgstr "Esteu segur que voleu suprimir les categories seleccionades?"
 
-#: js/prefs.js:1129
+#: js/prefs.js:1117
 msgid "Removing selected categories..."
 msgstr "S'estan seleccionant les categories seleccionades..."
 
-#: js/prefs.js:1142
+#: js/prefs.js:1130
 msgid "No categories are selected."
 msgstr "No heu seleccionat cap categoria."
 
-#: js/prefs.js:1150
+#: js/prefs.js:1138
 #, fuzzy
 msgid "Category title:"
 msgstr "Edita les categories"
 
-#: js/prefs.js:1154
+#: js/prefs.js:1142
 #, fuzzy
 msgid "Creating category..."
 msgstr "Crea un filtre..."
 
-#: js/prefs.js:1181
+#: js/prefs.js:1169
 #, fuzzy
 msgid "Feeds without recent updates"
 msgstr "Erreurs de mise à jour"
 
-#: js/prefs.js:1230
+#: js/prefs.js:1218
 #, fuzzy
 msgid "Replace current OPML publishing address with a new one?"
 msgstr "Voleu canviar l'adreça de publicació per una de nova?"
 
-#: js/prefs.js:1319
+#: js/prefs.js:1307
 msgid "Clearing feed..."
 msgstr "S'està netejant el canal..."
 
-#: js/prefs.js:1339
+#: js/prefs.js:1327
 msgid "Rescore articles in selected feeds?"
 msgstr "Esteu segur que voleu canviar la puntuació dels articles en les etiquetes personalitzades?"
 
-#: js/prefs.js:1342
+#: js/prefs.js:1330
 #, fuzzy
 msgid "Rescoring selected feeds..."
 msgstr "S'està netejant el canal seleccionat..."
 
-#: js/prefs.js:1362
+#: js/prefs.js:1350
 msgid "Rescore all articles? This operation may take a lot of time."
 msgstr "Esteu segur que voleu recuperar tots els articles? Aquesta operació pot durar molt temps."
 
-#: js/prefs.js:1365
+#: js/prefs.js:1353
 #, fuzzy
 msgid "Rescoring feeds..."
 msgstr "Suppression d'un flux..."
 
-#: js/prefs.js:1382
+#: js/prefs.js:1370
 #, fuzzy
 msgid "Reset selected labels to default colors?"
 msgstr "Esteu segur que voleu canviar els colors de les etiquetes pels colors per defecte?"
 
-#: js/prefs.js:1419
+#: js/prefs.js:1407
 msgid "Settings Profiles"
 msgstr ""
 
-#: js/prefs.js:1428
+#: js/prefs.js:1416
 msgid "Remove selected profiles? Active and default profiles will not be removed."
 msgstr ""
 
-#: js/prefs.js:1431
+#: js/prefs.js:1419
 #, fuzzy
 msgid "Removing selected profiles..."
 msgstr "S'estan suprimint els filtres seleccionats..."
 
-#: js/prefs.js:1446
+#: js/prefs.js:1434
 #, fuzzy
 msgid "No profiles are selected."
 msgstr "No hi ha cap article seleccionat."
 
-#: js/prefs.js:1454
-#: js/prefs.js:1507
+#: js/prefs.js:1442
+#: js/prefs.js:1495
 #, fuzzy
 msgid "Activate selected profile?"
 msgstr "Esteu segur que voleu suprimir els filtres seleccionats?"
 
-#: js/prefs.js:1470
-#: js/prefs.js:1523
+#: js/prefs.js:1458
+#: js/prefs.js:1511
 #, fuzzy
 msgid "Please choose a profile to activate."
 msgstr "Primerament heu de seleccionar un canal."
 
-#: js/prefs.js:1475
+#: js/prefs.js:1463
 #, fuzzy
 msgid "Creating profile..."
 msgstr "Crea un filtre"
 
-#: js/prefs.js:1531
+#: js/prefs.js:1519
 msgid "This will invalidate all previously generated feed URLs. Continue?"
 msgstr ""
 
-#: js/prefs.js:1534
-#: js/prefs.js:1553
+#: js/prefs.js:1522
+#: js/prefs.js:1541
 #, fuzzy
 msgid "Clearing URLs..."
 msgstr "S'està netejant el canal..."
 
-#: js/prefs.js:1541
+#: js/prefs.js:1529
 #, fuzzy
 msgid "Generated URLs cleared."
 msgstr "Canals generats"
 
-#: js/prefs.js:1550
+#: js/prefs.js:1538
 msgid "This will invalidate all previously shared article URLs. Continue?"
 msgstr ""
 
-#: js/prefs.js:1560
+#: js/prefs.js:1548
 msgid "Shared URLs cleared."
 msgstr ""
 
-#: js/prefs.js:1648
+#: js/prefs.js:1654
 msgid "Label Editor"
 msgstr "Éditeur d'intitulé"
 
-#: js/prefs.js:1770
+#: js/prefs.js:1776
 #, fuzzy
 msgid "Subscribing to feeds..."
 msgstr "S'està subscrivint a un canal..."
 
-#: js/prefs.js:1807
+#: js/prefs.js:1813
 msgid "Clear stored data for this plugin?"
 msgstr ""
 
@@ -3635,28 +3630,32 @@ msgstr "Primerament heu de seleccionar un canal."
 msgid "Please enable embed_original plugin first."
 msgstr "Primerament heu de seleccionar un canal."
 
+#: js/tt-rss.js:587
+msgid "Select item(s) by tags"
+msgstr ""
+
 #: js/tt-rss.js:608
 msgid "You can't unsubscribe from the category."
 msgstr "No us podeu donar de baixa de la categoria."
 
 #: js/tt-rss.js:613
-#: js/tt-rss.js:769
+#: js/tt-rss.js:765
 msgid "Please select some feed first."
 msgstr "Primerament heu de seleccionar un canal."
 
-#: js/tt-rss.js:764
+#: js/tt-rss.js:760
 msgid "You can't rescore this kind of feed."
 msgstr "No podeu canviar la puntuació d'aquest tipus de canal."
 
-#: js/tt-rss.js:774
+#: js/tt-rss.js:770
 msgid "Rescore articles in %s?"
 msgstr "Esteu segur que voleu canviar la puntuació dels articles a %s?"
 
-#: js/tt-rss.js:777
+#: js/tt-rss.js:773
 msgid "Rescoring articles..."
 msgstr "S'estan canviant la puntuació dels articles"
 
-#: js/tt-rss.js:911
+#: js/tt-rss.js:907
 #, fuzzy
 msgid "New version available!"
 msgstr "Hi ha una nova versió de Tiny Tiny RSS!"
@@ -3689,123 +3688,119 @@ msgstr "Deixa de publicar l'article"
 #: js/viewfeed.js:734
 #: js/viewfeed.js:797
 #: js/viewfeed.js:831
-#: js/viewfeed.js:968
-#: js/viewfeed.js:1011
-#: js/viewfeed.js:1064
-#: js/viewfeed.js:2108
+#: js/viewfeed.js:951
+#: js/viewfeed.js:994
+#: js/viewfeed.js:1047
+#: js/viewfeed.js:2096
 #: 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:948
-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:976
+#: js/viewfeed.js:959
 #, fuzzy
 msgid "Delete %d selected article in %s?"
 msgid_plural "Delete %d selected articles in %s?"
 msgstr[0] "Esteu segur que voleu marcar els %d articles seleccionats de %s com a llegits?"
 msgstr[1] "Esteu segur que voleu marcar els %d articles seleccionats de %s com a llegits?"
 
-#: js/viewfeed.js:978
+#: js/viewfeed.js:961
 #, fuzzy
 msgid "Delete %d selected article?"
 msgid_plural "Delete %d selected articles?"
 msgstr[0] "Esteu segur que voleu eliminar els articles seleccionats de l'etiqueta?"
 msgstr[1] "Esteu segur que voleu eliminar els articles seleccionats de l'etiqueta?"
 
-#: js/viewfeed.js:1020
+#: js/viewfeed.js:1003
 #, fuzzy
 msgid "Archive %d selected article in %s?"
 msgid_plural "Archive %d selected articles in %s?"
 msgstr[0] "Esteu segur que voleu marcar els %d articles seleccionats de %s com a llegits?"
 msgstr[1] "Esteu segur que voleu marcar els %d articles seleccionats de %s com a llegits?"
 
-#: js/viewfeed.js:1023
+#: js/viewfeed.js:1006
 #, fuzzy
 msgid "Move %d archived article back?"
 msgid_plural "Move %d archived articles back?"
 msgstr[0] "Articles marcats"
 msgstr[1] "Articles marcats"
 
-#: js/viewfeed.js:1025
+#: js/viewfeed.js:1008
 msgid "Please note that unstarred articles might get purged on next feed update."
 msgstr ""
 
-#: js/viewfeed.js:1070
+#: js/viewfeed.js:1053
 #, fuzzy
 msgid "Mark %d selected article in %s as read?"
 msgid_plural "Mark %d selected articles in %s as read?"
 msgstr[0] "Esteu segur que voleu marcar els %d articles seleccionats de %s com a llegits?"
 msgstr[1] "Esteu segur que voleu marcar els %d articles seleccionats de %s com a llegits?"
 
-#: js/viewfeed.js:1094
+#: js/viewfeed.js:1077
 #, fuzzy
 msgid "Edit article Tags"
 msgstr "Edita les etiquetes"
 
-#: js/viewfeed.js:1100
+#: js/viewfeed.js:1083
 msgid "Saving article tags..."
 msgstr "S'estan desant les etiquetes de l'article"
 
-#: js/viewfeed.js:1337
+#: js/viewfeed.js:1323
 msgid "No article is selected."
 msgstr "No hi ha cap article seleccionat."
 
-#: js/viewfeed.js:1372
+#: js/viewfeed.js:1358
 msgid "No articles found to mark"
 msgstr "No s'han trobat articles per a marcar."
 
-#: js/viewfeed.js:1374
+#: js/viewfeed.js:1360
 #, fuzzy
 msgid "Mark %d article as read?"
 msgid_plural "Mark %d articles as read?"
 msgstr[0] "Esteu segur que voleu marcar  %d article(s) com a llegit(s) ?"
 msgstr[1] "Esteu segur que voleu marcar  %d article(s) com a llegit(s) ?"
 
-#: js/viewfeed.js:1884
+#: js/viewfeed.js:1872
 #, fuzzy
 msgid "Open original article"
 msgstr "Mostra el contingut original de l'article"
 
-#: js/viewfeed.js:1890
+#: js/viewfeed.js:1878
 #, fuzzy
 msgid "Display article URL"
 msgstr "afficher les étiquettes"
 
-#: js/viewfeed.js:1909
+#: js/viewfeed.js:1897
 #, fuzzy
 msgid "Toggle marked"
 msgstr "Commuta els marcats"
 
-#: js/viewfeed.js:1995
+#: js/viewfeed.js:1983
 #, fuzzy
 msgid "Remove label"
 msgstr "Esteu segur que voleu suprimir les etiquetes seleccionades?"
 
-#: js/viewfeed.js:2019
+#: js/viewfeed.js:2007
 #, fuzzy
 msgid "Playing..."
 msgstr "S'està carregant la llista de canals..."
 
-#: js/viewfeed.js:2020
+#: js/viewfeed.js:2008
 #, fuzzy
 msgid "Click to pause"
 msgstr "Feu clic per editar"
 
-#: js/viewfeed.js:2077
+#: js/viewfeed.js:2065
 #, fuzzy
 msgid "Please enter new score for selected articles:"
 msgstr "Si us plau, escriviu una nota per aquest article:"
 
-#: js/viewfeed.js:2119
+#: js/viewfeed.js:2107
 #, fuzzy
 msgid "Please enter new score for this article:"
 msgstr "Si us plau, escriviu una nota per aquest article:"
 
-#: js/viewfeed.js:2152
+#: js/viewfeed.js:2140
 #, fuzzy
 msgid "Article URL:"
 msgstr "Tots els articles"
@@ -3929,6 +3924,22 @@ msgstr "Marca l'article"
 msgid "Live updating is considered experimental. Backup your tt-rss directory before continuing. Please type 'yes' to continue."
 msgstr ""
 
+#, fuzzy
+#~ msgid "(%d feed)"
+#~ msgid_plural "(%d feeds)"
+#~ msgstr[0] "Edita el canal"
+#~ msgstr[1] "Edita el canal"
+
+#~ msgid "Notice"
+#~ msgstr "Avís"
+
+#, fuzzy
+#~ msgid "Tag Cloud"
+#~ msgstr "Núvol d'etiquetes"
+
+#~ msgid "Mark all visible articles in %s as read?"
+#~ msgstr "Esteu segur que voleu marcar tots els articles visibles de %s com a llegits ?"
+
 #~ msgid "Date"
 #~ msgstr "Data"
 
@@ -4916,10 +4927,6 @@ msgstr ""
 #~ msgid "SQL Expression"
 #~ msgstr "Expression SQL"
 
-#, fuzzy
-#~ msgid "[No caption]"
-#~ msgstr "Descriptif"
-
 #, fuzzy
 #~ msgid "Labels and SQL Expressions"
 #~ msgstr "Expression SQL"
index 77798ad1ba1a5e1ebffc8c65390c94b7689b49bf..18858b050658ac415b2cff0c1e6fa78ba4ba3675 100644 (file)
Binary files a/locale/cs_CZ/LC_MESSAGES/messages.mo and b/locale/cs_CZ/LC_MESSAGES/messages.mo differ
index fcb7c8622458ac70422243a5286921e6aab4c20f..855ee7f0eb0ba2c65d00a2852669a9e1fa76b453 100644 (file)
@@ -7,8 +7,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-03-31 12:47+0400\n"
-"PO-Revision-Date: 2013-03-25 12:51+0100\n"
+"POT-Creation-Date: 2013-04-01 16:28+0400\n"
+"PO-Revision-Date: 2013-03-31 18:03+0200\n"
 "Last-Translator: Tomáš Chvátal <tomas.chvatal@gmail.com>\n"
 "Language-Team: Czech <kde-i18n-doc@kde.org>\n"
 "Language: cs\n"
@@ -138,9 +138,9 @@ msgstr "Databáze Tiny Tiny RSS je aktuální."
 #: register.php:336
 #: register.php:346
 #: register.php:358
-#: classes/handler/public.php:625
-#: classes/handler/public.php:713
-#: classes/handler/public.php:795
+#: classes/handler/public.php:626
+#: classes/handler/public.php:714
+#: classes/handler/public.php:796
 msgid "Return to Tiny Tiny RSS"
 msgstr "Zpět do Tiny Tiny RSS"
 
@@ -249,36 +249,37 @@ msgstr "Test ochrany proti podvratným SQL dotazům (SQL Injection) selhal, zkon
 
 #: index.php:135
 #: index.php:154
-#: index.php:264
-#: prefs.php:102
+#: index.php:263
+#: prefs.php:103
 #: classes/backend.php:5
 #: classes/pref/labels.php:296
-#: classes/pref/filters.php:628
-#: classes/pref/feeds.php:1330
+#: classes/pref/filters.php:680
+#: classes/pref/feeds.php:1331
 #: plugins/digest/digest_body.php:63
 #: js/feedlist.js:128
 #: js/feedlist.js:448
 #: js/functions.js:420
-#: js/functions.js:814
-#: js/functions.js:1250
-#: js/functions.js:1385
-#: js/functions.js:1697
+#: js/functions.js:808
+#: js/functions.js:1244
+#: js/functions.js:1379
+#: js/functions.js:1691
 #: js/prefs.js:86
 #: js/prefs.js:576
 #: js/prefs.js:666
-#: js/prefs.js:870
-#: js/prefs.js:1457
-#: js/prefs.js:1510
-#: js/prefs.js:1568
-#: js/prefs.js:1584
-#: js/prefs.js:1600
-#: js/prefs.js:1619
-#: js/prefs.js:1792
-#: js/prefs.js:1808
+#: js/prefs.js:858
+#: js/prefs.js:1445
+#: js/prefs.js:1498
+#: js/prefs.js:1557
+#: js/prefs.js:1574
+#: js/prefs.js:1590
+#: js/prefs.js:1606
+#: js/prefs.js:1625
+#: js/prefs.js:1798
+#: js/prefs.js:1814
 #: js/tt-rss.js:475
 #: js/tt-rss.js:492
 #: js/viewfeed.js:774
-#: js/viewfeed.js:1259
+#: js/viewfeed.js:1245
 #: plugins/import_export/import_export.js:17
 #: plugins/updater/updater.js:17
 msgid "Loading, please wait..."
@@ -301,13 +302,13 @@ msgid "All Articles"
 msgstr "Všechny články"
 
 #: index.php:176
-#: include/functions.php:1974
+#: include/functions.php:1924
 #: classes/feeds.php:106
 msgid "Starred"
 msgstr "S hvězdičkou"
 
 #: index.php:177
-#: include/functions.php:1975
+#: include/functions.php:1925
 #: classes/feeds.php:107
 msgid "Published"
 msgstr "Publikováno"
@@ -319,13 +320,12 @@ msgid "Unread"
 msgstr "Nepřečteno"
 
 #: index.php:179
-#, fuzzy
 msgid "Unread First"
-msgstr "Nepřečteno"
+msgstr "Nejprve nepřečtené"
 
 #: index.php:180
 msgid "With Note"
-msgstr ""
+msgstr "S poznámkou"
 
 #: index.php:181
 msgid "Ignore Scoring"
@@ -341,29 +341,21 @@ msgstr "Výchozí"
 
 #: index.php:188
 msgid "Newest first"
-msgstr ""
+msgstr "Nejprve nejnovější"
 
 #: index.php:189
 msgid "Oldest first"
-msgstr ""
-
-#: index.php:195
-#: classes/pref/feeds.php:567
-#: classes/pref/feeds.php:792
-msgid "Update"
-msgstr "Aktualizovat"
+msgstr "Nejprve nejstarší"
 
-#: index.php:197
-#, fuzzy
+#: index.php:192
 msgid "Mark feed as read"
-msgstr "Označit všechny kanály za přečtené"
+msgstr "Označit kanál jako přečtený"
 
-#: index.php:200
-#: index.php:235
-#: include/functions.php:1964
+#: index.php:195
+#: index.php:234
+#: include/functions.php:1914
 #: include/localized_schema.php:10
 #: classes/feeds.php:111
-#: classes/feeds.php:136
 #: classes/feeds.php:437
 #: js/FeedTree.js:128
 #: js/FeedTree.js:156
@@ -371,110 +363,115 @@ msgstr "Označit všechny kanály za přečtené"
 msgid "Mark as read"
 msgstr "Označit jako přečtené"
 
-#: index.php:201
-#: include/functions.php:1860
-#: include/functions.php:1972
+#: index.php:196
+#: include/functions.php:1810
+#: include/functions.php:1922
 msgid "All articles"
 msgstr "Všechny články"
 
-#: index.php:202
+#: index.php:197
 msgid "Older than one day"
-msgstr ""
+msgstr "Starší než jeden den"
 
-#: index.php:203
+#: index.php:198
 msgid "Older than one week"
-msgstr ""
+msgstr "Starší než jeden týden"
 
-#: index.php:204
+#: index.php:199
 msgid "Older than two weeks"
-msgstr ""
+msgstr "Starší než dva týdny"
+
+#: index.php:204
+#, fuzzy
+msgid "Refresh"
+msgstr "Nové"
 
-#: index.php:212
+#: index.php:211
 msgid "Communication problem with server."
 msgstr "Chyba při komunikaci se serverem."
 
-#: index.php:220
+#: index.php:219
 msgid "New version of Tiny Tiny RSS is available!"
 msgstr "Je dostupná nová verze Tiny Tiny RSS."
 
-#: index.php:225
+#: index.php:224
 msgid "Actions..."
 msgstr "Činnosti..."
 
-#: index.php:227
+#: index.php:226
 msgid "Preferences..."
 msgstr "Nastavení..."
 
-#: index.php:228
+#: index.php:227
 msgid "Search..."
 msgstr "Hledat..."
 
-#: index.php:229
+#: index.php:228
 msgid "Feed actions:"
 msgstr "Činnosti kanálů:"
 
-#: index.php:230
-#: classes/handler/public.php:555
+#: index.php:229
+#: classes/handler/public.php:556
 msgid "Subscribe to feed..."
 msgstr "Přihlásit se k odběru..."
 
-#: index.php:231
+#: index.php:230
 msgid "Edit this feed..."
 msgstr "Upravit kanál..."
 
-#: index.php:232
+#: index.php:231
 msgid "Rescore feed"
 msgstr "Přehodnotit kanál"
 
-#: index.php:233
-#: classes/pref/feeds.php:716
-#: classes/pref/feeds.php:1303
+#: index.php:232
+#: classes/pref/feeds.php:717
+#: classes/pref/feeds.php:1304
 #: js/PrefFeedTree.js:73
 msgid "Unsubscribe"
 msgstr "Zrušit odběr"
 
-#: index.php:234
+#: index.php:233
 msgid "All feeds:"
 msgstr "Všechny kanály:"
 
-#: index.php:236
+#: index.php:235
 msgid "(Un)hide read feeds"
 msgstr "Zobrazit/Skrýt přečtené kanály"
 
-#: index.php:237
+#: index.php:236
 msgid "Other actions:"
 msgstr "Ostatní činnosti:"
 
-#: index.php:239
+#: index.php:238
 msgid "Switch to digest..."
-msgstr "Přepnout na výběr..."
+msgstr "Přepnout na souhrn..."
 
-#: index.php:241
+#: index.php:240
 msgid "Show tag cloud..."
 msgstr "Zobrazit seznam značek..."
 
-#: index.php:242
-#: include/functions.php:1950
+#: index.php:241
+#: include/functions.php:1900
 msgid "Toggle widescreen mode"
 msgstr "Přepnout širokoúhlý režim"
 
-#: index.php:243
+#: index.php:242
 msgid "Select by tags..."
 msgstr "Vybrat podle značek..."
 
-#: index.php:244
+#: index.php:243
 msgid "Create label..."
 msgstr "Vytvořit štítek..."
 
-#: index.php:245
+#: index.php:244
 msgid "Create filter..."
 msgstr "Vytvořit filtr..."
 
-#: index.php:246
+#: index.php:245
 msgid "Keyboard shortcuts help"
 msgstr "Nápověda ke klávesovým zkratkám"
 
-#: index.php:248
+#: index.php:247
 #: plugins/digest/digest_body.php:77
 #: plugins/mobile/mobile-functions.php:62
 #: plugins/mobile/mobile-functions.php:237
@@ -482,41 +479,41 @@ msgid "Logout"
 msgstr "Odhlásit se"
 
 #: prefs.php:36
-#: prefs.php:122
-#: include/functions.php:1977
+#: prefs.php:121
+#: include/functions.php:1927
 #: classes/pref/prefs.php:377
 msgid "Preferences"
 msgstr "Nastavení"
 
-#: prefs.php:113
+#: prefs.php:112
 msgid "Keyboard shortcuts"
 msgstr "Klávesové zkratky"
 
-#: prefs.php:114
+#: prefs.php:113
 msgid "Exit preferences"
 msgstr "Opustit nastavení"
 
-#: prefs.php:125
-#: classes/pref/feeds.php:106
-#: classes/pref/feeds.php:1208
-#: classes/pref/feeds.php:1271
+#: prefs.php:124
+#: classes/pref/feeds.php:107
+#: classes/pref/feeds.php:1209
+#: classes/pref/feeds.php:1272
 msgid "Feeds"
 msgstr "Kanály"
 
-#: prefs.php:128
-#: classes/pref/filters.php:120
+#: prefs.php:127
+#: classes/pref/filters.php:156
 msgid "Filters"
 msgstr "Filtry"
 
-#: prefs.php:131
-#: include/functions.php:1167
-#: include/functions.php:1803
+#: prefs.php:130
+#: include/functions.php:1117
+#: include/functions.php:1753
 #: classes/pref/labels.php:90
 #: plugins/mobile/mobile-functions.php:198
 msgid "Labels"
 msgstr "Štítky"
 
-#: prefs.php:135
+#: prefs.php:134
 msgid "Users"
 msgstr "Uživatelé"
 
@@ -542,12 +539,12 @@ msgid "Check availability"
 msgstr "Ověřit dostupnost"
 
 #: register.php:228
-#: classes/handler/public.php:753
+#: classes/handler/public.php:754
 msgid "Email:"
 msgstr "E-mail:"
 
 #: register.php:231
-#: classes/handler/public.php:758
+#: classes/handler/public.php:759
 msgid "How much is two plus two:"
 msgstr "Kolik je dva plus dva:"
 
@@ -580,12 +577,12 @@ msgid "Tiny Tiny RSS data update script."
 msgstr "Skript aktualizace dat Tiny Tiny RSS."
 
 #: include/digest.php:109
-#: include/functions.php:1176
-#: include/functions.php:1704
-#: include/functions.php:1789
-#: include/functions.php:1811
+#: include/functions.php:1126
+#: include/functions.php:1654
+#: include/functions.php:1739
+#: include/functions.php:1761
 #: classes/opml.php:416
-#: classes/pref/feeds.php:221
+#: classes/pref/feeds.php:222
 msgid "Uncategorized"
 msgstr "Bez zařazení"
 
@@ -601,329 +598,326 @@ msgstr[2] "%d archivovaných článků"
 msgid "No feeds found."
 msgstr "Nenalezeny žádné kanály."
 
-#: include/functions.php:722
-msgid "Session failed to validate (incorrect IP)"
-msgstr "Nezdařilo se ověřit sezení (neplatné IP)"
-
-#: include/functions.php:1165
-#: include/functions.php:1801
+#: include/functions.php:1115
+#: include/functions.php:1751
 #: plugins/mobile/mobile-functions.php:171
 msgid "Special"
 msgstr "Speciální"
 
-#: include/functions.php:1653
-#: classes/dlg.php:369
-#: classes/pref/filters.php:382
+#: include/functions.php:1603
+#: classes/feeds.php:1097
+#: classes/pref/filters.php:427
 msgid "All feeds"
 msgstr "Všechny kanály"
 
-#: include/functions.php:1854
+#: include/functions.php:1804
 msgid "Starred articles"
 msgstr "Články s hvězdičkou"
 
-#: include/functions.php:1856
+#: include/functions.php:1806
 msgid "Published articles"
 msgstr "Publikované články"
 
-#: include/functions.php:1858
+#: include/functions.php:1808
 msgid "Fresh articles"
 msgstr "Nové články"
 
-#: include/functions.php:1862
+#: include/functions.php:1812
 msgid "Archived articles"
 msgstr "Archivované články"
 
-#: include/functions.php:1864
+#: include/functions.php:1814
 msgid "Recently read"
 msgstr "Nedávno přečtené"
 
-#: include/functions.php:1927
+#: include/functions.php:1877
 msgid "Navigation"
 msgstr "Navigace"
 
-#: include/functions.php:1928
+#: include/functions.php:1878
 msgid "Open next feed"
 msgstr "Otevřít následující kanál"
 
-#: include/functions.php:1929
+#: include/functions.php:1879
 msgid "Open previous feed"
 msgstr "Otevřít předchozí kanál"
 
-#: include/functions.php:1930
+#: include/functions.php:1880
 msgid "Open next article"
 msgstr "Otevřít následující článek"
 
-#: include/functions.php:1931
+#: include/functions.php:1881
 msgid "Open previous article"
 msgstr "Otevřít předchozí článek"
 
-#: include/functions.php:1932
+#: include/functions.php:1882
 msgid "Open next article (don't scroll long articles)"
 msgstr "Otevřít následující článek (neposouvat dlouhé články)"
 
-#: include/functions.php:1933
+#: include/functions.php:1883
 msgid "Open previous article (don't scroll long articles)"
 msgstr "Otevřít předchozí článek (neposouvat dlouhé články)"
 
-#: include/functions.php:1934
+#: include/functions.php:1884
 msgid "Show search dialog"
 msgstr "Zobrazit dialog hledání"
 
-#: include/functions.php:1935
+#: include/functions.php:1885
 msgid "Article"
 msgstr "Článek"
 
-#: include/functions.php:1936
+#: include/functions.php:1886
 msgid "Toggle starred"
 msgstr "Přepnout hvězdičku"
 
-#: include/functions.php:1937
-#: js/viewfeed.js:1920
+#: include/functions.php:1887
+#: js/viewfeed.js:1908
 msgid "Toggle published"
 msgstr "Přepnout publikováno"
 
-#: include/functions.php:1938
-#: js/viewfeed.js:1898
+#: include/functions.php:1888
+#: js/viewfeed.js:1886
 msgid "Toggle unread"
 msgstr "Přepnout přečteno"
 
-#: include/functions.php:1939
+#: include/functions.php:1889
 msgid "Edit tags"
 msgstr "Upravit značky"
 
-#: include/functions.php:1940
+#: include/functions.php:1890
 msgid "Dismiss selected"
 msgstr ""
 
-#: include/functions.php:1941
+#: include/functions.php:1891
 msgid "Dismiss read"
 msgstr ""
 
-#: include/functions.php:1942
+#: include/functions.php:1892
 msgid "Open in new window"
 msgstr "Otevřít v novém okně"
 
-#: include/functions.php:1943
-#: js/viewfeed.js:1939
+#: include/functions.php:1893
+#: js/viewfeed.js:1927
 msgid "Mark below as read"
 msgstr "Označit níže jako přečtené"
 
-#: include/functions.php:1944
-#: js/viewfeed.js:1933
+#: include/functions.php:1894
+#: js/viewfeed.js:1921
 msgid "Mark above as read"
 msgstr "Označit výše jako přečtené"
 
-#: include/functions.php:1945
+#: include/functions.php:1895
 msgid "Scroll down"
 msgstr "Posunout dolů"
 
-#: include/functions.php:1946
+#: include/functions.php:1896
 msgid "Scroll up"
 msgstr "Posunout nahoru"
 
-#: include/functions.php:1947
+#: include/functions.php:1897
 msgid "Select article under cursor"
 msgstr "Vybrat článek pod kurzorem"
 
-#: include/functions.php:1948
+#: include/functions.php:1898
 msgid "Email article"
-msgstr ""
+msgstr "Odeslat článek e-mailem"
 
-#: include/functions.php:1949
+#: include/functions.php:1899
 msgid "Close/collapse article"
 msgstr "Zavřít/sbalit článek"
 
-#: include/functions.php:1951
+#: include/functions.php:1901
 #: plugins/embed_original/init.php:33
 msgid "Toggle embed original"
 msgstr "Přepnout vložený originál"
 
-#: include/functions.php:1952
+#: include/functions.php:1902
 msgid "Article selection"
 msgstr "Výběr článků"
 
-#: include/functions.php:1953
+#: include/functions.php:1903
 msgid "Select all articles"
 msgstr "Vybrat všechny články"
 
-#: include/functions.php:1954
+#: include/functions.php:1904
 msgid "Select unread"
 msgstr "Vybrat nepřečtené"
 
-#: include/functions.php:1955
+#: include/functions.php:1905
 msgid "Select starred"
 msgstr "Vybrat s hvězdičkou"
 
-#: include/functions.php:1956
+#: include/functions.php:1906
 msgid "Select published"
 msgstr "Vybrat publikované"
 
-#: include/functions.php:1957
+#: include/functions.php:1907
 msgid "Invert selection"
 msgstr "Obrátit výběr"
 
-#: include/functions.php:1958
+#: include/functions.php:1908
 msgid "Deselect everything"
 msgstr "Zrušit výběr"
 
-#: include/functions.php:1959
-#: classes/pref/feeds.php:520
-#: classes/pref/feeds.php:753
+#: include/functions.php:1909
+#: classes/pref/feeds.php:521
+#: classes/pref/feeds.php:754
 msgid "Feed"
 msgstr "Kanál"
 
-#: include/functions.php:1960
+#: include/functions.php:1910
 msgid "Refresh current feed"
 msgstr "Obnovit současný kanál"
 
-#: include/functions.php:1961
+#: include/functions.php:1911
 msgid "Un/hide read feeds"
 msgstr "Zobrazit/Skrýt přečtené kanály"
 
-#: include/functions.php:1962
-#: classes/pref/feeds.php:1274
+#: include/functions.php:1912
+#: classes/pref/feeds.php:1275
 msgid "Subscribe to feed"
 msgstr "Přihlásit se k odběru"
 
-#: include/functions.php:1963
+#: include/functions.php:1913
 #: js/FeedTree.js:135
 #: js/PrefFeedTree.js:67
 msgid "Edit feed"
 msgstr "Upravit kanál"
 
-#: include/functions.php:1965
+#: include/functions.php:1915
 msgid "Reverse headlines"
 msgstr ""
 
-#: include/functions.php:1966
+#: include/functions.php:1916
 msgid "Debug feed update"
 msgstr "Ladit aktualizaci kanálů"
 
-#: include/functions.php:1967
+#: include/functions.php:1917
 #: js/FeedTree.js:178
 msgid "Mark all feeds as read"
 msgstr "Označit všechny kanály za přečtené"
 
-#: include/functions.php:1968
+#: include/functions.php:1918
 msgid "Un/collapse current category"
 msgstr "Rozbalit/sbalit aktuální kategorii"
 
-#: include/functions.php:1969
+#: include/functions.php:1919
 msgid "Toggle combined mode"
 msgstr "Přepnout kombinovaný režim"
 
-#: include/functions.php:1970
-#, fuzzy
+#: include/functions.php:1920
 msgid "Toggle auto expand in combined mode"
-msgstr "Přepnout kombinovaný režim"
+msgstr "Přepnout automatické rozbalení kombinovaném režimu"
 
-#: include/functions.php:1971
+#: include/functions.php:1921
 msgid "Go to"
 msgstr "Přejít na"
 
-#: include/functions.php:1973
+#: include/functions.php:1923
 msgid "Fresh"
 msgstr "Nové"
 
-#: include/functions.php:1976
+#: include/functions.php:1926
+#: js/tt-rss.js:431
+#: js/tt-rss.js:584
 msgid "Tag cloud"
 msgstr "Seznam značek"
 
-#: include/functions.php:1978
+#: include/functions.php:1928
 msgid "Other"
 msgstr "Ostatní"
 
-#: include/functions.php:1979
+#: include/functions.php:1929
 #: classes/pref/labels.php:281
 msgid "Create label"
 msgstr "Vytvořit štítek"
 
-#: include/functions.php:1980
-#: classes/pref/filters.php:606
+#: include/functions.php:1930
+#: classes/pref/filters.php:654
 msgid "Create filter"
 msgstr "Vytvořit filtr"
 
-#: include/functions.php:1981
+#: include/functions.php:1931
 msgid "Un/collapse sidebar"
 msgstr "Rozbalit/sbalit postranní lištu"
 
-#: include/functions.php:1982
+#: include/functions.php:1932
 msgid "Show help dialog"
 msgstr "Zobrazit nápovědu"
 
-#: include/functions.php:2467
+#: include/functions.php:2417
 #, php-format
 msgid "Search results: %s"
 msgstr "Výsledky hledání: %s"
 
-#: include/functions.php:2958
-#: js/viewfeed.js:2026
+#: include/functions.php:2908
+#: js/viewfeed.js:2014
 msgid "Click to play"
-msgstr ""
+msgstr "Klikněte pro přehrání"
 
-#: include/functions.php:2959
-#: js/viewfeed.js:2025
+#: include/functions.php:2909
+#: js/viewfeed.js:2013
 msgid "Play"
 msgstr "Přehrát"
 
-#: include/functions.php:3076
+#: include/functions.php:3026
 msgid " - "
 msgstr " - "
 
-#: include/functions.php:3098
-#: include/functions.php:3392
+#: include/functions.php:3048
+#: include/functions.php:3342
 #: classes/rpc.php:408
 msgid "no tags"
 msgstr "žádné značky"
 
-#: include/functions.php:3108
+#: include/functions.php:3058
 #: classes/feeds.php:682
 msgid "Edit tags for this article"
 msgstr "Upravit značky pro článek"
 
-#: include/functions.php:3137
+#: include/functions.php:3087
 #: classes/feeds.php:638
 msgid "Originally from:"
 msgstr "Původně z:"
 
-#: include/functions.php:3150
+#: include/functions.php:3100
 #: classes/feeds.php:651
-#: classes/pref/feeds.php:539
+#: classes/pref/feeds.php:540
 msgid "Feed URL"
 msgstr "URL kanálu"
 
-#: include/functions.php:3181
-#: classes/dlg.php:43
-#: classes/dlg.php:162
-#: classes/dlg.php:185
-#: classes/dlg.php:222
-#: classes/dlg.php:506
-#: classes/dlg.php:541
-#: classes/dlg.php:572
-#: classes/dlg.php:606
-#: classes/dlg.php:618
+#: include/functions.php:3131
+#: classes/dlg.php:37
+#: classes/dlg.php:60
+#: classes/dlg.php:93
+#: classes/dlg.php:159
+#: classes/dlg.php:190
+#: classes/dlg.php:217
+#: classes/dlg.php:250
+#: classes/dlg.php:262
 #: classes/backend.php:105
 #: classes/pref/users.php:106
-#: classes/pref/filters.php:111
-#: classes/pref/feeds.php:1587
-#: classes/pref/feeds.php:1659
+#: classes/pref/filters.php:147
+#: classes/pref/prefs.php:1012
+#: classes/pref/feeds.php:1588
+#: classes/pref/feeds.php:1660
 #: plugins/import_export/init.php:409
 #: plugins/import_export/init.php:432
-#: plugins/googlereaderimport/init.php:164
+#: plugins/googlereaderimport/init.php:168
 #: plugins/share/init.php:67
 #: plugins/updater/init.php:357
 msgid "Close this window"
 msgstr "Zavřít toto okno"
 
-#: include/functions.php:3417
+#: include/functions.php:3367
 msgid "(edit note)"
 msgstr "(upravit poznámku)"
 
-#: include/functions.php:3650
+#: include/functions.php:3600
 msgid "unknown type"
 msgstr "neznámý typ"
 
-#: include/functions.php:3706
+#: include/functions.php:3656
 msgid "Attachments"
 msgstr "Přílohy"
 
@@ -967,7 +961,7 @@ msgid "Assign tags"
 msgstr "Přiřadit značky"
 
 #: include/localized_schema.php:14
-#: js/viewfeed.js:1990
+#: js/viewfeed.js:1978
 msgid "Assign label"
 msgstr "Přiřadit štítek"
 
@@ -1001,7 +995,7 @@ msgstr ""
 
 #: include/localized_schema.php:24
 msgid "This option enables sending daily digest of new (and unread) headlines on your configured e-mail address"
-msgstr ""
+msgstr "Umožňuje odesílání denních souhrnů nových (a nepřečtených) článků na vaší nastavenou e-mailovou adresu"
 
 #: include/localized_schema.php:25
 msgid "This option enables marking articles as read automatically while you scroll article list."
@@ -1037,7 +1031,7 @@ msgstr "Používá časovou zónu UTC"
 
 #: include/localized_schema.php:33
 msgid "Select one of the available CSS themes"
-msgstr ""
+msgstr "Vybrat jeden z dostupných motivů CSS"
 
 #: include/localized_schema.php:34
 msgid "Purge articles after this number of days (0 - disables)"
@@ -1076,9 +1070,8 @@ msgid "Combined feed display"
 msgstr ""
 
 #: include/localized_schema.php:43
-#, fuzzy
 msgid "Hide feeds with no unread articles"
-msgstr "Skrýt kanály bez nepřečtených správ"
+msgstr "Skrýt kanály bez nepřečtených článků"
 
 #: include/localized_schema.php:44
 msgid "On catchup show next feed"
@@ -1095,31 +1088,31 @@ msgstr "Obrácené řazení nadpisů (nejstarší jako první)"
 
 #: include/localized_schema.php:47
 msgid "Enable e-mail digest"
-msgstr ""
+msgstr "Povolit e-mailový souhrn"
 
 #: include/localized_schema.php:48
 msgid "Confirm marking feed as read"
-msgstr ""
+msgstr "Potvrdit označení kanálu jako přečteného"
 
 #: include/localized_schema.php:49
 msgid "Automatically mark articles as read"
-msgstr ""
+msgstr "Automaticky označit články jako přečtené"
 
 #: include/localized_schema.php:50
 msgid "Strip unsafe tags from articles"
-msgstr ""
+msgstr "Odebrat nebezpečné značky z článků"
 
 #: include/localized_schema.php:51
 msgid "Blacklisted tags"
-msgstr ""
+msgstr "Zakázané značky"
 
 #: include/localized_schema.php:52
 msgid "Maximum age of fresh articles (in hours)"
-msgstr ""
+msgstr "Maximální stáří nových článků (v hodinách)"
 
 #: include/localized_schema.php:53
 msgid "Mark articles in e-mail digest as read"
-msgstr ""
+msgstr "Označit články v e-mailovém souhrnu jako přečtené"
 
 #: include/localized_schema.php:54
 msgid "Automatically expand articles in combined mode"
@@ -1139,7 +1132,7 @@ msgstr ""
 
 #: include/localized_schema.php:58
 msgid "Do not embed images in articles"
-msgstr ""
+msgstr "Nevkládat obrázky do článků"
 
 #: include/localized_schema.php:59
 msgid "Enable external API"
@@ -1150,9 +1143,9 @@ msgid "User timezone"
 msgstr "Časová zóna uživatele"
 
 #: include/localized_schema.php:61
-#: js/prefs.js:1719
+#: js/prefs.js:1725
 msgid "Customize stylesheet"
-msgstr ""
+msgstr "Upravit soubor motivu"
 
 #: include/localized_schema.php:62
 msgid "Sort headlines by feed date"
@@ -1160,30 +1153,29 @@ msgstr ""
 
 #: include/localized_schema.php:63
 msgid "Login with an SSL certificate"
-msgstr ""
+msgstr "Přihlásit s certifikátem SSL"
 
 #: include/localized_schema.php:64
 msgid "Try to send digests around specified time"
-msgstr ""
+msgstr "Pokusit se odeslat souhrn v zadaný čas"
 
 #: include/localized_schema.php:65
 msgid "Assign articles to labels automatically"
 msgstr ""
 
 #: include/localized_schema.php:66
-#, fuzzy
 msgid "Select theme"
-msgstr "Vybrat s hvězdičkou"
+msgstr "Zvolit motiv"
 
 #: include/login_form.php:183
-#: classes/handler/public.php:460
-#: classes/handler/public.php:748
+#: classes/handler/public.php:461
+#: classes/handler/public.php:749
 #: plugins/mobile/login_form.php:40
 msgid "Login:"
 msgstr "Přihlášení:"
 
 #: include/login_form.php:192
-#: classes/handler/public.php:463
+#: classes/handler/public.php:464
 #: plugins/mobile/login_form.php:45
 msgid "Password:"
 msgstr "Heslo:"
@@ -1193,7 +1185,7 @@ msgid "I forgot my password"
 msgstr "Zapomněl jsem heslo"
 
 #: include/login_form.php:201
-#: classes/handler/public.php:466
+#: classes/handler/public.php:467
 msgid "Language:"
 msgstr "Jazyk:"
 
@@ -1202,9 +1194,9 @@ msgid "Profile:"
 msgstr "Profil:"
 
 #: include/login_form.php:213
-#: classes/handler/public.php:210
+#: classes/handler/public.php:211
 #: classes/rpc.php:64
-#: classes/dlg.php:98
+#: classes/pref/prefs.php:948
 msgid "Default profile"
 msgstr "Výchozí profil"
 
@@ -1214,477 +1206,246 @@ msgstr "Generovat méně síťového provozu"
 
 #: include/login_form.php:229
 msgid "Remember me"
-msgstr ""
+msgstr "Zapamatovat"
 
 #: include/login_form.php:235
-#: classes/handler/public.php:476
+#: classes/handler/public.php:477
 #: plugins/mobile/login_form.php:28
 msgid "Log in"
 msgstr "Přihlásit"
 
+#: include/sessions.php:53
+msgid "Session failed to validate (incorrect IP)"
+msgstr "Nezdařilo se ověřit sezení (neplatné IP)"
+
 #: classes/article.php:25
 msgid "Article not found."
-msgstr ""
+msgstr "Článek nenalezen"
+
+#: classes/article.php:179
+msgid "Tags for this article (separated by commas):"
+msgstr "Značky článku (oddělené čárkami):"
+
+#: classes/article.php:204
+#: classes/pref/users.php:192
+#: classes/pref/labels.php:79
+#: classes/pref/filters.php:405
+#: classes/pref/prefs.php:894
+#: classes/pref/feeds.php:733
+#: classes/pref/feeds.php:881
+#: plugins/nsfw/init.php:86
+#: plugins/note/init.php:53
+#: plugins/instances/init.php:248
+msgid "Save"
+msgstr "Uložit"
+
+#: classes/article.php:206
+#: classes/handler/public.php:438
+#: classes/handler/public.php:480
+#: classes/feeds.php:1024
+#: classes/feeds.php:1076
+#: classes/feeds.php:1136
+#: classes/pref/users.php:194
+#: classes/pref/labels.php:81
+#: classes/pref/filters.php:408
+#: classes/pref/filters.php:804
+#: classes/pref/filters.php:880
+#: classes/pref/filters.php:947
+#: classes/pref/prefs.php:896
+#: classes/pref/feeds.php:734
+#: classes/pref/feeds.php:884
+#: classes/pref/feeds.php:1797
+#: plugins/mail/init.php:131
+#: plugins/note/init.php:55
+#: plugins/instances/init.php:251
+#: plugins/instances/init.php:440
+msgid "Cancel"
+msgstr "Zrušit"
 
-#: classes/handler/public.php:401
+#: classes/handler/public.php:402
 #: plugins/bookmarklets/init.php:38
 msgid "Share with Tiny Tiny RSS"
-msgstr ""
+msgstr "Sdílet s Tiny Tiny RSS"
 
-#: classes/handler/public.php:409
+#: classes/handler/public.php:410
 msgid "Title:"
 msgstr "Název:"
 
-#: classes/handler/public.php:411
-#: classes/dlg.php:663
-#: classes/pref/feeds.php:537
-#: classes/pref/feeds.php:768
+#: classes/handler/public.php:412
+#: classes/pref/feeds.php:538
+#: classes/pref/feeds.php:769
 #: plugins/instances/init.php:215
+#: plugins/instances/init.php:405
 msgid "URL:"
 msgstr "URL:"
 
-#: classes/handler/public.php:413
+#: classes/handler/public.php:414
 msgid "Content:"
 msgstr "Obsah:"
 
-#: classes/handler/public.php:415
+#: classes/handler/public.php:416
 msgid "Labels:"
 msgstr "Štítky:"
 
-#: classes/handler/public.php:434
+#: classes/handler/public.php:435
 msgid "Shared article will appear in the Published feed."
-msgstr ""
+msgstr "Sdílený článek se objeví v kanálu \"Publikováno\"."
 
-#: classes/handler/public.php:436
+#: classes/handler/public.php:437
 msgid "Share"
 msgstr "Sdílet"
 
-#: classes/handler/public.php:437
-#: classes/handler/public.php:479
-#: classes/dlg.php:296
-#: classes/dlg.php:348
-#: classes/dlg.php:408
-#: classes/dlg.php:439
-#: classes/dlg.php:648
-#: classes/dlg.php:698
-#: classes/dlg.php:747
-#: classes/pref/users.php:194
-#: classes/pref/labels.php:81
-#: classes/pref/filters.php:363
-#: classes/pref/filters.php:746
-#: classes/pref/filters.php:822
-#: classes/pref/filters.php:889
-#: classes/pref/feeds.php:733
-#: classes/pref/feeds.php:883
-#: plugins/mail/init.php:131
-#: plugins/note/init.php:55
-#: plugins/instances/init.php:251
-msgid "Cancel"
-msgstr "Zrušit"
-
-#: classes/handler/public.php:458
+#: classes/handler/public.php:459
 msgid "Not logged in"
 msgstr "Nepřihlášený"
 
-#: classes/handler/public.php:525
+#: classes/handler/public.php:526
 msgid "Incorrect username or password"
 msgstr "Neplatné uživatelské jméno nebo heslo"
 
-#: classes/handler/public.php:561
-#: classes/handler/public.php:658
+#: classes/handler/public.php:562
+#: classes/handler/public.php:659
 #, php-format
 msgid "Already subscribed to <b>%s</b>."
 msgstr "Již odebíráte <b>%s</b>."
 
-#: classes/handler/public.php:564
-#: classes/handler/public.php:649
+#: classes/handler/public.php:565
+#: classes/handler/public.php:650
 #, php-format
 msgid "Subscribed to <b>%s</b>."
 msgstr "Zahájen odběr <b>%s</b>."
 
-#: classes/handler/public.php:567
-#: classes/handler/public.php:652
+#: classes/handler/public.php:568
+#: classes/handler/public.php:653
 #, php-format
 msgid "Could not subscribe to <b>%s</b>."
 msgstr "Nelze zahájit odběr <b>%s</b>."
 
-#: classes/handler/public.php:570
-#: classes/handler/public.php:655
+#: classes/handler/public.php:571
+#: classes/handler/public.php:656
 #, php-format
 msgid "No feeds found in <b>%s</b>."
-msgstr ""
+msgstr "Nenalezeny žádné kanály v <b>%s</b>."
 
-#: classes/handler/public.php:573
-#: classes/handler/public.php:661
+#: classes/handler/public.php:574
+#: classes/handler/public.php:662
 msgid "Multiple feed URLs found."
-msgstr ""
+msgstr "Nalezeno více URL kanálů."
 
-#: classes/handler/public.php:577
-#: classes/handler/public.php:666
+#: classes/handler/public.php:578
+#: classes/handler/public.php:667
 #, php-format
 msgid "Could not subscribe to <b>%s</b>.<br>Can't download the Feed URL."
 msgstr "Nelze zahájit odběr <b>%s</b>.<br>Nelze stáhnout URL kanálu."
 
-#: classes/handler/public.php:595
-#: classes/handler/public.php:684
+#: classes/handler/public.php:596
+#: classes/handler/public.php:685
 msgid "Subscribe to selected feed"
 msgstr "Zahájit odběr vybraných kanálů"
 
-#: classes/handler/public.php:620
-#: classes/handler/public.php:708
+#: classes/handler/public.php:621
+#: classes/handler/public.php:709
 msgid "Edit subscription options"
-msgstr ""
+msgstr "Upravit možnosti odebírání"
 
-#: classes/handler/public.php:735
-#, fuzzy
+#: classes/handler/public.php:736
 msgid "Password recovery"
-msgstr "Heslo"
+msgstr "Obnova hesla"
 
-#: classes/handler/public.php:741
+#: classes/handler/public.php:742
 msgid "You will need to provide valid account name and email. New password will be sent on your email address."
-msgstr ""
+msgstr "Musíte zadat platný název účtu a e-mailovou adresu. Nové heslo bude zasláno na vaši e-mailovou adresu."
 
-#: classes/handler/public.php:763
+#: classes/handler/public.php:764
 #: classes/pref/users.php:378
 msgid "Reset password"
 msgstr "Obnovit heslo"
 
-#: classes/handler/public.php:773
+#: classes/handler/public.php:774
 msgid "Some of the required form parameters are missing or incorrect."
-msgstr ""
+msgstr "Některý z požadovaných parametrů chybí nebo je neplatný."
 
-#: classes/handler/public.php:777
-#: classes/handler/public.php:803
+#: classes/handler/public.php:778
+#: classes/handler/public.php:804
 #: plugins/digest/digest_body.php:69
 msgid "Go back"
-msgstr ""
+msgstr "Jít zpět"
 
-#: classes/handler/public.php:799
+#: classes/handler/public.php:800
 msgid "Sorry, login and email combination not found."
-msgstr ""
+msgstr "Lituji, kombinace e-mailové adresy a přihlašovacího jména nenalezena."
 
-#: classes/dlg.php:22
+#: classes/dlg.php:16
 msgid "If you have imported labels and/or filters, you might need to reload preferences to see your new data."
 msgstr ""
 
-#: classes/dlg.php:55
-#: classes/pref/users.php:360
-#: classes/pref/labels.php:272
-#: classes/pref/filters.php:234
-#: classes/pref/filters.php:282
-#: classes/pref/filters.php:597
-#: classes/pref/filters.php:676
-#: classes/pref/filters.php:703
-#: classes/pref/feeds.php:1262
-#: classes/pref/feeds.php:1532
-#: classes/pref/feeds.php:1602
-#: plugins/instances/init.php:287
-msgid "Select"
-msgstr "Vybrat"
-
-#: classes/dlg.php:58
-#: classes/feeds.php:92
-#: classes/pref/users.php:363
-#: classes/pref/labels.php:275
-#: classes/pref/filters.php:237
-#: classes/pref/filters.php:285
-#: classes/pref/filters.php:600
-#: classes/pref/filters.php:679
-#: classes/pref/filters.php:706
-#: classes/pref/feeds.php:1265
-#: classes/pref/feeds.php:1535
-#: classes/pref/feeds.php:1605
-#: plugins/instances/init.php:290
-msgid "All"
-msgstr "Vše"
-
-#: classes/dlg.php:60
-#: classes/feeds.php:95
-#: classes/pref/users.php:365
-#: classes/pref/labels.php:277
-#: classes/pref/filters.php:239
-#: classes/pref/filters.php:287
-#: classes/pref/filters.php:602
-#: classes/pref/filters.php:681
-#: classes/pref/filters.php:708
-#: classes/pref/feeds.php:1267
-#: classes/pref/feeds.php:1537
-#: classes/pref/feeds.php:1607
-#: plugins/instances/init.php:292
-msgid "None"
-msgstr "Žádný"
-
-#: classes/dlg.php:69
-msgid "Create profile"
-msgstr "Vytvořit profil"
-
-#: classes/dlg.php:92
-#: classes/dlg.php:122
-msgid "(active)"
-msgstr "(aktivní)"
-
-#: classes/dlg.php:156
-msgid "Remove selected profiles"
-msgstr "Odstranit vybrané profily"
-
-#: classes/dlg.php:158
-msgid "Activate profile"
-msgstr "Aktivovat profil"
-
-#: classes/dlg.php:168
-msgid "Public OPML URL"
-msgstr ""
-
-#: classes/dlg.php:173
+#: classes/dlg.php:48
 msgid "Your Public OPML URL is:"
 msgstr ""
 
-#: classes/dlg.php:182
-#: classes/dlg.php:569
+#: classes/dlg.php:57
+#: classes/dlg.php:214
 msgid "Generate new URL"
-msgstr ""
-
-#: classes/dlg.php:194
-msgid "Notice"
-msgstr "Poznámka"
+msgstr "Generovat novou URL"
 
-#: classes/dlg.php:200
+#: classes/dlg.php:71
 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 ""
 
-#: classes/dlg.php:204
-#: classes/dlg.php:213
+#: classes/dlg.php:75
+#: classes/dlg.php:84
 msgid "Last update:"
 msgstr "Poslední aktualizace:"
 
-#: classes/dlg.php:209
+#: classes/dlg.php:80
 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 ""
 
-#: classes/dlg.php:234
-#: classes/dlg.php:242
-msgid "Feed or site URL"
-msgstr ""
-
-#: classes/dlg.php:248
-#: classes/dlg.php:711
-#: classes/pref/feeds.php:559
-#: classes/pref/feeds.php:781
-msgid "Place in category:"
-msgstr ""
-
-#: classes/dlg.php:256
-msgid "Available feeds"
-msgstr "Dostupné kanály"
-
-#: classes/dlg.php:268
-#: classes/pref/users.php:155
-#: classes/pref/feeds.php:589
-#: classes/pref/feeds.php:817
-msgid "Authentication"
-msgstr "Ověření"
-
-#: classes/dlg.php:272
-#: classes/dlg.php:725
-#: classes/pref/users.php:420
-#: classes/pref/feeds.php:595
-#: classes/pref/feeds.php:821
-msgid "Login"
-msgstr "Přihlášení"
-
-#: classes/dlg.php:275
-#: classes/dlg.php:728
-#: classes/pref/prefs.php:202
-#: classes/pref/feeds.php:601
-#: classes/pref/feeds.php:827
-msgid "Password"
-msgstr "Heslo"
-
-#: classes/dlg.php:285
-msgid "This feed requires authentication."
-msgstr "Tento kanál vyžaduje ověření."
-
-#: classes/dlg.php:290
-#: classes/dlg.php:346
-#: classes/dlg.php:746
-msgid "Subscribe"
-msgstr "Odebírat"
-
-#: classes/dlg.php:293
-msgid "More feeds"
-msgstr "Více kanálů"
-
-#: classes/dlg.php:316
-#: classes/dlg.php:407
-#: classes/pref/users.php:350
-#: classes/pref/filters.php:593
-#: classes/pref/feeds.php:1258
-#: js/tt-rss.js:170
-msgid "Search"
-msgstr "Hledat"
-
-#: classes/dlg.php:320
-msgid "Popular feeds"
-msgstr "Oblíbené kanály"
-
-#: classes/dlg.php:321
-msgid "Feed archive"
-msgstr "Archív kanálů"
-
-#: classes/dlg.php:324
-msgid "limit:"
-msgstr "omezení:"
-
-#: classes/dlg.php:347
-#: classes/pref/users.php:376
-#: classes/pref/labels.php:284
-#: classes/pref/filters.php:353
-#: classes/pref/filters.php:615
-#: classes/pref/feeds.php:706
-#: plugins/instances/init.php:297
-msgid "Remove"
-msgstr "Odstranit"
-
-#: classes/dlg.php:358
-msgid "Look for"
-msgstr "Hledat"
-
-#: classes/dlg.php:366
-msgid "Limit search to:"
-msgstr "Omezit hledání na:"
-
-#: classes/dlg.php:382
-msgid "This feed"
-msgstr "Tento kanál"
-
-#: classes/dlg.php:414
-msgid "Tags for this article (separated by commas):"
-msgstr ""
-
-#: classes/dlg.php:437
-#: classes/dlg.php:646
-#: classes/pref/users.php:192
-#: classes/pref/labels.php:79
-#: classes/pref/filters.php:360
-#: classes/pref/feeds.php:732
-#: classes/pref/feeds.php:880
-#: plugins/nsfw/init.php:86
-#: plugins/note/init.php:53
-#: plugins/instances/init.php:248
-msgid "Save"
-msgstr "Uložit"
-
-#: classes/dlg.php:445
-msgid "Tag Cloud"
-msgstr ""
-
-#: classes/dlg.php:514
-msgid "Select item(s) by tags"
-msgstr "Vybrat položky podle značek"
-
-#: classes/dlg.php:517
+#: classes/dlg.php:166
 msgid "Match:"
 msgstr "Odpovídá:"
 
-#: classes/dlg.php:519
+#: classes/dlg.php:168
 msgid "Any"
 msgstr "Cokoliv"
 
-#: classes/dlg.php:522
+#: classes/dlg.php:171
 msgid "All tags."
 msgstr "Všechny značky."
 
-#: classes/dlg.php:524
+#: classes/dlg.php:173
 msgid "Which Tags?"
-msgstr ""
+msgstr "Jaké značky?"
 
-#: classes/dlg.php:537
+#: classes/dlg.php:186
 msgid "Display entries"
 msgstr ""
 
-#: classes/dlg.php:549
-#: classes/feeds.php:138
-msgid "View as RSS"
-msgstr "Zobrazit jako RSS"
-
-#: classes/dlg.php:560
+#: classes/dlg.php:205
 msgid "You can view this feed as RSS using the following URL:"
 msgstr ""
 
-#: classes/dlg.php:589
+#: classes/dlg.php:233
 #: plugins/updater/init.php:327
 #, php-format
 msgid "New version of Tiny Tiny RSS is available (%s)."
 msgstr "Je dostupná nová verze Tiny Tiny RSS (%s)."
 
-#: classes/dlg.php:597
+#: classes/dlg.php:241
 msgid "You can update using built-in updater in the Preferences or by using update.php"
-msgstr ""
-
-#: classes/dlg.php:601
-#: plugins/updater/init.php:331
-msgid "See the release notes"
-msgstr ""
-
-#: classes/dlg.php:603
-msgid "Download"
-msgstr "Stáhnout"
-
-#: classes/dlg.php:611
-msgid "Error receiving version information or no new version available."
-msgstr ""
-
-#: classes/dlg.php:631
-#, 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 ""
-
-#: classes/dlg.php:657
-#: plugins/instances/init.php:207
-msgid "Instance"
-msgstr "Instance"
-
-#: classes/dlg.php:666
-#: plugins/instances/init.php:218
-#: plugins/instances/init.php:315
-msgid "Instance URL"
-msgstr "URL instance"
-
-#: classes/dlg.php:676
-#: plugins/instances/init.php:229
-msgid "Access key:"
-msgstr "Přístupový klíč:"
-
-#: classes/dlg.php:679
-#: plugins/instances/init.php:232
-#: plugins/instances/init.php:316
-msgid "Access key"
-msgstr "Přístupový klíč"
-
-#: classes/dlg.php:683
-#: plugins/instances/init.php:236
-msgid "Use one access key for both linked instances."
-msgstr ""
-
-#: classes/dlg.php:691
-#: plugins/instances/init.php:244
-msgid "Generate new key"
-msgstr "Generovat nový klíč"
-
-#: classes/dlg.php:695
-msgid "Create link"
-msgstr "Vytvořit odkaz"
+msgstr ""
 
-#: classes/dlg.php:708
-msgid "Add one valid RSS feed per line (no feed detection is done)"
+#: classes/dlg.php:245
+#: plugins/updater/init.php:331
+msgid "See the release notes"
 msgstr ""
 
-#: classes/dlg.php:717
-msgid "Feeds to subscribe, One per line"
-msgstr "Kanály k odebírání. Jeden na řádku"
+#: classes/dlg.php:247
+msgid "Download"
+msgstr "Stáhnout"
 
-#: classes/dlg.php:739
-msgid "Feeds require authentication."
+#: classes/dlg.php:255
+msgid "Error receiving version information or no new version available."
 msgstr ""
 
 #: classes/feeds.php:68
@@ -1695,14 +1456,52 @@ msgstr ""
 msgid "View as RSS feed"
 msgstr "Zobrazit jako kanál RSS"
 
+#: classes/feeds.php:84
+#: classes/feeds.php:138
+#: classes/pref/feeds.php:1440
+msgid "View as RSS"
+msgstr "Zobrazit jako RSS"
+
 #: classes/feeds.php:91
 msgid "Select:"
 msgstr "Vybrat:"
 
+#: classes/feeds.php:92
+#: classes/pref/users.php:363
+#: classes/pref/labels.php:275
+#: classes/pref/filters.php:282
+#: classes/pref/filters.php:330
+#: classes/pref/filters.php:648
+#: classes/pref/filters.php:737
+#: classes/pref/filters.php:764
+#: classes/pref/prefs.php:908
+#: classes/pref/feeds.php:1266
+#: classes/pref/feeds.php:1536
+#: classes/pref/feeds.php:1606
+#: plugins/instances/init.php:290
+msgid "All"
+msgstr "Vše"
+
 #: classes/feeds.php:94
 msgid "Invert"
 msgstr "Invertovat"
 
+#: classes/feeds.php:95
+#: classes/pref/users.php:365
+#: classes/pref/labels.php:277
+#: classes/pref/filters.php:284
+#: classes/pref/filters.php:332
+#: classes/pref/filters.php:650
+#: classes/pref/filters.php:739
+#: classes/pref/filters.php:766
+#: classes/pref/prefs.php:910
+#: classes/pref/feeds.php:1268
+#: classes/pref/feeds.php:1538
+#: classes/pref/feeds.php:1608
+#: plugins/instances/init.php:292
+msgid "None"
+msgstr "Žádný"
+
 #: classes/feeds.php:101
 msgid "More..."
 msgstr "Více..."
@@ -1728,10 +1527,10 @@ msgid "Move back"
 msgstr ""
 
 #: classes/feeds.php:118
-#: classes/pref/filters.php:246
-#: classes/pref/filters.php:294
-#: classes/pref/filters.php:688
-#: classes/pref/filters.php:715
+#: classes/pref/filters.php:291
+#: classes/pref/filters.php:339
+#: classes/pref/filters.php:746
+#: classes/pref/filters.php:773
 msgid "Delete"
 msgstr "Smazat"
 
@@ -1752,9 +1551,9 @@ msgid "Feed not found."
 msgstr "Kanál nenalezen."
 
 #: classes/feeds.php:384
-#, fuzzy, php-format
+#, php-format
 msgid "Imported at %s"
-msgstr "Importovat"
+msgstr ""
 
 #: classes/feeds.php:531
 msgid "mark as read"
@@ -1785,20 +1584,116 @@ msgid "No articles found to display."
 msgstr "Nenalezeny žádné články ke zobrazení."
 
 #: classes/feeds.php:755
-#: classes/feeds.php:920
+#: classes/feeds.php:919
 #, php-format
 msgid "Feeds last updated at %s"
 msgstr "Kanál naposledy aktualizován v %s"
 
 #: classes/feeds.php:765
-#: classes/feeds.php:930
+#: classes/feeds.php:929
 msgid "Some feeds have update errors (click for details)"
 msgstr "Některé kanály měly problémy při aktualizaci (klikněte pro podrobnosti)"
 
-#: classes/feeds.php:910
+#: classes/feeds.php:909
 msgid "No feed selected."
 msgstr "Není vybrán žádný kanál."
 
+#: classes/feeds.php:962
+#: classes/feeds.php:970
+msgid "Feed or site URL"
+msgstr ""
+
+#: classes/feeds.php:976
+#: classes/pref/feeds.php:560
+#: classes/pref/feeds.php:782
+#: classes/pref/feeds.php:1761
+msgid "Place in category:"
+msgstr ""
+
+#: classes/feeds.php:984
+msgid "Available feeds"
+msgstr "Dostupné kanály"
+
+#: classes/feeds.php:996
+#: classes/pref/users.php:155
+#: classes/pref/feeds.php:590
+#: classes/pref/feeds.php:818
+msgid "Authentication"
+msgstr "Ověření"
+
+#: classes/feeds.php:1000
+#: classes/pref/users.php:420
+#: classes/pref/feeds.php:596
+#: classes/pref/feeds.php:822
+#: classes/pref/feeds.php:1775
+msgid "Login"
+msgstr "Přihlášení"
+
+#: classes/feeds.php:1003
+#: classes/pref/prefs.php:202
+#: classes/pref/feeds.php:602
+#: classes/pref/feeds.php:828
+#: classes/pref/feeds.php:1778
+msgid "Password"
+msgstr "Heslo"
+
+#: classes/feeds.php:1013
+msgid "This feed requires authentication."
+msgstr "Tento kanál vyžaduje ověření."
+
+#: classes/feeds.php:1018
+#: classes/feeds.php:1074
+#: classes/pref/feeds.php:1796
+msgid "Subscribe"
+msgstr "Odebírat"
+
+#: classes/feeds.php:1021
+msgid "More feeds"
+msgstr "Více kanálů"
+
+#: classes/feeds.php:1044
+#: classes/feeds.php:1135
+#: classes/pref/users.php:350
+#: classes/pref/filters.php:641
+#: classes/pref/feeds.php:1259
+#: js/tt-rss.js:170
+msgid "Search"
+msgstr "Hledat"
+
+#: classes/feeds.php:1048
+msgid "Popular feeds"
+msgstr "Oblíbené kanály"
+
+#: classes/feeds.php:1049
+msgid "Feed archive"
+msgstr "Archív kanálů"
+
+#: classes/feeds.php:1052
+msgid "limit:"
+msgstr "omezení:"
+
+#: classes/feeds.php:1075
+#: classes/pref/users.php:376
+#: classes/pref/labels.php:284
+#: classes/pref/filters.php:398
+#: classes/pref/filters.php:667
+#: classes/pref/feeds.php:707
+#: plugins/instances/init.php:297
+msgid "Remove"
+msgstr "Odstranit"
+
+#: classes/feeds.php:1086
+msgid "Look for"
+msgstr "Hledat"
+
+#: classes/feeds.php:1094
+msgid "Limit search to:"
+msgstr "Omezit hledání na:"
+
+#: classes/feeds.php:1110
+msgid "This feed"
+msgstr "Tento kanál"
+
 #: classes/backend.php:33
 msgid "Other interface tips are available in the Tiny Tiny RSS wiki."
 msgstr ""
@@ -1871,7 +1766,7 @@ msgid "Error: please upload OPML file."
 msgstr ""
 
 #: classes/opml.php:475
-#: plugins/googlereaderimport/init.php:157
+#: plugins/googlereaderimport/init.php:161
 msgid "Error while parsing document."
 msgstr ""
 
@@ -1918,8 +1813,8 @@ msgid "Change password to"
 msgstr "Změnit heslo na"
 
 #: classes/pref/users.php:177
-#: classes/pref/feeds.php:609
-#: classes/pref/feeds.php:833
+#: classes/pref/feeds.php:610
+#: classes/pref/feeds.php:834
 msgid "Options"
 msgstr "Možnosti"
 
@@ -1956,6 +1851,21 @@ msgstr "Zasílám nové heslo uživatele <b>%s</b> na <b>%s</b>"
 msgid "[tt-rss] Password change notification"
 msgstr "[tt-rss] Oznámení o změně hesla"
 
+#: classes/pref/users.php:360
+#: classes/pref/labels.php:272
+#: classes/pref/filters.php:279
+#: classes/pref/filters.php:327
+#: classes/pref/filters.php:645
+#: classes/pref/filters.php:734
+#: classes/pref/filters.php:761
+#: classes/pref/prefs.php:905
+#: classes/pref/feeds.php:1263
+#: classes/pref/feeds.php:1533
+#: classes/pref/feeds.php:1603
+#: plugins/instances/init.php:287
+msgid "Select"
+msgstr "Vybrat"
+
 #: classes/pref/users.php:368
 msgid "Create user"
 msgstr "Vytvořit uživatele"
@@ -1965,7 +1875,7 @@ msgid "Details"
 msgstr "Podrobnosti"
 
 #: classes/pref/users.php:374
-#: classes/pref/filters.php:612
+#: classes/pref/filters.php:660
 #: plugins/instances/init.php:296
 msgid "Edit"
 msgstr "Upravit"
@@ -1992,6 +1902,8 @@ msgid "No matching users found."
 msgstr "Nebyl nalezen žádný odpovídající uživatel."
 
 #: classes/pref/labels.php:22
+#: classes/pref/filters.php:268
+#: classes/pref/filters.php:725
 msgid "Caption"
 msgstr "Titulek"
 
@@ -2016,120 +1928,129 @@ msgstr "Vytvořen štítek <b>%s</b>"
 msgid "Clear colors"
 msgstr "Vymazat barvy"
 
-#: classes/pref/filters.php:60
+#: classes/pref/filters.php:96
 msgid "Articles matching this filter:"
 msgstr ""
 
-#: classes/pref/filters.php:97
+#: classes/pref/filters.php:133
 msgid "No recent articles matching this filter have been found."
 msgstr ""
 
-#: classes/pref/filters.php:101
+#: classes/pref/filters.php:137
 msgid "Complex expressions might not give results while testing due to issues with database server regexp implementation."
 msgstr ""
 
-#: classes/pref/filters.php:229
-#: classes/pref/filters.php:671
-#: classes/pref/filters.php:786
+#: classes/pref/filters.php:274
+#: classes/pref/filters.php:729
+#: classes/pref/filters.php:844
 msgid "Match"
 msgstr "Odpovídá"
 
-#: classes/pref/filters.php:243
-#: classes/pref/filters.php:291
-#: classes/pref/filters.php:685
-#: classes/pref/filters.php:712
+#: classes/pref/filters.php:288
+#: classes/pref/filters.php:336
+#: classes/pref/filters.php:743
+#: classes/pref/filters.php:770
 msgid "Add"
 msgstr "Přidat"
 
-#: classes/pref/filters.php:277
-#: classes/pref/filters.php:698
+#: classes/pref/filters.php:322
+#: classes/pref/filters.php:756
 msgid "Apply actions"
 msgstr ""
 
-#: classes/pref/filters.php:327
-#: classes/pref/filters.php:727
+#: classes/pref/filters.php:372
+#: classes/pref/filters.php:785
 msgid "Enabled"
 msgstr "Povoleno"
 
-#: classes/pref/filters.php:336
-#: classes/pref/filters.php:730
+#: classes/pref/filters.php:381
+#: classes/pref/filters.php:788
 msgid "Match any rule"
 msgstr "Odpovídá kterémukoliv pravidlu"
 
-#: classes/pref/filters.php:345
-#: classes/pref/filters.php:733
-#, fuzzy
+#: classes/pref/filters.php:390
+#: classes/pref/filters.php:791
 msgid "Inverse matching"
-msgstr "Obrátit výběr"
+msgstr ""
 
-#: classes/pref/filters.php:357
-#: classes/pref/filters.php:740
+#: classes/pref/filters.php:402
+#: classes/pref/filters.php:798
 msgid "Test"
 msgstr "Test"
 
-#: classes/pref/filters.php:390
-#, fuzzy
+#: classes/pref/filters.php:435
 msgid "(inverse)"
-msgstr "Inverzní"
+msgstr "(inverzní)"
 
-#: classes/pref/filters.php:389
+#: classes/pref/filters.php:434
 #, php-format
 msgid "%s on %s in %s %s"
 msgstr ""
 
-#: classes/pref/filters.php:609
+#: classes/pref/filters.php:657
 msgid "Combine"
 msgstr "Kombinovat"
 
-#: classes/pref/filters.php:619
-#: classes/pref/feeds.php:1317
+#: classes/pref/filters.php:663
+#: classes/pref/feeds.php:1279
+#: classes/pref/feeds.php:1293
+msgid "Reset sort order"
+msgstr ""
+
+#: classes/pref/filters.php:671
+#: classes/pref/feeds.php:1318
 msgid "Rescore articles"
 msgstr "Přehodnotit články"
 
-#: classes/pref/filters.php:743
+#: classes/pref/filters.php:801
 msgid "Create"
 msgstr "Vytvořit"
 
-#: classes/pref/filters.php:798
+#: classes/pref/filters.php:856
 msgid "Inverse regular expression matching"
 msgstr ""
 
-#: classes/pref/filters.php:800
+#: classes/pref/filters.php:858
 msgid "on field"
 msgstr "pole"
 
-#: classes/pref/filters.php:806
-#: js/PrefFilterTree.js:29
+#: classes/pref/filters.php:864
+#: js/PrefFilterTree.js:45
 #: plugins/digest/digest.js:242
 msgid "in"
 msgstr "v"
 
-#: classes/pref/filters.php:819
+#: classes/pref/filters.php:877
 msgid "Save rule"
 msgstr ""
 
-#: classes/pref/filters.php:819
-#: js/functions.js:1069
+#: classes/pref/filters.php:877
+#: js/functions.js:1063
 msgid "Add rule"
 msgstr "Přidat pravidlo"
 
-#: classes/pref/filters.php:842
+#: classes/pref/filters.php:900
 msgid "Perform Action"
 msgstr ""
 
-#: classes/pref/filters.php:868
+#: classes/pref/filters.php:926
 msgid "with parameters:"
 msgstr ""
 
-#: classes/pref/filters.php:886
+#: classes/pref/filters.php:944
 msgid "Save action"
 msgstr ""
 
-#: classes/pref/filters.php:886
-#: js/functions.js:1095
+#: classes/pref/filters.php:944
+#: js/functions.js:1089
 msgid "Add action"
 msgstr "Přidat činnost"
 
+#: classes/pref/filters.php:967
+#, fuzzy
+msgid "[No caption]"
+msgstr "Titulek"
+
 #: classes/pref/prefs.php:17
 msgid "Old password cannot be blank."
 msgstr "Staré heslo nemůže být prázdné."
@@ -2189,7 +2110,7 @@ msgstr "Vaše heslo má výchozí hodnotu, změňte jej prosím."
 
 #: classes/pref/prefs.php:236
 msgid "Changing your current password will disable OTP."
-msgstr ""
+msgstr "Změněna hesla zakáže heslo na jedno použití."
 
 #: classes/pref/prefs.php:241
 msgid "Old password"
@@ -2209,11 +2130,11 @@ msgstr "Změnit heslo"
 
 #: classes/pref/prefs.php:265
 msgid "One time passwords / Authenticator"
-msgstr ""
+msgstr "Heslo na jedno použití / Ověření"
 
 #: classes/pref/prefs.php:269
 msgid "One time passwords are currently enabled. Enter your current password below to disable."
-msgstr ""
+msgstr "Hesla na jedno použití jsou povolena. Zadejte své současné heslo pro zakázání."
 
 #: classes/pref/prefs.php:294
 #: classes/pref/prefs.php:345
@@ -2222,7 +2143,7 @@ msgstr "Zadejte své heslo"
 
 #: classes/pref/prefs.php:305
 msgid "Disable OTP"
-msgstr ""
+msgstr "Zakázat HJP"
 
 #: classes/pref/prefs.php:311
 msgid "You will need a compatible Authenticator to use this. Changing your password would automatically disable OTP."
@@ -2238,7 +2159,7 @@ msgstr ""
 
 #: classes/pref/prefs.php:362
 msgid "Enable OTP"
-msgstr ""
+msgstr "Povolit HJP"
 
 #: classes/pref/prefs.php:400
 msgid "Some preferences are only available in default profile."
@@ -2313,7 +2234,7 @@ msgstr "Autor"
 #: classes/pref/prefs.php:699
 #: classes/pref/prefs.php:756
 msgid "more info"
-msgstr ""
+msgstr "více informací"
 
 #: classes/pref/prefs.php:708
 #: classes/pref/prefs.php:765
@@ -2333,238 +2254,264 @@ msgstr "Povolit vybrané moduly"
 msgid "Incorrect password"
 msgstr "Špatné heslo"
 
-#: classes/pref/feeds.php:12
-msgid "Check to enable field"
+#: classes/pref/prefs.php:879
+#, 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 ""
 
-#: classes/pref/feeds.php:60
-#: classes/pref/feeds.php:208
-#: classes/pref/feeds.php:250
-#: classes/pref/feeds.php:256
-#: classes/pref/feeds.php:281
-#, php-format
-msgid "(%d feed)"
-msgid_plural "(%d feeds)"
-msgstr[0] "(%d kanál)"
-msgstr[1] "(%d kanály)"
-msgstr[2] "(%d kanálů)"
+#: classes/pref/prefs.php:919
+msgid "Create profile"
+msgstr "Vytvořit profil"
+
+#: classes/pref/prefs.php:942
+#: classes/pref/prefs.php:972
+msgid "(active)"
+msgstr "(aktivní)"
+
+#: classes/pref/prefs.php:1006
+msgid "Remove selected profiles"
+msgstr "Odstranit vybrané profily"
 
-#: classes/pref/feeds.php:526
+#: classes/pref/prefs.php:1008
+msgid "Activate profile"
+msgstr "Aktivovat profil"
+
+#: classes/pref/feeds.php:13
+msgid "Check to enable field"
+msgstr ""
+
+#: classes/pref/feeds.php:527
 msgid "Feed Title"
 msgstr "Název kanálu"
 
-#: classes/pref/feeds.php:582
-#: classes/pref/feeds.php:808
+#: classes/pref/feeds.php:568
+#: classes/pref/feeds.php:793
+msgid "Update"
+msgstr "Aktualizovat"
+
+#: classes/pref/feeds.php:583
+#: classes/pref/feeds.php:809
 msgid "Article purging:"
 msgstr ""
 
-#: classes/pref/feeds.php:605
+#: classes/pref/feeds.php:606
 msgid "<b>Hint:</b> you need to fill in your login information if your feed requires authentication, except for Twitter feeds."
 msgstr ""
 
-#: classes/pref/feeds.php:621
-#: classes/pref/feeds.php:837
+#: classes/pref/feeds.php:622
+#: classes/pref/feeds.php:838
 msgid "Hide from Popular feeds"
 msgstr ""
 
-#: classes/pref/feeds.php:633
-#: classes/pref/feeds.php:843
+#: classes/pref/feeds.php:634
+#: classes/pref/feeds.php:844
 msgid "Include in e-mail digest"
-msgstr ""
+msgstr "Začlenit do e-mailových souhrnů"
 
-#: classes/pref/feeds.php:646
-#: classes/pref/feeds.php:849
+#: classes/pref/feeds.php:647
+#: classes/pref/feeds.php:850
 msgid "Always display image attachments"
 msgstr "Vždy zobrazovat obrázkové přílohy"
 
-#: classes/pref/feeds.php:659
-#: classes/pref/feeds.php:857
+#: classes/pref/feeds.php:660
+#: classes/pref/feeds.php:858
 msgid "Do not embed images"
 msgstr "Nevkládat obrázky"
 
-#: classes/pref/feeds.php:672
-#: classes/pref/feeds.php:865
+#: classes/pref/feeds.php:673
+#: classes/pref/feeds.php:866
 msgid "Cache images locally"
 msgstr ""
 
-#: classes/pref/feeds.php:684
-#: classes/pref/feeds.php:871
+#: classes/pref/feeds.php:685
+#: classes/pref/feeds.php:872
 msgid "Mark updated articles as unread"
 msgstr "Označit aktualizované články jako nepřečtené"
 
-#: classes/pref/feeds.php:690
+#: classes/pref/feeds.php:691
 msgid "Icon"
 msgstr "Ikona"
 
-#: classes/pref/feeds.php:704
+#: classes/pref/feeds.php:705
 msgid "Replace"
 msgstr "Nahradit"
 
-#: classes/pref/feeds.php:723
+#: classes/pref/feeds.php:724
 msgid "Resubscribe to push updates"
 msgstr ""
 
-#: classes/pref/feeds.php:730
+#: classes/pref/feeds.php:731
 msgid "Resets PubSubHubbub subscription status for push-enabled feeds."
 msgstr ""
 
-#: classes/pref/feeds.php:1111
-#: classes/pref/feeds.php:1164
+#: classes/pref/feeds.php:1112
+#: classes/pref/feeds.php:1165
 msgid "All done."
 msgstr "Vše hotovo."
 
-#: classes/pref/feeds.php:1219
+#: classes/pref/feeds.php:1220
 msgid "Feeds with errors"
 msgstr "Kanály s chybami"
 
-#: classes/pref/feeds.php:1239
+#: classes/pref/feeds.php:1240
 msgid "Inactive feeds"
 msgstr "Neaktivní kanály"
 
-#: classes/pref/feeds.php:1276
+#: classes/pref/feeds.php:1277
 msgid "Edit selected feeds"
 msgstr "Upravit vybrané kanály"
 
-#: classes/pref/feeds.php:1278
-#: classes/pref/feeds.php:1292
-msgid "Reset sort order"
-msgstr ""
-
-#: classes/pref/feeds.php:1280
-#: js/prefs.js:1764
+#: classes/pref/feeds.php:1281
+#: js/prefs.js:1770
 msgid "Batch subscribe"
-msgstr ""
+msgstr "Dávkové zahájení odběru"
 
-#: classes/pref/feeds.php:1285
+#: classes/pref/feeds.php:1286
 msgid "Categories"
 msgstr "Kategorie"
 
-#: classes/pref/feeds.php:1288
+#: classes/pref/feeds.php:1289
 msgid "Add category"
 msgstr "Přidat kategorii"
 
-#: classes/pref/feeds.php:1290
+#: classes/pref/feeds.php:1291
 msgid "(Un)hide empty categories"
 msgstr "Zobrazit/Skrýt prázdné kategorie"
 
-#: classes/pref/feeds.php:1294
+#: classes/pref/feeds.php:1295
 msgid "Remove selected"
 msgstr "Odstranit vybrané"
 
-#: classes/pref/feeds.php:1308
+#: classes/pref/feeds.php:1309
 msgid "More actions..."
 msgstr "Další činnost..."
 
-#: classes/pref/feeds.php:1312
+#: classes/pref/feeds.php:1313
 msgid "Manual purge"
 msgstr ""
 
-#: classes/pref/feeds.php:1316
+#: classes/pref/feeds.php:1317
 msgid "Clear feed data"
 msgstr ""
 
-#: classes/pref/feeds.php:1367
+#: classes/pref/feeds.php:1368
 msgid "OPML"
 msgstr ""
 
-#: classes/pref/feeds.php:1369
+#: classes/pref/feeds.php:1370
 msgid "Using OPML you can export and import your feeds, filters, labels and Tiny Tiny RSS settings."
 msgstr ""
 
-#: classes/pref/feeds.php:1371
+#: classes/pref/feeds.php:1372
 msgid "Only main settings profile can be migrated using OPML."
 msgstr ""
 
-#: classes/pref/feeds.php:1384
+#: classes/pref/feeds.php:1385
 msgid "Import my OPML"
 msgstr ""
 
-#: classes/pref/feeds.php:1388
+#: classes/pref/feeds.php:1389
 msgid "Filename:"
 msgstr "Název souboru:"
 
-#: classes/pref/feeds.php:1390
+#: classes/pref/feeds.php:1391
 msgid "Include settings"
 msgstr ""
 
-#: classes/pref/feeds.php:1394
+#: classes/pref/feeds.php:1395
 msgid "Export OPML"
 msgstr ""
 
-#: classes/pref/feeds.php:1398
+#: classes/pref/feeds.php:1399
 msgid "Your OPML can be published publicly and can be subscribed by anyone who knows the URL below."
 msgstr ""
 
-#: classes/pref/feeds.php:1400
+#: classes/pref/feeds.php:1401
 msgid "Published OPML does not include your Tiny Tiny RSS settings, feeds that require authentication or feeds hidden from Popular feeds."
 msgstr ""
 
 #: classes/pref/feeds.php:1403
+msgid "Public OPML URL"
+msgstr ""
+
+#: classes/pref/feeds.php:1404
 msgid "Display published OPML URL"
 msgstr ""
 
-#: classes/pref/feeds.php:1413
+#: classes/pref/feeds.php:1414
 msgid "Firefox integration"
 msgstr ""
 
-#: classes/pref/feeds.php:1415
+#: classes/pref/feeds.php:1416
 msgid "This Tiny Tiny RSS site can be used as a Firefox Feed Reader by clicking the link below."
 msgstr ""
 
-#: classes/pref/feeds.php:1422
+#: classes/pref/feeds.php:1423
 msgid "Click here to register this site as a feed reader."
 msgstr ""
 
-#: classes/pref/feeds.php:1430
+#: classes/pref/feeds.php:1431
 msgid "Published & shared articles / Generated feeds"
 msgstr ""
 
-#: classes/pref/feeds.php:1432
+#: classes/pref/feeds.php:1433
 msgid "Published articles and generated feeds"
 msgstr ""
 
-#: classes/pref/feeds.php:1434
+#: classes/pref/feeds.php:1435
 msgid "Published articles are exported as a public RSS feed and can be subscribed by anyone who knows the URL specified below."
 msgstr ""
 
-#: classes/pref/feeds.php:1440
+#: classes/pref/feeds.php:1441
 msgid "Display URL"
 msgstr ""
 
-#: classes/pref/feeds.php:1443
+#: classes/pref/feeds.php:1444
 msgid "Clear all generated URLs"
 msgstr ""
 
-#: classes/pref/feeds.php:1445
+#: classes/pref/feeds.php:1446
 msgid "Articles shared by URL"
 msgstr ""
 
-#: classes/pref/feeds.php:1447
+#: classes/pref/feeds.php:1448
 msgid "You can disable all articles shared by unique URLs here."
 msgstr ""
 
-#: classes/pref/feeds.php:1450
+#: classes/pref/feeds.php:1451
 msgid "Unshare all articles"
 msgstr ""
 
-#: classes/pref/feeds.php:1528
+#: classes/pref/feeds.php:1529
 msgid "These feeds have not been updated with new content for 3 months (oldest first):"
 msgstr ""
 
-#: classes/pref/feeds.php:1565
-#: classes/pref/feeds.php:1635
+#: classes/pref/feeds.php:1566
+#: classes/pref/feeds.php:1636
 msgid "Click to edit feed"
 msgstr ""
 
-#: classes/pref/feeds.php:1583
-#: classes/pref/feeds.php:1655
+#: classes/pref/feeds.php:1584
+#: classes/pref/feeds.php:1656
 msgid "Unsubscribe from selected feeds"
-msgstr ""
+msgstr "Zrušit odběr vybraných kanálů"
 
-#: classes/pref/feeds.php:1594
+#: classes/pref/feeds.php:1595
 msgid "These feeds have not been updated because of errors:"
 msgstr ""
 
+#: classes/pref/feeds.php:1758
+msgid "Add one valid RSS feed per line (no feed detection is done)"
+msgstr ""
+
+#: classes/pref/feeds.php:1767
+msgid "Feeds to subscribe, One per line"
+msgstr "Kanály k odebírání. Jeden na řádku"
+
+#: classes/pref/feeds.php:1789
+msgid "Feeds require authentication."
+msgstr ""
+
 #: plugins/digest/digest_body.php:59
 msgid "Your browser doesn't support Javascript, which is required for this application to function properly. Please check your browser settings."
 msgstr ""
@@ -2600,7 +2547,7 @@ msgstr ""
 
 #: plugins/auth_internal/init.php:62
 msgid "Please enter your one time password:"
-msgstr ""
+msgstr "Zadejte prosím vaše heslo na jedno použití:"
 
 #: plugins/auth_internal/init.php:185
 msgid "Password has been changed."
@@ -2618,7 +2565,7 @@ msgstr "Staré heslo je chybné."
 #: plugins/mobile/mobile-functions.php:373
 #: plugins/mobile/prefs.php:29
 msgid "Home"
-msgstr ""
+msgstr "Domů"
 
 #: plugins/mobile/mobile-functions.php:409
 msgid "Nothing found (click to reload feed)."
@@ -2629,9 +2576,8 @@ msgid "Open regular version"
 msgstr ""
 
 #: plugins/mobile/prefs.php:34
-#, fuzzy
 msgid "Enable categories"
-msgstr "Kategorie"
+msgstr "Povolit kategorie"
 
 #: plugins/mobile/prefs.php:35
 #: plugins/mobile/prefs.php:40
@@ -2640,7 +2586,7 @@ msgstr "Kategorie"
 #: plugins/mobile/prefs.php:56
 #: plugins/mobile/prefs.php:61
 msgid "ON"
-msgstr ""
+msgstr "Zapnuto"
 
 #: plugins/mobile/prefs.php:35
 #: plugins/mobile/prefs.php:40
@@ -2649,7 +2595,7 @@ msgstr ""
 #: plugins/mobile/prefs.php:56
 #: plugins/mobile/prefs.php:61
 msgid "OFF"
-msgstr ""
+msgstr "Vypnuto"
 
 #: plugins/mobile/prefs.php:39
 msgid "Browse categories like folders"
@@ -2660,12 +2606,10 @@ msgid "Show images in posts"
 msgstr ""
 
 #: plugins/mobile/prefs.php:50
-#, fuzzy
 msgid "Hide read articles and feeds"
-msgstr "Přehodnotit články ve vybraných kanálech?"
+msgstr "Skrýt přečtené články a kanály"
 
 #: plugins/mobile/prefs.php:55
-#, fuzzy
 msgid "Sort feeds by unread count"
 msgstr "Řadit kanály dle počtu nepřečtených článků"
 
@@ -2824,24 +2768,24 @@ msgstr "Nastavit hodnotu"
 msgid "No file uploaded."
 msgstr ""
 
-#: plugins/googlereaderimport/init.php:149
+#: plugins/googlereaderimport/init.php:153
 #, php-format
 msgid "All done. %d out of %d articles imported."
 msgstr ""
 
-#: plugins/googlereaderimport/init.php:153
+#: plugins/googlereaderimport/init.php:157
 msgid "The document has incorrect format."
 msgstr ""
 
-#: plugins/googlereaderimport/init.php:322
+#: plugins/googlereaderimport/init.php:326
 msgid "Import starred or shared items from Google Reader"
 msgstr ""
 
-#: plugins/googlereaderimport/init.php:326
+#: plugins/googlereaderimport/init.php:330
 msgid "Paste your starred.json or shared.json into the form below."
 msgstr ""
 
-#: plugins/googlereaderimport/init.php:340
+#: plugins/googlereaderimport/init.php:344
 msgid "Import my Starred items"
 msgstr ""
 
@@ -2849,6 +2793,38 @@ msgstr ""
 msgid "Linked"
 msgstr ""
 
+#: plugins/instances/init.php:207
+#: plugins/instances/init.php:399
+msgid "Instance"
+msgstr "Instance"
+
+#: plugins/instances/init.php:218
+#: plugins/instances/init.php:315
+#: plugins/instances/init.php:408
+msgid "Instance URL"
+msgstr "URL instance"
+
+#: plugins/instances/init.php:229
+#: plugins/instances/init.php:418
+msgid "Access key:"
+msgstr "Přístupový klíč:"
+
+#: plugins/instances/init.php:232
+#: plugins/instances/init.php:316
+#: plugins/instances/init.php:421
+msgid "Access key"
+msgstr "Přístupový klíč"
+
+#: plugins/instances/init.php:236
+#: plugins/instances/init.php:425
+msgid "Use one access key for both linked instances."
+msgstr ""
+
+#: plugins/instances/init.php:244
+#: plugins/instances/init.php:433
+msgid "Generate new key"
+msgstr "Generovat nový klíč"
+
 #: plugins/instances/init.php:295
 msgid "Link instance"
 msgstr ""
@@ -2869,6 +2845,10 @@ msgstr "Stav"
 msgid "Stored feeds"
 msgstr ""
 
+#: plugins/instances/init.php:437
+msgid "Create link"
+msgstr "Vytvořit odkaz"
+
 #: plugins/share/init.php:27
 msgid "Share by URL"
 msgstr "Sdílet pomocí URL"
@@ -2906,19 +2886,16 @@ msgid "Mark all articles in %s as read?"
 msgstr ""
 
 #: js/feedlist.js:423
-#, fuzzy
 msgid "Mark all articles in %s older than 1 day as read?"
-msgstr "Označit všechny články jako přečtené?"
+msgstr "Označit všechny články starší než 1 den v %s jako přečtené?"
 
 #: js/feedlist.js:426
-#, fuzzy
 msgid "Mark all articles in %s older than 1 week as read?"
-msgstr "Označit všechny články jako přečtené?"
+msgstr "Označit všechny články starší než 1 týden v %s jako přečtené?"
 
 #: js/feedlist.js:429
-#, fuzzy
 msgid "Mark all articles in %s older than 2 weeks as read?"
-msgstr "Označit všechny články jako přečtené?"
+msgstr "Označit všechny články starší než 2 týdny v %s jako přečtené?"
 
 #: js/functions.js:92
 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."
@@ -2926,169 +2903,173 @@ msgstr ""
 
 #: js/functions.js:214
 msgid "close"
-msgstr ""
+msgstr "zavřít"
 
-#: js/functions.js:627
+#: js/functions.js:621
 msgid "Date syntax appears to be correct:"
 msgstr ""
 
-#: js/functions.js:630
+#: js/functions.js:624
 msgid "Date syntax is incorrect."
 msgstr ""
 
-#: js/functions.js:724
-msgid "Upload complete."
+#: js/functions.js:636
+msgid "Error explained"
 msgstr ""
 
-#: js/functions.js:748
+#: js/functions.js:718
+msgid "Upload complete."
+msgstr "Odeslání dokončeno."
+
+#: js/functions.js:742
 msgid "Remove stored feed icon?"
 msgstr ""
 
-#: js/functions.js:753
+#: js/functions.js:747
 msgid "Removing feed icon..."
 msgstr ""
 
-#: js/functions.js:758
+#: js/functions.js:752
 msgid "Feed icon removed."
 msgstr ""
 
-#: js/functions.js:780
+#: js/functions.js:774
 msgid "Please select an image file to upload."
 msgstr ""
 
-#: js/functions.js:782
+#: js/functions.js:776
 msgid "Upload new icon for this feed?"
 msgstr ""
 
-#: js/functions.js:783
+#: js/functions.js:777
 msgid "Uploading, please wait..."
 msgstr "Odesílám, čekejte prosím..."
 
-#: js/functions.js:799
+#: js/functions.js:793
 msgid "Please enter label caption:"
 msgstr ""
 
-#: js/functions.js:804
+#: js/functions.js:798
 msgid "Can't create label: missing caption."
 msgstr ""
 
-#: js/functions.js:847
+#: js/functions.js:841
 msgid "Subscribe to Feed"
 msgstr "Přihlásit se k odběru"
 
-#: js/functions.js:874
+#: js/functions.js:868
 msgid "Subscribed to %s"
 msgstr "Zahájen odběr %s"
 
-#: js/functions.js:879
+#: js/functions.js:873
 msgid "Specified URL seems to be invalid."
 msgstr "Zadaná URL nevypadá platně."
 
-#: js/functions.js:882
+#: js/functions.js:876
 msgid "Specified URL doesn't seem to contain any feeds."
 msgstr ""
 
-#: js/functions.js:935
+#: js/functions.js:929
 msgid "Couldn't download the specified URL: %s"
 msgstr ""
 
-#: js/functions.js:939
+#: js/functions.js:933
 msgid "You are already subscribed to this feed."
 msgstr "Tento kanál již odebíráte."
 
-#: js/functions.js:1069
+#: js/functions.js:1063
 msgid "Edit rule"
 msgstr ""
 
-#: js/functions.js:1095
+#: js/functions.js:1089
 msgid "Edit action"
 msgstr "Upravit činnost"
 
-#: js/functions.js:1132
+#: js/functions.js:1126
 msgid "Create Filter"
 msgstr "Vytvořit filtr"
 
-#: js/functions.js:1247
+#: js/functions.js:1241
 msgid "Reset subscription? Tiny Tiny RSS will try to subscribe to the notification hub again on next feed update."
 msgstr ""
 
-#: js/functions.js:1258
+#: js/functions.js:1252
 msgid "Subscription reset."
 msgstr ""
 
-#: js/functions.js:1268
+#: js/functions.js:1262
 #: js/tt-rss.js:619
 msgid "Unsubscribe from %s?"
-msgstr ""
+msgstr "Zrušit odběr %s?"
 
-#: js/functions.js:1271
+#: js/functions.js:1265
 msgid "Removing feed..."
 msgstr "Odebírám kanál..."
 
-#: js/functions.js:1379
+#: js/functions.js:1373
 msgid "Please enter category title:"
 msgstr "Zadejte prosím název kategorie:"
 
-#: js/functions.js:1410
+#: js/functions.js:1404
 msgid "Generate new syndication address for this feed?"
 msgstr ""
 
-#: js/functions.js:1414
-#: js/prefs.js:1234
+#: js/functions.js:1408
+#: js/prefs.js:1222
 msgid "Trying to change address..."
-msgstr ""
+msgstr "Zkouším změnit adresu..."
 
-#: js/functions.js:1601
+#: js/functions.js:1595
 #: js/tt-rss.js:396
 #: js/tt-rss.js:600
 msgid "You can't edit this kind of feed."
-msgstr ""
+msgstr "Nemůžete upravit tento typ kanálu."
 
-#: js/functions.js:1616
+#: js/functions.js:1610
 msgid "Edit Feed"
 msgstr "Upravit kanál"
 
-#: js/functions.js:1622
+#: js/functions.js:1616
 #: js/prefs.js:194
 #: js/prefs.js:749
 msgid "Saving data..."
 msgstr "Ukládám data..."
 
-#: js/functions.js:1654
+#: js/functions.js:1648
 msgid "More Feeds"
 msgstr "Více kanálů"
 
-#: js/functions.js:1715
-#: js/functions.js:1825
+#: js/functions.js:1709
+#: js/functions.js:1819
 #: 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
+#: js/prefs.js:1198
+#: js/prefs.js:1343
 msgid "No feeds are selected."
 msgstr "Nejsou vybrány žádné kanály."
 
-#: js/functions.js:1757
+#: js/functions.js:1751
 msgid "Remove selected feeds from the archive? Feeds with stored articles will not be removed."
 msgstr ""
 
-#: js/functions.js:1796
+#: js/functions.js:1790
 msgid "Feeds with update errors"
 msgstr ""
 
-#: js/functions.js:1807
-#: js/prefs.js:1192
+#: js/functions.js:1801
+#: js/prefs.js:1180
 msgid "Remove selected feeds?"
 msgstr "Odstranit vybrané kanály?"
 
-#: js/functions.js:1810
-#: js/prefs.js:1195
+#: js/functions.js:1804
+#: js/prefs.js:1183
 msgid "Removing selected feeds..."
 msgstr "Odebírám vybrané kanály..."
 
-#: js/functions.js:1908
+#: js/functions.js:1902
 msgid "Help"
 msgstr "Nápověda"
 
@@ -3100,7 +3081,7 @@ msgstr "Upravit kategorii"
 msgid "Remove category"
 msgstr "Odstranit kategorii"
 
-#: js/PrefFilterTree.js:32
+#: js/PrefFilterTree.js:48
 msgid "Inverse"
 msgstr "Inverzní"
 
@@ -3137,7 +3118,7 @@ msgid "Removing selected labels..."
 msgstr "Odebírám vybrané štítky..."
 
 #: js/prefs.js:295
-#: js/prefs.js:1396
+#: js/prefs.js:1384
 msgid "No labels are selected."
 msgstr "Nejsou vybrány žádné štítky"
 
@@ -3172,7 +3153,7 @@ msgstr "Nejsou vybrány žádné filtry."
 
 #: js/prefs.js:378
 msgid "Unsubscribe from selected feeds?"
-msgstr ""
+msgstr "Zrušit odběr vybraných kanálů?"
 
 #: js/prefs.js:382
 msgid "Unsubscribing from selected feeds..."
@@ -3240,144 +3221,144 @@ msgstr ""
 msgid "Save changes to selected feeds?"
 msgstr "Uložit změny ve vybraných kanálech?"
 
-#: js/prefs.js:797
+#: js/prefs.js:785
 msgid "OPML Import"
 msgstr "Import OPML"
 
-#: js/prefs.js:824
+#: js/prefs.js:812
 msgid "Please choose an OPML file first."
 msgstr "Vyberte prosím nejprve soubor OPML."
 
-#: js/prefs.js:827
+#: js/prefs.js:815
 #: plugins/import_export/import_export.js:115
 #: plugins/googlereaderimport/init.js:45
 msgid "Importing, please wait..."
 msgstr "Importuji, čekejte prosím..."
 
-#: js/prefs.js:980
+#: js/prefs.js:968
 msgid "Reset to defaults?"
 msgstr "Obnovit výchozí hodnoty?"
 
-#: js/prefs.js:1099
+#: js/prefs.js:1087
 msgid "Remove category %s? Any nested feeds would be placed into Uncategorized."
 msgstr ""
 
-#: js/prefs.js:1105
+#: js/prefs.js:1093
 msgid "Removing category..."
 msgstr "Odebírám kategorii..."
 
-#: js/prefs.js:1126
+#: js/prefs.js:1114
 msgid "Remove selected categories?"
 msgstr "Odstranit vybrané kategorie?"
 
-#: js/prefs.js:1129
+#: js/prefs.js:1117
 msgid "Removing selected categories..."
 msgstr "Odebírám vybrané kategorie..."
 
-#: js/prefs.js:1142
+#: js/prefs.js:1130
 msgid "No categories are selected."
 msgstr "Nejsou vybrány žádné kategorie."
 
-#: js/prefs.js:1150
+#: js/prefs.js:1138
 msgid "Category title:"
 msgstr "Název kategorie:"
 
-#: js/prefs.js:1154
+#: js/prefs.js:1142
 msgid "Creating category..."
 msgstr "Vytvářím kategorii..."
 
-#: js/prefs.js:1181
+#: js/prefs.js:1169
 msgid "Feeds without recent updates"
 msgstr ""
 
-#: js/prefs.js:1230
+#: js/prefs.js:1218
 msgid "Replace current OPML publishing address with a new one?"
 msgstr ""
 
-#: js/prefs.js:1319
+#: js/prefs.js:1307
 msgid "Clearing feed..."
 msgstr ""
 
-#: js/prefs.js:1339
+#: js/prefs.js:1327
 msgid "Rescore articles in selected feeds?"
 msgstr "Přehodnotit články ve vybraných kanálech?"
 
-#: js/prefs.js:1342
+#: js/prefs.js:1330
 msgid "Rescoring selected feeds..."
 msgstr ""
 
-#: js/prefs.js:1362
+#: js/prefs.js:1350
 msgid "Rescore all articles? This operation may take a lot of time."
 msgstr "Přehodnotit všechny články? Tato operace může chvíli trvat."
 
-#: js/prefs.js:1365
+#: js/prefs.js:1353
 msgid "Rescoring feeds..."
 msgstr ""
 
-#: js/prefs.js:1382
+#: js/prefs.js:1370
 msgid "Reset selected labels to default colors?"
 msgstr ""
 
-#: js/prefs.js:1419
+#: js/prefs.js:1407
 msgid "Settings Profiles"
 msgstr ""
 
-#: js/prefs.js:1428
+#: js/prefs.js:1416
 msgid "Remove selected profiles? Active and default profiles will not be removed."
 msgstr ""
 
-#: js/prefs.js:1431
+#: js/prefs.js:1419
 msgid "Removing selected profiles..."
 msgstr "Odebírám vybrané profily..."
 
-#: js/prefs.js:1446
+#: js/prefs.js:1434
 msgid "No profiles are selected."
 msgstr "Nejsou vybrány žádné profily."
 
-#: js/prefs.js:1454
-#: js/prefs.js:1507
+#: js/prefs.js:1442
+#: js/prefs.js:1495
 msgid "Activate selected profile?"
 msgstr "Aktivovat vybraný profil?"
 
-#: js/prefs.js:1470
-#: js/prefs.js:1523
+#: js/prefs.js:1458
+#: js/prefs.js:1511
 msgid "Please choose a profile to activate."
 msgstr "Vyberte prosím profil k aktivaci."
 
-#: js/prefs.js:1475
+#: js/prefs.js:1463
 msgid "Creating profile..."
 msgstr "Vytvářím profil..."
 
-#: js/prefs.js:1531
+#: js/prefs.js:1519
 msgid "This will invalidate all previously generated feed URLs. Continue?"
 msgstr ""
 
-#: js/prefs.js:1534
-#: js/prefs.js:1553
+#: js/prefs.js:1522
+#: js/prefs.js:1541
 msgid "Clearing URLs..."
 msgstr ""
 
-#: js/prefs.js:1541
+#: js/prefs.js:1529
 msgid "Generated URLs cleared."
 msgstr ""
 
-#: js/prefs.js:1550
+#: js/prefs.js:1538
 msgid "This will invalidate all previously shared article URLs. Continue?"
 msgstr ""
 
-#: js/prefs.js:1560
+#: js/prefs.js:1548
 msgid "Shared URLs cleared."
 msgstr ""
 
-#: js/prefs.js:1648
+#: js/prefs.js:1654
 msgid "Label Editor"
 msgstr "Editor štítků"
 
-#: js/prefs.js:1770
+#: js/prefs.js:1776
 msgid "Subscribing to feeds..."
 msgstr "Přihlašuji se k odběru kanálů..."
 
-#: js/prefs.js:1807
+#: js/prefs.js:1813
 msgid "Clear stored data for this plugin?"
 msgstr ""
 
@@ -3397,28 +3378,32 @@ msgstr "Nejprve si prosím povolte modul odesílání e-mailů."
 msgid "Please enable embed_original plugin first."
 msgstr "Nejprve si prosím povolte modul embed_original."
 
+#: js/tt-rss.js:587
+msgid "Select item(s) by tags"
+msgstr "Vybrat položky podle značek"
+
 #: js/tt-rss.js:608
 msgid "You can't unsubscribe from the category."
-msgstr ""
+msgstr "Nelze zrušit odběr kategorie."
 
 #: js/tt-rss.js:613
-#: js/tt-rss.js:769
+#: js/tt-rss.js:765
 msgid "Please select some feed first."
 msgstr "Nejprve si prosím vyberte kanál."
 
-#: js/tt-rss.js:764
+#: js/tt-rss.js:760
 msgid "You can't rescore this kind of feed."
 msgstr "Tento druh kanálu nemůžete přehodnotit."
 
-#: js/tt-rss.js:774
+#: js/tt-rss.js:770
 msgid "Rescore articles in %s?"
 msgstr "Přehodnotit články v %s?"
 
-#: js/tt-rss.js:777
+#: js/tt-rss.js:773
 msgid "Rescoring articles..."
 msgstr ""
 
-#: js/tt-rss.js:911
+#: js/tt-rss.js:907
 msgid "New version available!"
 msgstr "Je dostupná nová verze."
 
@@ -3449,115 +3434,110 @@ msgstr ""
 #: js/viewfeed.js:734
 #: js/viewfeed.js:797
 #: js/viewfeed.js:831
-#: js/viewfeed.js:968
-#: js/viewfeed.js:1011
-#: js/viewfeed.js:1064
-#: js/viewfeed.js:2108
+#: js/viewfeed.js:951
+#: js/viewfeed.js:994
+#: js/viewfeed.js:1047
+#: js/viewfeed.js:2096
 #: plugins/mailto/init.js:7
 #: plugins/mail/mail.js:7
 msgid "No articles are selected."
 msgstr "Nejsou vybrány žádné články."
 
-#: js/viewfeed.js:948
-msgid "Mark all visible articles in %s as read?"
-msgstr ""
-
-#: js/viewfeed.js:976
+#: js/viewfeed.js:959
 msgid "Delete %d selected article in %s?"
 msgid_plural "Delete %d selected articles in %s?"
 msgstr[0] "Smazat %d vybraný článek v %s?"
 msgstr[1] "Smazat %d vybrané články v %s?"
 msgstr[2] "Smazat %d vybraných článků v %s?"
 
-#: js/viewfeed.js:978
+#: js/viewfeed.js:961
 msgid "Delete %d selected article?"
 msgid_plural "Delete %d selected articles?"
 msgstr[0] "Smazat %d vybraný článek?"
 msgstr[1] "Smazat %d vybrané články?"
 msgstr[2] "Smazat %d vybraných článků?"
 
-#: js/viewfeed.js:1020
+#: js/viewfeed.js:1003
 msgid "Archive %d selected article in %s?"
 msgid_plural "Archive %d selected articles in %s?"
 msgstr[0] "Archivovat %d vybraný článek v %s?"
 msgstr[1] "Archivovat %d vybrané články v %s?"
 msgstr[2] "Archivovat %d vybraných článků v %s?"
 
-#: js/viewfeed.js:1023
+#: js/viewfeed.js:1006
 msgid "Move %d archived article back?"
 msgid_plural "Move %d archived articles back?"
 msgstr[0] "Přesunout zpět %d archivovaný článek?"
 msgstr[1] "Přesunout zpět %d archivované články?"
 msgstr[2] "Přesunout zpět  %d archivovaných článků?"
 
-#: js/viewfeed.js:1025
+#: js/viewfeed.js:1008
 msgid "Please note that unstarred articles might get purged on next feed update."
 msgstr ""
 
-#: js/viewfeed.js:1070
+#: js/viewfeed.js:1053
 msgid "Mark %d selected article in %s as read?"
 msgid_plural "Mark %d selected articles in %s as read?"
 msgstr[0] "Označit %d článek v %s jako přečtený?"
 msgstr[1] "Označit %d články v %s jako přečtené?"
 msgstr[2] "Označit %d článků v %s jako přečtené?"
 
-#: js/viewfeed.js:1094
+#: js/viewfeed.js:1077
 msgid "Edit article Tags"
 msgstr "Upravit značky článku"
 
-#: js/viewfeed.js:1100
+#: js/viewfeed.js:1083
 msgid "Saving article tags..."
 msgstr "Ukládám značky článku..."
 
-#: js/viewfeed.js:1337
+#: js/viewfeed.js:1323
 msgid "No article is selected."
 msgstr "Není vybrán žádný článek."
 
-#: js/viewfeed.js:1372
+#: js/viewfeed.js:1358
 msgid "No articles found to mark"
 msgstr "Nenalezeny žádné články k označení"
 
-#: js/viewfeed.js:1374
+#: js/viewfeed.js:1360
 msgid "Mark %d article as read?"
 msgid_plural "Mark %d articles as read?"
 msgstr[0] "Označit %d článek jako přečtený?"
 msgstr[1] "Označit %d články jako přečtené?"
 msgstr[2] "Označit %d článků jako přečtené?"
 
-#: js/viewfeed.js:1884
+#: js/viewfeed.js:1872
 msgid "Open original article"
 msgstr "Otevřít původní článek"
 
-#: js/viewfeed.js:1890
+#: js/viewfeed.js:1878
 msgid "Display article URL"
 msgstr "Zobrazit URL článku"
 
-#: js/viewfeed.js:1909
-#, fuzzy
+#: js/viewfeed.js:1897
 msgid "Toggle marked"
-msgstr "Přepnout hvězdičku"
+msgstr ""
 
-#: js/viewfeed.js:1995
+#: js/viewfeed.js:1983
 msgid "Remove label"
 msgstr "Odstranit štítek"
 
-#: js/viewfeed.js:2019
+#: js/viewfeed.js:2007
 msgid "Playing..."
 msgstr "Přehrává se..."
 
-#: js/viewfeed.js:2020
+#: js/viewfeed.js:2008
 msgid "Click to pause"
 msgstr "Kliknutím pozastavit"
 
-#: js/viewfeed.js:2077
+#: js/viewfeed.js:2065
 msgid "Please enter new score for selected articles:"
 msgstr "Zadejte prosím nové hodnocení vybraných článků:"
 
-#: js/viewfeed.js:2119
+#: js/viewfeed.js:2107
 msgid "Please enter new score for this article:"
 msgstr "Zadejte prosím nové hodnocení článku:"
 
-#: js/viewfeed.js:2152
+#: js/viewfeed.js:2140
 msgid "Article URL:"
 msgstr "URL článku:"
 
@@ -3621,14 +3601,13 @@ msgstr "Prosím, nejdříve vyberte soubor."
 
 #: plugins/note/note.js:17
 msgid "Saving article note..."
-msgstr ""
+msgstr "Ukládám poznámku článku..."
 
 #: plugins/googlereaderimport/init.js:18
 msgid "Google Reader Import"
-msgstr ""
+msgstr "Import z Google Reader"
 
 #: plugins/googlereaderimport/init.js:42
-#, fuzzy
 msgid "Please choose a file first."
 msgstr "Prosím, nejdříve vyberte soubor."
 
@@ -3665,6 +3644,18 @@ msgstr "Sdílet článek pomocí URL"
 msgid "Live updating is considered experimental. Backup your tt-rss directory before continuing. Please type 'yes' to continue."
 msgstr ""
 
+#~ msgid "(%d feed)"
+#~ msgid_plural "(%d feeds)"
+#~ msgstr[0] "(%d kanál)"
+#~ msgstr[1] "(%d kanály)"
+#~ msgstr[2] "(%d kanálů)"
+
+#~ msgid "Notice"
+#~ msgstr "Poznámka"
+
+#~ msgid "Tag Cloud"
+#~ msgstr "Seznam značek"
+
 #~ msgid "Date"
 #~ msgstr "Datum"
 
index 2c0b4e4548360c1a0df562fd1f93594733ffa3dd..49428c6a1cda906d5da22abc31efa07ee97df1dd 100755 (executable)
Binary files a/locale/de_DE/LC_MESSAGES/messages.mo and b/locale/de_DE/LC_MESSAGES/messages.mo differ
index 129615beca0c086716afbdd24d98975e73864857..2f52d2938ebc18ec694088c0f86a7896f6446c7b 100755 (executable)
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Tiny Tiny RSS\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-03-31 12:47+0400\n"
+"POT-Creation-Date: 2013-04-01 16:28+0400\n"
 "PO-Revision-Date: 2013-03-25 17:14+0100\n"
 "Last-Translator: Joschasa <joschasa@lavabit.com>\n"
 "Language-Team: \n"
@@ -143,9 +143,9 @@ msgstr "Tiny Tiny RSS Datenbank ist auf dem neusten Stand."
 #: register.php:336
 #: register.php:346
 #: register.php:358
-#: classes/handler/public.php:625
-#: classes/handler/public.php:713
-#: classes/handler/public.php:795
+#: classes/handler/public.php:626
+#: classes/handler/public.php:714
+#: classes/handler/public.php:796
 msgid "Return to Tiny Tiny RSS"
 msgstr "Zu Tiny Tiny RSS zurückkehren"
 
@@ -253,36 +253,37 @@ msgstr "SQL Escaping Test fehlgeschlagen, überprüfen Sie Ihre Datenbank und PH
 
 #: index.php:135
 #: index.php:154
-#: index.php:264
-#: prefs.php:102
+#: index.php:263
+#: prefs.php:103
 #: classes/backend.php:5
 #: classes/pref/labels.php:296
-#: classes/pref/filters.php:628
-#: classes/pref/feeds.php:1330
+#: classes/pref/filters.php:680
+#: classes/pref/feeds.php:1331
 #: plugins/digest/digest_body.php:63
 #: js/feedlist.js:128
 #: js/feedlist.js:448
 #: js/functions.js:420
-#: js/functions.js:814
-#: js/functions.js:1250
-#: js/functions.js:1385
-#: js/functions.js:1697
+#: js/functions.js:808
+#: js/functions.js:1244
+#: js/functions.js:1379
+#: js/functions.js:1691
 #: js/prefs.js:86
 #: js/prefs.js:576
 #: js/prefs.js:666
-#: js/prefs.js:870
-#: js/prefs.js:1457
-#: js/prefs.js:1510
-#: js/prefs.js:1568
-#: js/prefs.js:1584
-#: js/prefs.js:1600
-#: js/prefs.js:1619
-#: js/prefs.js:1792
-#: js/prefs.js:1808
+#: js/prefs.js:858
+#: js/prefs.js:1445
+#: js/prefs.js:1498
+#: js/prefs.js:1557
+#: js/prefs.js:1574
+#: js/prefs.js:1590
+#: js/prefs.js:1606
+#: js/prefs.js:1625
+#: js/prefs.js:1798
+#: js/prefs.js:1814
 #: js/tt-rss.js:475
 #: js/tt-rss.js:492
 #: js/viewfeed.js:774
-#: js/viewfeed.js:1259
+#: js/viewfeed.js:1245
 #: plugins/import_export/import_export.js:17
 #: plugins/updater/updater.js:17
 msgid "Loading, please wait..."
@@ -305,13 +306,13 @@ msgid "All Articles"
 msgstr "Alle Artikel"
 
 #: index.php:176
-#: include/functions.php:1974
+#: include/functions.php:1924
 #: classes/feeds.php:106
 msgid "Starred"
 msgstr "Markiert"
 
 #: index.php:177
-#: include/functions.php:1975
+#: include/functions.php:1925
 #: classes/feeds.php:107
 msgid "Published"
 msgstr "Veröffentlicht"
@@ -351,22 +352,15 @@ msgstr ""
 msgid "Oldest first"
 msgstr ""
 
-#: index.php:195
-#: classes/pref/feeds.php:567
-#: classes/pref/feeds.php:792
-msgid "Update"
-msgstr "Aktualisieren"
-
-#: index.php:197
+#: index.php:192
 msgid "Mark feed as read"
 msgstr "Feed als gelesen markieren"
 
-#: index.php:200
-#: index.php:235
-#: include/functions.php:1964
+#: index.php:195
+#: index.php:234
+#: include/functions.php:1914
 #: include/localized_schema.php:10
 #: classes/feeds.php:111
-#: classes/feeds.php:136
 #: classes/feeds.php:437
 #: js/FeedTree.js:128
 #: js/FeedTree.js:156
@@ -374,110 +368,115 @@ msgstr "Feed als gelesen markieren"
 msgid "Mark as read"
 msgstr "Als gelesen markieren"
 
-#: index.php:201
-#: include/functions.php:1860
-#: include/functions.php:1972
+#: index.php:196
+#: include/functions.php:1810
+#: include/functions.php:1922
 msgid "All articles"
 msgstr "Alle Artikel"
 
-#: index.php:202
+#: index.php:197
 msgid "Older than one day"
 msgstr ""
 
-#: index.php:203
+#: index.php:198
 msgid "Older than one week"
 msgstr ""
 
-#: index.php:204
+#: index.php:199
 msgid "Older than two weeks"
 msgstr ""
 
-#: index.php:212
+#: index.php:204
+#, fuzzy
+msgid "Refresh"
+msgstr "Neu"
+
+#: index.php:211
 msgid "Communication problem with server."
 msgstr "Kommunikationsfehler mit Server"
 
-#: index.php:220
+#: index.php:219
 msgid "New version of Tiny Tiny RSS is available!"
 msgstr "Neue Version von Tiny Tiny RSS verfügbar!"
 
-#: index.php:225
+#: index.php:224
 msgid "Actions..."
 msgstr "Aktionen..."
 
-#: index.php:227
+#: index.php:226
 msgid "Preferences..."
 msgstr "Einstellungen..."
 
-#: index.php:228
+#: index.php:227
 msgid "Search..."
 msgstr "Suchen..."
 
-#: index.php:229
+#: index.php:228
 msgid "Feed actions:"
 msgstr "Feed-Aktionen:"
 
-#: index.php:230
-#: classes/handler/public.php:555
+#: index.php:229
+#: classes/handler/public.php:556
 msgid "Subscribe to feed..."
 msgstr "Feed abonnieren..."
 
-#: index.php:231
+#: index.php:230
 msgid "Edit this feed..."
 msgstr "Feed bearbeiten..."
 
-#: index.php:232
+#: index.php:231
 msgid "Rescore feed"
 msgstr "Feed neu bewerten"
 
-#: index.php:233
-#: classes/pref/feeds.php:716
-#: classes/pref/feeds.php:1303
+#: index.php:232
+#: classes/pref/feeds.php:717
+#: classes/pref/feeds.php:1304
 #: js/PrefFeedTree.js:73
 msgid "Unsubscribe"
 msgstr "Feed abbestellen"
 
-#: index.php:234
+#: index.php:233
 msgid "All feeds:"
 msgstr "Alle Feeds:"
 
-#: index.php:236
+#: index.php:235
 msgid "(Un)hide read feeds"
 msgstr "Gelesene zeigen/verstecken"
 
-#: index.php:237
+#: index.php:236
 msgid "Other actions:"
 msgstr "Andere Aktionen:"
 
-#: index.php:239
+#: index.php:238
 msgid "Switch to digest..."
 msgstr "Zur Zusammenfassung wechseln..."
 
-#: index.php:241
+#: index.php:240
 msgid "Show tag cloud..."
 msgstr "Tagwolke anzeigen..."
 
-#: index.php:242
-#: include/functions.php:1950
+#: index.php:241
+#: include/functions.php:1900
 msgid "Toggle widescreen mode"
 msgstr "Breitbild-Modus umschalten"
 
-#: index.php:243
+#: index.php:242
 msgid "Select by tags..."
 msgstr "Artikel nach Tag filtern.."
 
-#: index.php:244
+#: index.php:243
 msgid "Create label..."
 msgstr "Label erstellen..."
 
-#: index.php:245
+#: index.php:244
 msgid "Create filter..."
 msgstr "Filter erstellen..."
 
-#: index.php:246
+#: index.php:245
 msgid "Keyboard shortcuts help"
 msgstr "Tastaturkürzel..."
 
-#: index.php:248
+#: index.php:247
 #: plugins/digest/digest_body.php:77
 #: plugins/mobile/mobile-functions.php:62
 #: plugins/mobile/mobile-functions.php:237
@@ -485,41 +484,41 @@ msgid "Logout"
 msgstr "Abmelden"
 
 #: prefs.php:36
-#: prefs.php:122
-#: include/functions.php:1977
+#: prefs.php:121
+#: include/functions.php:1927
 #: classes/pref/prefs.php:377
 msgid "Preferences"
 msgstr "Einstellungen"
 
-#: prefs.php:113
+#: prefs.php:112
 msgid "Keyboard shortcuts"
 msgstr "Tastaturkürzel"
 
-#: prefs.php:114
+#: prefs.php:113
 msgid "Exit preferences"
 msgstr "Einstellungen verlassen"
 
-#: prefs.php:125
-#: classes/pref/feeds.php:106
-#: classes/pref/feeds.php:1208
-#: classes/pref/feeds.php:1271
+#: prefs.php:124
+#: classes/pref/feeds.php:107
+#: classes/pref/feeds.php:1209
+#: classes/pref/feeds.php:1272
 msgid "Feeds"
 msgstr "Feeds"
 
-#: prefs.php:128
-#: classes/pref/filters.php:120
+#: prefs.php:127
+#: classes/pref/filters.php:156
 msgid "Filters"
 msgstr "Filter"
 
-#: prefs.php:131
-#: include/functions.php:1167
-#: include/functions.php:1803
+#: prefs.php:130
+#: include/functions.php:1117
+#: include/functions.php:1753
 #: classes/pref/labels.php:90
 #: plugins/mobile/mobile-functions.php:198
 msgid "Labels"
 msgstr "Label"
 
-#: prefs.php:135
+#: prefs.php:134
 msgid "Users"
 msgstr "Benutzer"
 
@@ -545,12 +544,12 @@ msgid "Check availability"
 msgstr "Verfügbarkeit prüfen"
 
 #: register.php:228
-#: classes/handler/public.php:753
+#: classes/handler/public.php:754
 msgid "Email:"
 msgstr "E-Mail:"
 
 #: register.php:231
-#: classes/handler/public.php:758
+#: classes/handler/public.php:759
 msgid "How much is two plus two:"
 msgstr "Wieviel ist zwei plus zwei:"
 
@@ -583,12 +582,12 @@ msgid "Tiny Tiny RSS data update script."
 msgstr "Skript zum Updaten von Tiny Tiny RSS."
 
 #: include/digest.php:109
-#: include/functions.php:1176
-#: include/functions.php:1704
-#: include/functions.php:1789
-#: include/functions.php:1811
+#: include/functions.php:1126
+#: include/functions.php:1654
+#: include/functions.php:1739
+#: include/functions.php:1761
 #: classes/opml.php:416
-#: classes/pref/feeds.php:221
+#: classes/pref/feeds.php:222
 msgid "Uncategorized"
 msgstr "Unkategorisiert"
 
@@ -603,335 +602,333 @@ msgstr[1] "%d archivierte Artikel"
 msgid "No feeds found."
 msgstr "Keine Feeds gefunden."
 
-#: include/functions.php:722
-msgid "Session failed to validate (incorrect IP)"
-msgstr "Sitzung konnte nicht validiert werden (falsche IP)"
-
-#: include/functions.php:1165
-#: include/functions.php:1801
+#: include/functions.php:1115
+#: include/functions.php:1751
 #: plugins/mobile/mobile-functions.php:171
 msgid "Special"
 msgstr "Sonderfeeds"
 
-#: include/functions.php:1653
-#: classes/dlg.php:369
-#: classes/pref/filters.php:382
+#: include/functions.php:1603
+#: classes/feeds.php:1097
+#: classes/pref/filters.php:427
 msgid "All feeds"
 msgstr "Alle Feeds"
 
-#: include/functions.php:1854
+#: include/functions.php:1804
 msgid "Starred articles"
 msgstr "Markierte Artikel"
 
-#: include/functions.php:1856
+#: include/functions.php:1806
 msgid "Published articles"
 msgstr "Veröffentlichte Artikel"
 
-#: include/functions.php:1858
+#: include/functions.php:1808
 msgid "Fresh articles"
 msgstr "Neue Artikel"
 
-#: include/functions.php:1862
+#: include/functions.php:1812
 msgid "Archived articles"
 msgstr "Archivierte Artikel"
 
-#: include/functions.php:1864
+#: include/functions.php:1814
 msgid "Recently read"
 msgstr "Kürzlich gelesen"
 
-#: include/functions.php:1927
+#: include/functions.php:1877
 msgid "Navigation"
 msgstr "Navigation"
 
-#: include/functions.php:1928
+#: include/functions.php:1878
 msgid "Open next feed"
 msgstr "Nächsten Feed öffnen"
 
-#: include/functions.php:1929
+#: include/functions.php:1879
 msgid "Open previous feed"
 msgstr "Vorherigen Feed öffnen"
 
-#: include/functions.php:1930
+#: include/functions.php:1880
 msgid "Open next article"
 msgstr "Nächsten Artikel öffnen"
 
-#: include/functions.php:1931
+#: include/functions.php:1881
 msgid "Open previous article"
 msgstr "Vorherigen Artikel öffnen"
 
-#: include/functions.php:1932
+#: include/functions.php:1882
 msgid "Open next article (don't scroll long articles)"
 msgstr "Nächsten Artikel laden (lange Artikel werden nicht gescrollt)"
 
-#: include/functions.php:1933
+#: include/functions.php:1883
 msgid "Open previous article (don't scroll long articles)"
 msgstr "Vorherigen Artikel laden (lange Artikel werden nicht gescrollt)"
 
-#: include/functions.php:1934
+#: include/functions.php:1884
 msgid "Show search dialog"
 msgstr "Suchdialog anzeigen"
 
-#: include/functions.php:1935
+#: include/functions.php:1885
 msgid "Article"
 msgstr "Artikel"
 
-#: include/functions.php:1936
+#: include/functions.php:1886
 msgid "Toggle starred"
 msgstr "Markierung ein-/ausschalten"
 
-#: include/functions.php:1937
-#: js/viewfeed.js:1920
+#: include/functions.php:1887
+#: js/viewfeed.js:1908
 msgid "Toggle published"
 msgstr "Veröffentlichung ein-/ausschalten"
 
-#: include/functions.php:1938
-#: js/viewfeed.js:1898
+#: include/functions.php:1888
+#: js/viewfeed.js:1886
 msgid "Toggle unread"
 msgstr "Gelesen-Status umschalten"
 
-#: include/functions.php:1939
+#: include/functions.php:1889
 msgid "Edit tags"
 msgstr "Tags bearbeiten"
 
-#: include/functions.php:1940
+#: include/functions.php:1890
 #, fuzzy
 msgid "Dismiss selected"
 msgstr "Ausgewählte Artikel verbergen"
 
-#: include/functions.php:1941
+#: include/functions.php:1891
 #, fuzzy
 msgid "Dismiss read"
 msgstr "Gelesene Artikel verbergen"
 
-#: include/functions.php:1942
+#: include/functions.php:1892
 msgid "Open in new window"
 msgstr "In neuem Fenster öffnen"
 
-#: include/functions.php:1943
-#: js/viewfeed.js:1939
+#: include/functions.php:1893
+#: js/viewfeed.js:1927
 msgid "Mark below as read"
 msgstr "Untere als gelesen markieren"
 
-#: include/functions.php:1944
-#: js/viewfeed.js:1933
+#: include/functions.php:1894
+#: js/viewfeed.js:1921
 msgid "Mark above as read"
 msgstr "Obige als gelesen markieren"
 
-#: include/functions.php:1945
+#: include/functions.php:1895
 msgid "Scroll down"
 msgstr "Nach unten scrollen"
 
-#: include/functions.php:1946
+#: include/functions.php:1896
 msgid "Scroll up"
 msgstr "Nach oben scrollen"
 
-#: include/functions.php:1947
+#: include/functions.php:1897
 #, fuzzy
 msgid "Select article under cursor"
 msgstr "Artikel unter Mauszeiger auswählen"
 
-#: include/functions.php:1948
+#: include/functions.php:1898
 msgid "Email article"
 msgstr "Artikel per E-Mail versenden"
 
-#: include/functions.php:1949
+#: include/functions.php:1899
 #, fuzzy
 msgid "Close/collapse article"
 msgstr "Artikel schließen"
 
-#: include/functions.php:1951
+#: include/functions.php:1901
 #: plugins/embed_original/init.php:33
 #, fuzzy
 msgid "Toggle embed original"
 msgstr "\"Original einbetten\" umschalten"
 
-#: include/functions.php:1952
+#: include/functions.php:1902
 msgid "Article selection"
 msgstr "Artikelauswahl"
 
-#: include/functions.php:1953
+#: include/functions.php:1903
 msgid "Select all articles"
 msgstr "Alle Artikel auswählen"
 
-#: include/functions.php:1954
+#: include/functions.php:1904
 msgid "Select unread"
 msgstr "Ungelesene Artikel auswählen"
 
-#: include/functions.php:1955
+#: include/functions.php:1905
 msgid "Select starred"
 msgstr "Markierte Artikel auswählen"
 
-#: include/functions.php:1956
+#: include/functions.php:1906
 msgid "Select published"
 msgstr "Veröffentlichte Artikel auswählen"
 
-#: include/functions.php:1957
+#: include/functions.php:1907
 msgid "Invert selection"
 msgstr "Auswahl umkehren"
 
-#: include/functions.php:1958
+#: include/functions.php:1908
 msgid "Deselect everything"
 msgstr "Auswahl aufheben"
 
-#: include/functions.php:1959
-#: classes/pref/feeds.php:520
-#: classes/pref/feeds.php:753
+#: include/functions.php:1909
+#: classes/pref/feeds.php:521
+#: classes/pref/feeds.php:754
 msgid "Feed"
 msgstr "Feed"
 
-#: include/functions.php:1960
+#: include/functions.php:1910
 msgid "Refresh current feed"
 msgstr "Aktuellen Feed aktualisieren"
 
-#: include/functions.php:1961
+#: include/functions.php:1911
 msgid "Un/hide read feeds"
 msgstr "Gelesene Feeds zeigen/verstecken"
 
-#: include/functions.php:1962
-#: classes/pref/feeds.php:1274
+#: include/functions.php:1912
+#: classes/pref/feeds.php:1275
 msgid "Subscribe to feed"
 msgstr "Feed abonnieren"
 
-#: include/functions.php:1963
+#: include/functions.php:1913
 #: js/FeedTree.js:135
 #: js/PrefFeedTree.js:67
 msgid "Edit feed"
 msgstr "Feed bearbeiten"
 
-#: include/functions.php:1965
+#: include/functions.php:1915
 #, fuzzy
 msgid "Reverse headlines"
 msgstr "Schlagzeilensortierung umkehren"
 
-#: include/functions.php:1966
+#: include/functions.php:1916
 msgid "Debug feed update"
 msgstr "Aktualisierung im Diagnose-Modus durchführen"
 
-#: include/functions.php:1967
+#: include/functions.php:1917
 #: js/FeedTree.js:178
 msgid "Mark all feeds as read"
 msgstr "Alle Feeds als gelesen markieren"
 
-#: include/functions.php:1968
+#: include/functions.php:1918
 msgid "Un/collapse current category"
 msgstr "Aktuelle Kategorie ein-/ausklappen:"
 
-#: include/functions.php:1969
+#: include/functions.php:1919
 msgid "Toggle combined mode"
 msgstr "Kombinierte Feed-Anzeige umschalten"
 
-#: include/functions.php:1970
+#: include/functions.php:1920
 #, fuzzy
 msgid "Toggle auto expand in combined mode"
 msgstr "Kombinierte Feed-Anzeige umschalten"
 
-#: include/functions.php:1971
+#: include/functions.php:1921
 msgid "Go to"
 msgstr "Gehe zu"
 
-#: include/functions.php:1973
+#: include/functions.php:1923
 msgid "Fresh"
 msgstr "Neu"
 
-#: include/functions.php:1976
+#: include/functions.php:1926
+#: js/tt-rss.js:431
+#: js/tt-rss.js:584
 msgid "Tag cloud"
 msgstr "Tagwolke"
 
-#: include/functions.php:1978
+#: include/functions.php:1928
 msgid "Other"
 msgstr "Sonstiges"
 
-#: include/functions.php:1979
+#: include/functions.php:1929
 #: classes/pref/labels.php:281
 msgid "Create label"
 msgstr "Label erstellen"
 
-#: include/functions.php:1980
-#: classes/pref/filters.php:606
+#: include/functions.php:1930
+#: classes/pref/filters.php:654
 msgid "Create filter"
 msgstr "Filter erstellen"
 
-#: include/functions.php:1981
+#: include/functions.php:1931
 msgid "Un/collapse sidebar"
 msgstr "Seitenleiste ein-/ausklappen"
 
-#: include/functions.php:1982
+#: include/functions.php:1932
 msgid "Show help dialog"
 msgstr "Hilfe anzeigen"
 
-#: include/functions.php:2467
+#: include/functions.php:2417
 #, php-format
 msgid "Search results: %s"
 msgstr "Suchergebnisse: %s"
 
-#: include/functions.php:2958
-#: js/viewfeed.js:2026
+#: include/functions.php:2908
+#: js/viewfeed.js:2014
 msgid "Click to play"
 msgstr "Zum Abspielen klicken"
 
-#: include/functions.php:2959
-#: js/viewfeed.js:2025
+#: include/functions.php:2909
+#: js/viewfeed.js:2013
 msgid "Play"
 msgstr "Abspielen"
 
-#: include/functions.php:3076
+#: include/functions.php:3026
 msgid " - "
 msgstr " - "
 
-#: include/functions.php:3098
-#: include/functions.php:3392
+#: include/functions.php:3048
+#: include/functions.php:3342
 #: classes/rpc.php:408
 msgid "no tags"
 msgstr "Keine Tags"
 
-#: include/functions.php:3108
+#: include/functions.php:3058
 #: classes/feeds.php:682
 msgid "Edit tags for this article"
 msgstr "Tags für diesen Artikel bearbeiten"
 
-#: include/functions.php:3137
+#: include/functions.php:3087
 #: classes/feeds.php:638
 msgid "Originally from:"
 msgstr "Original von:"
 
-#: include/functions.php:3150
+#: include/functions.php:3100
 #: classes/feeds.php:651
-#: classes/pref/feeds.php:539
+#: classes/pref/feeds.php:540
 msgid "Feed URL"
 msgstr "Feed URL"
 
-#: include/functions.php:3181
-#: classes/dlg.php:43
-#: classes/dlg.php:162
-#: classes/dlg.php:185
-#: classes/dlg.php:222
-#: classes/dlg.php:506
-#: classes/dlg.php:541
-#: classes/dlg.php:572
-#: classes/dlg.php:606
-#: classes/dlg.php:618
+#: include/functions.php:3131
+#: classes/dlg.php:37
+#: classes/dlg.php:60
+#: classes/dlg.php:93
+#: classes/dlg.php:159
+#: classes/dlg.php:190
+#: classes/dlg.php:217
+#: classes/dlg.php:250
+#: classes/dlg.php:262
 #: classes/backend.php:105
 #: classes/pref/users.php:106
-#: classes/pref/filters.php:111
-#: classes/pref/feeds.php:1587
-#: classes/pref/feeds.php:1659
+#: classes/pref/filters.php:147
+#: classes/pref/prefs.php:1012
+#: classes/pref/feeds.php:1588
+#: classes/pref/feeds.php:1660
 #: plugins/import_export/init.php:409
 #: plugins/import_export/init.php:432
-#: plugins/googlereaderimport/init.php:164
+#: plugins/googlereaderimport/init.php:168
 #: plugins/share/init.php:67
 #: plugins/updater/init.php:357
 msgid "Close this window"
 msgstr "Fenster schließen"
 
-#: include/functions.php:3417
+#: include/functions.php:3367
 msgid "(edit note)"
 msgstr "(Notiz bearbeiten)"
 
-#: include/functions.php:3650
+#: include/functions.php:3600
 msgid "unknown type"
 msgstr "unbekannter Typ"
 
-#: include/functions.php:3706
+#: include/functions.php:3656
 msgid "Attachments"
 msgstr "Anhänge"
 
@@ -975,7 +972,7 @@ msgid "Assign tags"
 msgstr "Tags zuweisen"
 
 #: include/localized_schema.php:14
-#: js/viewfeed.js:1990
+#: js/viewfeed.js:1978
 msgid "Assign label"
 msgstr "Label zuweisen"
 
@@ -1158,7 +1155,7 @@ msgid "User timezone"
 msgstr "Zeitzone des Benutzers"
 
 #: include/localized_schema.php:61
-#: js/prefs.js:1719
+#: js/prefs.js:1725
 msgid "Customize stylesheet"
 msgstr "Benutzerdefiniertes Stylesheet"
 
@@ -1183,14 +1180,14 @@ msgid "Select theme"
 msgstr "Thema auswählen"
 
 #: include/login_form.php:183
-#: classes/handler/public.php:460
-#: classes/handler/public.php:748
+#: classes/handler/public.php:461
+#: classes/handler/public.php:749
 #: plugins/mobile/login_form.php:40
 msgid "Login:"
 msgstr "Benutzername:"
 
 #: include/login_form.php:192
-#: classes/handler/public.php:463
+#: classes/handler/public.php:464
 #: plugins/mobile/login_form.php:45
 msgid "Password:"
 msgstr "Passwort:"
@@ -1200,7 +1197,7 @@ msgid "I forgot my password"
 msgstr "Ich habe mein Passwort vergessen"
 
 #: include/login_form.php:201
-#: classes/handler/public.php:466
+#: classes/handler/public.php:467
 msgid "Language:"
 msgstr "Sprache:"
 
@@ -1209,9 +1206,9 @@ msgid "Profile:"
 msgstr "Profil:"
 
 #: include/login_form.php:213
-#: classes/handler/public.php:210
+#: classes/handler/public.php:211
 #: classes/rpc.php:64
-#: classes/dlg.php:98
+#: classes/pref/prefs.php:948
 msgid "Default profile"
 msgstr "Standardprofil"
 
@@ -1224,476 +1221,246 @@ msgid "Remember me"
 msgstr ""
 
 #: include/login_form.php:235
-#: classes/handler/public.php:476
+#: classes/handler/public.php:477
 #: plugins/mobile/login_form.php:28
 msgid "Log in"
 msgstr "Anmelden"
 
+#: include/sessions.php:53
+msgid "Session failed to validate (incorrect IP)"
+msgstr "Sitzung konnte nicht validiert werden (falsche IP)"
+
 #: classes/article.php:25
 msgid "Article not found."
 msgstr "Artikel nicht gefunden."
 
-#: classes/handler/public.php:401
+#: classes/article.php:179
+msgid "Tags for this article (separated by commas):"
+msgstr "Tags für diesen Artikel (durch Komma getrennt):"
+
+#: classes/article.php:204
+#: classes/pref/users.php:192
+#: classes/pref/labels.php:79
+#: classes/pref/filters.php:405
+#: classes/pref/prefs.php:894
+#: classes/pref/feeds.php:733
+#: classes/pref/feeds.php:881
+#: plugins/nsfw/init.php:86
+#: plugins/note/init.php:53
+#: plugins/instances/init.php:248
+msgid "Save"
+msgstr "Speichern"
+
+#: classes/article.php:206
+#: classes/handler/public.php:438
+#: classes/handler/public.php:480
+#: classes/feeds.php:1024
+#: classes/feeds.php:1076
+#: classes/feeds.php:1136
+#: classes/pref/users.php:194
+#: classes/pref/labels.php:81
+#: classes/pref/filters.php:408
+#: classes/pref/filters.php:804
+#: classes/pref/filters.php:880
+#: classes/pref/filters.php:947
+#: classes/pref/prefs.php:896
+#: classes/pref/feeds.php:734
+#: classes/pref/feeds.php:884
+#: classes/pref/feeds.php:1797
+#: plugins/mail/init.php:131
+#: plugins/note/init.php:55
+#: plugins/instances/init.php:251
+#: plugins/instances/init.php:440
+msgid "Cancel"
+msgstr "Abbrechen"
+
+#: classes/handler/public.php:402
 #: plugins/bookmarklets/init.php:38
 msgid "Share with Tiny Tiny RSS"
 msgstr "Teilen mit Tiny Tiny RSS"
 
-#: classes/handler/public.php:409
+#: classes/handler/public.php:410
 msgid "Title:"
 msgstr "Titel:"
 
-#: classes/handler/public.php:411
-#: classes/dlg.php:663
-#: classes/pref/feeds.php:537
-#: classes/pref/feeds.php:768
+#: classes/handler/public.php:412
+#: classes/pref/feeds.php:538
+#: classes/pref/feeds.php:769
 #: plugins/instances/init.php:215
+#: plugins/instances/init.php:405
 msgid "URL:"
 msgstr "URL:"
 
-#: classes/handler/public.php:413
+#: classes/handler/public.php:414
 msgid "Content:"
 msgstr "Inhalt:"
 
-#: classes/handler/public.php:415
+#: classes/handler/public.php:416
 msgid "Labels:"
 msgstr "Label:"
 
-#: classes/handler/public.php:434
+#: classes/handler/public.php:435
 msgid "Shared article will appear in the Published feed."
 msgstr "Geteilte Artikel erscheinen unter 'Veröffentlichte Artikel'."
 
-#: classes/handler/public.php:436
+#: classes/handler/public.php:437
 msgid "Share"
 msgstr "Teilen"
 
-#: classes/handler/public.php:437
-#: classes/handler/public.php:479
-#: classes/dlg.php:296
-#: classes/dlg.php:348
-#: classes/dlg.php:408
-#: classes/dlg.php:439
-#: classes/dlg.php:648
-#: classes/dlg.php:698
-#: classes/dlg.php:747
-#: classes/pref/users.php:194
-#: classes/pref/labels.php:81
-#: classes/pref/filters.php:363
-#: classes/pref/filters.php:746
-#: classes/pref/filters.php:822
-#: classes/pref/filters.php:889
-#: classes/pref/feeds.php:733
-#: classes/pref/feeds.php:883
-#: plugins/mail/init.php:131
-#: plugins/note/init.php:55
-#: plugins/instances/init.php:251
-msgid "Cancel"
-msgstr "Abbrechen"
-
-#: classes/handler/public.php:458
+#: classes/handler/public.php:459
 msgid "Not logged in"
 msgstr "Nicht angemeldet"
 
-#: classes/handler/public.php:525
+#: classes/handler/public.php:526
 msgid "Incorrect username or password"
 msgstr "Benutzername oder Passwort falsch"
 
-#: classes/handler/public.php:561
-#: classes/handler/public.php:658
+#: classes/handler/public.php:562
+#: classes/handler/public.php:659
 #, php-format
 msgid "Already subscribed to <b>%s</b>."
 msgstr "<b>%s</b> bereits abonniert."
 
-#: classes/handler/public.php:564
-#: classes/handler/public.php:649
+#: classes/handler/public.php:565
+#: classes/handler/public.php:650
 #, php-format
 msgid "Subscribed to <b>%s</b>."
 msgstr "<b>%s</b> abonniert."
 
-#: classes/handler/public.php:567
-#: classes/handler/public.php:652
+#: classes/handler/public.php:568
+#: classes/handler/public.php:653
 #, php-format
 msgid "Could not subscribe to <b>%s</b>."
 msgstr "Konnte <b>%s</b> nicht abonnieren."
 
-#: classes/handler/public.php:570
-#: classes/handler/public.php:655
+#: classes/handler/public.php:571
+#: classes/handler/public.php:656
 #, php-format
 msgid "No feeds found in <b>%s</b>."
 msgstr "Keine Feeds in <b>%s</b> gefunden."
 
-#: classes/handler/public.php:573
-#: classes/handler/public.php:661
+#: classes/handler/public.php:574
+#: classes/handler/public.php:662
 msgid "Multiple feed URLs found."
 msgstr "Mehrere Feed-URLs gefunden."
 
-#: classes/handler/public.php:577
-#: classes/handler/public.php:666
+#: classes/handler/public.php:578
+#: classes/handler/public.php:667
 #, 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."
 
-#: classes/handler/public.php:595
-#: classes/handler/public.php:684
+#: classes/handler/public.php:596
+#: classes/handler/public.php:685
 msgid "Subscribe to selected feed"
 msgstr "Ausgewählte Feeds abonnieren"
 
-#: classes/handler/public.php:620
-#: classes/handler/public.php:708
+#: classes/handler/public.php:621
+#: classes/handler/public.php:709
 msgid "Edit subscription options"
 msgstr "Abonnementoptionen bearbeiten"
 
-#: classes/handler/public.php:735
+#: classes/handler/public.php:736
 #, fuzzy
 msgid "Password recovery"
 msgstr "Passwort"
 
-#: classes/handler/public.php:741
+#: classes/handler/public.php:742
 msgid "You will need to provide valid account name and email. New password will be sent on your email address."
 msgstr ""
 
-#: classes/handler/public.php:763
+#: classes/handler/public.php:764
 #: classes/pref/users.php:378
 msgid "Reset password"
 msgstr "Passwort zurücksetzen"
 
-#: classes/handler/public.php:773
+#: classes/handler/public.php:774
 msgid "Some of the required form parameters are missing or incorrect."
 msgstr "Einige der benötigten Eingaben fehlen oder sind falsch."
 
-#: classes/handler/public.php:777
-#: classes/handler/public.php:803
+#: classes/handler/public.php:778
+#: classes/handler/public.php:804
 #: plugins/digest/digest_body.php:69
 msgid "Go back"
 msgstr "Zurück"
 
-#: classes/handler/public.php:799
+#: classes/handler/public.php:800
 msgid "Sorry, login and email combination not found."
 msgstr "Entschuldigung, diese Kombination von Benutzername und E-Mail konnte nicht gefunden werden."
 
-#: classes/dlg.php:22
+#: classes/dlg.php:16
 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:360
-#: classes/pref/labels.php:272
-#: classes/pref/filters.php:234
-#: classes/pref/filters.php:282
-#: classes/pref/filters.php:597
-#: classes/pref/filters.php:676
-#: classes/pref/filters.php:703
-#: classes/pref/feeds.php:1262
-#: classes/pref/feeds.php:1532
-#: classes/pref/feeds.php:1602
-#: plugins/instances/init.php:287
-msgid "Select"
-msgstr "Auswahl"
-
-#: classes/dlg.php:58
-#: classes/feeds.php:92
-#: classes/pref/users.php:363
-#: classes/pref/labels.php:275
-#: classes/pref/filters.php:237
-#: classes/pref/filters.php:285
-#: classes/pref/filters.php:600
-#: classes/pref/filters.php:679
-#: classes/pref/filters.php:706
-#: classes/pref/feeds.php:1265
-#: classes/pref/feeds.php:1535
-#: classes/pref/feeds.php:1605
-#: plugins/instances/init.php:290
-msgid "All"
-msgstr "Alle"
-
-#: classes/dlg.php:60
-#: classes/feeds.php:95
-#: classes/pref/users.php:365
-#: classes/pref/labels.php:277
-#: classes/pref/filters.php:239
-#: classes/pref/filters.php:287
-#: classes/pref/filters.php:602
-#: classes/pref/filters.php:681
-#: classes/pref/filters.php:708
-#: classes/pref/feeds.php:1267
-#: classes/pref/feeds.php:1537
-#: classes/pref/feeds.php:1607
-#: plugins/instances/init.php:292
-msgid "None"
-msgstr "Keine"
-
-#: classes/dlg.php:69
-msgid "Create profile"
-msgstr "Profil erstellen"
-
-#: classes/dlg.php:92
-#: classes/dlg.php:122
-msgid "(active)"
-msgstr "(aktiv)"
-
-#: classes/dlg.php:156
-msgid "Remove selected profiles"
-msgstr "Ausgewählte Profile entfernen"
-
-#: classes/dlg.php:158
-msgid "Activate profile"
-msgstr "Profil aktivieren"
-
-#: classes/dlg.php:168
-msgid "Public OPML URL"
-msgstr "Öffentliche OPML-URL"
-
-#: classes/dlg.php:173
+#: classes/dlg.php:48
 msgid "Your Public OPML URL is:"
 msgstr "Ihre öffentliche OPML-URL lautet:"
 
-#: classes/dlg.php:182
-#: classes/dlg.php:569
+#: classes/dlg.php:57
+#: classes/dlg.php:214
 msgid "Generate new URL"
 msgstr "Erzeuge neue URL"
 
-#: classes/dlg.php:194
-msgid "Notice"
-msgstr "Anmerkung"
-
-#: classes/dlg.php:200
+#: classes/dlg.php:71
 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:75
+#: classes/dlg.php:84
 msgid "Last update:"
 msgstr "Letzte Aktualisierung:"
 
-#: classes/dlg.php:209
+#: classes/dlg.php:80
 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:242
-msgid "Feed or site URL"
-msgstr "URL von Feed oder Seite"
-
-#: classes/dlg.php:248
-#: classes/dlg.php:711
-#: classes/pref/feeds.php:559
-#: classes/pref/feeds.php:781
-msgid "Place in category:"
-msgstr "In Kategorie einordnen:"
-
-#: classes/dlg.php:256
-msgid "Available feeds"
-msgstr "Verfügbare Feeds"
-
-#: classes/dlg.php:268
-#: classes/pref/users.php:155
-#: classes/pref/feeds.php:589
-#: classes/pref/feeds.php:817
-msgid "Authentication"
-msgstr "Authentifizierung"
-
-#: classes/dlg.php:272
-#: classes/dlg.php:725
-#: classes/pref/users.php:420
-#: classes/pref/feeds.php:595
-#: classes/pref/feeds.php:821
-msgid "Login"
-msgstr "Benutzername"
-
-#: classes/dlg.php:275
-#: classes/dlg.php:728
-#: classes/pref/prefs.php:202
-#: classes/pref/feeds.php:601
-#: classes/pref/feeds.php:827
-msgid "Password"
-msgstr "Passwort"
-
-#: classes/dlg.php:285
-msgid "This feed requires authentication."
-msgstr "Dieser Feed erfordert Authentifizierung."
-
-#: classes/dlg.php:290
-#: classes/dlg.php:346
-#: classes/dlg.php:746
-msgid "Subscribe"
-msgstr "Abonnieren"
-
-#: classes/dlg.php:293
-msgid "More feeds"
-msgstr "Weitere Feeds"
-
-#: classes/dlg.php:316
-#: classes/dlg.php:407
-#: classes/pref/users.php:350
-#: classes/pref/filters.php:593
-#: classes/pref/feeds.php:1258
-#: js/tt-rss.js:170
-msgid "Search"
-msgstr "Suchen"
-
-#: classes/dlg.php:320
-msgid "Popular feeds"
-msgstr "Beliebte Feeds"
-
-#: classes/dlg.php:321
-msgid "Feed archive"
-msgstr "Feed-Archiv"
-
-#: classes/dlg.php:324
-msgid "limit:"
-msgstr "Grenzwert:"
-
-#: classes/dlg.php:347
-#: classes/pref/users.php:376
-#: classes/pref/labels.php:284
-#: classes/pref/filters.php:353
-#: classes/pref/filters.php:615
-#: classes/pref/feeds.php:706
-#: plugins/instances/init.php:297
-msgid "Remove"
-msgstr "Entfernen"
-
-#: classes/dlg.php:358
-msgid "Look for"
-msgstr "Suche nach"
-
-#: classes/dlg.php:366
-msgid "Limit search to:"
-msgstr "Suche begrenzen auf:"
-
-#: classes/dlg.php:382
-msgid "This feed"
-msgstr "Diesen Feed"
-
-#: classes/dlg.php:414
-msgid "Tags for this article (separated by commas):"
-msgstr "Tags für diesen Artikel (durch Komma getrennt):"
-
-#: classes/dlg.php:437
-#: classes/dlg.php:646
-#: classes/pref/users.php:192
-#: classes/pref/labels.php:79
-#: classes/pref/filters.php:360
-#: classes/pref/feeds.php:732
-#: classes/pref/feeds.php:880
-#: plugins/nsfw/init.php:86
-#: plugins/note/init.php:53
-#: plugins/instances/init.php:248
-msgid "Save"
-msgstr "Speichern"
-
-#: classes/dlg.php:445
-msgid "Tag Cloud"
-msgstr "Tagwolke"
-
-#: classes/dlg.php:514
-msgid "Select item(s) by tags"
-msgstr "Artikel nach Tag auswählen"
-
-#: classes/dlg.php:517
+#: classes/dlg.php:166
 msgid "Match:"
 msgstr "Suche: "
 
-#: classes/dlg.php:519
+#: classes/dlg.php:168
 msgid "Any"
 msgstr "Beliebig"
 
-#: classes/dlg.php:522
+#: classes/dlg.php:171
 msgid "All tags."
 msgstr "Alle Tags."
 
-#: classes/dlg.php:524
+#: classes/dlg.php:173
 msgid "Which Tags?"
 msgstr "Welche Tags?"
 
-#: classes/dlg.php:537
+#: classes/dlg.php:186
 msgid "Display entries"
 msgstr "Einträge anzeigen"
 
-#: classes/dlg.php:549
-#: classes/feeds.php:138
-msgid "View as RSS"
-msgstr "Als RSS anzeigen"
-
-#: classes/dlg.php:560
+#: classes/dlg.php:205
 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:589
+#: classes/dlg.php:233
 #: plugins/updater/init.php:327
 #, 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:597
+#: classes/dlg.php:241
 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:601
+#: classes/dlg.php:245
 #: plugins/updater/init.php:331
 msgid "See the release notes"
 msgstr ""
 
-#: classes/dlg.php:603
+#: classes/dlg.php:247
 msgid "Download"
 msgstr "Download"
 
-#: classes/dlg.php:611
+#: classes/dlg.php:255
 msgid "Error receiving version information or no new version available."
 msgstr "Das Abrufen von Update-Informationen ist fehlgeschlagen oder es ist bereits die neuste Version installiert."
 
-#: classes/dlg.php:631
-#, 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 überschreiben. <a target=\"_blank\" class=\"visibleLink\" href=\"%s\">Diese Datei</a> kann als Grundlage benutzt werden."
-
-#: classes/dlg.php:657
-#: plugins/instances/init.php:207
-msgid "Instance"
-msgstr "Instanz"
-
-#: classes/dlg.php:666
-#: plugins/instances/init.php:218
-#: plugins/instances/init.php:315
-msgid "Instance URL"
-msgstr "Instanz-URL"
-
-#: classes/dlg.php:676
-#: plugins/instances/init.php:229
-msgid "Access key:"
-msgstr "Zugriffsberechtigung:"
-
-#: classes/dlg.php:679
-#: plugins/instances/init.php:232
-#: plugins/instances/init.php:316
-msgid "Access key"
-msgstr "Zugriffsberechtigung"
-
-#: classes/dlg.php:683
-#: 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."
-
-#: classes/dlg.php:691
-#: plugins/instances/init.php:244
-msgid "Generate new key"
-msgstr "Neuen Zugriffsschlüssel erzeugen"
-
-#: classes/dlg.php:695
-msgid "Create link"
-msgstr "Verbindung herstellen"
-
-#: classes/dlg.php:708
-msgid "Add one valid RSS feed per line (no feed detection is done)"
-msgstr "Einen gültigen RSS Feed pro Zeile hinzufügen (Es findet keine Feederkennung statt)"
-
-#: classes/dlg.php:717
-msgid "Feeds to subscribe, One per line"
-msgstr "Zu abonnierende Feeds, Einen pro Zeile"
-
-#: classes/dlg.php:739
-msgid "Feeds require authentication."
-msgstr "Feeds benötigen Authentifizierung."
-
 #: classes/feeds.php:68
 msgid "Visit the website"
 msgstr "Offizielle Website besuchen"
@@ -1702,14 +1469,52 @@ msgstr "Offizielle Website besuchen"
 msgid "View as RSS feed"
 msgstr "Als RSS-Feed anzeigen"
 
+#: classes/feeds.php:84
+#: classes/feeds.php:138
+#: classes/pref/feeds.php:1440
+msgid "View as RSS"
+msgstr "Als RSS anzeigen"
+
 #: classes/feeds.php:91
 msgid "Select:"
 msgstr "Auswahl:"
 
+#: classes/feeds.php:92
+#: classes/pref/users.php:363
+#: classes/pref/labels.php:275
+#: classes/pref/filters.php:282
+#: classes/pref/filters.php:330
+#: classes/pref/filters.php:648
+#: classes/pref/filters.php:737
+#: classes/pref/filters.php:764
+#: classes/pref/prefs.php:908
+#: classes/pref/feeds.php:1266
+#: classes/pref/feeds.php:1536
+#: classes/pref/feeds.php:1606
+#: plugins/instances/init.php:290
+msgid "All"
+msgstr "Alle"
+
 #: classes/feeds.php:94
 msgid "Invert"
 msgstr "Umkehren"
 
+#: classes/feeds.php:95
+#: classes/pref/users.php:365
+#: classes/pref/labels.php:277
+#: classes/pref/filters.php:284
+#: classes/pref/filters.php:332
+#: classes/pref/filters.php:650
+#: classes/pref/filters.php:739
+#: classes/pref/filters.php:766
+#: classes/pref/prefs.php:910
+#: classes/pref/feeds.php:1268
+#: classes/pref/feeds.php:1538
+#: classes/pref/feeds.php:1608
+#: plugins/instances/init.php:292
+msgid "None"
+msgstr "Keine"
+
 #: classes/feeds.php:101
 msgid "More..."
 msgstr "Mehr..."
@@ -1735,10 +1540,10 @@ msgid "Move back"
 msgstr "Zurückgehen"
 
 #: classes/feeds.php:118
-#: classes/pref/filters.php:246
-#: classes/pref/filters.php:294
-#: classes/pref/filters.php:688
-#: classes/pref/filters.php:715
+#: classes/pref/filters.php:291
+#: classes/pref/filters.php:339
+#: classes/pref/filters.php:746
+#: classes/pref/filters.php:773
 msgid "Delete"
 msgstr "Löschen"
 
@@ -1792,20 +1597,116 @@ msgid "No articles found to display."
 msgstr "Keine Artikel zum Anzeigen gefunden."
 
 #: classes/feeds.php:755
-#: classes/feeds.php:920
+#: classes/feeds.php:919
 #, php-format
 msgid "Feeds last updated at %s"
 msgstr "Feeds zuletzt aktualisiert am %s"
 
 #: classes/feeds.php:765
-#: classes/feeds.php:930
+#: classes/feeds.php:929
 msgid "Some feeds have update errors (click for details)"
 msgstr "Einige Feeds haben Aktualisierungsfehler (klicken für Details)"
 
-#: classes/feeds.php:910
+#: classes/feeds.php:909
 msgid "No feed selected."
 msgstr "Keinen Feed ausgewählt."
 
+#: classes/feeds.php:962
+#: classes/feeds.php:970
+msgid "Feed or site URL"
+msgstr "URL von Feed oder Seite"
+
+#: classes/feeds.php:976
+#: classes/pref/feeds.php:560
+#: classes/pref/feeds.php:782
+#: classes/pref/feeds.php:1761
+msgid "Place in category:"
+msgstr "In Kategorie einordnen:"
+
+#: classes/feeds.php:984
+msgid "Available feeds"
+msgstr "Verfügbare Feeds"
+
+#: classes/feeds.php:996
+#: classes/pref/users.php:155
+#: classes/pref/feeds.php:590
+#: classes/pref/feeds.php:818
+msgid "Authentication"
+msgstr "Authentifizierung"
+
+#: classes/feeds.php:1000
+#: classes/pref/users.php:420
+#: classes/pref/feeds.php:596
+#: classes/pref/feeds.php:822
+#: classes/pref/feeds.php:1775
+msgid "Login"
+msgstr "Benutzername"
+
+#: classes/feeds.php:1003
+#: classes/pref/prefs.php:202
+#: classes/pref/feeds.php:602
+#: classes/pref/feeds.php:828
+#: classes/pref/feeds.php:1778
+msgid "Password"
+msgstr "Passwort"
+
+#: classes/feeds.php:1013
+msgid "This feed requires authentication."
+msgstr "Dieser Feed erfordert Authentifizierung."
+
+#: classes/feeds.php:1018
+#: classes/feeds.php:1074
+#: classes/pref/feeds.php:1796
+msgid "Subscribe"
+msgstr "Abonnieren"
+
+#: classes/feeds.php:1021
+msgid "More feeds"
+msgstr "Weitere Feeds"
+
+#: classes/feeds.php:1044
+#: classes/feeds.php:1135
+#: classes/pref/users.php:350
+#: classes/pref/filters.php:641
+#: classes/pref/feeds.php:1259
+#: js/tt-rss.js:170
+msgid "Search"
+msgstr "Suchen"
+
+#: classes/feeds.php:1048
+msgid "Popular feeds"
+msgstr "Beliebte Feeds"
+
+#: classes/feeds.php:1049
+msgid "Feed archive"
+msgstr "Feed-Archiv"
+
+#: classes/feeds.php:1052
+msgid "limit:"
+msgstr "Grenzwert:"
+
+#: classes/feeds.php:1075
+#: classes/pref/users.php:376
+#: classes/pref/labels.php:284
+#: classes/pref/filters.php:398
+#: classes/pref/filters.php:667
+#: classes/pref/feeds.php:707
+#: plugins/instances/init.php:297
+msgid "Remove"
+msgstr "Entfernen"
+
+#: classes/feeds.php:1086
+msgid "Look for"
+msgstr "Suche nach"
+
+#: classes/feeds.php:1094
+msgid "Limit search to:"
+msgstr "Suche begrenzen auf:"
+
+#: classes/feeds.php:1110
+msgid "This feed"
+msgstr "Diesen Feed"
+
 #: classes/backend.php:33
 msgid "Other interface tips are available in the Tiny Tiny RSS wiki."
 msgstr "Im Wiki von Tiny Tiny RSS finden Sie weitere Tipps."
@@ -1878,7 +1779,7 @@ msgid "Error: please upload OPML file."
 msgstr "Fehler: bitte eine OPML-Datei hochladen."
 
 #: classes/opml.php:475
-#: plugins/googlereaderimport/init.php:157
+#: plugins/googlereaderimport/init.php:161
 msgid "Error while parsing document."
 msgstr "Fehler beim Parsen des Dokuments."
 
@@ -1925,8 +1826,8 @@ msgid "Change password to"
 msgstr "Passwort ändern in"
 
 #: classes/pref/users.php:177
-#: classes/pref/feeds.php:609
-#: classes/pref/feeds.php:833
+#: classes/pref/feeds.php:610
+#: classes/pref/feeds.php:834
 msgid "Options"
 msgstr "Optionen"
 
@@ -1963,6 +1864,21 @@ msgstr "Sende das neue Passwort von Benutzer <b>%s</b> an <b>%s</b>"
 msgid "[tt-rss] Password change notification"
 msgstr "[tt-rss] Benachrichtigung: Passwort geändert"
 
+#: classes/pref/users.php:360
+#: classes/pref/labels.php:272
+#: classes/pref/filters.php:279
+#: classes/pref/filters.php:327
+#: classes/pref/filters.php:645
+#: classes/pref/filters.php:734
+#: classes/pref/filters.php:761
+#: classes/pref/prefs.php:905
+#: classes/pref/feeds.php:1263
+#: classes/pref/feeds.php:1533
+#: classes/pref/feeds.php:1603
+#: plugins/instances/init.php:287
+msgid "Select"
+msgstr "Auswahl"
+
 #: classes/pref/users.php:368
 msgid "Create user"
 msgstr "Benutzer anlegen"
@@ -1972,7 +1888,7 @@ msgid "Details"
 msgstr "Details"
 
 #: classes/pref/users.php:374
-#: classes/pref/filters.php:612
+#: classes/pref/filters.php:660
 #: plugins/instances/init.php:296
 msgid "Edit"
 msgstr "Bearbeiten"
@@ -1999,6 +1915,8 @@ msgid "No matching users found."
 msgstr "Keine zugehörigen Benutzer gefunden."
 
 #: classes/pref/labels.php:22
+#: classes/pref/filters.php:268
+#: classes/pref/filters.php:725
 msgid "Caption"
 msgstr "Titel"
 
@@ -2023,120 +1941,131 @@ msgstr "Label <b>%s</b> erstellt"
 msgid "Clear colors"
 msgstr "Farben löschen"
 
-#: classes/pref/filters.php:60
+#: classes/pref/filters.php:96
 msgid "Articles matching this filter:"
 msgstr "Artikel, die auf diesen Filter passen: "
 
-#: classes/pref/filters.php:97
+#: classes/pref/filters.php:133
 msgid "No recent articles matching this filter have been found."
 msgstr "Keine kürzlich erschienenen Artikel gefunden, die auf diesen Filter passen."
 
-#: classes/pref/filters.php:101
+#: classes/pref/filters.php:137
 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:229
-#: classes/pref/filters.php:671
-#: classes/pref/filters.php:786
+#: classes/pref/filters.php:274
+#: classes/pref/filters.php:729
+#: classes/pref/filters.php:844
 msgid "Match"
 msgstr "Kriterien"
 
-#: classes/pref/filters.php:243
-#: classes/pref/filters.php:291
-#: classes/pref/filters.php:685
-#: classes/pref/filters.php:712
+#: classes/pref/filters.php:288
+#: classes/pref/filters.php:336
+#: classes/pref/filters.php:743
+#: classes/pref/filters.php:770
 msgid "Add"
 msgstr "Hinzufügen"
 
-#: classes/pref/filters.php:277
-#: classes/pref/filters.php:698
+#: classes/pref/filters.php:322
+#: classes/pref/filters.php:756
 msgid "Apply actions"
 msgstr "Aktionen anwenden"
 
-#: classes/pref/filters.php:327
-#: classes/pref/filters.php:727
+#: classes/pref/filters.php:372
+#: classes/pref/filters.php:785
 msgid "Enabled"
 msgstr "Aktiviert"
 
-#: classes/pref/filters.php:336
-#: classes/pref/filters.php:730
+#: classes/pref/filters.php:381
+#: classes/pref/filters.php:788
 msgid "Match any rule"
 msgstr "Ein erfülltes Kriterium ist ausreichend"
 
-#: classes/pref/filters.php:345
-#: classes/pref/filters.php:733
+#: classes/pref/filters.php:390
+#: classes/pref/filters.php:791
 #, fuzzy
 msgid "Inverse matching"
 msgstr "Invertierte Übereinstimmung"
 
-#: classes/pref/filters.php:357
-#: classes/pref/filters.php:740
+#: classes/pref/filters.php:402
+#: classes/pref/filters.php:798
 msgid "Test"
 msgstr "Test"
 
-#: classes/pref/filters.php:390
+#: classes/pref/filters.php:435
 #, fuzzy
 msgid "(inverse)"
 msgstr "Invertiert"
 
-#: classes/pref/filters.php:389
+#: classes/pref/filters.php:434
 #, fuzzy, php-format
 msgid "%s on %s in %s %s"
 msgstr "%s innerhalb %s von %s"
 
-#: classes/pref/filters.php:609
+#: classes/pref/filters.php:657
 msgid "Combine"
 msgstr "Zusammenfügen"
 
-#: classes/pref/filters.php:619
-#: classes/pref/feeds.php:1317
+#: classes/pref/filters.php:663
+#: classes/pref/feeds.php:1279
+#: classes/pref/feeds.php:1293
+msgid "Reset sort order"
+msgstr "Sortierreihenfolge zurücksetzen"
+
+#: classes/pref/filters.php:671
+#: classes/pref/feeds.php:1318
 msgid "Rescore articles"
 msgstr "Artikel neu bewerten"
 
-#: classes/pref/filters.php:743
+#: classes/pref/filters.php:801
 msgid "Create"
 msgstr "Erstellen"
 
-#: classes/pref/filters.php:798
+#: classes/pref/filters.php:856
 msgid "Inverse regular expression matching"
 msgstr ""
 
-#: classes/pref/filters.php:800
+#: classes/pref/filters.php:858
 msgid "on field"
 msgstr "in Feld"
 
-#: classes/pref/filters.php:806
-#: js/PrefFilterTree.js:29
+#: classes/pref/filters.php:864
+#: js/PrefFilterTree.js:45
 #: plugins/digest/digest.js:242
 msgid "in"
 msgstr "in"
 
-#: classes/pref/filters.php:819
+#: classes/pref/filters.php:877
 msgid "Save rule"
 msgstr "Regel speichern"
 
-#: classes/pref/filters.php:819
-#: js/functions.js:1069
+#: classes/pref/filters.php:877
+#: js/functions.js:1063
 msgid "Add rule"
 msgstr "Regel hinzufügen"
 
-#: classes/pref/filters.php:842
+#: classes/pref/filters.php:900
 msgid "Perform Action"
 msgstr "Aktion ausführen"
 
-#: classes/pref/filters.php:868
+#: classes/pref/filters.php:926
 msgid "with parameters:"
 msgstr "mit Parametern:"
 
-#: classes/pref/filters.php:886
+#: classes/pref/filters.php:944
 msgid "Save action"
 msgstr "Aktion speichern"
 
-#: classes/pref/filters.php:886
-#: js/functions.js:1095
+#: classes/pref/filters.php:944
+#: js/functions.js:1089
 msgid "Add action"
 msgstr "Aktion hinzufügen"
 
+#: classes/pref/filters.php:967
+#, fuzzy
+msgid "[No caption]"
+msgstr "Titel"
+
 #: classes/pref/prefs.php:17
 msgid "Old password cannot be blank."
 msgstr "Altes Passwort darf nicht leer sein."
@@ -2340,237 +2269,264 @@ msgstr "Ausgewählte Plugins aktivieren"
 msgid "Incorrect password"
 msgstr "Falsches Passwort"
 
-#: classes/pref/feeds.php:12
+#: classes/pref/prefs.php:879
+#, 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 überschreiben. <a target=\"_blank\" class=\"visibleLink\" href=\"%s\">Diese Datei</a> kann als Grundlage benutzt werden."
+
+#: classes/pref/prefs.php:919
+msgid "Create profile"
+msgstr "Profil erstellen"
+
+#: classes/pref/prefs.php:942
+#: classes/pref/prefs.php:972
+msgid "(active)"
+msgstr "(aktiv)"
+
+#: classes/pref/prefs.php:1006
+msgid "Remove selected profiles"
+msgstr "Ausgewählte Profile entfernen"
+
+#: classes/pref/prefs.php:1008
+msgid "Activate profile"
+msgstr "Profil aktivieren"
+
+#: classes/pref/feeds.php:13
 msgid "Check to enable field"
 msgstr "Ankreuzen um das Feld zu aktivieren"
 
-#: classes/pref/feeds.php:60
-#: classes/pref/feeds.php:208
-#: classes/pref/feeds.php:250
-#: classes/pref/feeds.php:256
-#: classes/pref/feeds.php:281
-#, php-format
-msgid "(%d feed)"
-msgid_plural "(%d feeds)"
-msgstr[0] "(%d Feed)"
-msgstr[1] "(%d Feeds)"
-
-#: classes/pref/feeds.php:526
+#: classes/pref/feeds.php:527
 msgid "Feed Title"
 msgstr "Feed-Titel"
 
-#: classes/pref/feeds.php:582
-#: classes/pref/feeds.php:808
+#: classes/pref/feeds.php:568
+#: classes/pref/feeds.php:793
+msgid "Update"
+msgstr "Aktualisieren"
+
+#: classes/pref/feeds.php:583
+#: classes/pref/feeds.php:809
 msgid "Article purging:"
 msgstr "Artikel löschen:"
 
-#: classes/pref/feeds.php:605
+#: classes/pref/feeds.php:606
 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:621
-#: classes/pref/feeds.php:837
+#: classes/pref/feeds.php:622
+#: classes/pref/feeds.php:838
 msgid "Hide from Popular feeds"
 msgstr "Nicht unter beliebten Feeds aufführen"
 
-#: classes/pref/feeds.php:633
-#: classes/pref/feeds.php:843
+#: classes/pref/feeds.php:634
+#: classes/pref/feeds.php:844
 msgid "Include in e-mail digest"
 msgstr "In E-Mail-Zusammenfassung aufnehmen"
 
-#: classes/pref/feeds.php:646
-#: classes/pref/feeds.php:849
+#: classes/pref/feeds.php:647
+#: classes/pref/feeds.php:850
 msgid "Always display image attachments"
 msgstr "Angehängte Bilder immer anzeigen"
 
-#: classes/pref/feeds.php:659
-#: classes/pref/feeds.php:857
+#: classes/pref/feeds.php:660
+#: classes/pref/feeds.php:858
 msgid "Do not embed images"
 msgstr "Bilder nicht einbetten"
 
-#: classes/pref/feeds.php:672
-#: classes/pref/feeds.php:865
+#: classes/pref/feeds.php:673
+#: classes/pref/feeds.php:866
 msgid "Cache images locally"
 msgstr "Bilder lokal zwischenspeichern"
 
-#: classes/pref/feeds.php:684
-#: classes/pref/feeds.php:871
+#: classes/pref/feeds.php:685
+#: classes/pref/feeds.php:872
 msgid "Mark updated articles as unread"
 msgstr "Aktualisierte Artikel als ungelesen markieren"
 
-#: classes/pref/feeds.php:690
+#: classes/pref/feeds.php:691
 msgid "Icon"
 msgstr "Symbol"
 
-#: classes/pref/feeds.php:704
+#: classes/pref/feeds.php:705
 msgid "Replace"
 msgstr "Ersetzen"
 
-#: classes/pref/feeds.php:723
+#: classes/pref/feeds.php:724
 msgid "Resubscribe to push updates"
 msgstr "Abonnierte Feeds:"
 
-#: classes/pref/feeds.php:730
+#: classes/pref/feeds.php:731
 msgid "Resets PubSubHubbub subscription status for push-enabled feeds."
 msgstr "PubSubHubbub-Abonnementstatus für Push-fähige Feeds zurücksetzen."
 
-#: classes/pref/feeds.php:1111
-#: classes/pref/feeds.php:1164
+#: classes/pref/feeds.php:1112
+#: classes/pref/feeds.php:1165
 msgid "All done."
 msgstr "Fertig."
 
-#: classes/pref/feeds.php:1219
+#: classes/pref/feeds.php:1220
 msgid "Feeds with errors"
 msgstr "Feeds mit Fehlern"
 
-#: classes/pref/feeds.php:1239
+#: classes/pref/feeds.php:1240
 msgid "Inactive feeds"
 msgstr "Inaktive Feeds"
 
-#: classes/pref/feeds.php:1276
+#: classes/pref/feeds.php:1277
 msgid "Edit selected feeds"
 msgstr "Bearbeite ausgewählte Feeds"
 
-#: classes/pref/feeds.php:1278
-#: classes/pref/feeds.php:1292
-msgid "Reset sort order"
-msgstr "Sortierreihenfolge zurücksetzen"
-
-#: classes/pref/feeds.php:1280
-#: js/prefs.js:1764
+#: classes/pref/feeds.php:1281
+#: js/prefs.js:1770
 msgid "Batch subscribe"
 msgstr "Mehrere Feeds abonnieren"
 
-#: classes/pref/feeds.php:1285
+#: classes/pref/feeds.php:1286
 msgid "Categories"
 msgstr "Kategorien"
 
-#: classes/pref/feeds.php:1288
+#: classes/pref/feeds.php:1289
 msgid "Add category"
 msgstr "Kategorie anlegen"
 
-#: classes/pref/feeds.php:1290
+#: classes/pref/feeds.php:1291
 msgid "(Un)hide empty categories"
 msgstr "Zeige/Verstecke leere Kategorien"
 
-#: classes/pref/feeds.php:1294
+#: classes/pref/feeds.php:1295
 msgid "Remove selected"
 msgstr "Ausgewählte Kategorien löschen"
 
-#: classes/pref/feeds.php:1308
+#: classes/pref/feeds.php:1309
 msgid "More actions..."
 msgstr "Mehr Aktionen..."
 
-#: classes/pref/feeds.php:1312
+#: classes/pref/feeds.php:1313
 msgid "Manual purge"
 msgstr "Manuelles Löschen"
 
-#: classes/pref/feeds.php:1316
+#: classes/pref/feeds.php:1317
 msgid "Clear feed data"
 msgstr "Feed-Daten löschen"
 
-#: classes/pref/feeds.php:1367
+#: classes/pref/feeds.php:1368
 msgid "OPML"
 msgstr "OPML"
 
-#: classes/pref/feeds.php:1369
+#: classes/pref/feeds.php:1370
 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:1371
+#: classes/pref/feeds.php:1372
 msgid "Only main settings profile can be migrated using OPML."
 msgstr "Nur das Hauptprofil kann mit OPML gesichert werden."
 
-#: classes/pref/feeds.php:1384
+#: classes/pref/feeds.php:1385
 msgid "Import my OPML"
 msgstr "OPML importieren"
 
-#: classes/pref/feeds.php:1388
+#: classes/pref/feeds.php:1389
 msgid "Filename:"
 msgstr "Dateiname:"
 
-#: classes/pref/feeds.php:1390
+#: classes/pref/feeds.php:1391
 msgid "Include settings"
 msgstr "Inklusive Einstellungen"
 
-#: classes/pref/feeds.php:1394
+#: classes/pref/feeds.php:1395
 msgid "Export OPML"
 msgstr "OPML exportieren"
 
-#: classes/pref/feeds.php:1398
+#: classes/pref/feeds.php:1399
 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:1400
+#: classes/pref/feeds.php:1401
 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:1403
+msgid "Public OPML URL"
+msgstr "Öffentliche OPML-URL"
+
+#: classes/pref/feeds.php:1404
 msgid "Display published OPML URL"
 msgstr "Zeige öffentliche OPML-URL"
 
-#: classes/pref/feeds.php:1413
+#: classes/pref/feeds.php:1414
 msgid "Firefox integration"
 msgstr "Firefox-Integration"
 
-#: classes/pref/feeds.php:1415
+#: classes/pref/feeds.php:1416
 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:1422
+#: classes/pref/feeds.php:1423
 msgid "Click here to register this site as a feed reader."
 msgstr "Diese Website als Feedreader registrieren."
 
-#: classes/pref/feeds.php:1430
+#: classes/pref/feeds.php:1431
 msgid "Published & shared articles / Generated feeds"
 msgstr "Veröffentlichte & geteilte Artikel / erzeugte Feeds"
 
-#: classes/pref/feeds.php:1432
+#: classes/pref/feeds.php:1433
 msgid "Published articles and generated feeds"
 msgstr "Veröffentlichte Artikel und erzeugte Feeds"
 
-#: classes/pref/feeds.php:1434
+#: classes/pref/feeds.php:1435
 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:1440
+#: classes/pref/feeds.php:1441
 msgid "Display URL"
 msgstr "Zeige URL an"
 
-#: classes/pref/feeds.php:1443
+#: classes/pref/feeds.php:1444
 msgid "Clear all generated URLs"
 msgstr "Alle generierten URLs löschen"
 
-#: classes/pref/feeds.php:1445
+#: classes/pref/feeds.php:1446
 msgid "Articles shared by URL"
 msgstr "Per URL geteilte Artikel"
 
-#: classes/pref/feeds.php:1447
+#: classes/pref/feeds.php:1448
 msgid "You can disable all articles shared by unique URLs here."
 msgstr "Sie können alle durch URLs geteilten Artikel hier deaktivieren."
 
-#: classes/pref/feeds.php:1450
+#: classes/pref/feeds.php:1451
 msgid "Unshare all articles"
 msgstr "Alle veröffentlichten Artikel zurückziehen"
 
-#: classes/pref/feeds.php:1528
+#: classes/pref/feeds.php:1529
 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:1565
-#: classes/pref/feeds.php:1635
+#: classes/pref/feeds.php:1566
+#: classes/pref/feeds.php:1636
 msgid "Click to edit feed"
 msgstr "Zum Bearbeiten klicken"
 
-#: classes/pref/feeds.php:1583
-#: classes/pref/feeds.php:1655
+#: classes/pref/feeds.php:1584
+#: classes/pref/feeds.php:1656
 msgid "Unsubscribe from selected feeds"
 msgstr "Ausgewählte Feeds abbestellen"
 
-#: classes/pref/feeds.php:1594
+#: classes/pref/feeds.php:1595
 msgid "These feeds have not been updated because of errors:"
 msgstr "Folgende Feeds konnten aufgrund von Fehlern nicht aktualisiert werden:"
 
+#: classes/pref/feeds.php:1758
+msgid "Add one valid RSS feed per line (no feed detection is done)"
+msgstr "Einen gültigen RSS Feed pro Zeile hinzufügen (Es findet keine Feederkennung statt)"
+
+#: classes/pref/feeds.php:1767
+msgid "Feeds to subscribe, One per line"
+msgstr "Zu abonnierende Feeds, Einen pro Zeile"
+
+#: classes/pref/feeds.php:1789
+msgid "Feeds require authentication."
+msgstr "Feeds benötigen Authentifizierung."
+
 #: plugins/digest/digest_body.php:59
 msgid "Your browser doesn't support Javascript, which is required for this application to function properly. Please check your browser settings."
 msgstr "Diese Anwendung benötigt Javascript um ordnungsgemäß zu funktionieren. Bitte überprüfen Sie Ihre Browser-Einstellungen."
@@ -2824,24 +2780,24 @@ msgstr "Wert setzen"
 msgid "No file uploaded."
 msgstr ""
 
-#: plugins/googlereaderimport/init.php:149
+#: plugins/googlereaderimport/init.php:153
 #, php-format
 msgid "All done. %d out of %d articles imported."
 msgstr ""
 
-#: plugins/googlereaderimport/init.php:153
+#: plugins/googlereaderimport/init.php:157
 msgid "The document has incorrect format."
 msgstr ""
 
-#: plugins/googlereaderimport/init.php:322
+#: plugins/googlereaderimport/init.php:326
 msgid "Import starred or shared items from Google Reader"
 msgstr ""
 
-#: plugins/googlereaderimport/init.php:326
+#: plugins/googlereaderimport/init.php:330
 msgid "Paste your starred.json or shared.json into the form below."
 msgstr ""
 
-#: plugins/googlereaderimport/init.php:340
+#: plugins/googlereaderimport/init.php:344
 msgid "Import my Starred items"
 msgstr ""
 
@@ -2849,6 +2805,38 @@ msgstr ""
 msgid "Linked"
 msgstr "Verbunden"
 
+#: plugins/instances/init.php:207
+#: plugins/instances/init.php:399
+msgid "Instance"
+msgstr "Instanz"
+
+#: plugins/instances/init.php:218
+#: plugins/instances/init.php:315
+#: plugins/instances/init.php:408
+msgid "Instance URL"
+msgstr "Instanz-URL"
+
+#: plugins/instances/init.php:229
+#: plugins/instances/init.php:418
+msgid "Access key:"
+msgstr "Zugriffsberechtigung:"
+
+#: plugins/instances/init.php:232
+#: plugins/instances/init.php:316
+#: plugins/instances/init.php:421
+msgid "Access key"
+msgstr "Zugriffsberechtigung"
+
+#: plugins/instances/init.php:236
+#: plugins/instances/init.php:425
+msgid "Use one access key for both linked instances."
+msgstr "Benutzen Sie den selben Zugriffschlüssel für beide verbundenen Instanzen."
+
+#: plugins/instances/init.php:244
+#: plugins/instances/init.php:433
+msgid "Generate new key"
+msgstr "Neuen Zugriffsschlüssel erzeugen"
+
 #: plugins/instances/init.php:295
 msgid "Link instance"
 msgstr "Instanz verbinden"
@@ -2869,6 +2857,10 @@ msgstr "Status"
 msgid "Stored feeds"
 msgstr "Gespeicherte Feeds"
 
+#: plugins/instances/init.php:437
+msgid "Create link"
+msgstr "Verbindung herstellen"
+
 #: plugins/share/init.php:27
 msgid "Share by URL"
 msgstr "Per URL teilen"
@@ -2928,167 +2920,171 @@ msgstr "Sind Sie sicher, dass Sie diesen Fehler an tt-rss.org melden wollen? Der
 msgid "close"
 msgstr ""
 
-#: js/functions.js:627
+#: js/functions.js:621
 msgid "Date syntax appears to be correct:"
 msgstr "Die Datumssyntax scheint korrekt zu sein:"
 
-#: js/functions.js:630
+#: js/functions.js:624
 msgid "Date syntax is incorrect."
 msgstr "Die Datumssyntax ist falsch."
 
-#: js/functions.js:724
+#: js/functions.js:636
+msgid "Error explained"
+msgstr ""
+
+#: js/functions.js:718
 msgid "Upload complete."
 msgstr "Upload fertig."
 
-#: js/functions.js:748
+#: js/functions.js:742
 msgid "Remove stored feed icon?"
 msgstr "Gespeichertes Feed-Symbol entfernen?"
 
-#: js/functions.js:753
+#: js/functions.js:747
 msgid "Removing feed icon..."
 msgstr "Feedsymbol wird entfernt."
 
-#: js/functions.js:758
+#: js/functions.js:752
 msgid "Feed icon removed."
 msgstr "Feedsymbol entfernt."
 
-#: js/functions.js:780
+#: js/functions.js:774
 msgid "Please select an image file to upload."
 msgstr "Bitte eine Bilddatei zum Hochladen auswählen."
 
-#: js/functions.js:782
+#: js/functions.js:776
 msgid "Upload new icon for this feed?"
 msgstr "Neues Symbol für diesen Feed hochladen?"
 
-#: js/functions.js:783
+#: js/functions.js:777
 msgid "Uploading, please wait..."
 msgstr "Lade hoch, bitte warten..."
 
-#: js/functions.js:799
+#: js/functions.js:793
 msgid "Please enter label caption:"
 msgstr "Bitte einen Label-Titel eingeben:"
 
-#: js/functions.js:804
+#: js/functions.js:798
 msgid "Can't create label: missing caption."
 msgstr "Kann das Label nicht hinzufügen: fehlender Titel."
 
-#: js/functions.js:847
+#: js/functions.js:841
 msgid "Subscribe to Feed"
 msgstr "Feed abonnieren"
 
-#: js/functions.js:874
+#: js/functions.js:868
 msgid "Subscribed to %s"
 msgstr "%s abonniert"
 
-#: js/functions.js:879
+#: js/functions.js:873
 msgid "Specified URL seems to be invalid."
 msgstr "Die angegebene URL scheint ungültig zu sein."
 
-#: js/functions.js:882
+#: js/functions.js:876
 msgid "Specified URL doesn't seem to contain any feeds."
 msgstr "Die angegebene URL scheint keine Feeds zu enthalten."
 
-#: js/functions.js:935
+#: js/functions.js:929
 msgid "Couldn't download the specified URL: %s"
 msgstr "Die angegebene URL konnte nicht heruntergeladen werden: %s"
 
-#: js/functions.js:939
+#: js/functions.js:933
 msgid "You are already subscribed to this feed."
 msgstr "Sie haben diesen Feed bereits abonniert."
 
-#: js/functions.js:1069
+#: js/functions.js:1063
 msgid "Edit rule"
 msgstr "Regel bearbeiten"
 
-#: js/functions.js:1095
+#: js/functions.js:1089
 msgid "Edit action"
 msgstr "Aktion bearbeiten"
 
-#: js/functions.js:1132
+#: js/functions.js:1126
 msgid "Create Filter"
 msgstr "Filter erstellen"
 
-#: js/functions.js:1247
+#: js/functions.js:1241
 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:1258
+#: js/functions.js:1252
 msgid "Subscription reset."
 msgstr "Abonnement zurückgesetzt."
 
-#: js/functions.js:1268
+#: js/functions.js:1262
 #: js/tt-rss.js:619
 msgid "Unsubscribe from %s?"
 msgstr "%s abbestellen?"
 
-#: js/functions.js:1271
+#: js/functions.js:1265
 msgid "Removing feed..."
 msgstr "Feed wird entfernt..."
 
-#: js/functions.js:1379
+#: js/functions.js:1373
 msgid "Please enter category title:"
 msgstr "Bitte geben Sie den Kategorietitel ein:"
 
-#: js/functions.js:1410
+#: js/functions.js:1404
 msgid "Generate new syndication address for this feed?"
 msgstr "Neue Veröffentlichungsadresse für diesen Feed erzeugen?"
 
-#: js/functions.js:1414
-#: js/prefs.js:1234
+#: js/functions.js:1408
+#: js/prefs.js:1222
 msgid "Trying to change address..."
 msgstr "Versuche, die Adresse zu ändern..."
 
-#: js/functions.js:1601
+#: js/functions.js:1595
 #: js/tt-rss.js:396
 #: js/tt-rss.js:600
 msgid "You can't edit this kind of feed."
 msgstr "Sie können diese Art von Feed nicht bearbeiten."
 
-#: js/functions.js:1616
+#: js/functions.js:1610
 msgid "Edit Feed"
 msgstr "Feed bearbeiten"
 
-#: js/functions.js:1622
+#: js/functions.js:1616
 #: js/prefs.js:194
 #: js/prefs.js:749
 msgid "Saving data..."
 msgstr "Speichere Daten..."
 
-#: js/functions.js:1654
+#: js/functions.js:1648
 msgid "More Feeds"
 msgstr "Weitere Feeds"
 
-#: js/functions.js:1715
-#: js/functions.js:1825
+#: js/functions.js:1709
+#: js/functions.js:1819
 #: 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
+#: js/prefs.js:1198
+#: js/prefs.js:1343
 msgid "No feeds are selected."
 msgstr "Keine Feeds ausgewählt."
 
-#: js/functions.js:1757
+#: js/functions.js:1751
 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:1796
+#: js/functions.js:1790
 msgid "Feeds with update errors"
 msgstr "Feeds mit Aktualisierungsfehlern"
 
-#: js/functions.js:1807
-#: js/prefs.js:1192
+#: js/functions.js:1801
+#: js/prefs.js:1180
 msgid "Remove selected feeds?"
 msgstr "Ausgewählte Feeds entfernen?"
 
-#: js/functions.js:1810
-#: js/prefs.js:1195
+#: js/functions.js:1804
+#: js/prefs.js:1183
 msgid "Removing selected feeds..."
 msgstr "Ausgewählte Feeds werden entfernt..."
 
-#: js/functions.js:1908
+#: js/functions.js:1902
 msgid "Help"
 msgstr "Hilfe"
 
@@ -3100,7 +3096,7 @@ msgstr "Kategorie bearbeiten"
 msgid "Remove category"
 msgstr "Kategorie entfernen"
 
-#: js/PrefFilterTree.js:32
+#: js/PrefFilterTree.js:48
 msgid "Inverse"
 msgstr "Invertiert"
 
@@ -3137,7 +3133,7 @@ msgid "Removing selected labels..."
 msgstr "Ausgewählte Label werden entfernt..."
 
 #: js/prefs.js:295
-#: js/prefs.js:1396
+#: js/prefs.js:1384
 msgid "No labels are selected."
 msgstr "Keine Label ausgewählt."
 
@@ -3240,144 +3236,144 @@ msgstr "Mehrere Feeds bearbeiten"
 msgid "Save changes to selected feeds?"
 msgstr "Änderungen an den gewählten Feeds speichern?"
 
-#: js/prefs.js:797
+#: js/prefs.js:785
 msgid "OPML Import"
 msgstr "OPML Import"
 
-#: js/prefs.js:824
+#: js/prefs.js:812
 msgid "Please choose an OPML file first."
 msgstr "Bitte zuerst eine OPML-Datei auswählen."
 
-#: js/prefs.js:827
+#: js/prefs.js:815
 #: plugins/import_export/import_export.js:115
 #: plugins/googlereaderimport/init.js:45
 msgid "Importing, please wait..."
 msgstr "Importiere, bitte warten..."
 
-#: js/prefs.js:980
+#: js/prefs.js:968
 msgid "Reset to defaults?"
 msgstr "Auf Standardwerte zurücksetzen?"
 
-#: js/prefs.js:1099
+#: js/prefs.js:1087
 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:1105
+#: js/prefs.js:1093
 msgid "Removing category..."
 msgstr "Kategorie wird entfernt..."
 
-#: js/prefs.js:1126
+#: js/prefs.js:1114
 msgid "Remove selected categories?"
 msgstr "Ausgewählte Kategorien entfernen?"
 
-#: js/prefs.js:1129
+#: js/prefs.js:1117
 msgid "Removing selected categories..."
 msgstr "Ausgewählte Kategorien werden entfernt..."
 
-#: js/prefs.js:1142
+#: js/prefs.js:1130
 msgid "No categories are selected."
 msgstr "Keine Kategorien ausgewählt."
 
-#: js/prefs.js:1150
+#: js/prefs.js:1138
 msgid "Category title:"
 msgstr "Name der Kategorie:"
 
-#: js/prefs.js:1154
+#: js/prefs.js:1142
 msgid "Creating category..."
 msgstr "Kategorie wird erstellt..."
 
-#: js/prefs.js:1181
+#: js/prefs.js:1169
 msgid "Feeds without recent updates"
 msgstr "Feeds ohne kürzliche Aktualisierungen"
 
-#: js/prefs.js:1230
+#: js/prefs.js:1218
 msgid "Replace current OPML publishing address with a new one?"
 msgstr "Aktuelle Veröffentlichungsadresse durch eine Neue ersetzen?"
 
-#: js/prefs.js:1319
+#: js/prefs.js:1307
 msgid "Clearing feed..."
 msgstr "Feed wird geleert..."
 
-#: js/prefs.js:1339
+#: js/prefs.js:1327
 msgid "Rescore articles in selected feeds?"
 msgstr "Artikel in gewählten Feeds neu bewerten?"
 
-#: js/prefs.js:1342
+#: js/prefs.js:1330
 msgid "Rescoring selected feeds..."
 msgstr "Ausgewählte Feed werden neu bewertet..."
 
-#: js/prefs.js:1362
+#: js/prefs.js:1350
 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."
 
-#: js/prefs.js:1365
+#: js/prefs.js:1353
 msgid "Rescoring feeds..."
 msgstr "Feed werden neu bewertet..."
 
-#: js/prefs.js:1382
+#: js/prefs.js:1370
 msgid "Reset selected labels to default colors?"
 msgstr "Farben der ausgewählten Label auf Standardwerte zurücksetzen?"
 
-#: js/prefs.js:1419
+#: js/prefs.js:1407
 msgid "Settings Profiles"
 msgstr "Einstellungsprofile"
 
-#: js/prefs.js:1428
+#: js/prefs.js:1416
 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:1431
+#: js/prefs.js:1419
 msgid "Removing selected profiles..."
 msgstr "Ausgewählte Profile werden entfernt..."
 
-#: js/prefs.js:1446
+#: js/prefs.js:1434
 msgid "No profiles are selected."
 msgstr "Keine Profile ausgewählt."
 
-#: js/prefs.js:1454
-#: js/prefs.js:1507
+#: js/prefs.js:1442
+#: js/prefs.js:1495
 msgid "Activate selected profile?"
 msgstr "Ausgewählte Profile entfernen?"
 
-#: js/prefs.js:1470
-#: js/prefs.js:1523
+#: js/prefs.js:1458
+#: js/prefs.js:1511
 msgid "Please choose a profile to activate."
 msgstr "Bitte ein Profil zum Aktivieren auswählen."
 
-#: js/prefs.js:1475
+#: js/prefs.js:1463
 msgid "Creating profile..."
 msgstr "Profil wird erstellt..."
 
-#: js/prefs.js:1531
+#: js/prefs.js:1519
 msgid "This will invalidate all previously generated feed URLs. Continue?"
 msgstr "Alle zuvor erstellten Feed-URLs werden ungültig. Fortfahren?"
 
-#: js/prefs.js:1534
-#: js/prefs.js:1553
+#: js/prefs.js:1522
+#: js/prefs.js:1541
 msgid "Clearing URLs..."
 msgstr "Leere URLs..."
 
-#: js/prefs.js:1541
+#: js/prefs.js:1529
 msgid "Generated URLs cleared."
 msgstr "Generierte URLs gelöscht."
 
-#: js/prefs.js:1550
+#: js/prefs.js:1538
 msgid "This will invalidate all previously shared article URLs. Continue?"
 msgstr "Alle bisher geteilten Artikel URLs werden ungültig. Fortfahren?"
 
-#: js/prefs.js:1560
+#: js/prefs.js:1548
 msgid "Shared URLs cleared."
 msgstr "Geteilte URLs geleert."
 
-#: js/prefs.js:1648
+#: js/prefs.js:1654
 msgid "Label Editor"
 msgstr "Label-Editor"
 
-#: js/prefs.js:1770
+#: js/prefs.js:1776
 msgid "Subscribing to feeds..."
 msgstr "Abonniere Feeds..."
 
-#: js/prefs.js:1807
+#: js/prefs.js:1813
 msgid "Clear stored data for this plugin?"
 msgstr "Gesicherte Daten dieses Plugins löschen?"
 
@@ -3398,28 +3394,32 @@ msgstr "Bitte erst das Mail-Plugin aktivieren."
 msgid "Please enable embed_original plugin first."
 msgstr "Bitte erst das \"Original einbetten\" Plugin aktivieren."
 
+#: js/tt-rss.js:587
+msgid "Select item(s) by tags"
+msgstr "Artikel nach Tag auswählen"
+
 #: js/tt-rss.js:608
 msgid "You can't unsubscribe from the category."
 msgstr "Sie können die Kategorie nicht abbestellen."
 
 #: js/tt-rss.js:613
-#: js/tt-rss.js:769
+#: js/tt-rss.js:765
 msgid "Please select some feed first."
 msgstr "Bitte erst einen Feed auswählen."
 
-#: js/tt-rss.js:764
+#: js/tt-rss.js:760
 msgid "You can't rescore this kind of feed."
 msgstr "Sie können diese Art von Feed nicht neu bewerten."
 
-#: js/tt-rss.js:774
+#: js/tt-rss.js:770
 msgid "Rescore articles in %s?"
 msgstr "Artikel in %s neu bewerten?"
 
-#: js/tt-rss.js:777
+#: js/tt-rss.js:773
 msgid "Rescoring articles..."
 msgstr "Artikel werden neu bewertet..."
 
-#: js/tt-rss.js:911
+#: js/tt-rss.js:907
 msgid "New version available!"
 msgstr "Neue Version verfügbar!"
 
@@ -3450,109 +3450,105 @@ msgstr "Artikelveröffentlichung widerrufen"
 #: js/viewfeed.js:734
 #: js/viewfeed.js:797
 #: js/viewfeed.js:831
-#: js/viewfeed.js:968
-#: js/viewfeed.js:1011
-#: js/viewfeed.js:1064
-#: js/viewfeed.js:2108
+#: js/viewfeed.js:951
+#: js/viewfeed.js:994
+#: js/viewfeed.js:1047
+#: js/viewfeed.js:2096
 #: plugins/mailto/init.js:7
 #: plugins/mail/mail.js:7
 msgid "No articles are selected."
 msgstr "Keine Artikel ausgewählt."
 
-#: js/viewfeed.js:948
-msgid "Mark all visible articles in %s as read?"
-msgstr "Alle sichtbaren Artikel in %s als gelesen markieren?"
-
-#: js/viewfeed.js:976
+#: js/viewfeed.js:959
 msgid "Delete %d selected article in %s?"
 msgid_plural "Delete %d selected articles in %s?"
 msgstr[0] "%d ausgewählten Artikel in %s löschen?"
 msgstr[1] "%d ausgewählte Artikel in %s löschen?"
 
-#: js/viewfeed.js:978
+#: js/viewfeed.js:961
 msgid "Delete %d selected article?"
 msgid_plural "Delete %d selected articles?"
 msgstr[0] "%d ausgewählten Artikel löschen?"
 msgstr[1] "%d ausgewählte Artikel löschen?"
 
-#: js/viewfeed.js:1020
+#: js/viewfeed.js:1003
 msgid "Archive %d selected article in %s?"
 msgid_plural "Archive %d selected articles in %s?"
 msgstr[0] "%d ausgewählten Artikel in %s archivieren?"
 msgstr[1] "%d ausgewählte Artikel in %s archivieren?"
 
-#: js/viewfeed.js:1023
+#: js/viewfeed.js:1006
 msgid "Move %d archived article back?"
 msgid_plural "Move %d archived articles back?"
 msgstr[0] "%d archivierten Artikel zurück verschieben?"
 msgstr[1] "%d archivierte Artikel zurück verschieben?"
 
-#: js/viewfeed.js:1025
+#: js/viewfeed.js:1008
 msgid "Please note that unstarred articles might get purged on next feed update."
 msgstr ""
 
-#: js/viewfeed.js:1070
+#: js/viewfeed.js:1053
 msgid "Mark %d selected article in %s as read?"
 msgid_plural "Mark %d selected articles in %s as read?"
 msgstr[0] "%d ausgewählten Artikel in %s als gelesen markieren?"
 msgstr[1] "%d ausgewählte Artikel in %s als gelesen markieren?"
 
-#: js/viewfeed.js:1094
+#: js/viewfeed.js:1077
 msgid "Edit article Tags"
 msgstr "Artikel-Tags bearbeiten"
 
-#: js/viewfeed.js:1100
+#: js/viewfeed.js:1083
 msgid "Saving article tags..."
 msgstr "Artikel-Tags werden gespeichert..."
 
-#: js/viewfeed.js:1337
+#: js/viewfeed.js:1323
 msgid "No article is selected."
 msgstr "Kein Artikel ausgewählt."
 
-#: js/viewfeed.js:1372
+#: js/viewfeed.js:1358
 msgid "No articles found to mark"
 msgstr "Keine Artikel zum markieren gefunden"
 
-#: js/viewfeed.js:1374
+#: js/viewfeed.js:1360
 msgid "Mark %d article as read?"
 msgid_plural "Mark %d articles as read?"
 msgstr[0] "%d Artikel als gelesen markieren?"
 msgstr[1] "%d Artikel als gelesen markieren?"
 
-#: js/viewfeed.js:1884
+#: js/viewfeed.js:1872
 msgid "Open original article"
 msgstr "Originalartikel öffnen"
 
-#: js/viewfeed.js:1890
+#: js/viewfeed.js:1878
 msgid "Display article URL"
 msgstr "Zeige Artikel-URL an"
 
-#: js/viewfeed.js:1909
+#: js/viewfeed.js:1897
 #, fuzzy
 msgid "Toggle marked"
 msgstr "Markierung ein-/ausschalten"
 
-#: js/viewfeed.js:1995
+#: js/viewfeed.js:1983
 msgid "Remove label"
 msgstr "Label entfernen"
 
-#: js/viewfeed.js:2019
+#: js/viewfeed.js:2007
 msgid "Playing..."
 msgstr "Abspielen..."
 
-#: js/viewfeed.js:2020
+#: js/viewfeed.js:2008
 msgid "Click to pause"
 msgstr "Zum Pausieren klicken"
 
-#: js/viewfeed.js:2077
+#: js/viewfeed.js:2065
 msgid "Please enter new score for selected articles:"
 msgstr "Bitte geben Sie eine neue Bewertung für die ausgewählten Artikel ab:"
 
-#: js/viewfeed.js:2119
+#: js/viewfeed.js:2107
 msgid "Please enter new score for this article:"
 msgstr "Bitte geben Sie eine neue Bewertung für diesen Artikel ab:"
 
-#: js/viewfeed.js:2152
+#: js/viewfeed.js:2140
 msgid "Article URL:"
 msgstr "Artikel-URL:"
 
@@ -3657,6 +3653,20 @@ msgstr "Artikel über URL teilen"
 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 "(%d feed)"
+#~ msgid_plural "(%d feeds)"
+#~ msgstr[0] "(%d Feed)"
+#~ msgstr[1] "(%d Feeds)"
+
+#~ msgid "Notice"
+#~ msgstr "Anmerkung"
+
+#~ msgid "Tag Cloud"
+#~ msgstr "Tagwolke"
+
+#~ msgid "Mark all visible articles in %s as read?"
+#~ msgstr "Alle sichtbaren Artikel in %s als gelesen markieren?"
+
 #~ msgid "Form secret key incorrect. Please enable cookies and try again."
 #~ msgstr "Geheimer Schlüssel falsch. Aktiviere Cookies und versuchs nochmal."
 
index 53b5374e8a02c2b23d1ff38181a4268bb24a386a..c50fd0db47b194adf1e75b5d68190c384dc26593 100644 (file)
Binary files a/locale/es_ES/LC_MESSAGES/messages.mo and b/locale/es_ES/LC_MESSAGES/messages.mo differ
index 1c9bb200f5e0f28c5be212ac7682f44a1aec689d..65337f54415187717709a0d3c2eed0d005171b80 100644 (file)
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: messages\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-03-31 12:47+0400\n"
+"POT-Creation-Date: 2013-04-01 16:28+0400\n"
 "PO-Revision-Date: 2012-10-25 00:12+0100\n"
 "Last-Translator: DavidM <milarupa@yahoo.es>\n"
 "Language-Team: Español <milarupa@yahoo.es>\n"
@@ -136,9 +136,9 @@ msgstr "La base de datos de Tiny Tiny RSS está actualizada."
 #: register.php:336
 #: register.php:346
 #: register.php:358
-#: classes/handler/public.php:625
-#: classes/handler/public.php:713
-#: classes/handler/public.php:795
+#: classes/handler/public.php:626
+#: classes/handler/public.php:714
+#: classes/handler/public.php:796
 msgid "Return to Tiny Tiny RSS"
 msgstr "Volver a Tiny Tiny RSS"
 
@@ -248,36 +248,37 @@ msgstr "La prueba de escape SQL ha fallado. Por favor, revise la configuración
 
 #: index.php:135
 #: index.php:154
-#: index.php:264
-#: prefs.php:102
+#: index.php:263
+#: prefs.php:103
 #: classes/backend.php:5
 #: classes/pref/labels.php:296
-#: classes/pref/filters.php:628
-#: classes/pref/feeds.php:1330
+#: classes/pref/filters.php:680
+#: classes/pref/feeds.php:1331
 #: plugins/digest/digest_body.php:63
 #: js/feedlist.js:128
 #: js/feedlist.js:448
 #: js/functions.js:420
-#: js/functions.js:814
-#: js/functions.js:1250
-#: js/functions.js:1385
-#: js/functions.js:1697
+#: js/functions.js:808
+#: js/functions.js:1244
+#: js/functions.js:1379
+#: js/functions.js:1691
 #: js/prefs.js:86
 #: js/prefs.js:576
 #: js/prefs.js:666
-#: js/prefs.js:870
-#: js/prefs.js:1457
-#: js/prefs.js:1510
-#: js/prefs.js:1568
-#: js/prefs.js:1584
-#: js/prefs.js:1600
-#: js/prefs.js:1619
-#: js/prefs.js:1792
-#: js/prefs.js:1808
+#: js/prefs.js:858
+#: js/prefs.js:1445
+#: js/prefs.js:1498
+#: js/prefs.js:1557
+#: js/prefs.js:1574
+#: js/prefs.js:1590
+#: js/prefs.js:1606
+#: js/prefs.js:1625
+#: js/prefs.js:1798
+#: js/prefs.js:1814
 #: js/tt-rss.js:475
 #: js/tt-rss.js:492
 #: js/viewfeed.js:774
-#: js/viewfeed.js:1259
+#: js/viewfeed.js:1245
 #: plugins/import_export/import_export.js:17
 #: plugins/updater/updater.js:17
 msgid "Loading, please wait..."
@@ -300,13 +301,13 @@ msgid "All Articles"
 msgstr "Todos"
 
 #: index.php:176
-#: include/functions.php:1974
+#: include/functions.php:1924
 #: classes/feeds.php:106
 msgid "Starred"
 msgstr "Favoritos"
 
 #: index.php:177
-#: include/functions.php:1975
+#: include/functions.php:1925
 #: classes/feeds.php:107
 msgid "Published"
 msgstr "Publicados"
@@ -346,22 +347,15 @@ msgstr ""
 msgid "Oldest first"
 msgstr ""
 
-#: index.php:195
-#: classes/pref/feeds.php:567
-#: classes/pref/feeds.php:792
-msgid "Update"
-msgstr "Actualizar"
-
-#: index.php:197
+#: index.php:192
 msgid "Mark feed as read"
 msgstr "Marcar fuente como leída"
 
-#: index.php:200
-#: index.php:235
-#: include/functions.php:1964
+#: index.php:195
+#: index.php:234
+#: include/functions.php:1914
 #: include/localized_schema.php:10
 #: classes/feeds.php:111
-#: classes/feeds.php:136
 #: classes/feeds.php:437
 #: js/FeedTree.js:128
 #: js/FeedTree.js:156
@@ -369,112 +363,117 @@ msgstr "Marcar fuente como leída"
 msgid "Mark as read"
 msgstr "Marcar como leído"
 
-#: index.php:201
-#: include/functions.php:1860
-#: include/functions.php:1972
+#: index.php:196
+#: include/functions.php:1810
+#: include/functions.php:1922
 msgid "All articles"
 msgstr "Todos"
 
-#: index.php:202
+#: index.php:197
 msgid "Older than one day"
 msgstr ""
 
-#: index.php:203
+#: index.php:198
 msgid "Older than one week"
 msgstr ""
 
-#: index.php:204
+#: index.php:199
 msgid "Older than two weeks"
 msgstr ""
 
-#: index.php:212
+#: index.php:204
+#, fuzzy
+msgid "Refresh"
+msgstr "Refrescar"
+
+#: index.php:211
 msgid "Communication problem with server."
 msgstr ""
 
-#: index.php:220
+#: index.php:219
 msgid "New version of Tiny Tiny RSS is available!"
 msgstr "¡Nueva versión de Tiny Tiny RSS disponible!"
 
-#: index.php:225
+#: index.php:224
 msgid "Actions..."
 msgstr "Acciones..."
 
-#: index.php:227
+#: index.php:226
 #, fuzzy
 msgid "Preferences..."
 msgstr "Preferencias"
 
-#: index.php:228
+#: index.php:227
 msgid "Search..."
 msgstr "Buscar..."
 
-#: index.php:229
+#: index.php:228
 msgid "Feed actions:"
 msgstr "Acciones de la fuente:"
 
-#: index.php:230
-#: classes/handler/public.php:555
+#: index.php:229
+#: classes/handler/public.php:556
 msgid "Subscribe to feed..."
 msgstr "Suscribirse a una fuente..."
 
-#: index.php:231
+#: index.php:230
 msgid "Edit this feed..."
 msgstr "Editar esta fuente..."
 
-#: index.php:232
+#: index.php:231
 msgid "Rescore feed"
 msgstr "Reiniciar la puntuación"
 
-#: index.php:233
-#: classes/pref/feeds.php:716
-#: classes/pref/feeds.php:1303
+#: index.php:232
+#: classes/pref/feeds.php:717
+#: classes/pref/feeds.php:1304
 #: js/PrefFeedTree.js:73
 msgid "Unsubscribe"
 msgstr "Cancelar la suscripción"
 
-#: index.php:234
+#: index.php:233
 msgid "All feeds:"
 msgstr "Todas las fuentes:"
 
-#: index.php:236
+#: index.php:235
 msgid "(Un)hide read feeds"
 msgstr "Ocultar/Mostrar fuentes leídas"
 
-#: index.php:237
+#: index.php:236
 msgid "Other actions:"
 msgstr "Otras acciones:"
 
-#: index.php:239
+#: index.php:238
 msgid "Switch to digest..."
 msgstr "Modo resumen..."
 
-#: index.php:241
+#: index.php:240
 msgid "Show tag cloud..."
 msgstr "Nube de etiquetas..."
 
-#: index.php:242
-#: include/functions.php:1950
+#: index.php:241
+#: include/functions.php:1900
 #, fuzzy
 msgid "Toggle widescreen mode"
 msgstr "Cambiar a modo de reordenación de categorías"
 
-#: index.php:243
+#: index.php:242
 msgid "Select by tags..."
 msgstr "Seleccionar por etiquetas..."
 
-#: index.php:244
+#: index.php:243
 msgid "Create label..."
 msgstr "Crear marcador..."
 
-#: index.php:245
+#: index.php:244
 msgid "Create filter..."
 msgstr "Crear filtro..."
 
-#: index.php:246
+#: index.php:245
 msgid "Keyboard shortcuts help"
 msgstr "Ayuda para atajos de teclado"
 
-#: index.php:248
+#: index.php:247
 #: plugins/digest/digest_body.php:77
 #: plugins/mobile/mobile-functions.php:62
 #: plugins/mobile/mobile-functions.php:237
@@ -482,41 +481,41 @@ msgid "Logout"
 msgstr "Cerrar sesión"
 
 #: prefs.php:36
-#: prefs.php:122
-#: include/functions.php:1977
+#: prefs.php:121
+#: include/functions.php:1927
 #: classes/pref/prefs.php:377
 msgid "Preferences"
 msgstr "Preferencias"
 
-#: prefs.php:113
+#: prefs.php:112
 msgid "Keyboard shortcuts"
 msgstr "Atajos de teclado"
 
-#: prefs.php:114
+#: prefs.php:113
 msgid "Exit preferences"
 msgstr "Salir de las preferencias"
 
-#: prefs.php:125
-#: classes/pref/feeds.php:106
-#: classes/pref/feeds.php:1208
-#: classes/pref/feeds.php:1271
+#: prefs.php:124
+#: classes/pref/feeds.php:107
+#: classes/pref/feeds.php:1209
+#: classes/pref/feeds.php:1272
 msgid "Feeds"
 msgstr "Fuentes"
 
-#: prefs.php:128
-#: classes/pref/filters.php:120
+#: prefs.php:127
+#: classes/pref/filters.php:156
 msgid "Filters"
 msgstr "Filtros"
 
-#: prefs.php:131
-#: include/functions.php:1167
-#: include/functions.php:1803
+#: prefs.php:130
+#: include/functions.php:1117
+#: include/functions.php:1753
 #: classes/pref/labels.php:90
 #: plugins/mobile/mobile-functions.php:198
 msgid "Labels"
 msgstr "Marcadores"
 
-#: prefs.php:135
+#: prefs.php:134
 msgid "Users"
 msgstr "Usuarios"
 
@@ -542,12 +541,12 @@ msgid "Check availability"
 msgstr "Comprobar la disponibilidad"
 
 #: register.php:228
-#: classes/handler/public.php:753
+#: classes/handler/public.php:754
 msgid "Email:"
 msgstr "Correo electrónico:"
 
 #: register.php:231
-#: classes/handler/public.php:758
+#: classes/handler/public.php:759
 msgid "How much is two plus two:"
 msgstr "¿Cuánto es dos más dos?"
 
@@ -581,12 +580,12 @@ msgid "Tiny Tiny RSS data update script."
 msgstr "La base de datos de Tiny Tiny RSS está actualizada."
 
 #: include/digest.php:109
-#: include/functions.php:1176
-#: include/functions.php:1704
-#: include/functions.php:1789
-#: include/functions.php:1811
+#: include/functions.php:1126
+#: include/functions.php:1654
+#: include/functions.php:1739
+#: include/functions.php:1761
 #: classes/opml.php:416
-#: classes/pref/feeds.php:221
+#: classes/pref/feeds.php:222
 msgid "Uncategorized"
 msgstr "Sin clasificar"
 
@@ -601,357 +600,355 @@ msgstr[1] "%d artículos archivados"
 msgid "No feeds found."
 msgstr "No se han encontrado fuentes."
 
-#: include/functions.php:722
-msgid "Session failed to validate (incorrect IP)"
-msgstr "No se pudo validar la sesión (IP incorrecta)"
-
-#: include/functions.php:1165
-#: include/functions.php:1801
+#: include/functions.php:1115
+#: include/functions.php:1751
 #: plugins/mobile/mobile-functions.php:171
 msgid "Special"
 msgstr "Especial"
 
-#: include/functions.php:1653
-#: classes/dlg.php:369
-#: classes/pref/filters.php:382
+#: include/functions.php:1603
+#: classes/feeds.php:1097
+#: classes/pref/filters.php:427
 msgid "All feeds"
 msgstr "Todas las fuentes"
 
-#: include/functions.php:1854
+#: include/functions.php:1804
 msgid "Starred articles"
 msgstr "Favoritos"
 
-#: include/functions.php:1856
+#: include/functions.php:1806
 msgid "Published articles"
 msgstr "Publicados"
 
-#: include/functions.php:1858
+#: include/functions.php:1808
 msgid "Fresh articles"
 msgstr "Recientes"
 
-#: include/functions.php:1862
+#: include/functions.php:1812
 msgid "Archived articles"
 msgstr "Artículos archivados"
 
-#: include/functions.php:1864
+#: include/functions.php:1814
 msgid "Recently read"
 msgstr "Leídos recientemente"
 
-#: include/functions.php:1927
+#: include/functions.php:1877
 msgid "Navigation"
 msgstr "Navegación"
 
-#: include/functions.php:1928
+#: include/functions.php:1878
 #, fuzzy
 msgid "Open next feed"
 msgstr "Fuente generada"
 
-#: include/functions.php:1929
+#: include/functions.php:1879
 msgid "Open previous feed"
 msgstr ""
 
-#: include/functions.php:1930
+#: include/functions.php:1880
 #, fuzzy
 msgid "Open next article"
 msgstr "Abrir artículo original"
 
-#: include/functions.php:1931
+#: include/functions.php:1881
 #, fuzzy
 msgid "Open previous article"
 msgstr "Abrir artículo original"
 
-#: include/functions.php:1932
+#: include/functions.php:1882
 msgid "Open next article (don't scroll long articles)"
 msgstr ""
 
-#: include/functions.php:1933
+#: include/functions.php:1883
 msgid "Open previous article (don't scroll long articles)"
 msgstr ""
 
-#: include/functions.php:1934
+#: include/functions.php:1884
 msgid "Show search dialog"
 msgstr "Mostrar el diálogo de búsqueda"
 
-#: include/functions.php:1935
+#: include/functions.php:1885
 #, fuzzy
 msgid "Article"
 msgstr "Todos"
 
-#: include/functions.php:1936
+#: include/functions.php:1886
 msgid "Toggle starred"
 msgstr "Alternar favoritos"
 
-#: include/functions.php:1937
-#: js/viewfeed.js:1920
+#: include/functions.php:1887
+#: js/viewfeed.js:1908
 msgid "Toggle published"
 msgstr "Alternar publicados"
 
-#: include/functions.php:1938
-#: js/viewfeed.js:1898
+#: include/functions.php:1888
+#: js/viewfeed.js:1886
 msgid "Toggle unread"
 msgstr "Alternar no leídos"
 
-#: include/functions.php:1939
+#: include/functions.php:1889
 msgid "Edit tags"
 msgstr "Editar etiquetas"
 
-#: include/functions.php:1940
+#: include/functions.php:1890
 #, fuzzy
 msgid "Dismiss selected"
 msgstr "Descartar artículos seleccionados"
 
-#: include/functions.php:1941
+#: include/functions.php:1891
 #, fuzzy
 msgid "Dismiss read"
 msgstr "Publicar artículo"
 
-#: include/functions.php:1942
+#: include/functions.php:1892
 #, fuzzy
 msgid "Open in new window"
 msgstr "Abrir el artículo en una nueva pestaña o ventana"
 
-#: include/functions.php:1943
-#: js/viewfeed.js:1939
+#: include/functions.php:1893
+#: js/viewfeed.js:1927
 msgid "Mark below as read"
 msgstr "Marcar artículos posteriores como leídos"
 
-#: include/functions.php:1944
-#: js/viewfeed.js:1933
+#: include/functions.php:1894
+#: js/viewfeed.js:1921
 msgid "Mark above as read"
 msgstr "Marcar artículos anteriores como leídos"
 
-#: include/functions.php:1945
+#: include/functions.php:1895
 #, fuzzy
 msgid "Scroll down"
 msgstr "Hecho."
 
-#: include/functions.php:1946
+#: include/functions.php:1896
 msgid "Scroll up"
 msgstr ""
 
-#: include/functions.php:1947
+#: include/functions.php:1897
 #, fuzzy
 msgid "Select article under cursor"
 msgstr "Seleccionar el artículo que esté bajo el cursor del ratón"
 
-#: include/functions.php:1948
+#: include/functions.php:1898
 msgid "Email article"
 msgstr "Enviar artículo por correo"
 
-#: include/functions.php:1949
+#: include/functions.php:1899
 #, fuzzy
 msgid "Close/collapse article"
 msgstr "Cerrar artículo"
 
-#: include/functions.php:1951
+#: include/functions.php:1901
 #: plugins/embed_original/init.php:33
 #, fuzzy
 msgid "Toggle embed original"
 msgstr "Cambiar a modo de reordenación de categorías"
 
-#: include/functions.php:1952
+#: include/functions.php:1902
 #, fuzzy
 msgid "Article selection"
 msgstr "Invertir selección de artículos"
 
-#: include/functions.php:1953
+#: include/functions.php:1903
 msgid "Select all articles"
 msgstr "Seleccionar todos los artículos"
 
-#: include/functions.php:1954
+#: include/functions.php:1904
 #, fuzzy
 msgid "Select unread"
 msgstr "Seleccionar artículos sin leer"
 
-#: include/functions.php:1955
+#: include/functions.php:1905
 #, fuzzy
 msgid "Select starred"
 msgstr "Marcar como favorito"
 
-#: include/functions.php:1956
+#: include/functions.php:1906
 #, fuzzy
 msgid "Select published"
 msgstr "Seleccionar artículos publicados"
 
-#: include/functions.php:1957
+#: include/functions.php:1907
 #, fuzzy
 msgid "Invert selection"
 msgstr "Invertir selección de artículos"
 
-#: include/functions.php:1958
+#: include/functions.php:1908
 #, fuzzy
 msgid "Deselect everything"
 msgstr "Deseleccionar todos los artículos"
 
-#: include/functions.php:1959
-#: classes/pref/feeds.php:520
-#: classes/pref/feeds.php:753
+#: include/functions.php:1909
+#: classes/pref/feeds.php:521
+#: classes/pref/feeds.php:754
 msgid "Feed"
 msgstr "Fuente"
 
-#: include/functions.php:1960
+#: include/functions.php:1910
 #, fuzzy
 msgid "Refresh current feed"
 msgstr "Actualizar la fuente activa"
 
-#: include/functions.php:1961
+#: include/functions.php:1911
 #, fuzzy
 msgid "Un/hide read feeds"
 msgstr "Ocultar/Mostrar fuentes leídas"
 
-#: include/functions.php:1962
-#: classes/pref/feeds.php:1274
+#: include/functions.php:1912
+#: classes/pref/feeds.php:1275
 msgid "Subscribe to feed"
 msgstr "Suscribirse a una fuente"
 
-#: include/functions.php:1963
+#: include/functions.php:1913
 #: js/FeedTree.js:135
 #: js/PrefFeedTree.js:67
 msgid "Edit feed"
 msgstr "Editar fuente"
 
-#: include/functions.php:1965
+#: include/functions.php:1915
 #, fuzzy
 msgid "Reverse headlines"
 msgstr "Invertir orden de titulares"
 
-#: include/functions.php:1966
+#: include/functions.php:1916
 #, fuzzy
 msgid "Debug feed update"
 msgstr "Se han actualizado todas las fuentes."
 
-#: include/functions.php:1967
+#: include/functions.php:1917
 #: js/FeedTree.js:178
 msgid "Mark all feeds as read"
 msgstr "Marcar todas las fuentes como leídas"
 
-#: include/functions.php:1968
+#: include/functions.php:1918
 #, fuzzy
 msgid "Un/collapse current category"
 msgstr "Plegar la categoría"
 
-#: include/functions.php:1969
+#: include/functions.php:1919
 #, fuzzy
 msgid "Toggle combined mode"
 msgstr "Cambiar a modo de reordenación de categorías"
 
-#: include/functions.php:1970
+#: include/functions.php:1920
 #, fuzzy
 msgid "Toggle auto expand in combined mode"
 msgstr "Cambiar a modo de reordenación de categorías"
 
-#: include/functions.php:1971
+#: include/functions.php:1921
 #, fuzzy
 msgid "Go to"
 msgstr "Ir a..."
 
-#: include/functions.php:1973
+#: include/functions.php:1923
 #, fuzzy
 msgid "Fresh"
 msgstr "Refrescar"
 
-#: include/functions.php:1976
+#: include/functions.php:1926
+#: js/tt-rss.js:431
+#: js/tt-rss.js:584
 msgid "Tag cloud"
 msgstr "Nube de etiquetas"
 
-#: include/functions.php:1978
+#: include/functions.php:1928
 #, fuzzy
 msgid "Other"
 msgstr "Otro:"
 
-#: include/functions.php:1979
+#: include/functions.php:1929
 #: classes/pref/labels.php:281
 msgid "Create label"
 msgstr "Crear marcador"
 
-#: include/functions.php:1980
-#: classes/pref/filters.php:606
+#: include/functions.php:1930
+#: classes/pref/filters.php:654
 msgid "Create filter"
 msgstr "Crear filtro"
 
-#: include/functions.php:1981
+#: include/functions.php:1931
 #, fuzzy
 msgid "Un/collapse sidebar"
 msgstr "Colapsar la barra lateral"
 
-#: include/functions.php:1982
+#: include/functions.php:1932
 #, fuzzy
 msgid "Show help dialog"
 msgstr "Mostrar el diálogo de búsqueda"
 
-#: include/functions.php:2467
+#: include/functions.php:2417
 #, php-format
 msgid "Search results: %s"
 msgstr "Resultados de búsqueda: %s"
 
-#: include/functions.php:2958
-#: js/viewfeed.js:2026
+#: include/functions.php:2908
+#: js/viewfeed.js:2014
 msgid "Click to play"
 msgstr "Clic para reproducir"
 
-#: include/functions.php:2959
-#: js/viewfeed.js:2025
+#: include/functions.php:2909
+#: js/viewfeed.js:2013
 msgid "Play"
 msgstr "Reproducir"
 
-#: include/functions.php:3076
+#: include/functions.php:3026
 msgid " - "
 msgstr " - "
 
-#: include/functions.php:3098
-#: include/functions.php:3392
+#: include/functions.php:3048
+#: include/functions.php:3342
 #: classes/rpc.php:408
 msgid "no tags"
 msgstr "sin etiquetas"
 
-#: include/functions.php:3108
+#: include/functions.php:3058
 #: classes/feeds.php:682
 msgid "Edit tags for this article"
 msgstr "Editar las etiquetas de este artículo"
 
-#: include/functions.php:3137
+#: include/functions.php:3087
 #: classes/feeds.php:638
 msgid "Originally from:"
 msgstr "Original de:"
 
-#: include/functions.php:3150
+#: include/functions.php:3100
 #: classes/feeds.php:651
-#: classes/pref/feeds.php:539
+#: classes/pref/feeds.php:540
 msgid "Feed URL"
 msgstr "URL de la fuente"
 
-#: include/functions.php:3181
-#: classes/dlg.php:43
-#: classes/dlg.php:162
-#: classes/dlg.php:185
-#: classes/dlg.php:222
-#: classes/dlg.php:506
-#: classes/dlg.php:541
-#: classes/dlg.php:572
-#: classes/dlg.php:606
-#: classes/dlg.php:618
+#: include/functions.php:3131
+#: classes/dlg.php:37
+#: classes/dlg.php:60
+#: classes/dlg.php:93
+#: classes/dlg.php:159
+#: classes/dlg.php:190
+#: classes/dlg.php:217
+#: classes/dlg.php:250
+#: classes/dlg.php:262
 #: classes/backend.php:105
 #: classes/pref/users.php:106
-#: classes/pref/filters.php:111
-#: classes/pref/feeds.php:1587
-#: classes/pref/feeds.php:1659
+#: classes/pref/filters.php:147
+#: classes/pref/prefs.php:1012
+#: classes/pref/feeds.php:1588
+#: classes/pref/feeds.php:1660
 #: plugins/import_export/init.php:409
 #: plugins/import_export/init.php:432
-#: plugins/googlereaderimport/init.php:164
+#: plugins/googlereaderimport/init.php:168
 #: plugins/share/init.php:67
 #: plugins/updater/init.php:357
 msgid "Close this window"
 msgstr "Cerrar esta ventana"
 
-#: include/functions.php:3417
+#: include/functions.php:3367
 msgid "(edit note)"
 msgstr "(editar nota)"
 
-#: include/functions.php:3650
+#: include/functions.php:3600
 msgid "unknown type"
 msgstr "tipo desconocido"
 
-#: include/functions.php:3706
+#: include/functions.php:3656
 msgid "Attachments"
 msgstr "Adjuntos"
 
@@ -995,7 +992,7 @@ msgid "Assign tags"
 msgstr "Asignar etiquetas"
 
 #: include/localized_schema.php:14
-#: js/viewfeed.js:1990
+#: js/viewfeed.js:1978
 msgid "Assign label"
 msgstr "Asignar marcador"
 
@@ -1179,7 +1176,7 @@ msgid "User timezone"
 msgstr "Zona horaria del usuario"
 
 #: include/localized_schema.php:61
-#: js/prefs.js:1719
+#: js/prefs.js:1725
 msgid "Customize stylesheet"
 msgstr "Personalizar hoja de estilo"
 
@@ -1205,14 +1202,14 @@ msgid "Select theme"
 msgstr "Seleccionar plantilla"
 
 #: include/login_form.php:183
-#: classes/handler/public.php:460
-#: classes/handler/public.php:748
+#: classes/handler/public.php:461
+#: classes/handler/public.php:749
 #: plugins/mobile/login_form.php:40
 msgid "Login:"
 msgstr "Nombre de usuario:"
 
 #: include/login_form.php:192
-#: classes/handler/public.php:463
+#: classes/handler/public.php:464
 #: plugins/mobile/login_form.php:45
 msgid "Password:"
 msgstr "Contraseña:"
@@ -1223,7 +1220,7 @@ msgid "I forgot my password"
 msgstr "Nombre de usuario o contraseña incorrecta"
 
 #: include/login_form.php:201
-#: classes/handler/public.php:466
+#: classes/handler/public.php:467
 msgid "Language:"
 msgstr "Idioma:"
 
@@ -1232,9 +1229,9 @@ msgid "Profile:"
 msgstr "Perfil:"
 
 #: include/login_form.php:213
-#: classes/handler/public.php:210
+#: classes/handler/public.php:211
 #: classes/rpc.php:64
-#: classes/dlg.php:98
+#: classes/pref/prefs.php:948
 msgid "Default profile"
 msgstr "Perfil por defecto"
 
@@ -1247,486 +1244,255 @@ msgid "Remember me"
 msgstr ""
 
 #: include/login_form.php:235
-#: classes/handler/public.php:476
+#: classes/handler/public.php:477
 #: plugins/mobile/login_form.php:28
 msgid "Log in"
 msgstr "Iniciar sesión"
 
+#: include/sessions.php:53
+msgid "Session failed to validate (incorrect IP)"
+msgstr "No se pudo validar la sesión (IP incorrecta)"
+
 #: classes/article.php:25
 msgid "Article not found."
 msgstr "Artículo no encontrado."
 
-#: classes/handler/public.php:401
+#: classes/article.php:179
+msgid "Tags for this article (separated by commas):"
+msgstr "Etiquetas para este artículo (separadas por comas):"
+
+#: classes/article.php:204
+#: classes/pref/users.php:192
+#: classes/pref/labels.php:79
+#: classes/pref/filters.php:405
+#: classes/pref/prefs.php:894
+#: classes/pref/feeds.php:733
+#: classes/pref/feeds.php:881
+#: plugins/nsfw/init.php:86
+#: plugins/note/init.php:53
+#: plugins/instances/init.php:248
+msgid "Save"
+msgstr "Guardar"
+
+#: classes/article.php:206
+#: classes/handler/public.php:438
+#: classes/handler/public.php:480
+#: classes/feeds.php:1024
+#: classes/feeds.php:1076
+#: classes/feeds.php:1136
+#: classes/pref/users.php:194
+#: classes/pref/labels.php:81
+#: classes/pref/filters.php:408
+#: classes/pref/filters.php:804
+#: classes/pref/filters.php:880
+#: classes/pref/filters.php:947
+#: classes/pref/prefs.php:896
+#: classes/pref/feeds.php:734
+#: classes/pref/feeds.php:884
+#: classes/pref/feeds.php:1797
+#: plugins/mail/init.php:131
+#: plugins/note/init.php:55
+#: plugins/instances/init.php:251
+#: plugins/instances/init.php:440
+msgid "Cancel"
+msgstr "Cancelar"
+
+#: classes/handler/public.php:402
 #: plugins/bookmarklets/init.php:38
 #, fuzzy
 msgid "Share with Tiny Tiny RSS"
 msgstr "Volver a Tiny Tiny RSS"
 
-#: classes/handler/public.php:409
+#: classes/handler/public.php:410
 #, fuzzy
 msgid "Title:"
 msgstr "Título"
 
-#: classes/handler/public.php:411
-#: classes/dlg.php:663
-#: classes/pref/feeds.php:537
-#: classes/pref/feeds.php:768
+#: classes/handler/public.php:412
+#: classes/pref/feeds.php:538
+#: classes/pref/feeds.php:769
 #: plugins/instances/init.php:215
+#: plugins/instances/init.php:405
 msgid "URL:"
 msgstr "URL:"
 
-#: classes/handler/public.php:413
+#: classes/handler/public.php:414
 #, fuzzy
 msgid "Content:"
 msgstr "Contenido"
 
-#: classes/handler/public.php:415
+#: classes/handler/public.php:416
 #, fuzzy
 msgid "Labels:"
 msgstr "Marcadores"
 
-#: classes/handler/public.php:434
+#: classes/handler/public.php:435
 msgid "Shared article will appear in the Published feed."
 msgstr ""
 
-#: classes/handler/public.php:436
+#: classes/handler/public.php:437
 msgid "Share"
 msgstr ""
 
-#: classes/handler/public.php:437
-#: classes/handler/public.php:479
-#: classes/dlg.php:296
-#: classes/dlg.php:348
-#: classes/dlg.php:408
-#: classes/dlg.php:439
-#: classes/dlg.php:648
-#: classes/dlg.php:698
-#: classes/dlg.php:747
-#: classes/pref/users.php:194
-#: classes/pref/labels.php:81
-#: classes/pref/filters.php:363
-#: classes/pref/filters.php:746
-#: classes/pref/filters.php:822
-#: classes/pref/filters.php:889
-#: classes/pref/feeds.php:733
-#: classes/pref/feeds.php:883
-#: plugins/mail/init.php:131
-#: plugins/note/init.php:55
-#: plugins/instances/init.php:251
-msgid "Cancel"
-msgstr "Cancelar"
-
-#: classes/handler/public.php:458
+#: classes/handler/public.php:459
 #, fuzzy
 msgid "Not logged in"
 msgstr "Última sesión el"
 
-#: classes/handler/public.php:525
+#: classes/handler/public.php:526
 msgid "Incorrect username or password"
 msgstr "Nombre de usuario o contraseña incorrecta"
 
-#: classes/handler/public.php:561
-#: classes/handler/public.php:658
+#: classes/handler/public.php:562
+#: classes/handler/public.php:659
 #, php-format
 msgid "Already subscribed to <b>%s</b>."
 msgstr "Ya está suscrito a <strong>%s</strong>."
 
-#: classes/handler/public.php:564
-#: classes/handler/public.php:649
+#: classes/handler/public.php:565
+#: classes/handler/public.php:650
 #, php-format
 msgid "Subscribed to <b>%s</b>."
 msgstr "Suscrito a <strong>%s</strong>."
 
-#: classes/handler/public.php:567
-#: classes/handler/public.php:652
+#: classes/handler/public.php:568
+#: classes/handler/public.php:653
 #, fuzzy, php-format
 msgid "Could not subscribe to <b>%s</b>."
 msgstr "Ya está suscrito a <strong>%s</strong>."
 
-#: classes/handler/public.php:570
-#: classes/handler/public.php:655
+#: classes/handler/public.php:571
+#: classes/handler/public.php:656
 #, fuzzy, php-format
 msgid "No feeds found in <b>%s</b>."
 msgstr "No se han encontrado fuentes."
 
-#: classes/handler/public.php:573
-#: classes/handler/public.php:661
+#: classes/handler/public.php:574
+#: classes/handler/public.php:662
 #, fuzzy
 msgid "Multiple feed URLs found."
 msgstr "La URL de la fuente publicada ha sido cambiada."
 
-#: classes/handler/public.php:577
-#: classes/handler/public.php:666
+#: classes/handler/public.php:578
+#: classes/handler/public.php:667
 #, fuzzy, php-format
 msgid "Could not subscribe to <b>%s</b>.<br>Can't download the Feed URL."
 msgstr "Ya está suscrito a <strong>%s</strong>."
 
-#: classes/handler/public.php:595
-#: classes/handler/public.php:684
+#: classes/handler/public.php:596
+#: classes/handler/public.php:685
 #, fuzzy
 msgid "Subscribe to selected feed"
 msgstr "¿Cancelar la suscripción a las fuentes seleccionadas?"
 
-#: classes/handler/public.php:620
-#: classes/handler/public.php:708
+#: classes/handler/public.php:621
+#: classes/handler/public.php:709
 msgid "Edit subscription options"
 msgstr "Editar las opciones de suscripción"
 
-#: classes/handler/public.php:735
+#: classes/handler/public.php:736
 #, fuzzy
 msgid "Password recovery"
 msgstr "Contraseña:"
 
-#: classes/handler/public.php:741
+#: classes/handler/public.php:742
 msgid "You will need to provide valid account name and email. New password will be sent on your email address."
 msgstr ""
 
-#: classes/handler/public.php:763
+#: classes/handler/public.php:764
 #: classes/pref/users.php:378
 msgid "Reset password"
 msgstr "Redefinir contraseña"
 
-#: classes/handler/public.php:773
+#: classes/handler/public.php:774
 msgid "Some of the required form parameters are missing or incorrect."
 msgstr ""
 
-#: classes/handler/public.php:777
-#: classes/handler/public.php:803
+#: classes/handler/public.php:778
+#: classes/handler/public.php:804
 #: plugins/digest/digest_body.php:69
 #, fuzzy
 msgid "Go back"
 msgstr "Mover a la fuente original"
 
-#: classes/handler/public.php:799
+#: classes/handler/public.php:800
 msgid "Sorry, login and email combination not found."
 msgstr ""
 
-#: classes/dlg.php:22
+#: classes/dlg.php:16
 msgid "If you have imported labels and/or filters, you might need to reload preferences to see your new data."
 msgstr "Si ha importado marcadores y/o filtros, puede ser necesario recargar las preferencia para ver sus nuevos datos."
 
-#: classes/dlg.php:55
-#: classes/pref/users.php:360
-#: classes/pref/labels.php:272
-#: classes/pref/filters.php:234
-#: classes/pref/filters.php:282
-#: classes/pref/filters.php:597
-#: classes/pref/filters.php:676
-#: classes/pref/filters.php:703
-#: classes/pref/feeds.php:1262
-#: classes/pref/feeds.php:1532
-#: classes/pref/feeds.php:1602
-#: plugins/instances/init.php:287
-msgid "Select"
-msgstr "Seleccionar"
-
-#: classes/dlg.php:58
-#: classes/feeds.php:92
-#: classes/pref/users.php:363
-#: classes/pref/labels.php:275
-#: classes/pref/filters.php:237
-#: classes/pref/filters.php:285
-#: classes/pref/filters.php:600
-#: classes/pref/filters.php:679
-#: classes/pref/filters.php:706
-#: classes/pref/feeds.php:1265
-#: classes/pref/feeds.php:1535
-#: classes/pref/feeds.php:1605
-#: plugins/instances/init.php:290
-msgid "All"
-msgstr "Todo"
-
-#: classes/dlg.php:60
-#: classes/feeds.php:95
-#: classes/pref/users.php:365
-#: classes/pref/labels.php:277
-#: classes/pref/filters.php:239
-#: classes/pref/filters.php:287
-#: classes/pref/filters.php:602
-#: classes/pref/filters.php:681
-#: classes/pref/filters.php:708
-#: classes/pref/feeds.php:1267
-#: classes/pref/feeds.php:1537
-#: classes/pref/feeds.php:1607
-#: plugins/instances/init.php:292
-msgid "None"
-msgstr "Nada"
-
-#: classes/dlg.php:69
-msgid "Create profile"
-msgstr "Crear perfil"
-
-#: classes/dlg.php:92
-#: classes/dlg.php:122
-msgid "(active)"
-msgstr "(activo)"
-
-#: classes/dlg.php:156
-msgid "Remove selected profiles"
-msgstr "Borrar los perfiles seleccionados"
-
-#: classes/dlg.php:158
-msgid "Activate profile"
-msgstr "Activar perfil"
-
-#: classes/dlg.php:168
-msgid "Public OPML URL"
-msgstr "URL del archivo OPML público"
-
-#: classes/dlg.php:173
+#: classes/dlg.php:48
 msgid "Your Public OPML URL is:"
 msgstr "La URL de su archivo OPML público es:"
 
-#: classes/dlg.php:182
-#: classes/dlg.php:569
+#: classes/dlg.php:57
+#: classes/dlg.php:214
 msgid "Generate new URL"
 msgstr "Generar URL nueva"
 
-#: classes/dlg.php:194
-msgid "Notice"
-msgstr "Aviso"
-
-#: classes/dlg.php:200
+#: classes/dlg.php:71
 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 "El demonio de actualización está habilitado en la configuración, pero el proceso del demonio no está en funcionamiento, lo cual impide la actualización de todas las fuentes. Por favor, inicie el proceso del demonio o solicítelo al propietario de la instancia."
 
-#: classes/dlg.php:204
-#: classes/dlg.php:213
+#: classes/dlg.php:75
+#: classes/dlg.php:84
 msgid "Last update:"
 msgstr "Última actualización:"
 
-#: classes/dlg.php:209
+#: classes/dlg.php:80
 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 "El demonio de actualización está tardando demasiado en realizar una actualización de fuente. Esto podría deberse a un problema en el servidor (rotura, cuelgue,...). Por favor, compruebe el proceso del demonio o avise al propietario de la instancia."
 
-#: classes/dlg.php:234
-#: classes/dlg.php:242
-#, fuzzy
-msgid "Feed or site URL"
-msgstr "URL de la fuente"
-
-#: classes/dlg.php:248
-#: classes/dlg.php:711
-#: classes/pref/feeds.php:559
-#: classes/pref/feeds.php:781
-msgid "Place in category:"
-msgstr "Colocar en la categoría:"
-
-#: classes/dlg.php:256
-msgid "Available feeds"
-msgstr "Fuentes disponibles"
-
-#: classes/dlg.php:268
-#: classes/pref/users.php:155
-#: classes/pref/feeds.php:589
-#: classes/pref/feeds.php:817
-msgid "Authentication"
-msgstr "Autenticación"
-
-#: classes/dlg.php:272
-#: classes/dlg.php:725
-#: classes/pref/users.php:420
-#: classes/pref/feeds.php:595
-#: classes/pref/feeds.php:821
-msgid "Login"
-msgstr "Iniciar sesión"
-
-#: classes/dlg.php:275
-#: classes/dlg.php:728
-#: classes/pref/prefs.php:202
-#: classes/pref/feeds.php:601
-#: classes/pref/feeds.php:827
-msgid "Password"
-msgstr "Contraseña:"
-
-#: classes/dlg.php:285
-msgid "This feed requires authentication."
-msgstr "Esta fuente requiere autenticación."
-
-#: classes/dlg.php:290
-#: classes/dlg.php:346
-#: classes/dlg.php:746
-msgid "Subscribe"
-msgstr "Suscribir"
-
-#: classes/dlg.php:293
-msgid "More feeds"
-msgstr "Más fuentes"
-
-#: classes/dlg.php:316
-#: classes/dlg.php:407
-#: classes/pref/users.php:350
-#: classes/pref/filters.php:593
-#: classes/pref/feeds.php:1258
-#: js/tt-rss.js:170
-msgid "Search"
-msgstr "Buscar"
-
-#: classes/dlg.php:320
-msgid "Popular feeds"
-msgstr "Fuentes populares"
-
-#: classes/dlg.php:321
-msgid "Feed archive"
-msgstr "Archivo de fuentes"
-
-#: classes/dlg.php:324
-msgid "limit:"
-msgstr "límite:"
-
-#: classes/dlg.php:347
-#: classes/pref/users.php:376
-#: classes/pref/labels.php:284
-#: classes/pref/filters.php:353
-#: classes/pref/filters.php:615
-#: classes/pref/feeds.php:706
-#: plugins/instances/init.php:297
-msgid "Remove"
-msgstr "Eliminar"
-
-#: classes/dlg.php:358
-msgid "Look for"
-msgstr "Buscar"
-
-#: classes/dlg.php:366
-msgid "Limit search to:"
-msgstr "Limitar la búsqueda a:"
-
-#: classes/dlg.php:382
-msgid "This feed"
-msgstr "Esta fuente"
-
-#: classes/dlg.php:414
-msgid "Tags for this article (separated by commas):"
-msgstr "Etiquetas para este artículo (separadas por comas):"
-
-#: classes/dlg.php:437
-#: classes/dlg.php:646
-#: classes/pref/users.php:192
-#: classes/pref/labels.php:79
-#: classes/pref/filters.php:360
-#: classes/pref/feeds.php:732
-#: classes/pref/feeds.php:880
-#: plugins/nsfw/init.php:86
-#: plugins/note/init.php:53
-#: plugins/instances/init.php:248
-msgid "Save"
-msgstr "Guardar"
-
-#: classes/dlg.php:445
-msgid "Tag Cloud"
-msgstr "Nube de etiquetas"
-
-#: classes/dlg.php:514
-msgid "Select item(s) by tags"
-msgstr "Seleccionar artículo(s) por etiquetas"
-
-#: classes/dlg.php:517
+#: classes/dlg.php:166
 msgid "Match:"
 msgstr "Coincidir:"
 
-#: classes/dlg.php:519
+#: classes/dlg.php:168
 msgid "Any"
 msgstr ""
 
-#: classes/dlg.php:522
+#: classes/dlg.php:171
 #, fuzzy
 msgid "All tags."
 msgstr "sin etiquetas"
 
-#: classes/dlg.php:524
+#: classes/dlg.php:173
 msgid "Which Tags?"
 msgstr "¿Cuáles etiquetas?"
 
-#: classes/dlg.php:537
+#: classes/dlg.php:186
 msgid "Display entries"
 msgstr "Mostrar artículos"
 
-#: classes/dlg.php:549
-#: classes/feeds.php:138
-msgid "View as RSS"
-msgstr "Ver como RSS"
-
-#: classes/dlg.php:560
+#: classes/dlg.php:205
 msgid "You can view this feed as RSS using the following URL:"
 msgstr "Puede ver esta fuente en formato RSS en la siguiente URL:"
 
-#: classes/dlg.php:589
+#: classes/dlg.php:233
 #: plugins/updater/init.php:327
 #, php-format
 msgid "New version of Tiny Tiny RSS is available (%s)."
 msgstr "Nueva versión de Tiny Tiny RSS disponible (%s)."
 
-#: classes/dlg.php:597
+#: classes/dlg.php:241
 msgid "You can update using built-in updater in the Preferences or by using update.php"
 msgstr "Puede actualizar usando el gestor de actualización en las preferenciaso utilizando update.php"
 
-#: classes/dlg.php:601
+#: classes/dlg.php:245
 #: plugins/updater/init.php:331
 msgid "See the release notes"
 msgstr ""
 
-#: classes/dlg.php:603
+#: classes/dlg.php:247
 msgid "Download"
 msgstr "Descargar"
 
-#: classes/dlg.php:611
+#: classes/dlg.php:255
 msgid "Error receiving version information or no new version available."
 msgstr ""
 
-#: classes/dlg.php:631
-#, 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 "Aquí puede cambiar los colores, fuentes y diseño de su tema actual mediante código CSS. Puede utilizar  <a target=\"_blank\" class=\"visibleLink\" href=\"%s\">este archivo</a> como referencia."
-
-#: classes/dlg.php:657
-#: plugins/instances/init.php:207
-msgid "Instance"
-msgstr "Instancia"
-
-#: classes/dlg.php:666
-#: plugins/instances/init.php:218
-#: plugins/instances/init.php:315
-msgid "Instance URL"
-msgstr "URL de la instancia"
-
-#: classes/dlg.php:676
-#: plugins/instances/init.php:229
-msgid "Access key:"
-msgstr "Clave de acceso:"
-
-#: classes/dlg.php:679
-#: plugins/instances/init.php:232
-#: plugins/instances/init.php:316
-msgid "Access key"
-msgstr "Clave de acceso"
-
-#: classes/dlg.php:683
-#: plugins/instances/init.php:236
-msgid "Use one access key for both linked instances."
-msgstr "Usar una clave de acceso para ambas instancias enlazadas."
-
-#: classes/dlg.php:691
-#: plugins/instances/init.php:244
-msgid "Generate new key"
-msgstr "Generar nueva clave"
-
-#: classes/dlg.php:695
-msgid "Create link"
-msgstr "Crear enlace"
-
-#: classes/dlg.php:708
-msgid "Add one valid RSS feed per line (no feed detection is done)"
-msgstr "Añadir una fuente RSS válida en cada línea (no se realizará detección de fuentes)"
-
-#: classes/dlg.php:717
-msgid "Feeds to subscribe, One per line"
-msgstr "Fuentes para suscribirse, una por línea"
-
-#: classes/dlg.php:739
-msgid "Feeds require authentication."
-msgstr "Las fuentes requieren autenticación."
-
 #: classes/feeds.php:68
 msgid "Visit the website"
 msgstr "Visitar el sitio oficial"
@@ -1735,14 +1501,52 @@ msgstr "Visitar el sitio oficial"
 msgid "View as RSS feed"
 msgstr "Ver como fuente RSS"
 
+#: classes/feeds.php:84
+#: classes/feeds.php:138
+#: classes/pref/feeds.php:1440
+msgid "View as RSS"
+msgstr "Ver como RSS"
+
 #: classes/feeds.php:91
 msgid "Select:"
 msgstr "Seleccionar:"
 
+#: classes/feeds.php:92
+#: classes/pref/users.php:363
+#: classes/pref/labels.php:275
+#: classes/pref/filters.php:282
+#: classes/pref/filters.php:330
+#: classes/pref/filters.php:648
+#: classes/pref/filters.php:737
+#: classes/pref/filters.php:764
+#: classes/pref/prefs.php:908
+#: classes/pref/feeds.php:1266
+#: classes/pref/feeds.php:1536
+#: classes/pref/feeds.php:1606
+#: plugins/instances/init.php:290
+msgid "All"
+msgstr "Todo"
+
 #: classes/feeds.php:94
 msgid "Invert"
 msgstr "Invertir"
 
+#: classes/feeds.php:95
+#: classes/pref/users.php:365
+#: classes/pref/labels.php:277
+#: classes/pref/filters.php:284
+#: classes/pref/filters.php:332
+#: classes/pref/filters.php:650
+#: classes/pref/filters.php:739
+#: classes/pref/filters.php:766
+#: classes/pref/prefs.php:910
+#: classes/pref/feeds.php:1268
+#: classes/pref/feeds.php:1538
+#: classes/pref/feeds.php:1608
+#: plugins/instances/init.php:292
+msgid "None"
+msgstr "Nada"
+
 #: classes/feeds.php:101
 #, fuzzy
 msgid "More..."
@@ -1770,10 +1574,10 @@ msgid "Move back"
 msgstr "Mover a la fuente original"
 
 #: classes/feeds.php:118
-#: classes/pref/filters.php:246
-#: classes/pref/filters.php:294
-#: classes/pref/filters.php:688
-#: classes/pref/filters.php:715
+#: classes/pref/filters.php:291
+#: classes/pref/filters.php:339
+#: classes/pref/filters.php:746
+#: classes/pref/filters.php:773
 msgid "Delete"
 msgstr "Borrar"
 
@@ -1828,20 +1632,117 @@ msgid "No articles found to display."
 msgstr "No se han encontrado artículos que mostrar."
 
 #: classes/feeds.php:755
-#: classes/feeds.php:920
+#: classes/feeds.php:919
 #, php-format
 msgid "Feeds last updated at %s"
 msgstr "Última actualización de las fuentes: %s"
 
 #: classes/feeds.php:765
-#: classes/feeds.php:930
+#: classes/feeds.php:929
 msgid "Some feeds have update errors (click for details)"
 msgstr "Error al actualizar algunas fuentes (pulse aquí para obtener los detalles)"
 
-#: classes/feeds.php:910
+#: classes/feeds.php:909
 msgid "No feed selected."
 msgstr "No se ha seleccionado ninguna fuente."
 
+#: classes/feeds.php:962
+#: classes/feeds.php:970
+#, fuzzy
+msgid "Feed or site URL"
+msgstr "URL de la fuente"
+
+#: classes/feeds.php:976
+#: classes/pref/feeds.php:560
+#: classes/pref/feeds.php:782
+#: classes/pref/feeds.php:1761
+msgid "Place in category:"
+msgstr "Colocar en la categoría:"
+
+#: classes/feeds.php:984
+msgid "Available feeds"
+msgstr "Fuentes disponibles"
+
+#: classes/feeds.php:996
+#: classes/pref/users.php:155
+#: classes/pref/feeds.php:590
+#: classes/pref/feeds.php:818
+msgid "Authentication"
+msgstr "Autenticación"
+
+#: classes/feeds.php:1000
+#: classes/pref/users.php:420
+#: classes/pref/feeds.php:596
+#: classes/pref/feeds.php:822
+#: classes/pref/feeds.php:1775
+msgid "Login"
+msgstr "Iniciar sesión"
+
+#: classes/feeds.php:1003
+#: classes/pref/prefs.php:202
+#: classes/pref/feeds.php:602
+#: classes/pref/feeds.php:828
+#: classes/pref/feeds.php:1778
+msgid "Password"
+msgstr "Contraseña:"
+
+#: classes/feeds.php:1013
+msgid "This feed requires authentication."
+msgstr "Esta fuente requiere autenticación."
+
+#: classes/feeds.php:1018
+#: classes/feeds.php:1074
+#: classes/pref/feeds.php:1796
+msgid "Subscribe"
+msgstr "Suscribir"
+
+#: classes/feeds.php:1021
+msgid "More feeds"
+msgstr "Más fuentes"
+
+#: classes/feeds.php:1044
+#: classes/feeds.php:1135
+#: classes/pref/users.php:350
+#: classes/pref/filters.php:641
+#: classes/pref/feeds.php:1259
+#: js/tt-rss.js:170
+msgid "Search"
+msgstr "Buscar"
+
+#: classes/feeds.php:1048
+msgid "Popular feeds"
+msgstr "Fuentes populares"
+
+#: classes/feeds.php:1049
+msgid "Feed archive"
+msgstr "Archivo de fuentes"
+
+#: classes/feeds.php:1052
+msgid "limit:"
+msgstr "límite:"
+
+#: classes/feeds.php:1075
+#: classes/pref/users.php:376
+#: classes/pref/labels.php:284
+#: classes/pref/filters.php:398
+#: classes/pref/filters.php:667
+#: classes/pref/feeds.php:707
+#: plugins/instances/init.php:297
+msgid "Remove"
+msgstr "Eliminar"
+
+#: classes/feeds.php:1086
+msgid "Look for"
+msgstr "Buscar"
+
+#: classes/feeds.php:1094
+msgid "Limit search to:"
+msgstr "Limitar la búsqueda a:"
+
+#: classes/feeds.php:1110
+msgid "This feed"
+msgstr "Esta fuente"
+
 #: classes/backend.php:33
 msgid "Other interface tips are available in the Tiny Tiny RSS wiki."
 msgstr "Otros trucos están disponibles en el wiki de Tiny Tiny RSS."
@@ -1914,7 +1815,7 @@ msgid "Error: please upload OPML file."
 msgstr "Error: por favor, suba un fichero OPML."
 
 #: classes/opml.php:475
-#: plugins/googlereaderimport/init.php:157
+#: plugins/googlereaderimport/init.php:161
 msgid "Error while parsing document."
 msgstr "Error mientras se analizaba el documento."
 
@@ -1961,8 +1862,8 @@ msgid "Change password to"
 msgstr "Cambiar la contraseña a"
 
 #: classes/pref/users.php:177
-#: classes/pref/feeds.php:609
-#: classes/pref/feeds.php:833
+#: classes/pref/feeds.php:610
+#: classes/pref/feeds.php:834
 msgid "Options"
 msgstr "Opciones"
 
@@ -1999,6 +1900,21 @@ msgstr "Se ha cambiado la contraseña del usuario <strong>%s</strong> a <strong>
 msgid "[tt-rss] Password change notification"
 msgstr "[tt-rss] Notificación de cambio de contraseña"
 
+#: classes/pref/users.php:360
+#: classes/pref/labels.php:272
+#: classes/pref/filters.php:279
+#: classes/pref/filters.php:327
+#: classes/pref/filters.php:645
+#: classes/pref/filters.php:734
+#: classes/pref/filters.php:761
+#: classes/pref/prefs.php:905
+#: classes/pref/feeds.php:1263
+#: classes/pref/feeds.php:1533
+#: classes/pref/feeds.php:1603
+#: plugins/instances/init.php:287
+msgid "Select"
+msgstr "Seleccionar"
+
 #: classes/pref/users.php:368
 msgid "Create user"
 msgstr "Crear usuario"
@@ -2008,7 +1924,7 @@ msgid "Details"
 msgstr "Detalles"
 
 #: classes/pref/users.php:374
-#: classes/pref/filters.php:612
+#: classes/pref/filters.php:660
 #: plugins/instances/init.php:296
 msgid "Edit"
 msgstr "Editar"
@@ -2035,6 +1951,8 @@ msgid "No matching users found."
 msgstr "No se han encontrado usuarios coincidentes."
 
 #: classes/pref/labels.php:22
+#: classes/pref/filters.php:268
+#: classes/pref/filters.php:725
 #, fuzzy
 msgid "Caption"
 msgstr "Opciones"
@@ -2063,126 +1981,138 @@ msgstr "Se ha creado la etiqueta <strong>%s</strong>"
 msgid "Clear colors"
 msgstr "Limpiar los colores"
 
-#: classes/pref/filters.php:60
+#: classes/pref/filters.php:96
 #, fuzzy
 msgid "Articles matching this filter:"
 msgstr "No se han encontrado filtros coincidentes."
 
-#: classes/pref/filters.php:97
+#: classes/pref/filters.php:133
 #, fuzzy
 msgid "No recent articles matching this filter have been found."
 msgstr "No se han encontrado filtros coincidentes."
 
-#: classes/pref/filters.php:101
+#: classes/pref/filters.php:137
 msgid "Complex expressions might not give results while testing due to issues with database server regexp implementation."
 msgstr ""
 
-#: classes/pref/filters.php:229
-#: classes/pref/filters.php:671
-#: classes/pref/filters.php:786
+#: classes/pref/filters.php:274
+#: classes/pref/filters.php:729
+#: classes/pref/filters.php:844
 msgid "Match"
 msgstr "Coincidir"
 
-#: classes/pref/filters.php:243
-#: classes/pref/filters.php:291
-#: classes/pref/filters.php:685
-#: classes/pref/filters.php:712
+#: classes/pref/filters.php:288
+#: classes/pref/filters.php:336
+#: classes/pref/filters.php:743
+#: classes/pref/filters.php:770
 msgid "Add"
 msgstr ""
 
-#: classes/pref/filters.php:277
-#: classes/pref/filters.php:698
+#: classes/pref/filters.php:322
+#: classes/pref/filters.php:756
 #, fuzzy
 msgid "Apply actions"
 msgstr "Añadir acción"
 
-#: classes/pref/filters.php:327
-#: classes/pref/filters.php:727
+#: classes/pref/filters.php:372
+#: classes/pref/filters.php:785
 msgid "Enabled"
 msgstr "Habilitado"
 
-#: classes/pref/filters.php:336
-#: classes/pref/filters.php:730
+#: classes/pref/filters.php:381
+#: classes/pref/filters.php:788
 #, fuzzy
 msgid "Match any rule"
 msgstr "Coincidencia en:"
 
-#: classes/pref/filters.php:345
-#: classes/pref/filters.php:733
+#: classes/pref/filters.php:390
+#: classes/pref/filters.php:791
 #, fuzzy
 msgid "Inverse matching"
 msgstr "coincidencia inversa"
 
-#: classes/pref/filters.php:357
-#: classes/pref/filters.php:740
+#: classes/pref/filters.php:402
+#: classes/pref/filters.php:798
 msgid "Test"
 msgstr ""
 
-#: classes/pref/filters.php:390
+#: classes/pref/filters.php:435
 #, fuzzy
 msgid "(inverse)"
 msgstr "Inverso"
 
-#: classes/pref/filters.php:389
+#: classes/pref/filters.php:434
 #, php-format
 msgid "%s on %s in %s %s"
 msgstr ""
 
-#: classes/pref/filters.php:609
+#: classes/pref/filters.php:657
 msgid "Combine"
 msgstr ""
 
-#: classes/pref/filters.php:619
-#: classes/pref/feeds.php:1317
+#: classes/pref/filters.php:663
+#: classes/pref/feeds.php:1279
+#: classes/pref/feeds.php:1293
+#, fuzzy
+msgid "Reset sort order"
+msgstr "Redefinir contraseña"
+
+#: classes/pref/filters.php:671
+#: classes/pref/feeds.php:1318
 msgid "Rescore articles"
 msgstr "Reiniciar la puntuación de los artículos"
 
-#: classes/pref/filters.php:743
+#: classes/pref/filters.php:801
 msgid "Create"
 msgstr "Crear"
 
-#: classes/pref/filters.php:798
+#: classes/pref/filters.php:856
 msgid "Inverse regular expression matching"
 msgstr ""
 
-#: classes/pref/filters.php:800
+#: classes/pref/filters.php:858
 msgid "on field"
 msgstr "en el campo"
 
-#: classes/pref/filters.php:806
-#: js/PrefFilterTree.js:29
+#: classes/pref/filters.php:864
+#: js/PrefFilterTree.js:45
 #: plugins/digest/digest.js:242
 msgid "in"
 msgstr "en"
 
-#: classes/pref/filters.php:819
+#: classes/pref/filters.php:877
 #, fuzzy
 msgid "Save rule"
 msgstr "Guardar"
 
-#: classes/pref/filters.php:819
-#: js/functions.js:1069
+#: classes/pref/filters.php:877
+#: js/functions.js:1063
 msgid "Add rule"
 msgstr "Añadir regla"
 
-#: classes/pref/filters.php:842
+#: classes/pref/filters.php:900
 msgid "Perform Action"
 msgstr "Realizar la acción"
 
-#: classes/pref/filters.php:868
+#: classes/pref/filters.php:926
 msgid "with parameters:"
 msgstr "con los parámetros:"
 
-#: classes/pref/filters.php:886
+#: classes/pref/filters.php:944
 #, fuzzy
 msgid "Save action"
 msgstr "Acciones del panel"
 
-#: classes/pref/filters.php:886
-#: js/functions.js:1095
+#: classes/pref/filters.php:944
+#: js/functions.js:1089
 msgid "Add action"
 msgstr "Añadir acción"
 
+#: classes/pref/filters.php:967
+#, fuzzy
+msgid "[No caption]"
+msgstr "Opciones"
+
 #: classes/pref/prefs.php:17
 msgid "Old password cannot be blank."
 msgstr "La antigua contraseña no puede dejarse en blanco."
@@ -2400,264 +2330,290 @@ msgstr "Habilitar los iconos de la fuente"
 msgid "Incorrect password"
 msgstr "Nombre de usuario o contraseña incorrecta"
 
-#: classes/pref/feeds.php:12
+#: classes/pref/prefs.php:879
+#, 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 "Aquí puede cambiar los colores, fuentes y diseño de su tema actual mediante código CSS. Puede utilizar  <a target=\"_blank\" class=\"visibleLink\" href=\"%s\">este archivo</a> como referencia."
+
+#: classes/pref/prefs.php:919
+msgid "Create profile"
+msgstr "Crear perfil"
+
+#: classes/pref/prefs.php:942
+#: classes/pref/prefs.php:972
+msgid "(active)"
+msgstr "(activo)"
+
+#: classes/pref/prefs.php:1006
+msgid "Remove selected profiles"
+msgstr "Borrar los perfiles seleccionados"
+
+#: classes/pref/prefs.php:1008
+msgid "Activate profile"
+msgstr "Activar perfil"
+
+#: classes/pref/feeds.php:13
 msgid "Check to enable field"
 msgstr "Marcar para habilitar el campo"
 
-#: classes/pref/feeds.php:60
-#: classes/pref/feeds.php:208
-#: classes/pref/feeds.php:250
-#: classes/pref/feeds.php:256
-#: classes/pref/feeds.php:281
-#, fuzzy, php-format
-msgid "(%d feed)"
-msgid_plural "(%d feeds)"
-msgstr[0] "Editar la fuente"
-msgstr[1] "Editar la fuente"
-
-#: classes/pref/feeds.php:526
+#: classes/pref/feeds.php:527
 #, fuzzy
 msgid "Feed Title"
 msgstr "Título"
 
-#: classes/pref/feeds.php:582
-#: classes/pref/feeds.php:808
+#: classes/pref/feeds.php:568
+#: classes/pref/feeds.php:793
+msgid "Update"
+msgstr "Actualizar"
+
+#: classes/pref/feeds.php:583
+#: classes/pref/feeds.php:809
 msgid "Article purging:"
 msgstr "Purgando el artículo"
 
-#: classes/pref/feeds.php:605
+#: classes/pref/feeds.php:606
 msgid "<b>Hint:</b> you need to fill in your login information if your feed requires authentication, except for Twitter feeds."
 msgstr ""
 
-#: classes/pref/feeds.php:621
-#: classes/pref/feeds.php:837
+#: classes/pref/feeds.php:622
+#: classes/pref/feeds.php:838
 #, fuzzy
 msgid "Hide from Popular feeds"
 msgstr "Ocultar en mi lista de fuentes"
 
-#: classes/pref/feeds.php:633
-#: classes/pref/feeds.php:843
+#: classes/pref/feeds.php:634
+#: classes/pref/feeds.php:844
 msgid "Include in e-mail digest"
 msgstr "Incluir en el correo recopilatorio"
 
-#: classes/pref/feeds.php:646
-#: classes/pref/feeds.php:849
+#: classes/pref/feeds.php:647
+#: classes/pref/feeds.php:850
 msgid "Always display image attachments"
 msgstr "Desplegar siempre las imágenes adjuntas"
 
-#: classes/pref/feeds.php:659
-#: classes/pref/feeds.php:857
+#: classes/pref/feeds.php:660
+#: classes/pref/feeds.php:858
 msgid "Do not embed images"
 msgstr ""
 
-#: classes/pref/feeds.php:672
-#: classes/pref/feeds.php:865
+#: classes/pref/feeds.php:673
+#: classes/pref/feeds.php:866
 msgid "Cache images locally"
 msgstr "Guardar las imágenes en la memoria caché local"
 
-#: classes/pref/feeds.php:684
-#: classes/pref/feeds.php:871
+#: classes/pref/feeds.php:685
+#: classes/pref/feeds.php:872
 #, fuzzy
 msgid "Mark updated articles as unread"
 msgstr "¿Marcar todos los artículos como leídos?"
 
-#: classes/pref/feeds.php:690
+#: classes/pref/feeds.php:691
 msgid "Icon"
 msgstr ""
 
-#: classes/pref/feeds.php:704
+#: classes/pref/feeds.php:705
 msgid "Replace"
 msgstr ""
 
-#: classes/pref/feeds.php:723
+#: classes/pref/feeds.php:724
 #, fuzzy
 msgid "Resubscribe to push updates"
 msgstr "Suscrito a las fuentes:"
 
-#: classes/pref/feeds.php:730
+#: classes/pref/feeds.php:731
 msgid "Resets PubSubHubbub subscription status for push-enabled feeds."
 msgstr ""
 
-#: classes/pref/feeds.php:1111
-#: classes/pref/feeds.php:1164
+#: classes/pref/feeds.php:1112
+#: classes/pref/feeds.php:1165
 msgid "All done."
 msgstr "Hecho."
 
-#: classes/pref/feeds.php:1219
+#: classes/pref/feeds.php:1220
 #, fuzzy
 msgid "Feeds with errors"
 msgstr "Editor de fuente"
 
-#: classes/pref/feeds.php:1239
+#: classes/pref/feeds.php:1240
 #, fuzzy
 msgid "Inactive feeds"
 msgstr "Fuente completa"
 
-#: classes/pref/feeds.php:1276
+#: classes/pref/feeds.php:1277
 #, fuzzy
 msgid "Edit selected feeds"
 msgstr "Purgando la fuente seleccionada..."
 
-#: classes/pref/feeds.php:1278
-#: classes/pref/feeds.php:1292
-#, fuzzy
-msgid "Reset sort order"
-msgstr "Redefinir contraseña"
-
-#: classes/pref/feeds.php:1280
-#: js/prefs.js:1764
+#: classes/pref/feeds.php:1281
+#: js/prefs.js:1770
 msgid "Batch subscribe"
 msgstr "Suscripción en lote"
 
-#: classes/pref/feeds.php:1285
+#: classes/pref/feeds.php:1286
 #, fuzzy
 msgid "Categories"
 msgstr "Volver a categorizar"
 
-#: classes/pref/feeds.php:1288
+#: classes/pref/feeds.php:1289
 #, fuzzy
 msgid "Add category"
 msgstr "Añadiendo categoría de fuentes..."
 
-#: classes/pref/feeds.php:1290
+#: classes/pref/feeds.php:1291
 #, fuzzy
 msgid "(Un)hide empty categories"
 msgstr "Editar categorías"
 
-#: classes/pref/feeds.php:1294
+#: classes/pref/feeds.php:1295
 #, fuzzy
 msgid "Remove selected"
 msgstr "¿Borrar fuentes seleccionadas?"
 
-#: classes/pref/feeds.php:1308
+#: classes/pref/feeds.php:1309
 #, fuzzy
 msgid "More actions..."
 msgstr "Acciones..."
 
-#: classes/pref/feeds.php:1312
+#: classes/pref/feeds.php:1313
 msgid "Manual purge"
 msgstr "Purga manual"
 
-#: classes/pref/feeds.php:1316
+#: classes/pref/feeds.php:1317
 msgid "Clear feed data"
 msgstr "Limpiar los datos de la fuente"
 
-#: classes/pref/feeds.php:1367
+#: classes/pref/feeds.php:1368
 msgid "OPML"
 msgstr "OPML"
 
-#: classes/pref/feeds.php:1369
+#: classes/pref/feeds.php:1370
 msgid "Using OPML you can export and import your feeds, filters, labels and Tiny Tiny RSS settings."
 msgstr ""
 
-#: classes/pref/feeds.php:1371
+#: classes/pref/feeds.php:1372
 msgid "Only main settings profile can be migrated using OPML."
 msgstr ""
 
-#: classes/pref/feeds.php:1384
+#: classes/pref/feeds.php:1385
 #, fuzzy
 msgid "Import my OPML"
 msgstr "Importando OPML (usando la extensión DOMXML)..."
 
-#: classes/pref/feeds.php:1388
+#: classes/pref/feeds.php:1389
 msgid "Filename:"
 msgstr ""
 
-#: classes/pref/feeds.php:1390
+#: classes/pref/feeds.php:1391
 #, fuzzy
 msgid "Include settings"
 msgstr "Incluir en el correo recopilatorio"
 
-#: classes/pref/feeds.php:1394
+#: classes/pref/feeds.php:1395
 #, fuzzy
 msgid "Export OPML"
 msgstr "Exportar OPML"
 
-#: classes/pref/feeds.php:1398
+#: classes/pref/feeds.php:1399
 #, fuzzy
 msgid "Your OPML can be published publicly and can be subscribed by anyone who knows the URL below."
 msgstr "Los artículos publicados son exportados como una fuente RSS pública a la cual podrá suscribirse cualquiera que conozca la URL especificada a continuación."
 
-#: classes/pref/feeds.php:1400
+#: classes/pref/feeds.php:1401
 msgid "Published OPML does not include your Tiny Tiny RSS settings, feeds that require authentication or feeds hidden from Popular feeds."
 msgstr ""
 
 #: classes/pref/feeds.php:1403
+msgid "Public OPML URL"
+msgstr "URL del archivo OPML público"
+
+#: classes/pref/feeds.php:1404
 #, fuzzy
 msgid "Display published OPML URL"
 msgstr "URL del archivo OPML público"
 
-#: classes/pref/feeds.php:1413
+#: classes/pref/feeds.php:1414
 #, fuzzy
 msgid "Firefox integration"
 msgstr "Integración con Firefox"
 
-#: classes/pref/feeds.php:1415
+#: classes/pref/feeds.php:1416
 msgid "This Tiny Tiny RSS site can be used as a Firefox Feed Reader by clicking the link below."
 msgstr "Este sitio Tiny tiny RSS puede ser usado como un lector de fuentes de Firefox si pulsa en el enlace de abajo."
 
-#: classes/pref/feeds.php:1422
+#: classes/pref/feeds.php:1423
 msgid "Click here to register this site as a feed reader."
 msgstr "Pulse aquí para registrar este sitio como un lector de fuentes."
 
-#: classes/pref/feeds.php:1430
+#: classes/pref/feeds.php:1431
 #, fuzzy
 msgid "Published & shared articles / Generated feeds"
 msgstr "¿Reiniciar la puntuación de los artículos de las fuentes seleccionadas?"
 
-#: classes/pref/feeds.php:1432
+#: classes/pref/feeds.php:1433
 #, fuzzy
 msgid "Published articles and generated feeds"
 msgstr "¿Reiniciar la puntuación de los artículos de las fuentes seleccionadas?"
 
-#: classes/pref/feeds.php:1434
+#: classes/pref/feeds.php:1435
 msgid "Published articles are exported as a public RSS feed and can be subscribed by anyone who knows the URL specified below."
 msgstr "Los artículos publicados son exportados como una fuente RSS pública a la cual podrá suscribirse cualquiera que conozca la URL especificada a continuación."
 
-#: classes/pref/feeds.php:1440
+#: classes/pref/feeds.php:1441
 #, fuzzy
 msgid "Display URL"
 msgstr "Mostrar artículos"
 
-#: classes/pref/feeds.php:1443
+#: classes/pref/feeds.php:1444
 msgid "Clear all generated URLs"
 msgstr ""
 
-#: classes/pref/feeds.php:1445
+#: classes/pref/feeds.php:1446
 #, fuzzy
 msgid "Articles shared by URL"
 msgstr "Marcar el artículo como favorito"
 
-#: classes/pref/feeds.php:1447
+#: classes/pref/feeds.php:1448
 msgid "You can disable all articles shared by unique URLs here."
 msgstr ""
 
-#: classes/pref/feeds.php:1450
+#: classes/pref/feeds.php:1451
 #, fuzzy
 msgid "Unshare all articles"
 msgstr "Quitar el artículo de los favoritos"
 
-#: classes/pref/feeds.php:1528
+#: classes/pref/feeds.php:1529
 #, fuzzy
 msgid "These feeds have not been updated with new content for 3 months (oldest first):"
 msgstr "Estas fuentes no han sido actualizadas debido a los siguientes errores:"
 
-#: classes/pref/feeds.php:1565
-#: classes/pref/feeds.php:1635
+#: classes/pref/feeds.php:1566
+#: classes/pref/feeds.php:1636
 #, fuzzy
 msgid "Click to edit feed"
 msgstr "Pulse aquí para editar"
 
-#: classes/pref/feeds.php:1583
-#: classes/pref/feeds.php:1655
+#: classes/pref/feeds.php:1584
+#: classes/pref/feeds.php:1656
 #, fuzzy
 msgid "Unsubscribe from selected feeds"
 msgstr "¿Cancelar la suscripción a las fuentes seleccionadas?"
 
-#: classes/pref/feeds.php:1594
+#: classes/pref/feeds.php:1595
 msgid "These feeds have not been updated because of errors:"
 msgstr "Estas fuentes no han sido actualizadas debido a los siguientes errores:"
 
+#: classes/pref/feeds.php:1758
+msgid "Add one valid RSS feed per line (no feed detection is done)"
+msgstr "Añadir una fuente RSS válida en cada línea (no se realizará detección de fuentes)"
+
+#: classes/pref/feeds.php:1767
+msgid "Feeds to subscribe, One per line"
+msgstr "Fuentes para suscribirse, una por línea"
+
+#: classes/pref/feeds.php:1789
+msgid "Feeds require authentication."
+msgstr "Las fuentes requieren autenticación."
+
 #: plugins/digest/digest_body.php:59
 #, fuzzy
 msgid "Your browser doesn't support Javascript, which is required for this application to function properly. Please check your browser settings."
@@ -2925,24 +2881,24 @@ msgstr "Marcar como favorito"
 msgid "No file uploaded."
 msgstr "No hay fichero OPML que subir."
 
-#: plugins/googlereaderimport/init.php:149
+#: plugins/googlereaderimport/init.php:153
 #, php-format
 msgid "All done. %d out of %d articles imported."
 msgstr ""
 
-#: plugins/googlereaderimport/init.php:153
+#: plugins/googlereaderimport/init.php:157
 msgid "The document has incorrect format."
 msgstr ""
 
-#: plugins/googlereaderimport/init.php:322
+#: plugins/googlereaderimport/init.php:326
 msgid "Import starred or shared items from Google Reader"
 msgstr ""
 
-#: plugins/googlereaderimport/init.php:326
+#: plugins/googlereaderimport/init.php:330
 msgid "Paste your starred.json or shared.json into the form below."
 msgstr ""
 
-#: plugins/googlereaderimport/init.php:340
+#: plugins/googlereaderimport/init.php:344
 msgid "Import my Starred items"
 msgstr ""
 
@@ -2950,6 +2906,38 @@ msgstr ""
 msgid "Linked"
 msgstr "Enlazado"
 
+#: plugins/instances/init.php:207
+#: plugins/instances/init.php:399
+msgid "Instance"
+msgstr "Instancia"
+
+#: plugins/instances/init.php:218
+#: plugins/instances/init.php:315
+#: plugins/instances/init.php:408
+msgid "Instance URL"
+msgstr "URL de la instancia"
+
+#: plugins/instances/init.php:229
+#: plugins/instances/init.php:418
+msgid "Access key:"
+msgstr "Clave de acceso:"
+
+#: plugins/instances/init.php:232
+#: plugins/instances/init.php:316
+#: plugins/instances/init.php:421
+msgid "Access key"
+msgstr "Clave de acceso"
+
+#: plugins/instances/init.php:236
+#: plugins/instances/init.php:425
+msgid "Use one access key for both linked instances."
+msgstr "Usar una clave de acceso para ambas instancias enlazadas."
+
+#: plugins/instances/init.php:244
+#: plugins/instances/init.php:433
+msgid "Generate new key"
+msgstr "Generar nueva clave"
+
 #: plugins/instances/init.php:295
 #, fuzzy
 msgid "Link instance"
@@ -2972,6 +2960,10 @@ msgstr ""
 msgid "Stored feeds"
 msgstr "Más fuentes"
 
+#: plugins/instances/init.php:437
+msgid "Create link"
+msgstr "Crear enlace"
+
 #: plugins/share/init.php:27
 #, fuzzy
 msgid "Share by URL"
@@ -3037,173 +3029,177 @@ msgstr "¿Está seguro de que quiere reportar esta excepción a tt-rss.org? El i
 msgid "close"
 msgstr ""
 
-#: js/functions.js:627
+#: js/functions.js:621
 msgid "Date syntax appears to be correct:"
 msgstr "Sintaxis de fecha parece correcta:"
 
-#: js/functions.js:630
+#: js/functions.js:624
 msgid "Date syntax is incorrect."
 msgstr "Sintaxis de fecha es incorrecta."
 
-#: js/functions.js:724
+#: js/functions.js:636
+msgid "Error explained"
+msgstr ""
+
+#: js/functions.js:718
 msgid "Upload complete."
 msgstr ""
 
-#: js/functions.js:748
+#: js/functions.js:742
 msgid "Remove stored feed icon?"
 msgstr "¿Borrar el icono de la fuente?"
 
-#: js/functions.js:753
+#: js/functions.js:747
 #, fuzzy
 msgid "Removing feed icon..."
 msgstr "Eliminando la fuente..."
 
-#: js/functions.js:758
+#: js/functions.js:752
 #, fuzzy
 msgid "Feed icon removed."
 msgstr "Fuente no encontrada."
 
-#: js/functions.js:780
+#: js/functions.js:774
 msgid "Please select an image file to upload."
 msgstr "Seleccione un archivo de imagen para cargar."
 
-#: js/functions.js:782
+#: js/functions.js:776
 msgid "Upload new icon for this feed?"
 msgstr "¿Cargar un nuevo icono para esta fuente?"
 
-#: js/functions.js:783
+#: js/functions.js:777
 #, fuzzy
 msgid "Uploading, please wait..."
 msgstr "Cargando. Por favor, espere..."
 
-#: js/functions.js:799
+#: js/functions.js:793
 msgid "Please enter label caption:"
 msgstr "Por favor, introduzca el nombre del marcador:"
 
-#: js/functions.js:804
+#: js/functions.js:798
 msgid "Can't create label: missing caption."
 msgstr "No se puede crear el marcador: falta nombre."
 
-#: js/functions.js:847
+#: js/functions.js:841
 msgid "Subscribe to Feed"
 msgstr "Suscribirse a fuente"
 
-#: js/functions.js:874
+#: js/functions.js:868
 msgid "Subscribed to %s"
 msgstr "Se ha suscrito a %s"
 
-#: js/functions.js:879
+#: js/functions.js:873
 msgid "Specified URL seems to be invalid."
 msgstr "La URL especificada parece ser inválida."
 
-#: js/functions.js:882
+#: js/functions.js:876
 msgid "Specified URL doesn't seem to contain any feeds."
 msgstr "La URL especificada no parece contener fuentes."
 
-#: js/functions.js:935
+#: js/functions.js:929
 msgid "Couldn't download the specified URL: %s"
 msgstr "No se pudo cargar la URL especificada: %s"
 
-#: js/functions.js:939
+#: js/functions.js:933
 msgid "You are already subscribed to this feed."
 msgstr "Ya está suscrito a esta fuente."
 
-#: js/functions.js:1069
+#: js/functions.js:1063
 msgid "Edit rule"
 msgstr "Editar regla"
 
-#: js/functions.js:1095
+#: js/functions.js:1089
 msgid "Edit action"
 msgstr "Editar acción"
 
-#: js/functions.js:1132
+#: js/functions.js:1126
 msgid "Create Filter"
 msgstr "Crear filtro"
 
-#: js/functions.js:1247
+#: js/functions.js:1241
 msgid "Reset subscription? Tiny Tiny RSS will try to subscribe to the notification hub again on next feed update."
 msgstr "¿Restaurar suscripción? Tiny Tiny RSS volverá a intentar suscribirse al hub de notificaciones en la siguiente actualización de fuentes."
 
-#: js/functions.js:1258
+#: js/functions.js:1252
 #, fuzzy
 msgid "Subscription reset."
 msgstr "Suscribirse a una fuente..."
 
-#: js/functions.js:1268
+#: js/functions.js:1262
 #: js/tt-rss.js:619
 msgid "Unsubscribe from %s?"
 msgstr "¿Cancelar la suscripción a %s?"
 
-#: js/functions.js:1271
+#: js/functions.js:1265
 msgid "Removing feed..."
 msgstr "Eliminando la fuente..."
 
-#: js/functions.js:1379
+#: js/functions.js:1373
 msgid "Please enter category title:"
 msgstr "Introduzca el nombre de la categoría:"
 
-#: js/functions.js:1410
+#: js/functions.js:1404
 msgid "Generate new syndication address for this feed?"
 msgstr "¿Generar nueva dirección de sindicación para esta fuente?"
 
-#: js/functions.js:1414
-#: js/prefs.js:1234
+#: js/functions.js:1408
+#: js/prefs.js:1222
 msgid "Trying to change address..."
 msgstr "Intentando cambiar la dirección..."
 
-#: js/functions.js:1601
+#: js/functions.js:1595
 #: js/tt-rss.js:396
 #: js/tt-rss.js:600
 msgid "You can't edit this kind of feed."
 msgstr "No puede editar esta clase de fuente."
 
-#: js/functions.js:1616
+#: js/functions.js:1610
 msgid "Edit Feed"
 msgstr "Editar fuente"
 
-#: js/functions.js:1622
+#: js/functions.js:1616
 #: js/prefs.js:194
 #: js/prefs.js:749
 #, fuzzy
 msgid "Saving data..."
 msgstr "Guardando fuente..."
 
-#: js/functions.js:1654
+#: js/functions.js:1648
 msgid "More Feeds"
 msgstr "Más fuentes"
 
-#: js/functions.js:1715
-#: js/functions.js:1825
+#: js/functions.js:1709
+#: js/functions.js:1819
 #: 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
+#: js/prefs.js:1198
+#: js/prefs.js:1343
 msgid "No feeds are selected."
 msgstr "No se han seleccionado fuentes."
 
-#: js/functions.js:1757
+#: js/functions.js:1751
 msgid "Remove selected feeds from the archive? Feeds with stored articles will not be removed."
 msgstr "¿Eliminar las fuentes seleccionadas del archivo? Las fuentes con artículos archivados no serán eliminadas."
 
-#: js/functions.js:1796
+#: js/functions.js:1790
 msgid "Feeds with update errors"
 msgstr "Fuentes con errores de actualización"
 
-#: js/functions.js:1807
-#: js/prefs.js:1192
+#: js/functions.js:1801
+#: js/prefs.js:1180
 msgid "Remove selected feeds?"
 msgstr "¿Borrar fuentes seleccionadas?"
 
-#: js/functions.js:1810
-#: js/prefs.js:1195
+#: js/functions.js:1804
+#: js/prefs.js:1183
 #, fuzzy
 msgid "Removing selected feeds..."
 msgstr "Eliminando los filtros seleccionados..."
 
-#: js/functions.js:1908
+#: js/functions.js:1902
 msgid "Help"
 msgstr "Ayuda"
 
@@ -3215,7 +3211,7 @@ msgstr "Editar categoría"
 msgid "Remove category"
 msgstr "Borrar categoría"
 
-#: js/PrefFilterTree.js:32
+#: js/PrefFilterTree.js:48
 msgid "Inverse"
 msgstr "Inverso"
 
@@ -3252,7 +3248,7 @@ msgid "Removing selected labels..."
 msgstr "Eliminando las etiquetas seleccionadas..."
 
 #: js/prefs.js:295
-#: js/prefs.js:1396
+#: js/prefs.js:1384
 msgid "No labels are selected."
 msgstr "No se han seleccionado marcadores."
 
@@ -3357,153 +3353,153 @@ msgstr "Editar múltiples fuentes"
 msgid "Save changes to selected feeds?"
 msgstr "¿Guardar los cambios de las fuentes seleccionadas?"
 
-#: js/prefs.js:797
+#: js/prefs.js:785
 msgid "OPML Import"
 msgstr "Importar OPML"
 
-#: js/prefs.js:824
+#: js/prefs.js:812
 msgid "Please choose an OPML file first."
 msgstr "Por favor, seleccione un archivo OPML."
 
-#: js/prefs.js:827
+#: js/prefs.js:815
 #: plugins/import_export/import_export.js:115
 #: plugins/googlereaderimport/init.js:45
 #, fuzzy
 msgid "Importing, please wait..."
 msgstr "Cargando. Por favor, espere..."
 
-#: js/prefs.js:980
+#: js/prefs.js:968
 msgid "Reset to defaults?"
 msgstr "¿Restaurar las opciones por defecto?"
 
-#: js/prefs.js:1099
+#: js/prefs.js:1087
 msgid "Remove category %s? Any nested feeds would be placed into Uncategorized."
 msgstr "¿Borrar la categoría %s? Cualquier subcategoría será movida a Sin Categoría."
 
-#: js/prefs.js:1105
+#: js/prefs.js:1093
 #, fuzzy
 msgid "Removing category..."
 msgstr "Borrar categoría"
 
-#: js/prefs.js:1126
+#: js/prefs.js:1114
 msgid "Remove selected categories?"
 msgstr "¿Eliminar las categorías seleccionadas?"
 
-#: js/prefs.js:1129
+#: js/prefs.js:1117
 msgid "Removing selected categories..."
 msgstr "Eliminando las categorías seleccionadas..."
 
-#: js/prefs.js:1142
+#: js/prefs.js:1130
 msgid "No categories are selected."
 msgstr "No se han seleccionado categorías."
 
-#: js/prefs.js:1150
+#: js/prefs.js:1138
 msgid "Category title:"
 msgstr "Nombre de la categoría:"
 
-#: js/prefs.js:1154
+#: js/prefs.js:1142
 #, fuzzy
 msgid "Creating category..."
 msgstr "Crear filtro..."
 
-#: js/prefs.js:1181
+#: js/prefs.js:1169
 msgid "Feeds without recent updates"
 msgstr "Fuentes sin actualizaciones recientes"
 
-#: js/prefs.js:1230
+#: js/prefs.js:1218
 msgid "Replace current OPML publishing address with a new one?"
 msgstr "¿Reemplazar la dirección actual de publicación del OPML por una dirección nueva?"
 
-#: js/prefs.js:1319
+#: js/prefs.js:1307
 msgid "Clearing feed..."
 msgstr "Limpiando la fuente..."
 
-#: js/prefs.js:1339
+#: js/prefs.js:1327
 msgid "Rescore articles in selected feeds?"
 msgstr "¿Reiniciar la puntuación de los artículos de las fuentes seleccionadas?"
 
-#: js/prefs.js:1342
+#: js/prefs.js:1330
 #, fuzzy
 msgid "Rescoring selected feeds..."
 msgstr "Limpiando las fuentes seleccionadas..."
 
-#: js/prefs.js:1362
+#: js/prefs.js:1350
 msgid "Rescore all articles? This operation may take a lot of time."
 msgstr "¿Reiniciar la puntuación de todos los artículos? Esta operación puede llevar cierto tiempo."
 
-#: js/prefs.js:1365
+#: js/prefs.js:1353
 #, fuzzy
 msgid "Rescoring feeds..."
 msgstr "Eliminando la fuente..."
 
-#: js/prefs.js:1382
+#: js/prefs.js:1370
 msgid "Reset selected labels to default colors?"
 msgstr "¿Restaurar color por defecto en los marcadores seleccionados?"
 
-#: js/prefs.js:1419
+#: js/prefs.js:1407
 msgid "Settings Profiles"
 msgstr "Perfiles de preferencias"
 
-#: js/prefs.js:1428
+#: js/prefs.js:1416
 msgid "Remove selected profiles? Active and default profiles will not be removed."
 msgstr "¿Borrar los perfiles seleccionados? El perfil activo y el perfil por defecto no serán borrados."
 
-#: js/prefs.js:1431
+#: js/prefs.js:1419
 #, fuzzy
 msgid "Removing selected profiles..."
 msgstr "Eliminando los filtros seleccionados..."
 
-#: js/prefs.js:1446
+#: js/prefs.js:1434
 msgid "No profiles are selected."
 msgstr "No se ha seleccionado ningún perfil."
 
-#: js/prefs.js:1454
-#: js/prefs.js:1507
+#: js/prefs.js:1442
+#: js/prefs.js:1495
 msgid "Activate selected profile?"
 msgstr "¿Activar el perfil seleccionado?"
 
-#: js/prefs.js:1470
-#: js/prefs.js:1523
+#: js/prefs.js:1458
+#: js/prefs.js:1511
 msgid "Please choose a profile to activate."
 msgstr "Seleccione un perfil para activar."
 
-#: js/prefs.js:1475
+#: js/prefs.js:1463
 #, fuzzy
 msgid "Creating profile..."
 msgstr "Crear perfil"
 
-#: js/prefs.js:1531
+#: js/prefs.js:1519
 msgid "This will invalidate all previously generated feed URLs. Continue?"
 msgstr "Se invalidarán todas las URLs generadas previamente. ¿Continuar?"
 
-#: js/prefs.js:1534
-#: js/prefs.js:1553
+#: js/prefs.js:1522
+#: js/prefs.js:1541
 #, fuzzy
 msgid "Clearing URLs..."
 msgstr "Limpiando la fuente..."
 
-#: js/prefs.js:1541
+#: js/prefs.js:1529
 #, fuzzy
 msgid "Generated URLs cleared."
 msgstr "Generar URL nueva"
 
-#: js/prefs.js:1550
+#: js/prefs.js:1538
 msgid "This will invalidate all previously shared article URLs. Continue?"
 msgstr "Se invalidarán todas las URLs de artículos compartidos. ¿Continuar?"
 
-#: js/prefs.js:1560
+#: js/prefs.js:1548
 msgid "Shared URLs cleared."
 msgstr ""
 
-#: js/prefs.js:1648
+#: js/prefs.js:1654
 msgid "Label Editor"
 msgstr "Editor de marcadores"
 
-#: js/prefs.js:1770
+#: js/prefs.js:1776
 msgid "Subscribing to feeds..."
 msgstr "Suscribiéndose a las fuentes..."
 
-#: js/prefs.js:1807
+#: js/prefs.js:1813
 msgid "Clear stored data for this plugin?"
 msgstr ""
 
@@ -3525,28 +3521,32 @@ msgstr "Por favor, seleccione primero alguna fuente."
 msgid "Please enable embed_original plugin first."
 msgstr "Por favor, seleccione primero alguna fuente."
 
+#: js/tt-rss.js:587
+msgid "Select item(s) by tags"
+msgstr "Seleccionar artículo(s) por etiquetas"
+
 #: js/tt-rss.js:608
 msgid "You can't unsubscribe from the category."
 msgstr "No puede cancelar la suscripción a la categoría."
 
 #: js/tt-rss.js:613
-#: js/tt-rss.js:769
+#: js/tt-rss.js:765
 msgid "Please select some feed first."
 msgstr "Por favor, seleccione primero alguna fuente."
 
-#: js/tt-rss.js:764
+#: js/tt-rss.js:760
 msgid "You can't rescore this kind of feed."
 msgstr "No puede reiniciar la puntuación de esta clase de fuente."
 
-#: js/tt-rss.js:774
+#: js/tt-rss.js:770
 msgid "Rescore articles in %s?"
 msgstr "¿Reiniciar la puntuación de los artículos de %s?"
 
-#: js/tt-rss.js:777
+#: js/tt-rss.js:773
 msgid "Rescoring articles..."
 msgstr "Reiniciando la puntuación de los artículos..."
 
-#: js/tt-rss.js:911
+#: js/tt-rss.js:907
 msgid "New version available!"
 msgstr "¡Nueva versión disponible!"
 
@@ -3578,118 +3578,114 @@ msgstr "Despublicar artículo"
 #: js/viewfeed.js:734
 #: js/viewfeed.js:797
 #: js/viewfeed.js:831
-#: js/viewfeed.js:968
-#: js/viewfeed.js:1011
-#: js/viewfeed.js:1064
-#: js/viewfeed.js:2108
+#: js/viewfeed.js:951
+#: js/viewfeed.js:994
+#: js/viewfeed.js:1047
+#: js/viewfeed.js:2096
 #: 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:948
-msgid "Mark all visible articles in %s as read?"
-msgstr "¿Marcar todos los artículos visibles de %s como leídos?"
-
-#: js/viewfeed.js:976
+#: js/viewfeed.js:959
 #, fuzzy
 msgid "Delete %d selected article in %s?"
 msgid_plural "Delete %d selected articles in %s?"
 msgstr[0] "¿Borrar %d artículos seleccionados en %s?"
 msgstr[1] "¿Borrar %d artículos seleccionados en %s?"
 
-#: js/viewfeed.js:978
+#: js/viewfeed.js:961
 #, fuzzy
 msgid "Delete %d selected article?"
 msgid_plural "Delete %d selected articles?"
 msgstr[0] "¿Borrar %d artículos seleccionados?"
 msgstr[1] "¿Borrar %d artículos seleccionados?"
 
-#: js/viewfeed.js:1020
+#: js/viewfeed.js:1003
 #, fuzzy
 msgid "Archive %d selected article in %s?"
 msgid_plural "Archive %d selected articles in %s?"
 msgstr[0] "¿Archivar %d artículos seleccionados en %s?"
 msgstr[1] "¿Archivar %d artículos seleccionados en %s?"
 
-#: js/viewfeed.js:1023
+#: js/viewfeed.js:1006
 #, fuzzy
 msgid "Move %d archived article back?"
 msgid_plural "Move %d archived articles back?"
 msgstr[0] "¿Mover %d artículos archivados a su fuente original?"
 msgstr[1] "¿Mover %d artículos archivados a su fuente original?"
 
-#: js/viewfeed.js:1025
+#: js/viewfeed.js:1008
 msgid "Please note that unstarred articles might get purged on next feed update."
 msgstr ""
 
-#: js/viewfeed.js:1070
+#: js/viewfeed.js:1053
 #, fuzzy
 msgid "Mark %d selected article in %s as read?"
 msgid_plural "Mark %d selected articles in %s as read?"
 msgstr[0] "¿Marcar %d artículos seleccionados de %s como leídos?"
 msgstr[1] "¿Marcar %d artículos seleccionados de %s como leídos?"
 
-#: js/viewfeed.js:1094
+#: js/viewfeed.js:1077
 msgid "Edit article Tags"
 msgstr "Editar las etiquetas del artículo"
 
-#: js/viewfeed.js:1100
+#: js/viewfeed.js:1083
 msgid "Saving article tags..."
 msgstr "Guardando las etiquetas del artículo..."
 
-#: js/viewfeed.js:1337
+#: js/viewfeed.js:1323
 msgid "No article is selected."
 msgstr "No se ha seleccionado ningún artículo."
 
-#: js/viewfeed.js:1372
+#: js/viewfeed.js:1358
 msgid "No articles found to mark"
 msgstr "No se han encontrado artículos que marcar"
 
-#: js/viewfeed.js:1374
+#: js/viewfeed.js:1360
 #, fuzzy
 msgid "Mark %d article as read?"
 msgid_plural "Mark %d articles as read?"
 msgstr[0] "¿Marcar %d artículo(s) como leído(s)?"
 msgstr[1] "¿Marcar %d artículo(s) como leído(s)?"
 
-#: js/viewfeed.js:1884
+#: js/viewfeed.js:1872
 msgid "Open original article"
 msgstr "Abrir artículo original"
 
-#: js/viewfeed.js:1890
+#: js/viewfeed.js:1878
 #, fuzzy
 msgid "Display article URL"
 msgstr "Mostrar artículos"
 
-#: js/viewfeed.js:1909
+#: js/viewfeed.js:1897
 #, fuzzy
 msgid "Toggle marked"
 msgstr "Alternar favoritos"
 
-#: js/viewfeed.js:1995
+#: js/viewfeed.js:1983
 msgid "Remove label"
 msgstr "Borrar marcador"
 
-#: js/viewfeed.js:2019
+#: js/viewfeed.js:2007
 msgid "Playing..."
 msgstr "Reproduciendo..."
 
-#: js/viewfeed.js:2020
+#: js/viewfeed.js:2008
 msgid "Click to pause"
 msgstr "Clic para pausar"
 
-#: js/viewfeed.js:2077
+#: js/viewfeed.js:2065
 #, fuzzy
 msgid "Please enter new score for selected articles:"
 msgstr "Por favor, introduzca una nota para este artículo:"
 
-#: js/viewfeed.js:2119
+#: js/viewfeed.js:2107
 #, fuzzy
 msgid "Please enter new score for this article:"
 msgstr "Por favor, introduzca una nota para este artículo:"
 
-#: js/viewfeed.js:2152
+#: js/viewfeed.js:2140
 #, fuzzy
 msgid "Article URL:"
 msgstr "Todos"
@@ -3800,6 +3796,21 @@ msgstr "Compartir artículo mediante URL"
 msgid "Live updating is considered experimental. Backup your tt-rss directory before continuing. Please type 'yes' to continue."
 msgstr "La actualización en vivo es una característica experimental. Haga una copia de seguridad de la carpeta de tt-rss antes de continuar. Escriba 'yes' para continuar."
 
+#, fuzzy
+#~ msgid "(%d feed)"
+#~ msgid_plural "(%d feeds)"
+#~ msgstr[0] "Editar la fuente"
+#~ msgstr[1] "Editar la fuente"
+
+#~ msgid "Notice"
+#~ msgstr "Aviso"
+
+#~ msgid "Tag Cloud"
+#~ msgstr "Nube de etiquetas"
+
+#~ msgid "Mark all visible articles in %s as read?"
+#~ msgstr "¿Marcar todos los artículos visibles de %s como leídos?"
+
 #~ msgid "Date"
 #~ msgstr "Fecha"
 
diff --git a/locale/fi_FI/LC_MESSAGES/messages.mo b/locale/fi_FI/LC_MESSAGES/messages.mo
new file mode 100644 (file)
index 0000000..cbff63a
Binary files /dev/null and b/locale/fi_FI/LC_MESSAGES/messages.mo differ
diff --git a/locale/fi_FI/LC_MESSAGES/messages.po b/locale/fi_FI/LC_MESSAGES/messages.po
new file mode 100644 (file)
index 0000000..84d56fb
--- /dev/null
@@ -0,0 +1,3636 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: tt-rss 1.7.6\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-04-01 16:28+0400\n"
+"PO-Revision-Date: 2013-04-01 14:49+0200\n"
+"Last-Translator: Arto Tolonen <arto.tolonen@iki.fi>\n"
+"Language-Team: \n"
+"Language: fi_FI\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"
+
+#: backend.php:71
+msgid "Use default"
+msgstr "Oletus"
+
+#: backend.php:72
+msgid "Never purge"
+msgstr "Älä poista koskaan"
+
+#: backend.php:73
+msgid "1 week old"
+msgstr "Viikkoa vanhemmat"
+
+#: backend.php:74
+msgid "2 weeks old"
+msgstr "2 viikkoa vanhemmat"
+
+#: backend.php:75
+msgid "1 month old"
+msgstr "Kuukautta vanhemmat"
+
+#: backend.php:76
+msgid "2 months old"
+msgstr "2 kuukautta vanhemmat"
+
+#: backend.php:77
+msgid "3 months old"
+msgstr "3 kuukautta vanhemmat"
+
+#: backend.php:80
+msgid "Default interval"
+msgstr "Oletusaikaväli"
+
+#: backend.php:81
+#: backend.php:91
+msgid "Disable updates"
+msgstr "Ei päivitystä"
+
+#: backend.php:82
+#: backend.php:92
+msgid "Each 15 minutes"
+msgstr "Joka 15 minuutti"
+
+#: backend.php:83
+#: backend.php:93
+msgid "Each 30 minutes"
+msgstr "Joka 30 minuutti"
+
+#: backend.php:84
+#: backend.php:94
+msgid "Hourly"
+msgstr "Joka tunti"
+
+#: backend.php:85
+#: backend.php:95
+msgid "Each 4 hours"
+msgstr "Joka 4 tunti"
+
+#: backend.php:86
+#: backend.php:96
+msgid "Each 12 hours"
+msgstr "Joka 12 tunti"
+
+#: backend.php:87
+#: backend.php:97
+msgid "Daily"
+msgstr "Päivittäin"
+
+#: backend.php:88
+#: backend.php:98
+msgid "Weekly"
+msgstr "Viikoittain"
+
+#: backend.php:101
+#: classes/pref/users.php:139
+msgid "User"
+msgstr "Käyttäjä"
+
+#: backend.php:102
+msgid "Power User"
+msgstr "Edistynyt käyttäjä"
+
+#: backend.php:103
+msgid "Administrator"
+msgstr "Ylläpitäjä"
+
+# Better this way...
+#: db-updater.php:19
+msgid "Your access level is insufficient to run this script."
+msgstr "Käyttäjäoikeutesi eivät riitä päivitysscriptin suorittamiseen."
+
+#: db-updater.php:44
+msgid "Database Updater"
+msgstr ""
+
+#: db-updater.php:87
+msgid "Could not update database"
+msgstr "Tietokannan päivitys epäonnistui"
+
+#: db-updater.php:90
+msgid "Could not find necessary schema file, need version:"
+msgstr ""
+
+#: db-updater.php:91
+msgid ", found: "
+msgstr ""
+
+#: db-updater.php:94
+msgid "Tiny Tiny RSS database is up to date."
+msgstr ""
+
+#: db-updater.php:96
+#: db-updater.php:165
+#: db-updater.php:178
+#: register.php:196
+#: register.php:241
+#: register.php:254
+#: register.php:269
+#: register.php:288
+#: register.php:336
+#: register.php:346
+#: register.php:358
+#: classes/handler/public.php:626
+#: classes/handler/public.php:714
+#: classes/handler/public.php:796
+msgid "Return to Tiny Tiny RSS"
+msgstr ""
+
+#: db-updater.php:102
+msgid "Please backup your database before proceeding."
+msgstr ""
+
+#: db-updater.php:104
+#, php-format
+msgid "Your Tiny Tiny RSS database needs update to the latest version (<b>%d</b> to <b>%d</b>)."
+msgstr ""
+
+#: db-updater.php:118
+msgid "Perform updates"
+msgstr ""
+
+#: db-updater.php:123
+msgid "Performing updates..."
+msgstr ""
+
+#: db-updater.php:129
+#, php-format
+msgid "Updating to version %d..."
+msgstr ""
+
+#: db-updater.php:144
+msgid "Checking version... "
+msgstr "Tarkistetaan versio..."
+
+#: db-updater.php:150
+msgid "OK!"
+msgstr "OK!"
+
+#: db-updater.php:152
+msgid "ERROR!"
+msgstr "VIRHE!"
+
+#: db-updater.php:160
+#, php-format
+msgid "Finished. Performed <b>%d</b> update up to schema version <b>%d</b>."
+msgid_plural "Finished. Performed <b>%d</b> updates up to schema version <b>%d</b>."
+msgstr[0] ""
+msgstr[1] ""
+
+#: db-updater.php:170
+msgid "Your database schema is from a newer version of Tiny Tiny RSS."
+msgstr ""
+
+#: db-updater.php:172
+#, php-format
+msgid "Found schema version: <b>%d</b>, required: <b>%d</b>."
+msgstr ""
+
+#: db-updater.php:174
+msgid "Schema upgrade impossible. Please update Tiny Tiny RSS files to the newer version and continue."
+msgstr ""
+
+#: errors.php:9
+msgid "This program requires XmlHttpRequest to function properly. Your browser doesn't seem to support it."
+msgstr ""
+
+#: errors.php:12
+msgid "This program requires cookies to function properly. Your browser doesn't seem to support them."
+msgstr ""
+
+#: errors.php:15
+msgid "Backend sanity check failed."
+msgstr ""
+
+#: errors.php:17
+msgid "Frontend sanity check failed."
+msgstr ""
+
+#: errors.php:19
+msgid "Incorrect database schema version. &lt;a href='db-updater.php'&gt;Please update&lt;/a&gt;."
+msgstr ""
+
+#: errors.php:21
+msgid "Request not authorized."
+msgstr ""
+
+#: errors.php:23
+msgid "No operation to perform."
+msgstr ""
+
+#: errors.php:25
+msgid "Could not display feed: query failed. Please check label match syntax or local configuration."
+msgstr ""
+
+#: errors.php:27
+msgid "Denied. Your access level is insufficient to access this page."
+msgstr ""
+
+#: errors.php:29
+msgid "Configuration check failed"
+msgstr ""
+
+#: errors.php:31
+msgid "Your version of MySQL is not currently supported. Please see official site for more information."
+msgstr ""
+
+#: errors.php:35
+msgid "SQL escaping test failed, check your database and PHP configuration"
+msgstr ""
+
+#: index.php:135
+#: index.php:154
+#: index.php:263
+#: prefs.php:103
+#: classes/backend.php:5
+#: classes/pref/labels.php:296
+#: classes/pref/filters.php:680
+#: classes/pref/feeds.php:1331
+#: plugins/digest/digest_body.php:63
+#: js/feedlist.js:128
+#: js/feedlist.js:448
+#: js/functions.js:420
+#: js/functions.js:808
+#: js/functions.js:1244
+#: js/functions.js:1379
+#: js/functions.js:1691
+#: js/prefs.js:86
+#: js/prefs.js:576
+#: js/prefs.js:666
+#: js/prefs.js:858
+#: js/prefs.js:1445
+#: js/prefs.js:1498
+#: js/prefs.js:1557
+#: js/prefs.js:1574
+#: js/prefs.js:1590
+#: js/prefs.js:1606
+#: js/prefs.js:1625
+#: js/prefs.js:1798
+#: js/prefs.js:1814
+#: js/tt-rss.js:475
+#: js/tt-rss.js:492
+#: js/viewfeed.js:774
+#: js/viewfeed.js:1245
+#: plugins/import_export/import_export.js:17
+#: plugins/updater/updater.js:17
+msgid "Loading, please wait..."
+msgstr "Ladataan, odota..."
+
+#: index.php:168
+msgid "Collapse feedlist"
+msgstr "Sulje syötelista"
+
+#: index.php:171
+msgid "Show articles"
+msgstr "Näytä artikkelit"
+
+#: index.php:174
+msgid "Adaptive"
+msgstr "Mukautuva"
+
+#: index.php:175
+msgid "All Articles"
+msgstr "Kaikki artikkelit"
+
+#: index.php:176
+#: include/functions.php:1924
+#: classes/feeds.php:106
+msgid "Starred"
+msgstr "Tähti"
+
+#: index.php:177
+#: include/functions.php:1925
+#: classes/feeds.php:107
+msgid "Published"
+msgstr "Julkinen"
+
+#: index.php:178
+#: classes/feeds.php:93
+#: classes/feeds.php:105
+msgid "Unread"
+msgstr "Lukematon"
+
+#: index.php:179
+msgid "Unread First"
+msgstr "Lukemattomat ensin"
+
+#: index.php:180
+msgid "With Note"
+msgstr "Huomattavat"
+
+#: index.php:181
+msgid "Ignore Scoring"
+msgstr "Ohita pisteytys"
+
+#: index.php:184
+msgid "Sort articles"
+msgstr "Järjestä artikkelit"
+
+#: index.php:187
+msgid "Default"
+msgstr "Oletus"
+
+#: index.php:188
+msgid "Newest first"
+msgstr "Uusin ensin"
+
+#: index.php:189
+msgid "Oldest first"
+msgstr "Vanhin ensin"
+
+#: index.php:192
+msgid "Mark feed as read"
+msgstr "Merkitse syöte luetuksi"
+
+#: index.php:195
+#: index.php:234
+#: include/functions.php:1914
+#: include/localized_schema.php:10
+#: classes/feeds.php:111
+#: classes/feeds.php:437
+#: js/FeedTree.js:128
+#: js/FeedTree.js:156
+#: plugins/digest/digest.js:647
+msgid "Mark as read"
+msgstr "Merkitse luetuiksi"
+
+#: index.php:196
+#: include/functions.php:1810
+#: include/functions.php:1922
+msgid "All articles"
+msgstr "Kaikki artikkelit"
+
+#: index.php:197
+msgid "Older than one day"
+msgstr "1pv vanhemmat"
+
+#: index.php:198
+msgid "Older than one week"
+msgstr "1vk vanhemmat"
+
+#: index.php:199
+msgid "Older than two weeks"
+msgstr "2vk vanhemmat"
+
+#: index.php:204
+msgid "Refresh"
+msgstr "Päivitä"
+
+#: index.php:211
+msgid "Communication problem with server."
+msgstr "Serveriin ei saada yhteyttä"
+
+#: index.php:219
+msgid "New version of Tiny Tiny RSS is available!"
+msgstr "Uusi versio Tiny Tiny RSS:stä saatavilla!"
+
+#: index.php:224
+msgid "Actions..."
+msgstr "Toiminnot..."
+
+#: index.php:226
+msgid "Preferences..."
+msgstr "Asetukset"
+
+#: index.php:227
+msgid "Search..."
+msgstr "Etsi..."
+
+#: index.php:228
+msgid "Feed actions:"
+msgstr "Syötetoiminnot:"
+
+#: index.php:229
+#: classes/handler/public.php:556
+msgid "Subscribe to feed..."
+msgstr "Tilaa syöte..."
+
+#: index.php:230
+msgid "Edit this feed..."
+msgstr "Muokkaa tätä syötettä"
+
+#: index.php:231
+msgid "Rescore feed"
+msgstr "Uudelleenpisteytä syöte"
+
+#: index.php:232
+#: classes/pref/feeds.php:717
+#: classes/pref/feeds.php:1304
+#: js/PrefFeedTree.js:73
+msgid "Unsubscribe"
+msgstr "Peruuta syötetilaus"
+
+#: index.php:233
+msgid "All feeds:"
+msgstr "Kaikki syötteet"
+
+#: index.php:235
+msgid "(Un)hide read feeds"
+msgstr "Piilota/näytä luetut syötteet"
+
+#: index.php:236
+msgid "Other actions:"
+msgstr "Muut toiminnot"
+
+#: index.php:238
+msgid "Switch to digest..."
+msgstr "Vaihda tiivistelmään..."
+
+#: index.php:240
+msgid "Show tag cloud..."
+msgstr "Näytä tagipilvi"
+
+#: index.php:241
+#: include/functions.php:1900
+msgid "Toggle widescreen mode"
+msgstr "Vaihda näkymä"
+
+#: index.php:242
+msgid "Select by tags..."
+msgstr "Valitse tageilla"
+
+#: index.php:243
+msgid "Create label..."
+msgstr "Luo tunniste..."
+
+#: index.php:244
+msgid "Create filter..."
+msgstr "Luo suodatin..."
+
+#: index.php:245
+msgid "Keyboard shortcuts help"
+msgstr "Näytä pikanäppäimet"
+
+#: index.php:247
+#: plugins/digest/digest_body.php:77
+#: plugins/mobile/mobile-functions.php:62
+#: plugins/mobile/mobile-functions.php:237
+msgid "Logout"
+msgstr "Kirjaudu ulos"
+
+#: prefs.php:36
+#: prefs.php:121
+#: include/functions.php:1927
+#: classes/pref/prefs.php:377
+msgid "Preferences"
+msgstr "Asetukset"
+
+#: prefs.php:112
+msgid "Keyboard shortcuts"
+msgstr "Pikanäppäimet"
+
+#: prefs.php:113
+msgid "Exit preferences"
+msgstr "Poistu asetuksista"
+
+#: prefs.php:124
+#: classes/pref/feeds.php:107
+#: classes/pref/feeds.php:1209
+#: classes/pref/feeds.php:1272
+msgid "Feeds"
+msgstr "Syötteet"
+
+#: prefs.php:127
+#: classes/pref/filters.php:156
+msgid "Filters"
+msgstr "Suodattimet"
+
+#: prefs.php:130
+#: include/functions.php:1117
+#: include/functions.php:1753
+#: classes/pref/labels.php:90
+#: plugins/mobile/mobile-functions.php:198
+msgid "Labels"
+msgstr "Tunnisteet"
+
+#: prefs.php:134
+msgid "Users"
+msgstr "Käyttäjät"
+
+#: register.php:186
+#: include/login_form.php:238
+msgid "Create new account"
+msgstr "Luo uusi käyttäjätili"
+
+#: register.php:192
+msgid "New user registrations are administratively disabled."
+msgstr ""
+
+#: register.php:217
+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 ""
+
+#: register.php:223
+msgid "Desired login:"
+msgstr ""
+
+#: register.php:226
+msgid "Check availability"
+msgstr ""
+
+#: register.php:228
+#: classes/handler/public.php:754
+msgid "Email:"
+msgstr "Email:"
+
+#: register.php:231
+#: classes/handler/public.php:759
+msgid "How much is two plus two:"
+msgstr ""
+
+#: register.php:234
+msgid "Submit registration"
+msgstr ""
+
+#: register.php:252
+msgid "Your registration information is incomplete."
+msgstr ""
+
+#: register.php:267
+msgid "Sorry, this username is already taken."
+msgstr ""
+
+#: register.php:286
+msgid "Registration failed."
+msgstr ""
+
+#: register.php:333
+msgid "Account created successfully."
+msgstr ""
+
+#: register.php:355
+msgid "New user registrations are currently closed."
+msgstr ""
+
+#: update.php:55
+msgid "Tiny Tiny RSS data update script."
+msgstr ""
+
+#: include/digest.php:109
+#: include/functions.php:1126
+#: include/functions.php:1654
+#: include/functions.php:1739
+#: include/functions.php:1761
+#: classes/opml.php:416
+#: classes/pref/feeds.php:222
+msgid "Uncategorized"
+msgstr ""
+
+#: include/feedbrowser.php:83
+#, php-format
+msgid "%d archived article"
+msgid_plural "%d archived articles"
+msgstr[0] ""
+msgstr[1] ""
+
+#: include/feedbrowser.php:107
+msgid "No feeds found."
+msgstr "Syötteitä ei löytynyt."
+
+#: include/functions.php:1115
+#: include/functions.php:1751
+#: plugins/mobile/mobile-functions.php:171
+msgid "Special"
+msgstr "Erikoiset"
+
+#: include/functions.php:1603
+#: classes/feeds.php:1097
+#: classes/pref/filters.php:427
+msgid "All feeds"
+msgstr "Kaikki syötteet"
+
+#: include/functions.php:1804
+msgid "Starred articles"
+msgstr "Tähdellä merkityt syötteet"
+
+#: include/functions.php:1806
+msgid "Published articles"
+msgstr "Julkiset artikkelit"
+
+#: include/functions.php:1808
+msgid "Fresh articles"
+msgstr "Tuoreet artikkelit"
+
+#: include/functions.php:1812
+msgid "Archived articles"
+msgstr "Arkistoidut artikkelit"
+
+#: include/functions.php:1814
+msgid "Recently read"
+msgstr "Viimeksi luetut"
+
+#: include/functions.php:1877
+msgid "Navigation"
+msgstr "Valikko"
+
+#: include/functions.php:1878
+msgid "Open next feed"
+msgstr "Avaa seuraava syöte"
+
+#: include/functions.php:1879
+msgid "Open previous feed"
+msgstr "Avaa edellinen syöte"
+
+#: include/functions.php:1880
+msgid "Open next article"
+msgstr "Avaa seuraava artikkeli"
+
+#: include/functions.php:1881
+msgid "Open previous article"
+msgstr "Avaa edellinen artikkeli"
+
+#: include/functions.php:1882
+msgid "Open next article (don't scroll long articles)"
+msgstr "Avaa seuraava artikkeli (älä vieritä pitkiä artikkeleita)"
+
+#: include/functions.php:1883
+msgid "Open previous article (don't scroll long articles)"
+msgstr "Avaa edellinen artikkeli (älä vieritä pitkiä artikkeleita)"
+
+#: include/functions.php:1884
+msgid "Show search dialog"
+msgstr "Etsi..."
+
+#: include/functions.php:1885
+msgid "Article"
+msgstr "Artikkeli"
+
+#: include/functions.php:1886
+msgid "Toggle starred"
+msgstr "Lisää/Poista tähti"
+
+#: include/functions.php:1887
+#: js/viewfeed.js:1908
+msgid "Toggle published"
+msgstr "Vaihda julkinen-tilaa"
+
+#: include/functions.php:1888
+#: js/viewfeed.js:1886
+msgid "Toggle unread"
+msgstr "Vaihda luettu/lukematon"
+
+#: include/functions.php:1889
+msgid "Edit tags"
+msgstr "Muokkaa tageja"
+
+#: include/functions.php:1890
+msgid "Dismiss selected"
+msgstr "Piilota valittu"
+
+#: include/functions.php:1891
+msgid "Dismiss read"
+msgstr "Piilota luettu"
+
+#: include/functions.php:1892
+msgid "Open in new window"
+msgstr "Avaa uudessa ikkunassa"
+
+#: include/functions.php:1893
+#: js/viewfeed.js:1927
+msgid "Mark below as read"
+msgstr "Merkitse alla olevat luetuiksi"
+
+#: include/functions.php:1894
+#: js/viewfeed.js:1921
+msgid "Mark above as read"
+msgstr "Merkitse yllä olevat luetuiksi"
+
+#: include/functions.php:1895
+msgid "Scroll down"
+msgstr "Vieritä alas"
+
+#: include/functions.php:1896
+msgid "Scroll up"
+msgstr "Vieritä ylös"
+
+#: include/functions.php:1897
+msgid "Select article under cursor"
+msgstr "Valitse kursorin alla oleva artikkeli"
+
+#: include/functions.php:1898
+msgid "Email article"
+msgstr "Lähetä artikkeli sähköpostilla"
+
+#: include/functions.php:1899
+msgid "Close/collapse article"
+msgstr "Piilota/näytä artikkeli"
+
+#: include/functions.php:1901
+#: plugins/embed_original/init.php:33
+msgid "Toggle embed original"
+msgstr "Vaihda alkuperäinen liitetty"
+
+#: include/functions.php:1902
+msgid "Article selection"
+msgstr "Artikkelin valinta"
+
+#: include/functions.php:1903
+msgid "Select all articles"
+msgstr "Valitse kaikki artikkelit"
+
+#: include/functions.php:1904
+msgid "Select unread"
+msgstr "Valitse lukematon"
+
+#: include/functions.php:1905
+msgid "Select starred"
+msgstr "Valitse tähdellä merkityt"
+
+#: include/functions.php:1906
+msgid "Select published"
+msgstr "Valitse julkaistu"
+
+#: include/functions.php:1907
+msgid "Invert selection"
+msgstr "Vaihda valittujen tila"
+
+#: include/functions.php:1908
+msgid "Deselect everything"
+msgstr "Poista valinnat"
+
+#: include/functions.php:1909
+#: classes/pref/feeds.php:521
+#: classes/pref/feeds.php:754
+msgid "Feed"
+msgstr "Syöte"
+
+#: include/functions.php:1910
+msgid "Refresh current feed"
+msgstr "Päivitä tämänhetkinen syöte"
+
+#: include/functions.php:1911
+msgid "Un/hide read feeds"
+msgstr "Piilota/näytä luetut syötteet"
+
+#: include/functions.php:1912
+#: classes/pref/feeds.php:1275
+msgid "Subscribe to feed"
+msgstr "Tilaa syöte"
+
+#: include/functions.php:1913
+#: js/FeedTree.js:135
+#: js/PrefFeedTree.js:67
+msgid "Edit feed"
+msgstr "Muokkaa syötettä"
+
+#: include/functions.php:1915
+msgid "Reverse headlines"
+msgstr "Käännä otsikot"
+
+#: include/functions.php:1916
+msgid "Debug feed update"
+msgstr "Syötteen päivitys (Debug)"
+
+#: include/functions.php:1917
+#: js/FeedTree.js:178
+msgid "Mark all feeds as read"
+msgstr "Merkitse kaikki syötteet luetuiksi"
+
+#: include/functions.php:1918
+msgid "Un/collapse current category"
+msgstr "Piilota/näytä tämänhetkinen kansio"
+
+#: include/functions.php:1919
+msgid "Toggle combined mode"
+msgstr "Vaihda yhdistety tila"
+
+#: include/functions.php:1920
+msgid "Toggle auto expand in combined mode"
+msgstr "Vaihda automaattilaajennus tiivistemuodossa"
+
+#: include/functions.php:1921
+msgid "Go to"
+msgstr "Mene"
+
+#: include/functions.php:1923
+msgid "Fresh"
+msgstr "Päivitä"
+
+#: include/functions.php:1926
+#: js/tt-rss.js:431
+#: js/tt-rss.js:584
+msgid "Tag cloud"
+msgstr "Tagipilvi"
+
+#: include/functions.php:1928
+msgid "Other"
+msgstr "Muu"
+
+#: include/functions.php:1929
+#: classes/pref/labels.php:281
+msgid "Create label"
+msgstr "Luo tunniste"
+
+#: include/functions.php:1930
+#: classes/pref/filters.php:654
+msgid "Create filter"
+msgstr "Luo suodatin"
+
+#: include/functions.php:1931
+msgid "Un/collapse sidebar"
+msgstr "Piilota/näytä sivupalkki"
+
+#: include/functions.php:1932
+msgid "Show help dialog"
+msgstr "Näytä ohjeikkuna"
+
+#: include/functions.php:2417
+#, php-format
+msgid "Search results: %s"
+msgstr "Hakutulokset: %s"
+
+#: include/functions.php:2908
+#: js/viewfeed.js:2014
+msgid "Click to play"
+msgstr ""
+
+#: include/functions.php:2909
+#: js/viewfeed.js:2013
+msgid "Play"
+msgstr ""
+
+#: include/functions.php:3026
+msgid " - "
+msgstr " - "
+
+#: include/functions.php:3048
+#: include/functions.php:3342
+#: classes/rpc.php:408
+msgid "no tags"
+msgstr "ei tageja"
+
+#: include/functions.php:3058
+#: classes/feeds.php:682
+msgid "Edit tags for this article"
+msgstr "Muokkaa tämän artikkelin tageja"
+
+#: include/functions.php:3087
+#: classes/feeds.php:638
+msgid "Originally from:"
+msgstr ""
+
+#: include/functions.php:3100
+#: classes/feeds.php:651
+#: classes/pref/feeds.php:540
+msgid "Feed URL"
+msgstr "Syötteen URL"
+
+#: include/functions.php:3131
+#: classes/dlg.php:37
+#: classes/dlg.php:60
+#: classes/dlg.php:93
+#: classes/dlg.php:159
+#: classes/dlg.php:190
+#: classes/dlg.php:217
+#: classes/dlg.php:250
+#: classes/dlg.php:262
+#: classes/backend.php:105
+#: classes/pref/users.php:106
+#: classes/pref/filters.php:147
+#: classes/pref/prefs.php:1012
+#: classes/pref/feeds.php:1588
+#: classes/pref/feeds.php:1660
+#: plugins/import_export/init.php:409
+#: plugins/import_export/init.php:432
+#: plugins/googlereaderimport/init.php:168
+#: plugins/share/init.php:67
+#: plugins/updater/init.php:357
+msgid "Close this window"
+msgstr "Sulje"
+
+#: include/functions.php:3367
+msgid "(edit note)"
+msgstr ""
+
+#: include/functions.php:3600
+msgid "unknown type"
+msgstr "tuntematon tyyppi"
+
+#: include/functions.php:3656
+msgid "Attachments"
+msgstr "Litteet"
+
+#: include/localized_schema.php:3
+msgid "Title"
+msgstr "Otsikko"
+
+#: include/localized_schema.php:4
+msgid "Title or Content"
+msgstr "Otsikko tai sisältö"
+
+#: include/localized_schema.php:5
+msgid "Link"
+msgstr "Linkki"
+
+#: include/localized_schema.php:6
+msgid "Content"
+msgstr "Sisältö"
+
+#: include/localized_schema.php:7
+msgid "Article Date"
+msgstr "Artikkelin pvm"
+
+#: include/localized_schema.php:9
+msgid "Delete article"
+msgstr "Poista artikkeli"
+
+#: include/localized_schema.php:11
+msgid "Set starred"
+msgstr "Merkitse tähdellä"
+
+#: include/localized_schema.php:12
+#: js/viewfeed.js:483
+#: plugins/digest/digest.js:265
+#: plugins/digest/digest.js:754
+msgid "Publish article"
+msgstr "Julkista artikkeli"
+
+#: include/localized_schema.php:13
+msgid "Assign tags"
+msgstr "Liitä tageja"
+
+#: include/localized_schema.php:14
+#: js/viewfeed.js:1978
+msgid "Assign label"
+msgstr "Liitä tunniste"
+
+#: include/localized_schema.php:15
+msgid "Modify score"
+msgstr "Muokkaa pisteytystä"
+
+#: include/localized_schema.php:17
+msgid "General"
+msgstr "Yleinen"
+
+#: include/localized_schema.php:18
+msgid "Interface"
+msgstr ""
+
+#: include/localized_schema.php:19
+msgid "Advanced"
+msgstr "Lisäasetukset"
+
+#: 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 ""
+
+#: include/localized_schema.php:22
+msgid "Display expanded list of feed articles, instead of separate displays for headlines and article content"
+msgstr "Näytä artikkelilista laajennettuna, erillisten otsikko- ja artikkelinäkymien sijasta"
+
+#: include/localized_schema.php:23
+msgid "Automatically open next feed with unread articles after marking one as read"
+msgstr "Avaa automaattisesti seuraava lukemattomia artikkeleita sisältävä syöte kun viimeinen on merkitty luetuksi"
+
+#: include/localized_schema.php:24
+msgid "This option enables sending daily digest of new (and unread) headlines on your configured e-mail address"
+msgstr "Sähköpostiisi lähetetään päivittäin otsikot uusista (ja lukemattomista) artikkeleista"
+
+#: include/localized_schema.php:25
+msgid "This option enables marking articles as read automatically while you scroll article list."
+msgstr "Artikkelit merkitään automaattisesti luetuiksi kun artikkelilistaa vieritetään."
+
+#: include/localized_schema.php:26
+msgid "Strip all but most common HTML tags when reading articles."
+msgstr "Poista kaikki erikoiset HTML tagit syötteistä."
+
+#: include/localized_schema.php:27
+msgid "When auto-detecting tags in articles these tags will not be applied (comma-separated list)."
+msgstr "Näitä tageja ei liitetä automaattisesti (lista pilkulla erotettuna)"
+
+#: include/localized_schema.php:28
+msgid "When this option is enabled, headlines in Special feeds and Labels are grouped by feeds"
+msgstr "Otsikot Erikoissyötteissä ja Tunnisteissa ryhmitellään syötteittäin"
+
+#: include/localized_schema.php:29
+msgid "Customize CSS stylesheet to your liking"
+msgstr "Muokkaa lukijaa mieleiseksesi CSS-tyylisivuilla"
+
+#: include/localized_schema.php:30
+msgid "Use feed-specified date to sort headlines instead of local import date."
+msgstr ""
+
+#: include/localized_schema.php:31
+msgid "Click to register your SSL client certificate with tt-rss"
+msgstr "Klikkaa rekisteröidäksesi SSL-sertifikaatti tt-rss:ään "
+
+#: include/localized_schema.php:32
+msgid "Uses UTC timezone"
+msgstr "Käyttää UTC-aikavyöhykettä"
+
+#: include/localized_schema.php:33
+msgid "Select one of the available CSS themes"
+msgstr "Valitse CSS-teema"
+
+#: include/localized_schema.php:34
+msgid "Purge articles after this number of days (0 - disables)"
+msgstr "Siivoa artikkelit näin monen päivän päästä (0 - poissa käytöstä)"
+
+#: include/localized_schema.php:35
+msgid "Default interval between feed updates"
+msgstr "Oletusaikaväli syötepäivityksille"
+
+#: include/localized_schema.php:36
+msgid "Amount of articles to display at once"
+msgstr "Kerralla näytettävien artikkeleiden määrä"
+
+#: include/localized_schema.php:37
+msgid "Allow duplicate posts"
+msgstr "Salli tuplapostaukset"
+
+#: include/localized_schema.php:38
+msgid "Enable feed categories"
+msgstr "Käytä syötekansioita"
+
+#: include/localized_schema.php:39
+msgid "Show content preview in headlines list"
+msgstr "Näytä sisällön esikatselu otsikkolistassa"
+
+#: include/localized_schema.php:40
+msgid "Short date format"
+msgstr "Lyhyt päiväysformaatti"
+
+#: include/localized_schema.php:41
+msgid "Long date format"
+msgstr "Pitkä päiväysformaatti"
+
+#: include/localized_schema.php:42
+msgid "Combined feed display"
+msgstr "Yhdistetty syötenäkymä"
+
+#: include/localized_schema.php:43
+msgid "Hide feeds with no unread articles"
+msgstr "Piilota syötteet joissa ei ole lukemattomia artikkeleita"
+
+#: include/localized_schema.php:44
+msgid "On catchup show next feed"
+msgstr "Näytä automaattisesti seuraava syöte"
+
+#: include/localized_schema.php:45
+msgid "Sort feeds by unread articles count"
+msgstr "Järjestä syötteet lukemattomien artikkelimäärien mukaan"
+
+#: include/localized_schema.php:46
+#: plugins/mobile/prefs.php:60
+msgid "Reverse headline order (oldest first)"
+msgstr "Käännä otsikkojärjestys (vanhimmat ensin)"
+
+#: include/localized_schema.php:47
+msgid "Enable e-mail digest"
+msgstr "Aktivoi email-tiivistelmän lähetys"
+
+#: include/localized_schema.php:48
+msgid "Confirm marking feed as read"
+msgstr "Varmista syötteen merkitseminen luetuksi"
+
+#: include/localized_schema.php:49
+msgid "Automatically mark articles as read"
+msgstr "Merkitse syötteet automaattisesti luetuksi"
+
+#: include/localized_schema.php:50
+msgid "Strip unsafe tags from articles"
+msgstr "Poista vaaralliset tagit artikkeleista"
+
+#: include/localized_schema.php:51
+msgid "Blacklisted tags"
+msgstr "Estetyt tagit"
+
+#: include/localized_schema.php:52
+msgid "Maximum age of fresh articles (in hours)"
+msgstr "Maksimi-ikä tuoreille artikkeleille (tunneissa)"
+
+#: include/localized_schema.php:53
+msgid "Mark articles in e-mail digest as read"
+msgstr "Merkitse email-tiivestelmässä lähetetyt artikkelit luetuksi"
+
+#: include/localized_schema.php:54
+msgid "Automatically expand articles in combined mode"
+msgstr "Laajenna artikkelit automaattisesti yhdistelmänäkymässä"
+
+#: include/localized_schema.php:55
+msgid "Purge unread articles"
+msgstr "Siivoa lukemattomat artikkelit"
+
+#: include/localized_schema.php:56
+msgid "Show special feeds when hiding read feeds"
+msgstr "Näytä erikoissyötteet kun luetut artikkelit piilotetaan"
+
+#: include/localized_schema.php:57
+msgid "Group headlines in virtual feeds"
+msgstr "Ryhmittele otsikot virtuaalisyötteiksi"
+
+#: include/localized_schema.php:58
+msgid "Do not embed images in articles"
+msgstr "Älä liitä kuvia artikkeleihin"
+
+#: include/localized_schema.php:59
+msgid "Enable external API"
+msgstr "Aktivoi ulkoinen API"
+
+#: include/localized_schema.php:60
+msgid "User timezone"
+msgstr "Käyttäjän aikavyöhyke"
+
+#: include/localized_schema.php:61
+#: js/prefs.js:1725
+msgid "Customize stylesheet"
+msgstr "Muokkaa CSS-tyylisivua"
+
+#: include/localized_schema.php:62
+msgid "Sort headlines by feed date"
+msgstr "Järjestä otsikot syötteen päivämäärän mukaan"
+
+#: include/localized_schema.php:63
+msgid "Login with an SSL certificate"
+msgstr "Kirjaudu SSL-sertificaatilla"
+
+#: include/localized_schema.php:64
+msgid "Try to send digests around specified time"
+msgstr "Lähetä kooste määriteltynä aikana (noin aika)"
+
+#: include/localized_schema.php:65
+msgid "Assign articles to labels automatically"
+msgstr "Liitä tunnisteet artikkeleihin automaattisesti"
+
+#: include/localized_schema.php:66
+msgid "Select theme"
+msgstr "Valitse teema"
+
+#: include/login_form.php:183
+#: classes/handler/public.php:461
+#: classes/handler/public.php:749
+#: plugins/mobile/login_form.php:40
+msgid "Login:"
+msgstr "Käyttäjätunnus:"
+
+#: include/login_form.php:192
+#: classes/handler/public.php:464
+#: plugins/mobile/login_form.php:45
+msgid "Password:"
+msgstr "Salasana:"
+
+#: include/login_form.php:197
+msgid "I forgot my password"
+msgstr "Unohdin salasanani"
+
+#: include/login_form.php:201
+#: classes/handler/public.php:467
+msgid "Language:"
+msgstr "Kieli:"
+
+#: include/login_form.php:209
+msgid "Profile:"
+msgstr "Profiili:"
+
+#: include/login_form.php:213
+#: classes/handler/public.php:211
+#: classes/rpc.php:64
+#: classes/pref/prefs.php:948
+msgid "Default profile"
+msgstr "Oletusprofiili"
+
+#: include/login_form.php:221
+msgid "Use less traffic"
+msgstr "Käytä vähemmän dataliikennettä"
+
+#: include/login_form.php:229
+msgid "Remember me"
+msgstr "Muista kirjautumiseni"
+
+#: include/login_form.php:235
+#: classes/handler/public.php:477
+#: plugins/mobile/login_form.php:28
+msgid "Log in"
+msgstr "Kirjaudu sisään"
+
+#: include/sessions.php:53
+msgid "Session failed to validate (incorrect IP)"
+msgstr ""
+
+#: classes/article.php:25
+msgid "Article not found."
+msgstr "Artikkelia ei löytynyt"
+
+#: classes/article.php:179
+msgid "Tags for this article (separated by commas):"
+msgstr "Tämän syötteen tagit (pilkulla erotettuna)"
+
+#: classes/article.php:204
+#: classes/pref/users.php:192
+#: classes/pref/labels.php:79
+#: classes/pref/filters.php:405
+#: classes/pref/prefs.php:894
+#: classes/pref/feeds.php:733
+#: classes/pref/feeds.php:881
+#: plugins/nsfw/init.php:86
+#: plugins/note/init.php:53
+#: plugins/instances/init.php:248
+msgid "Save"
+msgstr "Talleta"
+
+#: classes/article.php:206
+#: classes/handler/public.php:438
+#: classes/handler/public.php:480
+#: classes/feeds.php:1024
+#: classes/feeds.php:1076
+#: classes/feeds.php:1136
+#: classes/pref/users.php:194
+#: classes/pref/labels.php:81
+#: classes/pref/filters.php:408
+#: classes/pref/filters.php:804
+#: classes/pref/filters.php:880
+#: classes/pref/filters.php:947
+#: classes/pref/prefs.php:896
+#: classes/pref/feeds.php:734
+#: classes/pref/feeds.php:884
+#: classes/pref/feeds.php:1797
+#: plugins/mail/init.php:131
+#: plugins/note/init.php:55
+#: plugins/instances/init.php:251
+#: plugins/instances/init.php:440
+msgid "Cancel"
+msgstr "Peru"
+
+#: classes/handler/public.php:402
+#: plugins/bookmarklets/init.php:38
+msgid "Share with Tiny Tiny RSS"
+msgstr "Jaa Tiny Tiny RSS:llä"
+
+#: classes/handler/public.php:410
+msgid "Title:"
+msgstr "Otsikko:"
+
+#: classes/handler/public.php:412
+#: classes/pref/feeds.php:538
+#: classes/pref/feeds.php:769
+#: plugins/instances/init.php:215
+#: plugins/instances/init.php:405
+msgid "URL:"
+msgstr "URL:"
+
+#: classes/handler/public.php:414
+msgid "Content:"
+msgstr "Sisältö:"
+
+#: classes/handler/public.php:416
+msgid "Labels:"
+msgstr "Tunnisteet"
+
+#: classes/handler/public.php:435
+msgid "Shared article will appear in the Published feed."
+msgstr "Jaetut artikkelit näkyvät 'Julkisissa syötteissä'."
+
+#: classes/handler/public.php:437
+msgid "Share"
+msgstr "Jaa"
+
+#: classes/handler/public.php:459
+msgid "Not logged in"
+msgstr "Et ole kirjautunut"
+
+#: classes/handler/public.php:526
+msgid "Incorrect username or password"
+msgstr "Väärä käyttäjätunnus tai salasana"
+
+#: classes/handler/public.php:562
+#: classes/handler/public.php:659
+#, php-format
+msgid "Already subscribed to <b>%s</b>."
+msgstr "Olet jo tilannut syötteen <b>%s</b>."
+
+#: classes/handler/public.php:565
+#: classes/handler/public.php:650
+#, php-format
+msgid "Subscribed to <b>%s</b>."
+msgstr "Tilattu syöte <b>%s</b>."
+
+#: classes/handler/public.php:568
+#: classes/handler/public.php:653
+#, php-format
+msgid "Could not subscribe to <b>%s</b>."
+msgstr "Tätä syötettä ei voitu tilata <b>%s</b>."
+
+#: classes/handler/public.php:571
+#: classes/handler/public.php:656
+#, php-format
+msgid "No feeds found in <b>%s</b>."
+msgstr "<b>%s</b> ei sisällä syötteitä."
+
+#: classes/handler/public.php:574
+#: classes/handler/public.php:662
+msgid "Multiple feed URLs found."
+msgstr "Useita syöte-URLiä löytyi."
+
+#: classes/handler/public.php:578
+#: classes/handler/public.php:667
+#, php-format
+msgid "Could not subscribe to <b>%s</b>.<br>Can't download the Feed URL."
+msgstr "Syötettä <b>%s</b> ei voitu tilata.<br>URLää ei voi ladata."
+
+#: classes/handler/public.php:596
+#: classes/handler/public.php:685
+msgid "Subscribe to selected feed"
+msgstr "Tilaa valittu syöte"
+
+#: classes/handler/public.php:621
+#: classes/handler/public.php:709
+msgid "Edit subscription options"
+msgstr "Muokkaa syöteoptioita"
+
+#: classes/handler/public.php:736
+msgid "Password recovery"
+msgstr "Salasanan palautus"
+
+#: classes/handler/public.php:742
+msgid "You will need to provide valid account name and email. New password will be sent on your email address."
+msgstr "Syötä tilisi sähköpostiosoite. Uusi salasana lähetetään sinulle sähköpostilla."
+
+#: classes/handler/public.php:764
+#: classes/pref/users.php:378
+msgid "Reset password"
+msgstr "Palauta salasana"
+
+#: classes/handler/public.php:774
+msgid "Some of the required form parameters are missing or incorrect."
+msgstr "Jotkin vaadituista parametreistä puuttuvat tai ovat väärin."
+
+#: classes/handler/public.php:778
+#: classes/handler/public.php:804
+#: plugins/digest/digest_body.php:69
+msgid "Go back"
+msgstr "Takaisin"
+
+#: classes/handler/public.php:800
+msgid "Sorry, login and email combination not found."
+msgstr "Valitettavasti käyttjätunnus/email -yhdistelmää ei löydy."
+
+#: classes/dlg.php:16
+msgid "If you have imported labels and/or filters, you might need to reload preferences to see your new data."
+msgstr ""
+
+#: classes/dlg.php:48
+msgid "Your Public OPML URL is:"
+msgstr ""
+
+#: classes/dlg.php:57
+#: classes/dlg.php:214
+msgid "Generate new URL"
+msgstr "Generoi uusi URL"
+
+#: classes/dlg.php:71
+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 ""
+
+#: classes/dlg.php:75
+#: classes/dlg.php:84
+msgid "Last update:"
+msgstr ""
+
+#: classes/dlg.php:80
+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 ""
+
+#: classes/dlg.php:166
+msgid "Match:"
+msgstr "Täsmää:"
+
+#: classes/dlg.php:168
+msgid "Any"
+msgstr "Mikä tahansa"
+
+#: classes/dlg.php:171
+msgid "All tags."
+msgstr "Kaikki tagit"
+
+#: classes/dlg.php:173
+msgid "Which Tags?"
+msgstr "Mitkä tagit?"
+
+#: classes/dlg.php:186
+msgid "Display entries"
+msgstr "Näytä"
+
+#: classes/dlg.php:205
+msgid "You can view this feed as RSS using the following URL:"
+msgstr "Tämän RSS-syötteen julkinen URL-osoite on:"
+
+#: classes/dlg.php:233
+#: plugins/updater/init.php:327
+#, php-format
+msgid "New version of Tiny Tiny RSS is available (%s)."
+msgstr ""
+
+#: classes/dlg.php:241
+msgid "You can update using built-in updater in the Preferences or by using update.php"
+msgstr ""
+
+#: classes/dlg.php:245
+#: plugins/updater/init.php:331
+msgid "See the release notes"
+msgstr ""
+
+#: classes/dlg.php:247
+msgid "Download"
+msgstr "Lataa"
+
+#: classes/dlg.php:255
+msgid "Error receiving version information or no new version available."
+msgstr ""
+
+#: classes/feeds.php:68
+msgid "Visit the website"
+msgstr ""
+
+#: classes/feeds.php:83
+msgid "View as RSS feed"
+msgstr "Näytä RSS-syötteenä"
+
+#: classes/feeds.php:84
+#: classes/feeds.php:138
+#: classes/pref/feeds.php:1440
+msgid "View as RSS"
+msgstr "Näytä RSS-syötteenä"
+
+#: classes/feeds.php:91
+msgid "Select:"
+msgstr "Valitse"
+
+#: classes/feeds.php:92
+#: classes/pref/users.php:363
+#: classes/pref/labels.php:275
+#: classes/pref/filters.php:282
+#: classes/pref/filters.php:330
+#: classes/pref/filters.php:648
+#: classes/pref/filters.php:737
+#: classes/pref/filters.php:764
+#: classes/pref/prefs.php:908
+#: classes/pref/feeds.php:1266
+#: classes/pref/feeds.php:1536
+#: classes/pref/feeds.php:1606
+#: plugins/instances/init.php:290
+msgid "All"
+msgstr "Kaikki"
+
+#: classes/feeds.php:94
+msgid "Invert"
+msgstr "Käännä"
+
+#: classes/feeds.php:95
+#: classes/pref/users.php:365
+#: classes/pref/labels.php:277
+#: classes/pref/filters.php:284
+#: classes/pref/filters.php:332
+#: classes/pref/filters.php:650
+#: classes/pref/filters.php:739
+#: classes/pref/filters.php:766
+#: classes/pref/prefs.php:910
+#: classes/pref/feeds.php:1268
+#: classes/pref/feeds.php:1538
+#: classes/pref/feeds.php:1608
+#: plugins/instances/init.php:292
+msgid "None"
+msgstr "Ei mikään"
+
+#: classes/feeds.php:101
+msgid "More..."
+msgstr "Lisää..."
+
+#: classes/feeds.php:103
+msgid "Selection toggle:"
+msgstr "Vaihda valittujen tila:"
+
+#: classes/feeds.php:109
+msgid "Selection:"
+msgstr "Valinta:"
+
+#: classes/feeds.php:112
+msgid "Set score"
+msgstr "Pisteytä"
+
+#: classes/feeds.php:115
+msgid "Archive"
+msgstr "Arkistoi"
+
+#: classes/feeds.php:117
+msgid "Move back"
+msgstr "Siirrä takaisin"
+
+#: classes/feeds.php:118
+#: classes/pref/filters.php:291
+#: classes/pref/filters.php:339
+#: classes/pref/filters.php:746
+#: classes/pref/filters.php:773
+msgid "Delete"
+msgstr "Poista"
+
+#: classes/feeds.php:125
+#: classes/feeds.php:130
+#: plugins/mailto/init.php:28
+#: plugins/mail/init.php:28
+msgid "Forward by email"
+msgstr "Lähetä sähköpostilla"
+
+#: classes/feeds.php:134
+msgid "Feed:"
+msgstr "Syöte:"
+
+#: classes/feeds.php:201
+#: classes/feeds.php:827
+msgid "Feed not found."
+msgstr "Syötettä ei löydy"
+
+#: classes/feeds.php:384
+#, php-format
+msgid "Imported at %s"
+msgstr "Tuotu %s"
+
+#: classes/feeds.php:531
+msgid "mark as read"
+msgstr "merkitse luetuksi"
+
+#: classes/feeds.php:582
+msgid "Collapse article"
+msgstr "Sulje artikkeli"
+
+#: classes/feeds.php:728
+msgid "No unread articles found to display."
+msgstr "Lukemattomia artikkeleita ei ole näytettäväksi"
+
+#: classes/feeds.php:731
+msgid "No updated articles found to display."
+msgstr "Päivitettyjä artikkeleita ei ole näytettäväksi"
+
+#: classes/feeds.php:734
+msgid "No starred articles found to display."
+msgstr "Tähdellä merkittyjä artikkeleita ei ole näytettäväksi"
+
+#: classes/feeds.php:738
+msgid "No articles found to display. You can assign articles to labels manually (see the Actions menu above) or use a filter."
+msgstr "Ei näytettäviä artikkeleita. Voit merkitä artikkeleita tunnisteilla käsin (Toiminnot-valikko yläreunassa) tai käytää suodattimia."
+
+#: classes/feeds.php:740
+msgid "No articles found to display."
+msgstr "Ei näytettäviä artikkeleita."
+
+#: classes/feeds.php:755
+#: classes/feeds.php:919
+#, php-format
+msgid "Feeds last updated at %s"
+msgstr "Syötteet päivitetty viimeksi %s"
+
+#: classes/feeds.php:765
+#: classes/feeds.php:929
+msgid "Some feeds have update errors (click for details)"
+msgstr "Joissakin syötteissä oli virheitä (klikkaa nähdäksesi lisätietoja)"
+
+#: classes/feeds.php:909
+msgid "No feed selected."
+msgstr "Yhtään syötettä ei ole valittuna"
+
+#: classes/feeds.php:962
+#: classes/feeds.php:970
+msgid "Feed or site URL"
+msgstr "Syötteen/sivuston URL"
+
+#: classes/feeds.php:976
+#: classes/pref/feeds.php:560
+#: classes/pref/feeds.php:782
+#: classes/pref/feeds.php:1761
+msgid "Place in category:"
+msgstr "Siirrä kansioon:"
+
+#: classes/feeds.php:984
+msgid "Available feeds"
+msgstr "Saatavilla olevat syötteet"
+
+#: classes/feeds.php:996
+#: classes/pref/users.php:155
+#: classes/pref/feeds.php:590
+#: classes/pref/feeds.php:818
+msgid "Authentication"
+msgstr "Tunnistautuminen"
+
+#: classes/feeds.php:1000
+#: classes/pref/users.php:420
+#: classes/pref/feeds.php:596
+#: classes/pref/feeds.php:822
+#: classes/pref/feeds.php:1775
+msgid "Login"
+msgstr "Käyttäjätunnus"
+
+#: classes/feeds.php:1003
+#: classes/pref/prefs.php:202
+#: classes/pref/feeds.php:602
+#: classes/pref/feeds.php:828
+#: classes/pref/feeds.php:1778
+msgid "Password"
+msgstr "Salasana"
+
+#: classes/feeds.php:1013
+msgid "This feed requires authentication."
+msgstr "Tämä syöte vaatii kirjautumisen"
+
+#: classes/feeds.php:1018
+#: classes/feeds.php:1074
+#: classes/pref/feeds.php:1796
+msgid "Subscribe"
+msgstr "Tilaa"
+
+#: classes/feeds.php:1021
+msgid "More feeds"
+msgstr "Lisää syötteitä"
+
+#: classes/feeds.php:1044
+#: classes/feeds.php:1135
+#: classes/pref/users.php:350
+#: classes/pref/filters.php:641
+#: classes/pref/feeds.php:1259
+#: js/tt-rss.js:170
+msgid "Search"
+msgstr "Etsi"
+
+#: classes/feeds.php:1048
+msgid "Popular feeds"
+msgstr "Suositut syötteet"
+
+#: classes/feeds.php:1049
+msgid "Feed archive"
+msgstr "Syötearkisto"
+
+#: classes/feeds.php:1052
+msgid "limit:"
+msgstr "raja:"
+
+#: classes/feeds.php:1075
+#: classes/pref/users.php:376
+#: classes/pref/labels.php:284
+#: classes/pref/filters.php:398
+#: classes/pref/filters.php:667
+#: classes/pref/feeds.php:707
+#: plugins/instances/init.php:297
+msgid "Remove"
+msgstr "Poista"
+
+#: classes/feeds.php:1086
+msgid "Look for"
+msgstr "Etsi"
+
+#: classes/feeds.php:1094
+msgid "Limit search to:"
+msgstr "Rajaa haku"
+
+#: classes/feeds.php:1110
+msgid "This feed"
+msgstr "Tämä syöte"
+
+#: classes/backend.php:33
+msgid "Other interface tips are available in the Tiny Tiny RSS wiki."
+msgstr "Lisää käyttövinkkejä löydät Tiny Tiny RSS wiki -sivuilta."
+
+#: classes/backend.php:38
+msgid "Keyboard Shortcuts"
+msgstr "Pikanäppäimet"
+
+#: classes/backend.php:61
+msgid "Shift"
+msgstr "Shift"
+
+#: classes/backend.php:64
+msgid "Ctrl"
+msgstr "Ctrl"
+
+#: classes/backend.php:99
+msgid "Help topic not found."
+msgstr "Aiheesta ei löytynyt ohjeita."
+
+#: classes/opml.php:28
+#: classes/opml.php:33
+msgid "OPML Utility"
+msgstr "OPML-työkalu"
+
+#: classes/opml.php:37
+msgid "Importing OPML..."
+msgstr "Luetaan OPML-tiedostoa"
+
+#: classes/opml.php:41
+msgid "Return to preferences"
+msgstr "Palaa asetuksiin"
+
+#: classes/opml.php:270
+#, php-format
+msgid "Adding feed: %s"
+msgstr "Lisätään syöte: %s"
+
+#: classes/opml.php:281
+#, php-format
+msgid "Duplicate feed: %s"
+msgstr "Duplikaatti syöte: %s"
+
+#: classes/opml.php:295
+#, php-format
+msgid "Adding label %s"
+msgstr "Lisätään tunniste %s"
+
+#: classes/opml.php:298
+#, php-format
+msgid "Duplicate label: %s"
+msgstr "Duplikaatti tunniste: %s"
+
+#: classes/opml.php:310
+#, php-format
+msgid "Setting preference key %s to %s"
+msgstr ""
+
+#: classes/opml.php:339
+msgid "Adding filter..."
+msgstr "Lisätään suodatin..."
+
+#: classes/opml.php:416
+#, php-format
+msgid "Processing category: %s"
+msgstr ""
+
+#: classes/opml.php:468
+msgid "Error: please upload OPML file."
+msgstr ""
+
+#: classes/opml.php:475
+#: plugins/googlereaderimport/init.php:161
+msgid "Error while parsing document."
+msgstr ""
+
+#: classes/pref/users.php:6
+#: plugins/instances/init.php:157
+msgid "Your access level is insufficient to open this tab."
+msgstr ""
+
+#: classes/pref/users.php:27
+msgid "User details"
+msgstr "Käyttäjätiedot"
+
+#: classes/pref/users.php:41
+msgid "User not found"
+msgstr "Käyttäjätunnusta ei löydy"
+
+#: classes/pref/users.php:60
+#: classes/pref/users.php:422
+msgid "Registered"
+msgstr "Rekisteröity"
+
+#: classes/pref/users.php:61
+msgid "Last logged in"
+msgstr "Viimeksi kirjautunut"
+
+#: classes/pref/users.php:68
+msgid "Subscribed feeds count"
+msgstr "Tilattujen syötteiden määrä"
+
+#: classes/pref/users.php:72
+msgid "Subscribed feeds"
+msgstr "Tilatut syötteet"
+
+#: classes/pref/users.php:122
+msgid "User Editor"
+msgstr "Käyttäjätunnusten muokkaus"
+
+#: classes/pref/users.php:158
+msgid "Access level: "
+msgstr "Käyttäjäoikeudet:"
+
+#: classes/pref/users.php:171
+msgid "Change password to"
+msgstr "Uusi salasana"
+
+#: classes/pref/users.php:177
+#: classes/pref/feeds.php:610
+#: classes/pref/feeds.php:834
+msgid "Options"
+msgstr "Valinnat"
+
+#: classes/pref/users.php:180
+msgid "E-mail: "
+msgstr "Email"
+
+#: classes/pref/users.php:258
+#, php-format
+msgid "Added user <b>%s</b> with password <b>%s</b>"
+msgstr ""
+
+#: classes/pref/users.php:265
+#, php-format
+msgid "Could not create user <b>%s</b>"
+msgstr "Käyttääjää ei voitu luoda <b>%s</b>"
+
+#: classes/pref/users.php:269
+#, php-format
+msgid "User <b>%s</b> already exists."
+msgstr "Käyttäjätunnus <b>%s</b> on olemassa."
+
+#: classes/pref/users.php:291
+#, php-format
+msgid "Changed password of user <b>%s</b> to <b>%s</b>"
+msgstr ""
+
+#: classes/pref/users.php:293
+#, php-format
+msgid "Sending new password of user <b>%s</b> to <b>%s</b>"
+msgstr ""
+
+#: classes/pref/users.php:317
+msgid "[tt-rss] Password change notification"
+msgstr ""
+
+#: classes/pref/users.php:360
+#: classes/pref/labels.php:272
+#: classes/pref/filters.php:279
+#: classes/pref/filters.php:327
+#: classes/pref/filters.php:645
+#: classes/pref/filters.php:734
+#: classes/pref/filters.php:761
+#: classes/pref/prefs.php:905
+#: classes/pref/feeds.php:1263
+#: classes/pref/feeds.php:1533
+#: classes/pref/feeds.php:1603
+#: plugins/instances/init.php:287
+msgid "Select"
+msgstr "Valitse"
+
+#: classes/pref/users.php:368
+msgid "Create user"
+msgstr "Luo käyttäjätunnus"
+
+#: classes/pref/users.php:372
+msgid "Details"
+msgstr "Tarkemmat tiedot"
+
+#: classes/pref/users.php:374
+#: classes/pref/filters.php:660
+#: plugins/instances/init.php:296
+msgid "Edit"
+msgstr "Muokkaa"
+
+#: classes/pref/users.php:421
+msgid "Access Level"
+msgstr "Käyttäjäoikeudet"
+
+#: classes/pref/users.php:423
+msgid "Last login"
+msgstr "Viimeisin kirjautuminen"
+
+#: classes/pref/users.php:444
+#: plugins/instances/init.php:337
+msgid "Click to edit"
+msgstr "Klikkaa muokataksesi"
+
+#: classes/pref/users.php:464
+msgid "No users defined."
+msgstr "Ei käyttjätunnuksia"
+
+#: classes/pref/users.php:466
+msgid "No matching users found."
+msgstr "Hakua vastaavia käyttäjätunnuksia ei löytynyt"
+
+#: classes/pref/labels.php:22
+#: classes/pref/filters.php:268
+#: classes/pref/filters.php:725
+msgid "Caption"
+msgstr "Nimi"
+
+#: classes/pref/labels.php:37
+msgid "Colors"
+msgstr "Värit"
+
+#: classes/pref/labels.php:42
+msgid "Foreground:"
+msgstr "Kirjasin:"
+
+#: classes/pref/labels.php:42
+msgid "Background:"
+msgstr "Tausta:"
+
+#: classes/pref/labels.php:232
+#, php-format
+msgid "Created label <b>%s</b>"
+msgstr "Luotu tunniste <b>%s</b>"
+
+#: classes/pref/labels.php:287
+msgid "Clear colors"
+msgstr "Poista värit"
+
+#: classes/pref/filters.php:96
+msgid "Articles matching this filter:"
+msgstr "Artikkelit, jotka täsmäävät tähän suodattimeen:"
+
+#: classes/pref/filters.php:133
+msgid "No recent articles matching this filter have been found."
+msgstr "Artikkeleita, jotka täsmäisivät tähän suodattimeen ei löytynyt. "
+
+#: classes/pref/filters.php:137
+msgid "Complex expressions might not give results while testing due to issues with database server regexp implementation."
+msgstr ""
+
+#: classes/pref/filters.php:274
+#: classes/pref/filters.php:729
+#: classes/pref/filters.php:844
+msgid "Match"
+msgstr "Täsmäys"
+
+#: classes/pref/filters.php:288
+#: classes/pref/filters.php:336
+#: classes/pref/filters.php:743
+#: classes/pref/filters.php:770
+msgid "Add"
+msgstr "Lisää"
+
+#: classes/pref/filters.php:322
+#: classes/pref/filters.php:756
+msgid "Apply actions"
+msgstr "Suorita toiminnot"
+
+#: classes/pref/filters.php:372
+#: classes/pref/filters.php:785
+msgid "Enabled"
+msgstr "Aktivoitu"
+
+#: classes/pref/filters.php:381
+#: classes/pref/filters.php:788
+msgid "Match any rule"
+msgstr "Täsmää kaikkiin sääntöihin"
+
+#: classes/pref/filters.php:390
+#: classes/pref/filters.php:791
+msgid "Inverse matching"
+msgstr "Käännä täsmäys"
+
+#: classes/pref/filters.php:402
+#: classes/pref/filters.php:798
+msgid "Test"
+msgstr "Testaa"
+
+#: classes/pref/filters.php:435
+msgid "(inverse)"
+msgstr "(käännä)"
+
+#: classes/pref/filters.php:434
+#, php-format
+msgid "%s on %s in %s %s"
+msgstr ""
+
+#: classes/pref/filters.php:657
+msgid "Combine"
+msgstr "Yhdistä"
+
+#: classes/pref/filters.php:663
+#: classes/pref/feeds.php:1279
+#: classes/pref/feeds.php:1293
+msgid "Reset sort order"
+msgstr "Järjestä oletuksen mukaisesti"
+
+#: classes/pref/filters.php:671
+#: classes/pref/feeds.php:1318
+msgid "Rescore articles"
+msgstr "Uudelleenpisteytä artikkelit"
+
+#: classes/pref/filters.php:801
+msgid "Create"
+msgstr "Luo"
+
+#: classes/pref/filters.php:856
+msgid "Inverse regular expression matching"
+msgstr "'regular expression' -täsmäys"
+
+#: classes/pref/filters.php:858
+msgid "on field"
+msgstr "kentässä"
+
+#: classes/pref/filters.php:864
+#: js/PrefFilterTree.js:45
+#: plugins/digest/digest.js:242
+msgid "in"
+msgstr "kansiossa"
+
+#: classes/pref/filters.php:877
+msgid "Save rule"
+msgstr "Talleta sääntö"
+
+#: classes/pref/filters.php:877
+#: js/functions.js:1063
+msgid "Add rule"
+msgstr "Lisää sääntö"
+
+#: classes/pref/filters.php:900
+msgid "Perform Action"
+msgstr "Suorita toiminto"
+
+#: classes/pref/filters.php:926
+msgid "with parameters:"
+msgstr "parametrit:"
+
+#: classes/pref/filters.php:944
+msgid "Save action"
+msgstr "Talleta toiminto"
+
+#: classes/pref/filters.php:944
+#: js/functions.js:1089
+msgid "Add action"
+msgstr "Lisää toiminto"
+
+#: classes/pref/filters.php:967
+#, fuzzy
+msgid "[No caption]"
+msgstr "Nimi"
+
+#: classes/pref/prefs.php:17
+msgid "Old password cannot be blank."
+msgstr "Vanha salasana ei voi olla tyhjä"
+
+#: classes/pref/prefs.php:22
+msgid "New password cannot be blank."
+msgstr "Uusi salasana ei voi olla tyhjä"
+
+#: classes/pref/prefs.php:27
+msgid "Entered passwords do not match."
+msgstr "Syötetyt salasanat eivät täsmää"
+
+#: classes/pref/prefs.php:37
+msgid "Function not supported by authentication module."
+msgstr ""
+
+#: classes/pref/prefs.php:69
+msgid "The configuration was saved."
+msgstr "Konfiguraatio tallennettu."
+
+#: classes/pref/prefs.php:83
+#, php-format
+msgid "Unknown option: %s"
+msgstr "Tuntematon valinta: %s"
+
+#: classes/pref/prefs.php:97
+msgid "Your personal data has been saved."
+msgstr "Sinun tiedot on tallennettu"
+
+#: classes/pref/prefs.php:137
+msgid "Personal data / Authentication"
+msgstr "Omat tiedot / Tunnistautuminen"
+
+#: classes/pref/prefs.php:157
+msgid "Personal data"
+msgstr "Omat tiedot"
+
+#: classes/pref/prefs.php:167
+msgid "Full name"
+msgstr "Koko nimi"
+
+#: classes/pref/prefs.php:171
+msgid "E-mail"
+msgstr "Email"
+
+#: classes/pref/prefs.php:177
+msgid "Access level"
+msgstr "Käyttäjäoikeudet"
+
+#: classes/pref/prefs.php:187
+msgid "Save data"
+msgstr "Talleta tiedot"
+
+#: classes/pref/prefs.php:209
+msgid "Your password is at default value, please change it."
+msgstr "Käytät vieläkin oletussalasanaa, kannattaa vaihtaa."
+
+#: classes/pref/prefs.php:236
+msgid "Changing your current password will disable OTP."
+msgstr "Salasanan vaihtaminen poistaa kertakäyttösalasanatunnistautumisen käytöstä."
+
+#: classes/pref/prefs.php:241
+msgid "Old password"
+msgstr "Vanha salasana"
+
+#: classes/pref/prefs.php:244
+msgid "New password"
+msgstr "Uusi salasana"
+
+#: classes/pref/prefs.php:249
+msgid "Confirm password"
+msgstr "Vahvista salasana"
+
+#: classes/pref/prefs.php:259
+msgid "Change password"
+msgstr "Vaihda salasana"
+
+#: classes/pref/prefs.php:265
+msgid "One time passwords / Authenticator"
+msgstr ""
+
+#: classes/pref/prefs.php:269
+msgid "One time passwords are currently enabled. Enter your current password below to disable."
+msgstr ""
+
+#: classes/pref/prefs.php:294
+#: classes/pref/prefs.php:345
+msgid "Enter your password"
+msgstr "Syötä salasanasi"
+
+#: classes/pref/prefs.php:305
+msgid "Disable OTP"
+msgstr "Poista OTP käytöstä"
+
+#: classes/pref/prefs.php:311
+msgid "You will need a compatible Authenticator to use this. Changing your password would automatically disable OTP."
+msgstr ""
+
+#: classes/pref/prefs.php:313
+msgid "Scan the following code by the Authenticator application:"
+msgstr ""
+
+#: classes/pref/prefs.php:354
+msgid "I have scanned the code and would like to enable OTP"
+msgstr ""
+
+#: classes/pref/prefs.php:362
+msgid "Enable OTP"
+msgstr "Aktivoi kertakäyttösalasana"
+
+#: classes/pref/prefs.php:400
+msgid "Some preferences are only available in default profile."
+msgstr ""
+
+#: classes/pref/prefs.php:491
+msgid "Customize"
+msgstr "Muokkaa"
+
+#: classes/pref/prefs.php:558
+msgid "Register"
+msgstr "Rekisteröi"
+
+#: classes/pref/prefs.php:562
+msgid "Clear"
+msgstr "Tyhjennä"
+
+#: classes/pref/prefs.php:568
+#, php-format
+msgid "Current server time: %s (UTC)"
+msgstr "Serverin aika: %s (UTC)"
+
+#: classes/pref/prefs.php:601
+msgid "Save configuration"
+msgstr "Talleta asetukset"
+
+#: classes/pref/prefs.php:604
+msgid "Manage profiles"
+msgstr "Hallitse profiileita"
+
+#: classes/pref/prefs.php:607
+msgid "Reset to defaults"
+msgstr "Palauta oletusarvot"
+
+#: classes/pref/prefs.php:631
+#: classes/pref/prefs.php:633
+msgid "Plugins"
+msgstr "Lisäosat"
+
+#: classes/pref/prefs.php:635
+msgid "You will need to reload Tiny Tiny RSS for plugin changes to take effect."
+msgstr "Päivitä sivu aktivoidaksesi lisäosiin tehdyt muutokset."
+
+#: classes/pref/prefs.php:637
+msgid "Download more plugins at tt-rss.org <a class=\"visibleLink\" target=\"_blank\" href=\"http://tt-rss.org/forum/viewforum.php?f=22\">forums</a> or <a target=\"_blank\" class=\"visibleLink\" href=\"http://tt-rss.org/wiki/Plugins\">wiki</a>."
+msgstr ""
+
+#: classes/pref/prefs.php:663
+msgid "System plugins"
+msgstr "Järjetelmän lisäosat"
+
+#: classes/pref/prefs.php:667
+#: classes/pref/prefs.php:721
+msgid "Plugin"
+msgstr "Lisäosa"
+
+#: classes/pref/prefs.php:668
+#: classes/pref/prefs.php:722
+msgid "Description"
+msgstr "Kuvaus"
+
+#: classes/pref/prefs.php:669
+#: classes/pref/prefs.php:723
+msgid "Version"
+msgstr "Versio"
+
+#: classes/pref/prefs.php:670
+#: classes/pref/prefs.php:724
+msgid "Author"
+msgstr "Tekijä"
+
+#: classes/pref/prefs.php:699
+#: classes/pref/prefs.php:756
+msgid "more info"
+msgstr "lisätietoja"
+
+#: classes/pref/prefs.php:708
+#: classes/pref/prefs.php:765
+msgid "Clear data"
+msgstr "Tyhjennä tiedot"
+
+#: classes/pref/prefs.php:717
+msgid "User plugins"
+msgstr "Käyttäjän lisäosat"
+
+#: classes/pref/prefs.php:780
+msgid "Enable selected plugins"
+msgstr "Aktivoi valitut lisäosat"
+
+#: classes/pref/prefs.php:835
+#: classes/pref/prefs.php:853
+msgid "Incorrect password"
+msgstr "Väärä salasana"
+
+#: classes/pref/prefs.php:879
+#, 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 ""
+
+#: classes/pref/prefs.php:919
+msgid "Create profile"
+msgstr "Luo profiili"
+
+#: classes/pref/prefs.php:942
+#: classes/pref/prefs.php:972
+msgid "(active)"
+msgstr "(aktiivinen)"
+
+#: classes/pref/prefs.php:1006
+msgid "Remove selected profiles"
+msgstr "Poista valitut profiilit"
+
+#: classes/pref/prefs.php:1008
+msgid "Activate profile"
+msgstr "Aktivoi profiili"
+
+#: classes/pref/feeds.php:13
+msgid "Check to enable field"
+msgstr "Valitse aktivoidaksesi kenttä"
+
+#: classes/pref/feeds.php:527
+msgid "Feed Title"
+msgstr "Syötteen otsikko"
+
+#: classes/pref/feeds.php:568
+#: classes/pref/feeds.php:793
+msgid "Update"
+msgstr "Päivitä"
+
+#: classes/pref/feeds.php:583
+#: classes/pref/feeds.php:809
+msgid "Article purging:"
+msgstr "Artikkeleiden siivous"
+
+#: classes/pref/feeds.php:606
+msgid "<b>Hint:</b> you need to fill in your login information if your feed requires authentication, except for Twitter feeds."
+msgstr ""
+
+#: classes/pref/feeds.php:622
+#: classes/pref/feeds.php:838
+msgid "Hide from Popular feeds"
+msgstr "Piilota suosituista syötteistä"
+
+#: classes/pref/feeds.php:634
+#: classes/pref/feeds.php:844
+msgid "Include in e-mail digest"
+msgstr "Sisällytä email-tiivistelmään"
+
+#: classes/pref/feeds.php:647
+#: classes/pref/feeds.php:850
+msgid "Always display image attachments"
+msgstr "Näytä aina kuvat"
+
+#: classes/pref/feeds.php:660
+#: classes/pref/feeds.php:858
+msgid "Do not embed images"
+msgstr "Älä liitä kuvia"
+
+#: classes/pref/feeds.php:673
+#: classes/pref/feeds.php:866
+msgid "Cache images locally"
+msgstr "Paikallinen välimuisti kuville"
+
+#: classes/pref/feeds.php:685
+#: classes/pref/feeds.php:872
+msgid "Mark updated articles as unread"
+msgstr "Merkitse päivitetyt artikkelit lukemattomiksi"
+
+#: classes/pref/feeds.php:691
+msgid "Icon"
+msgstr "Suosikkikuvake"
+
+#: classes/pref/feeds.php:705
+msgid "Replace"
+msgstr "Vaihda"
+
+#: classes/pref/feeds.php:724
+msgid "Resubscribe to push updates"
+msgstr ""
+
+#: classes/pref/feeds.php:731
+msgid "Resets PubSubHubbub subscription status for push-enabled feeds."
+msgstr ""
+
+#: classes/pref/feeds.php:1112
+#: classes/pref/feeds.php:1165
+msgid "All done."
+msgstr "Valmis."
+
+#: classes/pref/feeds.php:1220
+msgid "Feeds with errors"
+msgstr "Virheelliset syötteet"
+
+#: classes/pref/feeds.php:1240
+msgid "Inactive feeds"
+msgstr "Passiiviset syötteet"
+
+#: classes/pref/feeds.php:1277
+msgid "Edit selected feeds"
+msgstr "Muokkaa valittuja syötteitä"
+
+#: classes/pref/feeds.php:1281
+#: js/prefs.js:1770
+msgid "Batch subscribe"
+msgstr "Tilaa useita"
+
+#: classes/pref/feeds.php:1286
+msgid "Categories"
+msgstr "Kansiot"
+
+#: classes/pref/feeds.php:1289
+msgid "Add category"
+msgstr "Lisää kansio"
+
+#: classes/pref/feeds.php:1291
+msgid "(Un)hide empty categories"
+msgstr "Piilota/näytä tyhjät kansiot"
+
+#: classes/pref/feeds.php:1295
+msgid "Remove selected"
+msgstr "Poista valittu"
+
+#: classes/pref/feeds.php:1309
+msgid "More actions..."
+msgstr "Lisää toimintoja"
+
+#: classes/pref/feeds.php:1313
+msgid "Manual purge"
+msgstr ""
+
+#: classes/pref/feeds.php:1317
+msgid "Clear feed data"
+msgstr "Tyhjennnä syötetiedot"
+
+#: classes/pref/feeds.php:1368
+msgid "OPML"
+msgstr "OPML"
+
+#: classes/pref/feeds.php:1370
+msgid "Using OPML you can export and import your feeds, filters, labels and Tiny Tiny RSS settings."
+msgstr ""
+
+#: classes/pref/feeds.php:1372
+msgid "Only main settings profile can be migrated using OPML."
+msgstr ""
+
+#: classes/pref/feeds.php:1385
+msgid "Import my OPML"
+msgstr ""
+
+#: classes/pref/feeds.php:1389
+msgid "Filename:"
+msgstr "Tiedosto:"
+
+#: classes/pref/feeds.php:1391
+msgid "Include settings"
+msgstr ""
+
+#: classes/pref/feeds.php:1395
+msgid "Export OPML"
+msgstr ""
+
+#: classes/pref/feeds.php:1399
+msgid "Your OPML can be published publicly and can be subscribed by anyone who knows the URL below."
+msgstr ""
+
+#: classes/pref/feeds.php:1401
+msgid "Published OPML does not include your Tiny Tiny RSS settings, feeds that require authentication or feeds hidden from Popular feeds."
+msgstr ""
+
+#: classes/pref/feeds.php:1403
+msgid "Public OPML URL"
+msgstr ""
+
+#: classes/pref/feeds.php:1404
+msgid "Display published OPML URL"
+msgstr ""
+
+#: classes/pref/feeds.php:1414
+msgid "Firefox integration"
+msgstr ""
+
+#: classes/pref/feeds.php:1416
+msgid "This Tiny Tiny RSS site can be used as a Firefox Feed Reader by clicking the link below."
+msgstr ""
+
+#: classes/pref/feeds.php:1423
+msgid "Click here to register this site as a feed reader."
+msgstr ""
+
+#: classes/pref/feeds.php:1431
+msgid "Published & shared articles / Generated feeds"
+msgstr "Julkaistut & jaetut artikkelit / Generoidut syötteet"
+
+#: classes/pref/feeds.php:1433
+msgid "Published articles and generated feeds"
+msgstr "Julkaistut artikkelit ja generoidut syötteet"
+
+#: classes/pref/feeds.php:1435
+msgid "Published articles are exported as a public RSS feed and can be subscribed by anyone who knows the URL specified below."
+msgstr "Julkistetut artikkelit näkyvät julkisina RSS-syötteinä ja niitä voi lukea ja tilata jokainen, joka tietää alla määritellyn URL:n"
+
+#: classes/pref/feeds.php:1441
+msgid "Display URL"
+msgstr "Näytä URL"
+
+#: classes/pref/feeds.php:1444
+msgid "Clear all generated URLs"
+msgstr "Poista kaikki generoidut URLt"
+
+#: classes/pref/feeds.php:1446
+msgid "Articles shared by URL"
+msgstr "Artikkelit jaettu URL:n kautta"
+
+#: classes/pref/feeds.php:1448
+msgid "You can disable all articles shared by unique URLs here."
+msgstr "Voit poistaa kaikkien artikkeleiden julkistukset tästä."
+
+#: classes/pref/feeds.php:1451
+msgid "Unshare all articles"
+msgstr "Poista kaikkien artikkeleiden jako"
+
+#: classes/pref/feeds.php:1529
+msgid "These feeds have not been updated with new content for 3 months (oldest first):"
+msgstr "Näihin syötteisiin ei ole tullut uusia artikkeleita 3 kuukauteen (vanhimmat ensin):"
+
+#: classes/pref/feeds.php:1566
+#: classes/pref/feeds.php:1636
+msgid "Click to edit feed"
+msgstr "Klikkaa muokataksesi syötettä"
+
+#: classes/pref/feeds.php:1584
+#: classes/pref/feeds.php:1656
+msgid "Unsubscribe from selected feeds"
+msgstr "Lopeta valittujen syötteiden tilaukset"
+
+#: classes/pref/feeds.php:1595
+msgid "These feeds have not been updated because of errors:"
+msgstr "Näitä syötteitä ei ole päivitetty virheiden vuoksi:"
+
+#: classes/pref/feeds.php:1758
+msgid "Add one valid RSS feed per line (no feed detection is done)"
+msgstr "Lisää RSS-syötteet riveittäin. Yksi syöte per rivi. (syötetarkistusta ei tehdä)"
+
+#: classes/pref/feeds.php:1767
+msgid "Feeds to subscribe, One per line"
+msgstr "Tilattavat syötteet, yksi syöte per rivi"
+
+#: classes/pref/feeds.php:1789
+msgid "Feeds require authentication."
+msgstr "Syöte vaatii kirjautumisen."
+
+#: plugins/digest/digest_body.php:59
+msgid "Your browser doesn't support Javascript, which is required for this application to function properly. Please check your browser settings."
+msgstr ""
+
+#: plugins/digest/digest_body.php:74
+msgid "Hello,"
+msgstr "Hei"
+
+#: plugins/digest/digest_body.php:80
+msgid "Regular version"
+msgstr "Normaali versio"
+
+#: plugins/close_button/init.php:24
+msgid "Close article"
+msgstr "Sulje artikkeli"
+
+#: plugins/nsfw/init.php:32
+#: plugins/nsfw/init.php:43
+msgid "Not work safe (click to toggle)"
+msgstr ""
+
+#: plugins/nsfw/init.php:53
+msgid "NSFW Plugin"
+msgstr ""
+
+#: plugins/nsfw/init.php:80
+msgid "Tags to consider NSFW (comma-separated)"
+msgstr ""
+
+#: plugins/nsfw/init.php:101
+msgid "Configuration saved."
+msgstr "Asetukset tallennettu"
+
+#: plugins/auth_internal/init.php:62
+msgid "Please enter your one time password:"
+msgstr ""
+
+#: plugins/auth_internal/init.php:185
+msgid "Password has been changed."
+msgstr ""
+
+#: plugins/auth_internal/init.php:187
+msgid "Old password is incorrect."
+msgstr ""
+
+#: plugins/mobile/mobile-functions.php:61
+#: plugins/mobile/mobile-functions.php:137
+#: plugins/mobile/mobile-functions.php:173
+#: plugins/mobile/mobile-functions.php:200
+#: plugins/mobile/mobile-functions.php:236
+#: plugins/mobile/mobile-functions.php:373
+#: plugins/mobile/prefs.php:29
+msgid "Home"
+msgstr ""
+
+#: plugins/mobile/mobile-functions.php:409
+msgid "Nothing found (click to reload feed)."
+msgstr ""
+
+#: plugins/mobile/login_form.php:52
+msgid "Open regular version"
+msgstr ""
+
+#: plugins/mobile/prefs.php:34
+msgid "Enable categories"
+msgstr ""
+
+#: plugins/mobile/prefs.php:35
+#: plugins/mobile/prefs.php:40
+#: plugins/mobile/prefs.php:46
+#: plugins/mobile/prefs.php:51
+#: plugins/mobile/prefs.php:56
+#: plugins/mobile/prefs.php:61
+msgid "ON"
+msgstr ""
+
+#: plugins/mobile/prefs.php:35
+#: plugins/mobile/prefs.php:40
+#: plugins/mobile/prefs.php:46
+#: plugins/mobile/prefs.php:51
+#: plugins/mobile/prefs.php:56
+#: plugins/mobile/prefs.php:61
+msgid "OFF"
+msgstr ""
+
+#: plugins/mobile/prefs.php:39
+msgid "Browse categories like folders"
+msgstr ""
+
+#: plugins/mobile/prefs.php:45
+msgid "Show images in posts"
+msgstr ""
+
+#: plugins/mobile/prefs.php:50
+msgid "Hide read articles and feeds"
+msgstr ""
+
+#: plugins/mobile/prefs.php:55
+msgid "Sort feeds by unread count"
+msgstr ""
+
+#: plugins/mailto/init.php:52
+#: plugins/mailto/init.php:58
+#: plugins/mail/init.php:71
+#: plugins/mail/init.php:77
+msgid "[Forwarded]"
+msgstr ""
+
+#: plugins/mailto/init.php:52
+#: plugins/mail/init.php:71
+msgid "Multiple articles"
+msgstr ""
+
+#: plugins/mailto/init.php:74
+msgid "Clicking the following link to invoke your mail client:"
+msgstr ""
+
+#: plugins/mailto/init.php:78
+msgid "Forward selected article(s) by email."
+msgstr ""
+
+#: plugins/mailto/init.php:81
+msgid "You should be able to edit the message before sending in your mail client."
+msgstr ""
+
+#: plugins/mailto/init.php:86
+msgid "Close this dialog"
+msgstr "Sulje"
+
+#: plugins/bookmarklets/init.php:22
+msgid "Bookmarklets"
+msgstr ""
+
+#: 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 ""
+
+#: plugins/bookmarklets/init.php:28
+#, php-format
+msgid "Subscribe to %s in Tiny Tiny RSS?"
+msgstr ""
+
+#: plugins/bookmarklets/init.php:32
+msgid "Subscribe in Tiny Tiny RSS"
+msgstr ""
+
+#: plugins/bookmarklets/init.php:34
+msgid "Use this bookmarklet to publish arbitrary pages using Tiny Tiny RSS"
+msgstr ""
+
+#: plugins/import_export/init.php:64
+msgid "Import and export"
+msgstr "Tuo ja vie"
+
+#: plugins/import_export/init.php:66
+msgid "Article archive"
+msgstr "Artikkeliarkisto"
+
+#: 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 ""
+
+#: plugins/import_export/init.php:71
+msgid "Export my data"
+msgstr "Vie tietoni"
+
+#: plugins/import_export/init.php:87
+msgid "Import"
+msgstr "Tuo"
+
+#: plugins/import_export/init.php:221
+msgid "Could not import: incorrect schema version."
+msgstr ""
+
+#: plugins/import_export/init.php:226
+msgid "Could not import: unrecognized document format."
+msgstr ""
+
+#: plugins/import_export/init.php:385
+msgid "Finished: "
+msgstr "Valmis: "
+
+#: plugins/import_export/init.php:386
+#, php-format
+msgid "%d article processed, "
+msgid_plural "%d articles processed, "
+msgstr[0] ""
+msgstr[1] ""
+
+#: plugins/import_export/init.php:387
+#, php-format
+msgid "%d imported, "
+msgid_plural "%d imported, "
+msgstr[0] ""
+msgstr[1] ""
+
+#: plugins/import_export/init.php:388
+#, php-format
+msgid "%d feed created."
+msgid_plural "%d feeds created."
+msgstr[0] ""
+msgstr[1] ""
+
+#: plugins/import_export/init.php:393
+msgid "Could not load XML document."
+msgstr ""
+
+#: plugins/import_export/init.php:405
+msgid "Prepare data"
+msgstr ""
+
+#: plugins/import_export/init.php:426
+#, php-format
+msgid "Could not upload file. You might need to adjust upload_max_filesize in PHP.ini (current value = %s)"
+msgstr ""
+
+#: plugins/mail/init.php:92
+msgid "From:"
+msgstr ""
+
+#: plugins/mail/init.php:101
+msgid "To:"
+msgstr ""
+
+#: plugins/mail/init.php:114
+msgid "Subject:"
+msgstr "Otsikko:"
+
+#: plugins/mail/init.php:130
+msgid "Send e-mail"
+msgstr ""
+
+#: plugins/note/init.php:28
+#: plugins/note/note.js:11
+msgid "Edit article note"
+msgstr ""
+
+#: plugins/example/init.php:39
+msgid "Example Pane"
+msgstr ""
+
+#: plugins/example/init.php:70
+msgid "Sample value"
+msgstr ""
+
+#: plugins/example/init.php:76
+msgid "Set value"
+msgstr ""
+
+#: plugins/googlereaderimport/init.php:72
+msgid "No file uploaded."
+msgstr ""
+
+#: plugins/googlereaderimport/init.php:153
+#, php-format
+msgid "All done. %d out of %d articles imported."
+msgstr ""
+
+#: plugins/googlereaderimport/init.php:157
+msgid "The document has incorrect format."
+msgstr ""
+
+#: plugins/googlereaderimport/init.php:326
+msgid "Import starred or shared items from Google Reader"
+msgstr ""
+
+#: plugins/googlereaderimport/init.php:330
+msgid "Paste your starred.json or shared.json into the form below."
+msgstr ""
+
+#: plugins/googlereaderimport/init.php:344
+msgid "Import my Starred items"
+msgstr ""
+
+#: plugins/instances/init.php:144
+msgid "Linked"
+msgstr ""
+
+#: plugins/instances/init.php:207
+#: plugins/instances/init.php:399
+msgid "Instance"
+msgstr ""
+
+#: plugins/instances/init.php:218
+#: plugins/instances/init.php:315
+#: plugins/instances/init.php:408
+msgid "Instance URL"
+msgstr ""
+
+#: plugins/instances/init.php:229
+#: plugins/instances/init.php:418
+msgid "Access key:"
+msgstr ""
+
+#: plugins/instances/init.php:232
+#: plugins/instances/init.php:316
+#: plugins/instances/init.php:421
+msgid "Access key"
+msgstr ""
+
+#: plugins/instances/init.php:236
+#: plugins/instances/init.php:425
+msgid "Use one access key for both linked instances."
+msgstr ""
+
+#: plugins/instances/init.php:244
+#: plugins/instances/init.php:433
+msgid "Generate new key"
+msgstr ""
+
+#: plugins/instances/init.php:295
+msgid "Link instance"
+msgstr ""
+
+#: 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 ""
+
+#: plugins/instances/init.php:317
+msgid "Last connected"
+msgstr ""
+
+#: plugins/instances/init.php:318
+msgid "Status"
+msgstr ""
+
+#: plugins/instances/init.php:319
+msgid "Stored feeds"
+msgstr ""
+
+#: plugins/instances/init.php:437
+msgid "Create link"
+msgstr "Luo linkki"
+
+#: plugins/share/init.php:27
+msgid "Share by URL"
+msgstr ""
+
+#: plugins/share/init.php:49
+msgid "You can share this article by the following unique URL:"
+msgstr ""
+
+#: plugins/updater/init.php:317
+#: plugins/updater/init.php:334
+#: plugins/updater/updater.js:10
+msgid "Update Tiny Tiny RSS"
+msgstr ""
+
+#: plugins/updater/init.php:337
+msgid "Your Tiny Tiny RSS installation is up to date."
+msgstr ""
+
+#: plugins/updater/init.php:347
+msgid "Do not close this dialog until updating is finished. Backup your tt-rss directory before continuing."
+msgstr ""
+
+#: plugins/updater/init.php:350
+msgid "Ready to update."
+msgstr ""
+
+#: plugins/updater/init.php:355
+msgid "Start update"
+msgstr ""
+
+#: js/feedlist.js:404
+#: js/feedlist.js:432
+#: plugins/digest/digest.js:26
+msgid "Mark all articles in %s as read?"
+msgstr "Merkitäänkö kaikki artikkelit syötteessä %s luetuiksi?"
+
+#: js/feedlist.js:423
+msgid "Mark all articles in %s older than 1 day as read?"
+msgstr "Merkitäänkö kaikki yhtä päivää vanhemmat artikkelit syötteessä %s luetuiksi?"
+
+#: js/feedlist.js:426
+msgid "Mark all articles in %s older than 1 week as read?"
+msgstr "Merkitäänkö kaikki yhtä viikkoa vanhemmat artikkelit syötteessä %s luetuiksi?"
+
+#: js/feedlist.js:429
+msgid "Mark all articles in %s older than 2 weeks as read?"
+msgstr "Merkitäänkö kaikki 2 viikkoa vanhemmat artikkelit syötteessä %s luetuiksi?"
+
+#: js/functions.js:92
+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 ""
+
+#: js/functions.js:214
+msgid "close"
+msgstr "sulje"
+
+#: js/functions.js:621
+msgid "Date syntax appears to be correct:"
+msgstr "Päiväysformaatti on oikein:"
+
+#: js/functions.js:624
+msgid "Date syntax is incorrect."
+msgstr "Päiväysformaatti on väärin."
+
+#: js/functions.js:636
+msgid "Error explained"
+msgstr ""
+
+#: js/functions.js:718
+msgid "Upload complete."
+msgstr "Lataus valmis."
+
+#: js/functions.js:742
+msgid "Remove stored feed icon?"
+msgstr "Poista suosikkikuvake?"
+
+#: js/functions.js:747
+msgid "Removing feed icon..."
+msgstr "Poistetaan suosikkikuvake"
+
+#: js/functions.js:752
+msgid "Feed icon removed."
+msgstr "Suosikkikuvake poistettu."
+
+#: js/functions.js:774
+msgid "Please select an image file to upload."
+msgstr "Valitse kuvatiedosto."
+
+#: js/functions.js:776
+msgid "Upload new icon for this feed?"
+msgstr "Lataa uusi suosikkikuvake tälle syötteelle?"
+
+#: js/functions.js:777
+msgid "Uploading, please wait..."
+msgstr "Ladataan, odota..."
+
+#: js/functions.js:793
+msgid "Please enter label caption:"
+msgstr "Syötä tunnisteen nimi"
+
+#: js/functions.js:798
+msgid "Can't create label: missing caption."
+msgstr "Tunnistetta ei luotu: Tyhjä nimi."
+
+#: js/functions.js:841
+msgid "Subscribe to Feed"
+msgstr "Tilaa syöte"
+
+#: js/functions.js:868
+msgid "Subscribed to %s"
+msgstr "Syöte tilattu: %s"
+
+#: js/functions.js:873
+msgid "Specified URL seems to be invalid."
+msgstr "Syöttämäsi URL ei ole oikein"
+
+#: js/functions.js:876
+msgid "Specified URL doesn't seem to contain any feeds."
+msgstr "Syöttämäsi URL ei sisällä syötteitä"
+
+#: js/functions.js:929
+msgid "Couldn't download the specified URL: %s"
+msgstr "URL:n lataus epäonnistui: %s"
+
+#: js/functions.js:933
+msgid "You are already subscribed to this feed."
+msgstr "Olet jo tilannut tämän syötteen"
+
+#: js/functions.js:1063
+msgid "Edit rule"
+msgstr "Muokkaa sääntöä"
+
+#: js/functions.js:1089
+msgid "Edit action"
+msgstr "Muokkaa toimintoa"
+
+#: js/functions.js:1126
+msgid "Create Filter"
+msgstr "Luo suodatin"
+
+#: js/functions.js:1241
+msgid "Reset subscription? Tiny Tiny RSS will try to subscribe to the notification hub again on next feed update."
+msgstr ""
+
+#: js/functions.js:1252
+msgid "Subscription reset."
+msgstr ""
+
+#: js/functions.js:1262
+#: js/tt-rss.js:619
+msgid "Unsubscribe from %s?"
+msgstr "Lopeta tämän syötteen tilaus: %s?"
+
+#: js/functions.js:1265
+msgid "Removing feed..."
+msgstr "Poistetaan syötteet..."
+
+#: js/functions.js:1373
+msgid "Please enter category title:"
+msgstr "Syötä kansion nimi:"
+
+#: js/functions.js:1404
+msgid "Generate new syndication address for this feed?"
+msgstr ""
+
+#: js/functions.js:1408
+#: js/prefs.js:1222
+msgid "Trying to change address..."
+msgstr "Vaihdetaan osoitetta..."
+
+#: js/functions.js:1595
+#: js/tt-rss.js:396
+#: js/tt-rss.js:600
+msgid "You can't edit this kind of feed."
+msgstr "Et voi muokata tämäntyyppistä syötettä."
+
+#: js/functions.js:1610
+msgid "Edit Feed"
+msgstr "Muokkaa syötettä"
+
+#: js/functions.js:1616
+#: js/prefs.js:194
+#: js/prefs.js:749
+msgid "Saving data..."
+msgstr "Talletetaan tiedot..."
+
+#: js/functions.js:1648
+msgid "More Feeds"
+msgstr "Lisää syötteitä"
+
+#: js/functions.js:1709
+#: js/functions.js:1819
+#: js/prefs.js:397
+#: js/prefs.js:427
+#: js/prefs.js:459
+#: js/prefs.js:642
+#: js/prefs.js:662
+#: js/prefs.js:1198
+#: js/prefs.js:1343
+msgid "No feeds are selected."
+msgstr "Yhtään syötettä ei ole valittuna"
+
+#: js/functions.js:1751
+msgid "Remove selected feeds from the archive? Feeds with stored articles will not be removed."
+msgstr ""
+
+#: js/functions.js:1790
+msgid "Feeds with update errors"
+msgstr "Virheelliset syötteet"
+
+#: js/functions.js:1801
+#: js/prefs.js:1180
+msgid "Remove selected feeds?"
+msgstr "Poistetaanko valitut syötteet?"
+
+#: js/functions.js:1804
+#: js/prefs.js:1183
+msgid "Removing selected feeds..."
+msgstr "Poistetaan valitut syötteet..."
+
+#: js/functions.js:1902
+msgid "Help"
+msgstr "Apua"
+
+#: js/PrefFeedTree.js:47
+msgid "Edit category"
+msgstr "Muokkaa kansiota"
+
+#: js/PrefFeedTree.js:54
+msgid "Remove category"
+msgstr "Poista kansio"
+
+#: js/PrefFilterTree.js:48
+msgid "Inverse"
+msgstr "Käännä valinnat"
+
+#: js/prefs.js:55
+msgid "Please enter login:"
+msgstr "Syötä käyttäjätunnus:"
+
+#: js/prefs.js:62
+msgid "Can't create user: no login specified."
+msgstr "Uutta käyttäjätunnusta ei voi luoda: Tyhjä käyttäjätunnus."
+
+#: js/prefs.js:66
+msgid "Adding user..."
+msgstr "Lisätään käyttäjä"
+
+#: js/prefs.js:117
+msgid "Edit Filter"
+msgstr "Muokkaa suodatinta"
+
+#: js/prefs.js:164
+msgid "Remove filter?"
+msgstr "Poista suodatin?"
+
+#: js/prefs.js:169
+msgid "Removing filter..."
+msgstr "Poistetaan suodatin..."
+
+#: js/prefs.js:279
+msgid "Remove selected labels?"
+msgstr "Poistetaanko valitut tunnisteet?"
+
+#: js/prefs.js:282
+msgid "Removing selected labels..."
+msgstr ""
+
+#: js/prefs.js:295
+#: js/prefs.js:1384
+msgid "No labels are selected."
+msgstr "Yhtään tunnistetta ei ole valittuna"
+
+#: js/prefs.js:309
+msgid "Remove selected users? Neither default admin nor your account will be removed."
+msgstr ""
+
+#: js/prefs.js:312
+msgid "Removing selected users..."
+msgstr "Poistetaan valitut käyttäjätunnukset..."
+
+#: js/prefs.js:326
+#: js/prefs.js:507
+#: js/prefs.js:528
+#: js/prefs.js:567
+msgid "No users are selected."
+msgstr "Käyttjätunnuksia ei ole valittu."
+
+#: js/prefs.js:344
+msgid "Remove selected filters?"
+msgstr "Poistetaanko valitut suodattimet?"
+
+#: js/prefs.js:347
+msgid "Removing selected filters..."
+msgstr "Poistetaan valitut suodattimet..."
+
+#: js/prefs.js:359
+#: js/prefs.js:597
+#: js/prefs.js:616
+msgid "No filters are selected."
+msgstr "Yhtään suodatinta ei ole valittuna."
+
+#: js/prefs.js:378
+msgid "Unsubscribe from selected feeds?"
+msgstr "Peruutaanko valittujen syötteiden tilaukset?"
+
+#: js/prefs.js:382
+msgid "Unsubscribing from selected feeds..."
+msgstr "Perutaan valittujen syötteiden tilaukset..."
+
+#: js/prefs.js:412
+msgid "Please select only one feed."
+msgstr "Valitse vain yksi syöte."
+
+#: js/prefs.js:418
+msgid "Erase all non-starred articles in selected feed?"
+msgstr "Haluatko poistaa syötteestä kaikki tähdellä merkitsemättömät artikkelit?"
+
+#: js/prefs.js:421
+msgid "Clearing selected feed..."
+msgstr "Poistetaan artikkeita..."
+
+#: js/prefs.js:440
+msgid "How many days of articles to keep (0 - use default)?"
+msgstr "Kuinka monen päivän ikäiset artikkelit säästetään (0 - käytä oletusarvoa)?"
+
+#: js/prefs.js:443
+msgid "Purging selected feed..."
+msgstr "Siivotaan valittua syötettä..."
+
+#: js/prefs.js:478
+msgid "Login field cannot be blank."
+msgstr "Käyttjätunnus-kenttä ei voi olla tyhjä."
+
+#: js/prefs.js:482
+msgid "Saving user..."
+msgstr "Tallennetaan käyttäjä..."
+
+#: js/prefs.js:512
+#: js/prefs.js:533
+#: js/prefs.js:572
+msgid "Please select only one user."
+msgstr "Valitse ainakin yksi käyttäjätunnus."
+
+#: js/prefs.js:537
+msgid "Reset password of selected user?"
+msgstr "Resetoi valitun käyttäjän salasana?"
+
+#: js/prefs.js:540
+msgid "Resetting password for selected user..."
+msgstr "Resetoidaan valitun käyttäjän salasana..."
+
+#: js/prefs.js:602
+msgid "Please select only one filter."
+msgstr "Valitse vain yksi syöte"
+
+#: js/prefs.js:620
+msgid "Combine selected filters?"
+msgstr "Yhdistetäänkö valitut suodattimet?"
+
+#: js/prefs.js:623
+msgid "Joining filters..."
+msgstr "Yhdistetään suodattimet..."
+
+#: js/prefs.js:684
+msgid "Edit Multiple Feeds"
+msgstr "Muokkaa useampaa syötettä"
+
+#: js/prefs.js:708
+msgid "Save changes to selected feeds?"
+msgstr "Talleta valittujen syötteiden muutokset?"
+
+#: js/prefs.js:785
+msgid "OPML Import"
+msgstr ""
+
+#: js/prefs.js:812
+msgid "Please choose an OPML file first."
+msgstr ""
+
+#: js/prefs.js:815
+#: plugins/import_export/import_export.js:115
+#: plugins/googlereaderimport/init.js:45
+msgid "Importing, please wait..."
+msgstr ""
+
+#: js/prefs.js:968
+msgid "Reset to defaults?"
+msgstr "Palautetaanko oletukset?"
+
+#: js/prefs.js:1087
+msgid "Remove category %s? Any nested feeds would be placed into Uncategorized."
+msgstr ""
+
+#: js/prefs.js:1093
+msgid "Removing category..."
+msgstr "Poistetaan kansio..."
+
+#: js/prefs.js:1114
+msgid "Remove selected categories?"
+msgstr "Haluatko poistaa valitun kansion?"
+
+#: js/prefs.js:1117
+msgid "Removing selected categories..."
+msgstr "Poistetaan valitut kansiot..."
+
+#: js/prefs.js:1130
+msgid "No categories are selected."
+msgstr "Yhtään kansiota ei ole valittuna."
+
+#: js/prefs.js:1138
+msgid "Category title:"
+msgstr "Kansion nimi:"
+
+#: js/prefs.js:1142
+msgid "Creating category..."
+msgstr "Luodaan kansio..."
+
+#: js/prefs.js:1169
+msgid "Feeds without recent updates"
+msgstr "Syötteet, joissa ei ole ollut päivityksiä pitkiin aikoihin"
+
+#: js/prefs.js:1218
+msgid "Replace current OPML publishing address with a new one?"
+msgstr ""
+
+#: js/prefs.js:1307
+msgid "Clearing feed..."
+msgstr "Siivotaan syöte..."
+
+#: js/prefs.js:1327
+msgid "Rescore articles in selected feeds?"
+msgstr "Uudelleenpisteytetäänkö valitun syötteen artikkelit?"
+
+#: js/prefs.js:1330
+msgid "Rescoring selected feeds..."
+msgstr "Uudelleenpisteyteään valitut syötteet..."
+
+#: js/prefs.js:1350
+msgid "Rescore all articles? This operation may take a lot of time."
+msgstr "Uudelleenpisteytetäänkö kaikki artikkelit? Toiminto voi kestää kauan."
+
+#: js/prefs.js:1353
+msgid "Rescoring feeds..."
+msgstr "Uudelleenpisteyteään syötteet..."
+
+#: js/prefs.js:1370
+msgid "Reset selected labels to default colors?"
+msgstr "Palautetaanko valittujen tunnisteiden värit oletusväreiksi?"
+
+#: js/prefs.js:1407
+msgid "Settings Profiles"
+msgstr "Profiilien asetukset"
+
+#: js/prefs.js:1416
+msgid "Remove selected profiles? Active and default profiles will not be removed."
+msgstr "Poistetaanko valitut profiilit? Aktiivisia ja oletusprofiilia ei poisteta."
+
+#: js/prefs.js:1419
+msgid "Removing selected profiles..."
+msgstr "Poistetaan valitut profiilit..."
+
+#: js/prefs.js:1434
+msgid "No profiles are selected."
+msgstr "Yhtään profiiliä ei ole valittuna."
+
+#: js/prefs.js:1442
+#: js/prefs.js:1495
+msgid "Activate selected profile?"
+msgstr "Aktivoidaanko valittu profiili?"
+
+#: js/prefs.js:1458
+#: js/prefs.js:1511
+msgid "Please choose a profile to activate."
+msgstr "Valitse profiili jonka haluat aktivoida."
+
+#: js/prefs.js:1463
+msgid "Creating profile..."
+msgstr "Luodaan profiili..."
+
+#: js/prefs.js:1519
+msgid "This will invalidate all previously generated feed URLs. Continue?"
+msgstr "Kaikki generoitujen syötteiden URLt poistetaan. Jatketaanko?"
+
+#: js/prefs.js:1522
+#: js/prefs.js:1541
+msgid "Clearing URLs..."
+msgstr "Siivotaan URLt"
+
+#: js/prefs.js:1529
+msgid "Generated URLs cleared."
+msgstr "Luodut URLt siivottu."
+
+#: js/prefs.js:1538
+msgid "This will invalidate all previously shared article URLs. Continue?"
+msgstr "Kaikki jaettujen artikkeleiden URLt poistetaan. Jatketaanko?"
+
+#: js/prefs.js:1548
+msgid "Shared URLs cleared."
+msgstr "Jaetut URLt tyhjennetty"
+
+#: js/prefs.js:1654
+msgid "Label Editor"
+msgstr "Tunniste-editori"
+
+#: js/prefs.js:1776
+msgid "Subscribing to feeds..."
+msgstr "Tilataan syötteet..."
+
+#: js/prefs.js:1813
+msgid "Clear stored data for this plugin?"
+msgstr "Poistetaanko kaikki tämän lisäosan tallettamat tiedot?"
+
+#: js/tt-rss.js:124
+msgid "Mark all articles as read?"
+msgstr "Merkitse kaikki artikkelit luetuksi?"
+
+#: js/tt-rss.js:130
+msgid "Marking all feeds as read..."
+msgstr "Merkitään kaikki syötteet luetuiksi..."
+
+#: js/tt-rss.js:355
+msgid "Please enable mail plugin first."
+msgstr "Aktivoi ensin email lisäosa."
+
+#: js/tt-rss.js:461
+msgid "Please enable embed_original plugin first."
+msgstr ""
+
+#: js/tt-rss.js:587
+msgid "Select item(s) by tags"
+msgstr "Valitse tagien perusteella"
+
+#: js/tt-rss.js:608
+msgid "You can't unsubscribe from the category."
+msgstr "Et voi peruuttaa tämän kansion tilausta."
+
+#: js/tt-rss.js:613
+#: js/tt-rss.js:765
+msgid "Please select some feed first."
+msgstr "Valitse syötteet ensin."
+
+#: js/tt-rss.js:760
+msgid "You can't rescore this kind of feed."
+msgstr ""
+
+#: js/tt-rss.js:770
+msgid "Rescore articles in %s?"
+msgstr "Uudelleenpisteytä artikkelit %s:ssa?"
+
+#: js/tt-rss.js:773
+msgid "Rescoring articles..."
+msgstr "Uudelleenpisteytetään artikkelit..."
+
+#: js/tt-rss.js:907
+msgid "New version available!"
+msgstr "Uusi versio saatavilla!"
+
+#: js/viewfeed.js:106
+msgid "Cancel search"
+msgstr "Peruuta haku"
+
+#: js/viewfeed.js:440
+#: plugins/digest/digest.js:258
+#: plugins/digest/digest.js:714
+msgid "Unstar article"
+msgstr "Poista tähti artikkelista"
+
+#: js/viewfeed.js:445
+#: plugins/digest/digest.js:260
+#: plugins/digest/digest.js:718
+msgid "Star article"
+msgstr "Merkitse artikkeli tähdellä"
+
+#: js/viewfeed.js:478
+#: plugins/digest/digest.js:263
+#: plugins/digest/digest.js:749
+msgid "Unpublish article"
+msgstr "Aseta artikkeli yksityiseksi"
+
+#: js/viewfeed.js:679
+#: js/viewfeed.js:707
+#: js/viewfeed.js:734
+#: js/viewfeed.js:797
+#: js/viewfeed.js:831
+#: js/viewfeed.js:951
+#: js/viewfeed.js:994
+#: js/viewfeed.js:1047
+#: js/viewfeed.js:2096
+#: plugins/mailto/init.js:7
+#: plugins/mail/mail.js:7
+msgid "No articles are selected."
+msgstr "Yhtään artikkelia ei ole valittuna"
+
+#: js/viewfeed.js:959
+msgid "Delete %d selected article in %s?"
+msgid_plural "Delete %d selected articles in %s?"
+msgstr[0] ""
+msgstr[1] ""
+
+#: js/viewfeed.js:961
+msgid "Delete %d selected article?"
+msgid_plural "Delete %d selected articles?"
+msgstr[0] ""
+msgstr[1] ""
+
+#: js/viewfeed.js:1003
+msgid "Archive %d selected article in %s?"
+msgid_plural "Archive %d selected articles in %s?"
+msgstr[0] "Arkistoi %d valittu artikkeli syötteestä %s?"
+msgstr[1] "Arkistoi %d valittua artikkelia syötteestä %s?"
+
+#: js/viewfeed.js:1006
+msgid "Move %d archived article back?"
+msgid_plural "Move %d archived articles back?"
+msgstr[0] "Siirretäänkö %d arkistoitu artikkeli takaisin?"
+msgstr[1] "Siirretäänkö %d arkistoitua artikkelia takaisin?"
+
+#: js/viewfeed.js:1008
+msgid "Please note that unstarred articles might get purged on next feed update."
+msgstr ""
+
+#: js/viewfeed.js:1053
+msgid "Mark %d selected article in %s as read?"
+msgid_plural "Mark %d selected articles in %s as read?"
+msgstr[0] ""
+msgstr[1] ""
+
+#: js/viewfeed.js:1077
+msgid "Edit article Tags"
+msgstr "Muokkaa artikkelin tageja"
+
+#: js/viewfeed.js:1083
+msgid "Saving article tags..."
+msgstr "Talletetaan artikkelin tagit..."
+
+#: js/viewfeed.js:1323
+msgid "No article is selected."
+msgstr "Yhtään artikkelia ei ole valittuna."
+
+#: js/viewfeed.js:1358
+msgid "No articles found to mark"
+msgstr "Artikkeleita ei ole merkittäväksi"
+
+#: js/viewfeed.js:1360
+msgid "Mark %d article as read?"
+msgid_plural "Mark %d articles as read?"
+msgstr[0] ""
+msgstr[1] ""
+
+#: js/viewfeed.js:1872
+msgid "Open original article"
+msgstr "Avaa alkuperäinen artikkeli"
+
+#: js/viewfeed.js:1878
+msgid "Display article URL"
+msgstr "Näytä artikkelin URL"
+
+#: js/viewfeed.js:1897
+msgid "Toggle marked"
+msgstr "Käännä valitun merkintä"
+
+#: js/viewfeed.js:1983
+msgid "Remove label"
+msgstr "Poista tunniste"
+
+#: js/viewfeed.js:2007
+msgid "Playing..."
+msgstr ""
+
+#: js/viewfeed.js:2008
+msgid "Click to pause"
+msgstr ""
+
+#: js/viewfeed.js:2065
+msgid "Please enter new score for selected articles:"
+msgstr "Anna uusi pistemäärä valituille artikkeleille:"
+
+#: js/viewfeed.js:2107
+msgid "Please enter new score for this article:"
+msgstr "Anna uusi pistemäärä tälle artikkelille:"
+
+#: js/viewfeed.js:2140
+msgid "Article URL:"
+msgstr "Artikkelin URL:"
+
+#: plugins/digest/digest.js:72
+msgid "Mark %d displayed article as read?"
+msgid_plural "Mark %d displayed articles as read?"
+msgstr[0] ""
+msgstr[1] ""
+
+#: plugins/digest/digest.js:290
+msgid "Error: unable to load article."
+msgstr "Virhe: artikkelia ei voida ladata."
+
+#: plugins/digest/digest.js:464
+msgid "Click to expand article."
+msgstr "Klikkaa näyttääksesi artikkeli"
+
+#: plugins/digest/digest.js:535
+msgid "%d more..."
+msgid_plural "%d more..."
+msgstr[0] ""
+msgstr[1] ""
+
+#: plugins/digest/digest.js:542
+msgid "No unread feeds."
+msgstr "Ei lukemattomia syötteitä."
+
+#: plugins/digest/digest.js:649
+msgid "Load more..."
+msgstr "Lataa lisää..."
+
+#: plugins/embed_original/init.js:6
+msgid "Sorry, your browser does not support sandboxed iframes."
+msgstr ""
+
+#: plugins/mailto/init.js:21
+#: plugins/mail/mail.js:21
+msgid "Forward article by email"
+msgstr "Lähetä sähköpostilla"
+
+#: plugins/import_export/import_export.js:13
+msgid "Export Data"
+msgstr "Vie data"
+
+#: plugins/import_export/import_export.js:40
+msgid "Finished, exported %d article. You can download the data <a class='visibleLink' href='%u'>here</a>."
+msgid_plural "Finished, exported %d articles. You can download the data <a class='visibleLink' href='%u'>here</a>."
+msgstr[0] ""
+msgstr[1] ""
+
+#: plugins/import_export/import_export.js:93
+msgid "Data Import"
+msgstr "Tuo data"
+
+#: plugins/import_export/import_export.js:112
+msgid "Please choose the file first."
+msgstr ""
+
+#: plugins/note/note.js:17
+msgid "Saving article note..."
+msgstr ""
+
+#: plugins/googlereaderimport/init.js:18
+msgid "Google Reader Import"
+msgstr ""
+
+#: plugins/googlereaderimport/init.js:42
+msgid "Please choose a file first."
+msgstr "Valitse ensin tiedosto."
+
+#: plugins/instances/instances.js:10
+msgid "Link Instance"
+msgstr ""
+
+#: plugins/instances/instances.js:73
+msgid "Edit Instance"
+msgstr ""
+
+#: plugins/instances/instances.js:122
+msgid "Remove selected instances?"
+msgstr ""
+
+#: plugins/instances/instances.js:125
+msgid "Removing selected instances..."
+msgstr ""
+
+#: plugins/instances/instances.js:139
+#: plugins/instances/instances.js:151
+msgid "No instances are selected."
+msgstr ""
+
+#: plugins/instances/instances.js:156
+msgid "Please select only one instance."
+msgstr ""
+
+#: plugins/share/share.js:10
+msgid "Share article by URL"
+msgstr ""
+
+#: 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 "Tag Cloud"
+#~ msgstr "Tagipilvi"
+
+#~ msgid "Mark all visible articles in %s as read?"
+#~ msgstr "Merkitse kaikki näkyvät artikkelit kansiossa %s luetuksi?"
index 8f9350956eb5a059fddbb20a859908ffd93c02cc..08b16a7dbb654a9939cbdb6f6659108538f49e10 100644 (file)
Binary files a/locale/fr_FR/LC_MESSAGES/messages.mo and b/locale/fr_FR/LC_MESSAGES/messages.mo differ
index 577664a9963e0651181cfffcc0f58e313dcb7912..261bada4e5096d90102dbb13d57d1db1d8410d94 100644 (file)
@@ -11,8 +11,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Tiny Tiny RSS\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-03-31 12:47+0400\n"
-"PO-Revision-Date: 2013-03-31 12:27+0100\n"
+"POT-Creation-Date: 2013-04-01 16:28+0400\n"
+"PO-Revision-Date: 2013-04-01 10:18+0100\n"
 "Last-Translator: Raphael Rochet <raphael@rri.fr>\n"
 "Language-Team: French\n"
 "Language: fr_FR\n"
@@ -54,39 +54,48 @@ msgstr "Au bout de 3 mois"
 msgid "Default interval"
 msgstr "Fréquence de mise à jour par défaut"
 
-#: backend.php:81 backend.php:91
+#: backend.php:81
+#: backend.php:91
 msgid "Disable updates"
 msgstr "Désactiver les mises à jour"
 
-#: backend.php:82 backend.php:92
+#: backend.php:82
+#: backend.php:92
 msgid "Each 15 minutes"
 msgstr "Toutes les 15 minutes"
 
-#: backend.php:83 backend.php:93
+#: backend.php:83
+#: backend.php:93
 msgid "Each 30 minutes"
 msgstr "Toutes les 30 minutes"
 
-#: backend.php:84 backend.php:94
+#: backend.php:84
+#: backend.php:94
 msgid "Hourly"
 msgstr "Toutes les heures"
 
-#: backend.php:85 backend.php:95
+#: backend.php:85
+#: backend.php:95
 msgid "Each 4 hours"
 msgstr "Toutes les 4 heures"
 
-#: backend.php:86 backend.php:96
+#: backend.php:86
+#: backend.php:96
 msgid "Each 12 hours"
 msgstr "Toutes les 12 heures"
 
-#: backend.php:87 backend.php:97
+#: backend.php:87
+#: backend.php:97
 msgid "Daily"
 msgstr "Une fois par jour"
 
-#: backend.php:88 backend.php:98
+#: backend.php:88
+#: backend.php:98
 msgid "Weekly"
 msgstr "Une fois par semaine"
 
-#: backend.php:101 classes/pref/users.php:139
+#: backend.php:101
+#: classes/pref/users.php:139
 msgid "User"
 msgstr "Utilisateur"
 
@@ -122,11 +131,20 @@ msgstr ", trouvée : "
 msgid "Tiny Tiny RSS database is up to date."
 msgstr "La base de données de Tiny Tiny RSS est à jour."
 
-#: db-updater.php:96 db-updater.php:165 db-updater.php:178 register.php:196
-#: register.php:241 register.php:254 register.php:269 register.php:288
-#: register.php:336 register.php:346 register.php:358
-#: classes/handler/public.php:625 classes/handler/public.php:713
-#: classes/handler/public.php:795
+#: db-updater.php:96
+#: db-updater.php:165
+#: db-updater.php:178
+#: register.php:196
+#: register.php:241
+#: register.php:254
+#: register.php:269
+#: register.php:288
+#: register.php:336
+#: register.php:346
+#: register.php:358
+#: classes/handler/public.php:626
+#: classes/handler/public.php:714
+#: classes/handler/public.php:796
 msgid "Return to Tiny Tiny RSS"
 msgstr "Revenir à Tiny Tiny RSS"
 
@@ -136,12 +154,8 @@ msgstr "Merci de sauvegardez votre base de données avant de poursuivre."
 
 #: db-updater.php:104
 #, php-format
-msgid ""
-"Your Tiny Tiny RSS database needs update to the latest version (<b>%d</b> to "
-"<b>%d</b>)."
-msgstr ""
-"La base de données de Tiny Tiny RSS a besoin d'être mise à jour (version <b>"
-"%d</b> à <b>%d</b>)."
+msgid "Your Tiny Tiny RSS database needs update to the latest version (<b>%d</b> to <b>%d</b>)."
+msgstr "La base de données de Tiny Tiny RSS a besoin d'être mise à jour (version <b>%d</b> à <b>%d</b>)."
 
 #: db-updater.php:118
 msgid "Perform updates"
@@ -171,20 +185,13 @@ msgstr "ERREUR !"
 #: db-updater.php:160
 #, php-format
 msgid "Finished. Performed <b>%d</b> update up to schema version <b>%d</b>."
-msgid_plural ""
-"Finished. Performed <b>%d</b> updates up to schema version <b>%d</b>."
-msgstr[0] ""
-"Terminé. <b>%d</b> modification a été effectuée pour parvenir à la version "
-"de schéma <b>%d</b>."
-msgstr[1] ""
-"Terminé. <b>%d</b> modifications ont été effectuées pour parvenir à la "
-"version de schéma <b>%d</b>."
+msgid_plural "Finished. Performed <b>%d</b> updates up to schema version <b>%d</b>."
+msgstr[0] "Terminé. <b>%d</b> modification a été effectuée pour parvenir à la version de schéma <b>%d</b>."
+msgstr[1] "Terminé. <b>%d</b> modifications ont été effectuées pour parvenir à la version de schéma <b>%d</b>."
 
 #: db-updater.php:170
 msgid "Your database schema is from a newer version of Tiny Tiny RSS."
-msgstr ""
-"Votre schéma de base de données provient d'une version plus récente de Tiny "
-"Tiny RSS."
+msgstr "Votre schéma de base de données provient d'une version plus récente de Tiny Tiny RSS."
 
 #: db-updater.php:172
 #, php-format
@@ -192,30 +199,16 @@ msgid "Found schema version: <b>%d</b>, required: <b>%d</b>."
 msgstr "Version du schéma trouvée : <b>%d</b>, requise : <b>%d</b>."
 
 #: db-updater.php:174
-msgid ""
-"Schema upgrade impossible. Please update Tiny Tiny RSS files to the newer "
-"version and continue."
-msgstr ""
-"Mise à jour du schéma impossible. Veuillez mettre à jour les fichiers de "
-"Tiny Tiny RSS vers une version plus récente et continuer."
+msgid "Schema upgrade impossible. Please update Tiny Tiny RSS files to the newer version and continue."
+msgstr "Mise à jour du schéma impossible. Veuillez mettre à jour les fichiers de Tiny Tiny RSS vers une version plus récente et continuer."
 
 #: errors.php:9
-msgid ""
-"This program requires XmlHttpRequest to function properly. Your browser "
-"doesn't seem to support it."
-msgstr ""
-"Ce programme nécessite l'utilisation de XmlHttpRequest pour fonctionner "
-"correctement. Votre navigateur web semble ne pas intégrer cette "
-"fonctionnalité."
+msgid "This program requires XmlHttpRequest to function properly. Your browser doesn't seem to support it."
+msgstr "Ce programme nécessite l'utilisation de XmlHttpRequest pour fonctionner correctement. Votre navigateur web semble ne pas intégrer cette fonctionnalité."
 
 #: errors.php:12
-msgid ""
-"This program requires cookies to function properly. Your browser doesn't "
-"seem to support them."
-msgstr ""
-"Ce programme nécessite l'utilisation de cookies pour fonctionner "
-"correctement. Votre navigateur web semble ne pas intégrer cette "
-"fonctionnalité."
+msgid "This program requires cookies to function properly. Your browser doesn't seem to support them."
+msgstr "Ce programme nécessite l'utilisation de cookies pour fonctionner correctement. Votre navigateur web semble ne pas intégrer cette fonctionnalité."
 
 #: errors.php:15
 msgid "Backend sanity check failed."
@@ -226,12 +219,8 @@ msgid "Frontend sanity check failed."
 msgstr "Le test de l'interface a échoué."
 
 #: errors.php:19
-msgid ""
-"Incorrect database schema version. &lt;a href='db-updater.php'&gt;Please "
-"update&lt;/a&gt;."
-msgstr ""
-"Version non valable pour le schéma de la base de données. &lt;a href='db-"
-"updater.php'&gt;Veuillez le mettre à jour&lt;/a&gt;."
+msgid "Incorrect database schema version. &lt;a href='db-updater.php'&gt;Please update&lt;/a&gt;."
+msgstr "Version non valable pour le schéma de la base de données. &lt;a href='db-updater.php'&gt;Veuillez le mettre à jour&lt;/a&gt;."
 
 #: errors.php:21
 msgid "Request not authorized."
@@ -242,48 +231,60 @@ msgid "No operation to perform."
 msgstr "Aucune opération à effectuer."
 
 #: errors.php:25
-msgid ""
-"Could not display feed: query failed. Please check label match syntax or "
-"local configuration."
-msgstr ""
-"Impossible d'afficher le flux : la requête n'a pas abouti. Veuillez vérifier "
-"la syntaxe de correspondance d'étiquette ou la configuration locale."
+msgid "Could not display feed: query failed. Please check label match syntax or local configuration."
+msgstr "Impossible d'afficher le flux : la requête n'a pas abouti. Veuillez vérifier la syntaxe de correspondance d'étiquette ou la configuration locale."
 
 #: errors.php:27
 msgid "Denied. Your access level is insufficient to access this page."
-msgstr ""
-"Accès refusé. Vous n'avez pas les permissions nécessaires pour accéder à "
-"cette page."
+msgstr "Accès refusé. Vous n'avez pas les permissions nécessaires pour accéder à cette page."
 
 #: errors.php:29
 msgid "Configuration check failed"
 msgstr "Échec du test de configuration"
 
 #: errors.php:31
-msgid ""
-"Your version of MySQL is not currently supported. Please see official site "
-"for more information."
-msgstr ""
-"Votre version de MySQL n'est pas supportée actuellement. Veuillez consulter "
-"le site officiel pour plus d'informations."
+msgid "Your version of MySQL is not currently supported. Please see official site for more information."
+msgstr "Votre version de MySQL n'est pas supportée actuellement. Veuillez consulter le site officiel pour plus d'informations."
 
 #: errors.php:35
 msgid "SQL escaping test failed, check your database and PHP configuration"
-msgstr ""
-"Le test d'échappement SQL a échoué, veuillez vérifier votre configuration de "
-"base de données et de PHP"
-
-#: index.php:135 index.php:154 index.php:264 prefs.php:102
-#: classes/backend.php:5 classes/pref/labels.php:296
-#: classes/pref/filters.php:628 classes/pref/feeds.php:1330
-#: plugins/digest/digest_body.php:63 js/feedlist.js:128 js/feedlist.js:448
-#: js/functions.js:420 js/functions.js:814 js/functions.js:1250
-#: js/functions.js:1385 js/functions.js:1697 js/prefs.js:86 js/prefs.js:576
-#: js/prefs.js:666 js/prefs.js:870 js/prefs.js:1457 js/prefs.js:1510
-#: js/prefs.js:1568 js/prefs.js:1584 js/prefs.js:1600 js/prefs.js:1619
-#: js/prefs.js:1792 js/prefs.js:1808 js/tt-rss.js:475 js/tt-rss.js:492
-#: js/viewfeed.js:774 js/viewfeed.js:1259
-#: plugins/import_export/import_export.js:17 plugins/updater/updater.js:17
+msgstr "Le test d'échappement SQL a échoué, veuillez vérifier votre configuration de base de données et de PHP"
+
+#: index.php:135
+#: index.php:154
+#: index.php:263
+#: prefs.php:103
+#: classes/backend.php:5
+#: classes/pref/labels.php:296
+#: classes/pref/filters.php:680
+#: classes/pref/feeds.php:1331
+#: plugins/digest/digest_body.php:63
+#: js/feedlist.js:128
+#: js/feedlist.js:448
+#: js/functions.js:420
+#: js/functions.js:808
+#: js/functions.js:1244
+#: js/functions.js:1379
+#: js/functions.js:1691
+#: js/prefs.js:86
+#: js/prefs.js:576
+#: js/prefs.js:666
+#: js/prefs.js:858
+#: js/prefs.js:1445
+#: js/prefs.js:1498
+#: js/prefs.js:1557
+#: js/prefs.js:1574
+#: js/prefs.js:1590
+#: js/prefs.js:1606
+#: js/prefs.js:1625
+#: js/prefs.js:1798
+#: js/prefs.js:1814
+#: js/tt-rss.js:475
+#: js/tt-rss.js:492
+#: js/viewfeed.js:774
+#: js/viewfeed.js:1245
+#: plugins/import_export/import_export.js:17
+#: plugins/updater/updater.js:17
 msgid "Loading, please wait..."
 msgstr "Chargement en cours, veuillez patienter..."
 
@@ -303,15 +304,21 @@ msgstr "Adaptatif"
 msgid "All Articles"
 msgstr "Tous les articles"
 
-#: index.php:176 include/functions.php:1974 classes/feeds.php:106
+#: index.php:176
+#: include/functions.php:1924
+#: classes/feeds.php:106
 msgid "Starred"
 msgstr "Remarquables"
 
-#: index.php:177 include/functions.php:1975 classes/feeds.php:107
+#: index.php:177
+#: include/functions.php:1925
+#: classes/feeds.php:107
 msgid "Published"
 msgstr "Publiés"
 
-#: index.php:178 classes/feeds.php:93 classes/feeds.php:105
+#: index.php:178
+#: classes/feeds.php:93
+#: classes/feeds.php:105
 msgid "Unread"
 msgstr "Non lus"
 
@@ -321,7 +328,7 @@ msgstr "Non lus en premier"
 
 #: index.php:180
 msgid "With Note"
-msgstr ""
+msgstr "Avec annotation"
 
 #: index.php:181
 msgid "Ignore Scoring"
@@ -343,173 +350,187 @@ msgstr "Les plus récents en premier"
 msgid "Oldest first"
 msgstr "Les plus anciens en premier"
 
-#: index.php:195 classes/pref/feeds.php:567 classes/pref/feeds.php:792
-msgid "Update"
-msgstr "Mettre à jour"
-
-#: index.php:197
+#: index.php:192
 msgid "Mark feed as read"
 msgstr "Marquer le flux comme lu"
 
-#: index.php:200 index.php:235 include/functions.php:1964
-#: include/localized_schema.php:10 classes/feeds.php:111 classes/feeds.php:136
-#: classes/feeds.php:437 js/FeedTree.js:128 js/FeedTree.js:156
+#: index.php:195
+#: index.php:234
+#: include/functions.php:1914
+#: include/localized_schema.php:10
+#: classes/feeds.php:111
+#: classes/feeds.php:437
+#: js/FeedTree.js:128
+#: js/FeedTree.js:156
 #: plugins/digest/digest.js:647
 msgid "Mark as read"
 msgstr "Marquer comme lu"
 
-#: index.php:201 include/functions.php:1860 include/functions.php:1972
+#: index.php:196
+#: include/functions.php:1810
+#: include/functions.php:1922
 msgid "All articles"
 msgstr "Tous les articles"
 
-#: index.php:202
+#: index.php:197
 msgid "Older than one day"
 msgstr "Âgé d'au moins un jour"
 
-#: index.php:203
+#: index.php:198
 msgid "Older than one week"
 msgstr "Âgé d'au moins une semaine"
 
-#: index.php:204
+#: index.php:199
 msgid "Older than two weeks"
 msgstr "Âgé d'au moins deux semaines"
 
-#: index.php:212
+#: index.php:204
+msgid "Refresh"
+msgstr "Actualiser"
+
+#: index.php:211
 msgid "Communication problem with server."
 msgstr "Un problème de communication avec le serveur est survenu."
 
-#: index.php:220
+#: index.php:219
 msgid "New version of Tiny Tiny RSS is available!"
 msgstr "Une nouvelle version de Tiny Tiny RSS est disponible !"
 
-#: index.php:225
+#: index.php:224
 msgid "Actions..."
 msgstr "Actions..."
 
-#: index.php:227
+#: index.php:226
 msgid "Preferences..."
 msgstr "Configuration..."
 
-#: index.php:228
+#: index.php:227
 msgid "Search..."
 msgstr "Rechercher..."
 
-#: index.php:229
+#: index.php:228
 msgid "Feed actions:"
 msgstr "Actions sur ce flux :"
 
-#: index.php:230 classes/handler/public.php:555
+#: index.php:229
+#: classes/handler/public.php:556
 msgid "Subscribe to feed..."
 msgstr "S'abonner au flux..."
 
-#: index.php:231
+#: index.php:230
 msgid "Edit this feed..."
 msgstr "Modifier ce flux..."
 
-#: index.php:232
+#: index.php:231
 msgid "Rescore feed"
 msgstr "Recalculer le score du flux"
 
-#: index.php:233 classes/pref/feeds.php:716 classes/pref/feeds.php:1303
+#: index.php:232
+#: classes/pref/feeds.php:717
+#: classes/pref/feeds.php:1304
 #: js/PrefFeedTree.js:73
 msgid "Unsubscribe"
 msgstr "Se désabonner"
 
-#: index.php:234
+#: index.php:233
 msgid "All feeds:"
 msgstr "Tous les flux :"
 
-#: index.php:236
+#: index.php:235
 msgid "(Un)hide read feeds"
 msgstr "Masquer/afficher les flux lus"
 
-#: index.php:237
+#: index.php:236
 msgid "Other actions:"
 msgstr "Autres actions :"
 
-#: index.php:239
+#: index.php:238
 msgid "Switch to digest..."
 msgstr "Basculer en mode résumé..."
 
-#: index.php:241
+#: index.php:240
 msgid "Show tag cloud..."
 msgstr "Afficher le nuage de tags..."
 
-#: index.php:242 include/functions.php:1950
+#: index.php:241
+#: include/functions.php:1900
 msgid "Toggle widescreen mode"
 msgstr "Basculer le mode écran large"
 
-#: index.php:243
+#: index.php:242
 msgid "Select by tags..."
 msgstr "Sélectionner par tags..."
 
-#: index.php:244
+#: index.php:243
 msgid "Create label..."
 msgstr "Créer une étiquette..."
 
-#: index.php:245
+#: index.php:244
 msgid "Create filter..."
 msgstr "Créer un filtre..."
 
-#: index.php:246
+#: index.php:245
 msgid "Keyboard shortcuts help"
 msgstr "Aide sur les raccourcis clavier"
 
-#: index.php:248 plugins/digest/digest_body.php:77
+#: index.php:247
+#: plugins/digest/digest_body.php:77
 #: plugins/mobile/mobile-functions.php:62
 #: plugins/mobile/mobile-functions.php:237
 msgid "Logout"
 msgstr "Déconnexion"
 
-#: prefs.php:36 prefs.php:122 include/functions.php:1977
+#: prefs.php:36
+#: prefs.php:121
+#: include/functions.php:1927
 #: classes/pref/prefs.php:377
 msgid "Preferences"
 msgstr "Configuration"
 
-#: prefs.php:113
+#: prefs.php:112
 msgid "Keyboard shortcuts"
 msgstr "Raccourcis clavier"
 
-#: prefs.php:114
+#: prefs.php:113
 msgid "Exit preferences"
 msgstr "Quitter la configuration"
 
-#: prefs.php:125 classes/pref/feeds.php:106 classes/pref/feeds.php:1208
-#: classes/pref/feeds.php:1271
+#: prefs.php:124
+#: classes/pref/feeds.php:107
+#: classes/pref/feeds.php:1209
+#: classes/pref/feeds.php:1272
 msgid "Feeds"
 msgstr "Flux"
 
-#: prefs.php:128 classes/pref/filters.php:120
+#: prefs.php:127
+#: classes/pref/filters.php:156
 msgid "Filters"
 msgstr "Filtres"
 
-#: prefs.php:131 include/functions.php:1167 include/functions.php:1803
-#: classes/pref/labels.php:90 plugins/mobile/mobile-functions.php:198
+#: prefs.php:130
+#: include/functions.php:1117
+#: include/functions.php:1753
+#: classes/pref/labels.php:90
+#: plugins/mobile/mobile-functions.php:198
 msgid "Labels"
 msgstr "Etiquettes"
 
-#: prefs.php:135
+#: prefs.php:134
 msgid "Users"
 msgstr "Utilisateurs"
 
-#: register.php:186 include/login_form.php:238
+#: register.php:186
+#: include/login_form.php:238
 msgid "Create new account"
 msgstr "Créer un nouveau compte"
 
 #: register.php:192
 msgid "New user registrations are administratively disabled."
-msgstr ""
-"L'inscription de nouveaux utilisateurs est désactivée par l'administrateur."
+msgstr "L'inscription de nouveaux utilisateurs est désactivée par l'administrateur."
 
 #: register.php:217
-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 ""
-"Votre mot de passe temporaire va être envoyé à l'adresse mail indiquée. Les "
-"comptes ne s'étant pas connectés au moins une fois dans les 24 heures qui "
-"suivent l'envoi du mail seront supprimés."
+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 "Votre mot de passe temporaire va être envoyé à l'adresse mail indiquée. Les comptes ne s'étant pas connectés au moins une fois dans les 24 heures qui suivent l'envoi du mail seront supprimés."
 
 #: register.php:223
 msgid "Desired login:"
@@ -519,11 +540,13 @@ msgstr "Identifiant souhaité :"
 msgid "Check availability"
 msgstr "Vérifier la disponibilité"
 
-#: register.php:228 classes/handler/public.php:753
+#: register.php:228
+#: classes/handler/public.php:754
 msgid "Email:"
 msgstr "Adresse mail :"
 
-#: register.php:231 classes/handler/public.php:758
+#: register.php:231
+#: classes/handler/public.php:759
 msgid "How much is two plus two:"
 msgstr "Combien font 2 plus 2 :"
 
@@ -555,9 +578,13 @@ msgstr "L'inscription de nouveaux utilisateurs est actuellement fermée."
 msgid "Tiny Tiny RSS data update script."
 msgstr "Script de mise à jour des données de Tiny Tiny RSS."
 
-#: include/digest.php:109 include/functions.php:1176
-#: include/functions.php:1704 include/functions.php:1789
-#: include/functions.php:1811 classes/opml.php:416 classes/pref/feeds.php:221
+#: include/digest.php:109
+#: include/functions.php:1126
+#: include/functions.php:1654
+#: include/functions.php:1739
+#: include/functions.php:1761
+#: classes/opml.php:416
+#: classes/pref/feeds.php:222
 msgid "Uncategorized"
 msgstr "Sans catégorie"
 
@@ -572,293 +599,326 @@ msgstr[1] "%d articles archivés"
 msgid "No feeds found."
 msgstr "Aucun flux trouvé."
 
-#: include/functions.php:722
-msgid "Session failed to validate (incorrect IP)"
-msgstr "Echec de la validation de la session (adresse IP incorrecte)"
-
-#: include/functions.php:1165 include/functions.php:1801
+#: include/functions.php:1115
+#: include/functions.php:1751
 #: plugins/mobile/mobile-functions.php:171
 msgid "Special"
 msgstr "Spécial"
 
-#: include/functions.php:1653 classes/dlg.php:369 classes/pref/filters.php:382
+#: include/functions.php:1603
+#: classes/feeds.php:1097
+#: classes/pref/filters.php:427
 msgid "All feeds"
 msgstr "Tous les flux"
 
-#: include/functions.php:1854
+#: include/functions.php:1804
 msgid "Starred articles"
 msgstr "Articles remarquables"
 
-#: include/functions.php:1856
+#: include/functions.php:1806
 msgid "Published articles"
 msgstr "Articles publiés"
 
-#: include/functions.php:1858
+#: include/functions.php:1808
 msgid "Fresh articles"
 msgstr "Nouveaux articles"
 
-#: include/functions.php:1862
+#: include/functions.php:1812
 msgid "Archived articles"
 msgstr "Articles archivés"
 
-#: include/functions.php:1864
+#: include/functions.php:1814
 msgid "Recently read"
 msgstr "Lus récemment"
 
-#: include/functions.php:1927
+#: include/functions.php:1877
 msgid "Navigation"
 msgstr "Navigation"
 
-#: include/functions.php:1928
+#: include/functions.php:1878
 msgid "Open next feed"
 msgstr "Ouvrir le flux suivant"
 
-#: include/functions.php:1929
+#: include/functions.php:1879
 msgid "Open previous feed"
 msgstr "Ouvrir le flux précédent"
 
-#: include/functions.php:1930
+#: include/functions.php:1880
 msgid "Open next article"
 msgstr "Ouvrir l'article suivant"
 
-#: include/functions.php:1931
+#: include/functions.php:1881
 msgid "Open previous article"
 msgstr "Ouvrir l'article précédent"
 
-#: include/functions.php:1932
+#: include/functions.php:1882
 msgid "Open next article (don't scroll long articles)"
 msgstr "Ouvrir l'article suivant (ne pas faire défiler les articles longs)"
 
-#: include/functions.php:1933
+#: include/functions.php:1883
 msgid "Open previous article (don't scroll long articles)"
 msgstr "Ouvrir l'article précédent (ne pas faire défiler les articles longs)"
 
-#: include/functions.php:1934
+#: include/functions.php:1884
 msgid "Show search dialog"
 msgstr "Afficher la fenêtre de recherche"
 
-#: include/functions.php:1935
+#: include/functions.php:1885
 msgid "Article"
 msgstr "Article"
 
-#: include/functions.php:1936
+#: include/functions.php:1886
 msgid "Toggle starred"
 msgstr "Marquer comme (non) remarquable"
 
-#: include/functions.php:1937 js/viewfeed.js:1920
+#: include/functions.php:1887
+#: js/viewfeed.js:1908
 msgid "Toggle published"
 msgstr "Marquer comme (non) publié"
 
-#: include/functions.php:1938 js/viewfeed.js:1898
+#: include/functions.php:1888
+#: js/viewfeed.js:1886
 msgid "Toggle unread"
 msgstr "Marquer comme (non) lu"
 
-#: include/functions.php:1939
+#: include/functions.php:1889
 msgid "Edit tags"
 msgstr "Modifier les tags"
 
-#: include/functions.php:1940
+#: include/functions.php:1890
 msgid "Dismiss selected"
 msgstr "Ecarter la sélection"
 
-#: include/functions.php:1941
+#: include/functions.php:1891
 msgid "Dismiss read"
 msgstr "Ecarter les articles lus"
 
-#: include/functions.php:1942
+#: include/functions.php:1892
 msgid "Open in new window"
 msgstr "Ouvrir dans une nouvelle fenêtre"
 
-#: include/functions.php:1943 js/viewfeed.js:1939
+#: include/functions.php:1893
+#: js/viewfeed.js:1927
 msgid "Mark below as read"
 msgstr "Marquer les articles en-dessous comme lus"
 
-#: include/functions.php:1944 js/viewfeed.js:1933
+#: include/functions.php:1894
+#: js/viewfeed.js:1921
 msgid "Mark above as read"
 msgstr "Marquer les articles au-dessus comme lus"
 
-#: include/functions.php:1945
+#: include/functions.php:1895
 msgid "Scroll down"
 msgstr "Défiler vers le bas"
 
-#: include/functions.php:1946
+#: include/functions.php:1896
 msgid "Scroll up"
 msgstr "Défiler vers le haut"
 
-#: include/functions.php:1947
+#: include/functions.php:1897
 msgid "Select article under cursor"
 msgstr "Sélectionner l'article sous le curseur"
 
-#: include/functions.php:1948
+#: include/functions.php:1898
 msgid "Email article"
 msgstr "Envoyer l'article par mail"
 
-#: include/functions.php:1949
+#: include/functions.php:1899
 msgid "Close/collapse article"
 msgstr "Contracter l'article"
 
-#: include/functions.php:1951 plugins/embed_original/init.php:33
+#: include/functions.php:1901
+#: plugins/embed_original/init.php:33
 msgid "Toggle embed original"
 msgstr "Basculer l'intégration de l'article original"
 
-#: include/functions.php:1952
+#: include/functions.php:1902
 msgid "Article selection"
 msgstr "Sélection d'article"
 
-#: include/functions.php:1953
+#: include/functions.php:1903
 msgid "Select all articles"
 msgstr "Sélectionner tous les articles"
 
-#: include/functions.php:1954
+#: include/functions.php:1904
 msgid "Select unread"
 msgstr "Sélectionner les articles non-lus"
 
-#: include/functions.php:1955
+#: include/functions.php:1905
 msgid "Select starred"
 msgstr "Sélectionner les articles remarquables"
 
-#: include/functions.php:1956
+#: include/functions.php:1906
 msgid "Select published"
 msgstr "Sélectionner les articles publiés"
 
-#: include/functions.php:1957
+#: include/functions.php:1907
 msgid "Invert selection"
 msgstr "Inverser la sélection"
 
-#: include/functions.php:1958
+#: include/functions.php:1908
 msgid "Deselect everything"
 msgstr "Tout désélectionner"
 
-#: include/functions.php:1959 classes/pref/feeds.php:520
-#: classes/pref/feeds.php:753
+#: include/functions.php:1909
+#: classes/pref/feeds.php:521
+#: classes/pref/feeds.php:754
 msgid "Feed"
 msgstr "Flux"
 
-#: include/functions.php:1960
+#: include/functions.php:1910
 msgid "Refresh current feed"
 msgstr "Actualiser le flux actif"
 
-#: include/functions.php:1961
+#: include/functions.php:1911
 msgid "Un/hide read feeds"
 msgstr "Masquer/afficher les flux lus"
 
-#: include/functions.php:1962 classes/pref/feeds.php:1274
+#: include/functions.php:1912
+#: classes/pref/feeds.php:1275
 msgid "Subscribe to feed"
 msgstr "S'abonner au flux"
 
-#: include/functions.php:1963 js/FeedTree.js:135 js/PrefFeedTree.js:67
+#: include/functions.php:1913
+#: js/FeedTree.js:135
+#: js/PrefFeedTree.js:67
 msgid "Edit feed"
 msgstr "Modifier le flux"
 
-#: include/functions.php:1965
+#: include/functions.php:1915
 msgid "Reverse headlines"
 msgstr "Inverser l'ordre des en-têtes"
 
-#: include/functions.php:1966
+#: include/functions.php:1916
 msgid "Debug feed update"
 msgstr "Déboguer les mises à jour"
 
-#: include/functions.php:1967 js/FeedTree.js:178
+#: include/functions.php:1917
+#: js/FeedTree.js:178
 msgid "Mark all feeds as read"
 msgstr "Marquer tous les flux comme lus"
 
-#: include/functions.php:1968
+#: include/functions.php:1918
 msgid "Un/collapse current category"
 msgstr "Étendre/contracter la catégorie"
 
-#: include/functions.php:1969
+#: include/functions.php:1919
 msgid "Toggle combined mode"
 msgstr "Basculer le mode combiné"
 
-#: include/functions.php:1970
+#: include/functions.php:1920
 msgid "Toggle auto expand in combined mode"
 msgstr "Basculer le développement automatique en mode combiné"
 
-#: include/functions.php:1971
+#: include/functions.php:1921
 msgid "Go to"
 msgstr "Aller à"
 
-#: include/functions.php:1973
+#: include/functions.php:1923
 msgid "Fresh"
 msgstr "Nouveaux"
 
-#: include/functions.php:1976
+#: include/functions.php:1926
+#: js/tt-rss.js:431
+#: js/tt-rss.js:584
 msgid "Tag cloud"
 msgstr "Nuage de tags"
 
-#: include/functions.php:1978
+#: include/functions.php:1928
 msgid "Other"
 msgstr "Autre"
 
-#: include/functions.php:1979 classes/pref/labels.php:281
+#: include/functions.php:1929
+#: classes/pref/labels.php:281
 msgid "Create label"
 msgstr "Créer une étiquette"
 
-#: include/functions.php:1980 classes/pref/filters.php:606
+#: include/functions.php:1930
+#: classes/pref/filters.php:654
 msgid "Create filter"
 msgstr "Créer un filtre"
 
-#: include/functions.php:1981
+#: include/functions.php:1931
 msgid "Un/collapse sidebar"
 msgstr "Ouvrir/fermer la barre latérale"
 
-#: include/functions.php:1982
+#: include/functions.php:1932
 msgid "Show help dialog"
 msgstr "Afficher la fenêtre d'aide"
 
-#: include/functions.php:2467
+#: include/functions.php:2417
 #, php-format
 msgid "Search results: %s"
 msgstr "Résultats de recherche: %s"
 
-#: include/functions.php:2958 js/viewfeed.js:2026
+#: include/functions.php:2908
+#: js/viewfeed.js:2014
 msgid "Click to play"
 msgstr "Cliquez pour lancer la lecture"
 
-#: include/functions.php:2959 js/viewfeed.js:2025
+#: include/functions.php:2909
+#: js/viewfeed.js:2013
 msgid "Play"
 msgstr "Lecture"
 
-#: include/functions.php:3076
+#: include/functions.php:3026
 msgid " - "
 msgstr " - "
 
-#: include/functions.php:3098 include/functions.php:3392 classes/rpc.php:408
+#: include/functions.php:3048
+#: include/functions.php:3342
+#: classes/rpc.php:408
 msgid "no tags"
 msgstr "aucun tag"
 
-#: include/functions.php:3108 classes/feeds.php:682
+#: include/functions.php:3058
+#: classes/feeds.php:682
 msgid "Edit tags for this article"
 msgstr "Modifier les tags pour cet article"
 
-#: include/functions.php:3137 classes/feeds.php:638
+#: include/functions.php:3087
+#: classes/feeds.php:638
 msgid "Originally from:"
 msgstr "Origine :"
 
-#: include/functions.php:3150 classes/feeds.php:651 classes/pref/feeds.php:539
+#: include/functions.php:3100
+#: classes/feeds.php:651
+#: classes/pref/feeds.php:540
 msgid "Feed URL"
 msgstr "URL du flux"
 
-#: include/functions.php:3181 classes/dlg.php:43 classes/dlg.php:162
-#: classes/dlg.php:185 classes/dlg.php:222 classes/dlg.php:506
-#: classes/dlg.php:541 classes/dlg.php:572 classes/dlg.php:606
-#: classes/dlg.php:618 classes/backend.php:105 classes/pref/users.php:106
-#: classes/pref/filters.php:111 classes/pref/feeds.php:1587
-#: classes/pref/feeds.php:1659 plugins/import_export/init.php:409
-#: plugins/import_export/init.php:432 plugins/googlereaderimport/init.php:164
-#: plugins/share/init.php:67 plugins/updater/init.php:357
+#: include/functions.php:3131
+#: classes/dlg.php:37
+#: classes/dlg.php:60
+#: classes/dlg.php:93
+#: classes/dlg.php:159
+#: classes/dlg.php:190
+#: classes/dlg.php:217
+#: classes/dlg.php:250
+#: classes/dlg.php:262
+#: classes/backend.php:105
+#: classes/pref/users.php:106
+#: classes/pref/filters.php:147
+#: classes/pref/prefs.php:1012
+#: classes/pref/feeds.php:1588
+#: classes/pref/feeds.php:1660
+#: plugins/import_export/init.php:409
+#: plugins/import_export/init.php:432
+#: plugins/googlereaderimport/init.php:168
+#: plugins/share/init.php:67
+#: plugins/updater/init.php:357
 msgid "Close this window"
 msgstr "Fermer cette fenêtre"
 
-#: include/functions.php:3417
+#: include/functions.php:3367
 msgid "(edit note)"
 msgstr "(modifier l'annotation)"
 
-#: include/functions.php:3650
+#: include/functions.php:3600
 msgid "unknown type"
 msgstr "type inconnu"
 
-#: include/functions.php:3706
+#: include/functions.php:3656
 msgid "Attachments"
 msgstr "Fichier attaché"
 
@@ -890,8 +950,10 @@ msgstr "Supprimer l'article"
 msgid "Set starred"
 msgstr "Marquer comme remarquable"
 
-#: include/localized_schema.php:12 js/viewfeed.js:483
-#: plugins/digest/digest.js:265 plugins/digest/digest.js:754
+#: include/localized_schema.php:12
+#: js/viewfeed.js:483
+#: plugins/digest/digest.js:265
+#: plugins/digest/digest.js:754
 msgid "Publish article"
 msgstr "Publier l'article"
 
@@ -899,7 +961,8 @@ msgstr "Publier l'article"
 msgid "Assign tags"
 msgstr "Assigner des tags"
 
-#: include/localized_schema.php:14 js/viewfeed.js:1990
+#: include/localized_schema.php:14
+#: js/viewfeed.js:1978
 msgid "Assign label"
 msgstr "Assigner l'étiquette"
 
@@ -920,66 +983,36 @@ msgid "Advanced"
 msgstr "Avancé"
 
 #: 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 ""
-"Cette option est utile si vous lisez des articles venant d'agrégateurs de "
-"type «planet», dans lesquels certains flux se recoupent largement. Lorsque "
-"cette option est désactivée, les articles en double sont affichés en un seul "
-"exemplaire."
+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 "Cette option est utile si vous lisez des articles venant d'agrégateurs de type «planet», dans lesquels certains flux se recoupent largement. Lorsque cette option est désactivée, les articles en double sont affichés en un seul exemplaire."
 
 #: include/localized_schema.php:22
-msgid ""
-"Display expanded list of feed articles, instead of separate displays for "
-"headlines and article content"
-msgstr ""
-"Affiche les articles sous la forme d'une liste étendue, au lieu de deux "
-"listes séparées (une pour les en-têtes et une pour le contenu)"
+msgid "Display expanded list of feed articles, instead of separate displays for headlines and article content"
+msgstr "Affiche les articles sous la forme d'une liste étendue, au lieu de deux listes séparées (une pour les en-têtes et une pour le contenu)"
 
 #: include/localized_schema.php:23
-msgid ""
-"Automatically open next feed with unread articles after marking one as read"
+msgid "Automatically open next feed with unread articles after marking one as read"
 msgstr "Sauter automatiquement au flux suivant après en marquer un comme lu"
 
 #: include/localized_schema.php:24
-msgid ""
-"This option enables sending daily digest of new (and unread) headlines on "
-"your configured e-mail address"
-msgstr ""
-"Cette option active l'envoi d'une synthèse quotidienne (digest) des en-têtes "
-"nouveaux et non lus à l'adresse électronique donnée"
+msgid "This option enables sending daily digest of new (and unread) headlines on your configured e-mail address"
+msgstr "Cette option active l'envoi d'une synthèse quotidienne (digest) des en-têtes nouveaux et non lus à l'adresse électronique donnée"
 
 #: include/localized_schema.php:25
-msgid ""
-"This option enables marking articles as read automatically while you scroll "
-"article list."
-msgstr ""
-"Cette option permet de marquer automatiquement les articles comme lus "
-"lorsque vous naviguez dans la liste d'articles."
+msgid "This option enables marking articles as read automatically while you scroll article list."
+msgstr "Cette option permet de marquer automatiquement les articles comme lus lorsque vous naviguez dans la liste d'articles."
 
 #: include/localized_schema.php:26
 msgid "Strip all but most common HTML tags when reading articles."
-msgstr ""
-"Élimine toutes les balises HTML sauf les plus courantes lors de la lecture "
-"des articles."
+msgstr "Élimine toutes les balises HTML sauf les plus courantes lors de la lecture des articles."
 
 #: include/localized_schema.php:27
-msgid ""
-"When auto-detecting tags in articles these tags will not be applied (comma-"
-"separated list)."
-msgstr ""
-"Lors de l'auto-détection des tags dans les articles, ces tags ne seront pas "
-"utilisés (séparés par des virgules)."
+msgid "When auto-detecting tags in articles these tags will not be applied (comma-separated list)."
+msgstr "Lors de l'auto-détection des tags dans les articles, ces tags ne seront pas utilisés (séparés par des virgules)."
 
 #: include/localized_schema.php:28
-msgid ""
-"When this option is enabled, headlines in Special feeds and Labels are "
-"grouped by feeds"
-msgstr ""
-"Avec cette option activée, les entêtes dans les flux spéciaux et par "
-"étiquettes sont regroupés par flux"
+msgid "When this option is enabled, headlines in Special feeds and Labels are grouped by feeds"
+msgstr "Avec cette option activée, les entêtes dans les flux spéciaux et par étiquettes sont regroupés par flux"
 
 #: include/localized_schema.php:29
 msgid "Customize CSS stylesheet to your liking"
@@ -987,9 +1020,7 @@ msgstr "Personnaliser les feuilles de style CSS"
 
 #: include/localized_schema.php:30
 msgid "Use feed-specified date to sort headlines instead of local import date."
-msgstr ""
-"Utiliser les dates spécifiées dans le flux pour trier les en-têtes au lieu "
-"des dates importées localement."
+msgstr "Utiliser les dates spécifiées dans le flux pour trier les en-têtes au lieu des dates importées localement."
 
 #: include/localized_schema.php:31
 msgid "Click to register your SSL client certificate with tt-rss"
@@ -1005,9 +1036,7 @@ msgstr "Sélectionnez un des thèmes CSS disponibles"
 
 #: include/localized_schema.php:34
 msgid "Purge articles after this number of days (0 - disables)"
-msgstr ""
-"Purger les articles plus vieux que le nombre de jours donné (0 pour ne "
-"jamais purger)"
+msgstr "Purger les articles plus vieux que le nombre de jours donné (0 pour ne jamais purger)"
 
 #: include/localized_schema.php:35
 msgid "Default interval between feed updates"
@@ -1053,7 +1082,8 @@ msgstr "Sauter automatiquement au flux suivant"
 msgid "Sort feeds by unread articles count"
 msgstr "Trier les flux par nombre d'articles non lus"
 
-#: include/localized_schema.php:46 plugins/mobile/prefs.php:60
+#: include/localized_schema.php:46
+#: plugins/mobile/prefs.php:60
 msgid "Reverse headline order (oldest first)"
 msgstr "Inverser l'order des en-têtes (les plus anciens en premier)"
 
@@ -1113,7 +1143,8 @@ msgstr "Activer les API externes"
 msgid "User timezone"
 msgstr "Fuseau horaire de l'utilisateur"
 
-#: include/localized_schema.php:61 js/prefs.js:1719
+#: include/localized_schema.php:61
+#: js/prefs.js:1725
 msgid "Customize stylesheet"
 msgstr "Personnaliser la feuille de style"
 
@@ -1137,12 +1168,15 @@ msgstr "Assigner des étiquettes aux articles automatiquement"
 msgid "Select theme"
 msgstr "Sélectionner un thème"
 
-#: include/login_form.php:183 classes/handler/public.php:460
-#: classes/handler/public.php:748 plugins/mobile/login_form.php:40
+#: include/login_form.php:183
+#: classes/handler/public.php:461
+#: classes/handler/public.php:749
+#: plugins/mobile/login_form.php:40
 msgid "Login:"
 msgstr "Identifiant :"
 
-#: include/login_form.php:192 classes/handler/public.php:463
+#: include/login_form.php:192
+#: classes/handler/public.php:464
 #: plugins/mobile/login_form.php:45
 msgid "Password:"
 msgstr "Mot de passe :"
@@ -1151,7 +1185,8 @@ msgstr "Mot de passe :"
 msgid "I forgot my password"
 msgstr "J'ai oublié mon mot de passe"
 
-#: include/login_form.php:201 classes/handler/public.php:466
+#: include/login_form.php:201
+#: classes/handler/public.php:467
 msgid "Language:"
 msgstr "Langue :"
 
@@ -1159,8 +1194,10 @@ msgstr "Langue :"
 msgid "Profile:"
 msgstr "Profil :"
 
-#: include/login_form.php:213 classes/handler/public.php:210
-#: classes/rpc.php:64 classes/dlg.php:98
+#: include/login_form.php:213
+#: classes/handler/public.php:211
+#: classes/rpc.php:64
+#: classes/pref/prefs.php:948
 msgid "Default profile"
 msgstr "Profil par défaut"
 
@@ -1172,428 +1209,245 @@ msgstr "Minimiser l'usage du trafic"
 msgid "Remember me"
 msgstr "Se souvenir de moi"
 
-#: include/login_form.php:235 classes/handler/public.php:476
+#: include/login_form.php:235
+#: classes/handler/public.php:477
 #: plugins/mobile/login_form.php:28
 msgid "Log in"
 msgstr "Se connecter"
 
+#: include/sessions.php:53
+msgid "Session failed to validate (incorrect IP)"
+msgstr "Echec de la validation de la session (adresse IP incorrecte)"
+
 #: classes/article.php:25
 msgid "Article not found."
 msgstr "Article non trouvé."
 
-#: classes/handler/public.php:401 plugins/bookmarklets/init.php:38
+#: classes/article.php:179
+msgid "Tags for this article (separated by commas):"
+msgstr "Tags pour cet article (séparés par des virgules) :"
+
+#: classes/article.php:204
+#: classes/pref/users.php:192
+#: classes/pref/labels.php:79
+#: classes/pref/filters.php:405
+#: classes/pref/prefs.php:894
+#: classes/pref/feeds.php:733
+#: classes/pref/feeds.php:881
+#: plugins/nsfw/init.php:86
+#: plugins/note/init.php:53
+#: plugins/instances/init.php:248
+msgid "Save"
+msgstr "Enregistrer"
+
+#: classes/article.php:206
+#: classes/handler/public.php:438
+#: classes/handler/public.php:480
+#: classes/feeds.php:1024
+#: classes/feeds.php:1076
+#: classes/feeds.php:1136
+#: classes/pref/users.php:194
+#: classes/pref/labels.php:81
+#: classes/pref/filters.php:408
+#: classes/pref/filters.php:804
+#: classes/pref/filters.php:880
+#: classes/pref/filters.php:947
+#: classes/pref/prefs.php:896
+#: classes/pref/feeds.php:734
+#: classes/pref/feeds.php:884
+#: classes/pref/feeds.php:1797
+#: plugins/mail/init.php:131
+#: plugins/note/init.php:55
+#: plugins/instances/init.php:251
+#: plugins/instances/init.php:440
+msgid "Cancel"
+msgstr "Annuler"
+
+#: classes/handler/public.php:402
+#: plugins/bookmarklets/init.php:38
 msgid "Share with Tiny Tiny RSS"
 msgstr "Partager avec Tiny Tiny RSS"
 
-#: classes/handler/public.php:409
+#: classes/handler/public.php:410
 msgid "Title:"
 msgstr "Titre :"
 
-#: classes/handler/public.php:411 classes/dlg.php:663
-#: classes/pref/feeds.php:537 classes/pref/feeds.php:768
+#: classes/handler/public.php:412
+#: classes/pref/feeds.php:538
+#: classes/pref/feeds.php:769
 #: plugins/instances/init.php:215
+#: plugins/instances/init.php:405
 msgid "URL:"
 msgstr "URL :"
 
-#: classes/handler/public.php:413
+#: classes/handler/public.php:414
 msgid "Content:"
 msgstr "Contenu :"
 
-#: classes/handler/public.php:415
+#: classes/handler/public.php:416
 msgid "Labels:"
 msgstr "Etiquettes :"
 
-#: classes/handler/public.php:434
+#: classes/handler/public.php:435
 msgid "Shared article will appear in the Published feed."
 msgstr "Les articles partagés apparaîtront dans le flux Publiés."
 
-#: classes/handler/public.php:436
+#: classes/handler/public.php:437
 msgid "Share"
 msgstr "Partager"
 
-#: classes/handler/public.php:437 classes/handler/public.php:479
-#: classes/dlg.php:296 classes/dlg.php:348 classes/dlg.php:408
-#: classes/dlg.php:439 classes/dlg.php:648 classes/dlg.php:698
-#: classes/dlg.php:747 classes/pref/users.php:194 classes/pref/labels.php:81
-#: classes/pref/filters.php:363 classes/pref/filters.php:746
-#: classes/pref/filters.php:822 classes/pref/filters.php:889
-#: classes/pref/feeds.php:733 classes/pref/feeds.php:883
-#: plugins/mail/init.php:131 plugins/note/init.php:55
-#: plugins/instances/init.php:251
-msgid "Cancel"
-msgstr "Annuler"
-
-#: classes/handler/public.php:458
+#: classes/handler/public.php:459
 msgid "Not logged in"
 msgstr "Non connecté"
 
-#: classes/handler/public.php:525
+#: classes/handler/public.php:526
 msgid "Incorrect username or password"
 msgstr "Identifiant ou mot de passe incorrect"
 
-#: classes/handler/public.php:561 classes/handler/public.php:658
+#: classes/handler/public.php:562
+#: classes/handler/public.php:659
 #, php-format
 msgid "Already subscribed to <b>%s</b>."
 msgstr "Déjà abonné à <b>%s</b>."
 
-#: classes/handler/public.php:564 classes/handler/public.php:649
+#: classes/handler/public.php:565
+#: classes/handler/public.php:650
 #, php-format
 msgid "Subscribed to <b>%s</b>."
 msgstr "Abonné à <b>%s</b>."
 
-#: classes/handler/public.php:567 classes/handler/public.php:652
+#: classes/handler/public.php:568
+#: classes/handler/public.php:653
 #, php-format
 msgid "Could not subscribe to <b>%s</b>."
 msgstr "Impossible de s'abonner à <b>%s</b>."
 
-#: classes/handler/public.php:570 classes/handler/public.php:655
+#: classes/handler/public.php:571
+#: classes/handler/public.php:656
 #, php-format
 msgid "No feeds found in <b>%s</b>."
 msgstr "Aucun flux trouvé dans <b>%s</b>."
 
-#: classes/handler/public.php:573 classes/handler/public.php:661
+#: classes/handler/public.php:574
+#: classes/handler/public.php:662
 msgid "Multiple feed URLs found."
 msgstr "Plusieurs flux trouvé."
 
-#: classes/handler/public.php:577 classes/handler/public.php:666
+#: classes/handler/public.php:578
+#: classes/handler/public.php:667
 #, php-format
 msgid "Could not subscribe to <b>%s</b>.<br>Can't download the Feed URL."
-msgstr ""
-"Impossible de s'abonner à <b>%s</b>.<br>Impossible de télécharger l'URL du "
-"flux."
+msgstr "Impossible de s'abonner à <b>%s</b>.<br>Impossible de télécharger l'URL du flux."
 
-#: classes/handler/public.php:595 classes/handler/public.php:684
+#: classes/handler/public.php:596
+#: classes/handler/public.php:685
 msgid "Subscribe to selected feed"
 msgstr "S'abonner au flux sélectionné"
 
-#: classes/handler/public.php:620 classes/handler/public.php:708
+#: classes/handler/public.php:621
+#: classes/handler/public.php:709
 msgid "Edit subscription options"
 msgstr "Modifier les options d'abonnement"
 
-#: classes/handler/public.php:735
+#: classes/handler/public.php:736
 msgid "Password recovery"
 msgstr "Récupération de mot de passe"
 
-#: classes/handler/public.php:741
-msgid ""
-"You will need to provide valid account name and email. New password will be "
-"sent on your email address."
-msgstr ""
-"Vous devrez fournir un nom et une adresse email valides. Le nouveau mot de "
-"passe sera envoyé à votre adresse email."
+#: classes/handler/public.php:742
+msgid "You will need to provide valid account name and email. New password will be sent on your email address."
+msgstr "Vous devrez fournir un nom et une adresse email valides. Le nouveau mot de passe sera envoyé à votre adresse email."
 
-#: classes/handler/public.php:763 classes/pref/users.php:378
+#: classes/handler/public.php:764
+#: classes/pref/users.php:378
 msgid "Reset password"
 msgstr "Réinitialiser le mot de passe"
 
-#: classes/handler/public.php:773
+#: classes/handler/public.php:774
 msgid "Some of the required form parameters are missing or incorrect."
 msgstr "Des paramètres du formulaire manquent ou sont invalides."
 
-#: classes/handler/public.php:777 classes/handler/public.php:803
+#: classes/handler/public.php:778
+#: classes/handler/public.php:804
 #: plugins/digest/digest_body.php:69
 msgid "Go back"
 msgstr "Revenir"
 
-#: classes/handler/public.php:799
+#: classes/handler/public.php:800
 msgid "Sorry, login and email combination not found."
 msgstr "Désolé, ce couple identifiant et mail n'a pas été trouvé."
 
-#: 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 ""
-"Si vous avez importé des étiquettes et/ou des filtres, vous devrez peut-être "
-"recharger les préférences pour voir les nouvelles données."
-
-#: classes/dlg.php:55 classes/pref/users.php:360 classes/pref/labels.php:272
-#: classes/pref/filters.php:234 classes/pref/filters.php:282
-#: classes/pref/filters.php:597 classes/pref/filters.php:676
-#: classes/pref/filters.php:703 classes/pref/feeds.php:1262
-#: classes/pref/feeds.php:1532 classes/pref/feeds.php:1602
-#: plugins/instances/init.php:287
-msgid "Select"
-msgstr "Sélectionner"
-
-#: classes/dlg.php:58 classes/feeds.php:92 classes/pref/users.php:363
-#: classes/pref/labels.php:275 classes/pref/filters.php:237
-#: classes/pref/filters.php:285 classes/pref/filters.php:600
-#: classes/pref/filters.php:679 classes/pref/filters.php:706
-#: classes/pref/feeds.php:1265 classes/pref/feeds.php:1535
-#: classes/pref/feeds.php:1605 plugins/instances/init.php:290
-msgid "All"
-msgstr "Tout"
+#: classes/dlg.php:16
+msgid "If you have imported labels and/or filters, you might need to reload preferences to see your new data."
+msgstr "Si vous avez importé des étiquettes et/ou des filtres, vous devrez peut-être recharger les préférences pour voir les nouvelles données."
 
-#: classes/dlg.php:60 classes/feeds.php:95 classes/pref/users.php:365
-#: classes/pref/labels.php:277 classes/pref/filters.php:239
-#: classes/pref/filters.php:287 classes/pref/filters.php:602
-#: classes/pref/filters.php:681 classes/pref/filters.php:708
-#: classes/pref/feeds.php:1267 classes/pref/feeds.php:1537
-#: classes/pref/feeds.php:1607 plugins/instances/init.php:292
-msgid "None"
-msgstr "Aucun"
-
-#: classes/dlg.php:69
-msgid "Create profile"
-msgstr "Création d'un profil"
-
-#: classes/dlg.php:92 classes/dlg.php:122
-msgid "(active)"
-msgstr "(actif)"
-
-#: classes/dlg.php:156
-msgid "Remove selected profiles"
-msgstr "Supprimer les profils sélectionnés"
-
-#: classes/dlg.php:158
-msgid "Activate profile"
-msgstr "Activer le profil"
-
-#: classes/dlg.php:168
-msgid "Public OPML URL"
-msgstr "URL OPML publique"
-
-#: classes/dlg.php:173
+#: classes/dlg.php:48
 msgid "Your Public OPML URL is:"
 msgstr "Votre URL OPML publique est :"
 
-#: classes/dlg.php:182 classes/dlg.php:569
+#: classes/dlg.php:57
+#: classes/dlg.php:214
 msgid "Generate new URL"
 msgstr "Générer une nouvelle URL"
 
-#: classes/dlg.php:194
-msgid "Notice"
-msgstr "Avertissement"
-
-#: 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 ""
-"Le démon de mise à jour est activé dans la configuration mais le processus "
-"n'est pas lancé et les flux ne sont donc pas mis à jour. Veuillez le "
-"démarrer ou contacter l'administrateur."
+#: classes/dlg.php:71
+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 "Le démon de mise à jour est activé dans la configuration mais le processus n'est pas lancé et les flux ne sont donc pas mis à jour. Veuillez le démarrer ou contacter l'administrateur."
 
-#: classes/dlg.php:204 classes/dlg.php:213
+#: classes/dlg.php:75
+#: classes/dlg.php:84
 msgid "Last update:"
 msgstr "Dernière mise à jour :"
 
-#: 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 ""
-"Le démon de mise à jour prend trop de temps pour effectuer une mise à jour "
-"de flux. Cela peut indiquer un problème comme un crash ou un suspension du "
-"processus. Veuillez vérifier son état ou bien contacter l'administrateur."
-
-#: classes/dlg.php:234 classes/dlg.php:242
-msgid "Feed or site URL"
-msgstr "URL du flux"
-
-#: classes/dlg.php:248 classes/dlg.php:711 classes/pref/feeds.php:559
-#: classes/pref/feeds.php:781
-msgid "Place in category:"
-msgstr "Placer dans la catégorie :"
-
-#: classes/dlg.php:256
-msgid "Available feeds"
-msgstr "Flux disponibles"
-
-#: classes/dlg.php:268 classes/pref/users.php:155 classes/pref/feeds.php:589
-#: classes/pref/feeds.php:817
-msgid "Authentication"
-msgstr "Identification"
-
-#: classes/dlg.php:272 classes/dlg.php:725 classes/pref/users.php:420
-#: classes/pref/feeds.php:595 classes/pref/feeds.php:821
-msgid "Login"
-msgstr "Se connecter"
-
-#: classes/dlg.php:275 classes/dlg.php:728 classes/pref/prefs.php:202
-#: classes/pref/feeds.php:601 classes/pref/feeds.php:827
-msgid "Password"
-msgstr "Mot de passe"
-
-#: classes/dlg.php:285
-msgid "This feed requires authentication."
-msgstr "Ce flux nécessite une identification."
-
-#: classes/dlg.php:290 classes/dlg.php:346 classes/dlg.php:746
-msgid "Subscribe"
-msgstr "S'abonner"
-
-#: classes/dlg.php:293
-msgid "More feeds"
-msgstr "D'autres flux"
-
-#: classes/dlg.php:316 classes/dlg.php:407 classes/pref/users.php:350
-#: classes/pref/filters.php:593 classes/pref/feeds.php:1258 js/tt-rss.js:170
-msgid "Search"
-msgstr "Rechercher"
-
-#: classes/dlg.php:320
-msgid "Popular feeds"
-msgstr "Flux populaires"
-
-#: classes/dlg.php:321
-msgid "Feed archive"
-msgstr "Archive du flux"
-
-#: classes/dlg.php:324
-msgid "limit:"
-msgstr "limite :"
-
-#: classes/dlg.php:347 classes/pref/users.php:376 classes/pref/labels.php:284
-#: classes/pref/filters.php:353 classes/pref/filters.php:615
-#: classes/pref/feeds.php:706 plugins/instances/init.php:297
-msgid "Remove"
-msgstr "Supprimer"
-
-#: classes/dlg.php:358
-msgid "Look for"
-msgstr "Rechercher"
-
-#: classes/dlg.php:366
-msgid "Limit search to:"
-msgstr "Restreindre la recherche à :"
-
-#: classes/dlg.php:382
-msgid "This feed"
-msgstr "Ce flux"
-
-#: classes/dlg.php:414
-msgid "Tags for this article (separated by commas):"
-msgstr "Tags pour cet article (séparés par des virgules) :"
-
-#: classes/dlg.php:437 classes/dlg.php:646 classes/pref/users.php:192
-#: classes/pref/labels.php:79 classes/pref/filters.php:360
-#: classes/pref/feeds.php:732 classes/pref/feeds.php:880
-#: plugins/nsfw/init.php:86 plugins/note/init.php:53
-#: plugins/instances/init.php:248
-msgid "Save"
-msgstr "Enregistrer"
-
-#: classes/dlg.php:445
-msgid "Tag Cloud"
-msgstr "Nuage d'étiquettes"
+#: classes/dlg.php:80
+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 "Le démon de mise à jour prend trop de temps pour effectuer une mise à jour de flux. Cela peut indiquer un problème comme un crash ou un suspension du processus. Veuillez vérifier son état ou bien contacter l'administrateur."
 
-#: classes/dlg.php:514
-msgid "Select item(s) by tags"
-msgstr "Sélectionner des éléments par tags"
-
-#: classes/dlg.php:517
+#: classes/dlg.php:166
 msgid "Match:"
 msgstr "Correspondance :"
 
-#: classes/dlg.php:519
+#: classes/dlg.php:168
 msgid "Any"
 msgstr "Au moins une"
 
-#: classes/dlg.php:522
+#: classes/dlg.php:171
 msgid "All tags."
 msgstr "Tous les tags."
 
-#: classes/dlg.php:524
+#: classes/dlg.php:173
 msgid "Which Tags?"
 msgstr "Quels tags ?"
 
-#: classes/dlg.php:537
+#: classes/dlg.php:186
 msgid "Display entries"
 msgstr "Afficher les entrées"
 
-#: classes/dlg.php:549 classes/feeds.php:138
-msgid "View as RSS"
-msgstr "Voir comme RSS"
-
-#: classes/dlg.php:560
+#: classes/dlg.php:205
 msgid "You can view this feed as RSS using the following URL:"
 msgstr "Vous pouvez consulter ce flux comme RSS en utilisant l'URL suivante :"
 
-#: classes/dlg.php:589 plugins/updater/init.php:327
+#: classes/dlg.php:233
+#: plugins/updater/init.php:327
 #, php-format
 msgid "New version of Tiny Tiny RSS is available (%s)."
 msgstr "Une nouvelle version de Tiny Tiny RSS est disponible (%s)."
 
-#: classes/dlg.php:597
-msgid ""
-"You can update using built-in updater in the Preferences or by using update."
-"php"
-msgstr ""
-"Vous pouvez mettre à jour depuis la Configuration ou en utilisant update.php"
+#: classes/dlg.php:241
+msgid "You can update using built-in updater in the Preferences or by using update.php"
+msgstr "Vous pouvez mettre à jour depuis la Configuration ou en utilisant update.php"
 
-#: classes/dlg.php:601 plugins/updater/init.php:331
+#: classes/dlg.php:245
+#: plugins/updater/init.php:331
 msgid "See the release notes"
 msgstr "Voir les notes de publication"
 
-#: classes/dlg.php:603
+#: classes/dlg.php:247
 msgid "Download"
 msgstr "Télécharger"
 
-#: classes/dlg.php:611
+#: classes/dlg.php:255
 msgid "Error receiving version information or no new version available."
-msgstr ""
-"Erreur de lecture de l'information de version ou aucune nouvelle version "
-"disponible."
-
-#: classes/dlg.php:631
-#, 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 ""
-"Vous pouvez redéfinir les couleurs, les polices et la mise en page du thème "
-"actuellement sélectionné à l'aide de vos propres instructions CSS ici. <a "
-"target=\"_blank\" class=\"visibleLink\" href=\"%s\">Ce fichier</a> peut être "
-"utilisé comme base de départ."
-
-#: classes/dlg.php:657 plugins/instances/init.php:207
-msgid "Instance"
-msgstr "Instance"
-
-#: classes/dlg.php:666 plugins/instances/init.php:218
-#: plugins/instances/init.php:315
-msgid "Instance URL"
-msgstr "URL de l'instance"
-
-#: classes/dlg.php:676 plugins/instances/init.php:229
-msgid "Access key:"
-msgstr "Clef d'accès :"
-
-#: classes/dlg.php:679 plugins/instances/init.php:232
-#: plugins/instances/init.php:316
-msgid "Access key"
-msgstr "Clef d'accès"
-
-#: classes/dlg.php:683 plugins/instances/init.php:236
-msgid "Use one access key for both linked instances."
-msgstr "Utilisez une clef d'accès pour les deux instances liées."
-
-#: classes/dlg.php:691 plugins/instances/init.php:244
-msgid "Generate new key"
-msgstr "Générer une nouvelle clef"
-
-#: classes/dlg.php:695
-msgid "Create link"
-msgstr "Créer un lien"
-
-#: classes/dlg.php:708
-msgid "Add one valid RSS feed per line (no feed detection is done)"
-msgstr ""
-"Ajoutez un flux RSS valide par ligne (aucune détection de flux n'est "
-"réalisée)"
-
-#: classes/dlg.php:717
-msgid "Feeds to subscribe, One per line"
-msgstr "Flux auxquels s'abonner, un par ligne"
-
-#: classes/dlg.php:739
-msgid "Feeds require authentication."
-msgstr "Les flux requièrent une identification."
+msgstr "Erreur de lecture de l'information de version ou aucune nouvelle version disponible."
 
 #: classes/feeds.php:68
 msgid "Visit the website"
@@ -1603,14 +1457,52 @@ msgstr "Visiter le site web"
 msgid "View as RSS feed"
 msgstr "Voir comme flux RSS"
 
+#: classes/feeds.php:84
+#: classes/feeds.php:138
+#: classes/pref/feeds.php:1440
+msgid "View as RSS"
+msgstr "Voir comme RSS"
+
 #: classes/feeds.php:91
 msgid "Select:"
 msgstr "Sélectionner :"
 
+#: classes/feeds.php:92
+#: classes/pref/users.php:363
+#: classes/pref/labels.php:275
+#: classes/pref/filters.php:282
+#: classes/pref/filters.php:330
+#: classes/pref/filters.php:648
+#: classes/pref/filters.php:737
+#: classes/pref/filters.php:764
+#: classes/pref/prefs.php:908
+#: classes/pref/feeds.php:1266
+#: classes/pref/feeds.php:1536
+#: classes/pref/feeds.php:1606
+#: plugins/instances/init.php:290
+msgid "All"
+msgstr "Tout"
+
 #: classes/feeds.php:94
 msgid "Invert"
 msgstr "Inverse"
 
+#: classes/feeds.php:95
+#: classes/pref/users.php:365
+#: classes/pref/labels.php:277
+#: classes/pref/filters.php:284
+#: classes/pref/filters.php:332
+#: classes/pref/filters.php:650
+#: classes/pref/filters.php:739
+#: classes/pref/filters.php:766
+#: classes/pref/prefs.php:910
+#: classes/pref/feeds.php:1268
+#: classes/pref/feeds.php:1538
+#: classes/pref/feeds.php:1608
+#: plugins/instances/init.php:292
+msgid "None"
+msgstr "Aucun"
+
 #: classes/feeds.php:101
 msgid "More..."
 msgstr "Plus..."
@@ -1635,13 +1527,17 @@ msgstr "Archive"
 msgid "Move back"
 msgstr "Revenir"
 
-#: classes/feeds.php:118 classes/pref/filters.php:246
-#: classes/pref/filters.php:294 classes/pref/filters.php:688
-#: classes/pref/filters.php:715
+#: classes/feeds.php:118
+#: classes/pref/filters.php:291
+#: classes/pref/filters.php:339
+#: classes/pref/filters.php:746
+#: classes/pref/filters.php:773
 msgid "Delete"
 msgstr "Supprimer"
 
-#: 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 "Transférer par email"
@@ -1650,7 +1546,8 @@ msgstr "Transférer par email"
 msgid "Feed:"
 msgstr "Flux :"
 
-#: classes/feeds.php:201 classes/feeds.php:827
+#: classes/feeds.php:201
+#: classes/feeds.php:827
 msgid "Feed not found."
 msgstr "Flux non trouvé."
 
@@ -1680,37 +1577,127 @@ msgid "No starred articles found to display."
 msgstr "Aucun article remarquable à afficher."
 
 #: classes/feeds.php:738
-msgid ""
-"No articles found to display. You can assign articles to labels manually "
-"(see the Actions menu above) or use a filter."
-msgstr ""
-"Aucun article à afficher. Vous pouvez assigner des étiquettes aux articles "
-"manuellement (voir les actions du menu ci-dessus) ou utiliser un filtre."
+msgid "No articles found to display. You can assign articles to labels manually (see the Actions menu above) or use a filter."
+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:740
 msgid "No articles found to display."
 msgstr "Aucun article à afficher."
 
-#: classes/feeds.php:755 classes/feeds.php:920
+#: classes/feeds.php:755
+#: classes/feeds.php:919
 #, php-format
 msgid "Feeds last updated at %s"
 msgstr "Flux mis à jour à %s"
 
-#: classes/feeds.php:765 classes/feeds.php:930
+#: classes/feeds.php:765
+#: classes/feeds.php:929
 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)"
+msgstr "Des erreurs sont survenues pendant la mise à jour de certains flux (cliquer ici pour les détails)"
 
-#: classes/feeds.php:910
+#: classes/feeds.php:909
 msgid "No feed selected."
 msgstr "Aucun flux sélectionné."
 
+#: classes/feeds.php:962
+#: classes/feeds.php:970
+msgid "Feed or site URL"
+msgstr "URL du flux"
+
+#: classes/feeds.php:976
+#: classes/pref/feeds.php:560
+#: classes/pref/feeds.php:782
+#: classes/pref/feeds.php:1761
+msgid "Place in category:"
+msgstr "Placer dans la catégorie :"
+
+#: classes/feeds.php:984
+msgid "Available feeds"
+msgstr "Flux disponibles"
+
+#: classes/feeds.php:996
+#: classes/pref/users.php:155
+#: classes/pref/feeds.php:590
+#: classes/pref/feeds.php:818
+msgid "Authentication"
+msgstr "Identification"
+
+#: classes/feeds.php:1000
+#: classes/pref/users.php:420
+#: classes/pref/feeds.php:596
+#: classes/pref/feeds.php:822
+#: classes/pref/feeds.php:1775
+msgid "Login"
+msgstr "Se connecter"
+
+#: classes/feeds.php:1003
+#: classes/pref/prefs.php:202
+#: classes/pref/feeds.php:602
+#: classes/pref/feeds.php:828
+#: classes/pref/feeds.php:1778
+msgid "Password"
+msgstr "Mot de passe"
+
+#: classes/feeds.php:1013
+msgid "This feed requires authentication."
+msgstr "Ce flux nécessite une identification."
+
+#: classes/feeds.php:1018
+#: classes/feeds.php:1074
+#: classes/pref/feeds.php:1796
+msgid "Subscribe"
+msgstr "S'abonner"
+
+#: classes/feeds.php:1021
+msgid "More feeds"
+msgstr "D'autres flux"
+
+#: classes/feeds.php:1044
+#: classes/feeds.php:1135
+#: classes/pref/users.php:350
+#: classes/pref/filters.php:641
+#: classes/pref/feeds.php:1259
+#: js/tt-rss.js:170
+msgid "Search"
+msgstr "Rechercher"
+
+#: classes/feeds.php:1048
+msgid "Popular feeds"
+msgstr "Flux populaires"
+
+#: classes/feeds.php:1049
+msgid "Feed archive"
+msgstr "Archive du flux"
+
+#: classes/feeds.php:1052
+msgid "limit:"
+msgstr "limite :"
+
+#: classes/feeds.php:1075
+#: classes/pref/users.php:376
+#: classes/pref/labels.php:284
+#: classes/pref/filters.php:398
+#: classes/pref/filters.php:667
+#: classes/pref/feeds.php:707
+#: plugins/instances/init.php:297
+msgid "Remove"
+msgstr "Supprimer"
+
+#: classes/feeds.php:1086
+msgid "Look for"
+msgstr "Rechercher"
+
+#: classes/feeds.php:1094
+msgid "Limit search to:"
+msgstr "Restreindre la recherche à :"
+
+#: classes/feeds.php:1110
+msgid "This feed"
+msgstr "Ce flux"
+
 #: classes/backend.php:33
 msgid "Other interface tips are available in the Tiny Tiny RSS wiki."
-msgstr ""
-"D'autres astuces sur l'interface sont disponibles sur le wiki de Tiny Tiny "
-"RSS."
+msgstr "D'autres astuces sur l'interface sont disponibles sur le wiki de Tiny Tiny RSS."
 
 #: classes/backend.php:38
 msgid "Keyboard Shortcuts"
@@ -1728,7 +1715,8 @@ msgstr "Ctrl"
 msgid "Help topic not found."
 msgstr "Sujet non trouvé dans l'aide."
 
-#: classes/opml.php:28 classes/opml.php:33
+#: classes/opml.php:28
+#: classes/opml.php:33
 msgid "OPML Utility"
 msgstr "Outil OPML"
 
@@ -1778,11 +1766,13 @@ msgstr "Placer dans la catégorie : %s"
 msgid "Error: please upload OPML file."
 msgstr "Erreur : veuillez envoyer un document OPML."
 
-#: classes/opml.php:475 plugins/googlereaderimport/init.php:157
+#: classes/opml.php:475
+#: plugins/googlereaderimport/init.php:161
 msgid "Error while parsing document."
 msgstr "Erreur lors de l'analyse du document."
 
-#: 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 "Vous n'avez pas les permissions nécessaires pour ouvrir cet onglet."
 
@@ -1794,7 +1784,8 @@ msgstr "Détails de l'utilisateur"
 msgid "User not found"
 msgstr "Utilisateur non trouvé"
 
-#: classes/pref/users.php:60 classes/pref/users.php:422
+#: classes/pref/users.php:60
+#: classes/pref/users.php:422
 msgid "Registered"
 msgstr "Inscrit"
 
@@ -1822,8 +1813,9 @@ msgstr "Permissions : "
 msgid "Change password to"
 msgstr "Nouveau mot de passe"
 
-#: classes/pref/users.php:177 classes/pref/feeds.php:609
-#: classes/pref/feeds.php:833
+#: classes/pref/users.php:177
+#: classes/pref/feeds.php:610
+#: classes/pref/feeds.php:834
 msgid "Options"
 msgstr "Options"
 
@@ -1860,6 +1852,21 @@ msgstr "Envoi du mot de passe de <b>%s</b> à <b>%s</b>"
 msgid "[tt-rss] Password change notification"
 msgstr "[tt-rss] Notification de changement de mot passe"
 
+#: classes/pref/users.php:360
+#: classes/pref/labels.php:272
+#: classes/pref/filters.php:279
+#: classes/pref/filters.php:327
+#: classes/pref/filters.php:645
+#: classes/pref/filters.php:734
+#: classes/pref/filters.php:761
+#: classes/pref/prefs.php:905
+#: classes/pref/feeds.php:1263
+#: classes/pref/feeds.php:1533
+#: classes/pref/feeds.php:1603
+#: plugins/instances/init.php:287
+msgid "Select"
+msgstr "Sélectionner"
+
 #: classes/pref/users.php:368
 msgid "Create user"
 msgstr "Créer l'utilisateur"
@@ -1868,7 +1875,8 @@ msgstr "Créer l'utilisateur"
 msgid "Details"
 msgstr "Détails"
 
-#: classes/pref/users.php:374 classes/pref/filters.php:612
+#: classes/pref/users.php:374
+#: classes/pref/filters.php:660
 #: plugins/instances/init.php:296
 msgid "Edit"
 msgstr "Modifier"
@@ -1881,7 +1889,8 @@ msgstr "Permissions"
 msgid "Last login"
 msgstr "Dernière connexion"
 
-#: classes/pref/users.php:444 plugins/instances/init.php:337
+#: classes/pref/users.php:444
+#: plugins/instances/init.php:337
 msgid "Click to edit"
 msgstr "Cliquer pour modifier"
 
@@ -1894,6 +1903,8 @@ msgid "No matching users found."
 msgstr "Aucun utilisateur correspondant trouvé."
 
 #: classes/pref/labels.php:22
+#: classes/pref/filters.php:268
+#: classes/pref/filters.php:725
 msgid "Caption"
 msgstr "Légende"
 
@@ -1918,110 +1929,128 @@ msgstr "Etiquette <b>%s</b> créé"
 msgid "Clear colors"
 msgstr "Ré-initialiser les couleurs"
 
-#: classes/pref/filters.php:60
+#: classes/pref/filters.php:96
 msgid "Articles matching this filter:"
 msgstr "Articles correspondant à ce filtre :"
 
-#: classes/pref/filters.php:97
+#: classes/pref/filters.php:133
 msgid "No recent articles matching this filter have been found."
 msgstr "Aucun article récent correspondant à ce filtre."
 
-#: classes/pref/filters.php:101
-msgid ""
-"Complex expressions might not give results while testing due to issues with "
-"database server regexp implementation."
-msgstr ""
-"Les expressions complexes risquent de ne pas avoir de résulats dans les "
-"tests à cause de problèmes avec le serveur."
+#: classes/pref/filters.php:137
+msgid "Complex expressions might not give results while testing due to issues with database server regexp implementation."
+msgstr "Les expressions complexes risquent de ne pas avoir de résulats dans les tests à cause de problèmes avec le serveur."
 
-#: classes/pref/filters.php:229 classes/pref/filters.php:671
-#: classes/pref/filters.php:786
+#: classes/pref/filters.php:274
+#: classes/pref/filters.php:729
+#: classes/pref/filters.php:844
 msgid "Match"
 msgstr "Correspondance"
 
-#: classes/pref/filters.php:243 classes/pref/filters.php:291
-#: classes/pref/filters.php:685 classes/pref/filters.php:712
+#: classes/pref/filters.php:288
+#: classes/pref/filters.php:336
+#: classes/pref/filters.php:743
+#: classes/pref/filters.php:770
 msgid "Add"
 msgstr "Ajouter"
 
-#: classes/pref/filters.php:277 classes/pref/filters.php:698
+#: classes/pref/filters.php:322
+#: classes/pref/filters.php:756
 msgid "Apply actions"
 msgstr "Actions éffectuées"
 
-#: classes/pref/filters.php:327 classes/pref/filters.php:727
+#: classes/pref/filters.php:372
+#: classes/pref/filters.php:785
 msgid "Enabled"
 msgstr "Activé"
 
-#: classes/pref/filters.php:336 classes/pref/filters.php:730
+#: classes/pref/filters.php:381
+#: classes/pref/filters.php:788
 msgid "Match any rule"
 msgstr "Au moins une correspondance"
 
-#: classes/pref/filters.php:345 classes/pref/filters.php:733
+#: classes/pref/filters.php:390
+#: classes/pref/filters.php:791
 msgid "Inverse matching"
 msgstr "Correspondance inverse"
 
-#: classes/pref/filters.php:357 classes/pref/filters.php:740
+#: classes/pref/filters.php:402
+#: classes/pref/filters.php:798
 msgid "Test"
 msgstr "Test"
 
-#: classes/pref/filters.php:390
+#: classes/pref/filters.php:435
 msgid "(inverse)"
 msgstr "(inversé)"
 
-#: classes/pref/filters.php:389
+#: classes/pref/filters.php:434
 #, php-format
 msgid "%s on %s in %s %s"
 msgstr "%s sur %s dans %s %s"
 
-#: classes/pref/filters.php:609
+#: classes/pref/filters.php:657
 msgid "Combine"
 msgstr "Comhiner"
 
-#: classes/pref/filters.php:619 classes/pref/feeds.php:1317
+#: classes/pref/filters.php:663
+#: classes/pref/feeds.php:1279
+#: classes/pref/feeds.php:1293
+msgid "Reset sort order"
+msgstr "Réinitialiser le critère de tri"
+
+#: classes/pref/filters.php:671
+#: classes/pref/feeds.php:1318
 msgid "Rescore articles"
 msgstr "Recalculer le score des articles"
 
-#: classes/pref/filters.php:743
+#: classes/pref/filters.php:801
 msgid "Create"
 msgstr "Créer"
 
-#: classes/pref/filters.php:798
+#: classes/pref/filters.php:856
 msgid "Inverse regular expression matching"
 msgstr "Inverser le résultat de l'expression rationnelle"
 
-#: classes/pref/filters.php:800
+#: classes/pref/filters.php:858
 msgid "on field"
 msgstr "sur le champ"
 
-#: classes/pref/filters.php:806 js/PrefFilterTree.js:29
+#: classes/pref/filters.php:864
+#: js/PrefFilterTree.js:45
 #: plugins/digest/digest.js:242
 msgid "in"
 msgstr "dans"
 
-#: classes/pref/filters.php:819
+#: classes/pref/filters.php:877
 msgid "Save rule"
 msgstr "Enregistrer"
 
-#: classes/pref/filters.php:819 js/functions.js:1069
+#: classes/pref/filters.php:877
+#: js/functions.js:1063
 msgid "Add rule"
 msgstr "Ajouter une règle"
 
-#: classes/pref/filters.php:842
+#: classes/pref/filters.php:900
 msgid "Perform Action"
 msgstr "Exécuter l'action"
 
-#: classes/pref/filters.php:868
+#: classes/pref/filters.php:926
 msgid "with parameters:"
 msgstr "avec les paramètres :"
 
-#: classes/pref/filters.php:886
+#: classes/pref/filters.php:944
 msgid "Save action"
 msgstr "Enregistrer"
 
-#: classes/pref/filters.php:886 js/functions.js:1095
+#: classes/pref/filters.php:944
+#: js/functions.js:1089
 msgid "Add action"
 msgstr "Ajouter une action"
 
+#: classes/pref/filters.php:967
+msgid "[No caption]"
+msgstr "[Pas de titre]"
+
 #: classes/pref/prefs.php:17
 msgid "Old password cannot be blank."
 msgstr "L'ancien mot de passe ne peut pas être vide."
@@ -2081,9 +2110,7 @@ msgstr "Votre mot de passe est celui par défaut, veuillez le modifier."
 
 #: classes/pref/prefs.php:236
 msgid "Changing your current password will disable OTP."
-msgstr ""
-"Changer votre mot de passe actuel désactivera les mots de passe à usage "
-"unique."
+msgstr "Changer votre mot de passe actuel désactivera les mots de passe à usage unique."
 
 #: classes/pref/prefs.php:241
 msgid "Old password"
@@ -2106,14 +2133,11 @@ msgid "One time passwords / Authenticator"
 msgstr "Mots de passe à usage unique / Identificateur"
 
 #: classes/pref/prefs.php:269
-msgid ""
-"One time passwords are currently enabled. Enter your current password below "
-"to disable."
-msgstr ""
-"Les mots de passe à usage unique sont actuellement activés. Entrez votre mot "
-"de passe actuel ci-dessous pour les désactiver."
+msgid "One time passwords are currently enabled. Enter your current password below to disable."
+msgstr "Les mots de passe à usage unique sont actuellement activés. Entrez votre mot de passe actuel ci-dessous pour les désactiver."
 
-#: 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 "Entrez votre mot de passe"
 
@@ -2122,12 +2146,8 @@ msgid "Disable OTP"
 msgstr "Désactiver les mots de passe à usage unique"
 
 #: classes/pref/prefs.php:311
-msgid ""
-"You will need a compatible Authenticator to use this. Changing your password "
-"would automatically disable OTP."
-msgstr ""
-"Vous aurez besoin d'un Identificateur compatible pour utiliser ceci. Changer "
-"votre mot de passe le désactivera automatiquement."
+msgid "You will need a compatible Authenticator to use this. Changing your password would automatically disable OTP."
+msgstr "Vous aurez besoin d'un Identificateur compatible pour utiliser ceci. Changer votre mot de passe le désactivera automatiquement."
 
 #: classes/pref/prefs.php:313
 msgid "Scan the following code by the Authenticator application:"
@@ -2135,8 +2155,7 @@ msgstr "Scanner le code suivant avec l'application identificateur :"
 
 #: classes/pref/prefs.php:354
 msgid "I have scanned the code and would like to enable OTP"
-msgstr ""
-"J'ai scanné le code et je veux activer les mots de passe à usage unique"
+msgstr "J'ai scanné le code et je veux activer les mots de passe à usage unique"
 
 #: classes/pref/prefs.php:362
 msgid "Enable OTP"
@@ -2175,54 +2194,50 @@ msgstr "Gérer les profils"
 msgid "Reset to defaults"
 msgstr "Revenir aux valeurs par défaut"
 
-#: classes/pref/prefs.php:631 classes/pref/prefs.php:633
+#: classes/pref/prefs.php:631
+#: classes/pref/prefs.php:633
 msgid "Plugins"
 msgstr "Plugins"
 
 #: classes/pref/prefs.php:635
-msgid ""
-"You will need to reload Tiny Tiny RSS for plugin changes to take effect."
-msgstr ""
-"Vous devrez relancer Tiny Tiny RSS pour que les changements apportés aux "
-"plugins prennent effet."
+msgid "You will need to reload Tiny Tiny RSS for plugin changes to take effect."
+msgstr "Vous devrez relancer Tiny Tiny RSS pour que les changements apportés aux plugins prennent effet."
 
 #: classes/pref/prefs.php:637
-msgid ""
-"Download more plugins at tt-rss.org <a class=\"visibleLink\" target=\"_blank"
-"\" href=\"http://tt-rss.org/forum/viewforum.php?f=22\">forums</a> or <a "
-"target=\"_blank\" class=\"visibleLink\" href=\"http://tt-rss.org/wiki/Plugins"
-"\">wiki</a>."
-msgstr ""
-"Téléchargez plus de plugins sur <a class=\"visibleLink\" target=\"_blank\" "
-"href=\"http://tt-rss.org/forum/viewforum.php?f=22\">le forum</a> ou <a "
-"target=\"_blank\" class=\"visibleLink\" href=\"http://tt-rss.org/wiki/Plugins"
-"\">le wiki</a> de Tiny Tiny RSS."
+msgid "Download more plugins at tt-rss.org <a class=\"visibleLink\" target=\"_blank\" href=\"http://tt-rss.org/forum/viewforum.php?f=22\">forums</a> or <a target=\"_blank\" class=\"visibleLink\" href=\"http://tt-rss.org/wiki/Plugins\">wiki</a>."
+msgstr "Téléchargez plus de plugins sur <a class=\"visibleLink\" target=\"_blank\" href=\"http://tt-rss.org/forum/viewforum.php?f=22\">le forum</a> ou <a target=\"_blank\" class=\"visibleLink\" href=\"http://tt-rss.org/wiki/Plugins\">le wiki</a> de Tiny Tiny RSS."
 
 #: classes/pref/prefs.php:663
 msgid "System plugins"
 msgstr "Plugins systèmes"
 
-#: classes/pref/prefs.php:667 classes/pref/prefs.php:721
+#: classes/pref/prefs.php:667
+#: classes/pref/prefs.php:721
 msgid "Plugin"
 msgstr "Plugin"
 
-#: classes/pref/prefs.php:668 classes/pref/prefs.php:722
+#: classes/pref/prefs.php:668
+#: classes/pref/prefs.php:722
 msgid "Description"
 msgstr "Description"
 
-#: classes/pref/prefs.php:669 classes/pref/prefs.php:723
+#: classes/pref/prefs.php:669
+#: classes/pref/prefs.php:723
 msgid "Version"
 msgstr "Version"
 
-#: classes/pref/prefs.php:670 classes/pref/prefs.php:724
+#: classes/pref/prefs.php:670
+#: classes/pref/prefs.php:724
 msgid "Author"
 msgstr "Auteur"
 
-#: classes/pref/prefs.php:699 classes/pref/prefs.php:756
+#: classes/pref/prefs.php:699
+#: classes/pref/prefs.php:756
 msgid "more info"
 msgstr "plus d'info"
 
-#: classes/pref/prefs.php:708 classes/pref/prefs.php:765
+#: classes/pref/prefs.php:708
+#: classes/pref/prefs.php:765
 msgid "Clear data"
 msgstr "Purger les données"
 
@@ -2234,266 +2249,272 @@ msgstr "Plugins utilisateur"
 msgid "Enable selected plugins"
 msgstr "Activer les plugins sélectionnés"
 
-#: classes/pref/prefs.php:835 classes/pref/prefs.php:853
+#: classes/pref/prefs.php:835
+#: classes/pref/prefs.php:853
 msgid "Incorrect password"
 msgstr "Mot de passe incorrect"
 
-#: classes/pref/feeds.php:12
+#: classes/pref/prefs.php:879
+#, 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 "Vous pouvez redéfinir les couleurs, les polices et la mise en page du thème actuellement sélectionné à l'aide de vos propres instructions CSS ici. <a target=\"_blank\" class=\"visibleLink\" href=\"%s\">Ce fichier</a> peut être utilisé comme base de départ."
+
+#: classes/pref/prefs.php:919
+msgid "Create profile"
+msgstr "Création d'un profil"
+
+#: classes/pref/prefs.php:942
+#: classes/pref/prefs.php:972
+msgid "(active)"
+msgstr "(actif)"
+
+#: classes/pref/prefs.php:1006
+msgid "Remove selected profiles"
+msgstr "Supprimer les profils sélectionnés"
+
+#: classes/pref/prefs.php:1008
+msgid "Activate profile"
+msgstr "Activer le profil"
+
+#: classes/pref/feeds.php:13
 msgid "Check to enable field"
 msgstr "Cocher pour activer le champ"
 
-#: classes/pref/feeds.php:60 classes/pref/feeds.php:208
-#: classes/pref/feeds.php:250 classes/pref/feeds.php:256
-#: classes/pref/feeds.php:281
-#, php-format
-msgid "(%d feed)"
-msgid_plural "(%d feeds)"
-msgstr[0] "(%d flux)"
-msgstr[1] "(%d flux)"
-
-#: classes/pref/feeds.php:526
+#: classes/pref/feeds.php:527
 msgid "Feed Title"
 msgstr "Titre du flux"
 
-#: classes/pref/feeds.php:582 classes/pref/feeds.php:808
+#: classes/pref/feeds.php:568
+#: classes/pref/feeds.php:793
+msgid "Update"
+msgstr "Mettre à jour"
+
+#: classes/pref/feeds.php:583
+#: classes/pref/feeds.php:809
 msgid "Article purging:"
 msgstr "Purge des articles :"
 
-#: classes/pref/feeds.php:605
-msgid ""
-"<b>Hint:</b> you need to fill in your login information if your feed "
-"requires authentication, except for Twitter feeds."
-msgstr ""
-"<b>Astuce :</b> vous devez renseigner vos informations d'identification si "
-"le flux nécessite une authentification, sauf pour les flux Twitter."
+#: classes/pref/feeds.php:606
+msgid "<b>Hint:</b> you need to fill in your login information if your feed requires authentication, except for Twitter feeds."
+msgstr "<b>Astuce :</b> vous devez renseigner vos informations d'identification si le flux nécessite une authentification, sauf pour les flux Twitter."
 
-#: classes/pref/feeds.php:621 classes/pref/feeds.php:837
+#: classes/pref/feeds.php:622
+#: classes/pref/feeds.php:838
 msgid "Hide from Popular feeds"
 msgstr "Masquer dans la liste des flux populaires"
 
-#: classes/pref/feeds.php:633 classes/pref/feeds.php:843
+#: classes/pref/feeds.php:634
+#: classes/pref/feeds.php:844
 msgid "Include in e-mail digest"
 msgstr "Inclure dans la synthèse quotidienne par courrier électronique"
 
-#: classes/pref/feeds.php:646 classes/pref/feeds.php:849
+#: classes/pref/feeds.php:647
+#: classes/pref/feeds.php:850
 msgid "Always display image attachments"
 msgstr "Toujours afficher les images jointes"
 
-#: classes/pref/feeds.php:659 classes/pref/feeds.php:857
+#: classes/pref/feeds.php:660
+#: classes/pref/feeds.php:858
 msgid "Do not embed images"
 msgstr "Ne pas intégrer les images"
 
-#: classes/pref/feeds.php:672 classes/pref/feeds.php:865
+#: classes/pref/feeds.php:673
+#: classes/pref/feeds.php:866
 msgid "Cache images locally"
 msgstr "Enregistrer localement les images"
 
-#: classes/pref/feeds.php:684 classes/pref/feeds.php:871
+#: classes/pref/feeds.php:685
+#: classes/pref/feeds.php:872
 msgid "Mark updated articles as unread"
 msgstr "Marquer les article mis à jour comme non lus"
 
-#: classes/pref/feeds.php:690
+#: classes/pref/feeds.php:691
 msgid "Icon"
 msgstr "Icône"
 
-#: classes/pref/feeds.php:704
+#: classes/pref/feeds.php:705
 msgid "Replace"
 msgstr "Remplacer"
 
-#: classes/pref/feeds.php:723
+#: classes/pref/feeds.php:724
 msgid "Resubscribe to push updates"
 msgstr "Réinscription aux mises à jour en push"
 
-#: classes/pref/feeds.php:730
+#: classes/pref/feeds.php:731
 msgid "Resets PubSubHubbub subscription status for push-enabled feeds."
-msgstr ""
-"Réinitialiser l'état de l'inscription PubSubHubbub pour les flux en mise à "
-"jour push."
+msgstr "Réinitialiser l'état de l'inscription PubSubHubbub pour les flux en mise à jour push."
 
-#: classes/pref/feeds.php:1111 classes/pref/feeds.php:1164
+#: classes/pref/feeds.php:1112
+#: classes/pref/feeds.php:1165
 msgid "All done."
 msgstr "Tout est terminé."
 
-#: classes/pref/feeds.php:1219
+#: classes/pref/feeds.php:1220
 msgid "Feeds with errors"
 msgstr "Flux avec des erreurs"
 
-#: classes/pref/feeds.php:1239
+#: classes/pref/feeds.php:1240
 msgid "Inactive feeds"
 msgstr "Flux inactifs"
 
-#: classes/pref/feeds.php:1276
+#: classes/pref/feeds.php:1277
 msgid "Edit selected feeds"
 msgstr "Modifier les flux sélectionnés"
 
-#: classes/pref/feeds.php:1278 classes/pref/feeds.php:1292
-msgid "Reset sort order"
-msgstr "Réinitialiser le critère de tri"
-
-#: classes/pref/feeds.php:1280 js/prefs.js:1764
+#: classes/pref/feeds.php:1281
+#: js/prefs.js:1770
 msgid "Batch subscribe"
 msgstr "Abonnement par lots"
 
-#: classes/pref/feeds.php:1285
+#: classes/pref/feeds.php:1286
 msgid "Categories"
 msgstr "Catégories"
 
-#: classes/pref/feeds.php:1288
+#: classes/pref/feeds.php:1289
 msgid "Add category"
 msgstr "Ajouter une catégorie"
 
-#: classes/pref/feeds.php:1290
+#: classes/pref/feeds.php:1291
 msgid "(Un)hide empty categories"
 msgstr "Masquer/afficher les catégories vides"
 
-#: classes/pref/feeds.php:1294
+#: classes/pref/feeds.php:1295
 msgid "Remove selected"
 msgstr "Supprimer les flux sélectionnés"
 
-#: classes/pref/feeds.php:1308
+#: classes/pref/feeds.php:1309
 msgid "More actions..."
 msgstr "Autres actions..."
 
-#: classes/pref/feeds.php:1312
+#: classes/pref/feeds.php:1313
 msgid "Manual purge"
 msgstr "Purger manuellement"
 
-#: classes/pref/feeds.php:1316
+#: classes/pref/feeds.php:1317
 msgid "Clear feed data"
 msgstr "Purger les données de flux"
 
-#: classes/pref/feeds.php:1367
+#: classes/pref/feeds.php:1368
 msgid "OPML"
 msgstr "OPML"
 
-#: classes/pref/feeds.php:1369
-msgid ""
-"Using OPML you can export and import your feeds, filters, labels and Tiny "
-"Tiny RSS settings."
-msgstr ""
-"Avec OPML, vous pouvez exporter et importer vos flux, filtrer, étiquettes et "
-"réglages de Tiny Tiny RSS."
+#: classes/pref/feeds.php:1370
+msgid "Using OPML you can export and import your feeds, filters, labels and Tiny Tiny RSS settings."
+msgstr "Avec OPML, vous pouvez exporter et importer vos flux, filtrer, étiquettes et réglages de Tiny Tiny RSS."
 
-#: classes/pref/feeds.php:1371
+#: classes/pref/feeds.php:1372
 msgid "Only main settings profile can be migrated using OPML."
-msgstr ""
-"Seul le profil de réglages principal peut être migré en utilisant OPML."
+msgstr "Seul le profil de réglages principal peut être migré en utilisant OPML."
 
-#: classes/pref/feeds.php:1384
+#: classes/pref/feeds.php:1385
 msgid "Import my OPML"
 msgstr "Importer mon OPML"
 
-#: classes/pref/feeds.php:1388
+#: classes/pref/feeds.php:1389
 msgid "Filename:"
 msgstr "Nom du fichier :"
 
-#: classes/pref/feeds.php:1390
+#: classes/pref/feeds.php:1391
 msgid "Include settings"
 msgstr "Inclure les paramètres"
 
-#: classes/pref/feeds.php:1394
+#: classes/pref/feeds.php:1395
 msgid "Export OPML"
 msgstr "Exporter en OPML"
 
-#: classes/pref/feeds.php:1398
-msgid ""
-"Your OPML can be published publicly and can be subscribed by anyone who "
-"knows the URL below."
-msgstr ""
-"Votre fichier OPML peut être publié et toute personne qui connaît l'adresse "
-"indiquée ci-dessous peut s'y abonner."
+#: classes/pref/feeds.php:1399
+msgid "Your OPML can be published publicly and can be subscribed by anyone who knows the URL below."
+msgstr "Votre fichier OPML peut être publié et toute personne qui connaît l'adresse indiquée ci-dessous peut s'y abonner."
 
-#: classes/pref/feeds.php:1400
-msgid ""
-"Published OPML does not include your Tiny Tiny RSS settings, feeds that "
-"require authentication or feeds hidden from Popular feeds."
-msgstr ""
-"Les OPML publiés n'incluent pas vos réglages de Tiny Tiny RSS, les flux qui "
-"nécessitent une authentification, ou les flux cachés des Flux Populaires."
+#: classes/pref/feeds.php:1401
+msgid "Published OPML does not include your Tiny Tiny RSS settings, feeds that require authentication or feeds hidden from Popular feeds."
+msgstr "Les OPML publiés n'incluent pas vos réglages de Tiny Tiny RSS, les flux qui nécessitent une authentification, ou les flux cachés des Flux Populaires."
 
 #: classes/pref/feeds.php:1403
+msgid "Public OPML URL"
+msgstr "URL OPML publique"
+
+#: classes/pref/feeds.php:1404
 msgid "Display published OPML URL"
 msgstr "Afficher l'URL de l'OPML public"
 
-#: classes/pref/feeds.php:1413
+#: classes/pref/feeds.php:1414
 msgid "Firefox integration"
 msgstr "Intégration à Firefox"
 
-#: classes/pref/feeds.php:1415
-msgid ""
-"This Tiny Tiny RSS site can be used as a Firefox Feed Reader by clicking the "
-"link below."
-msgstr ""
-"Ce site Tiny Tiny RSS peut être utilisé comme lecteur de flux dans Firefox "
-"en cliquant sur le lien ci-dessous."
+#: classes/pref/feeds.php:1416
+msgid "This Tiny Tiny RSS site can be used as a Firefox Feed Reader by clicking the link below."
+msgstr "Ce site Tiny Tiny RSS peut être utilisé comme lecteur de flux dans Firefox en cliquant sur le lien ci-dessous."
 
-#: classes/pref/feeds.php:1422
+#: classes/pref/feeds.php:1423
 msgid "Click here to register this site as a feed reader."
 msgstr "Cliquer ici pour enregistrer ce site comme lecteur de flux."
 
-#: classes/pref/feeds.php:1430
+#: classes/pref/feeds.php:1431
 msgid "Published & shared articles / Generated feeds"
 msgstr "Articles publiés et partagés / Flux générés"
 
-#: classes/pref/feeds.php:1432
+#: classes/pref/feeds.php:1433
 msgid "Published articles and generated feeds"
 msgstr "Articles publiés et flux générés"
 
-#: classes/pref/feeds.php:1434
-msgid ""
-"Published articles are exported as a public RSS feed and can be subscribed "
-"by anyone who knows the URL specified below."
-msgstr ""
-"Les articles publiés sont exportés comme un flux RSS public et toute "
-"personne qui connaît l'adresse indiquée ci-dessous peut s'y abonner."
+#: classes/pref/feeds.php:1435
+msgid "Published articles are exported as a public RSS feed and can be subscribed by anyone who knows the URL specified below."
+msgstr "Les articles publiés sont exportés comme un flux RSS public et toute personne qui connaît l'adresse indiquée ci-dessous peut s'y abonner."
 
-#: classes/pref/feeds.php:1440
+#: classes/pref/feeds.php:1441
 msgid "Display URL"
 msgstr "Afficher l'URL"
 
-#: classes/pref/feeds.php:1443
+#: classes/pref/feeds.php:1444
 msgid "Clear all generated URLs"
 msgstr "Supprimer toutes les URL générées"
 
-#: classes/pref/feeds.php:1445
+#: classes/pref/feeds.php:1446
 msgid "Articles shared by URL"
 msgstr "Articles publiés par URL"
 
-#: classes/pref/feeds.php:1447
+#: classes/pref/feeds.php:1448
 msgid "You can disable all articles shared by unique URLs here."
 msgstr "Vous pouvez désactiver tous les articles partagés par URL unique ici."
 
-#: classes/pref/feeds.php:1450
+#: classes/pref/feeds.php:1451
 msgid "Unshare all articles"
 msgstr "Désactiver le partage pour tous les articles"
 
-#: classes/pref/feeds.php:1528
-msgid ""
-"These feeds have not been updated with new content for 3 months (oldest "
-"first):"
-msgstr ""
-"Les flux suivants n'ont pas été mis à jour depuis 3 mois (par âge "
-"décroissant) :"
+#: classes/pref/feeds.php:1529
+msgid "These feeds have not been updated with new content for 3 months (oldest first):"
+msgstr "Les flux suivants n'ont pas été mis à jour depuis 3 mois (par âge décroissant) :"
 
-#: classes/pref/feeds.php:1565 classes/pref/feeds.php:1635
+#: classes/pref/feeds.php:1566
+#: classes/pref/feeds.php:1636
 msgid "Click to edit feed"
 msgstr "Cliquez pour modifier le flux"
 
-#: classes/pref/feeds.php:1583 classes/pref/feeds.php:1655
+#: classes/pref/feeds.php:1584
+#: classes/pref/feeds.php:1656
 msgid "Unsubscribe from selected feeds"
 msgstr "Se désabonner des flux sélectionnés"
 
-#: classes/pref/feeds.php:1594
+#: classes/pref/feeds.php:1595
 msgid "These feeds have not been updated because of errors:"
 msgstr "Ces flux n'ont pas été mis à jour à cause d'erreurs :"
 
+#: classes/pref/feeds.php:1758
+msgid "Add one valid RSS feed per line (no feed detection is done)"
+msgstr "Ajoutez un flux RSS valide par ligne (aucune détection de flux n'est réalisée)"
+
+#: classes/pref/feeds.php:1767
+msgid "Feeds to subscribe, One per line"
+msgstr "Flux auxquels s'abonner, un par ligne"
+
+#: classes/pref/feeds.php:1789
+msgid "Feeds require authentication."
+msgstr "Les flux requièrent une identification."
+
 #: plugins/digest/digest_body.php:59
-msgid ""
-"Your browser doesn't support Javascript, which is required for this "
-"application to function properly. Please check your browser settings."
-msgstr ""
-"Votre navigateur ne gère pas JavaScript, alors que c'est nécessaire pour le "
-"bon fonctionnement de ce logiciel. Veuillez modifier la configuration de "
-"votre navigateur."
+msgid "Your browser doesn't support Javascript, which is required for this application to function properly. Please check your browser settings."
+msgstr "Votre navigateur ne gère pas JavaScript, alors que c'est nécessaire pour le bon fonctionnement de ce logiciel. Veuillez modifier la configuration de votre navigateur."
 
 #: plugins/digest/digest_body.php:74
 msgid "Hello,"
@@ -2507,7 +2528,8 @@ msgstr "Version ordinateur"
 msgid "Close article"
 msgstr "Fermer l'article"
 
-#: 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 "Non convenable au travail (cliquer pour basculer)"
 
@@ -2517,8 +2539,7 @@ msgstr "Plugin NSFW"
 
 #: plugins/nsfw/init.php:80
 msgid "Tags to consider NSFW (comma-separated)"
-msgstr ""
-"Tags à considérer non convenables au travail (séparés par des virgules)"
+msgstr "Tags à considérer non convenables au travail (séparés par des virgules)"
 
 #: plugins/nsfw/init.php:101
 msgid "Configuration saved."
@@ -2541,7 +2562,8 @@ msgstr "L'ancien mot de passe n'est pas correct."
 #: plugins/mobile/mobile-functions.php:173
 #: plugins/mobile/mobile-functions.php:200
 #: plugins/mobile/mobile-functions.php:236
-#: plugins/mobile/mobile-functions.php:373 plugins/mobile/prefs.php:29
+#: plugins/mobile/mobile-functions.php:373
+#: plugins/mobile/prefs.php:29
 msgid "Home"
 msgstr "Accueil"
 
@@ -2557,15 +2579,21 @@ msgstr "Version ordinateur"
 msgid "Enable categories"
 msgstr "Utiliser les catégories de flux"
 
-#: plugins/mobile/prefs.php:35 plugins/mobile/prefs.php:40
-#: plugins/mobile/prefs.php:46 plugins/mobile/prefs.php:51
-#: plugins/mobile/prefs.php:56 plugins/mobile/prefs.php:61
+#: plugins/mobile/prefs.php:35
+#: plugins/mobile/prefs.php:40
+#: plugins/mobile/prefs.php:46
+#: plugins/mobile/prefs.php:51
+#: plugins/mobile/prefs.php:56
+#: plugins/mobile/prefs.php:61
 msgid "ON"
 msgstr "Activé"
 
-#: plugins/mobile/prefs.php:35 plugins/mobile/prefs.php:40
-#: plugins/mobile/prefs.php:46 plugins/mobile/prefs.php:51
-#: plugins/mobile/prefs.php:56 plugins/mobile/prefs.php:61
+#: plugins/mobile/prefs.php:35
+#: plugins/mobile/prefs.php:40
+#: plugins/mobile/prefs.php:46
+#: plugins/mobile/prefs.php:51
+#: plugins/mobile/prefs.php:56
+#: plugins/mobile/prefs.php:61
 msgid "OFF"
 msgstr "Désactivé"
 
@@ -2585,12 +2613,15 @@ msgstr "Cacher les articles et flux lus"
 msgid "Sort feeds by unread count"
 msgstr "Trier les flux par nombre d'articles non lus"
 
-#: 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 "[Transféré]"
 
-#: plugins/mailto/init.php:52 plugins/mail/init.php:71
+#: plugins/mailto/init.php:52
+#: plugins/mail/init.php:71
 msgid "Multiple articles"
 msgstr "Articles multiples"
 
@@ -2603,11 +2634,8 @@ msgid "Forward selected article(s) by email."
 msgstr "Transférer le ou les article(s) par mail."
 
 #: plugins/mailto/init.php:81
-msgid ""
-"You should be able to edit the message before sending in your mail client."
-msgstr ""
-"Vous devriez pouvoir modifier le message avant son envoi dans votre client "
-"de messagerie."
+msgid "You should be able to edit the message before sending in your mail client."
+msgstr "Vous devriez pouvoir modifier le message avant son envoi dans votre client de messagerie."
 
 #: plugins/mailto/init.php:86
 msgid "Close this dialog"
@@ -2618,13 +2646,8 @@ msgid "Bookmarklets"
 msgstr "Bookmarklets"
 
 #: 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 ""
-"Glissez le lien ci-dessous dans la barre d'outil de votre navigateur, ouvrez "
-"le flux qui vous intéresse et cliquez sur le lien pour vous abonner à ce "
-"flux."
+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 "Glissez le lien ci-dessous dans la barre d'outil de votre navigateur, ouvrez le flux qui vous intéresse et cliquez sur le lien pour vous abonner à ce flux."
 
 #: plugins/bookmarklets/init.php:28
 #, php-format
@@ -2648,12 +2671,8 @@ msgid "Article archive"
 msgstr "Archive"
 
 #: 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 ""
-"Vous pouvez exporter et importer vos articles remarquables et archivés afin "
-"de les sauvegarder ou pour les transférer entre deux instances de tt-rss."
+msgid "You can export and import your Starred and Archived articles for safekeeping or when migrating between tt-rss instances."
+msgstr "Vous pouvez exporter et importer vos articles remarquables et archivés afin de les sauvegarder ou pour les transférer entre deux instances de tt-rss."
 
 #: plugins/import_export/init.php:71
 msgid "Export my data"
@@ -2706,12 +2725,8 @@ msgstr "Préparer les données"
 
 #: plugins/import_export/init.php:426
 #, php-format
-msgid ""
-"Could not upload file. You might need to adjust upload_max_filesize in PHP."
-"ini (current value = %s)"
-msgstr ""
-"Envoi du fichier impossible. Vous devriez peut-être modifier la valeur de "
-"upload_max_filesize dans PHP.ini (valeur courante : %s)"
+msgid "Could not upload file. You might need to adjust upload_max_filesize in PHP.ini (current value = %s)"
+msgstr "Envoi du fichier impossible. Vous devriez peut-être modifier la valeur de upload_max_filesize dans PHP.ini (valeur courante : %s)"
 
 #: plugins/mail/init.php:92
 msgid "From:"
@@ -2729,7 +2744,8 @@ msgstr "Sujet :"
 msgid "Send e-mail"
 msgstr "Envoyer le mail"
 
-#: 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 "Modifier l'annotation de l'article"
 
@@ -2749,26 +2765,24 @@ msgstr "Appliquer la valeur"
 msgid "No file uploaded."
 msgstr "Aucun fichier envoyé."
 
-#: plugins/googlereaderimport/init.php:149
+#: plugins/googlereaderimport/init.php:153
 #, php-format
 msgid "All done. %d out of %d articles imported."
 msgstr "Terminé. %d articles sur %d importés."
 
-#: plugins/googlereaderimport/init.php:153
+#: plugins/googlereaderimport/init.php:157
 msgid "The document has incorrect format."
 msgstr "Le format du document n'est pas correct."
 
-#: plugins/googlereaderimport/init.php:322
+#: plugins/googlereaderimport/init.php:326
 msgid "Import starred or shared items from Google Reader"
 msgstr "Importer les articles marqués ou partagés de Google Reader"
 
-#: plugins/googlereaderimport/init.php:326
+#: plugins/googlereaderimport/init.php:330
 msgid "Paste your starred.json or shared.json into the form below."
-msgstr ""
-"Collez votre fichier starred.json ou shared.json dans le formulaire ci-"
-"dessous."
+msgstr "Collez votre fichier starred.json ou shared.json dans le formulaire ci-dessous."
 
-#: plugins/googlereaderimport/init.php:340
+#: plugins/googlereaderimport/init.php:344
 msgid "Import my Starred items"
 msgstr "Importer mes éléments partagés"
 
@@ -2776,17 +2790,45 @@ msgstr "Importer mes éléments partagés"
 msgid "Linked"
 msgstr "Instances liées"
 
+#: plugins/instances/init.php:207
+#: plugins/instances/init.php:399
+msgid "Instance"
+msgstr "Instance"
+
+#: plugins/instances/init.php:218
+#: plugins/instances/init.php:315
+#: plugins/instances/init.php:408
+msgid "Instance URL"
+msgstr "URL de l'instance"
+
+#: plugins/instances/init.php:229
+#: plugins/instances/init.php:418
+msgid "Access key:"
+msgstr "Clef d'accès :"
+
+#: plugins/instances/init.php:232
+#: plugins/instances/init.php:316
+#: plugins/instances/init.php:421
+msgid "Access key"
+msgstr "Clef d'accès"
+
+#: plugins/instances/init.php:236
+#: plugins/instances/init.php:425
+msgid "Use one access key for both linked instances."
+msgstr "Utilisez une clef d'accès pour les deux instances liées."
+
+#: plugins/instances/init.php:244
+#: plugins/instances/init.php:433
+msgid "Generate new key"
+msgstr "Générer une nouvelle clef"
+
 #: plugins/instances/init.php:295
 msgid "Link instance"
 msgstr "Lier une instance"
 
 #: 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 ""
-"Vous pouvez connecter d'autres instances de Tiny Tiny RSS à celle-ci pour "
-"partager les flux populaires. Pour cela, utilisez l'URL suivante :"
+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 "Vous pouvez connecter d'autres instances de Tiny Tiny RSS à celle-ci pour partager les flux populaires. Pour cela, utilisez l'URL suivante :"
 
 #: plugins/instances/init.php:317
 msgid "Last connected"
@@ -2800,6 +2842,10 @@ msgstr "Etat"
 msgid "Stored feeds"
 msgstr "Flux stockés"
 
+#: plugins/instances/init.php:437
+msgid "Create link"
+msgstr "Créer un lien"
+
 #: plugins/share/init.php:27
 msgid "Share by URL"
 msgstr "Partager par URL"
@@ -2808,7 +2854,8 @@ msgstr "Partager par URL"
 msgid "You can share this article by the following unique URL:"
 msgstr "Vous pouvez partager cet article avec l'URL unique suivante :"
 
-#: plugins/updater/init.php:317 plugins/updater/init.php:334
+#: plugins/updater/init.php:317
+#: plugins/updater/init.php:334
 #: plugins/updater/updater.js:10
 msgid "Update Tiny Tiny RSS"
 msgstr "Mettre à jour Tiny Tiny RSS"
@@ -2818,12 +2865,8 @@ msgid "Your Tiny Tiny RSS installation is up to date."
 msgstr "Votre installation de Tiny Tiny RSS est à jour."
 
 #: plugins/updater/init.php:347
-msgid ""
-"Do not close this dialog until updating is finished. Backup your tt-rss "
-"directory before continuing."
-msgstr ""
-"Ne fermez pas ce dialogue avant que la mise à jour soit terminée. Veuillez "
-"sauvegarder votre dossier tt-rss avant de continuer."
+msgid "Do not close this dialog until updating is finished. Backup your tt-rss directory before continuing."
+msgstr "Ne fermez pas ce dialogue avant que la mise à jour soit terminée. Veuillez sauvegarder votre dossier tt-rss avant de continuer."
 
 #: plugins/updater/init.php:350
 msgid "Ready to update."
@@ -2833,7 +2876,9 @@ msgstr "Prêt à mettre à jour."
 msgid "Start update"
 msgstr "Commencer la mise à jour"
 
-#: js/feedlist.js:404 js/feedlist.js:432 plugins/digest/digest.js:26
+#: js/feedlist.js:404
+#: js/feedlist.js:432
+#: plugins/digest/digest.js:26
 msgid "Mark all articles in %s as read?"
 msgstr "Marquer tous les articles de %s comme lus ?"
 
@@ -2850,173 +2895,178 @@ msgid "Mark all articles in %s older than 2 weeks as read?"
 msgstr "Marquer tous les articles de %s âgés d'au moins 2 semaines comme lus ?"
 
 #: js/functions.js:92
-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 ""
-"Êtes-vous sûr de vouloir signaler cette erreur sur tt-rss.org ? Le rapport "
-"incluera des informations sur votre navigateur. Votre adresse IP sera "
-"sauvegardée dans la base de données."
+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 "Êtes-vous sûr de vouloir signaler cette erreur sur tt-rss.org ? Le rapport incluera des informations sur votre navigateur. Votre adresse IP sera sauvegardée dans la base de données."
 
 #: js/functions.js:214
 msgid "close"
 msgstr "fermer"
 
-#: js/functions.js:627
+#: js/functions.js:621
 msgid "Date syntax appears to be correct:"
 msgstr "La syntaxe des dates semble être correcte :"
 
-#: js/functions.js:630
+#: js/functions.js:624
 msgid "Date syntax is incorrect."
 msgstr "La syntaxe des dates est incorrecte."
 
-#: js/functions.js:724
+#: js/functions.js:636
+msgid "Error explained"
+msgstr "Erreur expliquée"
+
+#: js/functions.js:718
 msgid "Upload complete."
 msgstr "Envoi terminé."
 
-#: js/functions.js:748
+#: js/functions.js:742
 msgid "Remove stored feed icon?"
 msgstr "Supprimer l'icône de flux stockée ?"
 
-#: js/functions.js:753
+#: js/functions.js:747
 msgid "Removing feed icon..."
 msgstr "Suppression de l'icône du flux..."
 
-#: js/functions.js:758
+#: js/functions.js:752
 msgid "Feed icon removed."
 msgstr "Icône du flux supprimée."
 
-#: js/functions.js:780
+#: js/functions.js:774
 msgid "Please select an image file to upload."
 msgstr "Veuillez sélectionner une image à envoyer."
 
-#: js/functions.js:782
+#: js/functions.js:776
 msgid "Upload new icon for this feed?"
 msgstr "Envoyer une nouvelle icône pour ce flux ?"
 
-#: js/functions.js:783
+#: js/functions.js:777
 msgid "Uploading, please wait..."
 msgstr "Envoi en cours, veuillez patienter..."
 
-#: js/functions.js:799
+#: js/functions.js:793
 msgid "Please enter label caption:"
 msgstr "Veuillez saisir le libellé de l'étiquette :"
 
-#: js/functions.js:804
+#: js/functions.js:798
 msgid "Can't create label: missing caption."
 msgstr "Impossible de créer une étiquette : libellé manquant."
 
-#: js/functions.js:847
+#: js/functions.js:841
 msgid "Subscribe to Feed"
 msgstr "S'abonner au flux"
 
-#: js/functions.js:874
+#: js/functions.js:868
 msgid "Subscribed to %s"
 msgstr "Abonné à %s"
 
-#: js/functions.js:879
+#: js/functions.js:873
 msgid "Specified URL seems to be invalid."
 msgstr "L'URL spécifiée semble invalide."
 
-#: js/functions.js:882
+#: js/functions.js:876
 msgid "Specified URL doesn't seem to contain any feeds."
 msgstr "L'URL spécifiée ne semble pas contenir de flux."
 
-#: js/functions.js:935
+#: js/functions.js:929
 msgid "Couldn't download the specified URL: %s"
 msgstr "L'URL spécifiée n'a pas pu être téléchargée : %s"
 
-#: js/functions.js:939
+#: js/functions.js:933
 msgid "You are already subscribed to this feed."
 msgstr "Vous êtes déjà abonné à ce flux."
 
-#: js/functions.js:1069
+#: js/functions.js:1063
 msgid "Edit rule"
 msgstr "Modifier la règle"
 
-#: js/functions.js:1095
+#: js/functions.js:1089
 msgid "Edit action"
 msgstr "Modifier l'action"
 
-#: js/functions.js:1132
+#: js/functions.js:1126
 msgid "Create Filter"
 msgstr "Créer un filtre"
 
-#: js/functions.js:1247
-msgid ""
-"Reset subscription? Tiny Tiny RSS will try to subscribe to the notification "
-"hub again on next feed update."
-msgstr ""
-"Réinitialiser l'inscription ? Tiny Tiny RSS essayera de se réinscrire au hub "
-"de notification lors de la prochaine mise à jour du flux."
+#: js/functions.js:1241
+msgid "Reset subscription? Tiny Tiny RSS will try to subscribe to the notification hub again on next feed update."
+msgstr "Réinitialiser l'inscription ? Tiny Tiny RSS essayera de se réinscrire au hub de notification lors de la prochaine mise à jour du flux."
 
-#: js/functions.js:1258
+#: js/functions.js:1252
 msgid "Subscription reset."
 msgstr "Abonnement réinitialisé."
 
-#: js/functions.js:1268 js/tt-rss.js:619
+#: js/functions.js:1262
+#: js/tt-rss.js:619
 msgid "Unsubscribe from %s?"
 msgstr "Se désabonner de %s ?"
 
-#: js/functions.js:1271
+#: js/functions.js:1265
 msgid "Removing feed..."
 msgstr "Suppression du flux..."
 
-#: js/functions.js:1379
+#: js/functions.js:1373
 msgid "Please enter category title:"
 msgstr "Veuillez saisir un titre pour cette catégorie :"
 
-#: js/functions.js:1410
+#: js/functions.js:1404
 msgid "Generate new syndication address for this feed?"
 msgstr "Générer une nouvelle adresse d'abonnement pour ce flux ?"
 
-#: js/functions.js:1414 js/prefs.js:1234
+#: js/functions.js:1408
+#: js/prefs.js:1222
 msgid "Trying to change address..."
 msgstr "Changement de l'adresse..."
 
-#: js/functions.js:1601 js/tt-rss.js:396 js/tt-rss.js:600
+#: js/functions.js:1595
+#: js/tt-rss.js:396
+#: js/tt-rss.js:600
 msgid "You can't edit this kind of feed."
 msgstr "Vous ne pouvez pas modifier ce type de flux."
 
-#: js/functions.js:1616
+#: js/functions.js:1610
 msgid "Edit Feed"
 msgstr "Modifier le flux"
 
-#: js/functions.js:1622 js/prefs.js:194 js/prefs.js:749
+#: js/functions.js:1616
+#: js/prefs.js:194
+#: js/prefs.js:749
 msgid "Saving data..."
 msgstr "Enregistrement des données..."
 
-#: js/functions.js:1654
+#: js/functions.js:1648
 msgid "More Feeds"
 msgstr "D'autres flux"
 
-#: js/functions.js:1715 js/functions.js:1825 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
+#: js/functions.js:1709
+#: js/functions.js:1819
+#: js/prefs.js:397
+#: js/prefs.js:427
+#: js/prefs.js:459
+#: js/prefs.js:642
+#: js/prefs.js:662
+#: js/prefs.js:1198
+#: js/prefs.js:1343
 msgid "No feeds are selected."
 msgstr "Aucun flux sélectionné."
 
-#: js/functions.js:1757
-msgid ""
-"Remove selected feeds from the archive? Feeds with stored articles will not "
-"be removed."
-msgstr ""
-"Supprimer les flux sélectionnés de l'archive ? Les flux contenant des "
-"articles stockés ne seront pas supprimés."
+#: js/functions.js:1751
+msgid "Remove selected feeds from the archive? Feeds with stored articles will not be removed."
+msgstr "Supprimer les flux sélectionnés de l'archive ? Les flux contenant des articles stockés ne seront pas supprimés."
 
-#: js/functions.js:1796
+#: js/functions.js:1790
 msgid "Feeds with update errors"
 msgstr "Flux avec des erreurs de mise à jour"
 
-#: js/functions.js:1807 js/prefs.js:1192
+#: js/functions.js:1801
+#: js/prefs.js:1180
 msgid "Remove selected feeds?"
 msgstr "Supprimer les flux sélectionnés ?"
 
-#: js/functions.js:1810 js/prefs.js:1195
+#: js/functions.js:1804
+#: js/prefs.js:1183
 msgid "Removing selected feeds..."
 msgstr "Suppression des flux sélectionnés..."
 
-#: js/functions.js:1908
+#: js/functions.js:1902
 msgid "Help"
 msgstr "Aide"
 
@@ -3028,7 +3078,7 @@ msgstr "Modifier la catégorie"
 msgid "Remove category"
 msgstr "Supprimer la catégorie"
 
-#: js/PrefFilterTree.js:32
+#: js/PrefFilterTree.js:48
 msgid "Inverse"
 msgstr "Inverser"
 
@@ -3038,8 +3088,7 @@ msgstr "Veuillez saisir l'identifiant :"
 
 #: js/prefs.js:62
 msgid "Can't create user: no login specified."
-msgstr ""
-"Impossible de créer l'utilisateur : aucun identifiant n'a été spécifié."
+msgstr "Impossible de créer l'utilisateur : aucun identifiant n'a été spécifié."
 
 #: js/prefs.js:66
 msgid "Adding user..."
@@ -3065,23 +3114,23 @@ msgstr "Supprimer les étiquettes sélectionnées ?"
 msgid "Removing selected labels..."
 msgstr "Suppression des étiquettes sélectionnées..."
 
-#: js/prefs.js:295 js/prefs.js:1396
+#: js/prefs.js:295
+#: js/prefs.js:1384
 msgid "No labels are selected."
 msgstr "Aucune étiquette sélectionnée."
 
 #: js/prefs.js:309
-msgid ""
-"Remove selected users? Neither default admin nor your account will be "
-"removed."
-msgstr ""
-"Supprimer les utilisateurs sélectionnés ? L'administrateur par défaut et "
-"votre compte utilisateur ne seront pas supprimés."
+msgid "Remove selected users? Neither default admin nor your account will be removed."
+msgstr "Supprimer les utilisateurs sélectionnés ? L'administrateur par défaut et votre compte utilisateur ne seront pas supprimés."
 
 #: js/prefs.js:312
 msgid "Removing selected users..."
 msgstr "Suppression des utilisateurs sélectionnés..."
 
-#: 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 "Aucun utilisateur sélectionné."
 
@@ -3093,7 +3142,9 @@ msgstr "Supprimer les filtres sélectionnés ?"
 msgid "Removing selected filters..."
 msgstr "Suppression des filtres sélectionnés..."
 
-#: 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 "Aucun filtre sélectionné."
 
@@ -3111,8 +3162,7 @@ msgstr "Veuillez sélectionner un seul flux."
 
 #: js/prefs.js:418
 msgid "Erase all non-starred articles in selected feed?"
-msgstr ""
-"Supprimer tous les articles non-remarquables dans le flux sélectionné ?"
+msgstr "Supprimer tous les articles non-remarquables dans le flux sélectionné ?"
 
 #: js/prefs.js:421
 msgid "Clearing selected feed..."
@@ -3120,9 +3170,7 @@ msgstr "Nettoyage du flux sélectionné..."
 
 #: js/prefs.js:440
 msgid "How many days of articles to keep (0 - use default)?"
-msgstr ""
-"Combien de jours faut-il conserver les articles (0 pour utiliser la valeur "
-"par défaut) ?"
+msgstr "Combien de jours faut-il conserver les articles (0 pour utiliser la valeur par défaut) ?"
 
 #: js/prefs.js:443
 msgid "Purging selected feed..."
@@ -3136,7 +3184,9 @@ msgstr "L'identifiant ne peut pas être vide."
 msgid "Saving user..."
 msgstr "Sauvegarde de l'utilisateur..."
 
-#: 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 "Veuillez sélectionner un seul utilisateur."
 
@@ -3168,152 +3218,144 @@ msgstr "Modifier plusieurs flux"
 msgid "Save changes to selected feeds?"
 msgstr "Enregistrer les modifications aux flux sélectionnés ?"
 
-#: js/prefs.js:797
+#: js/prefs.js:785
 msgid "OPML Import"
 msgstr "Import OPML"
 
-#: js/prefs.js:824
+#: js/prefs.js:812
 msgid "Please choose an OPML file first."
 msgstr "Veuillez d'abord sélectionner un fichier OPML."
 
-#: js/prefs.js:827 plugins/import_export/import_export.js:115
+#: js/prefs.js:815
+#: plugins/import_export/import_export.js:115
 #: plugins/googlereaderimport/init.js:45
 msgid "Importing, please wait..."
 msgstr "Import en cours, veuillez patienter..."
 
-#: js/prefs.js:980
+#: js/prefs.js:968
 msgid "Reset to defaults?"
 msgstr "Revenir aux valeurs par défaut ?"
 
-#: js/prefs.js:1099
-msgid ""
-"Remove category %s? Any nested feeds would be placed into Uncategorized."
-msgstr ""
-"Supprimer la categorie %s ? Tous les flux enfants seront placés dans Sans "
-"catégorie."
+#: js/prefs.js:1087
+msgid "Remove category %s? Any nested feeds would be placed into Uncategorized."
+msgstr "Supprimer la categorie %s ? Tous les flux enfants seront placés dans Sans catégorie."
 
-#: js/prefs.js:1105
+#: js/prefs.js:1093
 msgid "Removing category..."
 msgstr "Suppression de la catégorie..."
 
-#: js/prefs.js:1126
+#: js/prefs.js:1114
 msgid "Remove selected categories?"
 msgstr "Supprimer les catégories sélectionnées ?"
 
-#: js/prefs.js:1129
+#: js/prefs.js:1117
 msgid "Removing selected categories..."
 msgstr "Suppression des catégories sélectionnés..."
 
-#: js/prefs.js:1142
+#: js/prefs.js:1130
 msgid "No categories are selected."
 msgstr "Aucune catégorie sélectionnée."
 
-#: js/prefs.js:1150
+#: js/prefs.js:1138
 msgid "Category title:"
 msgstr "Titre de la catégorie :"
 
-#: js/prefs.js:1154
+#: js/prefs.js:1142
 msgid "Creating category..."
 msgstr "Création de la catégorie..."
 
-#: js/prefs.js:1181
+#: js/prefs.js:1169
 msgid "Feeds without recent updates"
 msgstr "Flux sans mise à jour récente"
 
-#: js/prefs.js:1230
+#: js/prefs.js:1218
 msgid "Replace current OPML publishing address with a new one?"
 msgstr "Remplacer l'adresse de publication OPML actuelle par une nouvelle ?"
 
-#: js/prefs.js:1319
+#: js/prefs.js:1307
 msgid "Clearing feed..."
 msgstr "Nettoyage du flux..."
 
-#: js/prefs.js:1339
+#: js/prefs.js:1327
 msgid "Rescore articles in selected feeds?"
 msgstr "Recalculer le score des articles des flux sélectionnés ?"
 
-#: js/prefs.js:1342
+#: js/prefs.js:1330
 msgid "Rescoring selected feeds..."
 msgstr "Recalcul du score des flux sélectionnés..."
 
-#: js/prefs.js:1362
+#: js/prefs.js:1350
 msgid "Rescore all articles? This operation may take a lot of time."
-msgstr ""
-"Recalculer le score de tous les articles ? Cette opération peut prendre "
-"beaucoup de temps."
+msgstr "Recalculer le score de tous les articles ? Cette opération peut prendre beaucoup de temps."
 
-#: js/prefs.js:1365
+#: js/prefs.js:1353
 msgid "Rescoring feeds..."
 msgstr "Recalcul du score des flux..."
 
-#: js/prefs.js:1382
+#: js/prefs.js:1370
 msgid "Reset selected labels to default colors?"
 msgstr "Ré-initialiser les couleurs des étiquettes aux couleurs par défaut ?"
 
-#: js/prefs.js:1419
+#: js/prefs.js:1407
 msgid "Settings Profiles"
 msgstr "Paramètres des profils"
 
-#: js/prefs.js:1428
-msgid ""
-"Remove selected profiles? Active and default profiles will not be removed."
-msgstr ""
-"Supprimer les profils sélectionnés ? Les profils actifs et par défaut ne "
-"seront pas supprimés."
+#: js/prefs.js:1416
+msgid "Remove selected profiles? Active and default profiles will not be removed."
+msgstr "Supprimer les profils sélectionnés ? Les profils actifs et par défaut ne seront pas supprimés."
 
-#: js/prefs.js:1431
+#: js/prefs.js:1419
 msgid "Removing selected profiles..."
 msgstr "Suppression des profils sélectionnés..."
 
-#: js/prefs.js:1446
+#: js/prefs.js:1434
 msgid "No profiles are selected."
 msgstr "Aucun profil sélectionné."
 
-#: js/prefs.js:1454 js/prefs.js:1507
+#: js/prefs.js:1442
+#: js/prefs.js:1495
 msgid "Activate selected profile?"
 msgstr "Activer le profil selectionné ?"
 
-#: js/prefs.js:1470 js/prefs.js:1523
+#: js/prefs.js:1458
+#: js/prefs.js:1511
 msgid "Please choose a profile to activate."
 msgstr "Veuillez sélectionner un profil à activer."
 
-#: js/prefs.js:1475
+#: js/prefs.js:1463
 msgid "Creating profile..."
 msgstr "Création d'un profil..."
 
-#: js/prefs.js:1531
+#: js/prefs.js:1519
 msgid "This will invalidate all previously generated feed URLs. Continue?"
-msgstr ""
-"Ceci va invalider toutes les URL de flux générées auparavant. Souhaitez-vous "
-"continuer ?"
+msgstr "Ceci va invalider toutes les URL de flux générées auparavant. Souhaitez-vous continuer ?"
 
-#: js/prefs.js:1534 js/prefs.js:1553
+#: js/prefs.js:1522
+#: js/prefs.js:1541
 msgid "Clearing URLs..."
 msgstr "Nettoyage des URL..."
 
-#: js/prefs.js:1541
+#: js/prefs.js:1529
 msgid "Generated URLs cleared."
 msgstr "URL générées supprimées."
 
-#: js/prefs.js:1550
+#: js/prefs.js:1538
 msgid "This will invalidate all previously shared article URLs. Continue?"
-msgstr ""
-"Ceci va invalider tous les articles partagés par URL. Souhaitez-vous "
-"continuer ?"
+msgstr "Ceci va invalider tous les articles partagés par URL. Souhaitez-vous continuer ?"
 
-#: js/prefs.js:1560
+#: js/prefs.js:1548
 msgid "Shared URLs cleared."
 msgstr "URL partagées supprimées."
 
-#: js/prefs.js:1648
+#: js/prefs.js:1654
 msgid "Label Editor"
 msgstr "Editeur d'étiquette"
 
-#: js/prefs.js:1770
+#: js/prefs.js:1776
 msgid "Subscribing to feeds..."
 msgstr "Abonnement aux flux..."
 
-#: js/prefs.js:1807
+#: js/prefs.js:1813
 msgid "Clear stored data for this plugin?"
 msgstr "Effacer les données pour ce plugin ?"
 
@@ -3333,27 +3375,32 @@ msgstr "Veuillez d'abord activer le plugin mail."
 msgid "Please enable embed_original plugin first."
 msgstr "Veuillez d'abord activer le plugin embed_original."
 
+#: js/tt-rss.js:587
+msgid "Select item(s) by tags"
+msgstr "Sélectionner des éléments par tags"
+
 #: js/tt-rss.js:608
 msgid "You can't unsubscribe from the category."
 msgstr "Vous ne pouvez pas vous désabonner de la catégorie."
 
-#: js/tt-rss.js:613 js/tt-rss.js:769
+#: js/tt-rss.js:613
+#: js/tt-rss.js:765
 msgid "Please select some feed first."
 msgstr "Veuillez d'abord sélectionner un flux."
 
-#: js/tt-rss.js:764
+#: js/tt-rss.js:760
 msgid "You can't rescore this kind of feed."
 msgstr "Vous ne pouvez pas recalculer le score de ce type de flux."
 
-#: js/tt-rss.js:774
+#: js/tt-rss.js:770
 msgid "Rescore articles in %s?"
 msgstr "Recalculer le score des articles de %s ?"
 
-#: js/tt-rss.js:777
+#: js/tt-rss.js:773
 msgid "Rescoring articles..."
 msgstr "Recalcul des scores des articles..."
 
-#: js/tt-rss.js:911
+#: js/tt-rss.js:907
 msgid "New version available!"
 msgstr "Une nouvelle version est disponible !"
 
@@ -3361,125 +3408,128 @@ msgstr "Une nouvelle version est disponible !"
 msgid "Cancel search"
 msgstr "Annuler la recherche"
 
-#: js/viewfeed.js:440 plugins/digest/digest.js:258
+#: js/viewfeed.js:440
+#: plugins/digest/digest.js:258
 #: plugins/digest/digest.js:714
 msgid "Unstar article"
 msgstr "Ne plus marquer comme remarquable"
 
-#: js/viewfeed.js:445 plugins/digest/digest.js:260
+#: js/viewfeed.js:445
+#: plugins/digest/digest.js:260
 #: plugins/digest/digest.js:718
 msgid "Star article"
 msgstr "Marquer comme remarquable"
 
-#: js/viewfeed.js:478 plugins/digest/digest.js:263
+#: js/viewfeed.js:478
+#: plugins/digest/digest.js:263
 #: plugins/digest/digest.js:749
 msgid "Unpublish article"
 msgstr "Ne plus publier l'article"
 
-#: js/viewfeed.js:679 js/viewfeed.js:707 js/viewfeed.js:734 js/viewfeed.js:797
-#: js/viewfeed.js:831 js/viewfeed.js:968 js/viewfeed.js:1011
-#: js/viewfeed.js:1064 js/viewfeed.js:2108 plugins/mailto/init.js:7
+#: js/viewfeed.js:679
+#: js/viewfeed.js:707
+#: js/viewfeed.js:734
+#: js/viewfeed.js:797
+#: js/viewfeed.js:831
+#: js/viewfeed.js:951
+#: js/viewfeed.js:994
+#: js/viewfeed.js:1047
+#: js/viewfeed.js:2096
+#: plugins/mailto/init.js:7
 #: plugins/mail/mail.js:7
 msgid "No articles are selected."
 msgstr "Aucun article sélectionné."
 
-#: js/viewfeed.js:948
-msgid "Mark all visible articles in %s as read?"
-msgstr "Marquer tous les articles visibles de %s comme lus ?"
-
-#: js/viewfeed.js:976
+#: js/viewfeed.js:959
 msgid "Delete %d selected article in %s?"
 msgid_plural "Delete %d selected articles in %s?"
 msgstr[0] "Supprimer %d article sélectionné de %s ?"
 msgstr[1] "Supprimer les %d articles sélectionnés de %s ?"
 
-#: js/viewfeed.js:978
+#: js/viewfeed.js:961
 msgid "Delete %d selected article?"
 msgid_plural "Delete %d selected articles?"
 msgstr[0] "Supprimer %d article sélectionné ?"
 msgstr[1] "Supprimer les %d articles sélectionnés ?"
 
-#: js/viewfeed.js:1020
+#: js/viewfeed.js:1003
 msgid "Archive %d selected article in %s?"
 msgid_plural "Archive %d selected articles in %s?"
 msgstr[0] "Archiver %d article sélectionné de %s ?"
 msgstr[1] "Archiver les %d articles sélectionnés de %s ?"
 
-#: js/viewfeed.js:1023
+#: js/viewfeed.js:1006
 msgid "Move %d archived article back?"
 msgid_plural "Move %d archived articles back?"
 msgstr[0] "Restaurer %d article archivé ?"
 msgstr[1] "Restaurer %d articles archivés ?"
 
-#: js/viewfeed.js:1025
-msgid ""
-"Please note that unstarred articles might get purged on next feed update."
-msgstr ""
-"Veuillez noter que les articles non marqués risquent d'être purgés à la "
-"prochaine mise à jour du flux."
+#: js/viewfeed.js:1008
+msgid "Please note that unstarred articles might get purged on next feed update."
+msgstr "Veuillez noter que les articles non marqués risquent d'être purgés à la prochaine mise à jour du flux."
 
-#: js/viewfeed.js:1070
+#: js/viewfeed.js:1053
 msgid "Mark %d selected article in %s as read?"
 msgid_plural "Mark %d selected articles in %s as read?"
 msgstr[0] "Marquer %d article sélectionné de %s comme lu ?"
 msgstr[1] "Marquer %d articles sélectionnés de %s comme lus ?"
 
-#: js/viewfeed.js:1094
+#: js/viewfeed.js:1077
 msgid "Edit article Tags"
 msgstr "Modifier les tags de l'article"
 
-#: js/viewfeed.js:1100
+#: js/viewfeed.js:1083
 msgid "Saving article tags..."
 msgstr "Sauvegarde des tags de l'article..."
 
-#: js/viewfeed.js:1337
+#: js/viewfeed.js:1323
 msgid "No article is selected."
 msgstr "Aucun article sélectionné."
 
-#: js/viewfeed.js:1372
+#: js/viewfeed.js:1358
 msgid "No articles found to mark"
 msgstr "Aucun article à marquer"
 
-#: js/viewfeed.js:1374
+#: js/viewfeed.js:1360
 msgid "Mark %d article as read?"
 msgid_plural "Mark %d articles as read?"
 msgstr[0] "Marquer %d article comme lu ?"
 msgstr[1] "Marquer %d articles comme lus ?"
 
-#: js/viewfeed.js:1884
+#: js/viewfeed.js:1872
 msgid "Open original article"
 msgstr "Ouvrir l'article original"
 
-#: js/viewfeed.js:1890
+#: js/viewfeed.js:1878
 msgid "Display article URL"
 msgstr "Afficher l'URL"
 
 # Same as 'starred" ?
-#: js/viewfeed.js:1909
+#: js/viewfeed.js:1897
 msgid "Toggle marked"
 msgstr "Marquer comme (non) remarquable"
 
-#: js/viewfeed.js:1995
+#: js/viewfeed.js:1983
 msgid "Remove label"
 msgstr "Supprimer l'étiquette"
 
-#: js/viewfeed.js:2019
+#: js/viewfeed.js:2007
 msgid "Playing..."
 msgstr "Lecture..."
 
-#: js/viewfeed.js:2020
+#: js/viewfeed.js:2008
 msgid "Click to pause"
 msgstr "Cliquez pour mettre en pause"
 
-#: js/viewfeed.js:2077
+#: js/viewfeed.js:2065
 msgid "Please enter new score for selected articles:"
 msgstr "Nouveau score des articles sélectionnés :"
 
-#: js/viewfeed.js:2119
+#: js/viewfeed.js:2107
 msgid "Please enter new score for this article:"
 msgstr "Nouveau score pour cet article :"
 
-#: js/viewfeed.js:2152
+#: js/viewfeed.js:2140
 msgid "Article URL:"
 msgstr "URL de l'article :"
 
@@ -3513,10 +3563,10 @@ msgstr "Charger plus..."
 
 #: plugins/embed_original/init.js:6
 msgid "Sorry, your browser does not support sandboxed iframes."
-msgstr ""
-"Malheureusement, votre navigateur ne supporte pas les iframes sécurisées."
+msgstr "Malheureusement, votre navigateur ne supporte pas les iframes sécurisées."
 
-#: 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 "Transférer l'article par email"
 
@@ -3525,18 +3575,10 @@ msgid "Export Data"
 msgstr "Exporter les données"
 
 #: plugins/import_export/import_export.js:40
-msgid ""
-"Finished, exported %d article. You can download the data <a "
-"class='visibleLink' href='%u'>here</a>."
-msgid_plural ""
-"Finished, exported %d articles. You can download the data <a "
-"class='visibleLink' href='%u'>here</a>."
-msgstr[0] ""
-"Terminé, %d article exporté. Vous pouvez télécharger les données <a "
-"class='visibleLink' href='%u'>ici</a>."
-msgstr[1] ""
-"Terminé, %d articles exportés. Vous pouvez télécharger les données <a "
-"class='visibleLink' href='%u'>ici</a>."
+msgid "Finished, exported %d article. You can download the data <a class='visibleLink' href='%u'>here</a>."
+msgid_plural "Finished, exported %d articles. You can download the data <a class='visibleLink' href='%u'>here</a>."
+msgstr[0] "Terminé, %d article exporté. Vous pouvez télécharger les données <a class='visibleLink' href='%u'>ici</a>."
+msgstr[1] "Terminé, %d articles exportés. Vous pouvez télécharger les données <a class='visibleLink' href='%u'>ici</a>."
 
 #: plugins/import_export/import_export.js:93
 msgid "Data Import"
@@ -3574,7 +3616,8 @@ msgstr "Supprimer les instances sélectionnées ?"
 msgid "Removing selected instances..."
 msgstr "Suppression des instances sélectionnées..."
 
-#: 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 "Aucune instance sélectionnée."
 
@@ -3587,16 +3630,25 @@ msgid "Share article by URL"
 msgstr "Partager l'article par URL"
 
 #: plugins/updater/updater.js:58
-msgid ""
-"Live updating is considered experimental. Backup your tt-rss directory "
-"before continuing. Please type 'yes' to continue."
-msgstr ""
-"La mise à jour en direct est expérimentale. Veuillez sauvegarder votre "
-"dossier tt-rss avant de continuer. Tapez « yes » pour continuer."
+msgid "Live updating is considered experimental. Backup your tt-rss directory before continuing. Please type 'yes' to continue."
+msgstr "La mise à jour en direct est expérimentale. Veuillez sauvegarder votre dossier tt-rss avant de continuer. Tapez « yes » pour continuer."
+
+#~ msgid "(%d feed)"
+#~ msgid_plural "(%d feeds)"
+#~ msgstr[0] "(%d flux)"
+#~ msgstr[1] "(%d flux)"
+
+#~ msgid "Notice"
+#~ msgstr "Avertissement"
+
+#~ msgid "Tag Cloud"
+#~ msgstr "Nuage d'étiquettes"
+
+#~ msgid "Mark all visible articles in %s as read?"
+#~ msgstr "Marquer tous les articles visibles de %s comme lus ?"
 
 #~ msgid "Form secret key incorrect. Please enable cookies and try again."
-#~ msgstr ""
-#~ "Clé de formulaire incorecte. Veuillez activer les cookies et réessayer."
+#~ msgstr "Clé de formulaire incorecte. Veuillez activer les cookies et réessayer."
 
 #~ msgid "Date"
 #~ msgstr "Date"
@@ -3611,8 +3663,7 @@ msgstr ""
 #~ msgstr "Activer les options voulues avec les cases à cocher sur la droite:"
 
 #~ msgid "New articles available in this feed (click to show)"
-#~ msgstr ""
-#~ "Nouveaux articles disponibles dans ce flux (cliquer pour les afficher)"
+#~ msgstr "Nouveaux articles disponibles dans ce flux (cliquer pour les afficher)"
 
 #~ msgid "Share on identi.ca"
 #~ msgstr "Partager sur identi.ca"
@@ -3644,12 +3695,8 @@ msgstr ""
 #~ msgid "Back to feeds"
 #~ msgstr "Retour aux flux"
 
-#~ msgid ""
-#~ "This will clear your stored authentication information for Twitter. "
-#~ "Continue?"
-#~ msgstr ""
-#~ "Cela va effacer les informations d'authentification pour Twitter. Voulez-"
-#~ "vous continuer ?"
+#~ msgid "This will clear your stored authentication information for Twitter. Continue?"
+#~ msgstr "Cela va effacer les informations d'authentification pour Twitter. Voulez-vous continuer ?"
 
 #~ msgid "Finished: %d articles processed, %d imported, %d feeds created."
 #~ msgstr "Terminé : %d articles traités, %d importés, %d flux créés."
@@ -3680,8 +3727,7 @@ msgstr ""
 #~ msgstr "Naviguer dans les articles"
 
 #~ msgid "Mark articles below/above active one as read"
-#~ msgstr ""
-#~ "Marquer les articles au-dessous/au-dessus de l'article actif comme lus"
+#~ msgstr "Marquer les articles au-dessous/au-dessus de l'article actif comme lus"
 
 #~ msgid "Scroll article content"
 #~ msgstr "Faire déflier le contenu de l'article"
@@ -3710,12 +3756,8 @@ msgstr ""
 #~ msgid "Focus search (if present)"
 #~ msgstr "Focus sur la recherche (si affichée)"
 
-#~ msgid ""
-#~ "<b>Note:</b> not all actions may be available, depending on Tiny Tiny RSS "
-#~ "configuration and your access level."
-#~ msgstr ""
-#~ "<b>Note :</b> certaines actions peuvent ne pas être disponibles, selon la "
-#~ "configuration de Tiny Tiny RSS et vos permissions."
+#~ msgid "<b>Note:</b> not all actions may be available, depending on Tiny Tiny RSS configuration and your access level."
+#~ msgstr "<b>Note :</b> certaines actions peuvent ne pas être disponibles, selon la configuration de Tiny Tiny RSS et vos permissions."
 
 #~ msgid "Open article in new tab"
 #~ msgstr "Ouvrir les articles dans un nouvel onglet"
@@ -3781,9 +3823,7 @@ msgstr ""
 #~ msgstr "S'inscrire via Twitter"
 
 #~ msgid "Could not connect to Twitter. Refresh the page or try again later."
-#~ msgstr ""
-#~ "Impossible de se connecter à Twitter. Rafraichissez la page ou essayez à "
-#~ "nouveau plus tard."
+#~ msgstr "Impossible de se connecter à Twitter. Rafraichissez la page ou essayez à nouveau plus tard."
 
 #~ msgid "Congratulations! You have successfully registered with Twitter."
 #~ msgstr "Félicitation ! Vous vous êtes inscrit via Twitter avec succès."
@@ -3804,8 +3844,7 @@ msgstr ""
 #~ msgstr "Aucune catégorie de flux définie."
 
 #~ msgid "<b>Hint:</b> you can drag feeds and categories around."
-#~ msgstr ""
-#~ "<b>Astuce :</b> vous pouvez faire glisser les flux et les catagories."
+#~ msgstr "<b>Astuce :</b> vous pouvez faire glisser les flux et les catagories."
 
 #~ msgid "Subscribing using bookmarklet"
 #~ msgstr "S'abonner via bookmarklet"
@@ -3813,19 +3852,11 @@ msgstr ""
 #~ msgid "Twitter"
 #~ msgstr "Twitter"
 
-#~ msgid ""
-#~ "Before you can update your Twitter feeds, you must register this instance "
-#~ "of Tiny Tiny RSS with Twitter.com."
-#~ msgstr ""
-#~ "Avant de mettre à jour vos flux Twitter, vous devez enregistrer cette "
-#~ "instance de Tiny Tiny RSS avec Twitter.com."
+#~ msgid "Before you can update your Twitter feeds, you must register this instance of Tiny Tiny RSS with Twitter.com."
+#~ msgstr "Avant de mettre à jour vos flux Twitter, vous devez enregistrer cette instance de Tiny Tiny RSS avec Twitter.com."
 
-#~ msgid ""
-#~ "You have been successfully registered with Twitter.com and should be able "
-#~ "to access your Twitter feeds."
-#~ msgstr ""
-#~ "Vous vous êtes inscrit avec succès sur Twitter.com et vous devriez être "
-#~ "en mesure d'accéder à vos flux Twitter."
+#~ msgid "You have been successfully registered with Twitter.com and should be able to access your Twitter feeds."
+#~ msgstr "Vous vous êtes inscrit avec succès sur Twitter.com et vous devriez être en mesure d'accéder à vos flux Twitter."
 
 #~ msgid "Register with Twitter.com"
 #~ msgstr "S'inscrire sur Twitter.com"
@@ -3842,12 +3873,8 @@ msgstr ""
 #~ msgid "Filter Test Results"
 #~ msgstr "Résultats du test du filtre"
 
-#~ msgid ""
-#~ "When \"Mark as read\" button is clicked in toolbar, automatically open "
-#~ "next feed with unread articles."
-#~ msgstr ""
-#~ "Lorsque vous cliquez sur « Marquer comme lus », le prochain flux "
-#~ "contenant des articles non lus est automatiquement affiché"
+#~ msgid "When \"Mark as read\" button is clicked in toolbar, automatically open next feed with unread articles."
+#~ msgstr "Lorsque vous cliquez sur « Marquer comme lus », le prochain flux contenant des articles non lus est automatiquement affiché"
 
 #~ msgid "Uses server timezone"
 #~ msgstr "Utilise le fuseau horaire du serveur"
index b2b5e060da498fd361ebda20b091f45f4fd5b185..adb932368bf20069805297a61946b9825dc3a289 100644 (file)
Binary files a/locale/hu_HU/LC_MESSAGES/messages.mo and b/locale/hu_HU/LC_MESSAGES/messages.mo differ
index 1675193680b7fb140ad7ab0b26d57c60190d8429..c37dc884a4548a48bce3126ffe73f1aa3e25251f 100644 (file)
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-03-31 12:47+0400\n"
+"POT-Creation-Date: 2013-04-01 16:28+0400\n"
 "PO-Revision-Date: 2013-03-26 12:00+0100\n"
 "Last-Translator: Zoltan Faludi <zoltan.faludi@gmail.com>\n"
 "Language-Team: HUNGARIAN\n"
@@ -137,9 +137,9 @@ msgstr "A Tiny Tiny RSS adatbázis friss."
 #: register.php:336
 #: register.php:346
 #: register.php:358
-#: classes/handler/public.php:625
-#: classes/handler/public.php:713
-#: classes/handler/public.php:795
+#: classes/handler/public.php:626
+#: classes/handler/public.php:714
+#: classes/handler/public.php:796
 msgid "Return to Tiny Tiny RSS"
 msgstr "Vissza az RSS-olvasóhoz"
 
@@ -251,36 +251,37 @@ msgstr "SQL eszképelési teszt sikertelen, ellenőrizze az adatbázis és a PHP
 
 #: index.php:135
 #: index.php:154
-#: index.php:264
-#: prefs.php:102
+#: index.php:263
+#: prefs.php:103
 #: classes/backend.php:5
 #: classes/pref/labels.php:296
-#: classes/pref/filters.php:628
-#: classes/pref/feeds.php:1330
+#: classes/pref/filters.php:680
+#: classes/pref/feeds.php:1331
 #: plugins/digest/digest_body.php:63
 #: js/feedlist.js:128
 #: js/feedlist.js:448
 #: js/functions.js:420
-#: js/functions.js:814
-#: js/functions.js:1250
-#: js/functions.js:1385
-#: js/functions.js:1697
+#: js/functions.js:808
+#: js/functions.js:1244
+#: js/functions.js:1379
+#: js/functions.js:1691
 #: js/prefs.js:86
 #: js/prefs.js:576
 #: js/prefs.js:666
-#: js/prefs.js:870
-#: js/prefs.js:1457
-#: js/prefs.js:1510
-#: js/prefs.js:1568
-#: js/prefs.js:1584
-#: js/prefs.js:1600
-#: js/prefs.js:1619
-#: js/prefs.js:1792
-#: js/prefs.js:1808
+#: js/prefs.js:858
+#: js/prefs.js:1445
+#: js/prefs.js:1498
+#: js/prefs.js:1557
+#: js/prefs.js:1574
+#: js/prefs.js:1590
+#: js/prefs.js:1606
+#: js/prefs.js:1625
+#: js/prefs.js:1798
+#: js/prefs.js:1814
 #: js/tt-rss.js:475
 #: js/tt-rss.js:492
 #: js/viewfeed.js:774
-#: js/viewfeed.js:1259
+#: js/viewfeed.js:1245
 #: plugins/import_export/import_export.js:17
 #: plugins/updater/updater.js:17
 msgid "Loading, please wait..."
@@ -303,13 +304,13 @@ msgid "All Articles"
 msgstr "Minden hír"
 
 #: index.php:176
-#: include/functions.php:1974
+#: include/functions.php:1924
 #: classes/feeds.php:106
 msgid "Starred"
 msgstr "Csillagozott"
 
 #: index.php:177
-#: include/functions.php:1975
+#: include/functions.php:1925
 #: classes/feeds.php:107
 msgid "Published"
 msgstr "Publikált"
@@ -349,22 +350,15 @@ msgstr ""
 msgid "Oldest first"
 msgstr ""
 
-#: index.php:195
-#: classes/pref/feeds.php:567
-#: classes/pref/feeds.php:792
-msgid "Update"
-msgstr "Frissítés"
-
-#: index.php:197
+#: index.php:192
 msgid "Mark feed as read"
 msgstr "Hírcsatorna megjelölése olvasottként"
 
-#: index.php:200
-#: index.php:235
-#: include/functions.php:1964
+#: index.php:195
+#: index.php:234
+#: include/functions.php:1914
 #: include/localized_schema.php:10
 #: classes/feeds.php:111
-#: classes/feeds.php:136
 #: classes/feeds.php:437
 #: js/FeedTree.js:128
 #: js/FeedTree.js:156
@@ -372,110 +366,115 @@ msgstr "Hírcsatorna megjelölése olvasottként"
 msgid "Mark as read"
 msgstr "Megjelölés olvasottként"
 
-#: index.php:201
-#: include/functions.php:1860
-#: include/functions.php:1972
+#: index.php:196
+#: include/functions.php:1810
+#: include/functions.php:1922
 msgid "All articles"
 msgstr "Az összes hír"
 
-#: index.php:202
+#: index.php:197
 msgid "Older than one day"
 msgstr ""
 
-#: index.php:203
+#: index.php:198
 msgid "Older than one week"
 msgstr ""
 
-#: index.php:204
+#: index.php:199
 msgid "Older than two weeks"
 msgstr ""
 
-#: index.php:212
+#: index.php:204
+#, fuzzy
+msgid "Refresh"
+msgstr "Friss"
+
+#: index.php:211
 msgid "Communication problem with server."
 msgstr "Kommunikációs probléma a szerverrel"
 
-#: index.php:220
+#: index.php:219
 msgid "New version of Tiny Tiny RSS is available!"
 msgstr "A Tiny Tiny RSS-nek elérhető egy újabb verziója!"
 
-#: index.php:225
+#: index.php:224
 msgid "Actions..."
 msgstr "Műveletek"
 
-#: index.php:227
+#: index.php:226
 msgid "Preferences..."
 msgstr "Beállítások..."
 
-#: index.php:228
+#: index.php:227
 msgid "Search..."
 msgstr "Keresés..."
 
-#: index.php:229
+#: index.php:228
 msgid "Feed actions:"
 msgstr "Műveletek hírcsatornákkal:"
 
-#: index.php:230
-#: classes/handler/public.php:555
+#: index.php:229
+#: classes/handler/public.php:556
 msgid "Subscribe to feed..."
 msgstr "Feliratkozás hírcsatornára..."
 
-#: index.php:231
+#: index.php:230
 msgid "Edit this feed..."
 msgstr "Hírcsatorna szerkesztése..."
 
-#: index.php:232
+#: index.php:231
 msgid "Rescore feed"
 msgstr "Hírcsatorna újrapontozása"
 
-#: index.php:233
-#: classes/pref/feeds.php:716
-#: classes/pref/feeds.php:1303
+#: index.php:232
+#: classes/pref/feeds.php:717
+#: classes/pref/feeds.php:1304
 #: js/PrefFeedTree.js:73
 msgid "Unsubscribe"
 msgstr "Leiratkozás"
 
-#: index.php:234
+#: index.php:233
 msgid "All feeds:"
 msgstr "Az összes hírcsatorna:"
 
-#: index.php:236
+#: index.php:235
 msgid "(Un)hide read feeds"
 msgstr "Olvasottak rejtése/mutatása"
 
-#: index.php:237
+#: index.php:236
 msgid "Other actions:"
 msgstr "Egyéb műveletek:"
 
-#: index.php:239
+#: index.php:238
 msgid "Switch to digest..."
 msgstr "Váltás áttekintő módba..."
 
-#: index.php:241
+#: index.php:240
 msgid "Show tag cloud..."
 msgstr "Címkefelhő megjelenítése..."
 
-#: index.php:242
-#: include/functions.php:1950
+#: index.php:241
+#: include/functions.php:1900
 msgid "Toggle widescreen mode"
 msgstr "Szélesvásznú mód váltása"
 
-#: index.php:243
+#: index.php:242
 msgid "Select by tags..."
 msgstr "Kijelölés címkék alapján"
 
-#: index.php:244
+#: index.php:243
 msgid "Create label..."
 msgstr "Új címke létrehozása..."
 
-#: index.php:245
+#: index.php:244
 msgid "Create filter..."
 msgstr "Szűrő létrehozása..."
 
-#: index.php:246
+#: index.php:245
 msgid "Keyboard shortcuts help"
 msgstr "Billentyűparancsok súgója"
 
-#: index.php:248
+#: index.php:247
 #: plugins/digest/digest_body.php:77
 #: plugins/mobile/mobile-functions.php:62
 #: plugins/mobile/mobile-functions.php:237
@@ -483,41 +482,41 @@ msgid "Logout"
 msgstr "Kijelentkezés"
 
 #: prefs.php:36
-#: prefs.php:122
-#: include/functions.php:1977
+#: prefs.php:121
+#: include/functions.php:1927
 #: classes/pref/prefs.php:377
 msgid "Preferences"
 msgstr "Beállítások"
 
-#: prefs.php:113
+#: prefs.php:112
 msgid "Keyboard shortcuts"
 msgstr "Billentyűparancsok"
 
-#: prefs.php:114
+#: prefs.php:113
 msgid "Exit preferences"
 msgstr "Kilépés a beállításokból"
 
-#: prefs.php:125
-#: classes/pref/feeds.php:106
-#: classes/pref/feeds.php:1208
-#: classes/pref/feeds.php:1271
+#: prefs.php:124
+#: classes/pref/feeds.php:107
+#: classes/pref/feeds.php:1209
+#: classes/pref/feeds.php:1272
 msgid "Feeds"
 msgstr "Hírcsatornák"
 
-#: prefs.php:128
-#: classes/pref/filters.php:120
+#: prefs.php:127
+#: classes/pref/filters.php:156
 msgid "Filters"
 msgstr "Szűrők"
 
-#: prefs.php:131
-#: include/functions.php:1167
-#: include/functions.php:1803
+#: prefs.php:130
+#: include/functions.php:1117
+#: include/functions.php:1753
 #: classes/pref/labels.php:90
 #: plugins/mobile/mobile-functions.php:198
 msgid "Labels"
 msgstr "Címkék"
 
-#: prefs.php:135
+#: prefs.php:134
 msgid "Users"
 msgstr "Felhasználók"
 
@@ -543,12 +542,12 @@ msgid "Check availability"
 msgstr "Ellenőrizze, hogy nem foglalt-e már:"
 
 #: register.php:228
-#: classes/handler/public.php:753
+#: classes/handler/public.php:754
 msgid "Email:"
 msgstr "E-mail:"
 
 #: register.php:231
-#: classes/handler/public.php:758
+#: classes/handler/public.php:759
 msgid "How much is two plus two:"
 msgstr "Mennyi kettő meg kettő?"
 
@@ -581,12 +580,12 @@ msgid "Tiny Tiny RSS data update script."
 msgstr "A Tiny Tiny RSS adatbázis frissítő szkript."
 
 #: include/digest.php:109
-#: include/functions.php:1176
-#: include/functions.php:1704
-#: include/functions.php:1789
-#: include/functions.php:1811
+#: include/functions.php:1126
+#: include/functions.php:1654
+#: include/functions.php:1739
+#: include/functions.php:1761
 #: classes/opml.php:416
-#: classes/pref/feeds.php:221
+#: classes/pref/feeds.php:222
 msgid "Uncategorized"
 msgstr "Kategorizálatlan"
 
@@ -601,331 +600,329 @@ msgstr[1] "%d archivált hír"
 msgid "No feeds found."
 msgstr "Nem található hírcsatorna."
 
-#: include/functions.php:722
-msgid "Session failed to validate (incorrect IP)"
-msgstr "Nem sikerült érvényesíteni a munkamenetet (érvénytelen IP)"
-
-#: include/functions.php:1165
-#: include/functions.php:1801
+#: include/functions.php:1115
+#: include/functions.php:1751
 #: plugins/mobile/mobile-functions.php:171
 msgid "Special"
 msgstr "Kiemelt"
 
-#: include/functions.php:1653
-#: classes/dlg.php:369
-#: classes/pref/filters.php:382
+#: include/functions.php:1603
+#: classes/feeds.php:1097
+#: classes/pref/filters.php:427
 msgid "All feeds"
 msgstr "Összes hírcsatorna"
 
-#: include/functions.php:1854
+#: include/functions.php:1804
 msgid "Starred articles"
 msgstr "Csillagozott hírek"
 
-#: include/functions.php:1856
+#: include/functions.php:1806
 msgid "Published articles"
 msgstr "Publikált hírek"
 
-#: include/functions.php:1858
+#: include/functions.php:1808
 msgid "Fresh articles"
 msgstr "Friss hírek"
 
-#: include/functions.php:1862
+#: include/functions.php:1812
 msgid "Archived articles"
 msgstr "Archivált hírek"
 
-#: include/functions.php:1864
+#: include/functions.php:1814
 msgid "Recently read"
 msgstr "Legutóbb olvasott"
 
-#: include/functions.php:1927
+#: include/functions.php:1877
 msgid "Navigation"
 msgstr "Navigáció"
 
-#: include/functions.php:1928
+#: include/functions.php:1878
 msgid "Open next feed"
 msgstr "Következő hírcsatorna megnyitása"
 
-#: include/functions.php:1929
+#: include/functions.php:1879
 msgid "Open previous feed"
 msgstr "Előző hírcsatorna megnyitása"
 
-#: include/functions.php:1930
+#: include/functions.php:1880
 msgid "Open next article"
 msgstr "Következő hír megnyitása"
 
-#: include/functions.php:1931
+#: include/functions.php:1881
 msgid "Open previous article"
 msgstr "Előző hír megjelenítése"
 
-#: include/functions.php:1932
+#: include/functions.php:1882
 msgid "Open next article (don't scroll long articles)"
 msgstr "Következő hír megnyitása (nem görgeti a hosszú híreket)"
 
-#: include/functions.php:1933
+#: include/functions.php:1883
 msgid "Open previous article (don't scroll long articles)"
 msgstr "Előző hír megnyitása (nem görgeti a hosszú híreket)"
 
-#: include/functions.php:1934
+#: include/functions.php:1884
 msgid "Show search dialog"
 msgstr "Keresőmező megjelenítése"
 
-#: include/functions.php:1935
+#: include/functions.php:1885
 msgid "Article"
 msgstr "Hír"
 
-#: include/functions.php:1936
+#: include/functions.php:1886
 msgid "Toggle starred"
 msgstr "Csillagoz"
 
-#: include/functions.php:1937
-#: js/viewfeed.js:1920
+#: include/functions.php:1887
+#: js/viewfeed.js:1908
 msgid "Toggle published"
 msgstr "Publikált"
 
-#: include/functions.php:1938
-#: js/viewfeed.js:1898
+#: include/functions.php:1888
+#: js/viewfeed.js:1886
 msgid "Toggle unread"
 msgstr "Olvasatlannak jelöl"
 
-#: include/functions.php:1939
+#: include/functions.php:1889
 msgid "Edit tags"
 msgstr "Címkék szerkesztése"
 
-#: include/functions.php:1940
+#: include/functions.php:1890
 #, fuzzy
 msgid "Dismiss selected"
 msgstr "Eltávolítja a kijelölt híreket a címke alól?"
 
-#: include/functions.php:1941
+#: include/functions.php:1891
 #, fuzzy
 msgid "Dismiss read"
 msgstr "Látható olvasott hírek elrejtése"
 
-#: include/functions.php:1942
+#: include/functions.php:1892
 msgid "Open in new window"
 msgstr "Megnyitás új ablakban"
 
-#: include/functions.php:1943
-#: js/viewfeed.js:1939
+#: include/functions.php:1893
+#: js/viewfeed.js:1927
 msgid "Mark below as read"
 msgstr "Olvasottnak jel ez alatt"
 
-#: include/functions.php:1944
-#: js/viewfeed.js:1933
+#: include/functions.php:1894
+#: js/viewfeed.js:1921
 msgid "Mark above as read"
 msgstr "Olvasottnak jel ez fölött"
 
-#: include/functions.php:1945
+#: include/functions.php:1895
 msgid "Scroll down"
 msgstr "Legördítés"
 
-#: include/functions.php:1946
+#: include/functions.php:1896
 msgid "Scroll up"
 msgstr "Felgördítés"
 
-#: include/functions.php:1947
+#: include/functions.php:1897
 msgid "Select article under cursor"
 msgstr "Az kurzor alatti hír kiválasztása"
 
-#: include/functions.php:1948
+#: include/functions.php:1898
 msgid "Email article"
 msgstr "Hír küldése emailben"
 
-#: include/functions.php:1949
+#: include/functions.php:1899
 msgid "Close/collapse article"
 msgstr "Hír bezárása"
 
-#: include/functions.php:1951
+#: include/functions.php:1901
 #: plugins/embed_original/init.php:33
 msgid "Toggle embed original"
 msgstr "Eredeti megjelenítésének váltása"
 
-#: include/functions.php:1952
+#: include/functions.php:1902
 msgid "Article selection"
 msgstr "Hír kijelölés"
 
-#: include/functions.php:1953
+#: include/functions.php:1903
 msgid "Select all articles"
 msgstr "Minden hír kijelölése"
 
-#: include/functions.php:1954
+#: include/functions.php:1904
 msgid "Select unread"
 msgstr "Olvasatlan hírek kijelölése"
 
-#: include/functions.php:1955
+#: include/functions.php:1905
 msgid "Select starred"
 msgstr "Csillagozott hírek kijelölése"
 
-#: include/functions.php:1956
+#: include/functions.php:1906
 msgid "Select published"
 msgstr "Publikált hírek kijlölése"
 
-#: include/functions.php:1957
+#: include/functions.php:1907
 msgid "Invert selection"
 msgstr "Fordított kijelölés"
 
-#: include/functions.php:1958
+#: include/functions.php:1908
 msgid "Deselect everything"
 msgstr "Kijelölés eltávolítása"
 
-#: include/functions.php:1959
-#: classes/pref/feeds.php:520
-#: classes/pref/feeds.php:753
+#: include/functions.php:1909
+#: classes/pref/feeds.php:521
+#: classes/pref/feeds.php:754
 msgid "Feed"
 msgstr "Hírcsatorna"
 
-#: include/functions.php:1960
+#: include/functions.php:1910
 msgid "Refresh current feed"
 msgstr "Aktuális hírcsatorna frissítése"
 
-#: include/functions.php:1961
+#: include/functions.php:1911
 msgid "Un/hide read feeds"
 msgstr "Olvasott hírcsatornák rejtése/mutatása"
 
-#: include/functions.php:1962
-#: classes/pref/feeds.php:1274
+#: include/functions.php:1912
+#: classes/pref/feeds.php:1275
 msgid "Subscribe to feed"
 msgstr "Feliratkozás hírcsatornára"
 
-#: include/functions.php:1963
+#: include/functions.php:1913
 #: js/FeedTree.js:135
 #: js/PrefFeedTree.js:67
 msgid "Edit feed"
 msgstr "Hírcsatorna szerkesztése"
 
-#: include/functions.php:1965
+#: include/functions.php:1915
 msgid "Reverse headlines"
 msgstr "Címek fordított sorrendben"
 
-#: include/functions.php:1966
+#: include/functions.php:1916
 msgid "Debug feed update"
 msgstr "Hírcsatorna frissítés hibakaresés"
 
-#: include/functions.php:1967
+#: include/functions.php:1917
 #: js/FeedTree.js:178
 msgid "Mark all feeds as read"
 msgstr "Minden hírcsatornát olvasottként jelöl"
 
-#: include/functions.php:1968
+#: include/functions.php:1918
 msgid "Un/collapse current category"
 msgstr "Kategória kinyitás/összecsukás"
 
-#: include/functions.php:1969
+#: include/functions.php:1919
 msgid "Toggle combined mode"
 msgstr "Váltás kombinált módba"
 
-#: include/functions.php:1970
+#: include/functions.php:1920
 #, fuzzy
 msgid "Toggle auto expand in combined mode"
 msgstr "Váltás kombinált módba"
 
-#: include/functions.php:1971
+#: include/functions.php:1921
 msgid "Go to"
 msgstr "Ugrás ide"
 
-#: include/functions.php:1973
+#: include/functions.php:1923
 msgid "Fresh"
 msgstr "Friss"
 
-#: include/functions.php:1976
+#: include/functions.php:1926
+#: js/tt-rss.js:431
+#: js/tt-rss.js:584
 msgid "Tag cloud"
 msgstr "Címkefelhő"
 
-#: include/functions.php:1978
+#: include/functions.php:1928
 msgid "Other"
 msgstr "Egyéb"
 
-#: include/functions.php:1979
+#: include/functions.php:1929
 #: classes/pref/labels.php:281
 msgid "Create label"
 msgstr "Címke létrehozása"
 
-#: include/functions.php:1980
-#: classes/pref/filters.php:606
+#: include/functions.php:1930
+#: classes/pref/filters.php:654
 msgid "Create filter"
 msgstr "Szűrő létrehozása"
 
-#: include/functions.php:1981
+#: include/functions.php:1931
 msgid "Un/collapse sidebar"
 msgstr "Oldalsáv megjelenítés/elrejtés"
 
-#: include/functions.php:1982
+#: include/functions.php:1932
 msgid "Show help dialog"
 msgstr "Súgó ablak megjelenítése"
 
-#: include/functions.php:2467
+#: include/functions.php:2417
 #, php-format
 msgid "Search results: %s"
 msgstr "Keresési eredmények: %s"
 
-#: include/functions.php:2958
-#: js/viewfeed.js:2026
+#: include/functions.php:2908
+#: js/viewfeed.js:2014
 msgid "Click to play"
 msgstr "Kattintson a lejátszáshoz"
 
-#: include/functions.php:2959
-#: js/viewfeed.js:2025
+#: include/functions.php:2909
+#: js/viewfeed.js:2013
 msgid "Play"
 msgstr "Lejátszás"
 
-#: include/functions.php:3076
+#: include/functions.php:3026
 msgid " - "
 msgstr "-"
 
-#: include/functions.php:3098
-#: include/functions.php:3392
+#: include/functions.php:3048
+#: include/functions.php:3342
 #: classes/rpc.php:408
 msgid "no tags"
 msgstr "nincs címke"
 
-#: include/functions.php:3108
+#: include/functions.php:3058
 #: classes/feeds.php:682
 msgid "Edit tags for this article"
 msgstr "Címkék hozzáadása a hírhez"
 
-#: include/functions.php:3137
+#: include/functions.php:3087
 #: classes/feeds.php:638
 msgid "Originally from:"
 msgstr "Eredeti innen:"
 
-#: include/functions.php:3150
+#: include/functions.php:3100
 #: classes/feeds.php:651
-#: classes/pref/feeds.php:539
+#: classes/pref/feeds.php:540
 msgid "Feed URL"
 msgstr "Hírcsatorna URL"
 
-#: include/functions.php:3181
-#: classes/dlg.php:43
-#: classes/dlg.php:162
-#: classes/dlg.php:185
-#: classes/dlg.php:222
-#: classes/dlg.php:506
-#: classes/dlg.php:541
-#: classes/dlg.php:572
-#: classes/dlg.php:606
-#: classes/dlg.php:618
+#: include/functions.php:3131
+#: classes/dlg.php:37
+#: classes/dlg.php:60
+#: classes/dlg.php:93
+#: classes/dlg.php:159
+#: classes/dlg.php:190
+#: classes/dlg.php:217
+#: classes/dlg.php:250
+#: classes/dlg.php:262
 #: classes/backend.php:105
 #: classes/pref/users.php:106
-#: classes/pref/filters.php:111
-#: classes/pref/feeds.php:1587
-#: classes/pref/feeds.php:1659
+#: classes/pref/filters.php:147
+#: classes/pref/prefs.php:1012
+#: classes/pref/feeds.php:1588
+#: classes/pref/feeds.php:1660
 #: plugins/import_export/init.php:409
 #: plugins/import_export/init.php:432
-#: plugins/googlereaderimport/init.php:164
+#: plugins/googlereaderimport/init.php:168
 #: plugins/share/init.php:67
 #: plugins/updater/init.php:357
 msgid "Close this window"
 msgstr "Ablak bezárása"
 
-#: include/functions.php:3417
+#: include/functions.php:3367
 msgid "(edit note)"
 msgstr "(jegyzet szerkesztése)"
 
-#: include/functions.php:3650
+#: include/functions.php:3600
 msgid "unknown type"
 msgstr "ismeretlen hírcsatornatípus"
 
-#: include/functions.php:3706
+#: include/functions.php:3656
 msgid "Attachments"
 msgstr "Csatolmányok:"
 
@@ -969,7 +966,7 @@ msgid "Assign tags"
 msgstr "Címke hozzáadása"
 
 #: include/localized_schema.php:14
-#: js/viewfeed.js:1990
+#: js/viewfeed.js:1978
 msgid "Assign label"
 msgstr "Címke hozzáadása"
 
@@ -1152,7 +1149,7 @@ msgid "User timezone"
 msgstr "Felhasználó időzónája"
 
 #: include/localized_schema.php:61
-#: js/prefs.js:1719
+#: js/prefs.js:1725
 msgid "Customize stylesheet"
 msgstr "Stíluslap testreszabása"
 
@@ -1177,14 +1174,14 @@ msgid "Select theme"
 msgstr "Stílusválasztó"
 
 #: include/login_form.php:183
-#: classes/handler/public.php:460
-#: classes/handler/public.php:748
+#: classes/handler/public.php:461
+#: classes/handler/public.php:749
 #: plugins/mobile/login_form.php:40
 msgid "Login:"
 msgstr "Felhasználó:"
 
 #: include/login_form.php:192
-#: classes/handler/public.php:463
+#: classes/handler/public.php:464
 #: plugins/mobile/login_form.php:45
 msgid "Password:"
 msgstr "Jelszó:"
@@ -1195,7 +1192,7 @@ msgid "I forgot my password"
 msgstr "Érvénytelen jelszó"
 
 #: include/login_form.php:201
-#: classes/handler/public.php:466
+#: classes/handler/public.php:467
 msgid "Language:"
 msgstr "Nyelv:"
 
@@ -1204,9 +1201,9 @@ msgid "Profile:"
 msgstr "Profil:"
 
 #: include/login_form.php:213
-#: classes/handler/public.php:210
+#: classes/handler/public.php:211
 #: classes/rpc.php:64
-#: classes/dlg.php:98
+#: classes/pref/prefs.php:948
 msgid "Default profile"
 msgstr "Alapértelmezett profil"
 
@@ -1219,477 +1216,247 @@ msgid "Remember me"
 msgstr ""
 
 #: include/login_form.php:235
-#: classes/handler/public.php:476
+#: classes/handler/public.php:477
 #: plugins/mobile/login_form.php:28
 msgid "Log in"
 msgstr "Belépés"
 
+#: include/sessions.php:53
+msgid "Session failed to validate (incorrect IP)"
+msgstr "Nem sikerült érvényesíteni a munkamenetet (érvénytelen IP)"
+
 #: classes/article.php:25
 msgid "Article not found."
 msgstr "Hír nem található."
 
-#: classes/handler/public.php:401
+#: classes/article.php:179
+msgid "Tags for this article (separated by commas):"
+msgstr "A hír címkéi (vesszőkkel elválasztva):"
+
+#: classes/article.php:204
+#: classes/pref/users.php:192
+#: classes/pref/labels.php:79
+#: classes/pref/filters.php:405
+#: classes/pref/prefs.php:894
+#: classes/pref/feeds.php:733
+#: classes/pref/feeds.php:881
+#: plugins/nsfw/init.php:86
+#: plugins/note/init.php:53
+#: plugins/instances/init.php:248
+msgid "Save"
+msgstr "Mentés"
+
+#: classes/article.php:206
+#: classes/handler/public.php:438
+#: classes/handler/public.php:480
+#: classes/feeds.php:1024
+#: classes/feeds.php:1076
+#: classes/feeds.php:1136
+#: classes/pref/users.php:194
+#: classes/pref/labels.php:81
+#: classes/pref/filters.php:408
+#: classes/pref/filters.php:804
+#: classes/pref/filters.php:880
+#: classes/pref/filters.php:947
+#: classes/pref/prefs.php:896
+#: classes/pref/feeds.php:734
+#: classes/pref/feeds.php:884
+#: classes/pref/feeds.php:1797
+#: plugins/mail/init.php:131
+#: plugins/note/init.php:55
+#: plugins/instances/init.php:251
+#: plugins/instances/init.php:440
+msgid "Cancel"
+msgstr "Mégsem"
+
+#: classes/handler/public.php:402
 #: plugins/bookmarklets/init.php:38
 msgid "Share with Tiny Tiny RSS"
 msgstr "Megosztás Tiny Tiny RSS-el"
 
-#: classes/handler/public.php:409
+#: classes/handler/public.php:410
 msgid "Title:"
 msgstr "Cím:"
 
-#: classes/handler/public.php:411
-#: classes/dlg.php:663
-#: classes/pref/feeds.php:537
-#: classes/pref/feeds.php:768
+#: classes/handler/public.php:412
+#: classes/pref/feeds.php:538
+#: classes/pref/feeds.php:769
 #: plugins/instances/init.php:215
+#: plugins/instances/init.php:405
 msgid "URL:"
 msgstr "Hírcsatorna URL:"
 
-#: classes/handler/public.php:413
+#: classes/handler/public.php:414
 msgid "Content:"
 msgstr "Tartalom:"
 
-#: classes/handler/public.php:415
+#: classes/handler/public.php:416
 msgid "Labels:"
 msgstr "Címkék:"
 
-#: classes/handler/public.php:434
+#: classes/handler/public.php:435
 msgid "Shared article will appear in the Published feed."
 msgstr "A megosztott hír a Publikált hírek között fog megjelenni."
 
-#: classes/handler/public.php:436
+#: classes/handler/public.php:437
 msgid "Share"
 msgstr "Megosztás"
 
-#: classes/handler/public.php:437
-#: classes/handler/public.php:479
-#: classes/dlg.php:296
-#: classes/dlg.php:348
-#: classes/dlg.php:408
-#: classes/dlg.php:439
-#: classes/dlg.php:648
-#: classes/dlg.php:698
-#: classes/dlg.php:747
-#: classes/pref/users.php:194
-#: classes/pref/labels.php:81
-#: classes/pref/filters.php:363
-#: classes/pref/filters.php:746
-#: classes/pref/filters.php:822
-#: classes/pref/filters.php:889
-#: classes/pref/feeds.php:733
-#: classes/pref/feeds.php:883
-#: plugins/mail/init.php:131
-#: plugins/note/init.php:55
-#: plugins/instances/init.php:251
-msgid "Cancel"
-msgstr "Mégsem"
-
-#: classes/handler/public.php:458
+#: classes/handler/public.php:459
 msgid "Not logged in"
 msgstr "Nincs belépve"
 
-#: classes/handler/public.php:525
+#: classes/handler/public.php:526
 msgid "Incorrect username or password"
 msgstr "Hibás felhasználói név vagy jelszó"
 
-#: classes/handler/public.php:561
-#: classes/handler/public.php:658
+#: classes/handler/public.php:562
+#: classes/handler/public.php:659
 #, php-format
 msgid "Already subscribed to <b>%s</b>."
 msgstr "Már fel van iratkozva erre a hírcsatornára: <b>%s</b>."
 
-#: classes/handler/public.php:564
-#: classes/handler/public.php:649
+#: classes/handler/public.php:565
+#: classes/handler/public.php:650
 #, php-format
 msgid "Subscribed to <b>%s</b>."
 msgstr "Feliratkozva erre a hírcsatornára: <b>%s</b>."
 
-#: classes/handler/public.php:567
-#: classes/handler/public.php:652
+#: classes/handler/public.php:568
+#: classes/handler/public.php:653
 #, php-format
 msgid "Could not subscribe to <b>%s</b>."
 msgstr "Nem lehet feliratkozni ide: <b>%s</b>."
 
-#: classes/handler/public.php:570
-#: classes/handler/public.php:655
+#: classes/handler/public.php:571
+#: classes/handler/public.php:656
 #, php-format
 msgid "No feeds found in <b>%s</b>."
 msgstr "Nem található hírcsatorna itt: <b>%s</b>."
 
-#: classes/handler/public.php:573
-#: classes/handler/public.php:661
+#: classes/handler/public.php:574
+#: classes/handler/public.php:662
 msgid "Multiple feed URLs found."
 msgstr "Több hírcsatorna URL-t találtam."
 
-#: classes/handler/public.php:577
-#: classes/handler/public.php:666
+#: classes/handler/public.php:578
+#: classes/handler/public.php:667
 #, php-format
 msgid "Could not subscribe to <b>%s</b>.<br>Can't download the Feed URL."
 msgstr "Nem lehet feliratkozni ide: <b>%s</b>.<br>Nem lehet betölteni a hícsatorna URL-t."
 
-#: classes/handler/public.php:595
-#: classes/handler/public.php:684
+#: classes/handler/public.php:596
+#: classes/handler/public.php:685
 msgid "Subscribe to selected feed"
 msgstr "Feliratkozás a kiválasztott hírcsatornára"
 
-#: classes/handler/public.php:620
-#: classes/handler/public.php:708
+#: classes/handler/public.php:621
+#: classes/handler/public.php:709
 msgid "Edit subscription options"
 msgstr "Feliratkozási beállítások szerkesztése"
 
-#: classes/handler/public.php:735
+#: classes/handler/public.php:736
 #, fuzzy
 msgid "Password recovery"
 msgstr "Jelszó"
 
-#: classes/handler/public.php:741
+#: classes/handler/public.php:742
 msgid "You will need to provide valid account name and email. New password will be sent on your email address."
 msgstr ""
 
-#: classes/handler/public.php:763
+#: classes/handler/public.php:764
 #: classes/pref/users.php:378
 msgid "Reset password"
 msgstr "Jelszó visszaállítás"
 
-#: classes/handler/public.php:773
+#: classes/handler/public.php:774
 msgid "Some of the required form parameters are missing or incorrect."
 msgstr ""
 
-#: classes/handler/public.php:777
-#: classes/handler/public.php:803
+#: classes/handler/public.php:778
+#: classes/handler/public.php:804
 #: plugins/digest/digest_body.php:69
 #, fuzzy
 msgid "Go back"
 msgstr "Visszalépés"
 
-#: classes/handler/public.php:799
+#: classes/handler/public.php:800
 msgid "Sorry, login and email combination not found."
 msgstr ""
 
-#: classes/dlg.php:22
+#: classes/dlg.php:16
 msgid "If you have imported labels and/or filters, you might need to reload preferences to see your new data."
 msgstr "Ha címkéket és szűrőket is importált, akkor szükség lehet a beállításokat újra kell tölteni."
 
-#: classes/dlg.php:55
-#: classes/pref/users.php:360
-#: classes/pref/labels.php:272
-#: classes/pref/filters.php:234
-#: classes/pref/filters.php:282
-#: classes/pref/filters.php:597
-#: classes/pref/filters.php:676
-#: classes/pref/filters.php:703
-#: classes/pref/feeds.php:1262
-#: classes/pref/feeds.php:1532
-#: classes/pref/feeds.php:1602
-#: plugins/instances/init.php:287
-msgid "Select"
-msgstr "Kiválasztás"
-
-#: classes/dlg.php:58
-#: classes/feeds.php:92
-#: classes/pref/users.php:363
-#: classes/pref/labels.php:275
-#: classes/pref/filters.php:237
-#: classes/pref/filters.php:285
-#: classes/pref/filters.php:600
-#: classes/pref/filters.php:679
-#: classes/pref/filters.php:706
-#: classes/pref/feeds.php:1265
-#: classes/pref/feeds.php:1535
-#: classes/pref/feeds.php:1605
-#: plugins/instances/init.php:290
-msgid "All"
-msgstr "Mind"
-
-#: classes/dlg.php:60
-#: classes/feeds.php:95
-#: classes/pref/users.php:365
-#: classes/pref/labels.php:277
-#: classes/pref/filters.php:239
-#: classes/pref/filters.php:287
-#: classes/pref/filters.php:602
-#: classes/pref/filters.php:681
-#: classes/pref/filters.php:708
-#: classes/pref/feeds.php:1267
-#: classes/pref/feeds.php:1537
-#: classes/pref/feeds.php:1607
-#: plugins/instances/init.php:292
-msgid "None"
-msgstr "Kijelölés törlése"
-
-#: classes/dlg.php:69
-msgid "Create profile"
-msgstr "Profil létrehozás"
-
-#: classes/dlg.php:92
-#: classes/dlg.php:122
-msgid "(active)"
-msgstr "(aktív)"
-
-#: classes/dlg.php:156
-msgid "Remove selected profiles"
-msgstr "Eltávolítja a kiválasztott profilokat?"
-
-#: classes/dlg.php:158
-msgid "Activate profile"
-msgstr "Profil aktiválás"
-
-#: classes/dlg.php:168
-msgid "Public OPML URL"
-msgstr "Publikus OPML URL"
-
-#: classes/dlg.php:173
+#: classes/dlg.php:48
 msgid "Your Public OPML URL is:"
 msgstr "A publikus OPML URL címe:"
 
-#: classes/dlg.php:182
-#: classes/dlg.php:569
+#: classes/dlg.php:57
+#: classes/dlg.php:214
 msgid "Generate new URL"
 msgstr "Új URL generálás"
 
-#: classes/dlg.php:194
-msgid "Notice"
-msgstr "Értesítés"
-
-#: classes/dlg.php:200
+#: classes/dlg.php:71
 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 "A frissítő daemon a beállításokban engedélyezve van, ám a daemon folyamat nem fut, így a hírcsatornák nem tudnak frissülni. Kérem indítsa el a daemon folyamatot, vagy lépjen kapcsolatba az oldal/szerver tulajdonosával."
 
-#: classes/dlg.php:204
-#: classes/dlg.php:213
+#: classes/dlg.php:75
+#: classes/dlg.php:84
 msgid "Last update:"
 msgstr "Legutóbbi frissítés:"
 
-#: classes/dlg.php:209
+#: classes/dlg.php:80
 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 "A frissítő daemon túl régóta próbálkozik a hírcsatornák frissítésével. Ez összeomlás vagy hiba jele is lehet, kérem lépjen kapcsolatba az oldal/szerver tulajdonosával!"
 
-#: classes/dlg.php:234
-#: classes/dlg.php:242
-msgid "Feed or site URL"
-msgstr "Hírcsatorna vagy weboldal URL"
-
-#: classes/dlg.php:248
-#: classes/dlg.php:711
-#: classes/pref/feeds.php:559
-#: classes/pref/feeds.php:781
-msgid "Place in category:"
-msgstr "Hozzáadás a következő kategóriához:"
-
-#: classes/dlg.php:256
-msgid "Available feeds"
-msgstr "Elérhető hírcsatornák"
-
-#: classes/dlg.php:268
-#: classes/pref/users.php:155
-#: classes/pref/feeds.php:589
-#: classes/pref/feeds.php:817
-msgid "Authentication"
-msgstr "Azonosítás"
-
-#: classes/dlg.php:272
-#: classes/dlg.php:725
-#: classes/pref/users.php:420
-#: classes/pref/feeds.php:595
-#: classes/pref/feeds.php:821
-msgid "Login"
-msgstr "Belépés"
-
-#: classes/dlg.php:275
-#: classes/dlg.php:728
-#: classes/pref/prefs.php:202
-#: classes/pref/feeds.php:601
-#: classes/pref/feeds.php:827
-msgid "Password"
-msgstr "Jelszó"
-
-#: classes/dlg.php:285
-msgid "This feed requires authentication."
-msgstr "Ez a hírcsatorna azonosítást igényel."
-
-#: classes/dlg.php:290
-#: classes/dlg.php:346
-#: classes/dlg.php:746
-msgid "Subscribe"
-msgstr "Feliratkozás"
-
-#: classes/dlg.php:293
-msgid "More feeds"
-msgstr "További hírcsatornák"
-
-#: classes/dlg.php:316
-#: classes/dlg.php:407
-#: classes/pref/users.php:350
-#: classes/pref/filters.php:593
-#: classes/pref/feeds.php:1258
-#: js/tt-rss.js:170
-msgid "Search"
-msgstr "Keresés"
-
-#: classes/dlg.php:320
-msgid "Popular feeds"
-msgstr "Népszerű hírcsatornák"
-
-#: classes/dlg.php:321
-msgid "Feed archive"
-msgstr "Hírcsatorna archívum"
-
-#: classes/dlg.php:324
-msgid "limit:"
-msgstr "határ:"
-
-#: classes/dlg.php:347
-#: classes/pref/users.php:376
-#: classes/pref/labels.php:284
-#: classes/pref/filters.php:353
-#: classes/pref/filters.php:615
-#: classes/pref/feeds.php:706
-#: plugins/instances/init.php:297
-msgid "Remove"
-msgstr "Eltávolít"
-
-#: classes/dlg.php:358
-msgid "Look for"
-msgstr "Keresés"
-
-#: classes/dlg.php:366
-msgid "Limit search to:"
-msgstr "Keresés korlátozása ezekre:"
-
-#: classes/dlg.php:382
-msgid "This feed"
-msgstr "Ez a hírcsatorna"
-
-#: classes/dlg.php:414
-msgid "Tags for this article (separated by commas):"
-msgstr "A hír címkéi (vesszőkkel elválasztva):"
-
-#: classes/dlg.php:437
-#: classes/dlg.php:646
-#: classes/pref/users.php:192
-#: classes/pref/labels.php:79
-#: classes/pref/filters.php:360
-#: classes/pref/feeds.php:732
-#: classes/pref/feeds.php:880
-#: plugins/nsfw/init.php:86
-#: plugins/note/init.php:53
-#: plugins/instances/init.php:248
-msgid "Save"
-msgstr "Mentés"
-
-#: classes/dlg.php:445
-msgid "Tag Cloud"
-msgstr "Címkefelhő"
-
-#: classes/dlg.php:514
-msgid "Select item(s) by tags"
-msgstr "Elemek kijelölése címkék szerint"
-
-#: classes/dlg.php:517
+#: classes/dlg.php:166
 msgid "Match:"
 msgstr "Egyezés:"
 
-#: classes/dlg.php:519
+#: classes/dlg.php:168
 msgid "Any"
 msgstr "Mind"
 
-#: classes/dlg.php:522
+#: classes/dlg.php:171
 msgid "All tags."
 msgstr "Minden címke."
 
-#: classes/dlg.php:524
+#: classes/dlg.php:173
 msgid "Which Tags?"
 msgstr "Melyik címkék?"
 
-#: classes/dlg.php:537
+#: classes/dlg.php:186
 msgid "Display entries"
 msgstr "Bejegyzések megejenítése"
 
-#: classes/dlg.php:549
-#: classes/feeds.php:138
-msgid "View as RSS"
-msgstr "Megtekintés RSS-ként"
-
-#: classes/dlg.php:560
+#: classes/dlg.php:205
 msgid "You can view this feed as RSS using the following URL:"
 msgstr "Ezt a hírcsatornát megtekintheti RSS-ként a következő URL-en:"
 
-#: classes/dlg.php:589
+#: classes/dlg.php:233
 #: plugins/updater/init.php:327
 #, php-format
 msgid "New version of Tiny Tiny RSS is available (%s)."
 msgstr "Új Tiny Tiny RSS verzió érhető el (%s)."
 
-#: classes/dlg.php:597
+#: classes/dlg.php:241
 msgid "You can update using built-in updater in the Preferences or by using update.php"
 msgstr "Frissíthet a beépített frissítővel a Beállításokban, vagy az update.php használatával"
 
-#: classes/dlg.php:601
+#: classes/dlg.php:245
 #: plugins/updater/init.php:331
 msgid "See the release notes"
 msgstr ""
 
-#: classes/dlg.php:603
+#: classes/dlg.php:247
 msgid "Download"
 msgstr "Letöltés"
 
-#: classes/dlg.php:611
+#: classes/dlg.php:255
 msgid "Error receiving version information or no new version available."
 msgstr "Hiba a verzió információ fogadása közben vagy nem érhető el új verzió."
 
-#: classes/dlg.php:631
-#, 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 "Egyéni CSS deklarációkkal itt felülbírálhatja a kiválasztott téma színeit, betűtípusait és elrendezését. <a target=\"_blank\" class=\"visibleLink\" href=\"%s\">Ez a fájl</a> használható kiindulásként."
-
-#: classes/dlg.php:657
-#: plugins/instances/init.php:207
-msgid "Instance"
-msgstr "Pédány"
-
-#: classes/dlg.php:666
-#: plugins/instances/init.php:218
-#: plugins/instances/init.php:315
-msgid "Instance URL"
-msgstr "Példány URL"
-
-#: classes/dlg.php:676
-#: plugins/instances/init.php:229
-msgid "Access key:"
-msgstr "Hozzáférési kulcs:"
-
-#: classes/dlg.php:679
-#: plugins/instances/init.php:232
-#: plugins/instances/init.php:316
-msgid "Access key"
-msgstr "Hozzáférési kulcs"
-
-#: classes/dlg.php:683
-#: plugins/instances/init.php:236
-msgid "Use one access key for both linked instances."
-msgstr "Egy hozzáférési kulcs használata minden linkelt példányhoz."
-
-#: classes/dlg.php:691
-#: plugins/instances/init.php:244
-msgid "Generate new key"
-msgstr "Új kulcs generálása"
-
-#: classes/dlg.php:695
-msgid "Create link"
-msgstr "Link létrehozás"
-
-#: classes/dlg.php:708
-msgid "Add one valid RSS feed per line (no feed detection is done)"
-msgstr "Soronként egy érvényes RSS hírcsatornát adjon meg"
-
-#: classes/dlg.php:717
-msgid "Feeds to subscribe, One per line"
-msgstr "Feliratkozás hírcsatornákra, soronként egy"
-
-#: classes/dlg.php:739
-msgid "Feeds require authentication."
-msgstr "Ez a hírcsatorna azonosítást igényel."
-
 #: classes/feeds.php:68
 msgid "Visit the website"
 msgstr "Weboldal megtekintése"
@@ -1698,14 +1465,52 @@ msgstr "Weboldal megtekintése"
 msgid "View as RSS feed"
 msgstr "Megtekintés RSS feedként"
 
+#: classes/feeds.php:84
+#: classes/feeds.php:138
+#: classes/pref/feeds.php:1440
+msgid "View as RSS"
+msgstr "Megtekintés RSS-ként"
+
 #: classes/feeds.php:91
 msgid "Select:"
 msgstr "Kiválasztás:"
 
+#: classes/feeds.php:92
+#: classes/pref/users.php:363
+#: classes/pref/labels.php:275
+#: classes/pref/filters.php:282
+#: classes/pref/filters.php:330
+#: classes/pref/filters.php:648
+#: classes/pref/filters.php:737
+#: classes/pref/filters.php:764
+#: classes/pref/prefs.php:908
+#: classes/pref/feeds.php:1266
+#: classes/pref/feeds.php:1536
+#: classes/pref/feeds.php:1606
+#: plugins/instances/init.php:290
+msgid "All"
+msgstr "Mind"
+
 #: classes/feeds.php:94
 msgid "Invert"
 msgstr "Fordított"
 
+#: classes/feeds.php:95
+#: classes/pref/users.php:365
+#: classes/pref/labels.php:277
+#: classes/pref/filters.php:284
+#: classes/pref/filters.php:332
+#: classes/pref/filters.php:650
+#: classes/pref/filters.php:739
+#: classes/pref/filters.php:766
+#: classes/pref/prefs.php:910
+#: classes/pref/feeds.php:1268
+#: classes/pref/feeds.php:1538
+#: classes/pref/feeds.php:1608
+#: plugins/instances/init.php:292
+msgid "None"
+msgstr "Kijelölés törlése"
+
 #: classes/feeds.php:101
 msgid "More..."
 msgstr "Tovább..."
@@ -1731,10 +1536,10 @@ msgid "Move back"
 msgstr "Visszalépés"
 
 #: classes/feeds.php:118
-#: classes/pref/filters.php:246
-#: classes/pref/filters.php:294
-#: classes/pref/filters.php:688
-#: classes/pref/filters.php:715
+#: classes/pref/filters.php:291
+#: classes/pref/filters.php:339
+#: classes/pref/filters.php:746
+#: classes/pref/filters.php:773
 msgid "Delete"
 msgstr "Törlés"
 
@@ -1790,20 +1595,116 @@ msgid "No articles found to display."
 msgstr "Nincs megjeleníthető hír."
 
 #: classes/feeds.php:755
-#: classes/feeds.php:920
+#: classes/feeds.php:919
 #, php-format
 msgid "Feeds last updated at %s"
 msgstr "Hírcsatornák utolsó frissítése: %s"
 
 #: classes/feeds.php:765
-#: classes/feeds.php:930
+#: classes/feeds.php:929
 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:910
+#: classes/feeds.php:909
 msgid "No feed selected."
 msgstr "Nincs kiválasztott hírcsatorna."
 
+#: classes/feeds.php:962
+#: classes/feeds.php:970
+msgid "Feed or site URL"
+msgstr "Hírcsatorna vagy weboldal URL"
+
+#: classes/feeds.php:976
+#: classes/pref/feeds.php:560
+#: classes/pref/feeds.php:782
+#: classes/pref/feeds.php:1761
+msgid "Place in category:"
+msgstr "Hozzáadás a következő kategóriához:"
+
+#: classes/feeds.php:984
+msgid "Available feeds"
+msgstr "Elérhető hírcsatornák"
+
+#: classes/feeds.php:996
+#: classes/pref/users.php:155
+#: classes/pref/feeds.php:590
+#: classes/pref/feeds.php:818
+msgid "Authentication"
+msgstr "Azonosítás"
+
+#: classes/feeds.php:1000
+#: classes/pref/users.php:420
+#: classes/pref/feeds.php:596
+#: classes/pref/feeds.php:822
+#: classes/pref/feeds.php:1775
+msgid "Login"
+msgstr "Belépés"
+
+#: classes/feeds.php:1003
+#: classes/pref/prefs.php:202
+#: classes/pref/feeds.php:602
+#: classes/pref/feeds.php:828
+#: classes/pref/feeds.php:1778
+msgid "Password"
+msgstr "Jelszó"
+
+#: classes/feeds.php:1013
+msgid "This feed requires authentication."
+msgstr "Ez a hírcsatorna azonosítást igényel."
+
+#: classes/feeds.php:1018
+#: classes/feeds.php:1074
+#: classes/pref/feeds.php:1796
+msgid "Subscribe"
+msgstr "Feliratkozás"
+
+#: classes/feeds.php:1021
+msgid "More feeds"
+msgstr "További hírcsatornák"
+
+#: classes/feeds.php:1044
+#: classes/feeds.php:1135
+#: classes/pref/users.php:350
+#: classes/pref/filters.php:641
+#: classes/pref/feeds.php:1259
+#: js/tt-rss.js:170
+msgid "Search"
+msgstr "Keresés"
+
+#: classes/feeds.php:1048
+msgid "Popular feeds"
+msgstr "Népszerű hírcsatornák"
+
+#: classes/feeds.php:1049
+msgid "Feed archive"
+msgstr "Hírcsatorna archívum"
+
+#: classes/feeds.php:1052
+msgid "limit:"
+msgstr "határ:"
+
+#: classes/feeds.php:1075
+#: classes/pref/users.php:376
+#: classes/pref/labels.php:284
+#: classes/pref/filters.php:398
+#: classes/pref/filters.php:667
+#: classes/pref/feeds.php:707
+#: plugins/instances/init.php:297
+msgid "Remove"
+msgstr "Eltávolít"
+
+#: classes/feeds.php:1086
+msgid "Look for"
+msgstr "Keresés"
+
+#: classes/feeds.php:1094
+msgid "Limit search to:"
+msgstr "Keresés korlátozása ezekre:"
+
+#: classes/feeds.php:1110
+msgid "This feed"
+msgstr "Ez a hírcsatorna"
+
 #: classes/backend.php:33
 msgid "Other interface tips are available in the Tiny Tiny RSS wiki."
 msgstr "További tippek a felhasználói felülethez elérhetők a Tiny Tiny RSS wikiben."
@@ -1876,7 +1777,7 @@ msgid "Error: please upload OPML file."
 msgstr "Hiba: kérem töltse fel az OPML fájlt!"
 
 #: classes/opml.php:475
-#: plugins/googlereaderimport/init.php:157
+#: plugins/googlereaderimport/init.php:161
 msgid "Error while parsing document."
 msgstr "Hiba történt a dokuementum feldoglozása közben"
 
@@ -1923,8 +1824,8 @@ msgid "Change password to"
 msgstr "Jelszó megváltoztatása"
 
 #: classes/pref/users.php:177
-#: classes/pref/feeds.php:609
-#: classes/pref/feeds.php:833
+#: classes/pref/feeds.php:610
+#: classes/pref/feeds.php:834
 msgid "Options"
 msgstr "Beállítások"
 
@@ -1965,6 +1866,21 @@ msgstr ""
 msgid "[tt-rss] Password change notification"
 msgstr "[tt-rss] Értesítés jelszó megváltoztatásáról."
 
+#: classes/pref/users.php:360
+#: classes/pref/labels.php:272
+#: classes/pref/filters.php:279
+#: classes/pref/filters.php:327
+#: classes/pref/filters.php:645
+#: classes/pref/filters.php:734
+#: classes/pref/filters.php:761
+#: classes/pref/prefs.php:905
+#: classes/pref/feeds.php:1263
+#: classes/pref/feeds.php:1533
+#: classes/pref/feeds.php:1603
+#: plugins/instances/init.php:287
+msgid "Select"
+msgstr "Kiválasztás"
+
 #: classes/pref/users.php:368
 msgid "Create user"
 msgstr "Felhasználó létrehozás"
@@ -1974,7 +1890,7 @@ msgid "Details"
 msgstr "Részletek"
 
 #: classes/pref/users.php:374
-#: classes/pref/filters.php:612
+#: classes/pref/filters.php:660
 #: plugins/instances/init.php:296
 msgid "Edit"
 msgstr "Szerkesztés"
@@ -2001,6 +1917,8 @@ msgid "No matching users found."
 msgstr "Nem található a feltételeknek megfelelő felhasználó."
 
 #: classes/pref/labels.php:22
+#: classes/pref/filters.php:268
+#: classes/pref/filters.php:725
 msgid "Caption"
 msgstr "Cím"
 
@@ -2025,120 +1943,131 @@ msgstr "Címke létrehozva: <b>%s</b>"
 msgid "Clear colors"
 msgstr "Színek visszaállítása"
 
-#: classes/pref/filters.php:60
+#: classes/pref/filters.php:96
 msgid "Articles matching this filter:"
 msgstr "A szűrőnek megfelelő hírek:"
 
-#: classes/pref/filters.php:97
+#: classes/pref/filters.php:133
 msgid "No recent articles matching this filter have been found."
 msgstr "Nem található a feltételeknek megfelelő hír."
 
-#: classes/pref/filters.php:101
+#: classes/pref/filters.php:137
 msgid "Complex expressions might not give results while testing due to issues with database server regexp implementation."
 msgstr "Az adatbázis szerver regexp implementációjával kapcsolatos problémák miatt a összetett kifejezések nem biztos, hogy eredményesek lesznek."
 
-#: classes/pref/filters.php:229
-#: classes/pref/filters.php:671
-#: classes/pref/filters.php:786
+#: classes/pref/filters.php:274
+#: classes/pref/filters.php:729
+#: classes/pref/filters.php:844
 msgid "Match"
 msgstr "Szabály"
 
-#: classes/pref/filters.php:243
-#: classes/pref/filters.php:291
-#: classes/pref/filters.php:685
-#: classes/pref/filters.php:712
+#: classes/pref/filters.php:288
+#: classes/pref/filters.php:336
+#: classes/pref/filters.php:743
+#: classes/pref/filters.php:770
 msgid "Add"
 msgstr "Hozzáad"
 
-#: classes/pref/filters.php:277
-#: classes/pref/filters.php:698
+#: classes/pref/filters.php:322
+#: classes/pref/filters.php:756
 msgid "Apply actions"
 msgstr "Műveletek alkalmazása"
 
-#: classes/pref/filters.php:327
-#: classes/pref/filters.php:727
+#: classes/pref/filters.php:372
+#: classes/pref/filters.php:785
 msgid "Enabled"
 msgstr "Engedélyezve"
 
-#: classes/pref/filters.php:336
-#: classes/pref/filters.php:730
+#: classes/pref/filters.php:381
+#: classes/pref/filters.php:788
 msgid "Match any rule"
 msgstr "Minden szabálynak megfeleljen"
 
-#: classes/pref/filters.php:345
-#: classes/pref/filters.php:733
+#: classes/pref/filters.php:390
+#: classes/pref/filters.php:791
 #, fuzzy
 msgid "Inverse matching"
 msgstr "Fordított kijelölés"
 
-#: classes/pref/filters.php:357
-#: classes/pref/filters.php:740
+#: classes/pref/filters.php:402
+#: classes/pref/filters.php:798
 msgid "Test"
 msgstr "Teszt"
 
-#: classes/pref/filters.php:390
+#: classes/pref/filters.php:435
 #, fuzzy
 msgid "(inverse)"
 msgstr "Fordított"
 
-#: classes/pref/filters.php:389
+#: classes/pref/filters.php:434
 #, fuzzy, php-format
 msgid "%s on %s in %s %s"
 msgstr "%s ebben: %s itt: %s"
 
-#: classes/pref/filters.php:609
+#: classes/pref/filters.php:657
 msgid "Combine"
 msgstr "Egyesít"
 
-#: classes/pref/filters.php:619
-#: classes/pref/feeds.php:1317
+#: classes/pref/filters.php:663
+#: classes/pref/feeds.php:1279
+#: classes/pref/feeds.php:1293
+msgid "Reset sort order"
+msgstr "Rendezési sorren visszaállítása"
+
+#: classes/pref/filters.php:671
+#: classes/pref/feeds.php:1318
 msgid "Rescore articles"
 msgstr "Hírek újrapontszámozása"
 
-#: classes/pref/filters.php:743
+#: classes/pref/filters.php:801
 msgid "Create"
 msgstr "Létrehoz"
 
-#: classes/pref/filters.php:798
+#: classes/pref/filters.php:856
 msgid "Inverse regular expression matching"
 msgstr ""
 
-#: classes/pref/filters.php:800
+#: classes/pref/filters.php:858
 msgid "on field"
 msgstr "...szerepeljen ebben a mezőben: "
 
-#: classes/pref/filters.php:806
-#: js/PrefFilterTree.js:29
+#: classes/pref/filters.php:864
+#: js/PrefFilterTree.js:45
 #: plugins/digest/digest.js:242
 msgid "in"
 msgstr "itt"
 
-#: classes/pref/filters.php:819
+#: classes/pref/filters.php:877
 msgid "Save rule"
 msgstr "Szabály mentés"
 
-#: classes/pref/filters.php:819
-#: js/functions.js:1069
+#: classes/pref/filters.php:877
+#: js/functions.js:1063
 msgid "Add rule"
 msgstr "Szabály hozzáadás"
 
-#: classes/pref/filters.php:842
+#: classes/pref/filters.php:900
 msgid "Perform Action"
 msgstr "Műveletek"
 
-#: classes/pref/filters.php:868
+#: classes/pref/filters.php:926
 msgid "with parameters:"
 msgstr "Beállítás:"
 
-#: classes/pref/filters.php:886
+#: classes/pref/filters.php:944
 msgid "Save action"
 msgstr "Művelet mentés"
 
-#: classes/pref/filters.php:886
-#: js/functions.js:1095
+#: classes/pref/filters.php:944
+#: js/functions.js:1089
 msgid "Add action"
 msgstr "Művelet hozzáadás"
 
+#: classes/pref/filters.php:967
+#, fuzzy
+msgid "[No caption]"
+msgstr "Cím"
+
 #: classes/pref/prefs.php:17
 msgid "Old password cannot be blank."
 msgstr "A régi jelszó mező nem maradhat üresen."
@@ -2342,237 +2271,264 @@ msgstr "Kiválasztott beépülők engedélyezése"
 msgid "Incorrect password"
 msgstr "Érvénytelen jelszó"
 
-#: classes/pref/feeds.php:12
+#: classes/pref/prefs.php:879
+#, 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 "Egyéni CSS deklarációkkal itt felülbírálhatja a kiválasztott téma színeit, betűtípusait és elrendezését. <a target=\"_blank\" class=\"visibleLink\" href=\"%s\">Ez a fájl</a> használható kiindulásként."
+
+#: classes/pref/prefs.php:919
+msgid "Create profile"
+msgstr "Profil létrehozás"
+
+#: classes/pref/prefs.php:942
+#: classes/pref/prefs.php:972
+msgid "(active)"
+msgstr "(aktív)"
+
+#: classes/pref/prefs.php:1006
+msgid "Remove selected profiles"
+msgstr "Eltávolítja a kiválasztott profilokat?"
+
+#: classes/pref/prefs.php:1008
+msgid "Activate profile"
+msgstr "Profil aktiválás"
+
+#: classes/pref/feeds.php:13
 msgid "Check to enable field"
 msgstr "Jelölje be a mező engedélyezéséhez"
 
-#: classes/pref/feeds.php:60
-#: classes/pref/feeds.php:208
-#: classes/pref/feeds.php:250
-#: classes/pref/feeds.php:256
-#: classes/pref/feeds.php:281
-#, fuzzy, php-format
-msgid "(%d feed)"
-msgid_plural "(%d feeds)"
-msgstr[0] "(%d hírcsatorna)"
-msgstr[1] "(%d hírcsatorna)"
-
-#: classes/pref/feeds.php:526
+#: classes/pref/feeds.php:527
 msgid "Feed Title"
 msgstr "Hírcsatorna címe"
 
-#: classes/pref/feeds.php:582
-#: classes/pref/feeds.php:808
+#: classes/pref/feeds.php:568
+#: classes/pref/feeds.php:793
+msgid "Update"
+msgstr "Frissítés"
+
+#: classes/pref/feeds.php:583
+#: classes/pref/feeds.php:809
 msgid "Article purging:"
 msgstr "Régi hírek törlése:"
 
-#: classes/pref/feeds.php:605
+#: classes/pref/feeds.php:606
 msgid "<b>Hint:</b> you need to fill in your login information if your feed requires authentication, except for Twitter feeds."
 msgstr "<b>Megjegyzés:</b> ha a hírcsatorna megköveteli a hitelesítést (kivéve a Twitter csatornákat), ki kell tölteni a bejelentkezési információkat."
 
-#: classes/pref/feeds.php:621
-#: classes/pref/feeds.php:837
+#: classes/pref/feeds.php:622
+#: classes/pref/feeds.php:838
 msgid "Hide from Popular feeds"
 msgstr "Elrejtés a Népszerű hírcsatornákból"
 
-#: classes/pref/feeds.php:633
-#: classes/pref/feeds.php:843
+#: classes/pref/feeds.php:634
+#: classes/pref/feeds.php:844
 msgid "Include in e-mail digest"
 msgstr "Hozzáadás az e-mail összefoglalóhoz"
 
-#: classes/pref/feeds.php:646
-#: classes/pref/feeds.php:849
+#: classes/pref/feeds.php:647
+#: classes/pref/feeds.php:850
 msgid "Always display image attachments"
 msgstr "Kép csatolmányokat mindig jelenítse meg"
 
-#: classes/pref/feeds.php:659
-#: classes/pref/feeds.php:857
+#: classes/pref/feeds.php:660
+#: classes/pref/feeds.php:858
 msgid "Do not embed images"
 msgstr "Ne ágyazza be a képeket"
 
-#: classes/pref/feeds.php:672
-#: classes/pref/feeds.php:865
+#: classes/pref/feeds.php:673
+#: classes/pref/feeds.php:866
 msgid "Cache images locally"
 msgstr "Képek helyi tárolása"
 
-#: classes/pref/feeds.php:684
-#: classes/pref/feeds.php:871
+#: classes/pref/feeds.php:685
+#: classes/pref/feeds.php:872
 msgid "Mark updated articles as unread"
 msgstr "Frissült hírek megjelölése olvasatlanként"
 
-#: classes/pref/feeds.php:690
+#: classes/pref/feeds.php:691
 msgid "Icon"
 msgstr "Ikon"
 
-#: classes/pref/feeds.php:704
+#: classes/pref/feeds.php:705
 msgid "Replace"
 msgstr "Csere"
 
-#: classes/pref/feeds.php:723
+#: classes/pref/feeds.php:724
 msgid "Resubscribe to push updates"
 msgstr "Újra feliratkozás a push frissítésekre"
 
-#: classes/pref/feeds.php:730
+#: classes/pref/feeds.php:731
 msgid "Resets PubSubHubbub subscription status for push-enabled feeds."
 msgstr "Visszaállítja a PubSubHubbub feliratkozást a push-engedélyezett hírcsatornákhoz."
 
-#: classes/pref/feeds.php:1111
-#: classes/pref/feeds.php:1164
+#: classes/pref/feeds.php:1112
+#: classes/pref/feeds.php:1165
 msgid "All done."
 msgstr "Kész."
 
-#: classes/pref/feeds.php:1219
+#: classes/pref/feeds.php:1220
 msgid "Feeds with errors"
 msgstr "Hibás hírcsatornák"
 
-#: classes/pref/feeds.php:1239
+#: classes/pref/feeds.php:1240
 msgid "Inactive feeds"
 msgstr "Inaktív hírcsatornák"
 
-#: classes/pref/feeds.php:1276
+#: classes/pref/feeds.php:1277
 msgid "Edit selected feeds"
 msgstr "Kijelölt hírcsatornák szerkeztése"
 
-#: classes/pref/feeds.php:1278
-#: classes/pref/feeds.php:1292
-msgid "Reset sort order"
-msgstr "Rendezési sorren visszaállítása"
-
-#: classes/pref/feeds.php:1280
-#: js/prefs.js:1764
+#: classes/pref/feeds.php:1281
+#: js/prefs.js:1770
 msgid "Batch subscribe"
 msgstr "Kötegelt feliratkozás"
 
-#: classes/pref/feeds.php:1285
+#: classes/pref/feeds.php:1286
 msgid "Categories"
 msgstr "Kategóriák"
 
-#: classes/pref/feeds.php:1288
+#: classes/pref/feeds.php:1289
 msgid "Add category"
 msgstr "Kategória hozzáadás"
 
-#: classes/pref/feeds.php:1290
+#: classes/pref/feeds.php:1291
 msgid "(Un)hide empty categories"
 msgstr "Üres kategóriák elrejtése/megjelenítése"
 
-#: classes/pref/feeds.php:1294
+#: classes/pref/feeds.php:1295
 msgid "Remove selected"
 msgstr "Kijelölt eltávolítása"
 
-#: classes/pref/feeds.php:1308
+#: classes/pref/feeds.php:1309
 msgid "More actions..."
 msgstr "További műveletek..."
 
-#: classes/pref/feeds.php:1312
+#: classes/pref/feeds.php:1313
 msgid "Manual purge"
 msgstr "Kézi takarítás (régi hírek törlése)"
 
-#: classes/pref/feeds.php:1316
+#: classes/pref/feeds.php:1317
 msgid "Clear feed data"
 msgstr "Hírcsatorna-adatok törlése"
 
-#: classes/pref/feeds.php:1367
+#: classes/pref/feeds.php:1368
 msgid "OPML"
 msgstr "OPML"
 
-#: classes/pref/feeds.php:1369
+#: classes/pref/feeds.php:1370
 msgid "Using OPML you can export and import your feeds, filters, labels and Tiny Tiny RSS settings."
 msgstr "Az OPML használatával hírcsatornákat, szűrőket, címkéket és beállításokat exportálhat, importálhat."
 
-#: classes/pref/feeds.php:1371
+#: classes/pref/feeds.php:1372
 msgid "Only main settings profile can be migrated using OPML."
 msgstr "Csak a fő beállításprofilt lehet OPML használatával költöztetni."
 
-#: classes/pref/feeds.php:1384
+#: classes/pref/feeds.php:1385
 msgid "Import my OPML"
 msgstr "OPML importálása"
 
-#: classes/pref/feeds.php:1388
+#: classes/pref/feeds.php:1389
 msgid "Filename:"
 msgstr "Fájlnév:"
 
-#: classes/pref/feeds.php:1390
+#: classes/pref/feeds.php:1391
 msgid "Include settings"
 msgstr "Beállításokkal együtt"
 
-#: classes/pref/feeds.php:1394
+#: classes/pref/feeds.php:1395
 msgid "Export OPML"
 msgstr "Exportálás OPML-be"
 
-#: classes/pref/feeds.php:1398
+#: classes/pref/feeds.php:1399
 msgid "Your OPML can be published publicly and can be subscribed by anyone who knows the URL below."
 msgstr "Az OPML nyilvánosságra hozható és bárki feliratkozhat rá, aki ismeri az alábbi URL-t."
 
-#: classes/pref/feeds.php:1400
+#: classes/pref/feeds.php:1401
 msgid "Published OPML does not include your Tiny Tiny RSS settings, feeds that require authentication or feeds hidden from Popular feeds."
 msgstr "A publikált OPML nem tartalmazza a beállításokat, az azonosítást igénylő hírcsatornákat és az Népszerű hírcsatornákból elrejtetteket."
 
 #: classes/pref/feeds.php:1403
+msgid "Public OPML URL"
+msgstr "Publikus OPML URL"
+
+#: classes/pref/feeds.php:1404
 msgid "Display published OPML URL"
 msgstr "Publikált OPML URL mejelenítése"
 
-#: classes/pref/feeds.php:1413
+#: classes/pref/feeds.php:1414
 msgid "Firefox integration"
 msgstr "Firefox integráció"
 
-#: classes/pref/feeds.php:1415
+#: classes/pref/feeds.php:1416
 msgid "This Tiny Tiny RSS site can be used as a Firefox Feed Reader by clicking the link below."
 msgstr "Ez a Tiny Tiny RSS oldal beállítható a Firefox böngésző alapértelmezett hírcsatorna-olvasójaként. Ehhez kattintson az alábbi linkre!"
 
-#: classes/pref/feeds.php:1422
+#: classes/pref/feeds.php:1423
 msgid "Click here to register this site as a feed reader."
 msgstr "Kattintson ide az oldal hírcsatorna-olvasóként való beállításához!"
 
-#: classes/pref/feeds.php:1430
+#: classes/pref/feeds.php:1431
 msgid "Published & shared articles / Generated feeds"
 msgstr "Publikált és megosztott hírek / Generált hírcsatornák"
 
-#: classes/pref/feeds.php:1432
+#: classes/pref/feeds.php:1433
 msgid "Published articles and generated feeds"
 msgstr "Publikált hírek és generált hírcsatornák"
 
-#: classes/pref/feeds.php:1434
+#: classes/pref/feeds.php:1435
 msgid "Published articles are exported as a public RSS feed and can be subscribed by anyone who knows the URL specified below."
 msgstr "A program a publikált hírekből egy publikus RSS hírcsatornát készít, amelyre bárki feliratkozhat, aki tudja a lenti címet."
 
-#: classes/pref/feeds.php:1440
+#: classes/pref/feeds.php:1441
 msgid "Display URL"
 msgstr "URL megjelenítés"
 
-#: classes/pref/feeds.php:1443
+#: classes/pref/feeds.php:1444
 msgid "Clear all generated URLs"
 msgstr "Minden generált URL törlése"
 
-#: classes/pref/feeds.php:1445
+#: classes/pref/feeds.php:1446
 msgid "Articles shared by URL"
 msgstr "URL alapján megosztott hírek"
 
-#: classes/pref/feeds.php:1447
+#: classes/pref/feeds.php:1448
 msgid "You can disable all articles shared by unique URLs here."
 msgstr "Itt minden egyedi URL-el megosztott hírt le lehet tiltani."
 
-#: classes/pref/feeds.php:1450
+#: classes/pref/feeds.php:1451
 msgid "Unshare all articles"
 msgstr "Minden hír megosztásának visszavonása"
 
-#: classes/pref/feeds.php:1528
+#: classes/pref/feeds.php:1529
 msgid "These feeds have not been updated with new content for 3 months (oldest first):"
 msgstr "Ezek a hírcsatornák 3 hónapja nem frissültek új tartalommal (régebbiek elöl):"
 
-#: classes/pref/feeds.php:1565
-#: classes/pref/feeds.php:1635
+#: classes/pref/feeds.php:1566
+#: classes/pref/feeds.php:1636
 msgid "Click to edit feed"
 msgstr "Kattintson a hírcsatorna szerkesztéséhez"
 
-#: classes/pref/feeds.php:1583
-#: classes/pref/feeds.php:1655
+#: classes/pref/feeds.php:1584
+#: classes/pref/feeds.php:1656
 msgid "Unsubscribe from selected feeds"
 msgstr "Leiratkozás a kiválasztott hírcsatornákról"
 
-#: classes/pref/feeds.php:1594
+#: classes/pref/feeds.php:1595
 msgid "These feeds have not been updated because of errors:"
 msgstr "Váratlan hibák miatt ezek a hírcsatornák nem frissültek:"
 
+#: classes/pref/feeds.php:1758
+msgid "Add one valid RSS feed per line (no feed detection is done)"
+msgstr "Soronként egy érvényes RSS hírcsatornát adjon meg"
+
+#: classes/pref/feeds.php:1767
+msgid "Feeds to subscribe, One per line"
+msgstr "Feliratkozás hírcsatornákra, soronként egy"
+
+#: classes/pref/feeds.php:1789
+msgid "Feeds require authentication."
+msgstr "Ez a hírcsatorna azonosítást igényel."
+
 #: plugins/digest/digest_body.php:59
 #, fuzzy
 msgid "Your browser doesn't support Javascript, which is required for this application to function properly. Please check your browser settings."
@@ -2832,24 +2788,24 @@ msgstr "Érték megadás"
 msgid "No file uploaded."
 msgstr ""
 
-#: plugins/googlereaderimport/init.php:149
+#: plugins/googlereaderimport/init.php:153
 #, php-format
 msgid "All done. %d out of %d articles imported."
 msgstr ""
 
-#: plugins/googlereaderimport/init.php:153
+#: plugins/googlereaderimport/init.php:157
 msgid "The document has incorrect format."
 msgstr ""
 
-#: plugins/googlereaderimport/init.php:322
+#: plugins/googlereaderimport/init.php:326
 msgid "Import starred or shared items from Google Reader"
 msgstr ""
 
-#: plugins/googlereaderimport/init.php:326
+#: plugins/googlereaderimport/init.php:330
 msgid "Paste your starred.json or shared.json into the form below."
 msgstr ""
 
-#: plugins/googlereaderimport/init.php:340
+#: plugins/googlereaderimport/init.php:344
 msgid "Import my Starred items"
 msgstr ""
 
@@ -2857,6 +2813,38 @@ msgstr ""
 msgid "Linked"
 msgstr "Linkelt"
 
+#: plugins/instances/init.php:207
+#: plugins/instances/init.php:399
+msgid "Instance"
+msgstr "Pédány"
+
+#: plugins/instances/init.php:218
+#: plugins/instances/init.php:315
+#: plugins/instances/init.php:408
+msgid "Instance URL"
+msgstr "Példány URL"
+
+#: plugins/instances/init.php:229
+#: plugins/instances/init.php:418
+msgid "Access key:"
+msgstr "Hozzáférési kulcs:"
+
+#: plugins/instances/init.php:232
+#: plugins/instances/init.php:316
+#: plugins/instances/init.php:421
+msgid "Access key"
+msgstr "Hozzáférési kulcs"
+
+#: plugins/instances/init.php:236
+#: plugins/instances/init.php:425
+msgid "Use one access key for both linked instances."
+msgstr "Egy hozzáférési kulcs használata minden linkelt példányhoz."
+
+#: plugins/instances/init.php:244
+#: plugins/instances/init.php:433
+msgid "Generate new key"
+msgstr "Új kulcs generálása"
+
 #: plugins/instances/init.php:295
 msgid "Link instance"
 msgstr "Link példány"
@@ -2877,6 +2865,10 @@ msgstr "Állapot"
 msgid "Stored feeds"
 msgstr "Tárolt hírcsatornák"
 
+#: plugins/instances/init.php:437
+msgid "Create link"
+msgstr "Link létrehozás"
+
 #: plugins/share/init.php:27
 msgid "Share by URL"
 msgstr "Megosztás URL-el"
@@ -2936,173 +2928,177 @@ msgstr "Biztos, hogy be akarja jelenteni ezt a hibát a tt-rss.org oldalon? A je
 msgid "close"
 msgstr ""
 
-#: js/functions.js:627
+#: js/functions.js:621
 msgid "Date syntax appears to be correct:"
 msgstr "A dátum szintaxisa helyesnek tűnik:"
 
-#: js/functions.js:630
+#: js/functions.js:624
 msgid "Date syntax is incorrect."
 msgstr "A dátum szintaxisa helytelen."
 
-#: js/functions.js:724
+#: js/functions.js:636
+msgid "Error explained"
+msgstr ""
+
+#: js/functions.js:718
 msgid "Upload complete."
 msgstr ""
 
-#: js/functions.js:748
+#: js/functions.js:742
 msgid "Remove stored feed icon?"
 msgstr "Eltávolítja a hírcsatorna tárolt ikonját?"
 
-#: js/functions.js:753
+#: js/functions.js:747
 #, fuzzy
 msgid "Removing feed icon..."
 msgstr "Eltávolítja a hírcsatorna tárolt ikonját?"
 
-#: js/functions.js:758
+#: js/functions.js:752
 #, fuzzy
 msgid "Feed icon removed."
 msgstr "Hírcsatorna nem található"
 
-#: js/functions.js:780
+#: js/functions.js:774
 msgid "Please select an image file to upload."
 msgstr "Kérem válasszon egy feltöltendő képet."
 
-#: js/functions.js:782
+#: js/functions.js:776
 msgid "Upload new icon for this feed?"
 msgstr "Új ikon tölt fel ehhez a hírcsatornához?"
 
-#: js/functions.js:783
+#: js/functions.js:777
 #, fuzzy
 msgid "Uploading, please wait..."
 msgstr "Betöltés, kérem várjon..."
 
-#: js/functions.js:799
+#: js/functions.js:793
 msgid "Please enter label caption:"
 msgstr "Adja meg  címke nevét:"
 
-#: js/functions.js:804
+#: js/functions.js:798
 msgid "Can't create label: missing caption."
 msgstr "Címke létrehozása sikertelen: nincs megadva név."
 
-#: js/functions.js:847
+#: js/functions.js:841
 msgid "Subscribe to Feed"
 msgstr "Feliratkozás hírcsatornára"
 
-#: js/functions.js:874
+#: js/functions.js:868
 msgid "Subscribed to %s"
 msgstr "Feliratkozva ide: %s"
 
-#: js/functions.js:879
+#: js/functions.js:873
 msgid "Specified URL seems to be invalid."
 msgstr "A megadott URL érvénytelennek tűnik."
 
-#: js/functions.js:882
+#: js/functions.js:876
 msgid "Specified URL doesn't seem to contain any feeds."
 msgstr "A megadott URL nem tartalmaz hírcsatornákat."
 
-#: js/functions.js:935
+#: js/functions.js:929
 msgid "Couldn't download the specified URL: %s"
 msgstr "A megadott URL nem tölthető be: %s"
 
-#: js/functions.js:939
+#: js/functions.js:933
 msgid "You are already subscribed to this feed."
 msgstr "Már feliratkozott erre a hírcsatornára."
 
-#: js/functions.js:1069
+#: js/functions.js:1063
 msgid "Edit rule"
 msgstr "Szabály szerkesztése"
 
-#: js/functions.js:1095
+#: js/functions.js:1089
 msgid "Edit action"
 msgstr "Művelet szerkesztése"
 
-#: js/functions.js:1132
+#: js/functions.js:1126
 msgid "Create Filter"
 msgstr "Szűrő létrehozás"
 
-#: js/functions.js:1247
+#: js/functions.js:1241
 msgid "Reset subscription? Tiny Tiny RSS will try to subscribe to the notification hub again on next feed update."
 msgstr "Feliratkozás visszaállítása? a következő frissítéskor Tiny Tiny RSS megpróbál automatikusan újra feliratkozni."
 
-#: js/functions.js:1258
+#: js/functions.js:1252
 #, fuzzy
 msgid "Subscription reset."
 msgstr "Feliratkozás hírcsatornára..."
 
-#: js/functions.js:1268
+#: js/functions.js:1262
 #: js/tt-rss.js:619
 msgid "Unsubscribe from %s?"
 msgstr "Leiratkozik innen: %s?"
 
-#: js/functions.js:1271
+#: js/functions.js:1265
 msgid "Removing feed..."
 msgstr ""
 
-#: js/functions.js:1379
+#: js/functions.js:1373
 msgid "Please enter category title:"
 msgstr "Adja meg a kategória címét:"
 
-#: js/functions.js:1410
+#: js/functions.js:1404
 msgid "Generate new syndication address for this feed?"
 msgstr "Új hírszolgáltatási cím generálásása ehhez a hírcsatornához?"
 
-#: js/functions.js:1414
-#: js/prefs.js:1234
+#: js/functions.js:1408
+#: js/prefs.js:1222
 msgid "Trying to change address..."
 msgstr ""
 
-#: js/functions.js:1601
+#: js/functions.js:1595
 #: js/tt-rss.js:396
 #: js/tt-rss.js:600
 msgid "You can't edit this kind of feed."
 msgstr "Ezt a hírcsatornatípust nem szerkesztheted."
 
-#: js/functions.js:1616
+#: js/functions.js:1610
 msgid "Edit Feed"
 msgstr "Hírcsatorna szerkesztése"
 
-#: js/functions.js:1622
+#: js/functions.js:1616
 #: js/prefs.js:194
 #: js/prefs.js:749
 #, fuzzy
 msgid "Saving data..."
 msgstr "Adatok mentése"
 
-#: js/functions.js:1654
+#: js/functions.js:1648
 msgid "More Feeds"
 msgstr "További hírcsatornák"
 
-#: js/functions.js:1715
-#: js/functions.js:1825
+#: js/functions.js:1709
+#: js/functions.js:1819
 #: 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
+#: js/prefs.js:1198
+#: js/prefs.js:1343
 msgid "No feeds are selected."
 msgstr "Nincs kiválasztott hírcsatorna."
 
-#: js/functions.js:1757
+#: js/functions.js:1751
 msgid "Remove selected feeds from the archive? Feeds with stored articles will not be removed."
 msgstr "Eltávolítja a kijelölt hírcsatornákat az archívumból? A tárolt hírekkel rendelkező hírcsatornák nem lesznek törölve."
 
-#: js/functions.js:1796
+#: js/functions.js:1790
 msgid "Feeds with update errors"
 msgstr "Hírcsatornák frissítési hibával"
 
-#: js/functions.js:1807
-#: js/prefs.js:1192
+#: js/functions.js:1801
+#: js/prefs.js:1180
 msgid "Remove selected feeds?"
 msgstr "Eltávolítja a kiválasztott hírcsatornákat?"
 
-#: js/functions.js:1810
-#: js/prefs.js:1195
+#: js/functions.js:1804
+#: js/prefs.js:1183
 #, fuzzy
 msgid "Removing selected feeds..."
 msgstr "Eltávolítja a kiválasztott hírcsatornákat?"
 
-#: js/functions.js:1908
+#: js/functions.js:1902
 msgid "Help"
 msgstr "Súgó"
 
@@ -3114,7 +3110,7 @@ msgstr "Kategória szerkesztése"
 msgid "Remove category"
 msgstr "Kategória eltávolítása"
 
-#: js/PrefFilterTree.js:32
+#: js/PrefFilterTree.js:48
 msgid "Inverse"
 msgstr "Fordított"
 
@@ -3154,7 +3150,7 @@ msgid "Removing selected labels..."
 msgstr "Eltávolítja a kiválasztott címkéket?"
 
 #: js/prefs.js:295
-#: js/prefs.js:1396
+#: js/prefs.js:1384
 msgid "No labels are selected."
 msgstr "Nincs kiválasztott címke."
 
@@ -3265,154 +3261,154 @@ msgstr "Több hírcsatorna szerkesztése"
 msgid "Save changes to selected feeds?"
 msgstr "Leiratkozik a kiválasztott hírcsatornákról?"
 
-#: js/prefs.js:797
+#: js/prefs.js:785
 msgid "OPML Import"
 msgstr "OPML importálás"
 
-#: js/prefs.js:824
+#: js/prefs.js:812
 msgid "Please choose an OPML file first."
 msgstr "Először válasszon egy OPML fjlt."
 
-#: js/prefs.js:827
+#: js/prefs.js:815
 #: plugins/import_export/import_export.js:115
 #: plugins/googlereaderimport/init.js:45
 #, fuzzy
 msgid "Importing, please wait..."
 msgstr "Betöltés, kérem várjon..."
 
-#: js/prefs.js:980
+#: js/prefs.js:968
 msgid "Reset to defaults?"
 msgstr "Visszaállítja a gyári beállításokat?"
 
-#: js/prefs.js:1099
+#: js/prefs.js:1087
 msgid "Remove category %s? Any nested feeds would be placed into Uncategorized."
 msgstr "Eltávolítja %s kategóriát? Minden tartalmazott hírcsatorna a Kategorizálatlanba fog kerülni."
 
-#: js/prefs.js:1105
+#: js/prefs.js:1093
 #, fuzzy
 msgid "Removing category..."
 msgstr "Kategória eltávolítása"
 
-#: js/prefs.js:1126
+#: js/prefs.js:1114
 msgid "Remove selected categories?"
 msgstr "Kiválasztott kategóriák eltávolítása?"
 
-#: js/prefs.js:1129
+#: js/prefs.js:1117
 #, fuzzy
 msgid "Removing selected categories..."
 msgstr "Kiválasztott kategóriák eltávolítása?"
 
-#: js/prefs.js:1142
+#: js/prefs.js:1130
 msgid "No categories are selected."
 msgstr "Nincs kategória kiválaszta."
 
-#: js/prefs.js:1150
+#: js/prefs.js:1138
 msgid "Category title:"
 msgstr "Kategória címe:"
 
-#: js/prefs.js:1154
+#: js/prefs.js:1142
 #, fuzzy
 msgid "Creating category..."
 msgstr "Szűrő létrehozása..."
 
-#: js/prefs.js:1181
+#: js/prefs.js:1169
 msgid "Feeds without recent updates"
 msgstr "Hírcsatornák frissítések nélkül"
 
-#: js/prefs.js:1230
+#: js/prefs.js:1218
 msgid "Replace current OPML publishing address with a new one?"
 msgstr "Lecseréli a jelenlegi OPML hírcsatornája címét egy újra?"
 
-#: js/prefs.js:1319
+#: js/prefs.js:1307
 #, fuzzy
 msgid "Clearing feed..."
 msgstr "Hírcsatorna-adatok törlése"
 
-#: js/prefs.js:1339
+#: js/prefs.js:1327
 msgid "Rescore articles in selected feeds?"
 msgstr "Újrapontszámozza a híreket a kijelölt hírcsatornákban?"
 
-#: js/prefs.js:1342
+#: js/prefs.js:1330
 #, fuzzy
 msgid "Rescoring selected feeds..."
 msgstr "Újrapontszámozza a híreket a kijelölt hírcsatornákban?"
 
-#: js/prefs.js:1362
+#: js/prefs.js:1350
 msgid "Rescore all articles? This operation may take a lot of time."
 msgstr "Újrapontoz minden cíkket? Ez a művelet hosszú ideig is eltarthat."
 
-#: js/prefs.js:1365
+#: js/prefs.js:1353
 #, fuzzy
 msgid "Rescoring feeds..."
 msgstr "Hírcsatorna újrapontozása"
 
-#: js/prefs.js:1382
+#: js/prefs.js:1370
 msgid "Reset selected labels to default colors?"
 msgstr "Visszaállítja a kijelölt címkék színét az alapértelmezettre?"
 
-#: js/prefs.js:1419
+#: js/prefs.js:1407
 msgid "Settings Profiles"
 msgstr "Beállítási profilok"
 
-#: js/prefs.js:1428
+#: js/prefs.js:1416
 msgid "Remove selected profiles? Active and default profiles will not be removed."
 msgstr "Eltávolítja a kijelölt profilokat? Az aktív és az alapértelmezett profil nem lesz törölve."
 
-#: js/prefs.js:1431
+#: js/prefs.js:1419
 #, fuzzy
 msgid "Removing selected profiles..."
 msgstr "Eltávolítja a kiválasztott profilokat?"
 
-#: js/prefs.js:1446
+#: js/prefs.js:1434
 msgid "No profiles are selected."
 msgstr "Nincsenek kiválasztott profilok."
 
-#: js/prefs.js:1454
-#: js/prefs.js:1507
+#: js/prefs.js:1442
+#: js/prefs.js:1495
 msgid "Activate selected profile?"
 msgstr "Aktiválja a kiválasztott profilt?"
 
-#: js/prefs.js:1470
-#: js/prefs.js:1523
+#: js/prefs.js:1458
+#: js/prefs.js:1511
 msgid "Please choose a profile to activate."
 msgstr "Válasszon egy aktiválandó profilt."
 
-#: js/prefs.js:1475
+#: js/prefs.js:1463
 #, fuzzy
 msgid "Creating profile..."
 msgstr "Profil létrehozás"
 
-#: js/prefs.js:1531
+#: js/prefs.js:1519
 msgid "This will invalidate all previously generated feed URLs. Continue?"
 msgstr "Ez érvényteleníteni fog minden korábban generált hírcsatorna URL-t. Folytatja?"
 
-#: js/prefs.js:1534
-#: js/prefs.js:1553
+#: js/prefs.js:1522
+#: js/prefs.js:1541
 msgid "Clearing URLs..."
 msgstr ""
 
-#: js/prefs.js:1541
+#: js/prefs.js:1529
 #, fuzzy
 msgid "Generated URLs cleared."
 msgstr "Új URL generálás"
 
-#: js/prefs.js:1550
+#: js/prefs.js:1538
 msgid "This will invalidate all previously shared article URLs. Continue?"
 msgstr "Ez érvényteleníteni fog minden korábban megosztott hír URL-t. Folytatja?"
 
-#: js/prefs.js:1560
+#: js/prefs.js:1548
 msgid "Shared URLs cleared."
 msgstr ""
 
-#: js/prefs.js:1648
+#: js/prefs.js:1654
 msgid "Label Editor"
 msgstr "Címke Szerkesztő"
 
-#: js/prefs.js:1770
+#: js/prefs.js:1776
 msgid "Subscribing to feeds..."
 msgstr "Feliratkozás a hírcsatornákra..."
 
-#: js/prefs.js:1807
+#: js/prefs.js:1813
 msgid "Clear stored data for this plugin?"
 msgstr "Törli a beépülő tárolt adatait?"
 
@@ -3433,29 +3429,33 @@ msgstr "Először engedélyezze a mail beépülőt."
 msgid "Please enable embed_original plugin first."
 msgstr "Először engedélyezze az embed_original beépülőt."
 
+#: js/tt-rss.js:587
+msgid "Select item(s) by tags"
+msgstr "Elemek kijelölése címkék szerint"
+
 #: js/tt-rss.js:608
 msgid "You can't unsubscribe from the category."
 msgstr "Ebből a kategóriából nem ."
 
 #: js/tt-rss.js:613
-#: js/tt-rss.js:769
+#: js/tt-rss.js:765
 msgid "Please select some feed first."
 msgstr "Válasszon hírcsatorná(ka)t!"
 
-#: js/tt-rss.js:764
+#: js/tt-rss.js:760
 msgid "You can't rescore this kind of feed."
 msgstr "Ez a hírcsatorna típust nem lehet újraponszámozni."
 
-#: js/tt-rss.js:774
+#: js/tt-rss.js:770
 msgid "Rescore articles in %s?"
 msgstr "Újrapontszámozza %s híreit?"
 
-#: js/tt-rss.js:777
+#: js/tt-rss.js:773
 #, fuzzy
 msgid "Rescoring articles..."
 msgstr "Hírek újrapontszámozása"
 
-#: js/tt-rss.js:911
+#: js/tt-rss.js:907
 msgid "New version available!"
 msgstr "Új verzió érhető el."
 
@@ -3486,116 +3486,112 @@ msgstr "Publikálás visszavonása"
 #: js/viewfeed.js:734
 #: js/viewfeed.js:797
 #: js/viewfeed.js:831
-#: js/viewfeed.js:968
-#: js/viewfeed.js:1011
-#: js/viewfeed.js:1064
-#: js/viewfeed.js:2108
+#: js/viewfeed.js:951
+#: js/viewfeed.js:994
+#: js/viewfeed.js:1047
+#: js/viewfeed.js:2096
 #: plugins/mailto/init.js:7
 #: plugins/mail/mail.js:7
 msgid "No articles are selected."
 msgstr "Nincsen kiválasztott hír."
 
-#: js/viewfeed.js:948
-msgid "Mark all visible articles in %s as read?"
-msgstr "Minden látható hírt megjelöl olvasottként itt: %s?"
-
-#: js/viewfeed.js:976
+#: js/viewfeed.js:959
 #, fuzzy
 msgid "Delete %d selected article in %s?"
 msgid_plural "Delete %d selected articles in %s?"
 msgstr[0] "%d kijelölt hír törlése innen: %s?"
 msgstr[1] "%d kijelölt hír törlése innen: %s?"
 
-#: js/viewfeed.js:978
+#: js/viewfeed.js:961
 #, fuzzy
 msgid "Delete %d selected article?"
 msgid_plural "Delete %d selected articles?"
 msgstr[0] "Törli a %d kijelölt hírt?"
 msgstr[1] "Törli a %d kijelölt hírt?"
 
-#: js/viewfeed.js:1020
+#: js/viewfeed.js:1003
 #, fuzzy
 msgid "Archive %d selected article in %s?"
 msgid_plural "Archive %d selected articles in %s?"
 msgstr[0] "%d kijelölt hír archiválása inne: %s?"
 msgstr[1] "%d kijelölt hír archiválása inne: %s?"
 
-#: js/viewfeed.js:1023
+#: js/viewfeed.js:1006
 #, fuzzy
 msgid "Move %d archived article back?"
 msgid_plural "Move %d archived articles back?"
 msgstr[0] "%d archivált hír visszaállítása?"
 msgstr[1] "%d archivált hír visszaállítása?"
 
-#: js/viewfeed.js:1025
+#: js/viewfeed.js:1008
 msgid "Please note that unstarred articles might get purged on next feed update."
 msgstr ""
 
-#: js/viewfeed.js:1070
+#: js/viewfeed.js:1053
 #, fuzzy
 msgid "Mark %d selected article in %s as read?"
 msgid_plural "Mark %d selected articles in %s as read?"
 msgstr[0] "%d kijelölt hír megjelölése olvasottként itt: %s?"
 msgstr[1] "%d kijelölt hír megjelölése olvasottként itt: %s?"
 
-#: js/viewfeed.js:1094
+#: js/viewfeed.js:1077
 msgid "Edit article Tags"
 msgstr "Hír címkéinek szerkesztése"
 
-#: js/viewfeed.js:1100
+#: js/viewfeed.js:1083
 #, fuzzy
 msgid "Saving article tags..."
 msgstr "Hír címkéinek szerkesztése"
 
-#: js/viewfeed.js:1337
+#: js/viewfeed.js:1323
 msgid "No article is selected."
 msgstr "Nincs kiválasztott hír."
 
-#: js/viewfeed.js:1372
+#: js/viewfeed.js:1358
 msgid "No articles found to mark"
 msgstr "Nincs megjelölendő hír."
 
-#: js/viewfeed.js:1374
+#: js/viewfeed.js:1360
 #, fuzzy
 msgid "Mark %d article as read?"
 msgid_plural "Mark %d articles as read?"
 msgstr[0] "%d hír megjelölése olvasottként?"
 msgstr[1] "%d hír megjelölése olvasottként?"
 
-#: js/viewfeed.js:1884
+#: js/viewfeed.js:1872
 msgid "Open original article"
 msgstr "Eredeti hír megjelenítése"
 
-#: js/viewfeed.js:1890
+#: js/viewfeed.js:1878
 msgid "Display article URL"
 msgstr "URL megjelenítése"
 
-#: js/viewfeed.js:1909
+#: js/viewfeed.js:1897
 #, fuzzy
 msgid "Toggle marked"
 msgstr "Csillagoz"
 
-#: js/viewfeed.js:1995
+#: js/viewfeed.js:1983
 msgid "Remove label"
 msgstr "Címke eltávolítás"
 
-#: js/viewfeed.js:2019
+#: js/viewfeed.js:2007
 msgid "Playing..."
 msgstr "Lejátszás..."
 
-#: js/viewfeed.js:2020
+#: js/viewfeed.js:2008
 msgid "Click to pause"
 msgstr "Kattintson a megállításhoz"
 
-#: js/viewfeed.js:2077
+#: js/viewfeed.js:2065
 msgid "Please enter new score for selected articles:"
 msgstr "Adjon meg egy új pontszámot a kijelölt hírekhez:"
 
-#: js/viewfeed.js:2119
+#: js/viewfeed.js:2107
 msgid "Please enter new score for this article:"
 msgstr "Adjon meg egy új pontszámot a hírhez:"
 
-#: js/viewfeed.js:2152
+#: js/viewfeed.js:2140
 msgid "Article URL:"
 msgstr "Hír URL:"
 
@@ -3705,6 +3701,21 @@ msgstr "Megosztás URL-el"
 msgid "Live updating is considered experimental. Backup your tt-rss directory before continuing. Please type 'yes' to continue."
 msgstr "Az élő frissítés még kisérleti fázisban van. A folytatás előtt mentse el a tt-rss könyvtárának tartalmát. A folytatáshoz írja be a 'yes' szót."
 
+#, fuzzy
+#~ msgid "(%d feed)"
+#~ msgid_plural "(%d feeds)"
+#~ msgstr[0] "(%d hírcsatorna)"
+#~ msgstr[1] "(%d hírcsatorna)"
+
+#~ msgid "Notice"
+#~ msgstr "Értesítés"
+
+#~ msgid "Tag Cloud"
+#~ msgstr "Címkefelhő"
+
+#~ msgid "Mark all visible articles in %s as read?"
+#~ msgstr "Minden látható hírt megjelöl olvasottként itt: %s?"
+
 #~ msgid "Date"
 #~ msgstr "Dátum"
 
index 5998ad7f88adfe46ed62f4c6713912a17f4f3433..56b0830ac1f9d42447d09c198a190536fc4731a9 100644 (file)
Binary files a/locale/it_IT/LC_MESSAGES/messages.mo and b/locale/it_IT/LC_MESSAGES/messages.mo differ
index e280d4b0bee21cdc0cc8824d985edd881229c3ac..d216dbce061853b37bbad317f88267a28881312a 100644 (file)
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Tiny Tiny RSS\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-03-31 12:47+0400\n"
+"POT-Creation-Date: 2013-04-01 16:28+0400\n"
 "PO-Revision-Date: 2012-02-14 08:31+0000\n"
 "Last-Translator: gothfox <cthulhoo@gmail.com>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -138,9 +138,9 @@ msgstr "Il database di Tiny Tiny RSS è aggiornato."
 #: register.php:336
 #: register.php:346
 #: register.php:358
-#: classes/handler/public.php:625
-#: classes/handler/public.php:713
-#: classes/handler/public.php:795
+#: classes/handler/public.php:626
+#: classes/handler/public.php:714
+#: classes/handler/public.php:796
 msgid "Return to Tiny Tiny RSS"
 msgstr "Ritorna a Tiny Tiny RSS"
 
@@ -256,36 +256,37 @@ msgstr "Test di sanitizzazione dell&apos;SQL fallito; controllare il database e
 
 #: index.php:135
 #: index.php:154
-#: index.php:264
-#: prefs.php:102
+#: index.php:263
+#: prefs.php:103
 #: classes/backend.php:5
 #: classes/pref/labels.php:296
-#: classes/pref/filters.php:628
-#: classes/pref/feeds.php:1330
+#: classes/pref/filters.php:680
+#: classes/pref/feeds.php:1331
 #: plugins/digest/digest_body.php:63
 #: js/feedlist.js:128
 #: js/feedlist.js:448
 #: js/functions.js:420
-#: js/functions.js:814
-#: js/functions.js:1250
-#: js/functions.js:1385
-#: js/functions.js:1697
+#: js/functions.js:808
+#: js/functions.js:1244
+#: js/functions.js:1379
+#: js/functions.js:1691
 #: js/prefs.js:86
 #: js/prefs.js:576
 #: js/prefs.js:666
-#: js/prefs.js:870
-#: js/prefs.js:1457
-#: js/prefs.js:1510
-#: js/prefs.js:1568
-#: js/prefs.js:1584
-#: js/prefs.js:1600
-#: js/prefs.js:1619
-#: js/prefs.js:1792
-#: js/prefs.js:1808
+#: js/prefs.js:858
+#: js/prefs.js:1445
+#: js/prefs.js:1498
+#: js/prefs.js:1557
+#: js/prefs.js:1574
+#: js/prefs.js:1590
+#: js/prefs.js:1606
+#: js/prefs.js:1625
+#: js/prefs.js:1798
+#: js/prefs.js:1814
 #: js/tt-rss.js:475
 #: js/tt-rss.js:492
 #: js/viewfeed.js:774
-#: js/viewfeed.js:1259
+#: js/viewfeed.js:1245
 #: plugins/import_export/import_export.js:17
 #: plugins/updater/updater.js:17
 msgid "Loading, please wait..."
@@ -308,13 +309,13 @@ msgid "All Articles"
 msgstr "Tutti gli articoli"
 
 #: index.php:176
-#: include/functions.php:1974
+#: include/functions.php:1924
 #: classes/feeds.php:106
 msgid "Starred"
 msgstr "Con stella"
 
 #: index.php:177
-#: include/functions.php:1975
+#: include/functions.php:1925
 #: classes/feeds.php:107
 msgid "Published"
 msgstr "Pubblicati"
@@ -354,22 +355,15 @@ msgstr ""
 msgid "Oldest first"
 msgstr ""
 
-#: index.php:195
-#: classes/pref/feeds.php:567
-#: classes/pref/feeds.php:792
-msgid "Update"
-msgstr "Aggiorna"
-
-#: index.php:197
+#: index.php:192
 msgid "Mark feed as read"
 msgstr "Segna notiziario come letto"
 
-#: index.php:200
-#: index.php:235
-#: include/functions.php:1964
+#: index.php:195
+#: index.php:234
+#: include/functions.php:1914
 #: include/localized_schema.php:10
 #: classes/feeds.php:111
-#: classes/feeds.php:136
 #: classes/feeds.php:437
 #: js/FeedTree.js:128
 #: js/FeedTree.js:156
@@ -377,112 +371,116 @@ msgstr "Segna notiziario come letto"
 msgid "Mark as read"
 msgstr "Segna come letto"
 
-#: index.php:201
-#: include/functions.php:1860
-#: include/functions.php:1972
+#: index.php:196
+#: include/functions.php:1810
+#: include/functions.php:1922
 msgid "All articles"
 msgstr "Tutti gli articoli"
 
-#: index.php:202
+#: index.php:197
 msgid "Older than one day"
 msgstr ""
 
-#: index.php:203
+#: index.php:198
 msgid "Older than one week"
 msgstr ""
 
-#: index.php:204
+#: index.php:199
 msgid "Older than two weeks"
 msgstr ""
 
-#: index.php:212
+#: index.php:204
+msgid "Refresh"
+msgstr ""
+
+#: index.php:211
 msgid "Communication problem with server."
 msgstr ""
 
-#: index.php:220
+#: index.php:219
 msgid "New version of Tiny Tiny RSS is available!"
 msgstr "È disponibile la nuova versione di Tiny Tiny RSS."
 
-#: index.php:225
+#: index.php:224
 msgid "Actions..."
 msgstr "Azioni..."
 
-#: index.php:227
+#: index.php:226
 #, fuzzy
 msgid "Preferences..."
 msgstr "Preferenze"
 
-#: index.php:228
+#: index.php:227
 msgid "Search..."
 msgstr "Cerca..."
 
-#: index.php:229
+#: index.php:228
 msgid "Feed actions:"
 msgstr "Azioni notiziari:"
 
-#: index.php:230
-#: classes/handler/public.php:555
+#: index.php:229
+#: classes/handler/public.php:556
 msgid "Subscribe to feed..."
 msgstr "Sottoscrivi il notiziario..."
 
-#: index.php:231
+#: index.php:230
 msgid "Edit this feed..."
 msgstr "Modifica questo notiziario..."
 
-#: index.php:232
+#: index.php:231
 msgid "Rescore feed"
 msgstr "Cambia punteggio notiziario"
 
-#: index.php:233
-#: classes/pref/feeds.php:716
-#: classes/pref/feeds.php:1303
+#: index.php:232
+#: classes/pref/feeds.php:717
+#: classes/pref/feeds.php:1304
 #: js/PrefFeedTree.js:73
 msgid "Unsubscribe"
 msgstr "Annulla sottoscrizione"
 
-#: index.php:234
+#: index.php:233
 msgid "All feeds:"
 msgstr "Tutti i notiziari:"
 
-#: index.php:236
+#: index.php:235
 msgid "(Un)hide read feeds"
 msgstr "Visualizza/Nascondi notiziari letti"
 
-#: index.php:237
+#: index.php:236
 msgid "Other actions:"
 msgstr "Altre azioni:"
 
-#: index.php:239
+#: index.php:238
 msgid "Switch to digest..."
 msgstr "Passa al sommario..."
 
-#: index.php:241
+#: index.php:240
 msgid "Show tag cloud..."
 msgstr "Mostra nuvola etichette..."
 
-#: index.php:242
-#: include/functions.php:1950
+#: index.php:241
+#: include/functions.php:1900
 #, fuzzy
 msgid "Toggle widescreen mode"
 msgstr "Inverti con stella"
 
-#: index.php:243
+#: index.php:242
 msgid "Select by tags..."
 msgstr ""
 
-#: index.php:244
+#: index.php:243
 msgid "Create label..."
 msgstr "Crea etichetta..."
 
-#: index.php:245
+#: index.php:244
 msgid "Create filter..."
 msgstr "Crea filtro..."
 
-#: index.php:246
+#: index.php:245
 msgid "Keyboard shortcuts help"
 msgstr "Aiuto scorciatoie da tastiera"
 
-#: index.php:248
+#: index.php:247
 #: plugins/digest/digest_body.php:77
 #: plugins/mobile/mobile-functions.php:62
 #: plugins/mobile/mobile-functions.php:237
@@ -490,41 +488,41 @@ msgid "Logout"
 msgstr "Esci"
 
 #: prefs.php:36
-#: prefs.php:122
-#: include/functions.php:1977
+#: prefs.php:121
+#: include/functions.php:1927
 #: classes/pref/prefs.php:377
 msgid "Preferences"
 msgstr "Preferenze"
 
-#: prefs.php:113
+#: prefs.php:112
 msgid "Keyboard shortcuts"
 msgstr "Scorciatoie da tastiera"
 
-#: prefs.php:114
+#: prefs.php:113
 msgid "Exit preferences"
 msgstr "Esci dalle preferenze"
 
-#: prefs.php:125
-#: classes/pref/feeds.php:106
-#: classes/pref/feeds.php:1208
-#: classes/pref/feeds.php:1271
+#: prefs.php:124
+#: classes/pref/feeds.php:107
+#: classes/pref/feeds.php:1209
+#: classes/pref/feeds.php:1272
 msgid "Feeds"
 msgstr "Notiziari"
 
-#: prefs.php:128
-#: classes/pref/filters.php:120
+#: prefs.php:127
+#: classes/pref/filters.php:156
 msgid "Filters"
 msgstr "Filtri"
 
-#: prefs.php:131
-#: include/functions.php:1167
-#: include/functions.php:1803
+#: prefs.php:130
+#: include/functions.php:1117
+#: include/functions.php:1753
 #: classes/pref/labels.php:90
 #: plugins/mobile/mobile-functions.php:198
 msgid "Labels"
 msgstr "Etichette"
 
-#: prefs.php:135
+#: prefs.php:134
 msgid "Users"
 msgstr "Utenti"
 
@@ -550,12 +548,12 @@ msgid "Check availability"
 msgstr "Controlla disponibilità"
 
 #: register.php:228
-#: classes/handler/public.php:753
+#: classes/handler/public.php:754
 msgid "Email:"
 msgstr "Email:"
 
 #: register.php:231
-#: classes/handler/public.php:758
+#: classes/handler/public.php:759
 msgid "How much is two plus two:"
 msgstr "Quanto fa due più due:"
 
@@ -589,12 +587,12 @@ msgid "Tiny Tiny RSS data update script."
 msgstr "Il database di Tiny Tiny RSS è aggiornato."
 
 #: include/digest.php:109
-#: include/functions.php:1176
-#: include/functions.php:1704
-#: include/functions.php:1789
-#: include/functions.php:1811
+#: include/functions.php:1126
+#: include/functions.php:1654
+#: include/functions.php:1739
+#: include/functions.php:1761
 #: classes/opml.php:416
-#: classes/pref/feeds.php:221
+#: classes/pref/feeds.php:222
 msgid "Uncategorized"
 msgstr "Senza categoria"
 
@@ -609,355 +607,353 @@ msgstr[1] "%d articoli archiviati"
 msgid "No feeds found."
 msgstr "Nessun notiziario trovato."
 
-#: include/functions.php:722
-msgid "Session failed to validate (incorrect IP)"
-msgstr "La validazione della sessione è fallita (IP non corretto)"
-
-#: include/functions.php:1165
-#: include/functions.php:1801
+#: include/functions.php:1115
+#: include/functions.php:1751
 #: plugins/mobile/mobile-functions.php:171
 msgid "Special"
 msgstr "Speciale"
 
-#: include/functions.php:1653
-#: classes/dlg.php:369
-#: classes/pref/filters.php:382
+#: include/functions.php:1603
+#: classes/feeds.php:1097
+#: classes/pref/filters.php:427
 msgid "All feeds"
 msgstr "Tutti i notiziari"
 
-#: include/functions.php:1854
+#: include/functions.php:1804
 msgid "Starred articles"
 msgstr "Articoli con stella"
 
-#: include/functions.php:1856
+#: include/functions.php:1806
 msgid "Published articles"
 msgstr "Articoli pubblicati"
 
-#: include/functions.php:1858
+#: include/functions.php:1808
 msgid "Fresh articles"
 msgstr "Articoli nuovi"
 
-#: include/functions.php:1862
+#: include/functions.php:1812
 msgid "Archived articles"
 msgstr "Articoli archiviati"
 
-#: include/functions.php:1864
+#: include/functions.php:1814
 msgid "Recently read"
 msgstr ""
 
-#: include/functions.php:1927
+#: include/functions.php:1877
 msgid "Navigation"
 msgstr "Navigazione"
 
-#: include/functions.php:1928
+#: include/functions.php:1878
 #, fuzzy
 msgid "Open next feed"
 msgstr "Su lettura passare al prossimo notiziario"
 
-#: include/functions.php:1929
+#: include/functions.php:1879
 msgid "Open previous feed"
 msgstr ""
 
-#: include/functions.php:1930
+#: include/functions.php:1880
 #, fuzzy
 msgid "Open next article"
 msgstr "Apri articolo di origine"
 
-#: include/functions.php:1931
+#: include/functions.php:1881
 #, fuzzy
 msgid "Open previous article"
 msgstr "Apri articolo di origine"
 
-#: include/functions.php:1932
+#: include/functions.php:1882
 msgid "Open next article (don't scroll long articles)"
 msgstr ""
 
-#: include/functions.php:1933
+#: include/functions.php:1883
 msgid "Open previous article (don't scroll long articles)"
 msgstr ""
 
-#: include/functions.php:1934
+#: include/functions.php:1884
 msgid "Show search dialog"
 msgstr "Mostra il dialogo di ricerca"
 
-#: include/functions.php:1935
+#: include/functions.php:1885
 #, fuzzy
 msgid "Article"
 msgstr "Tutti gli articoli"
 
-#: include/functions.php:1936
+#: include/functions.php:1886
 msgid "Toggle starred"
 msgstr "Inverti con stella"
 
-#: include/functions.php:1937
-#: js/viewfeed.js:1920
+#: include/functions.php:1887
+#: js/viewfeed.js:1908
 msgid "Toggle published"
 msgstr "Inverti pubblicati"
 
-#: include/functions.php:1938
-#: js/viewfeed.js:1898
+#: include/functions.php:1888
+#: js/viewfeed.js:1886
 msgid "Toggle unread"
 msgstr "Inverti non letti"
 
-#: include/functions.php:1939
+#: include/functions.php:1889
 msgid "Edit tags"
 msgstr "Modifica etichette"
 
-#: include/functions.php:1940
+#: include/functions.php:1890
 #, fuzzy
 msgid "Dismiss selected"
 msgstr "Rimuovi gli articoli selezionati"
 
-#: include/functions.php:1941
+#: include/functions.php:1891
 #, fuzzy
 msgid "Dismiss read"
 msgstr "Rimuovi articoli letti"
 
-#: include/functions.php:1942
+#: include/functions.php:1892
 #, fuzzy
 msgid "Open in new window"
 msgstr "Aprire gli articoli in una nuova finestra"
 
-#: include/functions.php:1943
-#: js/viewfeed.js:1939
+#: include/functions.php:1893
+#: js/viewfeed.js:1927
 msgid "Mark below as read"
 msgstr ""
 
-#: include/functions.php:1944
-#: js/viewfeed.js:1933
+#: include/functions.php:1894
+#: js/viewfeed.js:1921
 msgid "Mark above as read"
 msgstr ""
 
-#: include/functions.php:1945
+#: include/functions.php:1895
 #, fuzzy
 msgid "Scroll down"
 msgstr "Fatto tutto."
 
-#: include/functions.php:1946
+#: include/functions.php:1896
 msgid "Scroll up"
 msgstr ""
 
-#: include/functions.php:1947
+#: include/functions.php:1897
 #, fuzzy
 msgid "Select article under cursor"
 msgstr "Seleziona l&apos;articolo sotto il cursore del mouse"
 
-#: include/functions.php:1948
+#: include/functions.php:1898
 msgid "Email article"
 msgstr ""
 
-#: include/functions.php:1949
+#: include/functions.php:1899
 #, fuzzy
 msgid "Close/collapse article"
 msgstr "Cambio punteggio degli articoli"
 
-#: include/functions.php:1951
+#: include/functions.php:1901
 #: plugins/embed_original/init.php:33
 #, fuzzy
 msgid "Toggle embed original"
 msgstr "Inverti pubblicati"
 
-#: include/functions.php:1952
+#: include/functions.php:1902
 #, fuzzy
 msgid "Article selection"
 msgstr "Azioni sull&apos;articolo attivo"
 
-#: include/functions.php:1953
+#: include/functions.php:1903
 msgid "Select all articles"
 msgstr ""
 
-#: include/functions.php:1954
+#: include/functions.php:1904
 #, fuzzy
 msgid "Select unread"
 msgstr "Inverti non letti"
 
-#: include/functions.php:1955
+#: include/functions.php:1905
 #, fuzzy
 msgid "Select starred"
 msgstr "Imposta con stella"
 
-#: include/functions.php:1956
+#: include/functions.php:1906
 #, fuzzy
 msgid "Select published"
 msgstr "Articoli pubblicati"
 
-#: include/functions.php:1957
+#: include/functions.php:1907
 #, fuzzy
 msgid "Invert selection"
 msgstr "Selezione:"
 
-#: include/functions.php:1958
+#: include/functions.php:1908
 msgid "Deselect everything"
 msgstr ""
 
-#: include/functions.php:1959
-#: classes/pref/feeds.php:520
-#: classes/pref/feeds.php:753
+#: include/functions.php:1909
+#: classes/pref/feeds.php:521
+#: classes/pref/feeds.php:754
 msgid "Feed"
 msgstr "Notiziario"
 
-#: include/functions.php:1960
+#: include/functions.php:1910
 #, fuzzy
 msgid "Refresh current feed"
 msgstr "Aggiorna notiziario attivo"
 
-#: include/functions.php:1961
+#: include/functions.php:1911
 #, fuzzy
 msgid "Un/hide read feeds"
 msgstr "Visualizza/Nascondi notiziari letti"
 
-#: include/functions.php:1962
-#: classes/pref/feeds.php:1274
+#: include/functions.php:1912
+#: classes/pref/feeds.php:1275
 msgid "Subscribe to feed"
 msgstr "Sottoscrivi il notiziario"
 
-#: include/functions.php:1963
+#: include/functions.php:1913
 #: js/FeedTree.js:135
 #: js/PrefFeedTree.js:67
 msgid "Edit feed"
 msgstr "Modifica notiziario"
 
-#: include/functions.php:1965
+#: include/functions.php:1915
 #, fuzzy
 msgid "Reverse headlines"
 msgstr "Invertire l&apos;ordine dei sommari"
 
-#: include/functions.php:1966
+#: include/functions.php:1916
 #, fuzzy
 msgid "Debug feed update"
 msgstr "Disabilitare aggiornamenti"
 
-#: include/functions.php:1967
+#: include/functions.php:1917
 #: js/FeedTree.js:178
 msgid "Mark all feeds as read"
 msgstr "Segna tutti i notiziari come letti"
 
-#: include/functions.php:1968
+#: include/functions.php:1918
 #, fuzzy
 msgid "Un/collapse current category"
 msgstr "Mettere nella categoria:"
 
-#: include/functions.php:1969
+#: include/functions.php:1919
 #, fuzzy
 msgid "Toggle combined mode"
 msgstr "Inverti pubblicati"
 
-#: include/functions.php:1970
+#: include/functions.php:1920
 #, fuzzy
 msgid "Toggle auto expand in combined mode"
 msgstr "Inverti pubblicati"
 
-#: include/functions.php:1971
+#: include/functions.php:1921
 #, fuzzy
 msgid "Go to"
 msgstr "Vai a..."
 
-#: include/functions.php:1973
+#: include/functions.php:1923
 msgid "Fresh"
 msgstr ""
 
-#: include/functions.php:1976
+#: include/functions.php:1926
+#: js/tt-rss.js:431
+#: js/tt-rss.js:584
 msgid "Tag cloud"
 msgstr "Nuvola etichette"
 
-#: include/functions.php:1978
+#: include/functions.php:1928
 #, fuzzy
 msgid "Other"
 msgstr "Altri notiziari"
 
-#: include/functions.php:1979
+#: include/functions.php:1929
 #: classes/pref/labels.php:281
 msgid "Create label"
 msgstr "Crea etichetta"
 
-#: include/functions.php:1980
-#: classes/pref/filters.php:606
+#: include/functions.php:1930
+#: classes/pref/filters.php:654
 msgid "Create filter"
 msgstr "Crea filtro"
 
-#: include/functions.php:1981
+#: include/functions.php:1931
 #, fuzzy
 msgid "Un/collapse sidebar"
 msgstr "Contrai la barra laterale"
 
-#: include/functions.php:1982
+#: include/functions.php:1932
 #, fuzzy
 msgid "Show help dialog"
 msgstr "Mostra il dialogo di ricerca"
 
-#: include/functions.php:2467
+#: include/functions.php:2417
 #, php-format
 msgid "Search results: %s"
 msgstr ""
 
-#: include/functions.php:2958
-#: js/viewfeed.js:2026
+#: include/functions.php:2908
+#: js/viewfeed.js:2014
 msgid "Click to play"
 msgstr "Fare clic per riprodurre"
 
-#: include/functions.php:2959
-#: js/viewfeed.js:2025
+#: include/functions.php:2909
+#: js/viewfeed.js:2013
 msgid "Play"
 msgstr "Riproduci"
 
-#: include/functions.php:3076
+#: include/functions.php:3026
 msgid " - "
 msgstr " - "
 
-#: include/functions.php:3098
-#: include/functions.php:3392
+#: include/functions.php:3048
+#: include/functions.php:3342
 #: classes/rpc.php:408
 msgid "no tags"
 msgstr "nessuna etichetta"
 
-#: include/functions.php:3108
+#: include/functions.php:3058
 #: classes/feeds.php:682
 msgid "Edit tags for this article"
 msgstr "Modifica le etichette per questo articolo"
 
-#: include/functions.php:3137
+#: include/functions.php:3087
 #: classes/feeds.php:638
 msgid "Originally from:"
 msgstr "Originariamente da:"
 
-#: include/functions.php:3150
+#: include/functions.php:3100
 #: classes/feeds.php:651
-#: classes/pref/feeds.php:539
+#: classes/pref/feeds.php:540
 msgid "Feed URL"
 msgstr "URL del notiziario"
 
-#: include/functions.php:3181
-#: classes/dlg.php:43
-#: classes/dlg.php:162
-#: classes/dlg.php:185
-#: classes/dlg.php:222
-#: classes/dlg.php:506
-#: classes/dlg.php:541
-#: classes/dlg.php:572
-#: classes/dlg.php:606
-#: classes/dlg.php:618
+#: include/functions.php:3131
+#: classes/dlg.php:37
+#: classes/dlg.php:60
+#: classes/dlg.php:93
+#: classes/dlg.php:159
+#: classes/dlg.php:190
+#: classes/dlg.php:217
+#: classes/dlg.php:250
+#: classes/dlg.php:262
 #: classes/backend.php:105
 #: classes/pref/users.php:106
-#: classes/pref/filters.php:111
-#: classes/pref/feeds.php:1587
-#: classes/pref/feeds.php:1659
+#: classes/pref/filters.php:147
+#: classes/pref/prefs.php:1012
+#: classes/pref/feeds.php:1588
+#: classes/pref/feeds.php:1660
 #: plugins/import_export/init.php:409
 #: plugins/import_export/init.php:432
-#: plugins/googlereaderimport/init.php:164
+#: plugins/googlereaderimport/init.php:168
 #: plugins/share/init.php:67
 #: plugins/updater/init.php:357
 msgid "Close this window"
 msgstr "Chiudi questa finestra"
 
-#: include/functions.php:3417
+#: include/functions.php:3367
 msgid "(edit note)"
 msgstr "(modifica note)"
 
-#: include/functions.php:3650
+#: include/functions.php:3600
 msgid "unknown type"
 msgstr "tipo sconosciuto"
 
-#: include/functions.php:3706
+#: include/functions.php:3656
 #, fuzzy
 msgid "Attachments"
 msgstr "Allegati:"
@@ -1002,7 +998,7 @@ msgid "Assign tags"
 msgstr "Assegna etichette"
 
 #: include/localized_schema.php:14
-#: js/viewfeed.js:1990
+#: js/viewfeed.js:1978
 msgid "Assign label"
 msgstr "Assegna etichetta"
 
@@ -1188,7 +1184,7 @@ msgid "User timezone"
 msgstr "Fuso orario dell'utente"
 
 #: include/localized_schema.php:61
-#: js/prefs.js:1719
+#: js/prefs.js:1725
 msgid "Customize stylesheet"
 msgstr "Personalizza il foglio di stile"
 
@@ -1213,14 +1209,14 @@ msgid "Select theme"
 msgstr "Seleziona tema"
 
 #: include/login_form.php:183
-#: classes/handler/public.php:460
-#: classes/handler/public.php:748
+#: classes/handler/public.php:461
+#: classes/handler/public.php:749
 #: plugins/mobile/login_form.php:40
 msgid "Login:"
 msgstr "Accesso:"
 
 #: include/login_form.php:192
-#: classes/handler/public.php:463
+#: classes/handler/public.php:464
 #: plugins/mobile/login_form.php:45
 msgid "Password:"
 msgstr "Password:"
@@ -1231,7 +1227,7 @@ msgid "I forgot my password"
 msgstr "Nome utente o password sbagliati"
 
 #: include/login_form.php:201
-#: classes/handler/public.php:466
+#: classes/handler/public.php:467
 msgid "Language:"
 msgstr "Lingua:"
 
@@ -1240,9 +1236,9 @@ msgid "Profile:"
 msgstr "Profilo:"
 
 #: include/login_form.php:213
-#: classes/handler/public.php:210
+#: classes/handler/public.php:211
 #: classes/rpc.php:64
-#: classes/dlg.php:98
+#: classes/pref/prefs.php:948
 msgid "Default profile"
 msgstr "Profilo predefinito"
 
@@ -1255,485 +1251,254 @@ msgid "Remember me"
 msgstr ""
 
 #: include/login_form.php:235
-#: classes/handler/public.php:476
+#: classes/handler/public.php:477
 #: plugins/mobile/login_form.php:28
 msgid "Log in"
 msgstr "Accedi"
 
+#: include/sessions.php:53
+msgid "Session failed to validate (incorrect IP)"
+msgstr "La validazione della sessione è fallita (IP non corretto)"
+
 #: classes/article.php:25
 msgid "Article not found."
 msgstr "Articolo non trovato."
 
-#: classes/handler/public.php:401
+#: classes/article.php:179
+msgid "Tags for this article (separated by commas):"
+msgstr "Etichette per questo articolo (separate da virgole):"
+
+#: classes/article.php:204
+#: classes/pref/users.php:192
+#: classes/pref/labels.php:79
+#: classes/pref/filters.php:405
+#: classes/pref/prefs.php:894
+#: classes/pref/feeds.php:733
+#: classes/pref/feeds.php:881
+#: plugins/nsfw/init.php:86
+#: plugins/note/init.php:53
+#: plugins/instances/init.php:248
+msgid "Save"
+msgstr "Salva"
+
+#: classes/article.php:206
+#: classes/handler/public.php:438
+#: classes/handler/public.php:480
+#: classes/feeds.php:1024
+#: classes/feeds.php:1076
+#: classes/feeds.php:1136
+#: classes/pref/users.php:194
+#: classes/pref/labels.php:81
+#: classes/pref/filters.php:408
+#: classes/pref/filters.php:804
+#: classes/pref/filters.php:880
+#: classes/pref/filters.php:947
+#: classes/pref/prefs.php:896
+#: classes/pref/feeds.php:734
+#: classes/pref/feeds.php:884
+#: classes/pref/feeds.php:1797
+#: plugins/mail/init.php:131
+#: plugins/note/init.php:55
+#: plugins/instances/init.php:251
+#: plugins/instances/init.php:440
+msgid "Cancel"
+msgstr "Annulla"
+
+#: classes/handler/public.php:402
 #: plugins/bookmarklets/init.php:38
 #, fuzzy
 msgid "Share with Tiny Tiny RSS"
 msgstr "Sottoscrive in Tiny Tiny RSS"
 
-#: classes/handler/public.php:409
+#: classes/handler/public.php:410
 #, fuzzy
 msgid "Title:"
 msgstr "Titolo"
 
-#: classes/handler/public.php:411
-#: classes/dlg.php:663
-#: classes/pref/feeds.php:537
-#: classes/pref/feeds.php:768
+#: classes/handler/public.php:412
+#: classes/pref/feeds.php:538
+#: classes/pref/feeds.php:769
 #: plugins/instances/init.php:215
+#: plugins/instances/init.php:405
 msgid "URL:"
 msgstr "URL:"
 
-#: classes/handler/public.php:413
+#: classes/handler/public.php:414
 #, fuzzy
 msgid "Content:"
 msgstr "Contenuto"
 
-#: classes/handler/public.php:415
+#: classes/handler/public.php:416
 #, fuzzy
 msgid "Labels:"
 msgstr "Etichette"
 
-#: classes/handler/public.php:434
+#: classes/handler/public.php:435
 msgid "Shared article will appear in the Published feed."
 msgstr ""
 
-#: classes/handler/public.php:436
+#: classes/handler/public.php:437
 msgid "Share"
 msgstr ""
 
-#: classes/handler/public.php:437
-#: classes/handler/public.php:479
-#: classes/dlg.php:296
-#: classes/dlg.php:348
-#: classes/dlg.php:408
-#: classes/dlg.php:439
-#: classes/dlg.php:648
-#: classes/dlg.php:698
-#: classes/dlg.php:747
-#: classes/pref/users.php:194
-#: classes/pref/labels.php:81
-#: classes/pref/filters.php:363
-#: classes/pref/filters.php:746
-#: classes/pref/filters.php:822
-#: classes/pref/filters.php:889
-#: classes/pref/feeds.php:733
-#: classes/pref/feeds.php:883
-#: plugins/mail/init.php:131
-#: plugins/note/init.php:55
-#: plugins/instances/init.php:251
-msgid "Cancel"
-msgstr "Annulla"
-
-#: classes/handler/public.php:458
+#: classes/handler/public.php:459
 #, fuzzy
 msgid "Not logged in"
 msgstr "Ultimo accesso"
 
-#: classes/handler/public.php:525
+#: classes/handler/public.php:526
 msgid "Incorrect username or password"
 msgstr "Nome utente o password sbagliati"
 
-#: classes/handler/public.php:561
-#: classes/handler/public.php:658
+#: classes/handler/public.php:562
+#: classes/handler/public.php:659
 #, php-format
 msgid "Already subscribed to <b>%s</b>."
 msgstr "Si ha già una sottoscrizione a <b>%s</b>."
 
-#: classes/handler/public.php:564
-#: classes/handler/public.php:649
+#: classes/handler/public.php:565
+#: classes/handler/public.php:650
 #, php-format
 msgid "Subscribed to <b>%s</b>."
 msgstr "Sottoscrizione avvenuta a <b>%s</b>."
 
-#: classes/handler/public.php:567
-#: classes/handler/public.php:652
+#: classes/handler/public.php:568
+#: classes/handler/public.php:653
 #, php-format
 msgid "Could not subscribe to <b>%s</b>."
 msgstr "Impossibile sottoscrivere <b>%s</b>."
 
-#: classes/handler/public.php:570
-#: classes/handler/public.php:655
+#: classes/handler/public.php:571
+#: classes/handler/public.php:656
 #, fuzzy, php-format
 msgid "No feeds found in <b>%s</b>."
 msgstr "Nessun notiziario trovato."
 
-#: classes/handler/public.php:573
-#: classes/handler/public.php:661
+#: classes/handler/public.php:574
+#: classes/handler/public.php:662
 #, fuzzy
 msgid "Multiple feed URLs found."
 msgstr "Nessun notiziario trovato."
 
-#: classes/handler/public.php:577
-#: classes/handler/public.php:666
+#: classes/handler/public.php:578
+#: classes/handler/public.php:667
 #, php-format
 msgid "Could not subscribe to <b>%s</b>.<br>Can't download the Feed URL."
 msgstr "Impossibile sottoscrivere <b>%s</b>.<br>Impossibile scaricare l'URL del notiziario."
 
-#: classes/handler/public.php:595
-#: classes/handler/public.php:684
+#: classes/handler/public.php:596
+#: classes/handler/public.php:685
 msgid "Subscribe to selected feed"
 msgstr "Sottoscrivi il notiziario selezionato"
 
-#: classes/handler/public.php:620
-#: classes/handler/public.php:708
+#: classes/handler/public.php:621
+#: classes/handler/public.php:709
 msgid "Edit subscription options"
 msgstr "Modifica opzioni di sottoscrizione"
 
-#: classes/handler/public.php:735
+#: classes/handler/public.php:736
 #, fuzzy
 msgid "Password recovery"
 msgstr "Password"
 
-#: classes/handler/public.php:741
+#: classes/handler/public.php:742
 msgid "You will need to provide valid account name and email. New password will be sent on your email address."
 msgstr ""
 
-#: classes/handler/public.php:763
+#: classes/handler/public.php:764
 #: classes/pref/users.php:378
 msgid "Reset password"
 msgstr "Reimposta password"
 
-#: classes/handler/public.php:773
+#: classes/handler/public.php:774
 msgid "Some of the required form parameters are missing or incorrect."
 msgstr ""
 
-#: classes/handler/public.php:777
-#: classes/handler/public.php:803
+#: classes/handler/public.php:778
+#: classes/handler/public.php:804
 #: plugins/digest/digest_body.php:69
 #, fuzzy
 msgid "Go back"
 msgstr "Sposta indietro"
 
-#: classes/handler/public.php:799
+#: classes/handler/public.php:800
 msgid "Sorry, login and email combination not found."
 msgstr ""
 
-#: classes/dlg.php:22
+#: classes/dlg.php:16
 msgid "If you have imported labels and/or filters, you might need to reload preferences to see your new data."
 msgstr ""
 
-#: classes/dlg.php:55
-#: classes/pref/users.php:360
-#: classes/pref/labels.php:272
-#: classes/pref/filters.php:234
-#: classes/pref/filters.php:282
-#: classes/pref/filters.php:597
-#: classes/pref/filters.php:676
-#: classes/pref/filters.php:703
-#: classes/pref/feeds.php:1262
-#: classes/pref/feeds.php:1532
-#: classes/pref/feeds.php:1602
-#: plugins/instances/init.php:287
-msgid "Select"
-msgstr "Seleziona"
-
-#: classes/dlg.php:58
-#: classes/feeds.php:92
-#: classes/pref/users.php:363
-#: classes/pref/labels.php:275
-#: classes/pref/filters.php:237
-#: classes/pref/filters.php:285
-#: classes/pref/filters.php:600
-#: classes/pref/filters.php:679
-#: classes/pref/filters.php:706
-#: classes/pref/feeds.php:1265
-#: classes/pref/feeds.php:1535
-#: classes/pref/feeds.php:1605
-#: plugins/instances/init.php:290
-msgid "All"
-msgstr "Tutti"
-
-#: classes/dlg.php:60
-#: classes/feeds.php:95
-#: classes/pref/users.php:365
-#: classes/pref/labels.php:277
-#: classes/pref/filters.php:239
-#: classes/pref/filters.php:287
-#: classes/pref/filters.php:602
-#: classes/pref/filters.php:681
-#: classes/pref/filters.php:708
-#: classes/pref/feeds.php:1267
-#: classes/pref/feeds.php:1537
-#: classes/pref/feeds.php:1607
-#: plugins/instances/init.php:292
-msgid "None"
-msgstr "Nessuno"
-
-#: classes/dlg.php:69
-msgid "Create profile"
-msgstr "Crea profilo"
-
-#: classes/dlg.php:92
-#: classes/dlg.php:122
-msgid "(active)"
-msgstr "(attivo)"
-
-#: classes/dlg.php:156
-msgid "Remove selected profiles"
-msgstr "Rimuovi i profili selezionati"
-
-#: classes/dlg.php:158
-msgid "Activate profile"
-msgstr "Attiva profilo"
-
-#: classes/dlg.php:168
-msgid "Public OPML URL"
-msgstr "URL OPML pubblico"
-
-#: classes/dlg.php:173
+#: classes/dlg.php:48
 msgid "Your Public OPML URL is:"
 msgstr "L'URL OPML pubblico è:"
 
-#: classes/dlg.php:182
-#: classes/dlg.php:569
+#: classes/dlg.php:57
+#: classes/dlg.php:214
 msgid "Generate new URL"
 msgstr "Genera nuovo URL"
 
-#: classes/dlg.php:194
-msgid "Notice"
-msgstr "Notifica"
-
-#: classes/dlg.php:200
+#: classes/dlg.php:71
 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 "Il demone per l&apos;aggiornamento è abilitato nella configurazione, ma il processo del demone non è in esecuzione. Questo impedisce l&apos;aggiornameto di tutti i notiziari. Avviare il processo del demone o contattare il proprietario dell&apos;istanza."
 
-#: classes/dlg.php:204
-#: classes/dlg.php:213
+#: classes/dlg.php:75
+#: classes/dlg.php:84
 msgid "Last update:"
 msgstr "Ultimo aggiornamento:"
 
-#: classes/dlg.php:209
+#: classes/dlg.php:80
 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 "Il demone di aggiornamento sta impiegando troppo tempo a eseguire l&apos;aggiornamento del notiziario. Questo potrebbe indicare un problema come un crash o uno stallo. Controllare il processo del demone o contattare il proprietario dell&apos;istanza."
 
-#: classes/dlg.php:234
-#: classes/dlg.php:242
-#, fuzzy
-msgid "Feed or site URL"
-msgstr "URL del notiziario"
-
-#: classes/dlg.php:248
-#: classes/dlg.php:711
-#: classes/pref/feeds.php:559
-#: classes/pref/feeds.php:781
-msgid "Place in category:"
-msgstr "Mettere nella categoria:"
-
-#: classes/dlg.php:256
-msgid "Available feeds"
-msgstr "Notiziari disponibili"
-
-#: classes/dlg.php:268
-#: classes/pref/users.php:155
-#: classes/pref/feeds.php:589
-#: classes/pref/feeds.php:817
-msgid "Authentication"
-msgstr "Autenticazione"
-
-#: classes/dlg.php:272
-#: classes/dlg.php:725
-#: classes/pref/users.php:420
-#: classes/pref/feeds.php:595
-#: classes/pref/feeds.php:821
-msgid "Login"
-msgstr "Accesso"
-
-#: classes/dlg.php:275
-#: classes/dlg.php:728
-#: classes/pref/prefs.php:202
-#: classes/pref/feeds.php:601
-#: classes/pref/feeds.php:827
-msgid "Password"
-msgstr "Password"
-
-#: classes/dlg.php:285
-msgid "This feed requires authentication."
-msgstr "Questo notiziario richiede l&apos;autenticazione"
-
-#: classes/dlg.php:290
-#: classes/dlg.php:346
-#: classes/dlg.php:746
-msgid "Subscribe"
-msgstr "Sottoscrivi"
-
-#: classes/dlg.php:293
-msgid "More feeds"
-msgstr "Altri notiziari"
-
-#: classes/dlg.php:316
-#: classes/dlg.php:407
-#: classes/pref/users.php:350
-#: classes/pref/filters.php:593
-#: classes/pref/feeds.php:1258
-#: js/tt-rss.js:170
-msgid "Search"
-msgstr "Cerca"
-
-#: classes/dlg.php:320
-msgid "Popular feeds"
-msgstr "Notiziari popolari"
-
-#: classes/dlg.php:321
-msgid "Feed archive"
-msgstr "Archivio notiziari"
-
-#: classes/dlg.php:324
-msgid "limit:"
-msgstr "limite:"
-
-#: classes/dlg.php:347
-#: classes/pref/users.php:376
-#: classes/pref/labels.php:284
-#: classes/pref/filters.php:353
-#: classes/pref/filters.php:615
-#: classes/pref/feeds.php:706
-#: plugins/instances/init.php:297
-msgid "Remove"
-msgstr "Rimuovi"
-
-#: classes/dlg.php:358
-msgid "Look for"
-msgstr "Cerca"
-
-#: classes/dlg.php:366
-msgid "Limit search to:"
-msgstr "Limitare la ricerca a:"
-
-#: classes/dlg.php:382
-msgid "This feed"
-msgstr "Questo notiziario"
-
-#: classes/dlg.php:414
-msgid "Tags for this article (separated by commas):"
-msgstr "Etichette per questo articolo (separate da virgole):"
-
-#: classes/dlg.php:437
-#: classes/dlg.php:646
-#: classes/pref/users.php:192
-#: classes/pref/labels.php:79
-#: classes/pref/filters.php:360
-#: classes/pref/feeds.php:732
-#: classes/pref/feeds.php:880
-#: plugins/nsfw/init.php:86
-#: plugins/note/init.php:53
-#: plugins/instances/init.php:248
-msgid "Save"
-msgstr "Salva"
-
-#: classes/dlg.php:445
-msgid "Tag Cloud"
-msgstr "Nuvola etichette"
-
-#: classes/dlg.php:514
-msgid "Select item(s) by tags"
-msgstr ""
-
-#: classes/dlg.php:517
+#: classes/dlg.php:166
 msgid "Match:"
 msgstr ""
 
-#: classes/dlg.php:519
+#: classes/dlg.php:168
 msgid "Any"
 msgstr ""
 
-#: classes/dlg.php:522
+#: classes/dlg.php:171
 #, fuzzy
 msgid "All tags."
 msgstr "nessuna etichetta"
 
-#: classes/dlg.php:524
+#: classes/dlg.php:173
 msgid "Which Tags?"
 msgstr ""
 
-#: classes/dlg.php:537
+#: classes/dlg.php:186
 msgid "Display entries"
 msgstr ""
 
-#: classes/dlg.php:549
-#: classes/feeds.php:138
-msgid "View as RSS"
-msgstr "Visualizza come RSS"
-
-#: classes/dlg.php:560
+#: classes/dlg.php:205
 msgid "You can view this feed as RSS using the following URL:"
 msgstr "È possibile vedere questo notiziario come RSS utilizzando il seguente URL:"
 
-#: classes/dlg.php:589
+#: classes/dlg.php:233
 #: plugins/updater/init.php:327
 #, php-format
 msgid "New version of Tiny Tiny RSS is available (%s)."
 msgstr "È disponibile una nuova versione di Tiny Tiny RSS (%s)."
 
-#: classes/dlg.php:597
+#: classes/dlg.php:241
 msgid "You can update using built-in updater in the Preferences or by using update.php"
 msgstr ""
 
-#: classes/dlg.php:601
+#: classes/dlg.php:245
 #: plugins/updater/init.php:331
 msgid "See the release notes"
 msgstr ""
 
-#: classes/dlg.php:603
+#: classes/dlg.php:247
 msgid "Download"
 msgstr "Scarica"
 
-#: classes/dlg.php:611
+#: classes/dlg.php:255
 msgid "Error receiving version information or no new version available."
 msgstr ""
 
-#: classes/dlg.php:631
-#, 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 "Si possono cambiare i colori, i caratteri e la disposizione del tema correntemente selezionato attraverso le dichiarazioni CSS personalizzate. <a target=\"_blank\" class=\"visibleLink\" href=\"%s\">Questo file</a> può essere utilizzato come base."
-
-#: classes/dlg.php:657
-#: plugins/instances/init.php:207
-msgid "Instance"
-msgstr "Istanza"
-
-#: classes/dlg.php:666
-#: plugins/instances/init.php:218
-#: plugins/instances/init.php:315
-msgid "Instance URL"
-msgstr "URL dell'istanza"
-
-#: classes/dlg.php:676
-#: plugins/instances/init.php:229
-msgid "Access key:"
-msgstr "Chiave di accesso:"
-
-#: classes/dlg.php:679
-#: plugins/instances/init.php:232
-#: plugins/instances/init.php:316
-msgid "Access key"
-msgstr "Chiave di accesso"
-
-#: classes/dlg.php:683
-#: plugins/instances/init.php:236
-msgid "Use one access key for both linked instances."
-msgstr "Utilizzare una chiave di accesso per entrambe le istanze collegate."
-
-#: classes/dlg.php:691
-#: plugins/instances/init.php:244
-msgid "Generate new key"
-msgstr "Genera nuova chiave"
-
-#: classes/dlg.php:695
-msgid "Create link"
-msgstr "Crea collegamento"
-
-#: classes/dlg.php:708
-msgid "Add one valid RSS feed per line (no feed detection is done)"
-msgstr ""
-
-#: classes/dlg.php:717
-msgid "Feeds to subscribe, One per line"
-msgstr ""
-
-#: classes/dlg.php:739
-msgid "Feeds require authentication."
-msgstr ""
-
 #: classes/feeds.php:68
 msgid "Visit the website"
 msgstr "Visita il sito web"
@@ -1742,14 +1507,52 @@ msgstr "Visita il sito web"
 msgid "View as RSS feed"
 msgstr "Visualizza come RSS del notiziario"
 
+#: classes/feeds.php:84
+#: classes/feeds.php:138
+#: classes/pref/feeds.php:1440
+msgid "View as RSS"
+msgstr "Visualizza come RSS"
+
 #: classes/feeds.php:91
 msgid "Select:"
 msgstr "Seleziona:"
 
+#: classes/feeds.php:92
+#: classes/pref/users.php:363
+#: classes/pref/labels.php:275
+#: classes/pref/filters.php:282
+#: classes/pref/filters.php:330
+#: classes/pref/filters.php:648
+#: classes/pref/filters.php:737
+#: classes/pref/filters.php:764
+#: classes/pref/prefs.php:908
+#: classes/pref/feeds.php:1266
+#: classes/pref/feeds.php:1536
+#: classes/pref/feeds.php:1606
+#: plugins/instances/init.php:290
+msgid "All"
+msgstr "Tutti"
+
 #: classes/feeds.php:94
 msgid "Invert"
 msgstr "Inverti"
 
+#: classes/feeds.php:95
+#: classes/pref/users.php:365
+#: classes/pref/labels.php:277
+#: classes/pref/filters.php:284
+#: classes/pref/filters.php:332
+#: classes/pref/filters.php:650
+#: classes/pref/filters.php:739
+#: classes/pref/filters.php:766
+#: classes/pref/prefs.php:910
+#: classes/pref/feeds.php:1268
+#: classes/pref/feeds.php:1538
+#: classes/pref/feeds.php:1608
+#: plugins/instances/init.php:292
+msgid "None"
+msgstr "Nessuno"
+
 #: classes/feeds.php:101
 #, fuzzy
 msgid "More..."
@@ -1777,10 +1580,10 @@ msgid "Move back"
 msgstr "Sposta indietro"
 
 #: classes/feeds.php:118
-#: classes/pref/filters.php:246
-#: classes/pref/filters.php:294
-#: classes/pref/filters.php:688
-#: classes/pref/filters.php:715
+#: classes/pref/filters.php:291
+#: classes/pref/filters.php:339
+#: classes/pref/filters.php:746
+#: classes/pref/filters.php:773
 msgid "Delete"
 msgstr "Elimina"
 
@@ -1835,20 +1638,117 @@ msgid "No articles found to display."
 msgstr "Nessun articolo trovato da visualizzare."
 
 #: classes/feeds.php:755
-#: classes/feeds.php:920
+#: classes/feeds.php:919
 #, php-format
 msgid "Feeds last updated at %s"
 msgstr "Ultimo aggiornamento notiziari alle %s"
 
 #: classes/feeds.php:765
-#: classes/feeds.php:930
+#: classes/feeds.php:929
 msgid "Some feeds have update errors (click for details)"
 msgstr "Qualche notiziario ha degli errori di aggiornamento (fare clic per dettagli)"
 
-#: classes/feeds.php:910
+#: classes/feeds.php:909
 msgid "No feed selected."
 msgstr "Nessun notiziario selezionato."
 
+#: classes/feeds.php:962
+#: classes/feeds.php:970
+#, fuzzy
+msgid "Feed or site URL"
+msgstr "URL del notiziario"
+
+#: classes/feeds.php:976
+#: classes/pref/feeds.php:560
+#: classes/pref/feeds.php:782
+#: classes/pref/feeds.php:1761
+msgid "Place in category:"
+msgstr "Mettere nella categoria:"
+
+#: classes/feeds.php:984
+msgid "Available feeds"
+msgstr "Notiziari disponibili"
+
+#: classes/feeds.php:996
+#: classes/pref/users.php:155
+#: classes/pref/feeds.php:590
+#: classes/pref/feeds.php:818
+msgid "Authentication"
+msgstr "Autenticazione"
+
+#: classes/feeds.php:1000
+#: classes/pref/users.php:420
+#: classes/pref/feeds.php:596
+#: classes/pref/feeds.php:822
+#: classes/pref/feeds.php:1775
+msgid "Login"
+msgstr "Accesso"
+
+#: classes/feeds.php:1003
+#: classes/pref/prefs.php:202
+#: classes/pref/feeds.php:602
+#: classes/pref/feeds.php:828
+#: classes/pref/feeds.php:1778
+msgid "Password"
+msgstr "Password"
+
+#: classes/feeds.php:1013
+msgid "This feed requires authentication."
+msgstr "Questo notiziario richiede l&apos;autenticazione"
+
+#: classes/feeds.php:1018
+#: classes/feeds.php:1074
+#: classes/pref/feeds.php:1796
+msgid "Subscribe"
+msgstr "Sottoscrivi"
+
+#: classes/feeds.php:1021
+msgid "More feeds"
+msgstr "Altri notiziari"
+
+#: classes/feeds.php:1044
+#: classes/feeds.php:1135
+#: classes/pref/users.php:350
+#: classes/pref/filters.php:641
+#: classes/pref/feeds.php:1259
+#: js/tt-rss.js:170
+msgid "Search"
+msgstr "Cerca"
+
+#: classes/feeds.php:1048
+msgid "Popular feeds"
+msgstr "Notiziari popolari"
+
+#: classes/feeds.php:1049
+msgid "Feed archive"
+msgstr "Archivio notiziari"
+
+#: classes/feeds.php:1052
+msgid "limit:"
+msgstr "limite:"
+
+#: classes/feeds.php:1075
+#: classes/pref/users.php:376
+#: classes/pref/labels.php:284
+#: classes/pref/filters.php:398
+#: classes/pref/filters.php:667
+#: classes/pref/feeds.php:707
+#: plugins/instances/init.php:297
+msgid "Remove"
+msgstr "Rimuovi"
+
+#: classes/feeds.php:1086
+msgid "Look for"
+msgstr "Cerca"
+
+#: classes/feeds.php:1094
+msgid "Limit search to:"
+msgstr "Limitare la ricerca a:"
+
+#: classes/feeds.php:1110
+msgid "This feed"
+msgstr "Questo notiziario"
+
 #: classes/backend.php:33
 msgid "Other interface tips are available in the Tiny Tiny RSS wiki."
 msgstr "Nel wiki di Tiny Tiny RSS sono disponibili altri suggerimenti per l'interfaccia."
@@ -1922,7 +1822,7 @@ msgid "Error: please upload OPML file."
 msgstr "Errore: caricare il file OPML."
 
 #: classes/opml.php:475
-#: plugins/googlereaderimport/init.php:157
+#: plugins/googlereaderimport/init.php:161
 msgid "Error while parsing document."
 msgstr "Errore durante l&apos;analisi del documento."
 
@@ -1969,8 +1869,8 @@ msgid "Change password to"
 msgstr "Cambiare la password a"
 
 #: classes/pref/users.php:177
-#: classes/pref/feeds.php:609
-#: classes/pref/feeds.php:833
+#: classes/pref/feeds.php:610
+#: classes/pref/feeds.php:834
 msgid "Options"
 msgstr "Opzioni"
 
@@ -2007,6 +1907,21 @@ msgstr "Aggiunto l&apos;utente <b>%s</b> con password <b>%s</b>"
 msgid "[tt-rss] Password change notification"
 msgstr "[tt-rss] Notifica di cambio password"
 
+#: classes/pref/users.php:360
+#: classes/pref/labels.php:272
+#: classes/pref/filters.php:279
+#: classes/pref/filters.php:327
+#: classes/pref/filters.php:645
+#: classes/pref/filters.php:734
+#: classes/pref/filters.php:761
+#: classes/pref/prefs.php:905
+#: classes/pref/feeds.php:1263
+#: classes/pref/feeds.php:1533
+#: classes/pref/feeds.php:1603
+#: plugins/instances/init.php:287
+msgid "Select"
+msgstr "Seleziona"
+
 #: classes/pref/users.php:368
 msgid "Create user"
 msgstr "Crea utente"
@@ -2016,7 +1931,7 @@ msgid "Details"
 msgstr "Dettagli"
 
 #: classes/pref/users.php:374
-#: classes/pref/filters.php:612
+#: classes/pref/filters.php:660
 #: plugins/instances/init.php:296
 msgid "Edit"
 msgstr "Modifica"
@@ -2043,6 +1958,8 @@ msgid "No matching users found."
 msgstr "Nessun utente corrispondente trovato."
 
 #: classes/pref/labels.php:22
+#: classes/pref/filters.php:268
+#: classes/pref/filters.php:725
 msgid "Caption"
 msgstr "Intestazione"
 
@@ -2067,125 +1984,136 @@ msgstr "Etichetta <b>%s</b> creata"
 msgid "Clear colors"
 msgstr "Pulisci colori"
 
-#: classes/pref/filters.php:60
+#: classes/pref/filters.php:96
 msgid "Articles matching this filter:"
 msgstr "Articoli che corrispondono a questo filtro:"
 
-#: classes/pref/filters.php:97
+#: classes/pref/filters.php:133
 #, fuzzy
 msgid "No recent articles matching this filter have been found."
 msgstr "Nessun articolo trovato che corrisponde a questo filtro."
 
-#: classes/pref/filters.php:101
+#: classes/pref/filters.php:137
 msgid "Complex expressions might not give results while testing due to issues with database server regexp implementation."
 msgstr ""
 
-#: classes/pref/filters.php:229
-#: classes/pref/filters.php:671
-#: classes/pref/filters.php:786
+#: classes/pref/filters.php:274
+#: classes/pref/filters.php:729
+#: classes/pref/filters.php:844
 msgid "Match"
 msgstr "Corrisponde"
 
-#: classes/pref/filters.php:243
-#: classes/pref/filters.php:291
-#: classes/pref/filters.php:685
-#: classes/pref/filters.php:712
+#: classes/pref/filters.php:288
+#: classes/pref/filters.php:336
+#: classes/pref/filters.php:743
+#: classes/pref/filters.php:770
 msgid "Add"
 msgstr ""
 
-#: classes/pref/filters.php:277
-#: classes/pref/filters.php:698
+#: classes/pref/filters.php:322
+#: classes/pref/filters.php:756
 #, fuzzy
 msgid "Apply actions"
 msgstr "Azioni notiziari"
 
-#: classes/pref/filters.php:327
-#: classes/pref/filters.php:727
+#: classes/pref/filters.php:372
+#: classes/pref/filters.php:785
 msgid "Enabled"
 msgstr "Abilitato"
 
-#: classes/pref/filters.php:336
-#: classes/pref/filters.php:730
+#: classes/pref/filters.php:381
+#: classes/pref/filters.php:788
 msgid "Match any rule"
 msgstr ""
 
-#: classes/pref/filters.php:345
-#: classes/pref/filters.php:733
+#: classes/pref/filters.php:390
+#: classes/pref/filters.php:791
 #, fuzzy
 msgid "Inverse matching"
 msgstr "Corrispondenza inversa"
 
-#: classes/pref/filters.php:357
-#: classes/pref/filters.php:740
+#: classes/pref/filters.php:402
+#: classes/pref/filters.php:798
 msgid "Test"
 msgstr "Prova"
 
-#: classes/pref/filters.php:390
+#: classes/pref/filters.php:435
 #, fuzzy
 msgid "(inverse)"
 msgstr "Inverso"
 
-#: classes/pref/filters.php:389
+#: classes/pref/filters.php:434
 #, php-format
 msgid "%s on %s in %s %s"
 msgstr ""
 
-#: classes/pref/filters.php:609
+#: classes/pref/filters.php:657
 msgid "Combine"
 msgstr ""
 
-#: classes/pref/filters.php:619
-#: classes/pref/feeds.php:1317
+#: classes/pref/filters.php:663
+#: classes/pref/feeds.php:1279
+#: classes/pref/feeds.php:1293
+msgid "Reset sort order"
+msgstr "Reimposta ordinamento"
+
+#: classes/pref/filters.php:671
+#: classes/pref/feeds.php:1318
 msgid "Rescore articles"
 msgstr "Cambio punteggio degli articoli"
 
-#: classes/pref/filters.php:743
+#: classes/pref/filters.php:801
 msgid "Create"
 msgstr "Crea"
 
-#: classes/pref/filters.php:798
+#: classes/pref/filters.php:856
 msgid "Inverse regular expression matching"
 msgstr ""
 
-#: classes/pref/filters.php:800
+#: classes/pref/filters.php:858
 msgid "on field"
 msgstr "al campo"
 
-#: classes/pref/filters.php:806
-#: js/PrefFilterTree.js:29
+#: classes/pref/filters.php:864
+#: js/PrefFilterTree.js:45
 #: plugins/digest/digest.js:242
 msgid "in"
 msgstr "in"
 
-#: classes/pref/filters.php:819
+#: classes/pref/filters.php:877
 #, fuzzy
 msgid "Save rule"
 msgstr "Salva"
 
-#: classes/pref/filters.php:819
-#: js/functions.js:1069
+#: classes/pref/filters.php:877
+#: js/functions.js:1063
 msgid "Add rule"
 msgstr ""
 
-#: classes/pref/filters.php:842
+#: classes/pref/filters.php:900
 msgid "Perform Action"
 msgstr "Esegui azione"
 
-#: classes/pref/filters.php:868
+#: classes/pref/filters.php:926
 msgid "with parameters:"
 msgstr "con parametri:"
 
-#: classes/pref/filters.php:886
+#: classes/pref/filters.php:944
 #, fuzzy
 msgid "Save action"
 msgstr "Riquadro azioni"
 
-#: classes/pref/filters.php:886
-#: js/functions.js:1095
+#: classes/pref/filters.php:944
+#: js/functions.js:1089
 #, fuzzy
 msgid "Add action"
 msgstr "Azioni notiziari"
 
+#: classes/pref/filters.php:967
+#, fuzzy
+msgid "[No caption]"
+msgstr "Intestazione"
+
 #: classes/pref/prefs.php:17
 msgid "Old password cannot be blank."
 msgstr "La vecchia password non può essere vuota."
@@ -2396,249 +2324,276 @@ msgstr "Abilitare le categorie dei notiziari"
 msgid "Incorrect password"
 msgstr "Nome utente o password sbagliati"
 
-#: classes/pref/feeds.php:12
+#: classes/pref/prefs.php:879
+#, 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 "Si possono cambiare i colori, i caratteri e la disposizione del tema correntemente selezionato attraverso le dichiarazioni CSS personalizzate. <a target=\"_blank\" class=\"visibleLink\" href=\"%s\">Questo file</a> può essere utilizzato come base."
+
+#: classes/pref/prefs.php:919
+msgid "Create profile"
+msgstr "Crea profilo"
+
+#: classes/pref/prefs.php:942
+#: classes/pref/prefs.php:972
+msgid "(active)"
+msgstr "(attivo)"
+
+#: classes/pref/prefs.php:1006
+msgid "Remove selected profiles"
+msgstr "Rimuovi i profili selezionati"
+
+#: classes/pref/prefs.php:1008
+msgid "Activate profile"
+msgstr "Attiva profilo"
+
+#: classes/pref/feeds.php:13
 msgid "Check to enable field"
 msgstr "Spuntare per abilitare il campo"
 
-#: classes/pref/feeds.php:60
-#: classes/pref/feeds.php:208
-#: classes/pref/feeds.php:250
-#: classes/pref/feeds.php:256
-#: classes/pref/feeds.php:281
-#, fuzzy, php-format
-msgid "(%d feed)"
-msgid_plural "(%d feeds)"
-msgstr[0] "Notiziari memorizzati"
-msgstr[1] "Notiziari memorizzati"
-
-#: classes/pref/feeds.php:526
+#: classes/pref/feeds.php:527
 msgid "Feed Title"
 msgstr "Titolo notiziario"
 
-#: classes/pref/feeds.php:582
-#: classes/pref/feeds.php:808
+#: classes/pref/feeds.php:568
+#: classes/pref/feeds.php:793
+msgid "Update"
+msgstr "Aggiorna"
+
+#: classes/pref/feeds.php:583
+#: classes/pref/feeds.php:809
 msgid "Article purging:"
 msgstr "Eliminazione articoli:"
 
-#: classes/pref/feeds.php:605
+#: classes/pref/feeds.php:606
 msgid "<b>Hint:</b> you need to fill in your login information if your feed requires authentication, except for Twitter feeds."
 msgstr "<b>Suggerimento:</b> occorre riempire la informazioni di accesso se il proprio notiziario richiede l'autenticazione, eccetto per i notiziari di Twitter."
 
-#: classes/pref/feeds.php:621
-#: classes/pref/feeds.php:837
+#: classes/pref/feeds.php:622
+#: classes/pref/feeds.php:838
 msgid "Hide from Popular feeds"
 msgstr "Nascondere nei notiziari popolari"
 
-#: classes/pref/feeds.php:633
-#: classes/pref/feeds.php:843
+#: classes/pref/feeds.php:634
+#: classes/pref/feeds.php:844
 msgid "Include in e-mail digest"
 msgstr "Includere nell&apos;email riassunto"
 
-#: classes/pref/feeds.php:646
-#: classes/pref/feeds.php:849
+#: classes/pref/feeds.php:647
+#: classes/pref/feeds.php:850
 msgid "Always display image attachments"
 msgstr "Mostrare sempre le immagini allegate"
 
-#: classes/pref/feeds.php:659
-#: classes/pref/feeds.php:857
+#: classes/pref/feeds.php:660
+#: classes/pref/feeds.php:858
 msgid "Do not embed images"
 msgstr ""
 
-#: classes/pref/feeds.php:672
-#: classes/pref/feeds.php:865
+#: classes/pref/feeds.php:673
+#: classes/pref/feeds.php:866
 msgid "Cache images locally"
 msgstr "Memorizzare le immagini localmente"
 
-#: classes/pref/feeds.php:684
-#: classes/pref/feeds.php:871
+#: classes/pref/feeds.php:685
+#: classes/pref/feeds.php:872
 msgid "Mark updated articles as unread"
 msgstr "Segnare gli articoli aggiornati come non letti"
 
-#: classes/pref/feeds.php:690
+#: classes/pref/feeds.php:691
 msgid "Icon"
 msgstr "Icona"
 
-#: classes/pref/feeds.php:704
+#: classes/pref/feeds.php:705
 msgid "Replace"
 msgstr "Sostituisci"
 
-#: classes/pref/feeds.php:723
+#: classes/pref/feeds.php:724
 msgid "Resubscribe to push updates"
 msgstr "Sottoscrivi per inviare aggiornamenti"
 
-#: classes/pref/feeds.php:730
+#: classes/pref/feeds.php:731
 msgid "Resets PubSubHubbub subscription status for push-enabled feeds."
 msgstr "Reimposta lo stato di sottoscrizione a PubSubHubbub per notiziari abilitati all'invio."
 
-#: classes/pref/feeds.php:1111
-#: classes/pref/feeds.php:1164
+#: classes/pref/feeds.php:1112
+#: classes/pref/feeds.php:1165
 msgid "All done."
 msgstr "Fatto tutto."
 
-#: classes/pref/feeds.php:1219
+#: classes/pref/feeds.php:1220
 msgid "Feeds with errors"
 msgstr "Notiziari con errori"
 
-#: classes/pref/feeds.php:1239
+#: classes/pref/feeds.php:1240
 #, fuzzy
 msgid "Inactive feeds"
 msgstr "Aggiorna notiziario attivo"
 
-#: classes/pref/feeds.php:1276
+#: classes/pref/feeds.php:1277
 msgid "Edit selected feeds"
 msgstr "Modifica i notiziari selezionati"
 
-#: classes/pref/feeds.php:1278
-#: classes/pref/feeds.php:1292
-msgid "Reset sort order"
-msgstr "Reimposta ordinamento"
-
-#: classes/pref/feeds.php:1280
-#: js/prefs.js:1764
+#: classes/pref/feeds.php:1281
+#: js/prefs.js:1770
 msgid "Batch subscribe"
 msgstr ""
 
-#: classes/pref/feeds.php:1285
+#: classes/pref/feeds.php:1286
 #, fuzzy
 msgid "Categories"
 msgstr "Categorie notiziario"
 
-#: classes/pref/feeds.php:1288
+#: classes/pref/feeds.php:1289
 #, fuzzy
 msgid "Add category"
 msgstr "Modifica categorie"
 
-#: classes/pref/feeds.php:1290
+#: classes/pref/feeds.php:1291
 #, fuzzy
 msgid "(Un)hide empty categories"
 msgstr "Modifica categorie"
 
-#: classes/pref/feeds.php:1294
+#: classes/pref/feeds.php:1295
 #, fuzzy
 msgid "Remove selected"
 msgstr "Rimuovere i notiziari selezionati?"
 
-#: classes/pref/feeds.php:1308
+#: classes/pref/feeds.php:1309
 msgid "More actions..."
 msgstr "Altre azioni..."
 
-#: classes/pref/feeds.php:1312
+#: classes/pref/feeds.php:1313
 msgid "Manual purge"
 msgstr "Eliminazione manuale"
 
-#: classes/pref/feeds.php:1316
+#: classes/pref/feeds.php:1317
 msgid "Clear feed data"
 msgstr "Pulisci i dati del notiziario"
 
-#: classes/pref/feeds.php:1367
+#: classes/pref/feeds.php:1368
 msgid "OPML"
 msgstr "OPML"
 
-#: classes/pref/feeds.php:1369
+#: classes/pref/feeds.php:1370
 msgid "Using OPML you can export and import your feeds, filters, labels and Tiny Tiny RSS settings."
 msgstr ""
 
-#: classes/pref/feeds.php:1371
+#: classes/pref/feeds.php:1372
 msgid "Only main settings profile can be migrated using OPML."
 msgstr ""
 
-#: classes/pref/feeds.php:1384
+#: classes/pref/feeds.php:1385
 #, fuzzy
 msgid "Import my OPML"
 msgstr "Importazione OPML..."
 
-#: classes/pref/feeds.php:1388
+#: classes/pref/feeds.php:1389
 #, fuzzy
 msgid "Filename:"
 msgstr "Nome completo"
 
-#: classes/pref/feeds.php:1390
+#: classes/pref/feeds.php:1391
 #, fuzzy
 msgid "Include settings"
 msgstr "Includere nell&apos;email riassunto"
 
-#: classes/pref/feeds.php:1394
+#: classes/pref/feeds.php:1395
 #, fuzzy
 msgid "Export OPML"
 msgstr "Importazione OPML..."
 
-#: classes/pref/feeds.php:1398
+#: classes/pref/feeds.php:1399
 msgid "Your OPML can be published publicly and can be subscribed by anyone who knows the URL below."
 msgstr "OPML può essere pubblicato e può essere sottoscritto da chiunque conosca l&apos;URL seguente."
 
-#: classes/pref/feeds.php:1400
+#: classes/pref/feeds.php:1401
 msgid "Published OPML does not include your Tiny Tiny RSS settings, feeds that require authentication or feeds hidden from Popular feeds."
 msgstr ""
 
 #: classes/pref/feeds.php:1403
+msgid "Public OPML URL"
+msgstr "URL OPML pubblico"
+
+#: classes/pref/feeds.php:1404
 #, fuzzy
 msgid "Display published OPML URL"
 msgstr "URL OPML pubblico"
 
-#: classes/pref/feeds.php:1413
+#: classes/pref/feeds.php:1414
 msgid "Firefox integration"
 msgstr "Integrazione con Firefox"
 
-#: classes/pref/feeds.php:1415
+#: classes/pref/feeds.php:1416
 msgid "This Tiny Tiny RSS site can be used as a Firefox Feed Reader by clicking the link below."
 msgstr "Questo sito di Tiny Tiny RSS può essere utilizzato come lettore di notiziari di Firefox facendo clic sul collegamento qui sotto."
 
-#: classes/pref/feeds.php:1422
+#: classes/pref/feeds.php:1423
 msgid "Click here to register this site as a feed reader."
 msgstr "Fare clic qui per registrare questo sito come lettore di notiziari."
 
-#: classes/pref/feeds.php:1430
+#: classes/pref/feeds.php:1431
 #, fuzzy
 msgid "Published & shared articles / Generated feeds"
 msgstr "Articoli pubblicati e notiziari generati"
 
-#: classes/pref/feeds.php:1432
+#: classes/pref/feeds.php:1433
 msgid "Published articles and generated feeds"
 msgstr "Articoli pubblicati e notiziari generati"
 
-#: classes/pref/feeds.php:1434
+#: classes/pref/feeds.php:1435
 msgid "Published articles are exported as a public RSS feed and can be subscribed by anyone who knows the URL specified below."
 msgstr "Gli articoli pubblicati vengono esportati come un notiziario pubblico e possono essere sottoscritti da chiunque conosca l&apos;URL specificato qui sotto."
 
-#: classes/pref/feeds.php:1440
+#: classes/pref/feeds.php:1441
 msgid "Display URL"
 msgstr "Visualizza URL"
 
-#: classes/pref/feeds.php:1443
+#: classes/pref/feeds.php:1444
 msgid "Clear all generated URLs"
 msgstr "Pulisci tutti gli URL generati"
 
-#: classes/pref/feeds.php:1445
+#: classes/pref/feeds.php:1446
 msgid "Articles shared by URL"
 msgstr ""
 
-#: classes/pref/feeds.php:1447
+#: classes/pref/feeds.php:1448
 msgid "You can disable all articles shared by unique URLs here."
 msgstr ""
 
-#: classes/pref/feeds.php:1450
+#: classes/pref/feeds.php:1451
 #, fuzzy
 msgid "Unshare all articles"
 msgstr "Togli la stella all&apos;articolo"
 
-#: classes/pref/feeds.php:1528
+#: classes/pref/feeds.php:1529
 msgid "These feeds have not been updated with new content for 3 months (oldest first):"
 msgstr "Questi notiziari non sono stati aggiornati con nuovi contenuti da 3 mesi (più vecchi prima):"
 
-#: classes/pref/feeds.php:1565
-#: classes/pref/feeds.php:1635
+#: classes/pref/feeds.php:1566
+#: classes/pref/feeds.php:1636
 msgid "Click to edit feed"
 msgstr "Fare clic per modificare il notiziario"
 
-#: classes/pref/feeds.php:1583
-#: classes/pref/feeds.php:1655
+#: classes/pref/feeds.php:1584
+#: classes/pref/feeds.php:1656
 msgid "Unsubscribe from selected feeds"
 msgstr "Annulla la sottoscrizione ai notiziari selezionati"
 
-#: classes/pref/feeds.php:1594
+#: classes/pref/feeds.php:1595
 msgid "These feeds have not been updated because of errors:"
 msgstr "Questi notiziari non sono stati aggiornati a causa di errori:"
 
+#: classes/pref/feeds.php:1758
+msgid "Add one valid RSS feed per line (no feed detection is done)"
+msgstr ""
+
+#: classes/pref/feeds.php:1767
+msgid "Feeds to subscribe, One per line"
+msgstr ""
+
+#: classes/pref/feeds.php:1789
+msgid "Feeds require authentication."
+msgstr ""
+
 #: plugins/digest/digest_body.php:59
 #, fuzzy
 msgid "Your browser doesn't support Javascript, which is required for this application to function properly. Please check your browser settings."
@@ -2903,24 +2858,24 @@ msgstr "Imposta con stella"
 msgid "No file uploaded."
 msgstr ""
 
-#: plugins/googlereaderimport/init.php:149
+#: plugins/googlereaderimport/init.php:153
 #, php-format
 msgid "All done. %d out of %d articles imported."
 msgstr ""
 
-#: plugins/googlereaderimport/init.php:153
+#: plugins/googlereaderimport/init.php:157
 msgid "The document has incorrect format."
 msgstr ""
 
-#: plugins/googlereaderimport/init.php:322
+#: plugins/googlereaderimport/init.php:326
 msgid "Import starred or shared items from Google Reader"
 msgstr ""
 
-#: plugins/googlereaderimport/init.php:326
+#: plugins/googlereaderimport/init.php:330
 msgid "Paste your starred.json or shared.json into the form below."
 msgstr ""
 
-#: plugins/googlereaderimport/init.php:340
+#: plugins/googlereaderimport/init.php:344
 msgid "Import my Starred items"
 msgstr ""
 
@@ -2928,6 +2883,38 @@ msgstr ""
 msgid "Linked"
 msgstr "Collegato"
 
+#: plugins/instances/init.php:207
+#: plugins/instances/init.php:399
+msgid "Instance"
+msgstr "Istanza"
+
+#: plugins/instances/init.php:218
+#: plugins/instances/init.php:315
+#: plugins/instances/init.php:408
+msgid "Instance URL"
+msgstr "URL dell'istanza"
+
+#: plugins/instances/init.php:229
+#: plugins/instances/init.php:418
+msgid "Access key:"
+msgstr "Chiave di accesso:"
+
+#: plugins/instances/init.php:232
+#: plugins/instances/init.php:316
+#: plugins/instances/init.php:421
+msgid "Access key"
+msgstr "Chiave di accesso"
+
+#: plugins/instances/init.php:236
+#: plugins/instances/init.php:425
+msgid "Use one access key for both linked instances."
+msgstr "Utilizzare una chiave di accesso per entrambe le istanze collegate."
+
+#: plugins/instances/init.php:244
+#: plugins/instances/init.php:433
+msgid "Generate new key"
+msgstr "Genera nuova chiave"
+
 #: plugins/instances/init.php:295
 msgid "Link instance"
 msgstr "Collega istanza"
@@ -2948,6 +2935,10 @@ msgstr ""
 msgid "Stored feeds"
 msgstr "Notiziari memorizzati"
 
+#: plugins/instances/init.php:437
+msgid "Create link"
+msgstr "Crea collegamento"
+
 #: plugins/share/init.php:27
 msgid "Share by URL"
 msgstr ""
@@ -3012,176 +3003,180 @@ msgstr "Si vuole notificare questa eccezione a tt-rss.org? La notifica includer
 msgid "close"
 msgstr ""
 
-#: js/functions.js:627
+#: js/functions.js:621
 msgid "Date syntax appears to be correct:"
 msgstr "La sintassi della data appare con corretta:"
 
-#: js/functions.js:630
+#: js/functions.js:624
 msgid "Date syntax is incorrect."
 msgstr "La sintassi della data non è corretta."
 
-#: js/functions.js:724
+#: js/functions.js:636
+msgid "Error explained"
+msgstr ""
+
+#: js/functions.js:718
 msgid "Upload complete."
 msgstr ""
 
-#: js/functions.js:748
+#: js/functions.js:742
 msgid "Remove stored feed icon?"
 msgstr "Rimuovi le icone salvate dei notiziari?"
 
-#: js/functions.js:753
+#: js/functions.js:747
 #, fuzzy
 msgid "Removing feed icon..."
 msgstr "Rimuovi le icone salvate dei notiziari?"
 
-#: js/functions.js:758
+#: js/functions.js:752
 #, fuzzy
 msgid "Feed icon removed."
 msgstr "Notiziario non trovato."
 
-#: js/functions.js:780
+#: js/functions.js:774
 msgid "Please select an image file to upload."
 msgstr "Selezionare un file immagine da caricare."
 
-#: js/functions.js:782
+#: js/functions.js:776
 msgid "Upload new icon for this feed?"
 msgstr "Caricare una nuova icona per questo notiziario?"
 
-#: js/functions.js:783
+#: js/functions.js:777
 #, fuzzy
 msgid "Uploading, please wait..."
 msgstr "Caricamento, attendere prego..."
 
-#: js/functions.js:799
+#: js/functions.js:793
 msgid "Please enter label caption:"
 msgstr "Inserire l'intestazione dell'etichetta:"
 
-#: js/functions.js:804
+#: js/functions.js:798
 msgid "Can't create label: missing caption."
 msgstr "Impossibile creare l'etichetta: intestazione mancante."
 
-#: js/functions.js:847
+#: js/functions.js:841
 msgid "Subscribe to Feed"
 msgstr "Sottoscrivi il notiziario"
 
-#: js/functions.js:874
+#: js/functions.js:868
 msgid "Subscribed to %s"
 msgstr "Sottoscrizione effettuata a «%s»"
 
-#: js/functions.js:879
+#: js/functions.js:873
 msgid "Specified URL seems to be invalid."
 msgstr "L'URL specifica sembra essere non valido."
 
-#: js/functions.js:882
+#: js/functions.js:876
 msgid "Specified URL doesn't seem to contain any feeds."
 msgstr "L'URL specificato non sembra contenere alcun notiziario."
 
-#: js/functions.js:935
+#: js/functions.js:929
 #, fuzzy
 msgid "Couldn't download the specified URL: %s"
 msgstr "Impossibile scaricare l'URL specificato."
 
-#: js/functions.js:939
+#: js/functions.js:933
 msgid "You are already subscribed to this feed."
 msgstr "La sottoscrizione a questo notiziario è già stata effettuata."
 
-#: js/functions.js:1069
+#: js/functions.js:1063
 #, fuzzy
 msgid "Edit rule"
 msgstr "Modifica filtro"
 
-#: js/functions.js:1095
+#: js/functions.js:1089
 #, fuzzy
 msgid "Edit action"
 msgstr "Azioni notiziari"
 
-#: js/functions.js:1132
+#: js/functions.js:1126
 msgid "Create Filter"
 msgstr "Crea filtro"
 
-#: js/functions.js:1247
+#: js/functions.js:1241
 msgid "Reset subscription? Tiny Tiny RSS will try to subscribe to the notification hub again on next feed update."
 msgstr "Reimpostare la sottoscrizione? Tiny Tiny RSS proverà ancora al prossimo aggiornamento del notiziario a sottoscrivere il centro notifiche."
 
-#: js/functions.js:1258
+#: js/functions.js:1252
 #, fuzzy
 msgid "Subscription reset."
 msgstr "Sottoscrivi il notiziario..."
 
-#: js/functions.js:1268
+#: js/functions.js:1262
 #: js/tt-rss.js:619
 msgid "Unsubscribe from %s?"
 msgstr "Annullare la sottoscrizione a «%s»?"
 
-#: js/functions.js:1271
+#: js/functions.js:1265
 msgid "Removing feed..."
 msgstr ""
 
-#: js/functions.js:1379
+#: js/functions.js:1373
 msgid "Please enter category title:"
 msgstr "Inserire il titolo della categoria:"
 
-#: js/functions.js:1410
+#: js/functions.js:1404
 msgid "Generate new syndication address for this feed?"
 msgstr "Generare un nuovo indirizzo per questo notiziario?"
 
-#: js/functions.js:1414
-#: js/prefs.js:1234
+#: js/functions.js:1408
+#: js/prefs.js:1222
 msgid "Trying to change address..."
 msgstr ""
 
-#: js/functions.js:1601
+#: js/functions.js:1595
 #: js/tt-rss.js:396
 #: js/tt-rss.js:600
 msgid "You can't edit this kind of feed."
 msgstr "Impossibile modificare questo tipo di notiziario."
 
-#: js/functions.js:1616
+#: js/functions.js:1610
 msgid "Edit Feed"
 msgstr "Modifica notiziario"
 
-#: js/functions.js:1622
+#: js/functions.js:1616
 #: js/prefs.js:194
 #: js/prefs.js:749
 #, fuzzy
 msgid "Saving data..."
 msgstr "Salva dati"
 
-#: js/functions.js:1654
+#: js/functions.js:1648
 msgid "More Feeds"
 msgstr "Altri notiziari"
 
-#: js/functions.js:1715
-#: js/functions.js:1825
+#: js/functions.js:1709
+#: js/functions.js:1819
 #: 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
+#: js/prefs.js:1198
+#: js/prefs.js:1343
 msgid "No feeds are selected."
 msgstr "Nessun notiziario selezionato."
 
-#: js/functions.js:1757
+#: js/functions.js:1751
 msgid "Remove selected feeds from the archive? Feeds with stored articles will not be removed."
 msgstr "Rimuovere i notiziari selezionati dall'archivio? I notiziari con articoli archiviati non saranno rimossi."
 
-#: js/functions.js:1796
+#: js/functions.js:1790
 msgid "Feeds with update errors"
 msgstr "Notiziari con errori di aggiornamento"
 
-#: js/functions.js:1807
-#: js/prefs.js:1192
+#: js/functions.js:1801
+#: js/prefs.js:1180
 msgid "Remove selected feeds?"
 msgstr "Rimuovere i notiziari selezionati?"
 
-#: js/functions.js:1810
-#: js/prefs.js:1195
+#: js/functions.js:1804
+#: js/prefs.js:1183
 #, fuzzy
 msgid "Removing selected feeds..."
 msgstr "Rimuovere i notiziari selezionati?"
 
-#: js/functions.js:1908
+#: js/functions.js:1902
 msgid "Help"
 msgstr ""
 
@@ -3195,7 +3190,7 @@ msgstr "Modifica categorie"
 msgid "Remove category"
 msgstr "Crea categoria"
 
-#: js/PrefFilterTree.js:32
+#: js/PrefFilterTree.js:48
 msgid "Inverse"
 msgstr "Inverso"
 
@@ -3236,7 +3231,7 @@ msgid "Removing selected labels..."
 msgstr "Rimuovere le etichette selezionate?"
 
 #: js/prefs.js:295
-#: js/prefs.js:1396
+#: js/prefs.js:1384
 msgid "No labels are selected."
 msgstr "Nessuna etichetta selezionata."
 
@@ -3348,155 +3343,155 @@ msgstr "Modifica notiziari multipli"
 msgid "Save changes to selected feeds?"
 msgstr "Salvare i cambiamenti ai notiziari selezionati?"
 
-#: js/prefs.js:797
+#: js/prefs.js:785
 msgid "OPML Import"
 msgstr "Importazione OPML"
 
-#: js/prefs.js:824
+#: js/prefs.js:812
 msgid "Please choose an OPML file first."
 msgstr "Scegliere prima un file OPML."
 
-#: js/prefs.js:827
+#: js/prefs.js:815
 #: plugins/import_export/import_export.js:115
 #: plugins/googlereaderimport/init.js:45
 #, fuzzy
 msgid "Importing, please wait..."
 msgstr "Caricamento, attendere prego..."
 
-#: js/prefs.js:980
+#: js/prefs.js:968
 msgid "Reset to defaults?"
 msgstr "Reimpostare ai valori predefiniti?"
 
-#: js/prefs.js:1099
+#: js/prefs.js:1087
 msgid "Remove category %s? Any nested feeds would be placed into Uncategorized."
 msgstr ""
 
-#: js/prefs.js:1105
+#: js/prefs.js:1093
 #, fuzzy
 msgid "Removing category..."
 msgstr "Crea categoria"
 
-#: js/prefs.js:1126
+#: js/prefs.js:1114
 msgid "Remove selected categories?"
 msgstr "Rimuovere le categorie selezionate?"
 
-#: js/prefs.js:1129
+#: js/prefs.js:1117
 #, fuzzy
 msgid "Removing selected categories..."
 msgstr "Rimuovi le categorie selezionate"
 
-#: js/prefs.js:1142
+#: js/prefs.js:1130
 msgid "No categories are selected."
 msgstr "Nessuna categoria selezionata."
 
-#: js/prefs.js:1150
+#: js/prefs.js:1138
 #, fuzzy
 msgid "Category title:"
 msgstr "Categorie"
 
-#: js/prefs.js:1154
+#: js/prefs.js:1142
 #, fuzzy
 msgid "Creating category..."
 msgstr "Crea filtro..."
 
-#: js/prefs.js:1181
+#: js/prefs.js:1169
 msgid "Feeds without recent updates"
 msgstr "Notiziari senza aggiornamenti recenti"
 
-#: js/prefs.js:1230
+#: js/prefs.js:1218
 msgid "Replace current OPML publishing address with a new one?"
 msgstr "Sostituire l&apos;indirizzo di pubblicazione OPML attuale con uno nuovo?"
 
-#: js/prefs.js:1319
+#: js/prefs.js:1307
 #, fuzzy
 msgid "Clearing feed..."
 msgstr "Pulisci i dati del notiziario"
 
-#: js/prefs.js:1339
+#: js/prefs.js:1327
 msgid "Rescore articles in selected feeds?"
 msgstr "Cambiare il punteggio agli articoli nel notiziario selezionato?"
 
-#: js/prefs.js:1342
+#: js/prefs.js:1330
 #, fuzzy
 msgid "Rescoring selected feeds..."
 msgstr "Cambiare il punteggio agli articoli nel notiziario selezionato?"
 
-#: js/prefs.js:1362
+#: js/prefs.js:1350
 msgid "Rescore all articles? This operation may take a lot of time."
 msgstr "Cambiare il punteggio a tutti i notiziari? Questa operazione può durare molto tempo."
 
-#: js/prefs.js:1365
+#: js/prefs.js:1353
 #, fuzzy
 msgid "Rescoring feeds..."
 msgstr "Cambia punteggio notiziario"
 
-#: js/prefs.js:1382
+#: js/prefs.js:1370
 msgid "Reset selected labels to default colors?"
 msgstr "Reimpostare le etichette selezionate ai colori predefiniti?"
 
-#: js/prefs.js:1419
+#: js/prefs.js:1407
 msgid "Settings Profiles"
 msgstr "Impostazioni dei profili"
 
-#: js/prefs.js:1428
+#: js/prefs.js:1416
 msgid "Remove selected profiles? Active and default profiles will not be removed."
 msgstr "Rimuovere i profili selezionati? Il profilo attivo e quello predefinito non saranno rimossi."
 
-#: js/prefs.js:1431
+#: js/prefs.js:1419
 #, fuzzy
 msgid "Removing selected profiles..."
 msgstr "Rimuovi i profili selezionati"
 
-#: js/prefs.js:1446
+#: js/prefs.js:1434
 msgid "No profiles are selected."
 msgstr "Nessun profilo selezionato."
 
-#: js/prefs.js:1454
-#: js/prefs.js:1507
+#: js/prefs.js:1442
+#: js/prefs.js:1495
 msgid "Activate selected profile?"
 msgstr "Attivare il profilo selezionato?"
 
-#: js/prefs.js:1470
-#: js/prefs.js:1523
+#: js/prefs.js:1458
+#: js/prefs.js:1511
 msgid "Please choose a profile to activate."
 msgstr "Scegliere un profilo da attivare"
 
-#: js/prefs.js:1475
+#: js/prefs.js:1463
 #, fuzzy
 msgid "Creating profile..."
 msgstr "Crea profilo"
 
-#: js/prefs.js:1531
+#: js/prefs.js:1519
 msgid "This will invalidate all previously generated feed URLs. Continue?"
 msgstr "Questo invaliderà tutti gli URL di notiziari generati precedentemente. Continuare?"
 
-#: js/prefs.js:1534
-#: js/prefs.js:1553
+#: js/prefs.js:1522
+#: js/prefs.js:1541
 msgid "Clearing URLs..."
 msgstr ""
 
-#: js/prefs.js:1541
+#: js/prefs.js:1529
 #, fuzzy
 msgid "Generated URLs cleared."
 msgstr "Genera nuovo URL"
 
-#: js/prefs.js:1550
+#: js/prefs.js:1538
 msgid "This will invalidate all previously shared article URLs. Continue?"
 msgstr ""
 
-#: js/prefs.js:1560
+#: js/prefs.js:1548
 msgid "Shared URLs cleared."
 msgstr ""
 
-#: js/prefs.js:1648
+#: js/prefs.js:1654
 msgid "Label Editor"
 msgstr "Editor etichette"
 
-#: js/prefs.js:1770
+#: js/prefs.js:1776
 msgid "Subscribing to feeds..."
 msgstr ""
 
-#: js/prefs.js:1807
+#: js/prefs.js:1813
 msgid "Clear stored data for this plugin?"
 msgstr ""
 
@@ -3519,29 +3514,33 @@ msgstr "Selezionare prima qualche notiziario."
 msgid "Please enable embed_original plugin first."
 msgstr "Selezionare prima qualche notiziario."
 
+#: js/tt-rss.js:587
+msgid "Select item(s) by tags"
+msgstr ""
+
 #: js/tt-rss.js:608
 msgid "You can't unsubscribe from the category."
 msgstr "Impossibile annullare la sottoscrizione alla categoria."
 
 #: js/tt-rss.js:613
-#: js/tt-rss.js:769
+#: js/tt-rss.js:765
 msgid "Please select some feed first."
 msgstr "Selezionare prima qualche notiziario."
 
-#: js/tt-rss.js:764
+#: js/tt-rss.js:760
 msgid "You can't rescore this kind of feed."
 msgstr "Impossibile cambiare il punteggio a questo tipo di notiziari."
 
-#: js/tt-rss.js:774
+#: js/tt-rss.js:770
 msgid "Rescore articles in %s?"
 msgstr "Cambiare il punteggio degli articoli in «%s»?"
 
-#: js/tt-rss.js:777
+#: js/tt-rss.js:773
 #, fuzzy
 msgid "Rescoring articles..."
 msgstr "Cambio punteggio degli articoli"
 
-#: js/tt-rss.js:911
+#: js/tt-rss.js:907
 msgid "New version available!"
 msgstr "Nuova versione disponibile."
 
@@ -3573,119 +3572,115 @@ msgstr "Non pubblicare articolo"
 #: js/viewfeed.js:734
 #: js/viewfeed.js:797
 #: js/viewfeed.js:831
-#: js/viewfeed.js:968
-#: js/viewfeed.js:1011
-#: js/viewfeed.js:1064
-#: js/viewfeed.js:2108
+#: js/viewfeed.js:951
+#: js/viewfeed.js:994
+#: js/viewfeed.js:1047
+#: js/viewfeed.js:2096
 #: plugins/mailto/init.js:7
 #: plugins/mail/mail.js:7
 msgid "No articles are selected."
 msgstr "Nessun articolo selezionato."
 
-#: js/viewfeed.js:948
-msgid "Mark all visible articles in %s as read?"
-msgstr "Segnare tutti gli articoli visibili in «%s» come letti?"
-
-#: js/viewfeed.js:976
+#: js/viewfeed.js:959
 #, fuzzy
 msgid "Delete %d selected article in %s?"
 msgid_plural "Delete %d selected articles in %s?"
 msgstr[0] "Eliminare i %d articoli selezionati in «%s»?"
 msgstr[1] "Eliminare i %d articoli selezionati in «%s»?"
 
-#: js/viewfeed.js:978
+#: js/viewfeed.js:961
 #, fuzzy
 msgid "Delete %d selected article?"
 msgid_plural "Delete %d selected articles?"
 msgstr[0] "Eliminare i %d articoli selezionati?"
 msgstr[1] "Eliminare i %d articoli selezionati?"
 
-#: js/viewfeed.js:1020
+#: js/viewfeed.js:1003
 #, fuzzy
 msgid "Archive %d selected article in %s?"
 msgid_plural "Archive %d selected articles in %s?"
 msgstr[0] "Archiviare i %d articoli selezionati in «%s»?"
 msgstr[1] "Archiviare i %d articoli selezionati in «%s»?"
 
-#: js/viewfeed.js:1023
+#: js/viewfeed.js:1006
 #, fuzzy
 msgid "Move %d archived article back?"
 msgid_plural "Move %d archived articles back?"
 msgstr[0] "Spostare %d articoli archiviati indietro?"
 msgstr[1] "Spostare %d articoli archiviati indietro?"
 
-#: js/viewfeed.js:1025
+#: js/viewfeed.js:1008
 msgid "Please note that unstarred articles might get purged on next feed update."
 msgstr ""
 
-#: js/viewfeed.js:1070
+#: js/viewfeed.js:1053
 #, fuzzy
 msgid "Mark %d selected article in %s as read?"
 msgid_plural "Mark %d selected articles in %s as read?"
 msgstr[0] "Segnare %d articoli selezionati in «%s» come letti?"
 msgstr[1] "Segnare %d articoli selezionati in «%s» come letti?"
 
-#: js/viewfeed.js:1094
+#: js/viewfeed.js:1077
 msgid "Edit article Tags"
 msgstr "Modifica etichette articolo"
 
-#: js/viewfeed.js:1100
+#: js/viewfeed.js:1083
 #, fuzzy
 msgid "Saving article tags..."
 msgstr "Modifica etichette articolo"
 
-#: js/viewfeed.js:1337
+#: js/viewfeed.js:1323
 msgid "No article is selected."
 msgstr "Nessun articolo selezionato."
 
-#: js/viewfeed.js:1372
+#: js/viewfeed.js:1358
 msgid "No articles found to mark"
 msgstr "Nessun articolo trovato da segnare"
 
-#: js/viewfeed.js:1374
+#: js/viewfeed.js:1360
 #, fuzzy
 msgid "Mark %d article as read?"
 msgid_plural "Mark %d articles as read?"
 msgstr[0] "Segnare %d articolo/i come letto/i?"
 msgstr[1] "Segnare %d articolo/i come letto/i?"
 
-#: js/viewfeed.js:1884
+#: js/viewfeed.js:1872
 msgid "Open original article"
 msgstr "Apri articolo di origine"
 
-#: js/viewfeed.js:1890
+#: js/viewfeed.js:1878
 #, fuzzy
 msgid "Display article URL"
 msgstr "Visualizza URL"
 
-#: js/viewfeed.js:1909
+#: js/viewfeed.js:1897
 #, fuzzy
 msgid "Toggle marked"
 msgstr "Inverti con stella"
 
-#: js/viewfeed.js:1995
+#: js/viewfeed.js:1983
 msgid "Remove label"
 msgstr "Rimuovi etichetta"
 
-#: js/viewfeed.js:2019
+#: js/viewfeed.js:2007
 msgid "Playing..."
 msgstr "In riproduzione..."
 
-#: js/viewfeed.js:2020
+#: js/viewfeed.js:2008
 msgid "Click to pause"
 msgstr "Fare clic per mettere in pausa"
 
-#: js/viewfeed.js:2077
+#: js/viewfeed.js:2065
 #, fuzzy
 msgid "Please enter new score for selected articles:"
 msgstr "Eliminare i %d articoli selezionati?"
 
-#: js/viewfeed.js:2119
+#: js/viewfeed.js:2107
 #, fuzzy
 msgid "Please enter new score for this article:"
 msgstr "Inserire il titolo della categoria:"
 
-#: js/viewfeed.js:2152
+#: js/viewfeed.js:2140
 #, fuzzy
 msgid "Article URL:"
 msgstr "Tutti gli articoli"
@@ -3796,6 +3791,21 @@ msgstr "Metti la stella all&apos;articolo"
 msgid "Live updating is considered experimental. Backup your tt-rss directory before continuing. Please type 'yes' to continue."
 msgstr ""
 
+#, fuzzy
+#~ msgid "(%d feed)"
+#~ msgid_plural "(%d feeds)"
+#~ msgstr[0] "Notiziari memorizzati"
+#~ msgstr[1] "Notiziari memorizzati"
+
+#~ msgid "Notice"
+#~ msgstr "Notifica"
+
+#~ msgid "Tag Cloud"
+#~ msgstr "Nuvola etichette"
+
+#~ msgid "Mark all visible articles in %s as read?"
+#~ msgstr "Segnare tutti gli articoli visibili in «%s» come letti?"
+
 #~ msgid "Date"
 #~ msgstr "Data"
 
index b1f6e05f8f599a883f654a61bf406083b4d1880b..831521a371e36ca01e0f81fed3574b7ed3af9bc2 100644 (file)
Binary files a/locale/ja_JP/LC_MESSAGES/messages.mo and b/locale/ja_JP/LC_MESSAGES/messages.mo differ
index 0f6346d05a77eec95e9d1b2c1808ca9bac8d30aa..09b37b3e359e8c56b89c70fa8280f9ffd239c32b 100644 (file)
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: tt-rss unstable\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-03-31 12:47+0400\n"
+"POT-Creation-Date: 2013-04-01 16:28+0400\n"
 "PO-Revision-Date: 2013-03-25 06:48+0900\n"
 "Last-Translator: skikuta <kik0220@gmail.com>\n"
 "Language-Team: \n"
@@ -136,9 +136,9 @@ msgstr "Tiny Tiny RSS のデータベースを更新しました。"
 #: register.php:336
 #: register.php:346
 #: register.php:358
-#: classes/handler/public.php:625
-#: classes/handler/public.php:713
-#: classes/handler/public.php:795
+#: classes/handler/public.php:626
+#: classes/handler/public.php:714
+#: classes/handler/public.php:796
 msgid "Return to Tiny Tiny RSS"
 msgstr "Tiny Tiny RSS に戻る"
 
@@ -249,36 +249,37 @@ msgstr "SQLのエスケープ処理のテストに失敗しました。データ
 
 #: index.php:135
 #: index.php:154
-#: index.php:264
-#: prefs.php:102
+#: index.php:263
+#: prefs.php:103
 #: classes/backend.php:5
 #: classes/pref/labels.php:296
-#: classes/pref/filters.php:628
-#: classes/pref/feeds.php:1330
+#: classes/pref/filters.php:680
+#: classes/pref/feeds.php:1331
 #: plugins/digest/digest_body.php:63
 #: js/feedlist.js:128
 #: js/feedlist.js:448
 #: js/functions.js:420
-#: js/functions.js:814
-#: js/functions.js:1250
-#: js/functions.js:1385
-#: js/functions.js:1697
+#: js/functions.js:808
+#: js/functions.js:1244
+#: js/functions.js:1379
+#: js/functions.js:1691
 #: js/prefs.js:86
 #: js/prefs.js:576
 #: js/prefs.js:666
-#: js/prefs.js:870
-#: js/prefs.js:1457
-#: js/prefs.js:1510
-#: js/prefs.js:1568
-#: js/prefs.js:1584
-#: js/prefs.js:1600
-#: js/prefs.js:1619
-#: js/prefs.js:1792
-#: js/prefs.js:1808
+#: js/prefs.js:858
+#: js/prefs.js:1445
+#: js/prefs.js:1498
+#: js/prefs.js:1557
+#: js/prefs.js:1574
+#: js/prefs.js:1590
+#: js/prefs.js:1606
+#: js/prefs.js:1625
+#: js/prefs.js:1798
+#: js/prefs.js:1814
 #: js/tt-rss.js:475
 #: js/tt-rss.js:492
 #: js/viewfeed.js:774
-#: js/viewfeed.js:1259
+#: js/viewfeed.js:1245
 #: plugins/import_export/import_export.js:17
 #: plugins/updater/updater.js:17
 msgid "Loading, please wait..."
@@ -302,13 +303,13 @@ msgid "All Articles"
 msgstr "すべての記事"
 
 #: index.php:176
-#: include/functions.php:1974
+#: include/functions.php:1924
 #: classes/feeds.php:106
 msgid "Starred"
 msgstr "お気に入り"
 
 #: index.php:177
-#: include/functions.php:1975
+#: include/functions.php:1925
 #: classes/feeds.php:107
 msgid "Published"
 msgstr "公開済み"
@@ -349,22 +350,15 @@ msgstr ""
 msgid "Oldest first"
 msgstr ""
 
-#: index.php:195
-#: classes/pref/feeds.php:567
-#: classes/pref/feeds.php:792
-msgid "Update"
-msgstr "更新"
-
-#: index.php:197
+#: index.php:192
 msgid "Mark feed as read"
 msgstr "マークしたフィードを既読にする"
 
-#: index.php:200
-#: index.php:235
-#: include/functions.php:1964
+#: index.php:195
+#: index.php:234
+#: include/functions.php:1914
 #: include/localized_schema.php:10
 #: classes/feeds.php:111
-#: classes/feeds.php:136
 #: classes/feeds.php:437
 #: js/FeedTree.js:128
 #: js/FeedTree.js:156
@@ -372,114 +366,119 @@ msgstr "マークしたフィードを既読にする"
 msgid "Mark as read"
 msgstr "既読にする"
 
-#: index.php:201
-#: include/functions.php:1860
-#: include/functions.php:1972
+#: index.php:196
+#: include/functions.php:1810
+#: include/functions.php:1922
 msgid "All articles"
 msgstr "すべての記事"
 
-#: index.php:202
+#: index.php:197
 msgid "Older than one day"
 msgstr ""
 
-#: index.php:203
+#: index.php:198
 msgid "Older than one week"
 msgstr ""
 
-#: index.php:204
+#: index.php:199
 msgid "Older than two weeks"
 msgstr ""
 
-#: index.php:212
+#: index.php:204
+#, fuzzy
+msgid "Refresh"
+msgstr "再描画"
+
+#: index.php:211
 msgid "Communication problem with server."
 msgstr "サーバーとの通信に問題が発生しました。"
 
-#: index.php:220
+#: index.php:219
 msgid "New version of Tiny Tiny RSS is available!"
 msgstr "Tiny Tiny RSS の新しいバージョンが利用できます!"
 
-#: index.php:225
+#: index.php:224
 msgid "Actions..."
 msgstr "操作..."
 
-#: index.php:227
+#: index.php:226
 #, fuzzy
 msgid "Preferences..."
 msgstr "設定"
 
-#: index.php:228
+#: index.php:227
 msgid "Search..."
 msgstr "検索..."
 
-#: index.php:229
+#: index.php:228
 msgid "Feed actions:"
 msgstr "フィード操作"
 
-#: index.php:230
-#: classes/handler/public.php:555
+#: index.php:229
+#: classes/handler/public.php:556
 msgid "Subscribe to feed..."
 msgstr "フィードを購読する..."
 
-#: index.php:231
+#: index.php:230
 msgid "Edit this feed..."
 msgstr "フィードを編集する..."
 
-#: index.php:232
+#: index.php:231
 msgid "Rescore feed"
 msgstr "フィードのスコアを再計算しています..."
 
-#: index.php:233
-#: classes/pref/feeds.php:716
-#: classes/pref/feeds.php:1303
+#: index.php:232
+#: classes/pref/feeds.php:717
+#: classes/pref/feeds.php:1304
 #: js/PrefFeedTree.js:73
 msgid "Unsubscribe"
 msgstr "購読をやめる"
 
-#: index.php:234
+#: index.php:233
 msgid "All feeds:"
 msgstr "すべてのフィード:"
 
-#: index.php:236
+#: index.php:235
 msgid "(Un)hide read feeds"
 msgstr "読んだフィードを隠す/再表示する"
 
-#: index.php:237
+#: index.php:236
 msgid "Other actions:"
 msgstr "その他の操作:"
 
-#: index.php:239
+#: index.php:238
 msgid "Switch to digest..."
 msgstr "ダイジェストに移行..."
 
-#: index.php:241
+#: index.php:240
 #, fuzzy
 msgid "Show tag cloud..."
 msgstr "タグクラウド"
 
-#: index.php:242
-#: include/functions.php:1950
+#: index.php:241
+#: include/functions.php:1900
 #, fuzzy
 msgid "Toggle widescreen mode"
 msgstr "カテゴリーの並び替えモードの切り替え"
 
-#: index.php:243
+#: index.php:242
 msgid "Select by tags..."
 msgstr "タグで選択..."
 
-#: index.php:244
+#: index.php:243
 msgid "Create label..."
 msgstr "ラベルを作成する..."
 
-#: index.php:245
+#: index.php:244
 msgid "Create filter..."
 msgstr "フィルターを作成しています..."
 
-#: index.php:246
+#: index.php:245
 #, fuzzy
 msgid "Keyboard shortcuts help"
 msgstr "キーボードショートカット"
 
-#: index.php:248
+#: index.php:247
 #: plugins/digest/digest_body.php:77
 #: plugins/mobile/mobile-functions.php:62
 #: plugins/mobile/mobile-functions.php:237
@@ -487,41 +486,41 @@ msgid "Logout"
 msgstr "ログアウト"
 
 #: prefs.php:36
-#: prefs.php:122
-#: include/functions.php:1977
+#: prefs.php:121
+#: include/functions.php:1927
 #: classes/pref/prefs.php:377
 msgid "Preferences"
 msgstr "設定"
 
-#: prefs.php:113
+#: prefs.php:112
 msgid "Keyboard shortcuts"
 msgstr "キーボードショートカット"
 
-#: prefs.php:114
+#: prefs.php:113
 msgid "Exit preferences"
 msgstr "設定を終了する"
 
-#: prefs.php:125
-#: classes/pref/feeds.php:106
-#: classes/pref/feeds.php:1208
-#: classes/pref/feeds.php:1271
+#: prefs.php:124
+#: classes/pref/feeds.php:107
+#: classes/pref/feeds.php:1209
+#: classes/pref/feeds.php:1272
 msgid "Feeds"
 msgstr "フィード"
 
-#: prefs.php:128
-#: classes/pref/filters.php:120
+#: prefs.php:127
+#: classes/pref/filters.php:156
 msgid "Filters"
 msgstr "フィルター"
 
-#: prefs.php:131
-#: include/functions.php:1167
-#: include/functions.php:1803
+#: prefs.php:130
+#: include/functions.php:1117
+#: include/functions.php:1753
 #: classes/pref/labels.php:90
 #: plugins/mobile/mobile-functions.php:198
 msgid "Labels"
 msgstr "ラベル"
 
-#: prefs.php:135
+#: prefs.php:134
 msgid "Users"
 msgstr "ユーザー"
 
@@ -547,12 +546,12 @@ msgid "Check availability"
 msgstr "有効性の確認"
 
 #: register.php:228
-#: classes/handler/public.php:753
+#: classes/handler/public.php:754
 msgid "Email:"
 msgstr "メールアドレス:"
 
 #: register.php:231
-#: classes/handler/public.php:758
+#: classes/handler/public.php:759
 msgid "How much is two plus two:"
 msgstr "2 + 2 = ?"
 
@@ -586,12 +585,12 @@ msgid "Tiny Tiny RSS data update script."
 msgstr "Tiny Tiny RSS のデータベースを更新しました。"
 
 #: include/digest.php:109
-#: include/functions.php:1176
-#: include/functions.php:1704
-#: include/functions.php:1789
-#: include/functions.php:1811
+#: include/functions.php:1126
+#: include/functions.php:1654
+#: include/functions.php:1739
+#: include/functions.php:1761
 #: classes/opml.php:416
-#: classes/pref/feeds.php:221
+#: classes/pref/feeds.php:222
 msgid "Uncategorized"
 msgstr "カテゴリー割り当てなし"
 
@@ -606,366 +605,364 @@ msgstr[1] "お気に入りの記事"
 msgid "No feeds found."
 msgstr "フィードがありません。"
 
-#: include/functions.php:722
-msgid "Session failed to validate (incorrect IP)"
-msgstr "セッションの検査に失敗しました (IP が正しくない)"
-
-#: include/functions.php:1165
-#: include/functions.php:1801
+#: include/functions.php:1115
+#: include/functions.php:1751
 #: plugins/mobile/mobile-functions.php:171
 msgid "Special"
 msgstr "特別"
 
-#: include/functions.php:1653
-#: classes/dlg.php:369
-#: classes/pref/filters.php:382
+#: include/functions.php:1603
+#: classes/feeds.php:1097
+#: classes/pref/filters.php:427
 msgid "All feeds"
 msgstr "すべてのフィード"
 
-#: include/functions.php:1854
+#: include/functions.php:1804
 msgid "Starred articles"
 msgstr "お気に入りの記事"
 
-#: include/functions.php:1856
+#: include/functions.php:1806
 msgid "Published articles"
 msgstr "公開済みの記事"
 
-#: include/functions.php:1858
+#: include/functions.php:1808
 msgid "Fresh articles"
 msgstr "新しい記事"
 
-#: include/functions.php:1862
+#: include/functions.php:1812
 #, fuzzy
 msgid "Archived articles"
 msgstr "未読記事"
 
-#: include/functions.php:1864
+#: include/functions.php:1814
 msgid "Recently read"
 msgstr "最近読んだ"
 
-#: include/functions.php:1927
+#: include/functions.php:1877
 msgid "Navigation"
 msgstr "ナビゲーション"
 
-#: include/functions.php:1928
+#: include/functions.php:1878
 #, fuzzy
 msgid "Open next feed"
 msgstr "次のフィードを開く"
 
-#: include/functions.php:1929
+#: include/functions.php:1879
 msgid "Open previous feed"
 msgstr "前のフィードを開く"
 
-#: include/functions.php:1930
+#: include/functions.php:1880
 #, fuzzy
 msgid "Open next article"
 msgstr "次の記事を開く"
 
-#: include/functions.php:1931
+#: include/functions.php:1881
 #, fuzzy
 msgid "Open previous article"
 msgstr "前の記事を開く"
 
-#: include/functions.php:1932
+#: include/functions.php:1882
 msgid "Open next article (don't scroll long articles)"
 msgstr "次の記事を開く(スクロールしない)"
 
-#: include/functions.php:1933
+#: include/functions.php:1883
 msgid "Open previous article (don't scroll long articles)"
 msgstr "前の記事を開く(スクロールしない)"
 
-#: include/functions.php:1934
+#: include/functions.php:1884
 msgid "Show search dialog"
 msgstr "検索ダイアログを表示する"
 
-#: include/functions.php:1935
+#: include/functions.php:1885
 #, fuzzy
 msgid "Article"
 msgstr "すべての記事"
 
-#: include/functions.php:1936
+#: include/functions.php:1886
 msgid "Toggle starred"
 msgstr "お気に入りを切り替える"
 
-#: include/functions.php:1937
-#: js/viewfeed.js:1920
+#: include/functions.php:1887
+#: js/viewfeed.js:1908
 msgid "Toggle published"
 msgstr "公開を切り替える"
 
-#: include/functions.php:1938
-#: js/viewfeed.js:1898
+#: include/functions.php:1888
+#: js/viewfeed.js:1886
 msgid "Toggle unread"
 msgstr "未読に切り替える"
 
-#: include/functions.php:1939
+#: include/functions.php:1889
 msgid "Edit tags"
 msgstr "タグを編集する"
 
-#: include/functions.php:1940
+#: include/functions.php:1890
 #, fuzzy
 msgid "Dismiss selected"
 msgstr "ラベルから選択した記事を削除しますか?"
 
-#: include/functions.php:1941
+#: include/functions.php:1891
 #, fuzzy
 msgid "Dismiss read"
 msgstr "公開記事"
 
-#: include/functions.php:1942
+#: include/functions.php:1892
 #, fuzzy
 msgid "Open in new window"
 msgstr "新しいウィンドウで記事を開く"
 
-#: include/functions.php:1943
-#: js/viewfeed.js:1939
+#: include/functions.php:1893
+#: js/viewfeed.js:1927
 #, fuzzy
 msgid "Mark below as read"
 msgstr "既読にする"
 
-#: include/functions.php:1944
-#: js/viewfeed.js:1933
+#: include/functions.php:1894
+#: js/viewfeed.js:1921
 #, fuzzy
 msgid "Mark above as read"
 msgstr "既読にする"
 
-#: include/functions.php:1945
+#: include/functions.php:1895
 #, fuzzy
 msgid "Scroll down"
 msgstr "下にスクロール"
 
-#: include/functions.php:1946
+#: include/functions.php:1896
 msgid "Scroll up"
 msgstr "上にスクロール"
 
-#: include/functions.php:1947
+#: include/functions.php:1897
 #, fuzzy
 msgid "Select article under cursor"
 msgstr "マウスカーソルの下の記事を選択する"
 
-#: include/functions.php:1948
+#: include/functions.php:1898
 #, fuzzy
 msgid "Email article"
 msgstr "すべての記事"
 
-#: include/functions.php:1949
+#: include/functions.php:1899
 #, fuzzy
 msgid "Close/collapse article"
 msgstr "記事を消去する"
 
-#: include/functions.php:1951
+#: include/functions.php:1901
 #: plugins/embed_original/init.php:33
 #, fuzzy
 msgid "Toggle embed original"
 msgstr "カテゴリーの並び替えモードの切り替え"
 
-#: include/functions.php:1952
+#: include/functions.php:1902
 #, fuzzy
 msgid "Article selection"
 msgstr "有効な記事の操作"
 
-#: include/functions.php:1953
+#: include/functions.php:1903
 #, fuzzy
 msgid "Select all articles"
 msgstr "記事を消去する"
 
-#: include/functions.php:1954
+#: include/functions.php:1904
 #, fuzzy
 msgid "Select unread"
 msgstr "未読記事を削除する"
 
-#: include/functions.php:1955
+#: include/functions.php:1905
 #, fuzzy
 msgid "Select starred"
 msgstr "お気に入りに設定する"
 
-#: include/functions.php:1956
+#: include/functions.php:1906
 #, fuzzy
 msgid "Select published"
 msgstr "未読記事を削除する"
 
-#: include/functions.php:1957
+#: include/functions.php:1907
 #, fuzzy
 msgid "Invert selection"
 msgstr "有効な記事の操作"
 
-#: include/functions.php:1958
+#: include/functions.php:1908
 #, fuzzy
 msgid "Deselect everything"
 msgstr "記事を消去する"
 
-#: include/functions.php:1959
-#: classes/pref/feeds.php:520
-#: classes/pref/feeds.php:753
+#: include/functions.php:1909
+#: classes/pref/feeds.php:521
+#: classes/pref/feeds.php:754
 msgid "Feed"
 msgstr "フィード"
 
-#: include/functions.php:1960
+#: include/functions.php:1910
 #, fuzzy
 msgid "Refresh current feed"
 msgstr "有効なフィードの更新"
 
-#: include/functions.php:1961
+#: include/functions.php:1911
 #, fuzzy
 msgid "Un/hide read feeds"
 msgstr "読んだフィードを隠す/再表示する"
 
-#: include/functions.php:1962
-#: classes/pref/feeds.php:1274
+#: include/functions.php:1912
+#: classes/pref/feeds.php:1275
 msgid "Subscribe to feed"
 msgstr "フィードを購読する"
 
-#: include/functions.php:1963
+#: include/functions.php:1913
 #: js/FeedTree.js:135
 #: js/PrefFeedTree.js:67
 msgid "Edit feed"
 msgstr "フィードを編集する"
 
-#: include/functions.php:1965
+#: include/functions.php:1915
 #, fuzzy
 msgid "Reverse headlines"
 msgstr "ヘッドラインの逆順 (古いものが上)"
 
-#: include/functions.php:1966
+#: include/functions.php:1916
 #, fuzzy
 msgid "Debug feed update"
 msgstr "すべてのフィードを更新しました。"
 
-#: include/functions.php:1967
+#: include/functions.php:1917
 #: js/FeedTree.js:178
 msgid "Mark all feeds as read"
 msgstr "すべてのフィードを既読に設定する"
 
-#: include/functions.php:1968
+#: include/functions.php:1918
 #, fuzzy
 msgid "Un/collapse current category"
 msgstr "カテゴリーの開閉"
 
-#: include/functions.php:1969
+#: include/functions.php:1919
 #, fuzzy
 msgid "Toggle combined mode"
 msgstr "カテゴリーの並び替えモードの切り替え"
 
-#: include/functions.php:1970
+#: include/functions.php:1920
 #, fuzzy
 msgid "Toggle auto expand in combined mode"
 msgstr "カテゴリーの並び替えモードの切り替え"
 
-#: include/functions.php:1971
+#: include/functions.php:1921
 #, fuzzy
 msgid "Go to"
 msgstr "移動..."
 
-#: include/functions.php:1973
+#: include/functions.php:1923
 #, fuzzy
 msgid "Fresh"
 msgstr "再描画"
 
-#: include/functions.php:1976
+#: include/functions.php:1926
+#: js/tt-rss.js:431
+#: js/tt-rss.js:584
 msgid "Tag cloud"
 msgstr "タグクラウド"
 
-#: include/functions.php:1978
+#: include/functions.php:1928
 #, fuzzy
 msgid "Other"
 msgstr "その他:"
 
-#: include/functions.php:1979
+#: include/functions.php:1929
 #: classes/pref/labels.php:281
 msgid "Create label"
 msgstr "ラベルを作成する"
 
-#: include/functions.php:1980
-#: classes/pref/filters.php:606
+#: include/functions.php:1930
+#: classes/pref/filters.php:654
 msgid "Create filter"
 msgstr "フィルターを作成する"
 
-#: include/functions.php:1981
+#: include/functions.php:1931
 #, fuzzy
 msgid "Un/collapse sidebar"
 msgstr "サイドバーを縮小する"
 
-#: include/functions.php:1982
+#: include/functions.php:1932
 #, fuzzy
 msgid "Show help dialog"
 msgstr "検索ダイアログを表示する"
 
-#: include/functions.php:2467
+#: include/functions.php:2417
 #, fuzzy, php-format
 msgid "Search results: %s"
 msgstr "検索結果"
 
-#: include/functions.php:2958
-#: js/viewfeed.js:2026
+#: include/functions.php:2908
+#: js/viewfeed.js:2014
 #, fuzzy
 msgid "Click to play"
 msgstr "クリックで表示"
 
-#: include/functions.php:2959
-#: js/viewfeed.js:2025
+#: include/functions.php:2909
+#: js/viewfeed.js:2013
 msgid "Play"
 msgstr "表示"
 
-#: include/functions.php:3076
+#: include/functions.php:3026
 msgid " - "
 msgstr " - "
 
-#: include/functions.php:3098
-#: include/functions.php:3392
+#: include/functions.php:3048
+#: include/functions.php:3342
 #: classes/rpc.php:408
 msgid "no tags"
 msgstr "タグがありません"
 
-#: include/functions.php:3108
+#: include/functions.php:3058
 #: classes/feeds.php:682
 msgid "Edit tags for this article"
 msgstr "この記事のタグを編集する"
 
-#: include/functions.php:3137
+#: include/functions.php:3087
 #: classes/feeds.php:638
 #, fuzzy
 msgid "Originally from:"
 msgstr "元の記事内容を表示する"
 
-#: include/functions.php:3150
+#: include/functions.php:3100
 #: classes/feeds.php:651
-#: classes/pref/feeds.php:539
+#: classes/pref/feeds.php:540
 #, fuzzy
 msgid "Feed URL"
 msgstr "フィード"
 
-#: include/functions.php:3181
-#: classes/dlg.php:43
-#: classes/dlg.php:162
-#: classes/dlg.php:185
-#: classes/dlg.php:222
-#: classes/dlg.php:506
-#: classes/dlg.php:541
-#: classes/dlg.php:572
-#: classes/dlg.php:606
-#: classes/dlg.php:618
+#: include/functions.php:3131
+#: classes/dlg.php:37
+#: classes/dlg.php:60
+#: classes/dlg.php:93
+#: classes/dlg.php:159
+#: classes/dlg.php:190
+#: classes/dlg.php:217
+#: classes/dlg.php:250
+#: classes/dlg.php:262
 #: classes/backend.php:105
 #: classes/pref/users.php:106
-#: classes/pref/filters.php:111
-#: classes/pref/feeds.php:1587
-#: classes/pref/feeds.php:1659
+#: classes/pref/filters.php:147
+#: classes/pref/prefs.php:1012
+#: classes/pref/feeds.php:1588
+#: classes/pref/feeds.php:1660
 #: plugins/import_export/init.php:409
 #: plugins/import_export/init.php:432
-#: plugins/googlereaderimport/init.php:164
+#: plugins/googlereaderimport/init.php:168
 #: plugins/share/init.php:67
 #: plugins/updater/init.php:357
 msgid "Close this window"
 msgstr "このウィンドウを閉じる"
 
-#: include/functions.php:3417
+#: include/functions.php:3367
 #, fuzzy
 msgid "(edit note)"
 msgstr "ノートの編集"
 
-#: include/functions.php:3650
+#: include/functions.php:3600
 msgid "unknown type"
 msgstr "未知の種類"
 
-#: include/functions.php:3706
+#: include/functions.php:3656
 #, fuzzy
 msgid "Attachments"
 msgstr "添付:"
@@ -1011,7 +1008,7 @@ msgid "Assign tags"
 msgstr "タグの割り当て"
 
 #: include/localized_schema.php:14
-#: js/viewfeed.js:1990
+#: js/viewfeed.js:1978
 msgid "Assign label"
 msgstr "ラベルの割り当て"
 
@@ -1199,7 +1196,7 @@ msgid "User timezone"
 msgstr ""
 
 #: include/localized_schema.php:61
-#: js/prefs.js:1719
+#: js/prefs.js:1725
 #, fuzzy
 msgid "Customize stylesheet"
 msgstr "ユーザースタイルシートの URL"
@@ -1227,14 +1224,14 @@ msgid "Select theme"
 msgstr "テーマを選択する"
 
 #: include/login_form.php:183
-#: classes/handler/public.php:460
-#: classes/handler/public.php:748
+#: classes/handler/public.php:461
+#: classes/handler/public.php:749
 #: plugins/mobile/login_form.php:40
 msgid "Login:"
 msgstr "ログイン:"
 
 #: include/login_form.php:192
-#: classes/handler/public.php:463
+#: classes/handler/public.php:464
 #: plugins/mobile/login_form.php:45
 msgid "Password:"
 msgstr "パスワード:"
@@ -1245,7 +1242,7 @@ msgid "I forgot my password"
 msgstr "ユーザー名かパスワードが正しくありません"
 
 #: include/login_form.php:201
-#: classes/handler/public.php:466
+#: classes/handler/public.php:467
 msgid "Language:"
 msgstr "言語:"
 
@@ -1255,9 +1252,9 @@ msgid "Profile:"
 msgstr "ファイル:"
 
 #: include/login_form.php:213
-#: classes/handler/public.php:210
+#: classes/handler/public.php:211
 #: classes/rpc.php:64
-#: classes/dlg.php:98
+#: classes/pref/prefs.php:948
 #, fuzzy
 msgid "Default profile"
 msgstr "標準の記事制限"
@@ -1271,507 +1268,259 @@ msgid "Remember me"
 msgstr ""
 
 #: include/login_form.php:235
-#: classes/handler/public.php:476
+#: classes/handler/public.php:477
 #: plugins/mobile/login_form.php:28
 msgid "Log in"
 msgstr "ログイン"
 
+#: include/sessions.php:53
+msgid "Session failed to validate (incorrect IP)"
+msgstr "セッションの検査に失敗しました (IP が正しくない)"
+
 #: classes/article.php:25
 #, fuzzy
 msgid "Article not found."
 msgstr "フィードが見つかりません。"
 
-#: classes/handler/public.php:401
+#: classes/article.php:179
+msgid "Tags for this article (separated by commas):"
+msgstr "この記事のタグ (カンマで区切ります):"
+
+#: classes/article.php:204
+#: classes/pref/users.php:192
+#: classes/pref/labels.php:79
+#: classes/pref/filters.php:405
+#: classes/pref/prefs.php:894
+#: classes/pref/feeds.php:733
+#: classes/pref/feeds.php:881
+#: plugins/nsfw/init.php:86
+#: plugins/note/init.php:53
+#: plugins/instances/init.php:248
+msgid "Save"
+msgstr "保存"
+
+#: classes/article.php:206
+#: classes/handler/public.php:438
+#: classes/handler/public.php:480
+#: classes/feeds.php:1024
+#: classes/feeds.php:1076
+#: classes/feeds.php:1136
+#: classes/pref/users.php:194
+#: classes/pref/labels.php:81
+#: classes/pref/filters.php:408
+#: classes/pref/filters.php:804
+#: classes/pref/filters.php:880
+#: classes/pref/filters.php:947
+#: classes/pref/prefs.php:896
+#: classes/pref/feeds.php:734
+#: classes/pref/feeds.php:884
+#: classes/pref/feeds.php:1797
+#: plugins/mail/init.php:131
+#: plugins/note/init.php:55
+#: plugins/instances/init.php:251
+#: plugins/instances/init.php:440
+msgid "Cancel"
+msgstr "取り消し"
+
+#: classes/handler/public.php:402
 #: plugins/bookmarklets/init.php:38
 #, fuzzy
 msgid "Share with Tiny Tiny RSS"
 msgstr "Tiny Tiny RSS に戻る"
 
-#: classes/handler/public.php:409
+#: classes/handler/public.php:410
 msgid "Title:"
 msgstr "題名:"
 
-#: classes/handler/public.php:411
-#: classes/dlg.php:663
-#: classes/pref/feeds.php:537
-#: classes/pref/feeds.php:768
+#: classes/handler/public.php:412
+#: classes/pref/feeds.php:538
+#: classes/pref/feeds.php:769
 #: plugins/instances/init.php:215
+#: plugins/instances/init.php:405
 msgid "URL:"
 msgstr "URL:"
 
-#: classes/handler/public.php:413
+#: classes/handler/public.php:414
 #, fuzzy
 msgid "Content:"
 msgstr "内容"
 
-#: classes/handler/public.php:415
+#: classes/handler/public.php:416
 #, fuzzy
 msgid "Labels:"
 msgstr "ラベル"
 
-#: classes/handler/public.php:434
+#: classes/handler/public.php:435
 msgid "Shared article will appear in the Published feed."
 msgstr "共有した記事は発行したフィードに表示されます"
 
-#: classes/handler/public.php:436
+#: classes/handler/public.php:437
 msgid "Share"
 msgstr "共有"
 
-#: classes/handler/public.php:437
-#: classes/handler/public.php:479
-#: classes/dlg.php:296
-#: classes/dlg.php:348
-#: classes/dlg.php:408
-#: classes/dlg.php:439
-#: classes/dlg.php:648
-#: classes/dlg.php:698
-#: classes/dlg.php:747
-#: classes/pref/users.php:194
-#: classes/pref/labels.php:81
-#: classes/pref/filters.php:363
-#: classes/pref/filters.php:746
-#: classes/pref/filters.php:822
-#: classes/pref/filters.php:889
-#: classes/pref/feeds.php:733
-#: classes/pref/feeds.php:883
-#: plugins/mail/init.php:131
-#: plugins/note/init.php:55
-#: plugins/instances/init.php:251
-msgid "Cancel"
-msgstr "取り消し"
-
-#: classes/handler/public.php:458
+#: classes/handler/public.php:459
 #, fuzzy
 msgid "Not logged in"
 msgstr "ログインしていません"
 
-#: classes/handler/public.php:525
+#: classes/handler/public.php:526
 msgid "Incorrect username or password"
 msgstr "ユーザー名かパスワードが正しくありません"
 
-#: classes/handler/public.php:561
-#: classes/handler/public.php:658
+#: classes/handler/public.php:562
+#: classes/handler/public.php:659
 #, php-format
 msgid "Already subscribed to <b>%s</b>."
 msgstr "<b>%s</b> は既に購読しています。"
 
-#: classes/handler/public.php:564
-#: classes/handler/public.php:649
+#: classes/handler/public.php:565
+#: classes/handler/public.php:650
 #, php-format
 msgid "Subscribed to <b>%s</b>."
 msgstr "<b>%s</b> を購読しました。"
 
-#: classes/handler/public.php:567
-#: classes/handler/public.php:652
+#: classes/handler/public.php:568
+#: classes/handler/public.php:653
 #, fuzzy, php-format
 msgid "Could not subscribe to <b>%s</b>."
 msgstr "<b>%s</b> は既に購読しています。"
 
-#: classes/handler/public.php:570
-#: classes/handler/public.php:655
+#: classes/handler/public.php:571
+#: classes/handler/public.php:656
 #, fuzzy, php-format
 msgid "No feeds found in <b>%s</b>."
 msgstr "フィードがありません。"
 
-#: classes/handler/public.php:573
-#: classes/handler/public.php:661
+#: classes/handler/public.php:574
+#: classes/handler/public.php:662
 #, fuzzy
 msgid "Multiple feed URLs found."
 msgstr "公開フィードの URL を変更しました。"
 
-#: classes/handler/public.php:577
-#: classes/handler/public.php:666
+#: classes/handler/public.php:578
+#: classes/handler/public.php:667
 #, fuzzy, php-format
 msgid "Could not subscribe to <b>%s</b>.<br>Can't download the Feed URL."
 msgstr "<b>%s</b> は既に購読しています。"
 
-#: classes/handler/public.php:595
-#: classes/handler/public.php:684
+#: classes/handler/public.php:596
+#: classes/handler/public.php:685
 #, fuzzy
 msgid "Subscribe to selected feed"
 msgstr "選択されたフィードの購読をやめますか?"
 
-#: classes/handler/public.php:620
-#: classes/handler/public.php:708
+#: classes/handler/public.php:621
+#: classes/handler/public.php:709
 msgid "Edit subscription options"
 msgstr "購読オプションの編集"
 
-#: classes/handler/public.php:735
+#: classes/handler/public.php:736
 #, fuzzy
 msgid "Password recovery"
 msgstr "パスワード:"
 
-#: classes/handler/public.php:741
+#: classes/handler/public.php:742
 msgid "You will need to provide valid account name and email. New password will be sent on your email address."
 msgstr ""
 
-#: classes/handler/public.php:763
+#: classes/handler/public.php:764
 #: classes/pref/users.php:378
 msgid "Reset password"
 msgstr "パスワードのリセット"
 
-#: classes/handler/public.php:773
+#: classes/handler/public.php:774
 msgid "Some of the required form parameters are missing or incorrect."
 msgstr "いくつかの必須項目が入力されていないか、正しくありません"
 
-#: classes/handler/public.php:777
-#: classes/handler/public.php:803
+#: classes/handler/public.php:778
+#: classes/handler/public.php:804
 #: plugins/digest/digest_body.php:69
 #, fuzzy
 msgid "Go back"
 msgstr "戻る"
 
-#: classes/handler/public.php:799
+#: classes/handler/public.php:800
 msgid "Sorry, login and email combination not found."
 msgstr "ログイン名とメールアドレスの組み合わせが組み合わせが見つかりませんでした"
 
-#: classes/dlg.php:22
+#: classes/dlg.php:16
 msgid "If you have imported labels and/or filters, you might need to reload preferences to see your new data."
 msgstr ""
 
-#: classes/dlg.php:55
-#: classes/pref/users.php:360
-#: classes/pref/labels.php:272
-#: classes/pref/filters.php:234
-#: classes/pref/filters.php:282
-#: classes/pref/filters.php:597
-#: classes/pref/filters.php:676
-#: classes/pref/filters.php:703
-#: classes/pref/feeds.php:1262
-#: classes/pref/feeds.php:1532
-#: classes/pref/feeds.php:1602
-#: plugins/instances/init.php:287
-#, fuzzy
-msgid "Select"
-msgstr "選択:"
-
-#: classes/dlg.php:58
-#: classes/feeds.php:92
-#: classes/pref/users.php:363
-#: classes/pref/labels.php:275
-#: classes/pref/filters.php:237
-#: classes/pref/filters.php:285
-#: classes/pref/filters.php:600
-#: classes/pref/filters.php:679
-#: classes/pref/filters.php:706
-#: classes/pref/feeds.php:1265
-#: classes/pref/feeds.php:1535
-#: classes/pref/feeds.php:1605
-#: plugins/instances/init.php:290
-msgid "All"
-msgstr "すべて"
-
-#: classes/dlg.php:60
-#: classes/feeds.php:95
-#: classes/pref/users.php:365
-#: classes/pref/labels.php:277
-#: classes/pref/filters.php:239
-#: classes/pref/filters.php:287
-#: classes/pref/filters.php:602
-#: classes/pref/filters.php:681
-#: classes/pref/filters.php:708
-#: classes/pref/feeds.php:1267
-#: classes/pref/feeds.php:1537
-#: classes/pref/feeds.php:1607
-#: plugins/instances/init.php:292
-msgid "None"
-msgstr "なし"
-
-#: classes/dlg.php:69
-#, fuzzy
-msgid "Create profile"
-msgstr "フィルターを作成する"
-
-#: classes/dlg.php:92
-#: classes/dlg.php:122
-msgid "(active)"
-msgstr "(有効)"
-
-#: classes/dlg.php:156
-#, fuzzy
-msgid "Remove selected profiles"
-msgstr "選択されたプロファイルを削除しますか?"
-
-#: classes/dlg.php:158
-#, fuzzy
-msgid "Activate profile"
-msgstr "プロファイルを有効にする"
-
-#: classes/dlg.php:168
-msgid "Public OPML URL"
-msgstr ""
-
-#: classes/dlg.php:173
+#: classes/dlg.php:48
 #, fuzzy
 msgid "Your Public OPML URL is:"
 msgstr "公開記事フィードへのリンクです。"
 
-#: classes/dlg.php:182
-#: classes/dlg.php:569
+#: classes/dlg.php:57
+#: classes/dlg.php:214
 #, fuzzy
 msgid "Generate new URL"
 msgstr "生成したフィード"
 
-#: classes/dlg.php:194
-msgid "Notice"
-msgstr "通知"
-
-#: classes/dlg.php:200
+#: classes/dlg.php:71
 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 ""
 
-#: classes/dlg.php:204
-#: classes/dlg.php:213
+#: classes/dlg.php:75
+#: classes/dlg.php:84
 msgid "Last update:"
 msgstr "最終更新:"
 
-#: classes/dlg.php:209
+#: classes/dlg.php:80
 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 ""
 
-#: classes/dlg.php:234
-#: classes/dlg.php:242
-#, fuzzy
-msgid "Feed or site URL"
-msgstr "フィード"
-
-#: classes/dlg.php:248
-#: classes/dlg.php:711
-#: classes/pref/feeds.php:559
-#: classes/pref/feeds.php:781
-msgid "Place in category:"
-msgstr "カテゴリーの場所:"
-
-#: classes/dlg.php:256
-#, fuzzy
-msgid "Available feeds"
-msgstr "すべてのフィード"
-
-#: classes/dlg.php:268
-#: classes/pref/users.php:155
-#: classes/pref/feeds.php:589
-#: classes/pref/feeds.php:817
-msgid "Authentication"
-msgstr "認証"
-
-#: classes/dlg.php:272
-#: classes/dlg.php:725
-#: classes/pref/users.php:420
-#: classes/pref/feeds.php:595
-#: classes/pref/feeds.php:821
-msgid "Login"
-msgstr "ログイン"
-
-#: classes/dlg.php:275
-#: classes/dlg.php:728
-#: classes/pref/prefs.php:202
-#: classes/pref/feeds.php:601
-#: classes/pref/feeds.php:827
-#, fuzzy
-msgid "Password"
-msgstr "パスワード:"
-
-#: classes/dlg.php:285
-msgid "This feed requires authentication."
-msgstr "このフィードは認証を要求します。"
-
-#: classes/dlg.php:290
-#: classes/dlg.php:346
-#: classes/dlg.php:746
-msgid "Subscribe"
-msgstr "購読"
-
-#: classes/dlg.php:293
-#, fuzzy
-msgid "More feeds"
-msgstr "さらなるフィード"
-
-#: classes/dlg.php:316
-#: classes/dlg.php:407
-#: classes/pref/users.php:350
-#: classes/pref/filters.php:593
-#: classes/pref/feeds.php:1258
-#: js/tt-rss.js:170
-msgid "Search"
-msgstr "検索"
-
-#: classes/dlg.php:320
-#, fuzzy
-msgid "Popular feeds"
-msgstr "フィードの表示"
-
-#: classes/dlg.php:321
-#, fuzzy
-msgid "Feed archive"
-msgstr "フィード操作"
-
-#: classes/dlg.php:324
-#, fuzzy
-msgid "limit:"
-msgstr "制限:"
-
-#: classes/dlg.php:347
-#: classes/pref/users.php:376
-#: classes/pref/labels.php:284
-#: classes/pref/filters.php:353
-#: classes/pref/filters.php:615
-#: classes/pref/feeds.php:706
-#: plugins/instances/init.php:297
-msgid "Remove"
-msgstr "削除"
-
-#: classes/dlg.php:358
-msgid "Look for"
-msgstr ""
-
-#: classes/dlg.php:366
-msgid "Limit search to:"
-msgstr "対象範囲"
-
-#: classes/dlg.php:382
-msgid "This feed"
-msgstr "このフィード"
-
-#: classes/dlg.php:414
-msgid "Tags for this article (separated by commas):"
-msgstr "この記事のタグ (カンマで区切ります):"
-
-#: classes/dlg.php:437
-#: classes/dlg.php:646
-#: classes/pref/users.php:192
-#: classes/pref/labels.php:79
-#: classes/pref/filters.php:360
-#: classes/pref/feeds.php:732
-#: classes/pref/feeds.php:880
-#: plugins/nsfw/init.php:86
-#: plugins/note/init.php:53
-#: plugins/instances/init.php:248
-msgid "Save"
-msgstr "保存"
-
-#: classes/dlg.php:445
-#, fuzzy
-msgid "Tag Cloud"
-msgstr "タグクラウド"
-
-#: classes/dlg.php:514
-msgid "Select item(s) by tags"
-msgstr ""
-
-#: classes/dlg.php:517
+#: classes/dlg.php:166
 #, fuzzy
 msgid "Match:"
 msgstr "一致"
 
-#: classes/dlg.php:519
+#: classes/dlg.php:168
 msgid "Any"
 msgstr ""
 
-#: classes/dlg.php:522
+#: classes/dlg.php:171
 #, fuzzy
 msgid "All tags."
 msgstr "タグがありません"
 
-#: classes/dlg.php:524
+#: classes/dlg.php:173
 msgid "Which Tags?"
 msgstr ""
 
-#: classes/dlg.php:537
+#: classes/dlg.php:186
 #, fuzzy
 msgid "Display entries"
 msgstr "フィードの表示"
 
-#: classes/dlg.php:549
-#: classes/feeds.php:138
-#, fuzzy
-msgid "View as RSS"
-msgstr "タグを閲覧する"
-
-#: classes/dlg.php:560
+#: classes/dlg.php:205
 msgid "You can view this feed as RSS using the following URL:"
 msgstr ""
 
-#: classes/dlg.php:589
+#: classes/dlg.php:233
 #: plugins/updater/init.php:327
 #, fuzzy, php-format
 msgid "New version of Tiny Tiny RSS is available (%s)."
 msgstr "Tiny Tiny RSS の新しいバージョンが利用できます!"
 
-#: classes/dlg.php:597
+#: classes/dlg.php:241
 msgid "You can update using built-in updater in the Preferences or by using update.php"
 msgstr ""
 
-#: classes/dlg.php:601
+#: classes/dlg.php:245
 #: plugins/updater/init.php:331
 msgid "See the release notes"
 msgstr ""
 
-#: classes/dlg.php:603
+#: classes/dlg.php:247
 msgid "Download"
 msgstr ""
 
-#: classes/dlg.php:611
+#: classes/dlg.php:255
 msgid "Error receiving version information or no new version available."
 msgstr ""
 
-#: classes/dlg.php:631
-#, 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 ""
-
-#: classes/dlg.php:657
-#: plugins/instances/init.php:207
-msgid "Instance"
-msgstr ""
-
-#: classes/dlg.php:666
-#: plugins/instances/init.php:218
-#: plugins/instances/init.php:315
-msgid "Instance URL"
-msgstr ""
-
-#: classes/dlg.php:676
-#: plugins/instances/init.php:229
-#, fuzzy
-msgid "Access key:"
-msgstr "アクセスレベル: "
-
-#: classes/dlg.php:679
-#: plugins/instances/init.php:232
-#: plugins/instances/init.php:316
-#, fuzzy
-msgid "Access key"
-msgstr "アクセスレベル"
-
-#: classes/dlg.php:683
-#: plugins/instances/init.php:236
-msgid "Use one access key for both linked instances."
-msgstr ""
-
-#: classes/dlg.php:691
-#: plugins/instances/init.php:244
-#, fuzzy
-msgid "Generate new key"
-msgstr "生成したフィード"
-
-#: classes/dlg.php:695
-#, fuzzy
-msgid "Create link"
-msgstr "作成"
-
-#: classes/dlg.php:708
-msgid "Add one valid RSS feed per line (no feed detection is done)"
-msgstr ""
-
-#: classes/dlg.php:717
-msgid "Feeds to subscribe, One per line"
-msgstr ""
-
-#: classes/dlg.php:739
-#, fuzzy
-msgid "Feeds require authentication."
-msgstr "このフィードは認証を要求します。"
-
 #: classes/feeds.php:68
 #, fuzzy
 msgid "Visit the website"
@@ -1782,14 +1531,53 @@ msgstr "オフィシャルサイトに訪問する"
 msgid "View as RSS feed"
 msgstr "フィードを閲覧する"
 
+#: classes/feeds.php:84
+#: classes/feeds.php:138
+#: classes/pref/feeds.php:1440
+#, fuzzy
+msgid "View as RSS"
+msgstr "タグを閲覧する"
+
 #: classes/feeds.php:91
 msgid "Select:"
 msgstr "選択:"
 
+#: classes/feeds.php:92
+#: classes/pref/users.php:363
+#: classes/pref/labels.php:275
+#: classes/pref/filters.php:282
+#: classes/pref/filters.php:330
+#: classes/pref/filters.php:648
+#: classes/pref/filters.php:737
+#: classes/pref/filters.php:764
+#: classes/pref/prefs.php:908
+#: classes/pref/feeds.php:1266
+#: classes/pref/feeds.php:1536
+#: classes/pref/feeds.php:1606
+#: plugins/instances/init.php:290
+msgid "All"
+msgstr "すべて"
+
 #: classes/feeds.php:94
 msgid "Invert"
 msgstr "反転"
 
+#: classes/feeds.php:95
+#: classes/pref/users.php:365
+#: classes/pref/labels.php:277
+#: classes/pref/filters.php:284
+#: classes/pref/filters.php:332
+#: classes/pref/filters.php:650
+#: classes/pref/filters.php:739
+#: classes/pref/filters.php:766
+#: classes/pref/prefs.php:910
+#: classes/pref/feeds.php:1268
+#: classes/pref/feeds.php:1538
+#: classes/pref/feeds.php:1608
+#: plugins/instances/init.php:292
+msgid "None"
+msgstr "なし"
+
 #: classes/feeds.php:101
 #, fuzzy
 msgid "More..."
@@ -1819,10 +1607,10 @@ msgid "Move back"
 msgstr "戻る"
 
 #: classes/feeds.php:118
-#: classes/pref/filters.php:246
-#: classes/pref/filters.php:294
-#: classes/pref/filters.php:688
-#: classes/pref/filters.php:715
+#: classes/pref/filters.php:291
+#: classes/pref/filters.php:339
+#: classes/pref/filters.php:746
+#: classes/pref/filters.php:773
 #, fuzzy
 msgid "Delete"
 msgstr "標準"
@@ -1879,20 +1667,123 @@ msgid "No articles found to display."
 msgstr "表示する記事が見つかりません。"
 
 #: classes/feeds.php:755
-#: classes/feeds.php:920
+#: classes/feeds.php:919
 #, php-format
 msgid "Feeds last updated at %s"
 msgstr ""
 
 #: classes/feeds.php:765
-#: classes/feeds.php:930
+#: classes/feeds.php:929
 msgid "Some feeds have update errors (click for details)"
 msgstr "いくつかのフィードの更新エラーです (詳細はクリックしてください)"
 
-#: classes/feeds.php:910
+#: classes/feeds.php:909
 msgid "No feed selected."
 msgstr "フィードは選択されていません。"
 
+#: classes/feeds.php:962
+#: classes/feeds.php:970
+#, fuzzy
+msgid "Feed or site URL"
+msgstr "フィード"
+
+#: classes/feeds.php:976
+#: classes/pref/feeds.php:560
+#: classes/pref/feeds.php:782
+#: classes/pref/feeds.php:1761
+msgid "Place in category:"
+msgstr "カテゴリーの場所:"
+
+#: classes/feeds.php:984
+#, fuzzy
+msgid "Available feeds"
+msgstr "すべてのフィード"
+
+#: classes/feeds.php:996
+#: classes/pref/users.php:155
+#: classes/pref/feeds.php:590
+#: classes/pref/feeds.php:818
+msgid "Authentication"
+msgstr "認証"
+
+#: classes/feeds.php:1000
+#: classes/pref/users.php:420
+#: classes/pref/feeds.php:596
+#: classes/pref/feeds.php:822
+#: classes/pref/feeds.php:1775
+msgid "Login"
+msgstr "ログイン"
+
+#: classes/feeds.php:1003
+#: classes/pref/prefs.php:202
+#: classes/pref/feeds.php:602
+#: classes/pref/feeds.php:828
+#: classes/pref/feeds.php:1778
+#, fuzzy
+msgid "Password"
+msgstr "パスワード:"
+
+#: classes/feeds.php:1013
+msgid "This feed requires authentication."
+msgstr "このフィードは認証を要求します。"
+
+#: classes/feeds.php:1018
+#: classes/feeds.php:1074
+#: classes/pref/feeds.php:1796
+msgid "Subscribe"
+msgstr "購読"
+
+#: classes/feeds.php:1021
+#, fuzzy
+msgid "More feeds"
+msgstr "さらなるフィード"
+
+#: classes/feeds.php:1044
+#: classes/feeds.php:1135
+#: classes/pref/users.php:350
+#: classes/pref/filters.php:641
+#: classes/pref/feeds.php:1259
+#: js/tt-rss.js:170
+msgid "Search"
+msgstr "検索"
+
+#: classes/feeds.php:1048
+#, fuzzy
+msgid "Popular feeds"
+msgstr "フィードの表示"
+
+#: classes/feeds.php:1049
+#, fuzzy
+msgid "Feed archive"
+msgstr "フィード操作"
+
+#: classes/feeds.php:1052
+#, fuzzy
+msgid "limit:"
+msgstr "制限:"
+
+#: classes/feeds.php:1075
+#: classes/pref/users.php:376
+#: classes/pref/labels.php:284
+#: classes/pref/filters.php:398
+#: classes/pref/filters.php:667
+#: classes/pref/feeds.php:707
+#: plugins/instances/init.php:297
+msgid "Remove"
+msgstr "削除"
+
+#: classes/feeds.php:1086
+msgid "Look for"
+msgstr ""
+
+#: classes/feeds.php:1094
+msgid "Limit search to:"
+msgstr "対象範囲"
+
+#: classes/feeds.php:1110
+msgid "This feed"
+msgstr "このフィード"
+
 #: classes/backend.php:33
 msgid "Other interface tips are available in the Tiny Tiny RSS wiki."
 msgstr ""
@@ -1967,7 +1858,7 @@ msgid "Error: please upload OPML file."
 msgstr "エラー: OPML ファイルをアップロードしてください。"
 
 #: classes/opml.php:475
-#: plugins/googlereaderimport/init.php:157
+#: plugins/googlereaderimport/init.php:161
 msgid "Error while parsing document."
 msgstr "ドキュメントの解析中のエラーです。"
 
@@ -2014,8 +1905,8 @@ msgid "Change password to"
 msgstr "次のパスワードに変更する:"
 
 #: classes/pref/users.php:177
-#: classes/pref/feeds.php:609
-#: classes/pref/feeds.php:833
+#: classes/pref/feeds.php:610
+#: classes/pref/feeds.php:834
 msgid "Options"
 msgstr "オプション"
 
@@ -2056,6 +1947,22 @@ msgstr ""
 msgid "[tt-rss] Password change notification"
 msgstr "[tt-rss] パスワード変更通知"
 
+#: classes/pref/users.php:360
+#: classes/pref/labels.php:272
+#: classes/pref/filters.php:279
+#: classes/pref/filters.php:327
+#: classes/pref/filters.php:645
+#: classes/pref/filters.php:734
+#: classes/pref/filters.php:761
+#: classes/pref/prefs.php:905
+#: classes/pref/feeds.php:1263
+#: classes/pref/feeds.php:1533
+#: classes/pref/feeds.php:1603
+#: plugins/instances/init.php:287
+#, fuzzy
+msgid "Select"
+msgstr "選択:"
+
 #: classes/pref/users.php:368
 msgid "Create user"
 msgstr "ユーザーの作成"
@@ -2066,7 +1973,7 @@ msgid "Details"
 msgstr "毎日"
 
 #: classes/pref/users.php:374
-#: classes/pref/filters.php:612
+#: classes/pref/filters.php:660
 #: plugins/instances/init.php:296
 msgid "Edit"
 msgstr "編集"
@@ -2093,6 +2000,8 @@ msgid "No matching users found."
 msgstr "ユーザーが見つかりません。"
 
 #: classes/pref/labels.php:22
+#: classes/pref/filters.php:268
+#: classes/pref/filters.php:725
 msgid "Caption"
 msgstr "キャプション"
 
@@ -2120,129 +2029,140 @@ msgstr "ラベル <b>%s</b> を作成しました"
 msgid "Clear colors"
 msgstr "色の消去"
 
-#: classes/pref/filters.php:60
+#: classes/pref/filters.php:96
 #, fuzzy
 msgid "Articles matching this filter:"
 msgstr "一致するフィルターが見つかりません。"
 
-#: classes/pref/filters.php:97
+#: classes/pref/filters.php:133
 #, fuzzy
 msgid "No recent articles matching this filter have been found."
 msgstr "一致するフィルターが見つかりません。"
 
-#: classes/pref/filters.php:101
+#: classes/pref/filters.php:137
 msgid "Complex expressions might not give results while testing due to issues with database server regexp implementation."
 msgstr ""
 
-#: classes/pref/filters.php:229
-#: classes/pref/filters.php:671
-#: classes/pref/filters.php:786
+#: classes/pref/filters.php:274
+#: classes/pref/filters.php:729
+#: classes/pref/filters.php:844
 msgid "Match"
 msgstr "一致"
 
-#: classes/pref/filters.php:243
-#: classes/pref/filters.php:291
-#: classes/pref/filters.php:685
-#: classes/pref/filters.php:712
+#: classes/pref/filters.php:288
+#: classes/pref/filters.php:336
+#: classes/pref/filters.php:743
+#: classes/pref/filters.php:770
 msgid "Add"
 msgstr "追加"
 
-#: classes/pref/filters.php:277
-#: classes/pref/filters.php:698
+#: classes/pref/filters.php:322
+#: classes/pref/filters.php:756
 #, fuzzy
 msgid "Apply actions"
 msgstr "フィード操作"
 
-#: classes/pref/filters.php:327
-#: classes/pref/filters.php:727
+#: classes/pref/filters.php:372
+#: classes/pref/filters.php:785
 msgid "Enabled"
 msgstr "有効にする"
 
-#: classes/pref/filters.php:336
-#: classes/pref/filters.php:730
+#: classes/pref/filters.php:381
+#: classes/pref/filters.php:788
 #, fuzzy
 msgid "Match any rule"
 msgstr "一致したすべての未読記事:"
 
-#: classes/pref/filters.php:345
-#: classes/pref/filters.php:733
+#: classes/pref/filters.php:390
+#: classes/pref/filters.php:791
 #, fuzzy
 msgid "Inverse matching"
 msgstr "一致しない"
 
-#: classes/pref/filters.php:357
-#: classes/pref/filters.php:740
+#: classes/pref/filters.php:402
+#: classes/pref/filters.php:798
 msgid "Test"
 msgstr "テスト"
 
-#: classes/pref/filters.php:390
+#: classes/pref/filters.php:435
 #, fuzzy
 msgid "(inverse)"
 msgstr "反転"
 
-#: classes/pref/filters.php:389
+#: classes/pref/filters.php:434
 #, php-format
 msgid "%s on %s in %s %s"
 msgstr ""
 
-#: classes/pref/filters.php:609
+#: classes/pref/filters.php:657
 msgid "Combine"
 msgstr ""
 
-#: classes/pref/filters.php:619
-#: classes/pref/feeds.php:1317
+#: classes/pref/filters.php:663
+#: classes/pref/feeds.php:1279
+#: classes/pref/feeds.php:1293
+#, fuzzy
+msgid "Reset sort order"
+msgstr "パスワードのリセット"
+
+#: classes/pref/filters.php:671
+#: classes/pref/feeds.php:1318
 msgid "Rescore articles"
 msgstr "記事のスコアの再集計"
 
-#: classes/pref/filters.php:743
+#: classes/pref/filters.php:801
 msgid "Create"
 msgstr "作成"
 
-#: classes/pref/filters.php:798
+#: classes/pref/filters.php:856
 msgid "Inverse regular expression matching"
 msgstr ""
 
-#: classes/pref/filters.php:800
+#: classes/pref/filters.php:858
 #, fuzzy
 msgid "on field"
 msgstr "項目"
 
-#: classes/pref/filters.php:806
-#: js/PrefFilterTree.js:29
+#: classes/pref/filters.php:864
+#: js/PrefFilterTree.js:45
 #: plugins/digest/digest.js:242
 msgid "in"
 msgstr ""
 
-#: classes/pref/filters.php:819
+#: classes/pref/filters.php:877
 #, fuzzy
 msgid "Save rule"
 msgstr "保存"
 
-#: classes/pref/filters.php:819
-#: js/functions.js:1069
+#: classes/pref/filters.php:877
+#: js/functions.js:1063
 #, fuzzy
 msgid "Add rule"
 msgstr "フィードカテゴリーを追加しています..."
 
-#: classes/pref/filters.php:842
+#: classes/pref/filters.php:900
 msgid "Perform Action"
 msgstr "操作の実行"
 
-#: classes/pref/filters.php:868
+#: classes/pref/filters.php:926
 msgid "with parameters:"
 msgstr "パラメーター:"
 
-#: classes/pref/filters.php:886
+#: classes/pref/filters.php:944
 #, fuzzy
 msgid "Save action"
 msgstr "パネル操作"
 
-#: classes/pref/filters.php:886
-#: js/functions.js:1095
+#: classes/pref/filters.php:944
+#: js/functions.js:1089
 #, fuzzy
 msgid "Add action"
 msgstr "フィード操作"
 
+#: classes/pref/filters.php:967
+msgid "[No caption]"
+msgstr "[キャプションなし]"
+
 #: classes/pref/prefs.php:17
 msgid "Old password cannot be blank."
 msgstr "古いパスワードを空にできません。"
@@ -2462,265 +2382,295 @@ msgstr "フィードアイコンを有効にする"
 msgid "Incorrect password"
 msgstr "ユーザー名かパスワードが正しくありません"
 
-#: classes/pref/feeds.php:12
+#: classes/pref/prefs.php:879
+#, 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 ""
+
+#: classes/pref/prefs.php:919
+#, fuzzy
+msgid "Create profile"
+msgstr "フィルターを作成する"
+
+#: classes/pref/prefs.php:942
+#: classes/pref/prefs.php:972
+msgid "(active)"
+msgstr "(有効)"
+
+#: classes/pref/prefs.php:1006
+#, fuzzy
+msgid "Remove selected profiles"
+msgstr "選択されたプロファイルを削除しますか?"
+
+#: classes/pref/prefs.php:1008
+#, fuzzy
+msgid "Activate profile"
+msgstr "プロファイルを有効にする"
+
+#: classes/pref/feeds.php:13
 #, fuzzy
 msgid "Check to enable field"
 msgstr "編集するにはクリック"
 
-#: classes/pref/feeds.php:60
-#: classes/pref/feeds.php:208
-#: classes/pref/feeds.php:250
-#: classes/pref/feeds.php:256
-#: classes/pref/feeds.php:281
-#, fuzzy, php-format
-msgid "(%d feed)"
-msgid_plural "(%d feeds)"
-msgstr[0] "フィードを編集する"
-msgstr[1] "フィードを編集する"
-
-#: classes/pref/feeds.php:526
+#: classes/pref/feeds.php:527
 #, fuzzy
 msgid "Feed Title"
 msgstr "題名"
 
-#: classes/pref/feeds.php:582
-#: classes/pref/feeds.php:808
+#: classes/pref/feeds.php:568
+#: classes/pref/feeds.php:793
+msgid "Update"
+msgstr "更新"
+
+#: classes/pref/feeds.php:583
+#: classes/pref/feeds.php:809
 msgid "Article purging:"
 msgstr "記事の削除:"
 
-#: classes/pref/feeds.php:605
+#: classes/pref/feeds.php:606
 msgid "<b>Hint:</b> you need to fill in your login information if your feed requires authentication, except for Twitter feeds."
 msgstr ""
 
-#: classes/pref/feeds.php:621
-#: classes/pref/feeds.php:837
+#: classes/pref/feeds.php:622
+#: classes/pref/feeds.php:838
 #, fuzzy
 msgid "Hide from Popular feeds"
 msgstr "自分のフィード一覧から隠す"
 
-#: classes/pref/feeds.php:633
-#: classes/pref/feeds.php:843
+#: classes/pref/feeds.php:634
+#: classes/pref/feeds.php:844
 msgid "Include in e-mail digest"
 msgstr "電子メールダイジェストに含む"
 
-#: classes/pref/feeds.php:646
-#: classes/pref/feeds.php:849
+#: classes/pref/feeds.php:647
+#: classes/pref/feeds.php:850
 msgid "Always display image attachments"
 msgstr ""
 
-#: classes/pref/feeds.php:659
-#: classes/pref/feeds.php:857
+#: classes/pref/feeds.php:660
+#: classes/pref/feeds.php:858
 msgid "Do not embed images"
 msgstr ""
 
-#: classes/pref/feeds.php:672
-#: classes/pref/feeds.php:865
+#: classes/pref/feeds.php:673
+#: classes/pref/feeds.php:866
 msgid "Cache images locally"
 msgstr "ローカルに画像をキャッシュする"
 
-#: classes/pref/feeds.php:684
-#: classes/pref/feeds.php:871
+#: classes/pref/feeds.php:685
+#: classes/pref/feeds.php:872
 #, fuzzy
 msgid "Mark updated articles as unread"
 msgstr "すべての記事を既読にしますか?"
 
-#: classes/pref/feeds.php:690
+#: classes/pref/feeds.php:691
 #, fuzzy
 msgid "Icon"
 msgstr "操作"
 
-#: classes/pref/feeds.php:704
+#: classes/pref/feeds.php:705
 msgid "Replace"
 msgstr ""
 
-#: classes/pref/feeds.php:723
+#: classes/pref/feeds.php:724
 #, fuzzy
 msgid "Resubscribe to push updates"
 msgstr "フィードを購読する:"
 
-#: classes/pref/feeds.php:730
+#: classes/pref/feeds.php:731
 msgid "Resets PubSubHubbub subscription status for push-enabled feeds."
 msgstr ""
 
-#: classes/pref/feeds.php:1111
-#: classes/pref/feeds.php:1164
+#: classes/pref/feeds.php:1112
+#: classes/pref/feeds.php:1165
 msgid "All done."
 msgstr "すべて終了しました。"
 
-#: classes/pref/feeds.php:1219
+#: classes/pref/feeds.php:1220
 #, fuzzy
 msgid "Feeds with errors"
 msgstr "フィードエディター"
 
-#: classes/pref/feeds.php:1239
+#: classes/pref/feeds.php:1240
 #, fuzzy
 msgid "Inactive feeds"
 msgstr "元のフィード"
 
-#: classes/pref/feeds.php:1276
+#: classes/pref/feeds.php:1277
 #, fuzzy
 msgid "Edit selected feeds"
 msgstr "選択したフィードを削除しています..."
 
-#: classes/pref/feeds.php:1278
-#: classes/pref/feeds.php:1292
-#, fuzzy
-msgid "Reset sort order"
-msgstr "パスワードのリセット"
-
-#: classes/pref/feeds.php:1280
-#: js/prefs.js:1764
+#: classes/pref/feeds.php:1281
+#: js/prefs.js:1770
 #, fuzzy
 msgid "Batch subscribe"
 msgstr "購読をやめる"
 
-#: classes/pref/feeds.php:1285
+#: classes/pref/feeds.php:1286
 #, fuzzy
 msgid "Categories"
 msgstr "カテゴリー:"
 
-#: classes/pref/feeds.php:1288
+#: classes/pref/feeds.php:1289
 #, fuzzy
 msgid "Add category"
 msgstr "フィードカテゴリーを追加しています..."
 
-#: classes/pref/feeds.php:1290
+#: classes/pref/feeds.php:1291
 #, fuzzy
 msgid "(Un)hide empty categories"
 msgstr "カテゴリーの編集"
 
-#: classes/pref/feeds.php:1294
+#: classes/pref/feeds.php:1295
 #, fuzzy
 msgid "Remove selected"
 msgstr "選択されたフィルターを削除しますか?"
 
-#: classes/pref/feeds.php:1308
+#: classes/pref/feeds.php:1309
 #, fuzzy
 msgid "More actions..."
 msgstr "操作..."
 
-#: classes/pref/feeds.php:1312
+#: classes/pref/feeds.php:1313
 msgid "Manual purge"
 msgstr "手動削除"
 
-#: classes/pref/feeds.php:1316
+#: classes/pref/feeds.php:1317
 msgid "Clear feed data"
 msgstr "フィードデータの消去"
 
-#: classes/pref/feeds.php:1367
+#: classes/pref/feeds.php:1368
 msgid "OPML"
 msgstr "OPML"
 
-#: classes/pref/feeds.php:1369
+#: classes/pref/feeds.php:1370
 msgid "Using OPML you can export and import your feeds, filters, labels and Tiny Tiny RSS settings."
 msgstr ""
 
-#: classes/pref/feeds.php:1371
+#: classes/pref/feeds.php:1372
 msgid "Only main settings profile can be migrated using OPML."
 msgstr ""
 
-#: classes/pref/feeds.php:1384
+#: classes/pref/feeds.php:1385
 #, fuzzy
 msgid "Import my OPML"
 msgstr "OPML のインポート中 (DOMXML 機能拡張を用いて)..."
 
-#: classes/pref/feeds.php:1388
+#: classes/pref/feeds.php:1389
 msgid "Filename:"
 msgstr ""
 
-#: classes/pref/feeds.php:1390
+#: classes/pref/feeds.php:1391
 #, fuzzy
 msgid "Include settings"
 msgstr "電子メールダイジェストに含む"
 
-#: classes/pref/feeds.php:1394
+#: classes/pref/feeds.php:1395
 #, fuzzy
 msgid "Export OPML"
 msgstr "OPML エクスポート"
 
-#: classes/pref/feeds.php:1398
+#: classes/pref/feeds.php:1399
 msgid "Your OPML can be published publicly and can be subscribed by anyone who knows the URL below."
 msgstr ""
 
-#: classes/pref/feeds.php:1400
+#: classes/pref/feeds.php:1401
 msgid "Published OPML does not include your Tiny Tiny RSS settings, feeds that require authentication or feeds hidden from Popular feeds."
 msgstr ""
 
 #: classes/pref/feeds.php:1403
+msgid "Public OPML URL"
+msgstr ""
+
+#: classes/pref/feeds.php:1404
 msgid "Display published OPML URL"
 msgstr ""
 
-#: classes/pref/feeds.php:1413
+#: classes/pref/feeds.php:1414
 #, fuzzy
 msgid "Firefox integration"
 msgstr "Firefox 統合"
 
-#: classes/pref/feeds.php:1415
+#: classes/pref/feeds.php:1416
 msgid "This Tiny Tiny RSS site can be used as a Firefox Feed Reader by clicking the link below."
 msgstr "下のリンクをクリックすることで、Firefox のフィードリーダーとしてこの Tiny Tiny RSS のサイトを使うことができます。"
 
-#: classes/pref/feeds.php:1422
+#: classes/pref/feeds.php:1423
 msgid "Click here to register this site as a feed reader."
 msgstr "クリックするとフィードリーダーとしてこのサイトを登録します。"
 
-#: classes/pref/feeds.php:1430
+#: classes/pref/feeds.php:1431
 #, fuzzy
 msgid "Published & shared articles / Generated feeds"
 msgstr "選択したフィードの記事のスコアを再計算しますか?"
 
-#: classes/pref/feeds.php:1432
+#: classes/pref/feeds.php:1433
 #, fuzzy
 msgid "Published articles and generated feeds"
 msgstr "選択したフィードの記事のスコアを再計算しますか?"
 
-#: classes/pref/feeds.php:1434
+#: classes/pref/feeds.php:1435
 msgid "Published articles are exported as a public RSS feed and can be subscribed by anyone who knows the URL specified below."
 msgstr ""
 
-#: classes/pref/feeds.php:1440
+#: classes/pref/feeds.php:1441
 #, fuzzy
 msgid "Display URL"
 msgstr "タグの表示"
 
-#: classes/pref/feeds.php:1443
+#: classes/pref/feeds.php:1444
 msgid "Clear all generated URLs"
 msgstr ""
 
-#: classes/pref/feeds.php:1445
+#: classes/pref/feeds.php:1446
 #, fuzzy
 msgid "Articles shared by URL"
 msgstr "記事をお気に入りにする"
 
-#: classes/pref/feeds.php:1447
+#: classes/pref/feeds.php:1448
 msgid "You can disable all articles shared by unique URLs here."
 msgstr ""
 
-#: classes/pref/feeds.php:1450
+#: classes/pref/feeds.php:1451
 #, fuzzy
 msgid "Unshare all articles"
 msgstr "記事のお気に入りを解除する"
 
-#: classes/pref/feeds.php:1528
+#: classes/pref/feeds.php:1529
 #, fuzzy
 msgid "These feeds have not been updated with new content for 3 months (oldest first):"
 msgstr "エラーのため、フィードは更新されませんでした:"
 
-#: classes/pref/feeds.php:1565
-#: classes/pref/feeds.php:1635
+#: classes/pref/feeds.php:1566
+#: classes/pref/feeds.php:1636
 #, fuzzy
 msgid "Click to edit feed"
 msgstr "編集するにはクリック"
 
-#: classes/pref/feeds.php:1583
-#: classes/pref/feeds.php:1655
+#: classes/pref/feeds.php:1584
+#: classes/pref/feeds.php:1656
 #, fuzzy
 msgid "Unsubscribe from selected feeds"
 msgstr "選択されたフィードの購読をやめますか?"
 
-#: classes/pref/feeds.php:1594
+#: classes/pref/feeds.php:1595
 msgid "These feeds have not been updated because of errors:"
 msgstr "エラーのため、フィードは更新されませんでした:"
 
+#: classes/pref/feeds.php:1758
+msgid "Add one valid RSS feed per line (no feed detection is done)"
+msgstr ""
+
+#: classes/pref/feeds.php:1767
+msgid "Feeds to subscribe, One per line"
+msgstr ""
+
+#: classes/pref/feeds.php:1789
+#, fuzzy
+msgid "Feeds require authentication."
+msgstr "このフィードは認証を要求します。"
+
 #: plugins/digest/digest_body.php:59
 msgid "Your browser doesn't support Javascript, which is required for this application to function properly. Please check your browser settings."
 msgstr ""
@@ -2997,24 +2947,24 @@ msgstr "お気に入りに設定する"
 msgid "No file uploaded."
 msgstr "アップロードする OPML ファイルがありません。"
 
-#: plugins/googlereaderimport/init.php:149
+#: plugins/googlereaderimport/init.php:153
 #, php-format
 msgid "All done. %d out of %d articles imported."
 msgstr ""
 
-#: plugins/googlereaderimport/init.php:153
+#: plugins/googlereaderimport/init.php:157
 msgid "The document has incorrect format."
 msgstr ""
 
-#: plugins/googlereaderimport/init.php:322
+#: plugins/googlereaderimport/init.php:326
 msgid "Import starred or shared items from Google Reader"
 msgstr ""
 
-#: plugins/googlereaderimport/init.php:326
+#: plugins/googlereaderimport/init.php:330
 msgid "Paste your starred.json or shared.json into the form below."
 msgstr ""
 
-#: plugins/googlereaderimport/init.php:340
+#: plugins/googlereaderimport/init.php:344
 msgid "Import my Starred items"
 msgstr ""
 
@@ -3023,6 +2973,41 @@ msgstr ""
 msgid "Linked"
 msgstr "リンク"
 
+#: plugins/instances/init.php:207
+#: plugins/instances/init.php:399
+msgid "Instance"
+msgstr ""
+
+#: plugins/instances/init.php:218
+#: plugins/instances/init.php:315
+#: plugins/instances/init.php:408
+msgid "Instance URL"
+msgstr ""
+
+#: plugins/instances/init.php:229
+#: plugins/instances/init.php:418
+#, fuzzy
+msgid "Access key:"
+msgstr "アクセスレベル: "
+
+#: plugins/instances/init.php:232
+#: plugins/instances/init.php:316
+#: plugins/instances/init.php:421
+#, fuzzy
+msgid "Access key"
+msgstr "アクセスレベル"
+
+#: plugins/instances/init.php:236
+#: plugins/instances/init.php:425
+msgid "Use one access key for both linked instances."
+msgstr ""
+
+#: plugins/instances/init.php:244
+#: plugins/instances/init.php:433
+#, fuzzy
+msgid "Generate new key"
+msgstr "生成したフィード"
+
 #: plugins/instances/init.php:295
 #, fuzzy
 msgid "Link instance"
@@ -3045,6 +3030,11 @@ msgstr ""
 msgid "Stored feeds"
 msgstr "さらなるフィード"
 
+#: plugins/instances/init.php:437
+#, fuzzy
+msgid "Create link"
+msgstr "作成"
+
 #: plugins/share/init.php:27
 #, fuzzy
 msgid "Share by URL"
@@ -3109,189 +3099,193 @@ msgstr ""
 msgid "close"
 msgstr ""
 
-#: js/functions.js:627
+#: js/functions.js:621
 #, fuzzy
 msgid "Date syntax appears to be correct:"
 msgstr "古いパスワードが不正確です。"
 
-#: js/functions.js:630
+#: js/functions.js:624
 #, fuzzy
 msgid "Date syntax is incorrect."
 msgstr "古いパスワードが不正確です。"
 
-#: js/functions.js:724
+#: js/functions.js:636
+msgid "Error explained"
+msgstr ""
+
+#: js/functions.js:718
 #, fuzzy
 msgid "Upload complete."
 msgstr "更新済み記事"
 
-#: js/functions.js:748
+#: js/functions.js:742
 #, fuzzy
 msgid "Remove stored feed icon?"
 msgstr "保存したデータを削除する"
 
-#: js/functions.js:753
+#: js/functions.js:747
 #, fuzzy
 msgid "Removing feed icon..."
 msgstr "フィードを削除しています..."
 
-#: js/functions.js:758
+#: js/functions.js:752
 #, fuzzy
 msgid "Feed icon removed."
 msgstr "フィードが見つかりません。"
 
-#: js/functions.js:780
+#: js/functions.js:774
 #, fuzzy
 msgid "Please select an image file to upload."
 msgstr "フィードをひとつ選択してください"
 
-#: js/functions.js:782
+#: js/functions.js:776
 msgid "Upload new icon for this feed?"
 msgstr ""
 
-#: js/functions.js:783
+#: js/functions.js:777
 #, fuzzy
 msgid "Uploading, please wait..."
 msgstr "読み込みんでいます。しばらくお待ちください..."
 
-#: js/functions.js:799
+#: js/functions.js:793
 msgid "Please enter label caption:"
 msgstr "ラベルのキャプションを入力してください:"
 
-#: js/functions.js:804
+#: js/functions.js:798
 msgid "Can't create label: missing caption."
 msgstr "ラベルが作成できません: キャプションが見当たりません。"
 
-#: js/functions.js:847
+#: js/functions.js:841
 msgid "Subscribe to Feed"
 msgstr "フィードを購読する"
 
-#: js/functions.js:874
+#: js/functions.js:868
 #, fuzzy
 msgid "Subscribed to %s"
 msgstr "フィードを購読する:"
 
-#: js/functions.js:879
+#: js/functions.js:873
 msgid "Specified URL seems to be invalid."
 msgstr ""
 
-#: js/functions.js:882
+#: js/functions.js:876
 msgid "Specified URL doesn't seem to contain any feeds."
 msgstr ""
 
-#: js/functions.js:935
+#: js/functions.js:929
 #, fuzzy
 msgid "Couldn't download the specified URL: %s"
 msgstr "購読できません: フィード URL が入力されていません。"
 
-#: js/functions.js:939
+#: js/functions.js:933
 #, fuzzy
 msgid "You are already subscribed to this feed."
 msgstr "カテゴリーから購読をやめることができません。"
 
-#: js/functions.js:1069
+#: js/functions.js:1063
 #, fuzzy
 msgid "Edit rule"
 msgstr "フィルター"
 
-#: js/functions.js:1095
+#: js/functions.js:1089
 #, fuzzy
 msgid "Edit action"
 msgstr "フィード操作"
 
-#: js/functions.js:1132
+#: js/functions.js:1126
 msgid "Create Filter"
 msgstr "フィルターを作成する"
 
-#: js/functions.js:1247
+#: js/functions.js:1241
 msgid "Reset subscription? Tiny Tiny RSS will try to subscribe to the notification hub again on next feed update."
 msgstr ""
 
-#: js/functions.js:1258
+#: js/functions.js:1252
 #, fuzzy
 msgid "Subscription reset."
 msgstr "フィードを購読する..."
 
-#: js/functions.js:1268
+#: js/functions.js:1262
 #: js/tt-rss.js:619
 msgid "Unsubscribe from %s?"
 msgstr "%s の購読をやめますか?"
 
-#: js/functions.js:1271
+#: js/functions.js:1265
 msgid "Removing feed..."
 msgstr "フィードを削除しています..."
 
-#: js/functions.js:1379
+#: js/functions.js:1373
 #, fuzzy
 msgid "Please enter category title:"
 msgstr "このアーティクルのノートを入力してください:"
 
-#: js/functions.js:1410
+#: js/functions.js:1404
 msgid "Generate new syndication address for this feed?"
 msgstr ""
 
-#: js/functions.js:1414
-#: js/prefs.js:1234
+#: js/functions.js:1408
+#: js/prefs.js:1222
 msgid "Trying to change address..."
 msgstr "アドレスの変更を試みています..."
 
-#: js/functions.js:1601
+#: js/functions.js:1595
 #: js/tt-rss.js:396
 #: js/tt-rss.js:600
 #, fuzzy
 msgid "You can't edit this kind of feed."
 msgstr "フィードのこの種類を消去できません。"
 
-#: js/functions.js:1616
+#: js/functions.js:1610
 #, fuzzy
 msgid "Edit Feed"
 msgstr "フィードを編集する"
 
-#: js/functions.js:1622
+#: js/functions.js:1616
 #: js/prefs.js:194
 #: js/prefs.js:749
 #, fuzzy
 msgid "Saving data..."
 msgstr "フィードを保存しています..."
 
-#: js/functions.js:1654
+#: js/functions.js:1648
 #, fuzzy
 msgid "More Feeds"
 msgstr "さらなるフィード"
 
-#: js/functions.js:1715
-#: js/functions.js:1825
+#: js/functions.js:1709
+#: js/functions.js:1819
 #: 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
+#: js/prefs.js:1198
+#: js/prefs.js:1343
 msgid "No feeds are selected."
 msgstr "選択されたフィードはありません。"
 
-#: js/functions.js:1757
+#: js/functions.js:1751
 msgid "Remove selected feeds from the archive? Feeds with stored articles will not be removed."
 msgstr ""
 
-#: js/functions.js:1796
+#: js/functions.js:1790
 #, fuzzy
 msgid "Feeds with update errors"
 msgstr "フィードエディター"
 
-#: js/functions.js:1807
-#: js/prefs.js:1192
+#: js/functions.js:1801
+#: js/prefs.js:1180
 #, fuzzy
 msgid "Remove selected feeds?"
 msgstr "選択されたフィルターを削除しますか?"
 
-#: js/functions.js:1810
-#: js/prefs.js:1195
+#: js/functions.js:1804
+#: js/prefs.js:1183
 #, fuzzy
 msgid "Removing selected feeds..."
 msgstr "選択されたフィルターを削除しています..."
 
-#: js/functions.js:1908
+#: js/functions.js:1902
 msgid "Help"
 msgstr "ヘルプ"
 
@@ -3305,7 +3299,7 @@ msgstr "カテゴリーの編集"
 msgid "Remove category"
 msgstr "カテゴリーの作成"
 
-#: js/PrefFilterTree.js:32
+#: js/PrefFilterTree.js:48
 #, fuzzy
 msgid "Inverse"
 msgstr "反転"
@@ -3345,7 +3339,7 @@ msgid "Removing selected labels..."
 msgstr "選択したラベルを削除しています..."
 
 #: js/prefs.js:295
-#: js/prefs.js:1396
+#: js/prefs.js:1384
 msgid "No labels are selected."
 msgstr "選択されたラベルはありません。"
 
@@ -3452,161 +3446,161 @@ msgstr "複数フィードエディター"
 msgid "Save changes to selected feeds?"
 msgstr "選択したフィードの変更を保存しますか?"
 
-#: js/prefs.js:797
+#: js/prefs.js:785
 #, fuzzy
 msgid "OPML Import"
 msgstr "インポート"
 
-#: js/prefs.js:824
+#: js/prefs.js:812
 #, fuzzy
 msgid "Please choose an OPML file first."
 msgstr "はじめにいくつかのフィードを選択してください。"
 
-#: js/prefs.js:827
+#: js/prefs.js:815
 #: plugins/import_export/import_export.js:115
 #: plugins/googlereaderimport/init.js:45
 #, fuzzy
 msgid "Importing, please wait..."
 msgstr "読み込みんでいます。しばらくお待ちください..."
 
-#: js/prefs.js:980
+#: js/prefs.js:968
 msgid "Reset to defaults?"
 msgstr "標準に戻しますか?"
 
-#: js/prefs.js:1099
+#: js/prefs.js:1087
 msgid "Remove category %s? Any nested feeds would be placed into Uncategorized."
 msgstr ""
 
-#: js/prefs.js:1105
+#: js/prefs.js:1093
 #, fuzzy
 msgid "Removing category..."
 msgstr "カテゴリーの作成"
 
-#: js/prefs.js:1126
+#: js/prefs.js:1114
 msgid "Remove selected categories?"
 msgstr "選択されたカテゴリーを削除しますか?"
 
-#: js/prefs.js:1129
+#: js/prefs.js:1117
 msgid "Removing selected categories..."
 msgstr "選択されたカテゴリーを削除しています..."
 
-#: js/prefs.js:1142
+#: js/prefs.js:1130
 msgid "No categories are selected."
 msgstr "選択されたカテゴリーはありません。"
 
-#: js/prefs.js:1150
+#: js/prefs.js:1138
 #, fuzzy
 msgid "Category title:"
 msgstr "カテゴリーエディター"
 
-#: js/prefs.js:1154
+#: js/prefs.js:1142
 #, fuzzy
 msgid "Creating category..."
 msgstr "フィルターを作成しています..."
 
-#: js/prefs.js:1181
+#: js/prefs.js:1169
 msgid "Feeds without recent updates"
 msgstr ""
 
-#: js/prefs.js:1230
+#: js/prefs.js:1218
 #, fuzzy
 msgid "Replace current OPML publishing address with a new one?"
 msgstr "新しいもので現在の公開アドレスを置き換えますか?"
 
-#: js/prefs.js:1319
+#: js/prefs.js:1307
 msgid "Clearing feed..."
 msgstr "フィードを消去しています..."
 
-#: js/prefs.js:1339
+#: js/prefs.js:1327
 msgid "Rescore articles in selected feeds?"
 msgstr "選択したフィードの記事のスコアを再計算しますか?"
 
-#: js/prefs.js:1342
+#: js/prefs.js:1330
 #, fuzzy
 msgid "Rescoring selected feeds..."
 msgstr "選択されたフィードを消去しています..."
 
-#: js/prefs.js:1362
+#: js/prefs.js:1350
 msgid "Rescore all articles? This operation may take a lot of time."
 msgstr "すべての記事のスコアを再計算しますか? この操作は大量の時間を使うでしょう。"
 
-#: js/prefs.js:1365
+#: js/prefs.js:1353
 msgid "Rescoring feeds..."
 msgstr "フィードのスコアを再計算しています..."
 
-#: js/prefs.js:1382
+#: js/prefs.js:1370
 #, fuzzy
 msgid "Reset selected labels to default colors?"
 msgstr "ラベルの色を標準にリセットしますか?"
 
-#: js/prefs.js:1419
+#: js/prefs.js:1407
 msgid "Settings Profiles"
 msgstr ""
 
-#: js/prefs.js:1428
+#: js/prefs.js:1416
 msgid "Remove selected profiles? Active and default profiles will not be removed."
 msgstr ""
 
-#: js/prefs.js:1431
+#: js/prefs.js:1419
 #, fuzzy
 msgid "Removing selected profiles..."
 msgstr "選択されたフィルターを削除しています..."
 
-#: js/prefs.js:1446
+#: js/prefs.js:1434
 #, fuzzy
 msgid "No profiles are selected."
 msgstr "選択された記事はありません。"
 
-#: js/prefs.js:1454
-#: js/prefs.js:1507
+#: js/prefs.js:1442
+#: js/prefs.js:1495
 #, fuzzy
 msgid "Activate selected profile?"
 msgstr "選択されたフィルターを削除しますか?"
 
-#: js/prefs.js:1470
-#: js/prefs.js:1523
+#: js/prefs.js:1458
+#: js/prefs.js:1511
 #, fuzzy
 msgid "Please choose a profile to activate."
 msgstr "はじめにいくつかのフィードを選択してください。"
 
-#: js/prefs.js:1475
+#: js/prefs.js:1463
 #, fuzzy
 msgid "Creating profile..."
 msgstr "フィルターを作成する"
 
-#: js/prefs.js:1531
+#: js/prefs.js:1519
 msgid "This will invalidate all previously generated feed URLs. Continue?"
 msgstr ""
 
-#: js/prefs.js:1534
-#: js/prefs.js:1553
+#: js/prefs.js:1522
+#: js/prefs.js:1541
 #, fuzzy
 msgid "Clearing URLs..."
 msgstr "フィードを消去しています..."
 
-#: js/prefs.js:1541
+#: js/prefs.js:1529
 #, fuzzy
 msgid "Generated URLs cleared."
 msgstr "生成したフィード"
 
-#: js/prefs.js:1550
+#: js/prefs.js:1538
 msgid "This will invalidate all previously shared article URLs. Continue?"
 msgstr ""
 
-#: js/prefs.js:1560
+#: js/prefs.js:1548
 msgid "Shared URLs cleared."
 msgstr ""
 
-#: js/prefs.js:1648
+#: js/prefs.js:1654
 msgid "Label Editor"
 msgstr "ラベルエディター"
 
-#: js/prefs.js:1770
+#: js/prefs.js:1776
 #, fuzzy
 msgid "Subscribing to feeds..."
 msgstr "フィードを購読しています..."
 
-#: js/prefs.js:1807
+#: js/prefs.js:1813
 msgid "Clear stored data for this plugin?"
 msgstr ""
 
@@ -3628,29 +3622,33 @@ msgstr "はじめにいくつかのフィードを選択してください。"
 msgid "Please enable embed_original plugin first."
 msgstr "はじめにいくつかのフィードを選択してください。"
 
+#: js/tt-rss.js:587
+msgid "Select item(s) by tags"
+msgstr ""
+
 #: js/tt-rss.js:608
 msgid "You can't unsubscribe from the category."
 msgstr "カテゴリーから購読をやめることができません。"
 
 #: js/tt-rss.js:613
-#: js/tt-rss.js:769
+#: js/tt-rss.js:765
 msgid "Please select some feed first."
 msgstr "はじめにいくつかのフィードを選択してください。"
 
-#: js/tt-rss.js:764
+#: js/tt-rss.js:760
 #, fuzzy
 msgid "You can't rescore this kind of feed."
 msgstr "フィードのこの種類を消去できません。"
 
-#: js/tt-rss.js:774
+#: js/tt-rss.js:770
 msgid "Rescore articles in %s?"
 msgstr "%s の記事のスコアを再計算しますか?"
 
-#: js/tt-rss.js:777
+#: js/tt-rss.js:773
 msgid "Rescoring articles..."
 msgstr "記事のスコアを再計算しています..."
 
-#: js/tt-rss.js:911
+#: js/tt-rss.js:907
 #, fuzzy
 msgid "New version available!"
 msgstr "Tiny Tiny RSS の新しいバージョンが利用できます!"
@@ -3683,123 +3681,119 @@ msgstr "非公開記事"
 #: js/viewfeed.js:734
 #: js/viewfeed.js:797
 #: js/viewfeed.js:831
-#: js/viewfeed.js:968
-#: js/viewfeed.js:1011
-#: js/viewfeed.js:1064
-#: js/viewfeed.js:2108
+#: js/viewfeed.js:951
+#: js/viewfeed.js:994
+#: js/viewfeed.js:1047
+#: js/viewfeed.js:2096
 #: plugins/mailto/init.js:7
 #: plugins/mail/mail.js:7
 msgid "No articles are selected."
 msgstr "記事は選択されていません。"
 
-#: js/viewfeed.js:948
-msgid "Mark all visible articles in %s as read?"
-msgstr "「%s」のすべての可視記事を既読に設定しますか?"
-
-#: js/viewfeed.js:976
+#: js/viewfeed.js:959
 #, fuzzy
 msgid "Delete %d selected article in %s?"
 msgid_plural "Delete %d selected articles in %s?"
 msgstr[0] "選択した %d 件の記事を「%s」に設定しますか?"
 msgstr[1] "選択した %d 件の記事を「%s」に設定しますか?"
 
-#: js/viewfeed.js:978
+#: js/viewfeed.js:961
 #, fuzzy
 msgid "Delete %d selected article?"
 msgid_plural "Delete %d selected articles?"
 msgstr[0] "ラベルから選択した記事を削除しますか?"
 msgstr[1] "ラベルから選択した記事を削除しますか?"
 
-#: js/viewfeed.js:1020
+#: js/viewfeed.js:1003
 #, fuzzy
 msgid "Archive %d selected article in %s?"
 msgid_plural "Archive %d selected articles in %s?"
 msgstr[0] "選択した %d 件の記事を「%s」に設定しますか?"
 msgstr[1] "選択した %d 件の記事を「%s」に設定しますか?"
 
-#: js/viewfeed.js:1023
+#: js/viewfeed.js:1006
 #, fuzzy
 msgid "Move %d archived article back?"
 msgid_plural "Move %d archived articles back?"
 msgstr[0] "お気に入りの記事"
 msgstr[1] "お気に入りの記事"
 
-#: js/viewfeed.js:1025
+#: js/viewfeed.js:1008
 msgid "Please note that unstarred articles might get purged on next feed update."
 msgstr ""
 
-#: js/viewfeed.js:1070
+#: js/viewfeed.js:1053
 #, fuzzy
 msgid "Mark %d selected article in %s as read?"
 msgid_plural "Mark %d selected articles in %s as read?"
 msgstr[0] "選択した %d 件の記事を「%s」に設定しますか?"
 msgstr[1] "選択した %d 件の記事を「%s」に設定しますか?"
 
-#: js/viewfeed.js:1094
+#: js/viewfeed.js:1077
 #, fuzzy
 msgid "Edit article Tags"
 msgstr "タグを編集する"
 
-#: js/viewfeed.js:1100
+#: js/viewfeed.js:1083
 msgid "Saving article tags..."
 msgstr "記事のタグを保存しています..."
 
-#: js/viewfeed.js:1337
+#: js/viewfeed.js:1323
 msgid "No article is selected."
 msgstr "選択された記事はありません。"
 
-#: js/viewfeed.js:1372
+#: js/viewfeed.js:1358
 msgid "No articles found to mark"
 msgstr "マークした記事が見つかりません"
 
-#: js/viewfeed.js:1374
+#: js/viewfeed.js:1360
 #, fuzzy
 msgid "Mark %d article as read?"
 msgid_plural "Mark %d articles as read?"
 msgstr[0] "%d 件のマークした記事を既読として設定しますか?"
 msgstr[1] "%d 件のマークした記事を既読として設定しますか?"
 
-#: js/viewfeed.js:1884
+#: js/viewfeed.js:1872
 #, fuzzy
 msgid "Open original article"
 msgstr "元の記事内容を表示する"
 
-#: js/viewfeed.js:1890
+#: js/viewfeed.js:1878
 #, fuzzy
 msgid "Display article URL"
 msgstr "タグの表示"
 
-#: js/viewfeed.js:1909
+#: js/viewfeed.js:1897
 #, fuzzy
 msgid "Toggle marked"
 msgstr "お気に入りを切り替える"
 
-#: js/viewfeed.js:1995
+#: js/viewfeed.js:1983
 #, fuzzy
 msgid "Remove label"
 msgstr "選択したラベルを削除しますか?"
 
-#: js/viewfeed.js:2019
+#: js/viewfeed.js:2007
 #, fuzzy
 msgid "Playing..."
 msgstr "フィード一覧を読み込んでいます..."
 
-#: js/viewfeed.js:2020
+#: js/viewfeed.js:2008
 #, fuzzy
 msgid "Click to pause"
 msgstr "編集するにはクリック"
 
-#: js/viewfeed.js:2077
+#: js/viewfeed.js:2065
 #, fuzzy
 msgid "Please enter new score for selected articles:"
 msgstr "このアーティクルのノートを入力してください:"
 
-#: js/viewfeed.js:2119
+#: js/viewfeed.js:2107
 #, fuzzy
 msgid "Please enter new score for this article:"
 msgstr "このアーティクルのノートを入力してください:"
 
-#: js/viewfeed.js:2152
+#: js/viewfeed.js:2140
 #, fuzzy
 msgid "Article URL:"
 msgstr "すべての記事"
@@ -3923,6 +3917,22 @@ msgstr "記事をお気に入りにする"
 msgid "Live updating is considered experimental. Backup your tt-rss directory before continuing. Please type 'yes' to continue."
 msgstr ""
 
+#, fuzzy
+#~ msgid "(%d feed)"
+#~ msgid_plural "(%d feeds)"
+#~ msgstr[0] "フィードを編集する"
+#~ msgstr[1] "フィードを編集する"
+
+#~ msgid "Notice"
+#~ msgstr "通知"
+
+#, fuzzy
+#~ msgid "Tag Cloud"
+#~ msgstr "タグクラウド"
+
+#~ msgid "Mark all visible articles in %s as read?"
+#~ msgstr "「%s」のすべての可視記事を既読に設定しますか?"
+
 #~ msgid "Form secret key incorrect. Please enable cookies and try again."
 #~ msgstr "シークレットキーが正しくありません。クッキーを有効にして再度実行してください。"
 
@@ -4832,9 +4842,6 @@ msgstr ""
 #~ msgid "SQL Expression"
 #~ msgstr "SQL 表記"
 
-#~ msgid "[No caption]"
-#~ msgstr "[キャプションなし]"
-
 #~ msgid "Labels and SQL Expressions"
 #~ msgstr "SQL 表現とラベル"
 
index 473438d9c97da5f6ef20a8a6d90378a5f9c89447..d31b71db475b5223aaa303f14fd3fbcfa10a52d2 100644 (file)
Binary files a/locale/lv_LV/LC_MESSAGES/messages.mo and b/locale/lv_LV/LC_MESSAGES/messages.mo differ
index 4814044fa63db41fe312787516eadaec35d340e4..e69f16e5019e474fdba80d378aa1ac5efa21f25d 100644 (file)
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: 1.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-03-31 12:47+0400\n"
+"POT-Creation-Date: 2013-04-01 16:28+0400\n"
 "PO-Revision-Date: 2013-03-18 22:55+0300\n"
 "Last-Translator: Valdis Vītoliņš <valdis.vitolins@odo.lv>\n"
 "Language-Team: \n"
@@ -136,9 +136,9 @@ msgstr "Tiny Tiny RSS datubāze ir aktuāla."
 #: register.php:336
 #: register.php:346
 #: register.php:358
-#: classes/handler/public.php:625
-#: classes/handler/public.php:713
-#: classes/handler/public.php:795
+#: classes/handler/public.php:626
+#: classes/handler/public.php:714
+#: classes/handler/public.php:796
 msgid "Return to Tiny Tiny RSS"
 msgstr "Atgriezties uz Tiny Tiny RSS"
 
@@ -254,36 +254,37 @@ msgstr "Neizdevās SQL izņēmumu tests, pārbaudiet jūsu datu bāzes un PHP ie
 
 #: index.php:135
 #: index.php:154
-#: index.php:264
-#: prefs.php:102
+#: index.php:263
+#: prefs.php:103
 #: classes/backend.php:5
 #: classes/pref/labels.php:296
-#: classes/pref/filters.php:628
-#: classes/pref/feeds.php:1330
+#: classes/pref/filters.php:680
+#: classes/pref/feeds.php:1331
 #: plugins/digest/digest_body.php:63
 #: js/feedlist.js:128
 #: js/feedlist.js:448
 #: js/functions.js:420
-#: js/functions.js:814
-#: js/functions.js:1250
-#: js/functions.js:1385
-#: js/functions.js:1697
+#: js/functions.js:808
+#: js/functions.js:1244
+#: js/functions.js:1379
+#: js/functions.js:1691
 #: js/prefs.js:86
 #: js/prefs.js:576
 #: js/prefs.js:666
-#: js/prefs.js:870
-#: js/prefs.js:1457
-#: js/prefs.js:1510
-#: js/prefs.js:1568
-#: js/prefs.js:1584
-#: js/prefs.js:1600
-#: js/prefs.js:1619
-#: js/prefs.js:1792
-#: js/prefs.js:1808
+#: js/prefs.js:858
+#: js/prefs.js:1445
+#: js/prefs.js:1498
+#: js/prefs.js:1557
+#: js/prefs.js:1574
+#: js/prefs.js:1590
+#: js/prefs.js:1606
+#: js/prefs.js:1625
+#: js/prefs.js:1798
+#: js/prefs.js:1814
 #: js/tt-rss.js:475
 #: js/tt-rss.js:492
 #: js/viewfeed.js:774
-#: js/viewfeed.js:1259
+#: js/viewfeed.js:1245
 #: plugins/import_export/import_export.js:17
 #: plugins/updater/updater.js:17
 msgid "Loading, please wait..."
@@ -306,13 +307,13 @@ msgid "All Articles"
 msgstr "Visus rakstus"
 
 #: index.php:176
-#: include/functions.php:1974
+#: include/functions.php:1924
 #: classes/feeds.php:106
 msgid "Starred"
 msgstr "Zvaigžņotos"
 
 #: index.php:177
-#: include/functions.php:1975
+#: include/functions.php:1925
 #: classes/feeds.php:107
 msgid "Published"
 msgstr "Publicētos"
@@ -352,22 +353,15 @@ msgstr ""
 msgid "Oldest first"
 msgstr ""
 
-#: index.php:195
-#: classes/pref/feeds.php:567
-#: classes/pref/feeds.php:792
-msgid "Update"
-msgstr "Atjaunot"
-
-#: index.php:197
+#: index.php:192
 msgid "Mark feed as read"
 msgstr "Atzīmēt barotni kā lasītu"
 
-#: index.php:200
-#: index.php:235
-#: include/functions.php:1964
+#: index.php:195
+#: index.php:234
+#: include/functions.php:1914
 #: include/localized_schema.php:10
 #: classes/feeds.php:111
-#: classes/feeds.php:136
 #: classes/feeds.php:437
 #: js/FeedTree.js:128
 #: js/FeedTree.js:156
@@ -375,112 +369,116 @@ msgstr "Atzīmēt barotni kā lasītu"
 msgid "Mark as read"
 msgstr "Atzīmēt kā lasītu"
 
-#: index.php:201
-#: include/functions.php:1860
-#: include/functions.php:1972
+#: index.php:196
+#: include/functions.php:1810
+#: include/functions.php:1922
 msgid "All articles"
 msgstr "Visi raksti"
 
-#: index.php:202
+#: index.php:197
 msgid "Older than one day"
 msgstr ""
 
-#: index.php:203
+#: index.php:198
 msgid "Older than one week"
 msgstr ""
 
-#: index.php:204
+#: index.php:199
 msgid "Older than two weeks"
 msgstr ""
 
-#: index.php:212
+#: index.php:204
+msgid "Refresh"
+msgstr ""
+
+#: index.php:211
 msgid "Communication problem with server."
 msgstr ""
 
-#: index.php:220
+#: index.php:219
 msgid "New version of Tiny Tiny RSS is available!"
 msgstr "Ir pieejama jauna Tiny Tiny RSS versija!"
 
-#: index.php:225
+#: index.php:224
 msgid "Actions..."
 msgstr "Darbības"
 
-#: index.php:227
+#: index.php:226
 #, fuzzy
 msgid "Preferences..."
 msgstr "Iestatījumi"
 
-#: index.php:228
+#: index.php:227
 msgid "Search..."
 msgstr "Meklēt"
 
-#: index.php:229
+#: index.php:228
 msgid "Feed actions:"
 msgstr "Barotnes darbības"
 
-#: index.php:230
-#: classes/handler/public.php:555
+#: index.php:229
+#: classes/handler/public.php:556
 msgid "Subscribe to feed..."
 msgstr "Abonēt barotni..."
 
-#: index.php:231
+#: index.php:230
 msgid "Edit this feed..."
 msgstr "Rediģēt šo barotni..."
 
-#: index.php:232
+#: index.php:231
 msgid "Rescore feed"
 msgstr "Pārvērtēt barotni"
 
-#: index.php:233
-#: classes/pref/feeds.php:716
-#: classes/pref/feeds.php:1303
+#: index.php:232
+#: classes/pref/feeds.php:717
+#: classes/pref/feeds.php:1304
 #: js/PrefFeedTree.js:73
 msgid "Unsubscribe"
 msgstr "Atteikties"
 
-#: index.php:234
+#: index.php:233
 msgid "All feeds:"
 msgstr "Visas barotnes:"
 
-#: index.php:236
+#: index.php:235
 msgid "(Un)hide read feeds"
 msgstr "(Ne)rādīt lasītās barotnes"
 
-#: index.php:237
+#: index.php:236
 msgid "Other actions:"
 msgstr "Citas darbības:"
 
-#: index.php:239
+#: index.php:238
 msgid "Switch to digest..."
 msgstr "Pārslēgties uz īssavilkumu..."
 
-#: index.php:241
+#: index.php:240
 msgid "Show tag cloud..."
 msgstr "Radīt birku mākoni..."
 
-#: index.php:242
-#: include/functions.php:1950
+#: index.php:241
+#: include/functions.php:1900
 #, fuzzy
 msgid "Toggle widescreen mode"
 msgstr "Pārslēgt zvaigžņošanu"
 
-#: index.php:243
+#: index.php:242
 msgid "Select by tags..."
 msgstr "Atlasīt pēc iezīmēm..."
 
-#: index.php:244
+#: index.php:243
 msgid "Create label..."
 msgstr "Izveidot iezīmi"
 
-#: index.php:245
+#: index.php:244
 msgid "Create filter..."
 msgstr "Izveidot filtru..."
 
-#: index.php:246
+#: index.php:245
 msgid "Keyboard shortcuts help"
 msgstr "Isinājumtaustiņu palīdzība"
 
-#: index.php:248
+#: index.php:247
 #: plugins/digest/digest_body.php:77
 #: plugins/mobile/mobile-functions.php:62
 #: plugins/mobile/mobile-functions.php:237
@@ -488,41 +486,41 @@ msgid "Logout"
 msgstr "Atteikties"
 
 #: prefs.php:36
-#: prefs.php:122
-#: include/functions.php:1977
+#: prefs.php:121
+#: include/functions.php:1927
 #: classes/pref/prefs.php:377
 msgid "Preferences"
 msgstr "Iestatījumi"
 
-#: prefs.php:113
+#: prefs.php:112
 msgid "Keyboard shortcuts"
 msgstr "Īsinājumtaustiņi"
 
-#: prefs.php:114
+#: prefs.php:113
 msgid "Exit preferences"
 msgstr "Iziet no iestatījumiem"
 
-#: prefs.php:125
-#: classes/pref/feeds.php:106
-#: classes/pref/feeds.php:1208
-#: classes/pref/feeds.php:1271
+#: prefs.php:124
+#: classes/pref/feeds.php:107
+#: classes/pref/feeds.php:1209
+#: classes/pref/feeds.php:1272
 msgid "Feeds"
 msgstr "Barotnes"
 
-#: prefs.php:128
-#: classes/pref/filters.php:120
+#: prefs.php:127
+#: classes/pref/filters.php:156
 msgid "Filters"
 msgstr "Filtri"
 
-#: prefs.php:131
-#: include/functions.php:1167
-#: include/functions.php:1803
+#: prefs.php:130
+#: include/functions.php:1117
+#: include/functions.php:1753
 #: classes/pref/labels.php:90
 #: plugins/mobile/mobile-functions.php:198
 msgid "Labels"
 msgstr "Iezīmes"
 
-#: prefs.php:135
+#: prefs.php:134
 msgid "Users"
 msgstr "Lietotāji"
 
@@ -548,12 +546,12 @@ msgid "Check availability"
 msgstr "Pārbaudīt pieejamību"
 
 #: register.php:228
-#: classes/handler/public.php:753
+#: classes/handler/public.php:754
 msgid "Email:"
 msgstr "E-pasts:"
 
 #: register.php:231
-#: classes/handler/public.php:758
+#: classes/handler/public.php:759
 msgid "How much is two plus two:"
 msgstr "Cik ir divi un divi:"
 
@@ -586,12 +584,12 @@ msgid "Tiny Tiny RSS data update script."
 msgstr "Tiny Tiny RSS datu atjaunošanas skripts."
 
 #: include/digest.php:109
-#: include/functions.php:1176
-#: include/functions.php:1704
-#: include/functions.php:1789
-#: include/functions.php:1811
+#: include/functions.php:1126
+#: include/functions.php:1654
+#: include/functions.php:1739
+#: include/functions.php:1761
 #: classes/opml.php:416
-#: classes/pref/feeds.php:221
+#: classes/pref/feeds.php:222
 msgid "Uncategorized"
 msgstr "Nekategorizēts"
 
@@ -606,356 +604,354 @@ msgstr[1] "%d arhivēti raksti"
 msgid "No feeds found."
 msgstr "Neatradu barotnes."
 
-#: include/functions.php:722
-msgid "Session failed to validate (incorrect IP)"
-msgstr "Neizdevās validēt sesiju (mainījusies IP adrese)"
-
-#: include/functions.php:1165
-#: include/functions.php:1801
+#: include/functions.php:1115
+#: include/functions.php:1751
 #: plugins/mobile/mobile-functions.php:171
 msgid "Special"
 msgstr "Īpaši"
 
-#: include/functions.php:1653
-#: classes/dlg.php:369
-#: classes/pref/filters.php:382
+#: include/functions.php:1603
+#: classes/feeds.php:1097
+#: classes/pref/filters.php:427
 msgid "All feeds"
 msgstr "Visas barotnes"
 
-#: include/functions.php:1854
+#: include/functions.php:1804
 msgid "Starred articles"
 msgstr "Zvaigžņotie raksti"
 
-#: include/functions.php:1856
+#: include/functions.php:1806
 msgid "Published articles"
 msgstr "Publicētie raksti"
 
-#: include/functions.php:1858
+#: include/functions.php:1808
 msgid "Fresh articles"
 msgstr "Jaunākie raksti"
 
-#: include/functions.php:1862
+#: include/functions.php:1812
 msgid "Archived articles"
 msgstr "Arhivētie raksti"
 
-#: include/functions.php:1864
+#: include/functions.php:1814
 msgid "Recently read"
 msgstr "Nesen lasītie raksti"
 
-#: include/functions.php:1927
+#: include/functions.php:1877
 msgid "Navigation"
 msgstr "Navigācija"
 
-#: include/functions.php:1928
+#: include/functions.php:1878
 #, fuzzy
 msgid "Open next feed"
 msgstr "Pēc noķeršanas rādīt nākamo barotni"
 
-#: include/functions.php:1929
+#: include/functions.php:1879
 msgid "Open previous feed"
 msgstr ""
 
-#: include/functions.php:1930
+#: include/functions.php:1880
 #, fuzzy
 msgid "Open next article"
 msgstr "Atvērt sākotnējo rakstu"
 
-#: include/functions.php:1931
+#: include/functions.php:1881
 #, fuzzy
 msgid "Open previous article"
 msgstr "Atvērt sākotnējo rakstu"
 
-#: include/functions.php:1932
+#: include/functions.php:1882
 msgid "Open next article (don't scroll long articles)"
 msgstr ""
 
-#: include/functions.php:1933
+#: include/functions.php:1883
 msgid "Open previous article (don't scroll long articles)"
 msgstr ""
 
-#: include/functions.php:1934
+#: include/functions.php:1884
 msgid "Show search dialog"
 msgstr "Rādīt meklēšanas logu"
 
-#: include/functions.php:1935
+#: include/functions.php:1885
 #, fuzzy
 msgid "Article"
 msgstr "Visus rakstus"
 
-#: include/functions.php:1936
+#: include/functions.php:1886
 msgid "Toggle starred"
 msgstr "Pārslēgt zvaigžņošanu"
 
-#: include/functions.php:1937
-#: js/viewfeed.js:1920
+#: include/functions.php:1887
+#: js/viewfeed.js:1908
 msgid "Toggle published"
 msgstr "Pārslēgt publicēšanu"
 
-#: include/functions.php:1938
-#: js/viewfeed.js:1898
+#: include/functions.php:1888
+#: js/viewfeed.js:1886
 msgid "Toggle unread"
 msgstr "Pārslēgt nelasītu"
 
-#: include/functions.php:1939
+#: include/functions.php:1889
 msgid "Edit tags"
 msgstr "Rediģēt iezīmes"
 
-#: include/functions.php:1940
+#: include/functions.php:1890
 #, fuzzy
 msgid "Dismiss selected"
 msgstr "Atmest atlasītos rakstus"
 
-#: include/functions.php:1941
+#: include/functions.php:1891
 #, fuzzy
 msgid "Dismiss read"
 msgstr "Atmest lasītos rakstus"
 
-#: include/functions.php:1942
+#: include/functions.php:1892
 #, fuzzy
 msgid "Open in new window"
 msgstr "Atvērt rakstu jaunā logā"
 
-#: include/functions.php:1943
-#: js/viewfeed.js:1939
+#: include/functions.php:1893
+#: js/viewfeed.js:1927
 msgid "Mark below as read"
 msgstr "Iezīmēt lejup kā lasītus"
 
-#: include/functions.php:1944
-#: js/viewfeed.js:1933
+#: include/functions.php:1894
+#: js/viewfeed.js:1921
 msgid "Mark above as read"
 msgstr "Iezīmēt augšup kā lasītus"
 
-#: include/functions.php:1945
+#: include/functions.php:1895
 #, fuzzy
 msgid "Scroll down"
 msgstr "Viss izdarīts."
 
-#: include/functions.php:1946
+#: include/functions.php:1896
 msgid "Scroll up"
 msgstr ""
 
-#: include/functions.php:1947
+#: include/functions.php:1897
 #, fuzzy
 msgid "Select article under cursor"
 msgstr "Iezīmēt rakstu zem peles kursora"
 
-#: include/functions.php:1948
+#: include/functions.php:1898
 msgid "Email article"
 msgstr "Nosūtīt rakstu uz e-pastu"
 
-#: include/functions.php:1949
+#: include/functions.php:1899
 #, fuzzy
 msgid "Close/collapse article"
 msgstr "Aizvērt rakstu"
 
-#: include/functions.php:1951
+#: include/functions.php:1901
 #: plugins/embed_original/init.php:33
 #, fuzzy
 msgid "Toggle embed original"
 msgstr "Pārslēgt publicēšanu"
 
-#: include/functions.php:1952
+#: include/functions.php:1902
 #, fuzzy
 msgid "Article selection"
 msgstr "Apgriezt rakstu iezīmēšanu"
 
-#: include/functions.php:1953
+#: include/functions.php:1903
 msgid "Select all articles"
 msgstr "Iezīmēt visus rakstus"
 
-#: include/functions.php:1954
+#: include/functions.php:1904
 #, fuzzy
 msgid "Select unread"
 msgstr "Iezīmēt nelasītos rakstus"
 
-#: include/functions.php:1955
+#: include/functions.php:1905
 #, fuzzy
 msgid "Select starred"
 msgstr "Uzlikt zvaigzni"
 
-#: include/functions.php:1956
+#: include/functions.php:1906
 #, fuzzy
 msgid "Select published"
 msgstr "Iezīmēt publicētos rakstus"
 
-#: include/functions.php:1957
+#: include/functions.php:1907
 #, fuzzy
 msgid "Invert selection"
 msgstr "Apgriezt rakstu iezīmēšanu"
 
-#: include/functions.php:1958
+#: include/functions.php:1908
 #, fuzzy
 msgid "Deselect everything"
 msgstr "Neatzīmēt rakstus"
 
-#: include/functions.php:1959
-#: classes/pref/feeds.php:520
-#: classes/pref/feeds.php:753
+#: include/functions.php:1909
+#: classes/pref/feeds.php:521
+#: classes/pref/feeds.php:754
 msgid "Feed"
 msgstr "Barotne"
 
-#: include/functions.php:1960
+#: include/functions.php:1910
 #, fuzzy
 msgid "Refresh current feed"
 msgstr "Atjaunot aktīvo barotni"
 
-#: include/functions.php:1961
+#: include/functions.php:1911
 #, fuzzy
 msgid "Un/hide read feeds"
 msgstr "(Ne)rādīt lasītās barotnes"
 
-#: include/functions.php:1962
-#: classes/pref/feeds.php:1274
+#: include/functions.php:1912
+#: classes/pref/feeds.php:1275
 msgid "Subscribe to feed"
 msgstr "Abonēt barotni"
 
-#: include/functions.php:1963
+#: include/functions.php:1913
 #: js/FeedTree.js:135
 #: js/PrefFeedTree.js:67
 msgid "Edit feed"
 msgstr "Rediģēt barotni"
 
-#: include/functions.php:1965
+#: include/functions.php:1915
 #, fuzzy
 msgid "Reverse headlines"
 msgstr "Apgriezt virsrakstu secību"
 
-#: include/functions.php:1966
+#: include/functions.php:1916
 #, fuzzy
 msgid "Debug feed update"
 msgstr "Atslēgt atjaunojumus"
 
-#: include/functions.php:1967
+#: include/functions.php:1917
 #: js/FeedTree.js:178
 msgid "Mark all feeds as read"
 msgstr "Atzīmēt visas barotnes kā lasītas"
 
-#: include/functions.php:1968
+#: include/functions.php:1918
 #, fuzzy
 msgid "Un/collapse current category"
 msgstr "Ievietot kategorijā:"
 
-#: include/functions.php:1969
+#: include/functions.php:1919
 #, fuzzy
 msgid "Toggle combined mode"
 msgstr "Pārslēgt publicēšanu"
 
-#: include/functions.php:1970
+#: include/functions.php:1920
 #, fuzzy
 msgid "Toggle auto expand in combined mode"
 msgstr "Pārslēgt publicēšanu"
 
-#: include/functions.php:1971
+#: include/functions.php:1921
 #, fuzzy
 msgid "Go to"
 msgstr "Doties uz..."
 
-#: include/functions.php:1973
+#: include/functions.php:1923
 msgid "Fresh"
 msgstr ""
 
-#: include/functions.php:1976
+#: include/functions.php:1926
+#: js/tt-rss.js:431
+#: js/tt-rss.js:584
 msgid "Tag cloud"
 msgstr "Iezīmju mākonis"
 
-#: include/functions.php:1978
+#: include/functions.php:1928
 #, fuzzy
 msgid "Other"
 msgstr "Citas barotnes"
 
-#: include/functions.php:1979
+#: include/functions.php:1929
 #: classes/pref/labels.php:281
 msgid "Create label"
 msgstr "Izveidot etiķeti"
 
-#: include/functions.php:1980
-#: classes/pref/filters.php:606
+#: include/functions.php:1930
+#: classes/pref/filters.php:654
 msgid "Create filter"
 msgstr "Izveidot filtru"
 
-#: include/functions.php:1981
+#: include/functions.php:1931
 #, fuzzy
 msgid "Un/collapse sidebar"
 msgstr "Sakļaut sānjoslu"
 
-#: include/functions.php:1982
+#: include/functions.php:1932
 #, fuzzy
 msgid "Show help dialog"
 msgstr "Rādīt meklēšanas logu"
 
-#: include/functions.php:2467
+#: include/functions.php:2417
 #, php-format
 msgid "Search results: %s"
 msgstr "Meklēšanas rezultāti: %s"
 
-#: include/functions.php:2958
-#: js/viewfeed.js:2026
+#: include/functions.php:2908
+#: js/viewfeed.js:2014
 msgid "Click to play"
 msgstr "Klikšķiniet, lai atskaņotu"
 
-#: include/functions.php:2959
-#: js/viewfeed.js:2025
+#: include/functions.php:2909
+#: js/viewfeed.js:2013
 msgid "Play"
 msgstr "Atskaņot"
 
-#: include/functions.php:3076
+#: include/functions.php:3026
 msgid " - "
 msgstr "–"
 
-#: include/functions.php:3098
-#: include/functions.php:3392
+#: include/functions.php:3048
+#: include/functions.php:3342
 #: classes/rpc.php:408
 msgid "no tags"
 msgstr "nav iezīmju"
 
-#: include/functions.php:3108
+#: include/functions.php:3058
 #: classes/feeds.php:682
 msgid "Edit tags for this article"
 msgstr "Rediģēt šī raksta iezīmes"
 
-#: include/functions.php:3137
+#: include/functions.php:3087
 #: classes/feeds.php:638
 msgid "Originally from:"
 msgstr "Sākotnējais no:"
 
-#: include/functions.php:3150
+#: include/functions.php:3100
 #: classes/feeds.php:651
-#: classes/pref/feeds.php:539
+#: classes/pref/feeds.php:540
 msgid "Feed URL"
 msgstr "Barotnes URL"
 
-#: include/functions.php:3181
-#: classes/dlg.php:43
-#: classes/dlg.php:162
-#: classes/dlg.php:185
-#: classes/dlg.php:222
-#: classes/dlg.php:506
-#: classes/dlg.php:541
-#: classes/dlg.php:572
-#: classes/dlg.php:606
-#: classes/dlg.php:618
+#: include/functions.php:3131
+#: classes/dlg.php:37
+#: classes/dlg.php:60
+#: classes/dlg.php:93
+#: classes/dlg.php:159
+#: classes/dlg.php:190
+#: classes/dlg.php:217
+#: classes/dlg.php:250
+#: classes/dlg.php:262
 #: classes/backend.php:105
 #: classes/pref/users.php:106
-#: classes/pref/filters.php:111
-#: classes/pref/feeds.php:1587
-#: classes/pref/feeds.php:1659
+#: classes/pref/filters.php:147
+#: classes/pref/prefs.php:1012
+#: classes/pref/feeds.php:1588
+#: classes/pref/feeds.php:1660
 #: plugins/import_export/init.php:409
 #: plugins/import_export/init.php:432
-#: plugins/googlereaderimport/init.php:164
+#: plugins/googlereaderimport/init.php:168
 #: plugins/share/init.php:67
 #: plugins/updater/init.php:357
 msgid "Close this window"
 msgstr "Aizvērt šo logu"
 
-#: include/functions.php:3417
+#: include/functions.php:3367
 msgid "(edit note)"
 msgstr "(rediģēt piezīmi)"
 
-#: include/functions.php:3650
+#: include/functions.php:3600
 msgid "unknown type"
 msgstr "nezināms tips"
 
-#: include/functions.php:3706
+#: include/functions.php:3656
 msgid "Attachments"
 msgstr "Pielikumi"
 
@@ -999,7 +995,7 @@ msgid "Assign tags"
 msgstr "Pievienot iezīmi"
 
 #: include/localized_schema.php:14
-#: js/viewfeed.js:1990
+#: js/viewfeed.js:1978
 msgid "Assign label"
 msgstr "Pievienot etiķeti"
 
@@ -1183,7 +1179,7 @@ msgid "User timezone"
 msgstr "Lietotāja laika zona"
 
 #: include/localized_schema.php:61
-#: js/prefs.js:1719
+#: js/prefs.js:1725
 msgid "Customize stylesheet"
 msgstr "Pielāgot stilu lapu"
 
@@ -1208,14 +1204,14 @@ msgid "Select theme"
 msgstr "Izvēlieties tēmu"
 
 #: include/login_form.php:183
-#: classes/handler/public.php:460
-#: classes/handler/public.php:748
+#: classes/handler/public.php:461
+#: classes/handler/public.php:749
 #: plugins/mobile/login_form.php:40
 msgid "Login:"
 msgstr "Pieteikties:"
 
 #: include/login_form.php:192
-#: classes/handler/public.php:463
+#: classes/handler/public.php:464
 #: plugins/mobile/login_form.php:45
 msgid "Password:"
 msgstr "Parole:"
@@ -1226,7 +1222,7 @@ msgid "I forgot my password"
 msgstr "Nepareiza parole"
 
 #: include/login_form.php:201
-#: classes/handler/public.php:466
+#: classes/handler/public.php:467
 msgid "Language:"
 msgstr "Valoda:"
 
@@ -1235,9 +1231,9 @@ msgid "Profile:"
 msgstr "Profils:"
 
 #: include/login_form.php:213
-#: classes/handler/public.php:210
+#: classes/handler/public.php:211
 #: classes/rpc.php:64
-#: classes/dlg.php:98
+#: classes/pref/prefs.php:948
 msgid "Default profile"
 msgstr "Noklusētais profils"
 
@@ -1250,477 +1246,247 @@ msgid "Remember me"
 msgstr ""
 
 #: include/login_form.php:235
-#: classes/handler/public.php:476
+#: classes/handler/public.php:477
 #: plugins/mobile/login_form.php:28
 msgid "Log in"
 msgstr "Pieteikties"
 
+#: include/sessions.php:53
+msgid "Session failed to validate (incorrect IP)"
+msgstr "Neizdevās validēt sesiju (mainījusies IP adrese)"
+
 #: classes/article.php:25
 msgid "Article not found."
 msgstr "Raksts netika atrasts."
 
-#: classes/handler/public.php:401
+#: classes/article.php:179
+msgid "Tags for this article (separated by commas):"
+msgstr "Šī raksta iezīmes (atdalītas ar komatiem):"
+
+#: classes/article.php:204
+#: classes/pref/users.php:192
+#: classes/pref/labels.php:79
+#: classes/pref/filters.php:405
+#: classes/pref/prefs.php:894
+#: classes/pref/feeds.php:733
+#: classes/pref/feeds.php:881
+#: plugins/nsfw/init.php:86
+#: plugins/note/init.php:53
+#: plugins/instances/init.php:248
+msgid "Save"
+msgstr "Saglabāt"
+
+#: classes/article.php:206
+#: classes/handler/public.php:438
+#: classes/handler/public.php:480
+#: classes/feeds.php:1024
+#: classes/feeds.php:1076
+#: classes/feeds.php:1136
+#: classes/pref/users.php:194
+#: classes/pref/labels.php:81
+#: classes/pref/filters.php:408
+#: classes/pref/filters.php:804
+#: classes/pref/filters.php:880
+#: classes/pref/filters.php:947
+#: classes/pref/prefs.php:896
+#: classes/pref/feeds.php:734
+#: classes/pref/feeds.php:884
+#: classes/pref/feeds.php:1797
+#: plugins/mail/init.php:131
+#: plugins/note/init.php:55
+#: plugins/instances/init.php:251
+#: plugins/instances/init.php:440
+msgid "Cancel"
+msgstr "Atcelt"
+
+#: classes/handler/public.php:402
 #: plugins/bookmarklets/init.php:38
 msgid "Share with Tiny Tiny RSS"
 msgstr "Kopīgot ar Tiny Tiny RSS"
 
-#: classes/handler/public.php:409
+#: classes/handler/public.php:410
 msgid "Title:"
 msgstr "Virsraksts:"
 
-#: classes/handler/public.php:411
-#: classes/dlg.php:663
-#: classes/pref/feeds.php:537
-#: classes/pref/feeds.php:768
+#: classes/handler/public.php:412
+#: classes/pref/feeds.php:538
+#: classes/pref/feeds.php:769
 #: plugins/instances/init.php:215
+#: plugins/instances/init.php:405
 msgid "URL:"
 msgstr "URL:"
 
-#: classes/handler/public.php:413
+#: classes/handler/public.php:414
 msgid "Content:"
 msgstr "Saturs:"
 
-#: classes/handler/public.php:415
+#: classes/handler/public.php:416
 msgid "Labels:"
 msgstr "Etiķetes:"
 
-#: classes/handler/public.php:434
+#: classes/handler/public.php:435
 msgid "Shared article will appear in the Published feed."
 msgstr "Kopīgotais raksts parādīsies Publicēts barotnē"
 
-#: classes/handler/public.php:436
+#: classes/handler/public.php:437
 msgid "Share"
 msgstr "Kopīgot"
 
-#: classes/handler/public.php:437
-#: classes/handler/public.php:479
-#: classes/dlg.php:296
-#: classes/dlg.php:348
-#: classes/dlg.php:408
-#: classes/dlg.php:439
-#: classes/dlg.php:648
-#: classes/dlg.php:698
-#: classes/dlg.php:747
-#: classes/pref/users.php:194
-#: classes/pref/labels.php:81
-#: classes/pref/filters.php:363
-#: classes/pref/filters.php:746
-#: classes/pref/filters.php:822
-#: classes/pref/filters.php:889
-#: classes/pref/feeds.php:733
-#: classes/pref/feeds.php:883
-#: plugins/mail/init.php:131
-#: plugins/note/init.php:55
-#: plugins/instances/init.php:251
-msgid "Cancel"
-msgstr "Atcelt"
-
-#: classes/handler/public.php:458
+#: classes/handler/public.php:459
 msgid "Not logged in"
 msgstr "Nav pieteicies"
 
-#: classes/handler/public.php:525
+#: classes/handler/public.php:526
 msgid "Incorrect username or password"
 msgstr "Nepareizs lietotāja vārds vai parole"
 
-#: classes/handler/public.php:561
-#: classes/handler/public.php:658
+#: classes/handler/public.php:562
+#: classes/handler/public.php:659
 #, php-format
 msgid "Already subscribed to <b>%s</b>."
 msgstr "Jau ir pasūtījis <b>%s</b>."
 
-#: classes/handler/public.php:564
-#: classes/handler/public.php:649
+#: classes/handler/public.php:565
+#: classes/handler/public.php:650
 #, php-format
 msgid "Subscribed to <b>%s</b>."
 msgstr "Pasūtījis <b>%s</b>."
 
-#: classes/handler/public.php:567
-#: classes/handler/public.php:652
+#: classes/handler/public.php:568
+#: classes/handler/public.php:653
 #, php-format
 msgid "Could not subscribe to <b>%s</b>."
 msgstr "Neizdevās pasūtīt <b>%s</b>."
 
-#: classes/handler/public.php:570
-#: classes/handler/public.php:655
+#: classes/handler/public.php:571
+#: classes/handler/public.php:656
 #, php-format
 msgid "No feeds found in <b>%s</b>."
 msgstr "<b>%s</b> barotne netika atrasta."
 
-#: classes/handler/public.php:573
-#: classes/handler/public.php:661
+#: classes/handler/public.php:574
+#: classes/handler/public.php:662
 msgid "Multiple feed URLs found."
 msgstr "Atradu vairākus barotņu URLus."
 
-#: classes/handler/public.php:577
-#: classes/handler/public.php:666
+#: classes/handler/public.php:578
+#: classes/handler/public.php:667
 #, php-format
 msgid "Could not subscribe to <b>%s</b>.<br>Can't download the Feed URL."
 msgstr "Neizdevās pasūtīt <b>%s</b>.<br>Nevarēju lejuplādēt barotnes URL."
 
-#: classes/handler/public.php:595
-#: classes/handler/public.php:684
+#: classes/handler/public.php:596
+#: classes/handler/public.php:685
 msgid "Subscribe to selected feed"
 msgstr "Pasūtīt norādīto barotni"
 
-#: classes/handler/public.php:620
-#: classes/handler/public.php:708
+#: classes/handler/public.php:621
+#: classes/handler/public.php:709
 msgid "Edit subscription options"
 msgstr "Rediģēt barotnes iestatījumus"
 
-#: classes/handler/public.php:735
+#: classes/handler/public.php:736
 #, fuzzy
 msgid "Password recovery"
 msgstr "Parole"
 
-#: classes/handler/public.php:741
+#: classes/handler/public.php:742
 msgid "You will need to provide valid account name and email. New password will be sent on your email address."
 msgstr ""
 
-#: classes/handler/public.php:763
+#: classes/handler/public.php:764
 #: classes/pref/users.php:378
 msgid "Reset password"
 msgstr "Atstatīt paroli"
 
-#: classes/handler/public.php:773
+#: classes/handler/public.php:774
 msgid "Some of the required form parameters are missing or incorrect."
 msgstr ""
 
-#: classes/handler/public.php:777
-#: classes/handler/public.php:803
+#: classes/handler/public.php:778
+#: classes/handler/public.php:804
 #: plugins/digest/digest_body.php:69
 #, fuzzy
 msgid "Go back"
 msgstr "Pārvietot atpakaļ"
 
-#: classes/handler/public.php:799
+#: classes/handler/public.php:800
 msgid "Sorry, login and email combination not found."
 msgstr ""
 
-#: classes/dlg.php:22
+#: classes/dlg.php:16
 msgid "If you have imported labels and/or filters, you might need to reload preferences to see your new data."
 msgstr "Ja esat importējis etiķetus vai filtrus, iespējams, ka jums nepieciešams pārlādēt iestatījumus, lai redzētu jaunos datus."
 
-#: classes/dlg.php:55
-#: classes/pref/users.php:360
-#: classes/pref/labels.php:272
-#: classes/pref/filters.php:234
-#: classes/pref/filters.php:282
-#: classes/pref/filters.php:597
-#: classes/pref/filters.php:676
-#: classes/pref/filters.php:703
-#: classes/pref/feeds.php:1262
-#: classes/pref/feeds.php:1532
-#: classes/pref/feeds.php:1602
-#: plugins/instances/init.php:287
-msgid "Select"
-msgstr "Iezīmēt"
-
-#: classes/dlg.php:58
-#: classes/feeds.php:92
-#: classes/pref/users.php:363
-#: classes/pref/labels.php:275
-#: classes/pref/filters.php:237
-#: classes/pref/filters.php:285
-#: classes/pref/filters.php:600
-#: classes/pref/filters.php:679
-#: classes/pref/filters.php:706
-#: classes/pref/feeds.php:1265
-#: classes/pref/feeds.php:1535
-#: classes/pref/feeds.php:1605
-#: plugins/instances/init.php:290
-msgid "All"
-msgstr "Visus"
-
-#: classes/dlg.php:60
-#: classes/feeds.php:95
-#: classes/pref/users.php:365
-#: classes/pref/labels.php:277
-#: classes/pref/filters.php:239
-#: classes/pref/filters.php:287
-#: classes/pref/filters.php:602
-#: classes/pref/filters.php:681
-#: classes/pref/filters.php:708
-#: classes/pref/feeds.php:1267
-#: classes/pref/feeds.php:1537
-#: classes/pref/feeds.php:1607
-#: plugins/instances/init.php:292
-msgid "None"
-msgstr "Nevienu"
-
-#: classes/dlg.php:69
-msgid "Create profile"
-msgstr "Izveidot profilu"
-
-#: classes/dlg.php:92
-#: classes/dlg.php:122
-msgid "(active)"
-msgstr "(aktīvs)"
-
-#: classes/dlg.php:156
-msgid "Remove selected profiles"
-msgstr "Dzēst iezīmētos profilus"
-
-#: classes/dlg.php:158
-msgid "Activate profile"
-msgstr "Aktivizēt profilu"
-
-#: classes/dlg.php:168
-msgid "Public OPML URL"
-msgstr "Publiskā OPML URL (adrese)"
-
-#: classes/dlg.php:173
+#: classes/dlg.php:48
 msgid "Your Public OPML URL is:"
 msgstr "Jūsu publiskais OPML URL ir:"
 
-#: classes/dlg.php:182
-#: classes/dlg.php:569
+#: classes/dlg.php:57
+#: classes/dlg.php:214
 msgid "Generate new URL"
 msgstr "Izveidot jaunu URL"
 
-#: classes/dlg.php:194
-msgid "Notice"
-msgstr "Piezīme"
-
-#: classes/dlg.php:200
+#: classes/dlg.php:71
 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 "Atjaunošanas process iestatījumos ir iespējots, bet tas nedarbojas, tāpēc barotnes neatjaunojas. Lūdzu palaidiet atjaunošanas procesu vai arī sazinieties ar servera īpašnieku."
 
-#: classes/dlg.php:204
-#: classes/dlg.php:213
+#: classes/dlg.php:75
+#: classes/dlg.php:84
 msgid "Last update:"
 msgstr "Pēdējais atjaunojums:"
 
-#: classes/dlg.php:209
+#: classes/dlg.php:80
 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 "Atjaunošanas process aizņem pārāk ilgu laiku. Iespējams, ka tas ir tāpēc, ka process ir \"uzkāries\". Lūdzu pārbaudiet atjaunošanas procesu vai arī sazinieties ar servera īpašnieku."
 
-#: classes/dlg.php:234
-#: classes/dlg.php:242
-msgid "Feed or site URL"
-msgstr "Barotnes vai vietnes URL"
-
-#: classes/dlg.php:248
-#: classes/dlg.php:711
-#: classes/pref/feeds.php:559
-#: classes/pref/feeds.php:781
-msgid "Place in category:"
-msgstr "Ievietot kategorijā:"
-
-#: classes/dlg.php:256
-msgid "Available feeds"
-msgstr "Pieejamās barotnes"
-
-#: classes/dlg.php:268
-#: classes/pref/users.php:155
-#: classes/pref/feeds.php:589
-#: classes/pref/feeds.php:817
-msgid "Authentication"
-msgstr "Autentifikācija"
-
-#: classes/dlg.php:272
-#: classes/dlg.php:725
-#: classes/pref/users.php:420
-#: classes/pref/feeds.php:595
-#: classes/pref/feeds.php:821
-msgid "Login"
-msgstr "Pieteikšanās"
-
-#: classes/dlg.php:275
-#: classes/dlg.php:728
-#: classes/pref/prefs.php:202
-#: classes/pref/feeds.php:601
-#: classes/pref/feeds.php:827
-msgid "Password"
-msgstr "Parole"
-
-#: classes/dlg.php:285
-msgid "This feed requires authentication."
-msgstr "Šim laukam ir nepieciešams autentificēties."
-
-#: classes/dlg.php:290
-#: classes/dlg.php:346
-#: classes/dlg.php:746
-msgid "Subscribe"
-msgstr "Pasūtīt"
-
-#: classes/dlg.php:293
-msgid "More feeds"
-msgstr "Vairāk barotnes"
-
-#: classes/dlg.php:316
-#: classes/dlg.php:407
-#: classes/pref/users.php:350
-#: classes/pref/filters.php:593
-#: classes/pref/feeds.php:1258
-#: js/tt-rss.js:170
-msgid "Search"
-msgstr "Meklēt"
-
-#: classes/dlg.php:320
-msgid "Popular feeds"
-msgstr "Populārās barotnes"
-
-#: classes/dlg.php:321
-msgid "Feed archive"
-msgstr "Barotņu arhīvs"
-
-#: classes/dlg.php:324
-msgid "limit:"
-msgstr "ierobežojumi:"
-
-#: classes/dlg.php:347
-#: classes/pref/users.php:376
-#: classes/pref/labels.php:284
-#: classes/pref/filters.php:353
-#: classes/pref/filters.php:615
-#: classes/pref/feeds.php:706
-#: plugins/instances/init.php:297
-msgid "Remove"
-msgstr "Novākt"
-
-#: classes/dlg.php:358
-msgid "Look for"
-msgstr "Meklēt"
-
-#: classes/dlg.php:366
-msgid "Limit search to:"
-msgstr "Ierobežot meklēšanu:"
-
-#: classes/dlg.php:382
-msgid "This feed"
-msgstr "Šajā barotnē"
-
-#: classes/dlg.php:414
-msgid "Tags for this article (separated by commas):"
-msgstr "Šī raksta iezīmes (atdalītas ar komatiem):"
-
-#: classes/dlg.php:437
-#: classes/dlg.php:646
-#: classes/pref/users.php:192
-#: classes/pref/labels.php:79
-#: classes/pref/filters.php:360
-#: classes/pref/feeds.php:732
-#: classes/pref/feeds.php:880
-#: plugins/nsfw/init.php:86
-#: plugins/note/init.php:53
-#: plugins/instances/init.php:248
-msgid "Save"
-msgstr "Saglabāt"
-
-#: classes/dlg.php:445
-msgid "Tag Cloud"
-msgstr "Iezīmju mākonis"
-
-#: classes/dlg.php:514
-msgid "Select item(s) by tags"
-msgstr "Atlasīt vienumus pēc iezīmēm"
-
-#: classes/dlg.php:517
+#: classes/dlg.php:166
 msgid "Match:"
 msgstr "Atbilstība:"
 
-#: classes/dlg.php:519
+#: classes/dlg.php:168
 msgid "Any"
 msgstr "Jebkurš"
 
-#: classes/dlg.php:522
+#: classes/dlg.php:171
 msgid "All tags."
 msgstr "Visas iezīmes."
 
-#: classes/dlg.php:524
+#: classes/dlg.php:173
 msgid "Which Tags?"
 msgstr "Kuras iezīmes?"
 
-#: classes/dlg.php:537
+#: classes/dlg.php:186
 msgid "Display entries"
 msgstr "Rādīt ierakstus"
 
-#: classes/dlg.php:549
-#: classes/feeds.php:138
-msgid "View as RSS"
-msgstr "Skatīt kā RSS"
-
-#: classes/dlg.php:560
+#: classes/dlg.php:205
 msgid "You can view this feed as RSS using the following URL:"
 msgstr "Jūs varat skatīt so baronti kā RSS ar sekojošu URL:"
 
-#: classes/dlg.php:589
+#: classes/dlg.php:233
 #: plugins/updater/init.php:327
 #, php-format
 msgid "New version of Tiny Tiny RSS is available (%s)."
 msgstr "Ir pieejama jauna Tiny Tiny RSS versija (%s)."
 
-#: classes/dlg.php:597
+#: classes/dlg.php:241
 msgid "You can update using built-in updater in the Preferences or by using update.php"
 msgstr "Jūs varat veikt atjaunojumus, izmantojot iestatījumos norādīto atjaunošanas procesu, vai arī atverot update.php lapu"
 
-#: classes/dlg.php:601
+#: classes/dlg.php:245
 #: plugins/updater/init.php:331
 msgid "See the release notes"
 msgstr ""
 
-#: classes/dlg.php:603
+#: classes/dlg.php:247
 msgid "Download"
 msgstr "Lejuplādēt"
 
-#: classes/dlg.php:611
+#: classes/dlg.php:255
 msgid "Error receiving version information or no new version available."
 msgstr ""
 
-#: classes/dlg.php:631
-#, 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 "Jūs varat aizstāt krāsas, fontus un izklājumu, šobrīd izmantotā CSS vietā izmantojot savus pielāgojumus. Paraugu varat ņemt no <a target=\"_blank\" class=\"visibleLink\" href=\"%s\">šī faila</a>."
-
-#: classes/dlg.php:657
-#: plugins/instances/init.php:207
-msgid "Instance"
-msgstr "Instance"
-
-#: classes/dlg.php:666
-#: plugins/instances/init.php:218
-#: plugins/instances/init.php:315
-msgid "Instance URL"
-msgstr "Instances URL"
-
-#: classes/dlg.php:676
-#: plugins/instances/init.php:229
-msgid "Access key:"
-msgstr "Pieejas atslēga:"
-
-#: classes/dlg.php:679
-#: plugins/instances/init.php:232
-#: plugins/instances/init.php:316
-msgid "Access key"
-msgstr "Pieejas aslēga"
-
-#: classes/dlg.php:683
-#: plugins/instances/init.php:236
-msgid "Use one access key for both linked instances."
-msgstr "Izmantot to pašu pieejas aslēgu abām saistītajām instancēm."
-
-#: classes/dlg.php:691
-#: plugins/instances/init.php:244
-msgid "Generate new key"
-msgstr "Ģenerēt jaunu atslēgu"
-
-#: classes/dlg.php:695
-msgid "Create link"
-msgstr "Izveidot saiti"
-
-#: classes/dlg.php:708
-msgid "Add one valid RSS feed per line (no feed detection is done)"
-msgstr "Pievienojiet vienu derīgu RSS barotni vienā rindā (barotnes netiek pārbaudītas)"
-
-#: classes/dlg.php:717
-msgid "Feeds to subscribe, One per line"
-msgstr "Pasūtāmās barotnes, pa vienai katrā rindā"
-
-#: classes/dlg.php:739
-msgid "Feeds require authentication."
-msgstr "Barotnēm nepieciešama autentifikācija"
-
 #: classes/feeds.php:68
 msgid "Visit the website"
 msgstr "Apmeklēt vietni"
@@ -1729,14 +1495,52 @@ msgstr "Apmeklēt vietni"
 msgid "View as RSS feed"
 msgstr "Skatīt RSS barotni"
 
+#: classes/feeds.php:84
+#: classes/feeds.php:138
+#: classes/pref/feeds.php:1440
+msgid "View as RSS"
+msgstr "Skatīt kā RSS"
+
 #: classes/feeds.php:91
 msgid "Select:"
 msgstr "Iezīmēt:"
 
+#: classes/feeds.php:92
+#: classes/pref/users.php:363
+#: classes/pref/labels.php:275
+#: classes/pref/filters.php:282
+#: classes/pref/filters.php:330
+#: classes/pref/filters.php:648
+#: classes/pref/filters.php:737
+#: classes/pref/filters.php:764
+#: classes/pref/prefs.php:908
+#: classes/pref/feeds.php:1266
+#: classes/pref/feeds.php:1536
+#: classes/pref/feeds.php:1606
+#: plugins/instances/init.php:290
+msgid "All"
+msgstr "Visus"
+
 #: classes/feeds.php:94
 msgid "Invert"
 msgstr "Apgriezt"
 
+#: classes/feeds.php:95
+#: classes/pref/users.php:365
+#: classes/pref/labels.php:277
+#: classes/pref/filters.php:284
+#: classes/pref/filters.php:332
+#: classes/pref/filters.php:650
+#: classes/pref/filters.php:739
+#: classes/pref/filters.php:766
+#: classes/pref/prefs.php:910
+#: classes/pref/feeds.php:1268
+#: classes/pref/feeds.php:1538
+#: classes/pref/feeds.php:1608
+#: plugins/instances/init.php:292
+msgid "None"
+msgstr "Nevienu"
+
 #: classes/feeds.php:101
 #, fuzzy
 msgid "More..."
@@ -1763,10 +1567,10 @@ msgid "Move back"
 msgstr "Pārvietot atpakaļ"
 
 #: classes/feeds.php:118
-#: classes/pref/filters.php:246
-#: classes/pref/filters.php:294
-#: classes/pref/filters.php:688
-#: classes/pref/filters.php:715
+#: classes/pref/filters.php:291
+#: classes/pref/filters.php:339
+#: classes/pref/filters.php:746
+#: classes/pref/filters.php:773
 msgid "Delete"
 msgstr "Dzēst"
 
@@ -1821,20 +1625,116 @@ msgid "No articles found to display."
 msgstr "Netika atrasti raksti, ko rādīt."
 
 #: classes/feeds.php:755
-#: classes/feeds.php:920
+#: classes/feeds.php:919
 #, php-format
 msgid "Feeds last updated at %s"
 msgstr "Barotnes pēdējo reizi atjaunotas %s."
 
 #: classes/feeds.php:765
-#: classes/feeds.php:930
+#: classes/feeds.php:929
 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:910
+#: classes/feeds.php:909
 msgid "No feed selected."
 msgstr "Nav izvēlēta barotne."
 
+#: classes/feeds.php:962
+#: classes/feeds.php:970
+msgid "Feed or site URL"
+msgstr "Barotnes vai vietnes URL"
+
+#: classes/feeds.php:976
+#: classes/pref/feeds.php:560
+#: classes/pref/feeds.php:782
+#: classes/pref/feeds.php:1761
+msgid "Place in category:"
+msgstr "Ievietot kategorijā:"
+
+#: classes/feeds.php:984
+msgid "Available feeds"
+msgstr "Pieejamās barotnes"
+
+#: classes/feeds.php:996
+#: classes/pref/users.php:155
+#: classes/pref/feeds.php:590
+#: classes/pref/feeds.php:818
+msgid "Authentication"
+msgstr "Autentifikācija"
+
+#: classes/feeds.php:1000
+#: classes/pref/users.php:420
+#: classes/pref/feeds.php:596
+#: classes/pref/feeds.php:822
+#: classes/pref/feeds.php:1775
+msgid "Login"
+msgstr "Pieteikšanās"
+
+#: classes/feeds.php:1003
+#: classes/pref/prefs.php:202
+#: classes/pref/feeds.php:602
+#: classes/pref/feeds.php:828
+#: classes/pref/feeds.php:1778
+msgid "Password"
+msgstr "Parole"
+
+#: classes/feeds.php:1013
+msgid "This feed requires authentication."
+msgstr "Šim laukam ir nepieciešams autentificēties."
+
+#: classes/feeds.php:1018
+#: classes/feeds.php:1074
+#: classes/pref/feeds.php:1796
+msgid "Subscribe"
+msgstr "Pasūtīt"
+
+#: classes/feeds.php:1021
+msgid "More feeds"
+msgstr "Vairāk barotnes"
+
+#: classes/feeds.php:1044
+#: classes/feeds.php:1135
+#: classes/pref/users.php:350
+#: classes/pref/filters.php:641
+#: classes/pref/feeds.php:1259
+#: js/tt-rss.js:170
+msgid "Search"
+msgstr "Meklēt"
+
+#: classes/feeds.php:1048
+msgid "Popular feeds"
+msgstr "Populārās barotnes"
+
+#: classes/feeds.php:1049
+msgid "Feed archive"
+msgstr "Barotņu arhīvs"
+
+#: classes/feeds.php:1052
+msgid "limit:"
+msgstr "ierobežojumi:"
+
+#: classes/feeds.php:1075
+#: classes/pref/users.php:376
+#: classes/pref/labels.php:284
+#: classes/pref/filters.php:398
+#: classes/pref/filters.php:667
+#: classes/pref/feeds.php:707
+#: plugins/instances/init.php:297
+msgid "Remove"
+msgstr "Novākt"
+
+#: classes/feeds.php:1086
+msgid "Look for"
+msgstr "Meklēt"
+
+#: classes/feeds.php:1094
+msgid "Limit search to:"
+msgstr "Ierobežot meklēšanu:"
+
+#: classes/feeds.php:1110
+msgid "This feed"
+msgstr "Šajā barotnē"
+
 #: classes/backend.php:33
 msgid "Other interface tips are available in the Tiny Tiny RSS wiki."
 msgstr "Citi saskarnes padomi ir pieejami Tiny Tiny RSS viki vietnē."
@@ -1907,7 +1807,7 @@ msgid "Error: please upload OPML file."
 msgstr "Kļūda: lūdzu augšuplādējiet OPML failu."
 
 #: classes/opml.php:475
-#: plugins/googlereaderimport/init.php:157
+#: plugins/googlereaderimport/init.php:161
 msgid "Error while parsing document."
 msgstr "Dokumenta apstrādes kļūda."
 
@@ -1954,8 +1854,8 @@ msgid "Change password to"
 msgstr "Nomainīt paroli uz"
 
 #: classes/pref/users.php:177
-#: classes/pref/feeds.php:609
-#: classes/pref/feeds.php:833
+#: classes/pref/feeds.php:610
+#: classes/pref/feeds.php:834
 msgid "Options"
 msgstr "Iespējas"
 
@@ -1996,6 +1896,21 @@ msgstr ""
 msgid "[tt-rss] Password change notification"
 msgstr "[tt-rss] paroles maiņas paziņojums"
 
+#: classes/pref/users.php:360
+#: classes/pref/labels.php:272
+#: classes/pref/filters.php:279
+#: classes/pref/filters.php:327
+#: classes/pref/filters.php:645
+#: classes/pref/filters.php:734
+#: classes/pref/filters.php:761
+#: classes/pref/prefs.php:905
+#: classes/pref/feeds.php:1263
+#: classes/pref/feeds.php:1533
+#: classes/pref/feeds.php:1603
+#: plugins/instances/init.php:287
+msgid "Select"
+msgstr "Iezīmēt"
+
 #: classes/pref/users.php:368
 msgid "Create user"
 msgstr "Izveidot lietotāju"
@@ -2005,7 +1920,7 @@ msgid "Details"
 msgstr "Detaļas"
 
 #: classes/pref/users.php:374
-#: classes/pref/filters.php:612
+#: classes/pref/filters.php:660
 #: plugins/instances/init.php:296
 msgid "Edit"
 msgstr "Rediģēt"
@@ -2032,6 +1947,8 @@ msgid "No matching users found."
 msgstr "Neatradu atbilstošus lietotājus."
 
 #: classes/pref/labels.php:22
+#: classes/pref/filters.php:268
+#: classes/pref/filters.php:725
 msgid "Caption"
 msgstr "Uzraksts"
 
@@ -2056,120 +1973,131 @@ msgstr "Izveidoju etiķeti <b>%s</b>"
 msgid "Clear colors"
 msgstr "Attīrīt krāsas"
 
-#: classes/pref/filters.php:60
+#: classes/pref/filters.php:96
 msgid "Articles matching this filter:"
 msgstr "Raksti, kas atbilst šim filtram:"
 
-#: classes/pref/filters.php:97
+#: classes/pref/filters.php:133
 msgid "No recent articles matching this filter have been found."
 msgstr "Neseni raksti ar šādiem atlases nosacījumiem netika atrasti"
 
-#: classes/pref/filters.php:101
+#: classes/pref/filters.php:137
 msgid "Complex expressions might not give results while testing due to issues with database server regexp implementation."
 msgstr ""
 
-#: classes/pref/filters.php:229
-#: classes/pref/filters.php:671
-#: classes/pref/filters.php:786
+#: classes/pref/filters.php:274
+#: classes/pref/filters.php:729
+#: classes/pref/filters.php:844
 msgid "Match"
 msgstr "Atbilstība"
 
-#: classes/pref/filters.php:243
-#: classes/pref/filters.php:291
-#: classes/pref/filters.php:685
-#: classes/pref/filters.php:712
+#: classes/pref/filters.php:288
+#: classes/pref/filters.php:336
+#: classes/pref/filters.php:743
+#: classes/pref/filters.php:770
 msgid "Add"
 msgstr "Pievienot"
 
-#: classes/pref/filters.php:277
-#: classes/pref/filters.php:698
+#: classes/pref/filters.php:322
+#: classes/pref/filters.php:756
 msgid "Apply actions"
 msgstr "Pielietot darbības"
 
-#: classes/pref/filters.php:327
-#: classes/pref/filters.php:727
+#: classes/pref/filters.php:372
+#: classes/pref/filters.php:785
 msgid "Enabled"
 msgstr "Iespējots"
 
-#: classes/pref/filters.php:336
-#: classes/pref/filters.php:730
+#: classes/pref/filters.php:381
+#: classes/pref/filters.php:788
 msgid "Match any rule"
 msgstr "Atbilst jebkuram likumam"
 
-#: classes/pref/filters.php:345
-#: classes/pref/filters.php:733
+#: classes/pref/filters.php:390
+#: classes/pref/filters.php:791
 #, fuzzy
 msgid "Inverse matching"
 msgstr "Apgriezt rakstu iezīmēšanu"
 
-#: classes/pref/filters.php:357
-#: classes/pref/filters.php:740
+#: classes/pref/filters.php:402
+#: classes/pref/filters.php:798
 msgid "Test"
 msgstr "Pārbaudīt"
 
-#: classes/pref/filters.php:390
+#: classes/pref/filters.php:435
 #, fuzzy
 msgid "(inverse)"
 msgstr "Apgriezt"
 
-#: classes/pref/filters.php:389
+#: classes/pref/filters.php:434
 #, fuzzy, php-format
 msgid "%s on %s in %s %s"
 msgstr "%s kad %s kur %s"
 
-#: classes/pref/filters.php:609
+#: classes/pref/filters.php:657
 msgid "Combine"
 msgstr "Apvienot"
 
-#: classes/pref/filters.php:619
-#: classes/pref/feeds.php:1317
+#: classes/pref/filters.php:663
+#: classes/pref/feeds.php:1279
+#: classes/pref/feeds.php:1293
+msgid "Reset sort order"
+msgstr "Atstatīt kārtošanas secību"
+
+#: classes/pref/filters.php:671
+#: classes/pref/feeds.php:1318
 msgid "Rescore articles"
 msgstr "Pārvērtēt rakstus"
 
-#: classes/pref/filters.php:743
+#: classes/pref/filters.php:801
 msgid "Create"
 msgstr "Izveidot"
 
-#: classes/pref/filters.php:798
+#: classes/pref/filters.php:856
 msgid "Inverse regular expression matching"
 msgstr ""
 
-#: classes/pref/filters.php:800
+#: classes/pref/filters.php:858
 msgid "on field"
 msgstr "laukā"
 
-#: classes/pref/filters.php:806
-#: js/PrefFilterTree.js:29
+#: classes/pref/filters.php:864
+#: js/PrefFilterTree.js:45
 #: plugins/digest/digest.js:242
 msgid "in"
 msgstr "kur"
 
-#: classes/pref/filters.php:819
+#: classes/pref/filters.php:877
 msgid "Save rule"
 msgstr "Saglabāt likumu"
 
-#: classes/pref/filters.php:819
-#: js/functions.js:1069
+#: classes/pref/filters.php:877
+#: js/functions.js:1063
 msgid "Add rule"
 msgstr "Pievienot likumu"
 
-#: classes/pref/filters.php:842
+#: classes/pref/filters.php:900
 msgid "Perform Action"
 msgstr "Pielietot darbību"
 
-#: classes/pref/filters.php:868
+#: classes/pref/filters.php:926
 msgid "with parameters:"
 msgstr "ar parametriem:"
 
-#: classes/pref/filters.php:886
+#: classes/pref/filters.php:944
 msgid "Save action"
 msgstr "Saglabāt darbību"
 
-#: classes/pref/filters.php:886
-#: js/functions.js:1095
+#: classes/pref/filters.php:944
+#: js/functions.js:1089
 msgid "Add action"
 msgstr "Pievienot darbību"
 
+#: classes/pref/filters.php:967
+#, fuzzy
+msgid "[No caption]"
+msgstr "Uzraksts"
+
 #: classes/pref/prefs.php:17
 msgid "Old password cannot be blank."
 msgstr "Vecā parole nedrīkst būt tukša"
@@ -2375,237 +2303,264 @@ msgstr "Iespējot barotņu kategorijas"
 msgid "Incorrect password"
 msgstr "Nepareiza parole"
 
-#: classes/pref/feeds.php:12
+#: classes/pref/prefs.php:879
+#, 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 "Jūs varat aizstāt krāsas, fontus un izklājumu, šobrīd izmantotā CSS vietā izmantojot savus pielāgojumus. Paraugu varat ņemt no <a target=\"_blank\" class=\"visibleLink\" href=\"%s\">šī faila</a>."
+
+#: classes/pref/prefs.php:919
+msgid "Create profile"
+msgstr "Izveidot profilu"
+
+#: classes/pref/prefs.php:942
+#: classes/pref/prefs.php:972
+msgid "(active)"
+msgstr "(aktīvs)"
+
+#: classes/pref/prefs.php:1006
+msgid "Remove selected profiles"
+msgstr "Dzēst iezīmētos profilus"
+
+#: classes/pref/prefs.php:1008
+msgid "Activate profile"
+msgstr "Aktivizēt profilu"
+
+#: classes/pref/feeds.php:13
 msgid "Check to enable field"
 msgstr "Iezīmējiet, lai iespējotu"
 
-#: classes/pref/feeds.php:60
-#: classes/pref/feeds.php:208
-#: classes/pref/feeds.php:250
-#: classes/pref/feeds.php:256
-#: classes/pref/feeds.php:281
-#, fuzzy, php-format
-msgid "(%d feed)"
-msgid_plural "(%d feeds)"
-msgstr[0] "(%d barotnes)"
-msgstr[1] "(%d barotnes)"
-
-#: classes/pref/feeds.php:526
+#: classes/pref/feeds.php:527
 msgid "Feed Title"
 msgstr "Barotnes virsraksts"
 
-#: classes/pref/feeds.php:582
-#: classes/pref/feeds.php:808
+#: classes/pref/feeds.php:568
+#: classes/pref/feeds.php:793
+msgid "Update"
+msgstr "Atjaunot"
+
+#: classes/pref/feeds.php:583
+#: classes/pref/feeds.php:809
 msgid "Article purging:"
 msgstr "Dzēšu rakstu:"
 
-#: classes/pref/feeds.php:605
+#: classes/pref/feeds.php:606
 msgid "<b>Hint:</b> you need to fill in your login information if your feed requires authentication, except for Twitter feeds."
 msgstr "<b>Ieteikums:</b> ja jūsu barotnei ir nepieciešama autentifikācija, jums ir jāievada pieteikšanās informācija. Vienīgais izņēmums ir Twitter barotnes."
 
-#: classes/pref/feeds.php:621
-#: classes/pref/feeds.php:837
+#: classes/pref/feeds.php:622
+#: classes/pref/feeds.php:838
 msgid "Hide from Popular feeds"
 msgstr "Nerādīt populārajās barotnēs"
 
-#: classes/pref/feeds.php:633
-#: classes/pref/feeds.php:843
+#: classes/pref/feeds.php:634
+#: classes/pref/feeds.php:844
 msgid "Include in e-mail digest"
 msgstr "Iekļaut e-pasta īssavilkumu"
 
-#: classes/pref/feeds.php:646
-#: classes/pref/feeds.php:849
+#: classes/pref/feeds.php:647
+#: classes/pref/feeds.php:850
 msgid "Always display image attachments"
 msgstr "Vienmēr rādīt attēlu pielikumus"
 
-#: classes/pref/feeds.php:659
-#: classes/pref/feeds.php:857
+#: classes/pref/feeds.php:660
+#: classes/pref/feeds.php:858
 msgid "Do not embed images"
 msgstr ""
 
-#: classes/pref/feeds.php:672
-#: classes/pref/feeds.php:865
+#: classes/pref/feeds.php:673
+#: classes/pref/feeds.php:866
 msgid "Cache images locally"
 msgstr "Kešot attēlus lokāli"
 
-#: classes/pref/feeds.php:684
-#: classes/pref/feeds.php:871
+#: classes/pref/feeds.php:685
+#: classes/pref/feeds.php:872
 msgid "Mark updated articles as unread"
 msgstr "Atzīmēt atjaunotos rakstus kā nelasītus"
 
-#: classes/pref/feeds.php:690
+#: classes/pref/feeds.php:691
 msgid "Icon"
 msgstr "Ikona"
 
-#: classes/pref/feeds.php:704
+#: classes/pref/feeds.php:705
 msgid "Replace"
 msgstr "Aizvietot"
 
-#: classes/pref/feeds.php:723
+#: classes/pref/feeds.php:724
 msgid "Resubscribe to push updates"
 msgstr "Pārpasūtīt atjaunojumu grūšanu"
 
-#: classes/pref/feeds.php:730
+#: classes/pref/feeds.php:731
 msgid "Resets PubSubHubbub subscription status for push-enabled feeds."
 msgstr "Atstata PubSubHubbub pasūtījumu statusu barotnēm ar iespējotu atjaunojumu grūšanu."
 
-#: classes/pref/feeds.php:1111
-#: classes/pref/feeds.php:1164
+#: classes/pref/feeds.php:1112
+#: classes/pref/feeds.php:1165
 msgid "All done."
 msgstr "Viss izdarīts."
 
-#: classes/pref/feeds.php:1219
+#: classes/pref/feeds.php:1220
 msgid "Feeds with errors"
 msgstr "Barotnes ar kļūdām"
 
-#: classes/pref/feeds.php:1239
+#: classes/pref/feeds.php:1240
 msgid "Inactive feeds"
 msgstr "Neaktīvās barotnes"
 
-#: classes/pref/feeds.php:1276
+#: classes/pref/feeds.php:1277
 msgid "Edit selected feeds"
 msgstr "Rediģēt izvēlētās barotnes"
 
-#: classes/pref/feeds.php:1278
-#: classes/pref/feeds.php:1292
-msgid "Reset sort order"
-msgstr "Atstatīt kārtošanas secību"
-
-#: classes/pref/feeds.php:1280
-#: js/prefs.js:1764
+#: classes/pref/feeds.php:1281
+#: js/prefs.js:1770
 msgid "Batch subscribe"
 msgstr "Pasūtījuma pakotne"
 
-#: classes/pref/feeds.php:1285
+#: classes/pref/feeds.php:1286
 msgid "Categories"
 msgstr "Kategorijas"
 
-#: classes/pref/feeds.php:1288
+#: classes/pref/feeds.php:1289
 msgid "Add category"
 msgstr "Pievienot kategoriju"
 
-#: classes/pref/feeds.php:1290
+#: classes/pref/feeds.php:1291
 msgid "(Un)hide empty categories"
 msgstr "(Ne)slēpt tukšās kategorijas"
 
-#: classes/pref/feeds.php:1294
+#: classes/pref/feeds.php:1295
 msgid "Remove selected"
 msgstr "Dzēst izvēlētās"
 
-#: classes/pref/feeds.php:1308
+#: classes/pref/feeds.php:1309
 msgid "More actions..."
 msgstr "Papildu iespējas..."
 
-#: classes/pref/feeds.php:1312
+#: classes/pref/feeds.php:1313
 msgid "Manual purge"
 msgstr "Manuāla dzēšana"
 
-#: classes/pref/feeds.php:1316
+#: classes/pref/feeds.php:1317
 msgid "Clear feed data"
 msgstr "Dzēst barotņu datus"
 
-#: classes/pref/feeds.php:1367
+#: classes/pref/feeds.php:1368
 msgid "OPML"
 msgstr "OPML"
 
-#: classes/pref/feeds.php:1369
+#: classes/pref/feeds.php:1370
 msgid "Using OPML you can export and import your feeds, filters, labels and Tiny Tiny RSS settings."
 msgstr "Izmantojot OPML jūs varat eksportēt un importēt savas barotnes, filtrus, etiķetes un Tiny Tiny RSS iestatījumus."
 
-#: classes/pref/feeds.php:1371
+#: classes/pref/feeds.php:1372
 msgid "Only main settings profile can be migrated using OPML."
 msgstr "Izmantojot OPML var migrēt tikai galvenos iestatījumus."
 
-#: classes/pref/feeds.php:1384
+#: classes/pref/feeds.php:1385
 msgid "Import my OPML"
 msgstr "Importēt manu OPML"
 
-#: classes/pref/feeds.php:1388
+#: classes/pref/feeds.php:1389
 msgid "Filename:"
 msgstr "Faila nosaukums:"
 
-#: classes/pref/feeds.php:1390
+#: classes/pref/feeds.php:1391
 msgid "Include settings"
 msgstr "Iekļaut iestatījumus"
 
-#: classes/pref/feeds.php:1394
+#: classes/pref/feeds.php:1395
 msgid "Export OPML"
 msgstr "Eksportēt OPML"
 
-#: classes/pref/feeds.php:1398
+#: classes/pref/feeds.php:1399
 msgid "Your OPML can be published publicly and can be subscribed by anyone who knows the URL below."
 msgstr "Jūsu OPML var publicēt un to var abonēt katrs, kas zin zemāk minēto saiti."
 
-#: classes/pref/feeds.php:1400
+#: classes/pref/feeds.php:1401
 msgid "Published OPML does not include your Tiny Tiny RSS settings, feeds that require authentication or feeds hidden from Popular feeds."
 msgstr "Publicētajā OPML nav iekļauti: jūsu Tiny Tiny RSS iestatījumi, barotnes, kurās nepieciešams autentificēties un arī barotnes, kas ir paslēptas no populārajām barotnēm."
 
 #: classes/pref/feeds.php:1403
+msgid "Public OPML URL"
+msgstr "Publiskā OPML URL (adrese)"
+
+#: classes/pref/feeds.php:1404
 msgid "Display published OPML URL"
 msgstr "Parādīt publicētā OPML URL"
 
-#: classes/pref/feeds.php:1413
+#: classes/pref/feeds.php:1414
 msgid "Firefox integration"
 msgstr "Firefox integrācija"
 
-#: classes/pref/feeds.php:1415
+#: classes/pref/feeds.php:1416
 msgid "This Tiny Tiny RSS site can be used as a Firefox Feed Reader by clicking the link below."
 msgstr "Šo Tiny Tiny RSS vietni var izmantot kā Firefox Feed Reader, klikšķinot uz zemākās saites."
 
-#: classes/pref/feeds.php:1422
+#: classes/pref/feeds.php:1423
 msgid "Click here to register this site as a feed reader."
 msgstr "Klikšķiniet šeit, lai reģistrētu šo vietni kā barotņu avotu."
 
-#: classes/pref/feeds.php:1430
+#: classes/pref/feeds.php:1431
 msgid "Published & shared articles / Generated feeds"
 msgstr "Publicētie un kopīgotie raksti / sagatavotās barotnes"
 
-#: classes/pref/feeds.php:1432
+#: classes/pref/feeds.php:1433
 msgid "Published articles and generated feeds"
 msgstr "Publicētie raksti un sagatavotās barotnes"
 
-#: classes/pref/feeds.php:1434
+#: classes/pref/feeds.php:1435
 msgid "Published articles are exported as a public RSS feed and can be subscribed by anyone who knows the URL specified below."
 msgstr "Publicētie raksti tiek eksportēti kā publiskas RSS barotnes un tās var izmantot katrs, kas zina zemāk minēto saiti."
 
-#: classes/pref/feeds.php:1440
+#: classes/pref/feeds.php:1441
 msgid "Display URL"
 msgstr "Parādīt URL"
 
-#: classes/pref/feeds.php:1443
+#: classes/pref/feeds.php:1444
 msgid "Clear all generated URLs"
 msgstr "Attīrīt visus ģenerētos URL"
 
-#: classes/pref/feeds.php:1445
+#: classes/pref/feeds.php:1446
 msgid "Articles shared by URL"
 msgstr "Raksti, kas kopīgoti ar URL"
 
-#: classes/pref/feeds.php:1447
+#: classes/pref/feeds.php:1448
 msgid "You can disable all articles shared by unique URLs here."
 msgstr "Jūs varat atcelt ar šo URL kopīgotos rakstus šeit."
 
-#: classes/pref/feeds.php:1450
+#: classes/pref/feeds.php:1451
 msgid "Unshare all articles"
 msgstr "Atcelt visu rakstu kopīgošanu"
 
-#: classes/pref/feeds.php:1528
+#: classes/pref/feeds.php:1529
 msgid "These feeds have not been updated with new content for 3 months (oldest first):"
 msgstr "Šajās barotnēs nav bijis jauns saturs vairāk kā 3 mēnešus (sākot ar vecākajām):"
 
-#: classes/pref/feeds.php:1565
-#: classes/pref/feeds.php:1635
+#: classes/pref/feeds.php:1566
+#: classes/pref/feeds.php:1636
 msgid "Click to edit feed"
 msgstr "Klikšķiniet, lai rediģētu"
 
-#: classes/pref/feeds.php:1583
-#: classes/pref/feeds.php:1655
+#: classes/pref/feeds.php:1584
+#: classes/pref/feeds.php:1656
 msgid "Unsubscribe from selected feeds"
 msgstr "Atcelt izvēlēto barotņu pasūtīšanu"
 
-#: classes/pref/feeds.php:1594
+#: classes/pref/feeds.php:1595
 msgid "These feeds have not been updated because of errors:"
 msgstr "Šīs barotnes netika atjaunotas sekojošu kļūdu dēļ:"
 
+#: classes/pref/feeds.php:1758
+msgid "Add one valid RSS feed per line (no feed detection is done)"
+msgstr "Pievienojiet vienu derīgu RSS barotni vienā rindā (barotnes netiek pārbaudītas)"
+
+#: classes/pref/feeds.php:1767
+msgid "Feeds to subscribe, One per line"
+msgstr "Pasūtāmās barotnes, pa vienai katrā rindā"
+
+#: classes/pref/feeds.php:1789
+msgid "Feeds require authentication."
+msgstr "Barotnēm nepieciešama autentifikācija"
+
 #: plugins/digest/digest_body.php:59
 #, fuzzy
 msgid "Your browser doesn't support Javascript, which is required for this application to function properly. Please check your browser settings."
@@ -2868,24 +2823,24 @@ msgstr "Iestatīt vērtību"
 msgid "No file uploaded."
 msgstr ""
 
-#: plugins/googlereaderimport/init.php:149
+#: plugins/googlereaderimport/init.php:153
 #, php-format
 msgid "All done. %d out of %d articles imported."
 msgstr ""
 
-#: plugins/googlereaderimport/init.php:153
+#: plugins/googlereaderimport/init.php:157
 msgid "The document has incorrect format."
 msgstr ""
 
-#: plugins/googlereaderimport/init.php:322
+#: plugins/googlereaderimport/init.php:326
 msgid "Import starred or shared items from Google Reader"
 msgstr ""
 
-#: plugins/googlereaderimport/init.php:326
+#: plugins/googlereaderimport/init.php:330
 msgid "Paste your starred.json or shared.json into the form below."
 msgstr ""
 
-#: plugins/googlereaderimport/init.php:340
+#: plugins/googlereaderimport/init.php:344
 msgid "Import my Starred items"
 msgstr ""
 
@@ -2893,6 +2848,38 @@ msgstr ""
 msgid "Linked"
 msgstr "Saistīts"
 
+#: plugins/instances/init.php:207
+#: plugins/instances/init.php:399
+msgid "Instance"
+msgstr "Instance"
+
+#: plugins/instances/init.php:218
+#: plugins/instances/init.php:315
+#: plugins/instances/init.php:408
+msgid "Instance URL"
+msgstr "Instances URL"
+
+#: plugins/instances/init.php:229
+#: plugins/instances/init.php:418
+msgid "Access key:"
+msgstr "Pieejas atslēga:"
+
+#: plugins/instances/init.php:232
+#: plugins/instances/init.php:316
+#: plugins/instances/init.php:421
+msgid "Access key"
+msgstr "Pieejas aslēga"
+
+#: plugins/instances/init.php:236
+#: plugins/instances/init.php:425
+msgid "Use one access key for both linked instances."
+msgstr "Izmantot to pašu pieejas aslēgu abām saistītajām instancēm."
+
+#: plugins/instances/init.php:244
+#: plugins/instances/init.php:433
+msgid "Generate new key"
+msgstr "Ģenerēt jaunu atslēgu"
+
 #: plugins/instances/init.php:295
 msgid "Link instance"
 msgstr "Saites instance"
@@ -2913,6 +2900,10 @@ msgstr "Statuss"
 msgid "Stored feeds"
 msgstr "Saglabātās barotnes"
 
+#: plugins/instances/init.php:437
+msgid "Create link"
+msgstr "Izveidot saiti"
+
 #: plugins/share/init.php:27
 msgid "Share by URL"
 msgstr "Kopīgot ar URL"
@@ -2972,173 +2963,177 @@ msgstr "Vai tiešām vēlaties ziņot par šo izņēmumu tt-rss.org? Ziņojumā
 msgid "close"
 msgstr ""
 
-#: js/functions.js:627
+#: js/functions.js:621
 msgid "Date syntax appears to be correct:"
 msgstr "Datuma sintakse ir pareiza:"
 
-#: js/functions.js:630
+#: js/functions.js:624
 msgid "Date syntax is incorrect."
 msgstr "Datuma sintakse ir nepareiza."
 
-#: js/functions.js:724
+#: js/functions.js:636
+msgid "Error explained"
+msgstr ""
+
+#: js/functions.js:718
 msgid "Upload complete."
 msgstr ""
 
-#: js/functions.js:748
+#: js/functions.js:742
 msgid "Remove stored feed icon?"
 msgstr "Dzēst saglabāto barotnes ikonu?"
 
-#: js/functions.js:753
+#: js/functions.js:747
 #, fuzzy
 msgid "Removing feed icon..."
 msgstr "Dzēst saglabāto barotnes ikonu?"
 
-#: js/functions.js:758
+#: js/functions.js:752
 #, fuzzy
 msgid "Feed icon removed."
 msgstr "Barotne netika atrasta."
 
-#: js/functions.js:780
+#: js/functions.js:774
 msgid "Please select an image file to upload."
 msgstr "Lūdzu norādiet augšuplādējamo attēla failu."
 
-#: js/functions.js:782
+#: js/functions.js:776
 msgid "Upload new icon for this feed?"
 msgstr "Augšuplādēt šai barotnei jaunu ikonu?"
 
-#: js/functions.js:783
+#: js/functions.js:777
 #, fuzzy
 msgid "Uploading, please wait..."
 msgstr "Ielādē, lūdzu gaidiet..."
 
-#: js/functions.js:799
+#: js/functions.js:793
 msgid "Please enter label caption:"
 msgstr "Lūdzu ievadiet etiķetes uzrakstu:"
 
-#: js/functions.js:804
+#: js/functions.js:798
 msgid "Can't create label: missing caption."
 msgstr "Neizdevās izveidot etiķeti: nav uzraksta."
 
-#: js/functions.js:847
+#: js/functions.js:841
 msgid "Subscribe to Feed"
 msgstr "Pasūtīt barotni"
 
-#: js/functions.js:874
+#: js/functions.js:868
 msgid "Subscribed to %s"
 msgstr "Pasūtīta barotne %s"
 
-#: js/functions.js:879
+#: js/functions.js:873
 msgid "Specified URL seems to be invalid."
 msgstr "Norādītais URL ir nepareizs."
 
-#: js/functions.js:882
+#: js/functions.js:876
 msgid "Specified URL doesn't seem to contain any feeds."
 msgstr "Norādītajā URL nav nevienas barotnes."
 
-#: js/functions.js:935
+#: js/functions.js:929
 msgid "Couldn't download the specified URL: %s"
 msgstr "Neizdevās lejuplādēt norādīto URL: %s"
 
-#: js/functions.js:939
+#: js/functions.js:933
 msgid "You are already subscribed to this feed."
 msgstr "Jūs jau esat pasūtījis šo barotni."
 
-#: js/functions.js:1069
+#: js/functions.js:1063
 msgid "Edit rule"
 msgstr "Rediģēt likumu"
 
-#: js/functions.js:1095
+#: js/functions.js:1089
 msgid "Edit action"
 msgstr "Rediģēt darbību"
 
-#: js/functions.js:1132
+#: js/functions.js:1126
 msgid "Create Filter"
 msgstr "Izveidot filtru"
 
-#: js/functions.js:1247
+#: js/functions.js:1241
 msgid "Reset subscription? Tiny Tiny RSS will try to subscribe to the notification hub again on next feed update."
 msgstr "Atstatīt pasūtīšanu? Tiny Tiny RSS mēģinās savākt informāciju no šīs barotnes kārtējā atjaunojuma laikā."
 
-#: js/functions.js:1258
+#: js/functions.js:1252
 #, fuzzy
 msgid "Subscription reset."
 msgstr "Abonēt barotni..."
 
-#: js/functions.js:1268
+#: js/functions.js:1262
 #: js/tt-rss.js:619
 msgid "Unsubscribe from %s?"
 msgstr "Atteikt pasūtījumu %s?"
 
-#: js/functions.js:1271
+#: js/functions.js:1265
 msgid "Removing feed..."
 msgstr ""
 
-#: js/functions.js:1379
+#: js/functions.js:1373
 msgid "Please enter category title:"
 msgstr "Lūdzu ievadiet kategorijas virsrakstu:"
 
-#: js/functions.js:1410
+#: js/functions.js:1404
 msgid "Generate new syndication address for this feed?"
 msgstr "Izveidot jaunu šīs barotnes sindikācijas adresi?"
 
-#: js/functions.js:1414
-#: js/prefs.js:1234
+#: js/functions.js:1408
+#: js/prefs.js:1222
 msgid "Trying to change address..."
 msgstr ""
 
-#: js/functions.js:1601
+#: js/functions.js:1595
 #: js/tt-rss.js:396
 #: js/tt-rss.js:600
 msgid "You can't edit this kind of feed."
 msgstr "Jūs nevarat rediģēt šāda veida barotni."
 
-#: js/functions.js:1616
+#: js/functions.js:1610
 msgid "Edit Feed"
 msgstr "Rediģēt barotni"
 
-#: js/functions.js:1622
+#: js/functions.js:1616
 #: js/prefs.js:194
 #: js/prefs.js:749
 #, fuzzy
 msgid "Saving data..."
 msgstr "Saglabāt datus"
 
-#: js/functions.js:1654
+#: js/functions.js:1648
 msgid "More Feeds"
 msgstr "Vairāk barotnes"
 
-#: js/functions.js:1715
-#: js/functions.js:1825
+#: js/functions.js:1709
+#: js/functions.js:1819
 #: 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
+#: js/prefs.js:1198
+#: js/prefs.js:1343
 msgid "No feeds are selected."
 msgstr "Nav izvēlēta barotne"
 
-#: js/functions.js:1757
+#: js/functions.js:1751
 msgid "Remove selected feeds from the archive? Feeds with stored articles will not be removed."
 msgstr "Dzēst izvēlētās barotnes no arhīva? Barotnes, kurās ir raksti, netiks dzēstas."
 
-#: js/functions.js:1796
+#: js/functions.js:1790
 msgid "Feeds with update errors"
 msgstr "Barotnes ar atjaunošanas kļūdām"
 
-#: js/functions.js:1807
-#: js/prefs.js:1192
+#: js/functions.js:1801
+#: js/prefs.js:1180
 msgid "Remove selected feeds?"
 msgstr "Dzēst izvēlētās barotnes?"
 
-#: js/functions.js:1810
-#: js/prefs.js:1195
+#: js/functions.js:1804
+#: js/prefs.js:1183
 #, fuzzy
 msgid "Removing selected feeds..."
 msgstr "Dzēst izvēlētās barotnes?"
 
-#: js/functions.js:1908
+#: js/functions.js:1902
 msgid "Help"
 msgstr "Palīdzība"
 
@@ -3150,7 +3145,7 @@ msgstr "Rediģēt kategoriju"
 msgid "Remove category"
 msgstr "Dzēst kategoriju"
 
-#: js/PrefFilterTree.js:32
+#: js/PrefFilterTree.js:48
 msgid "Inverse"
 msgstr "Apgriezt"
 
@@ -3190,7 +3185,7 @@ msgid "Removing selected labels..."
 msgstr "Dzēst izvēlētās etiķetes?"
 
 #: js/prefs.js:295
-#: js/prefs.js:1396
+#: js/prefs.js:1384
 msgid "No labels are selected."
 msgstr "Nav izvēlēta etiķete."
 
@@ -3301,154 +3296,154 @@ msgstr "Rediģēt vairākus filtrus"
 msgid "Save changes to selected feeds?"
 msgstr "Saglabāt izvēlēto barotņu izmaiņas?"
 
-#: js/prefs.js:797
+#: js/prefs.js:785
 msgid "OPML Import"
 msgstr "OPML imports"
 
-#: js/prefs.js:824
+#: js/prefs.js:812
 msgid "Please choose an OPML file first."
 msgstr "Lūdzu vispirms norādiet OPML failu."
 
-#: js/prefs.js:827
+#: js/prefs.js:815
 #: plugins/import_export/import_export.js:115
 #: plugins/googlereaderimport/init.js:45
 #, fuzzy
 msgid "Importing, please wait..."
 msgstr "Ielādē, lūdzu gaidiet..."
 
-#: js/prefs.js:980
+#: js/prefs.js:968
 msgid "Reset to defaults?"
 msgstr "Atsatīt uz noklusēto?"
 
-#: js/prefs.js:1099
+#: js/prefs.js:1087
 msgid "Remove category %s? Any nested feeds would be placed into Uncategorized."
 msgstr "Dzēst kategoriju %s? Visas iekļautās barotnes tiks pārvietotas uz Nekategorizēts kategoriju."
 
-#: js/prefs.js:1105
+#: js/prefs.js:1093
 #, fuzzy
 msgid "Removing category..."
 msgstr "Dzēst kategoriju"
 
-#: js/prefs.js:1126
+#: js/prefs.js:1114
 msgid "Remove selected categories?"
 msgstr "Dzēst izvēlētās kategorijas?"
 
-#: js/prefs.js:1129
+#: js/prefs.js:1117
 #, fuzzy
 msgid "Removing selected categories..."
 msgstr "Dzēst izvēlētās kategorijas?"
 
-#: js/prefs.js:1142
+#: js/prefs.js:1130
 msgid "No categories are selected."
 msgstr "Nav izvēlēta kategorija."
 
-#: js/prefs.js:1150
+#: js/prefs.js:1138
 msgid "Category title:"
 msgstr "Kategorijas virsraksts:"
 
-#: js/prefs.js:1154
+#: js/prefs.js:1142
 #, fuzzy
 msgid "Creating category..."
 msgstr "Izveidot filtru..."
 
-#: js/prefs.js:1181
+#: js/prefs.js:1169
 msgid "Feeds without recent updates"
 msgstr "Barotnes bez neseniem jaunumiem"
 
-#: js/prefs.js:1230
+#: js/prefs.js:1218
 msgid "Replace current OPML publishing address with a new one?"
 msgstr "Aizvietot esošo OPML publicēto adresi ar jauno vērtību?"
 
-#: js/prefs.js:1319
+#: js/prefs.js:1307
 #, fuzzy
 msgid "Clearing feed..."
 msgstr "Dzēst barotņu datus"
 
-#: js/prefs.js:1339
+#: js/prefs.js:1327
 msgid "Rescore articles in selected feeds?"
 msgstr "Atjaunot rakstus izvēlētajās barotnēs?"
 
-#: js/prefs.js:1342
+#: js/prefs.js:1330
 #, fuzzy
 msgid "Rescoring selected feeds..."
 msgstr "Atjaunot rakstus izvēlētajās barotnēs?"
 
-#: js/prefs.js:1362
+#: js/prefs.js:1350
 msgid "Rescore all articles? This operation may take a lot of time."
 msgstr "Pārvērtēt visus rakstus? Tas var prasīt ilgu laiku."
 
-#: js/prefs.js:1365
+#: js/prefs.js:1353
 #, fuzzy
 msgid "Rescoring feeds..."
 msgstr "Pārvērtēt barotni"
 
-#: js/prefs.js:1382
+#: js/prefs.js:1370
 msgid "Reset selected labels to default colors?"
 msgstr "Atstatīt iezīmētās etiķetes uz noklusētajām krāsām?"
 
-#: js/prefs.js:1419
+#: js/prefs.js:1407
 msgid "Settings Profiles"
 msgstr "Profilu iestatījumi"
 
-#: js/prefs.js:1428
+#: js/prefs.js:1416
 msgid "Remove selected profiles? Active and default profiles will not be removed."
 msgstr "Dzēst izvēlētos profilus? Aktīvie un noklusētie profili netiks dzēsti."
 
-#: js/prefs.js:1431
+#: js/prefs.js:1419
 #, fuzzy
 msgid "Removing selected profiles..."
 msgstr "Dzēst iezīmētos profilus"
 
-#: js/prefs.js:1446
+#: js/prefs.js:1434
 msgid "No profiles are selected."
 msgstr "Nav izvēlēts profils."
 
-#: js/prefs.js:1454
-#: js/prefs.js:1507
+#: js/prefs.js:1442
+#: js/prefs.js:1495
 msgid "Activate selected profile?"
 msgstr "Aktivizēt izvēlēto profilu?"
 
-#: js/prefs.js:1470
-#: js/prefs.js:1523
+#: js/prefs.js:1458
+#: js/prefs.js:1511
 msgid "Please choose a profile to activate."
 msgstr "Lūdzu norādiet aktivizējamo profilu."
 
-#: js/prefs.js:1475
+#: js/prefs.js:1463
 #, fuzzy
 msgid "Creating profile..."
 msgstr "Izveidot profilu"
 
-#: js/prefs.js:1531
+#: js/prefs.js:1519
 msgid "This will invalidate all previously generated feed URLs. Continue?"
 msgstr "Tas padarīs nederīgus visu iepriekš izveidoto barotņu URLus. Turpināt?"
 
-#: js/prefs.js:1534
-#: js/prefs.js:1553
+#: js/prefs.js:1522
+#: js/prefs.js:1541
 msgid "Clearing URLs..."
 msgstr ""
 
-#: js/prefs.js:1541
+#: js/prefs.js:1529
 #, fuzzy
 msgid "Generated URLs cleared."
 msgstr "Izveidot jaunu URL"
 
-#: js/prefs.js:1550
+#: js/prefs.js:1538
 msgid "This will invalidate all previously shared article URLs. Continue?"
 msgstr "Tas padarīs nederīgus visu iepriekš izveidoto kopīgoto rakstu URLus. Turpināt?"
 
-#: js/prefs.js:1560
+#: js/prefs.js:1548
 msgid "Shared URLs cleared."
 msgstr ""
 
-#: js/prefs.js:1648
+#: js/prefs.js:1654
 msgid "Label Editor"
 msgstr "Etiķešu redaktors"
 
-#: js/prefs.js:1770
+#: js/prefs.js:1776
 msgid "Subscribing to feeds..."
 msgstr "Barotņu pasūtīšana"
 
-#: js/prefs.js:1807
+#: js/prefs.js:1813
 msgid "Clear stored data for this plugin?"
 msgstr "Attīrīt šī spraudņa saglabātos datus?"
 
@@ -3470,29 +3465,33 @@ msgstr "Lūdzu, vispirmi iespējojiet e-pasta spraudni."
 msgid "Please enable embed_original plugin first."
 msgstr "Lūdzu, vispirmi iespējojiet e-pasta spraudni."
 
+#: js/tt-rss.js:587
+msgid "Select item(s) by tags"
+msgstr "Atlasīt vienumus pēc iezīmēm"
+
 #: js/tt-rss.js:608
 msgid "You can't unsubscribe from the category."
 msgstr "Jūs nevarat atteikties no kategorijas."
 
 #: js/tt-rss.js:613
-#: js/tt-rss.js:769
+#: js/tt-rss.js:765
 msgid "Please select some feed first."
 msgstr "Lūdzu, vispirms norādiet barotni."
 
-#: js/tt-rss.js:764
+#: js/tt-rss.js:760
 msgid "You can't rescore this kind of feed."
 msgstr "Jūs nevarat pārvērtēt šī veida barotni."
 
-#: js/tt-rss.js:774
+#: js/tt-rss.js:770
 msgid "Rescore articles in %s?"
 msgstr "Pārvērtēt rakstus %s?"
 
-#: js/tt-rss.js:777
+#: js/tt-rss.js:773
 #, fuzzy
 msgid "Rescoring articles..."
 msgstr "Pārvērtēt rakstus"
 
-#: js/tt-rss.js:911
+#: js/tt-rss.js:907
 msgid "New version available!"
 msgstr "Ir pieejama jauna versija!"
 
@@ -3523,117 +3522,113 @@ msgstr "Atpublicēt rakstu"
 #: js/viewfeed.js:734
 #: js/viewfeed.js:797
 #: js/viewfeed.js:831
-#: js/viewfeed.js:968
-#: js/viewfeed.js:1011
-#: js/viewfeed.js:1064
-#: js/viewfeed.js:2108
+#: js/viewfeed.js:951
+#: js/viewfeed.js:994
+#: js/viewfeed.js:1047
+#: js/viewfeed.js:2096
 #: plugins/mailto/init.js:7
 #: plugins/mail/mail.js:7
 msgid "No articles are selected."
 msgstr "Nav norādīts raksts."
 
-#: js/viewfeed.js:948
-msgid "Mark all visible articles in %s as read?"
-msgstr "Vai atzīmēt redzamos rakstus %s kā lasītus?"
-
-#: js/viewfeed.js:976
+#: js/viewfeed.js:959
 #, fuzzy
 msgid "Delete %d selected article in %s?"
 msgid_plural "Delete %d selected articles in %s?"
 msgstr[0] "Dzēst %d izvēlētos rakstus %s?"
 msgstr[1] "Dzēst %d izvēlētos rakstus %s?"
 
-#: js/viewfeed.js:978
+#: js/viewfeed.js:961
 #, fuzzy
 msgid "Delete %d selected article?"
 msgid_plural "Delete %d selected articles?"
 msgstr[0] "Dzēst %d izvēlētos rakstus?"
 msgstr[1] "Dzēst %d izvēlētos rakstus?"
 
-#: js/viewfeed.js:1020
+#: js/viewfeed.js:1003
 #, fuzzy
 msgid "Archive %d selected article in %s?"
 msgid_plural "Archive %d selected articles in %s?"
 msgstr[0] "Arhivēt %d izvēlētos rakstus %s?"
 msgstr[1] "Arhivēt %d izvēlētos rakstus %s?"
 
-#: js/viewfeed.js:1023
+#: js/viewfeed.js:1006
 #, fuzzy
 msgid "Move %d archived article back?"
 msgid_plural "Move %d archived articles back?"
 msgstr[0] "Pārvietot %d arhivētos rakstus atpakaļ?"
 msgstr[1] "Pārvietot %d arhivētos rakstus atpakaļ?"
 
-#: js/viewfeed.js:1025
+#: js/viewfeed.js:1008
 msgid "Please note that unstarred articles might get purged on next feed update."
 msgstr ""
 
-#: js/viewfeed.js:1070
+#: js/viewfeed.js:1053
 #, fuzzy
 msgid "Mark %d selected article in %s as read?"
 msgid_plural "Mark %d selected articles in %s as read?"
 msgstr[0] "Atzīmēt %d izvēlētos rakstus %s kā lasītus?"
 msgstr[1] "Atzīmēt %d izvēlētos rakstus %s kā lasītus?"
 
-#: js/viewfeed.js:1094
+#: js/viewfeed.js:1077
 msgid "Edit article Tags"
 msgstr "Rediģēt rakstu iezīmes"
 
-#: js/viewfeed.js:1100
+#: js/viewfeed.js:1083
 #, fuzzy
 msgid "Saving article tags..."
 msgstr "Rediģēt rakstu iezīmes"
 
-#: js/viewfeed.js:1337
+#: js/viewfeed.js:1323
 msgid "No article is selected."
 msgstr "Nav izvēlēts raksts."
 
-#: js/viewfeed.js:1372
+#: js/viewfeed.js:1358
 msgid "No articles found to mark"
 msgstr "Nav atrasti iezīmējamie raksti"
 
-#: js/viewfeed.js:1374
+#: js/viewfeed.js:1360
 #, fuzzy
 msgid "Mark %d article as read?"
 msgid_plural "Mark %d articles as read?"
 msgstr[0] "Iezīmēt %d rakstus kā lasītus?"
 msgstr[1] "Iezīmēt %d rakstus kā lasītus?"
 
-#: js/viewfeed.js:1884
+#: js/viewfeed.js:1872
 msgid "Open original article"
 msgstr "Atvērt sākotnējo rakstu"
 
-#: js/viewfeed.js:1890
+#: js/viewfeed.js:1878
 #, fuzzy
 msgid "Display article URL"
 msgstr "Parādīt URL"
 
-#: js/viewfeed.js:1909
+#: js/viewfeed.js:1897
 #, fuzzy
 msgid "Toggle marked"
 msgstr "Pārslēgt zvaigžņošanu"
 
-#: js/viewfeed.js:1995
+#: js/viewfeed.js:1983
 msgid "Remove label"
 msgstr "Dzēst etiķeti"
 
-#: js/viewfeed.js:2019
+#: js/viewfeed.js:2007
 msgid "Playing..."
 msgstr "Atskaņo..."
 
-#: js/viewfeed.js:2020
+#: js/viewfeed.js:2008
 msgid "Click to pause"
 msgstr "Klikšķiniet, lai apturētu"
 
-#: js/viewfeed.js:2077
+#: js/viewfeed.js:2065
 msgid "Please enter new score for selected articles:"
 msgstr "Ievadiet jauno vērtējumu izvēlētajiem rakstiem:"
 
-#: js/viewfeed.js:2119
+#: js/viewfeed.js:2107
 msgid "Please enter new score for this article:"
 msgstr "Ievadiet jaunu vērtējumu šim rakstam:"
 
-#: js/viewfeed.js:2152
+#: js/viewfeed.js:2140
 #, fuzzy
 msgid "Article URL:"
 msgstr "Visus rakstus"
@@ -3755,6 +3750,21 @@ msgstr "Kopīgot ar URL"
 msgid "Live updating is considered experimental. Backup your tt-rss directory before continuing. Please type 'yes' to continue."
 msgstr "Lūdzu neaizveriet logu līdz ir pabeigta atjaunošana. Pirms turpināt, izveidojiet jūsu tt-rss mapes rezerves kopiju."
 
+#, fuzzy
+#~ msgid "(%d feed)"
+#~ msgid_plural "(%d feeds)"
+#~ msgstr[0] "(%d barotnes)"
+#~ msgstr[1] "(%d barotnes)"
+
+#~ msgid "Notice"
+#~ msgstr "Piezīme"
+
+#~ msgid "Tag Cloud"
+#~ msgstr "Iezīmju mākonis"
+
+#~ msgid "Mark all visible articles in %s as read?"
+#~ msgstr "Vai atzīmēt redzamos rakstus %s kā lasītus?"
+
 #~ msgid "Date"
 #~ msgstr "Datums"
 
index 291d31d5420ea3c4244a780820244ac0c9cf4555..6b6066b742a82aa1cc29fdbe074a525e5e53f487 100644 (file)
Binary files a/locale/nb_NO/LC_MESSAGES/messages.mo and b/locale/nb_NO/LC_MESSAGES/messages.mo differ
index d7442a3df1b2541528332cfbe59763725f60bba6..b90e55ddb121a324a9155d86e4290dfd00eb6c30 100644 (file)
@@ -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-31 12:47+0400\n"
+"POT-Creation-Date: 2013-04-01 16:28+0400\n"
 "PO-Revision-Date: 2009-05-02 00:10+0100\n"
 "Last-Translator: Christian Lomsdalen <christian@vindstille.net>\n"
 "Language-Team: Norwegian Bokmål <christian@vindstille.net>\n"
@@ -136,9 +136,9 @@ msgstr "Tiny Tiny RSS-databasen er oppdatert"
 #: register.php:336
 #: register.php:346
 #: register.php:358
-#: classes/handler/public.php:625
-#: classes/handler/public.php:713
-#: classes/handler/public.php:795
+#: classes/handler/public.php:626
+#: classes/handler/public.php:714
+#: classes/handler/public.php:796
 msgid "Return to Tiny Tiny RSS"
 msgstr "Returner til Tiny Tiny RSS"
 
@@ -255,36 +255,37 @@ msgstr "SQL escaping testen feilen, sjekk database og PHP konfigurasjonene dine.
 
 #: index.php:135
 #: index.php:154
-#: index.php:264
-#: prefs.php:102
+#: index.php:263
+#: prefs.php:103
 #: classes/backend.php:5
 #: classes/pref/labels.php:296
-#: classes/pref/filters.php:628
-#: classes/pref/feeds.php:1330
+#: classes/pref/filters.php:680
+#: classes/pref/feeds.php:1331
 #: plugins/digest/digest_body.php:63
 #: js/feedlist.js:128
 #: js/feedlist.js:448
 #: js/functions.js:420
-#: js/functions.js:814
-#: js/functions.js:1250
-#: js/functions.js:1385
-#: js/functions.js:1697
+#: js/functions.js:808
+#: js/functions.js:1244
+#: js/functions.js:1379
+#: js/functions.js:1691
 #: js/prefs.js:86
 #: js/prefs.js:576
 #: js/prefs.js:666
-#: js/prefs.js:870
-#: js/prefs.js:1457
-#: js/prefs.js:1510
-#: js/prefs.js:1568
-#: js/prefs.js:1584
-#: js/prefs.js:1600
-#: js/prefs.js:1619
-#: js/prefs.js:1792
-#: js/prefs.js:1808
+#: js/prefs.js:858
+#: js/prefs.js:1445
+#: js/prefs.js:1498
+#: js/prefs.js:1557
+#: js/prefs.js:1574
+#: js/prefs.js:1590
+#: js/prefs.js:1606
+#: js/prefs.js:1625
+#: js/prefs.js:1798
+#: js/prefs.js:1814
 #: js/tt-rss.js:475
 #: js/tt-rss.js:492
 #: js/viewfeed.js:774
-#: js/viewfeed.js:1259
+#: js/viewfeed.js:1245
 #: plugins/import_export/import_export.js:17
 #: plugins/updater/updater.js:17
 msgid "Loading, please wait..."
@@ -308,13 +309,13 @@ msgid "All Articles"
 msgstr "Alle artikler"
 
 #: index.php:176
-#: include/functions.php:1974
+#: include/functions.php:1924
 #: classes/feeds.php:106
 msgid "Starred"
 msgstr "Favoritter"
 
 #: index.php:177
-#: include/functions.php:1975
+#: include/functions.php:1925
 #: classes/feeds.php:107
 msgid "Published"
 msgstr "Publisert"
@@ -355,22 +356,15 @@ msgstr ""
 msgid "Oldest first"
 msgstr ""
 
-#: index.php:195
-#: classes/pref/feeds.php:567
-#: classes/pref/feeds.php:792
-msgid "Update"
-msgstr "Oppdater"
-
-#: index.php:197
+#: index.php:192
 msgid "Mark feed as read"
 msgstr "Marker nyhetsstrøm som lest"
 
-#: index.php:200
-#: index.php:235
-#: include/functions.php:1964
+#: index.php:195
+#: index.php:234
+#: include/functions.php:1914
 #: include/localized_schema.php:10
 #: classes/feeds.php:111
-#: classes/feeds.php:136
 #: classes/feeds.php:437
 #: js/FeedTree.js:128
 #: js/FeedTree.js:156
@@ -378,114 +372,119 @@ msgstr "Marker nyhetsstrøm som lest"
 msgid "Mark as read"
 msgstr "Marker som lest"
 
-#: index.php:201
-#: include/functions.php:1860
-#: include/functions.php:1972
+#: index.php:196
+#: include/functions.php:1810
+#: include/functions.php:1922
 msgid "All articles"
 msgstr "Alle artikler"
 
-#: index.php:202
+#: index.php:197
 msgid "Older than one day"
 msgstr ""
 
-#: index.php:203
+#: index.php:198
 msgid "Older than one week"
 msgstr ""
 
-#: index.php:204
+#: index.php:199
 msgid "Older than two weeks"
 msgstr ""
 
-#: index.php:212
+#: index.php:204
+#, fuzzy
+msgid "Refresh"
+msgstr "Oppdater"
+
+#: index.php:211
 msgid "Communication problem with server."
 msgstr ""
 
-#: index.php:220
+#: index.php:219
 msgid "New version of Tiny Tiny RSS is available!"
 msgstr "Ny versjon av Tiny Tiny Rss er tilgjengelig!"
 
-#: index.php:225
+#: index.php:224
 msgid "Actions..."
 msgstr "Handlinger..."
 
-#: index.php:227
+#: index.php:226
 #, fuzzy
 msgid "Preferences..."
 msgstr "Innstillinger"
 
-#: index.php:228
+#: index.php:227
 msgid "Search..."
 msgstr "Søk..."
 
-#: index.php:229
+#: index.php:228
 msgid "Feed actions:"
 msgstr "Nyhetsstrømshandlinger:"
 
-#: index.php:230
-#: classes/handler/public.php:555
+#: index.php:229
+#: classes/handler/public.php:556
 msgid "Subscribe to feed..."
 msgstr "Abonner på nyhetsstrøm..."
 
-#: index.php:231
+#: index.php:230
 msgid "Edit this feed..."
 msgstr "Rediger nyhetsstrømmen..."
 
-#: index.php:232
+#: index.php:231
 msgid "Rescore feed"
 msgstr "Sett poeng på nytt for nyhetskanalene"
 
-#: index.php:233
-#: classes/pref/feeds.php:716
-#: classes/pref/feeds.php:1303
+#: index.php:232
+#: classes/pref/feeds.php:717
+#: classes/pref/feeds.php:1304
 #: js/PrefFeedTree.js:73
 msgid "Unsubscribe"
 msgstr "Avabonner"
 
-#: index.php:234
+#: index.php:233
 msgid "All feeds:"
 msgstr "Alle nyhetsstrømmer:"
 
-#: index.php:236
+#: index.php:235
 msgid "(Un)hide read feeds"
 msgstr "Skjul/vis leste nyhetsstrømmer"
 
-#: index.php:237
+#: index.php:236
 msgid "Other actions:"
 msgstr "Andre handlinger:"
 
-#: index.php:239
+#: index.php:238
 msgid "Switch to digest..."
 msgstr ""
 
-#: index.php:241
+#: index.php:240
 #, fuzzy
 msgid "Show tag cloud..."
 msgstr "Tag-sky"
 
-#: index.php:242
-#: include/functions.php:1950
+#: index.php:241
+#: include/functions.php:1900
 #, fuzzy
 msgid "Toggle widescreen mode"
 msgstr "Tillatt endringer i kategorirekkefølgen?"
 
-#: index.php:243
+#: index.php:242
 msgid "Select by tags..."
 msgstr ""
 
-#: index.php:244
+#: index.php:243
 msgid "Create label..."
 msgstr "Lag merkelapp..."
 
-#: index.php:245
+#: index.php:244
 msgid "Create filter..."
 msgstr "Lag filter..."
 
-#: index.php:246
+#: index.php:245
 #, fuzzy
 msgid "Keyboard shortcuts help"
 msgstr "Tastatursnarveier"
 
-#: index.php:248
+#: index.php:247
 #: plugins/digest/digest_body.php:77
 #: plugins/mobile/mobile-functions.php:62
 #: plugins/mobile/mobile-functions.php:237
@@ -493,41 +492,41 @@ msgid "Logout"
 msgstr "Logg ut"
 
 #: prefs.php:36
-#: prefs.php:122
-#: include/functions.php:1977
+#: prefs.php:121
+#: include/functions.php:1927
 #: classes/pref/prefs.php:377
 msgid "Preferences"
 msgstr "Innstillinger"
 
-#: prefs.php:113
+#: prefs.php:112
 msgid "Keyboard shortcuts"
 msgstr "Tastatursnarveier"
 
-#: prefs.php:114
+#: prefs.php:113
 msgid "Exit preferences"
 msgstr "Forlat innstillinger"
 
-#: prefs.php:125
-#: classes/pref/feeds.php:106
-#: classes/pref/feeds.php:1208
-#: classes/pref/feeds.php:1271
+#: prefs.php:124
+#: classes/pref/feeds.php:107
+#: classes/pref/feeds.php:1209
+#: classes/pref/feeds.php:1272
 msgid "Feeds"
 msgstr "Nyhetsstrømmer"
 
-#: prefs.php:128
-#: classes/pref/filters.php:120
+#: prefs.php:127
+#: classes/pref/filters.php:156
 msgid "Filters"
 msgstr "Filtre"
 
-#: prefs.php:131
-#: include/functions.php:1167
-#: include/functions.php:1803
+#: prefs.php:130
+#: include/functions.php:1117
+#: include/functions.php:1753
 #: classes/pref/labels.php:90
 #: plugins/mobile/mobile-functions.php:198
 msgid "Labels"
 msgstr "Merkelapper"
 
-#: prefs.php:135
+#: prefs.php:134
 msgid "Users"
 msgstr "Brukere"
 
@@ -553,12 +552,12 @@ msgid "Check availability"
 msgstr "Sjekk tilgjengeligheten"
 
 #: register.php:228
-#: classes/handler/public.php:753
+#: classes/handler/public.php:754
 msgid "Email:"
 msgstr "E-post:"
 
 #: register.php:231
-#: classes/handler/public.php:758
+#: classes/handler/public.php:759
 msgid "How much is two plus two:"
 msgstr "Hvor mye er to pluss to:"
 
@@ -592,12 +591,12 @@ msgid "Tiny Tiny RSS data update script."
 msgstr "Tiny Tiny RSS-databasen er oppdatert"
 
 #: include/digest.php:109
-#: include/functions.php:1176
-#: include/functions.php:1704
-#: include/functions.php:1789
-#: include/functions.php:1811
+#: include/functions.php:1126
+#: include/functions.php:1654
+#: include/functions.php:1739
+#: include/functions.php:1761
 #: classes/opml.php:416
-#: classes/pref/feeds.php:221
+#: classes/pref/feeds.php:222
 msgid "Uncategorized"
 msgstr "Ukategorisert"
 
@@ -612,366 +611,364 @@ msgstr[1] "Favorittartikler"
 msgid "No feeds found."
 msgstr "Ingen nyhetsstrømmer ble funnet."
 
-#: include/functions.php:722
-msgid "Session failed to validate (incorrect IP)"
-msgstr "Sesjonen kunne ikke valideres (feil IP)"
-
-#: include/functions.php:1165
-#: include/functions.php:1801
+#: include/functions.php:1115
+#: include/functions.php:1751
 #: plugins/mobile/mobile-functions.php:171
 msgid "Special"
 msgstr "Snarveier"
 
-#: include/functions.php:1653
-#: classes/dlg.php:369
-#: classes/pref/filters.php:382
+#: include/functions.php:1603
+#: classes/feeds.php:1097
+#: classes/pref/filters.php:427
 msgid "All feeds"
 msgstr "Alle Nyhetsstrømmer"
 
-#: include/functions.php:1854
+#: include/functions.php:1804
 msgid "Starred articles"
 msgstr "Favorittartikler"
 
-#: include/functions.php:1856
+#: include/functions.php:1806
 msgid "Published articles"
 msgstr "Publiserte artikler"
 
-#: include/functions.php:1858
+#: include/functions.php:1808
 msgid "Fresh articles"
 msgstr "Ferske artikler"
 
-#: include/functions.php:1862
+#: include/functions.php:1812
 #, fuzzy
 msgid "Archived articles"
 msgstr "Lagrede artikler"
 
-#: include/functions.php:1864
+#: include/functions.php:1814
 msgid "Recently read"
 msgstr ""
 
-#: include/functions.php:1927
+#: include/functions.php:1877
 msgid "Navigation"
 msgstr "Navigasjon"
 
-#: include/functions.php:1928
+#: include/functions.php:1878
 #, fuzzy
 msgid "Open next feed"
 msgstr "Generert nyhetsstrøm"
 
-#: include/functions.php:1929
+#: include/functions.php:1879
 msgid "Open previous feed"
 msgstr ""
 
-#: include/functions.php:1930
+#: include/functions.php:1880
 #, fuzzy
 msgid "Open next article"
 msgstr "Vis opprinnelig artikkelinnhold"
 
-#: include/functions.php:1931
+#: include/functions.php:1881
 #, fuzzy
 msgid "Open previous article"
 msgstr "Vis opprinnelig artikkelinnhold"
 
-#: include/functions.php:1932
+#: include/functions.php:1882
 msgid "Open next article (don't scroll long articles)"
 msgstr ""
 
-#: include/functions.php:1933
+#: include/functions.php:1883
 msgid "Open previous article (don't scroll long articles)"
 msgstr ""
 
-#: include/functions.php:1934
+#: include/functions.php:1884
 msgid "Show search dialog"
 msgstr "Vis søkevinduet"
 
-#: include/functions.php:1935
+#: include/functions.php:1885
 #, fuzzy
 msgid "Article"
 msgstr "Alle artikler"
 
-#: include/functions.php:1936
+#: include/functions.php:1886
 msgid "Toggle starred"
 msgstr "Sett som favoritt"
 
-#: include/functions.php:1937
-#: js/viewfeed.js:1920
+#: include/functions.php:1887
+#: js/viewfeed.js:1908
 msgid "Toggle published"
 msgstr "Sett som publisert"
 
-#: include/functions.php:1938
-#: js/viewfeed.js:1898
+#: include/functions.php:1888
+#: js/viewfeed.js:1886
 msgid "Toggle unread"
 msgstr "Sett som ulest"
 
-#: include/functions.php:1939
+#: include/functions.php:1889
 msgid "Edit tags"
 msgstr "Endre stikkord"
 
-#: include/functions.php:1940
+#: include/functions.php:1890
 #, fuzzy
 msgid "Dismiss selected"
 msgstr "Fjerne merkede artikler fra merkelappen?"
 
-#: include/functions.php:1941
+#: include/functions.php:1891
 #, fuzzy
 msgid "Dismiss read"
 msgstr "Publiser artiklen"
 
-#: include/functions.php:1942
+#: include/functions.php:1892
 #, fuzzy
 msgid "Open in new window"
 msgstr "Åpne artikkel i nytt nettleservindu"
 
-#: include/functions.php:1943
-#: js/viewfeed.js:1939
+#: include/functions.php:1893
+#: js/viewfeed.js:1927
 #, fuzzy
 msgid "Mark below as read"
 msgstr "Marker som lest"
 
-#: include/functions.php:1944
-#: js/viewfeed.js:1933
+#: include/functions.php:1894
+#: js/viewfeed.js:1921
 #, fuzzy
 msgid "Mark above as read"
 msgstr "Marker som lest"
 
-#: include/functions.php:1945
+#: include/functions.php:1895
 #, fuzzy
 msgid "Scroll down"
 msgstr "Alt ferdig."
 
-#: include/functions.php:1946
+#: include/functions.php:1896
 msgid "Scroll up"
 msgstr ""
 
-#: include/functions.php:1947
+#: include/functions.php:1897
 #, fuzzy
 msgid "Select article under cursor"
 msgstr "Velg artikkelen under musepekeren"
 
-#: include/functions.php:1948
+#: include/functions.php:1898
 #, fuzzy
 msgid "Email article"
 msgstr "Alle artikler"
 
-#: include/functions.php:1949
+#: include/functions.php:1899
 #, fuzzy
 msgid "Close/collapse article"
 msgstr "Fjern artikler"
 
-#: include/functions.php:1951
+#: include/functions.php:1901
 #: plugins/embed_original/init.php:33
 #, fuzzy
 msgid "Toggle embed original"
 msgstr "Tillatt endringer i kategorirekkefølgen?"
 
-#: include/functions.php:1952
+#: include/functions.php:1902
 #, fuzzy
 msgid "Article selection"
 msgstr "Handlinger for aktive artikler"
 
-#: include/functions.php:1953
+#: include/functions.php:1903
 #, fuzzy
 msgid "Select all articles"
 msgstr "Fjern artikler"
 
-#: include/functions.php:1954
+#: include/functions.php:1904
 #, fuzzy
 msgid "Select unread"
 msgstr "Slett uleste artikler"
 
-#: include/functions.php:1955
+#: include/functions.php:1905
 #, fuzzy
 msgid "Select starred"
 msgstr "Sett som favorittartikkel"
 
-#: include/functions.php:1956
+#: include/functions.php:1906
 #, fuzzy
 msgid "Select published"
 msgstr "Slett uleste artikler"
 
-#: include/functions.php:1957
+#: include/functions.php:1907
 #, fuzzy
 msgid "Invert selection"
 msgstr "Handlinger for aktive artikler"
 
-#: include/functions.php:1958
+#: include/functions.php:1908
 #, fuzzy
 msgid "Deselect everything"
 msgstr "Fjern artikler"
 
-#: include/functions.php:1959
-#: classes/pref/feeds.php:520
-#: classes/pref/feeds.php:753
+#: include/functions.php:1909
+#: classes/pref/feeds.php:521
+#: classes/pref/feeds.php:754
 msgid "Feed"
 msgstr "Nyhetsstrøm"
 
-#: include/functions.php:1960
+#: include/functions.php:1910
 #, fuzzy
 msgid "Refresh current feed"
 msgstr "Oppdater aktive nyhetsstrømmer"
 
-#: include/functions.php:1961
+#: include/functions.php:1911
 #, fuzzy
 msgid "Un/hide read feeds"
 msgstr "Skjul/vis leste nyhetsstrømmer"
 
-#: include/functions.php:1962
-#: classes/pref/feeds.php:1274
+#: include/functions.php:1912
+#: classes/pref/feeds.php:1275
 msgid "Subscribe to feed"
 msgstr "Abonner på nyhetsstrøm"
 
-#: include/functions.php:1963
+#: include/functions.php:1913
 #: js/FeedTree.js:135
 #: js/PrefFeedTree.js:67
 msgid "Edit feed"
 msgstr "Rediger nyhetsstrømmen"
 
-#: include/functions.php:1965
+#: include/functions.php:1915
 #, fuzzy
 msgid "Reverse headlines"
 msgstr "Motsatt titteloversikt (eldste først)"
 
-#: include/functions.php:1966
+#: include/functions.php:1916
 #, fuzzy
 msgid "Debug feed update"
 msgstr "Alle nyhetsstrømmer er oppdatert"
 
-#: include/functions.php:1967
+#: include/functions.php:1917
 #: js/FeedTree.js:178
 msgid "Mark all feeds as read"
 msgstr "Marker alle nyhetsstrømmer som lest"
 
-#: include/functions.php:1968
+#: include/functions.php:1918
 #, fuzzy
 msgid "Un/collapse current category"
 msgstr "Velg for å slå sammen kategorien"
 
-#: include/functions.php:1969
+#: include/functions.php:1919
 #, fuzzy
 msgid "Toggle combined mode"
 msgstr "Tillatt endringer i kategorirekkefølgen?"
 
-#: include/functions.php:1970
+#: include/functions.php:1920
 #, fuzzy
 msgid "Toggle auto expand in combined mode"
 msgstr "Tillatt endringer i kategorirekkefølgen?"
 
-#: include/functions.php:1971
+#: include/functions.php:1921
 #, fuzzy
 msgid "Go to"
 msgstr "Gå til..."
 
-#: include/functions.php:1973
+#: include/functions.php:1923
 #, fuzzy
 msgid "Fresh"
 msgstr "Oppdater"
 
-#: include/functions.php:1976
+#: include/functions.php:1926
+#: js/tt-rss.js:431
+#: js/tt-rss.js:584
 msgid "Tag cloud"
 msgstr "Tag-sky"
 
-#: include/functions.php:1978
+#: include/functions.php:1928
 #, fuzzy
 msgid "Other"
 msgstr "Andre:"
 
-#: include/functions.php:1979
+#: include/functions.php:1929
 #: classes/pref/labels.php:281
 msgid "Create label"
 msgstr "Lag merkelapp"
 
-#: include/functions.php:1980
-#: classes/pref/filters.php:606
+#: include/functions.php:1930
+#: classes/pref/filters.php:654
 msgid "Create filter"
 msgstr "Lag filter"
 
-#: include/functions.php:1981
+#: include/functions.php:1931
 #, fuzzy
 msgid "Un/collapse sidebar"
 msgstr "Skjul nyhetskanalsslisten"
 
-#: include/functions.php:1982
+#: include/functions.php:1932
 #, fuzzy
 msgid "Show help dialog"
 msgstr "Vis søkevinduet"
 
-#: include/functions.php:2467
+#: include/functions.php:2417
 #, fuzzy, php-format
 msgid "Search results: %s"
 msgstr "Søkeresultat"
 
-#: include/functions.php:2958
-#: js/viewfeed.js:2026
+#: include/functions.php:2908
+#: js/viewfeed.js:2014
 #, fuzzy
 msgid "Click to play"
 msgstr "Trykk for å endre"
 
-#: include/functions.php:2959
-#: js/viewfeed.js:2025
+#: include/functions.php:2909
+#: js/viewfeed.js:2013
 msgid "Play"
 msgstr ""
 
-#: include/functions.php:3076
+#: include/functions.php:3026
 msgid " - "
 msgstr "-"
 
-#: include/functions.php:3098
-#: include/functions.php:3392
+#: include/functions.php:3048
+#: include/functions.php:3342
 #: classes/rpc.php:408
 msgid "no tags"
 msgstr "Ingen stikkord"
 
-#: include/functions.php:3108
+#: include/functions.php:3058
 #: classes/feeds.php:682
 msgid "Edit tags for this article"
 msgstr "Rediger stikkordene for denne artikkelen"
 
-#: include/functions.php:3137
+#: include/functions.php:3087
 #: classes/feeds.php:638
 #, fuzzy
 msgid "Originally from:"
 msgstr "Vis opprinnelig artikkelinnhold"
 
-#: include/functions.php:3150
+#: include/functions.php:3100
 #: classes/feeds.php:651
-#: classes/pref/feeds.php:539
+#: classes/pref/feeds.php:540
 #, fuzzy
 msgid "Feed URL"
 msgstr "Nyhetsstrøm"
 
-#: include/functions.php:3181
-#: classes/dlg.php:43
-#: classes/dlg.php:162
-#: classes/dlg.php:185
-#: classes/dlg.php:222
-#: classes/dlg.php:506
-#: classes/dlg.php:541
-#: classes/dlg.php:572
-#: classes/dlg.php:606
-#: classes/dlg.php:618
+#: include/functions.php:3131
+#: classes/dlg.php:37
+#: classes/dlg.php:60
+#: classes/dlg.php:93
+#: classes/dlg.php:159
+#: classes/dlg.php:190
+#: classes/dlg.php:217
+#: classes/dlg.php:250
+#: classes/dlg.php:262
 #: classes/backend.php:105
 #: classes/pref/users.php:106
-#: classes/pref/filters.php:111
-#: classes/pref/feeds.php:1587
-#: classes/pref/feeds.php:1659
+#: classes/pref/filters.php:147
+#: classes/pref/prefs.php:1012
+#: classes/pref/feeds.php:1588
+#: classes/pref/feeds.php:1660
 #: plugins/import_export/init.php:409
 #: plugins/import_export/init.php:432
-#: plugins/googlereaderimport/init.php:164
+#: plugins/googlereaderimport/init.php:168
 #: plugins/share/init.php:67
 #: plugins/updater/init.php:357
 msgid "Close this window"
 msgstr "Lukk dette vinduet"
 
-#: include/functions.php:3417
+#: include/functions.php:3367
 #, fuzzy
 msgid "(edit note)"
 msgstr "Rediger notat"
 
-#: include/functions.php:3650
+#: include/functions.php:3600
 msgid "unknown type"
 msgstr "Ukjent type"
 
-#: include/functions.php:3706
+#: include/functions.php:3656
 #, fuzzy
 msgid "Attachments"
 msgstr "Vedlegg:"
@@ -1017,7 +1014,7 @@ msgid "Assign tags"
 msgstr "Tildel stikkord"
 
 #: include/localized_schema.php:14
-#: js/viewfeed.js:1990
+#: js/viewfeed.js:1978
 msgid "Assign label"
 msgstr "Tildel stikkord"
 
@@ -1206,7 +1203,7 @@ msgid "User timezone"
 msgstr ""
 
 #: include/localized_schema.php:61
-#: js/prefs.js:1719
+#: js/prefs.js:1725
 #, fuzzy
 msgid "Customize stylesheet"
 msgstr "URL til brukerbestemt utseendemal (CSS)"
@@ -1234,14 +1231,14 @@ msgid "Select theme"
 msgstr "Velg utseende"
 
 #: include/login_form.php:183
-#: classes/handler/public.php:460
-#: classes/handler/public.php:748
+#: classes/handler/public.php:461
+#: classes/handler/public.php:749
 #: plugins/mobile/login_form.php:40
 msgid "Login:"
 msgstr "Brukernavn:"
 
 #: include/login_form.php:192
-#: classes/handler/public.php:463
+#: classes/handler/public.php:464
 #: plugins/mobile/login_form.php:45
 msgid "Password:"
 msgstr "Passord:"
@@ -1252,7 +1249,7 @@ msgid "I forgot my password"
 msgstr "Feil brukernavn og/eller passord"
 
 #: include/login_form.php:201
-#: classes/handler/public.php:466
+#: classes/handler/public.php:467
 msgid "Language:"
 msgstr "Språk:"
 
@@ -1262,9 +1259,9 @@ msgid "Profile:"
 msgstr "Fil:"
 
 #: include/login_form.php:213
-#: classes/handler/public.php:210
+#: classes/handler/public.php:211
 #: classes/rpc.php:64
-#: classes/dlg.php:98
+#: classes/pref/prefs.php:948
 #, fuzzy
 msgid "Default profile"
 msgstr "Standard artikkelbegrensning"
@@ -1278,507 +1275,258 @@ msgid "Remember me"
 msgstr ""
 
 #: include/login_form.php:235
-#: classes/handler/public.php:476
+#: classes/handler/public.php:477
 #: plugins/mobile/login_form.php:28
 msgid "Log in"
 msgstr "Logg inn"
 
+#: include/sessions.php:53
+msgid "Session failed to validate (incorrect IP)"
+msgstr "Sesjonen kunne ikke valideres (feil IP)"
+
 #: classes/article.php:25
 #, fuzzy
 msgid "Article not found."
 msgstr "Nyhetsstrømmen ble ikke funnet"
 
-#: classes/handler/public.php:401
+#: classes/article.php:179
+msgid "Tags for this article (separated by commas):"
+msgstr "Denne artikkelens stikkord (separert med kommaer):"
+
+#: classes/article.php:204
+#: classes/pref/users.php:192
+#: classes/pref/labels.php:79
+#: classes/pref/filters.php:405
+#: classes/pref/prefs.php:894
+#: classes/pref/feeds.php:733
+#: classes/pref/feeds.php:881
+#: plugins/nsfw/init.php:86
+#: plugins/note/init.php:53
+#: plugins/instances/init.php:248
+msgid "Save"
+msgstr "Lagre"
+
+#: classes/article.php:206
+#: classes/handler/public.php:438
+#: classes/handler/public.php:480
+#: classes/feeds.php:1024
+#: classes/feeds.php:1076
+#: classes/feeds.php:1136
+#: classes/pref/users.php:194
+#: classes/pref/labels.php:81
+#: classes/pref/filters.php:408
+#: classes/pref/filters.php:804
+#: classes/pref/filters.php:880
+#: classes/pref/filters.php:947
+#: classes/pref/prefs.php:896
+#: classes/pref/feeds.php:734
+#: classes/pref/feeds.php:884
+#: classes/pref/feeds.php:1797
+#: plugins/mail/init.php:131
+#: plugins/note/init.php:55
+#: plugins/instances/init.php:251
+#: plugins/instances/init.php:440
+msgid "Cancel"
+msgstr "Avbryt"
+
+#: classes/handler/public.php:402
 #: plugins/bookmarklets/init.php:38
 #, fuzzy
 msgid "Share with Tiny Tiny RSS"
 msgstr "Returner til Tiny Tiny RSS"
 
-#: classes/handler/public.php:409
+#: classes/handler/public.php:410
 msgid "Title:"
 msgstr "Tittel:"
 
-#: classes/handler/public.php:411
-#: classes/dlg.php:663
-#: classes/pref/feeds.php:537
-#: classes/pref/feeds.php:768
+#: classes/handler/public.php:412
+#: classes/pref/feeds.php:538
+#: classes/pref/feeds.php:769
 #: plugins/instances/init.php:215
+#: plugins/instances/init.php:405
 msgid "URL:"
 msgstr "Nettadresse:"
 
-#: classes/handler/public.php:413
+#: classes/handler/public.php:414
 #, fuzzy
 msgid "Content:"
 msgstr "Innhold"
 
-#: classes/handler/public.php:415
+#: classes/handler/public.php:416
 #, fuzzy
 msgid "Labels:"
 msgstr "Merkelapper"
 
-#: classes/handler/public.php:434
+#: classes/handler/public.php:435
 msgid "Shared article will appear in the Published feed."
 msgstr ""
 
-#: classes/handler/public.php:436
+#: classes/handler/public.php:437
 msgid "Share"
 msgstr ""
 
-#: classes/handler/public.php:437
-#: classes/handler/public.php:479
-#: classes/dlg.php:296
-#: classes/dlg.php:348
-#: classes/dlg.php:408
-#: classes/dlg.php:439
-#: classes/dlg.php:648
-#: classes/dlg.php:698
-#: classes/dlg.php:747
-#: classes/pref/users.php:194
-#: classes/pref/labels.php:81
-#: classes/pref/filters.php:363
-#: classes/pref/filters.php:746
-#: classes/pref/filters.php:822
-#: classes/pref/filters.php:889
-#: classes/pref/feeds.php:733
-#: classes/pref/feeds.php:883
-#: plugins/mail/init.php:131
-#: plugins/note/init.php:55
-#: plugins/instances/init.php:251
-msgid "Cancel"
-msgstr "Avbryt"
-
-#: classes/handler/public.php:458
+#: classes/handler/public.php:459
 #, fuzzy
 msgid "Not logged in"
 msgstr "Sist innlogget"
 
-#: classes/handler/public.php:525
+#: classes/handler/public.php:526
 msgid "Incorrect username or password"
 msgstr "Feil brukernavn og/eller passord"
 
-#: classes/handler/public.php:561
-#: classes/handler/public.php:658
+#: classes/handler/public.php:562
+#: classes/handler/public.php:659
 #, php-format
 msgid "Already subscribed to <b>%s</b>."
 msgstr "Abonnerer allerede på <b>%s</b>"
 
-#: classes/handler/public.php:564
-#: classes/handler/public.php:649
+#: classes/handler/public.php:565
+#: classes/handler/public.php:650
 #, php-format
 msgid "Subscribed to <b>%s</b>."
 msgstr "Abonnerer på <b>%s</b>"
 
-#: classes/handler/public.php:567
-#: classes/handler/public.php:652
+#: classes/handler/public.php:568
+#: classes/handler/public.php:653
 #, fuzzy, php-format
 msgid "Could not subscribe to <b>%s</b>."
 msgstr "Abonnerer allerede på <b>%s</b>"
 
-#: classes/handler/public.php:570
-#: classes/handler/public.php:655
+#: classes/handler/public.php:571
+#: classes/handler/public.php:656
 #, fuzzy, php-format
 msgid "No feeds found in <b>%s</b>."
 msgstr "Ingen nyhetsstrømmer ble funnet."
 
-#: classes/handler/public.php:573
-#: classes/handler/public.php:661
+#: classes/handler/public.php:574
+#: classes/handler/public.php:662
 #, fuzzy
 msgid "Multiple feed URLs found."
 msgstr "Adresse for nyhetsstrømmen for offentliggjorte innlegg har endret seg."
 
-#: classes/handler/public.php:577
-#: classes/handler/public.php:666
+#: classes/handler/public.php:578
+#: classes/handler/public.php:667
 #, fuzzy, php-format
 msgid "Could not subscribe to <b>%s</b>.<br>Can't download the Feed URL."
 msgstr "Abonnerer allerede på <b>%s</b>"
 
-#: classes/handler/public.php:595
-#: classes/handler/public.php:684
+#: classes/handler/public.php:596
+#: classes/handler/public.php:685
 #, fuzzy
 msgid "Subscribe to selected feed"
 msgstr "Fjern abonnement på valgte nyhetsstrømmer"
 
-#: classes/handler/public.php:620
-#: classes/handler/public.php:708
+#: classes/handler/public.php:621
+#: classes/handler/public.php:709
 msgid "Edit subscription options"
 msgstr "Rediger abonnementsalternativer"
 
-#: classes/handler/public.php:735
+#: classes/handler/public.php:736
 #, fuzzy
 msgid "Password recovery"
 msgstr "Passord:"
 
-#: classes/handler/public.php:741
+#: classes/handler/public.php:742
 msgid "You will need to provide valid account name and email. New password will be sent on your email address."
 msgstr ""
 
-#: classes/handler/public.php:763
+#: classes/handler/public.php:764
 #: classes/pref/users.php:378
 msgid "Reset password"
 msgstr "Nullstill passordet"
 
-#: classes/handler/public.php:773
+#: classes/handler/public.php:774
 msgid "Some of the required form parameters are missing or incorrect."
 msgstr ""
 
-#: classes/handler/public.php:777
-#: classes/handler/public.php:803
+#: classes/handler/public.php:778
+#: classes/handler/public.php:804
 #: plugins/digest/digest_body.php:69
 #, fuzzy
 msgid "Go back"
 msgstr "Gå tilbake"
 
-#: classes/handler/public.php:799
+#: classes/handler/public.php:800
 msgid "Sorry, login and email combination not found."
 msgstr ""
 
-#: classes/dlg.php:22
+#: classes/dlg.php:16
 msgid "If you have imported labels and/or filters, you might need to reload preferences to see your new data."
 msgstr ""
 
-#: classes/dlg.php:55
-#: classes/pref/users.php:360
-#: classes/pref/labels.php:272
-#: classes/pref/filters.php:234
-#: classes/pref/filters.php:282
-#: classes/pref/filters.php:597
-#: classes/pref/filters.php:676
-#: classes/pref/filters.php:703
-#: classes/pref/feeds.php:1262
-#: classes/pref/feeds.php:1532
-#: classes/pref/feeds.php:1602
-#: plugins/instances/init.php:287
-#, fuzzy
-msgid "Select"
-msgstr "Velg:"
-
-#: classes/dlg.php:58
-#: classes/feeds.php:92
-#: classes/pref/users.php:363
-#: classes/pref/labels.php:275
-#: classes/pref/filters.php:237
-#: classes/pref/filters.php:285
-#: classes/pref/filters.php:600
-#: classes/pref/filters.php:679
-#: classes/pref/filters.php:706
-#: classes/pref/feeds.php:1265
-#: classes/pref/feeds.php:1535
-#: classes/pref/feeds.php:1605
-#: plugins/instances/init.php:290
-msgid "All"
-msgstr "Alle"
-
-#: classes/dlg.php:60
-#: classes/feeds.php:95
-#: classes/pref/users.php:365
-#: classes/pref/labels.php:277
-#: classes/pref/filters.php:239
-#: classes/pref/filters.php:287
-#: classes/pref/filters.php:602
-#: classes/pref/filters.php:681
-#: classes/pref/filters.php:708
-#: classes/pref/feeds.php:1267
-#: classes/pref/feeds.php:1537
-#: classes/pref/feeds.php:1607
-#: plugins/instances/init.php:292
-msgid "None"
-msgstr "Ingen"
-
-#: classes/dlg.php:69
-#, fuzzy
-msgid "Create profile"
-msgstr "Lag filter"
-
-#: classes/dlg.php:92
-#: classes/dlg.php:122
-#, fuzzy
-msgid "(active)"
-msgstr "Tilpasset"
-
-#: classes/dlg.php:156
-#, fuzzy
-msgid "Remove selected profiles"
-msgstr "Fjerne valgte filtre?"
-
-#: classes/dlg.php:158
-#, fuzzy
-msgid "Activate profile"
-msgstr "Fjerne valgte filtre?"
-
-#: classes/dlg.php:168
-msgid "Public OPML URL"
-msgstr ""
-
-#: classes/dlg.php:173
+#: classes/dlg.php:48
 #, fuzzy
 msgid "Your Public OPML URL is:"
 msgstr "Lenke til nyhetsstrøm for publiserte artikler"
 
-#: classes/dlg.php:182
-#: classes/dlg.php:569
+#: classes/dlg.php:57
+#: classes/dlg.php:214
 #, fuzzy
 msgid "Generate new URL"
 msgstr "Generert nyhetsstrøm"
 
-#: classes/dlg.php:194
-msgid "Notice"
-msgstr "Notis"
-
-#: classes/dlg.php:200
+#: classes/dlg.php:71
 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 "Oppdateringsprosessen er åpnet for i konfigurasjonsfilen, men prosessen blir ikke kjørt, noe som gjør at ingen nyhetsstrømmer blir oppdatert. Vennligst start prosessen eller konakt administratoren."
 
-#: classes/dlg.php:204
-#: classes/dlg.php:213
+#: classes/dlg.php:75
+#: classes/dlg.php:84
 msgid "Last update:"
 msgstr "Siste oppdatering:"
 
-#: classes/dlg.php:209
+#: classes/dlg.php:80
 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 "TT-RSS har oppdaget at oppdateringsmetoden bruker for lang tid å oppdatere nyhetsstrømmene. Dette kan indikere et krasj eller at noe henger. Vennligst sjekk oppdateringsprosessen eller kontakt vedkommende som innehar nyhetsstrømmen."
 
-#: classes/dlg.php:234
-#: classes/dlg.php:242
-#, fuzzy
-msgid "Feed or site URL"
-msgstr "Nyhetsstrøm"
-
-#: classes/dlg.php:248
-#: classes/dlg.php:711
-#: classes/pref/feeds.php:559
-#: classes/pref/feeds.php:781
-msgid "Place in category:"
-msgstr "Plasser i kategori..."
-
-#: classes/dlg.php:256
-#, fuzzy
-msgid "Available feeds"
-msgstr "Alle Nyhetsstrømmer"
-
-#: classes/dlg.php:268
-#: classes/pref/users.php:155
-#: classes/pref/feeds.php:589
-#: classes/pref/feeds.php:817
-msgid "Authentication"
-msgstr "Autentifisering"
-
-#: classes/dlg.php:272
-#: classes/dlg.php:725
-#: classes/pref/users.php:420
-#: classes/pref/feeds.php:595
-#: classes/pref/feeds.php:821
-msgid "Login"
-msgstr "Logg inn"
-
-#: classes/dlg.php:275
-#: classes/dlg.php:728
-#: classes/pref/prefs.php:202
-#: classes/pref/feeds.php:601
-#: classes/pref/feeds.php:827
-#, fuzzy
-msgid "Password"
-msgstr "Passord:"
-
-#: classes/dlg.php:285
-msgid "This feed requires authentication."
-msgstr "Denne nyhetsstrømmen krever autentifisering"
-
-#: classes/dlg.php:290
-#: classes/dlg.php:346
-#: classes/dlg.php:746
-msgid "Subscribe"
-msgstr "Abonner"
-
-#: classes/dlg.php:293
-#, fuzzy
-msgid "More feeds"
-msgstr "Flere nyhetsstrømmer"
-
-#: classes/dlg.php:316
-#: classes/dlg.php:407
-#: classes/pref/users.php:350
-#: classes/pref/filters.php:593
-#: classes/pref/feeds.php:1258
-#: js/tt-rss.js:170
-msgid "Search"
-msgstr "Søk"
-
-#: classes/dlg.php:320
-#, fuzzy
-msgid "Popular feeds"
-msgstr "Vis nyhetsstrømmer"
-
-#: classes/dlg.php:321
-#, fuzzy
-msgid "Feed archive"
-msgstr "Nyhetsstrømshandlinger"
-
-#: classes/dlg.php:324
-#, fuzzy
-msgid "limit:"
-msgstr "Antall:"
-
-#: classes/dlg.php:347
-#: classes/pref/users.php:376
-#: classes/pref/labels.php:284
-#: classes/pref/filters.php:353
-#: classes/pref/filters.php:615
-#: classes/pref/feeds.php:706
-#: plugins/instances/init.php:297
-msgid "Remove"
-msgstr "Fjern"
-
-#: classes/dlg.php:358
-msgid "Look for"
-msgstr ""
-
-#: classes/dlg.php:366
-msgid "Limit search to:"
-msgstr "Begrens søket til:"
-
-#: classes/dlg.php:382
-msgid "This feed"
-msgstr "Denne nyhetsstrømmen"
-
-#: classes/dlg.php:414
-msgid "Tags for this article (separated by commas):"
-msgstr "Denne artikkelens stikkord (separert med kommaer):"
-
-#: classes/dlg.php:437
-#: classes/dlg.php:646
-#: classes/pref/users.php:192
-#: classes/pref/labels.php:79
-#: classes/pref/filters.php:360
-#: classes/pref/feeds.php:732
-#: classes/pref/feeds.php:880
-#: plugins/nsfw/init.php:86
-#: plugins/note/init.php:53
-#: plugins/instances/init.php:248
-msgid "Save"
-msgstr "Lagre"
-
-#: classes/dlg.php:445
-#, fuzzy
-msgid "Tag Cloud"
-msgstr "Tag-sky"
-
-#: classes/dlg.php:514
-msgid "Select item(s) by tags"
-msgstr ""
-
-#: classes/dlg.php:517
+#: classes/dlg.php:166
 msgid "Match:"
 msgstr "Matcher:"
 
-#: classes/dlg.php:519
+#: classes/dlg.php:168
 msgid "Any"
 msgstr ""
 
-#: classes/dlg.php:522
+#: classes/dlg.php:171
 #, fuzzy
 msgid "All tags."
 msgstr "Ingen stikkord"
 
-#: classes/dlg.php:524
+#: classes/dlg.php:173
 msgid "Which Tags?"
 msgstr ""
 
-#: classes/dlg.php:537
+#: classes/dlg.php:186
 #, fuzzy
 msgid "Display entries"
 msgstr "Vis nyhetsstrømmer"
 
-#: classes/dlg.php:549
-#: classes/feeds.php:138
-#, fuzzy
-msgid "View as RSS"
-msgstr "Se stikkord"
-
-#: classes/dlg.php:560
+#: classes/dlg.php:205
 msgid "You can view this feed as RSS using the following URL:"
 msgstr ""
 
-#: classes/dlg.php:589
+#: classes/dlg.php:233
 #: plugins/updater/init.php:327
 #, fuzzy, php-format
 msgid "New version of Tiny Tiny RSS is available (%s)."
 msgstr "Ny versjon av Tiny Tiny Rss er tilgjengelig!"
 
-#: classes/dlg.php:597
+#: classes/dlg.php:241
 msgid "You can update using built-in updater in the Preferences or by using update.php"
 msgstr ""
 
-#: classes/dlg.php:601
+#: classes/dlg.php:245
 #: plugins/updater/init.php:331
 msgid "See the release notes"
 msgstr ""
 
-#: classes/dlg.php:603
+#: classes/dlg.php:247
 msgid "Download"
 msgstr ""
 
-#: classes/dlg.php:611
+#: classes/dlg.php:255
 msgid "Error receiving version information or no new version available."
 msgstr ""
 
-#: classes/dlg.php:631
-#, 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 ""
-
-#: classes/dlg.php:657
-#: plugins/instances/init.php:207
-msgid "Instance"
-msgstr ""
-
-#: classes/dlg.php:666
-#: plugins/instances/init.php:218
-#: plugins/instances/init.php:315
-msgid "Instance URL"
-msgstr ""
-
-#: classes/dlg.php:676
-#: plugins/instances/init.php:229
-#, fuzzy
-msgid "Access key:"
-msgstr "Tilgangsnivå:"
-
-#: classes/dlg.php:679
-#: plugins/instances/init.php:232
-#: plugins/instances/init.php:316
-#, fuzzy
-msgid "Access key"
-msgstr "Tilgangsnivå"
-
-#: classes/dlg.php:683
-#: plugins/instances/init.php:236
-msgid "Use one access key for both linked instances."
-msgstr ""
-
-#: classes/dlg.php:691
-#: plugins/instances/init.php:244
-#, fuzzy
-msgid "Generate new key"
-msgstr "Generert nyhetsstrøm"
-
-#: classes/dlg.php:695
-#, fuzzy
-msgid "Create link"
-msgstr "Lag"
-
-#: classes/dlg.php:708
-msgid "Add one valid RSS feed per line (no feed detection is done)"
-msgstr ""
-
-#: classes/dlg.php:717
-msgid "Feeds to subscribe, One per line"
-msgstr ""
-
-#: classes/dlg.php:739
-#, fuzzy
-msgid "Feeds require authentication."
-msgstr "Denne nyhetsstrømmen krever autentifisering"
-
 #: classes/feeds.php:68
 #, fuzzy
 msgid "Visit the website"
@@ -1789,14 +1537,53 @@ msgstr "Besøk den offisielle siden"
 msgid "View as RSS feed"
 msgstr "Se nyhetsstrømmene"
 
+#: classes/feeds.php:84
+#: classes/feeds.php:138
+#: classes/pref/feeds.php:1440
+#, fuzzy
+msgid "View as RSS"
+msgstr "Se stikkord"
+
 #: classes/feeds.php:91
 msgid "Select:"
 msgstr "Velg:"
 
+#: classes/feeds.php:92
+#: classes/pref/users.php:363
+#: classes/pref/labels.php:275
+#: classes/pref/filters.php:282
+#: classes/pref/filters.php:330
+#: classes/pref/filters.php:648
+#: classes/pref/filters.php:737
+#: classes/pref/filters.php:764
+#: classes/pref/prefs.php:908
+#: classes/pref/feeds.php:1266
+#: classes/pref/feeds.php:1536
+#: classes/pref/feeds.php:1606
+#: plugins/instances/init.php:290
+msgid "All"
+msgstr "Alle"
+
 #: classes/feeds.php:94
 msgid "Invert"
 msgstr "Motsatt"
 
+#: classes/feeds.php:95
+#: classes/pref/users.php:365
+#: classes/pref/labels.php:277
+#: classes/pref/filters.php:284
+#: classes/pref/filters.php:332
+#: classes/pref/filters.php:650
+#: classes/pref/filters.php:739
+#: classes/pref/filters.php:766
+#: classes/pref/prefs.php:910
+#: classes/pref/feeds.php:1268
+#: classes/pref/feeds.php:1538
+#: classes/pref/feeds.php:1608
+#: plugins/instances/init.php:292
+msgid "None"
+msgstr "Ingen"
+
 #: classes/feeds.php:101
 #, fuzzy
 msgid "More..."
@@ -1826,10 +1613,10 @@ msgid "Move back"
 msgstr "Gå tilbake"
 
 #: classes/feeds.php:118
-#: classes/pref/filters.php:246
-#: classes/pref/filters.php:294
-#: classes/pref/filters.php:688
-#: classes/pref/filters.php:715
+#: classes/pref/filters.php:291
+#: classes/pref/filters.php:339
+#: classes/pref/filters.php:746
+#: classes/pref/filters.php:773
 #, fuzzy
 msgid "Delete"
 msgstr "Standard"
@@ -1886,20 +1673,123 @@ msgid "No articles found to display."
 msgstr "Ingen artikler funnet som kan vises"
 
 #: classes/feeds.php:755
-#: classes/feeds.php:920
+#: classes/feeds.php:919
 #, fuzzy, php-format
 msgid "Feeds last updated at %s"
 msgstr "Oppdateringsfeil"
 
 #: classes/feeds.php:765
-#: classes/feeds.php:930
+#: classes/feeds.php:929
 msgid "Some feeds have update errors (click for details)"
 msgstr "Noen nyhetsstrømmer har oppdateringsfeil (trykk for detaljer)"
 
-#: classes/feeds.php:910
+#: classes/feeds.php:909
 msgid "No feed selected."
 msgstr "Ingen valgt nyhetsstrøm"
 
+#: classes/feeds.php:962
+#: classes/feeds.php:970
+#, fuzzy
+msgid "Feed or site URL"
+msgstr "Nyhetsstrøm"
+
+#: classes/feeds.php:976
+#: classes/pref/feeds.php:560
+#: classes/pref/feeds.php:782
+#: classes/pref/feeds.php:1761
+msgid "Place in category:"
+msgstr "Plasser i kategori..."
+
+#: classes/feeds.php:984
+#, fuzzy
+msgid "Available feeds"
+msgstr "Alle Nyhetsstrømmer"
+
+#: classes/feeds.php:996
+#: classes/pref/users.php:155
+#: classes/pref/feeds.php:590
+#: classes/pref/feeds.php:818
+msgid "Authentication"
+msgstr "Autentifisering"
+
+#: classes/feeds.php:1000
+#: classes/pref/users.php:420
+#: classes/pref/feeds.php:596
+#: classes/pref/feeds.php:822
+#: classes/pref/feeds.php:1775
+msgid "Login"
+msgstr "Logg inn"
+
+#: classes/feeds.php:1003
+#: classes/pref/prefs.php:202
+#: classes/pref/feeds.php:602
+#: classes/pref/feeds.php:828
+#: classes/pref/feeds.php:1778
+#, fuzzy
+msgid "Password"
+msgstr "Passord:"
+
+#: classes/feeds.php:1013
+msgid "This feed requires authentication."
+msgstr "Denne nyhetsstrømmen krever autentifisering"
+
+#: classes/feeds.php:1018
+#: classes/feeds.php:1074
+#: classes/pref/feeds.php:1796
+msgid "Subscribe"
+msgstr "Abonner"
+
+#: classes/feeds.php:1021
+#, fuzzy
+msgid "More feeds"
+msgstr "Flere nyhetsstrømmer"
+
+#: classes/feeds.php:1044
+#: classes/feeds.php:1135
+#: classes/pref/users.php:350
+#: classes/pref/filters.php:641
+#: classes/pref/feeds.php:1259
+#: js/tt-rss.js:170
+msgid "Search"
+msgstr "Søk"
+
+#: classes/feeds.php:1048
+#, fuzzy
+msgid "Popular feeds"
+msgstr "Vis nyhetsstrømmer"
+
+#: classes/feeds.php:1049
+#, fuzzy
+msgid "Feed archive"
+msgstr "Nyhetsstrømshandlinger"
+
+#: classes/feeds.php:1052
+#, fuzzy
+msgid "limit:"
+msgstr "Antall:"
+
+#: classes/feeds.php:1075
+#: classes/pref/users.php:376
+#: classes/pref/labels.php:284
+#: classes/pref/filters.php:398
+#: classes/pref/filters.php:667
+#: classes/pref/feeds.php:707
+#: plugins/instances/init.php:297
+msgid "Remove"
+msgstr "Fjern"
+
+#: classes/feeds.php:1086
+msgid "Look for"
+msgstr ""
+
+#: classes/feeds.php:1094
+msgid "Limit search to:"
+msgstr "Begrens søket til:"
+
+#: classes/feeds.php:1110
+msgid "This feed"
+msgstr "Denne nyhetsstrømmen"
+
 #: classes/backend.php:33
 msgid "Other interface tips are available in the Tiny Tiny RSS wiki."
 msgstr ""
@@ -1974,7 +1864,7 @@ msgid "Error: please upload OPML file."
 msgstr "Feil: Kan ikke laste opp OPMLfil"
 
 #: classes/opml.php:475
-#: plugins/googlereaderimport/init.php:157
+#: plugins/googlereaderimport/init.php:161
 msgid "Error while parsing document."
 msgstr "Feil under behandling av dokumentet"
 
@@ -2021,8 +1911,8 @@ msgid "Change password to"
 msgstr "Endre passordet til"
 
 #: classes/pref/users.php:177
-#: classes/pref/feeds.php:609
-#: classes/pref/feeds.php:833
+#: classes/pref/feeds.php:610
+#: classes/pref/feeds.php:834
 msgid "Options"
 msgstr "Alternativer:"
 
@@ -2063,6 +1953,22 @@ msgstr ""
 msgid "[tt-rss] Password change notification"
 msgstr "[tt-rss] Varsel om endring av passord"
 
+#: classes/pref/users.php:360
+#: classes/pref/labels.php:272
+#: classes/pref/filters.php:279
+#: classes/pref/filters.php:327
+#: classes/pref/filters.php:645
+#: classes/pref/filters.php:734
+#: classes/pref/filters.php:761
+#: classes/pref/prefs.php:905
+#: classes/pref/feeds.php:1263
+#: classes/pref/feeds.php:1533
+#: classes/pref/feeds.php:1603
+#: plugins/instances/init.php:287
+#, fuzzy
+msgid "Select"
+msgstr "Velg:"
+
 #: classes/pref/users.php:368
 msgid "Create user"
 msgstr "Lag bruker"
@@ -2073,7 +1979,7 @@ msgid "Details"
 msgstr "Daglig"
 
 #: classes/pref/users.php:374
-#: classes/pref/filters.php:612
+#: classes/pref/filters.php:660
 #: plugins/instances/init.php:296
 msgid "Edit"
 msgstr "Rediger"
@@ -2100,6 +2006,8 @@ msgid "No matching users found."
 msgstr "Ingen matchende brukere ble funnet"
 
 #: classes/pref/labels.php:22
+#: classes/pref/filters.php:268
+#: classes/pref/filters.php:725
 msgid "Caption"
 msgstr "Overskrift"
 
@@ -2127,128 +2035,139 @@ msgstr "Laget merkelappen <b>%s</b>"
 msgid "Clear colors"
 msgstr "Fjern farger"
 
-#: classes/pref/filters.php:60
+#: classes/pref/filters.php:96
 #, fuzzy
 msgid "Articles matching this filter:"
 msgstr "Ingen filtre ble funnet."
 
-#: classes/pref/filters.php:97
+#: classes/pref/filters.php:133
 #, fuzzy
 msgid "No recent articles matching this filter have been found."
 msgstr "Ingen filtre ble funnet."
 
-#: classes/pref/filters.php:101
+#: classes/pref/filters.php:137
 msgid "Complex expressions might not give results while testing due to issues with database server regexp implementation."
 msgstr ""
 
-#: classes/pref/filters.php:229
-#: classes/pref/filters.php:671
-#: classes/pref/filters.php:786
+#: classes/pref/filters.php:274
+#: classes/pref/filters.php:729
+#: classes/pref/filters.php:844
 msgid "Match"
 msgstr "Match"
 
-#: classes/pref/filters.php:243
-#: classes/pref/filters.php:291
-#: classes/pref/filters.php:685
-#: classes/pref/filters.php:712
+#: classes/pref/filters.php:288
+#: classes/pref/filters.php:336
+#: classes/pref/filters.php:743
+#: classes/pref/filters.php:770
 msgid "Add"
 msgstr "Legg til"
 
-#: classes/pref/filters.php:277
-#: classes/pref/filters.php:698
+#: classes/pref/filters.php:322
+#: classes/pref/filters.php:756
 #, fuzzy
 msgid "Apply actions"
 msgstr "Nyhetsstrømshandlinger"
 
-#: classes/pref/filters.php:327
-#: classes/pref/filters.php:727
+#: classes/pref/filters.php:372
+#: classes/pref/filters.php:785
 msgid "Enabled"
 msgstr "Tillatt"
 
-#: classes/pref/filters.php:336
-#: classes/pref/filters.php:730
+#: classes/pref/filters.php:381
+#: classes/pref/filters.php:788
 #, fuzzy
 msgid "Match any rule"
 msgstr "Match på:"
 
-#: classes/pref/filters.php:345
-#: classes/pref/filters.php:733
+#: classes/pref/filters.php:390
+#: classes/pref/filters.php:791
 #, fuzzy
 msgid "Inverse matching"
 msgstr "Motsatt markering"
 
-#: classes/pref/filters.php:357
-#: classes/pref/filters.php:740
+#: classes/pref/filters.php:402
+#: classes/pref/filters.php:798
 msgid "Test"
 msgstr "Test"
 
-#: classes/pref/filters.php:390
+#: classes/pref/filters.php:435
 #, fuzzy
 msgid "(inverse)"
 msgstr "(Motsatt)"
 
-#: classes/pref/filters.php:389
+#: classes/pref/filters.php:434
 #, php-format
 msgid "%s on %s in %s %s"
 msgstr ""
 
-#: classes/pref/filters.php:609
+#: classes/pref/filters.php:657
 msgid "Combine"
 msgstr ""
 
-#: classes/pref/filters.php:619
-#: classes/pref/feeds.php:1317
+#: classes/pref/filters.php:663
+#: classes/pref/feeds.php:1279
+#: classes/pref/feeds.php:1293
+#, fuzzy
+msgid "Reset sort order"
+msgstr "Nullstill passordet"
+
+#: classes/pref/filters.php:671
+#: classes/pref/feeds.php:1318
 msgid "Rescore articles"
 msgstr "Tilbakestill poengsummene for artiklene"
 
-#: classes/pref/filters.php:743
+#: classes/pref/filters.php:801
 msgid "Create"
 msgstr "Lag"
 
-#: classes/pref/filters.php:798
+#: classes/pref/filters.php:856
 msgid "Inverse regular expression matching"
 msgstr ""
 
-#: classes/pref/filters.php:800
+#: classes/pref/filters.php:858
 msgid "on field"
 msgstr "På felt:"
 
-#: classes/pref/filters.php:806
-#: js/PrefFilterTree.js:29
+#: classes/pref/filters.php:864
+#: js/PrefFilterTree.js:45
 #: plugins/digest/digest.js:242
 msgid "in"
 msgstr "i"
 
-#: classes/pref/filters.php:819
+#: classes/pref/filters.php:877
 #, fuzzy
 msgid "Save rule"
 msgstr "Lagre"
 
-#: classes/pref/filters.php:819
-#: js/functions.js:1069
+#: classes/pref/filters.php:877
+#: js/functions.js:1063
 #, fuzzy
 msgid "Add rule"
 msgstr "Legger til kategori for nyhetsstrømmer"
 
-#: classes/pref/filters.php:842
+#: classes/pref/filters.php:900
 msgid "Perform Action"
 msgstr "Utfør handlingen"
 
-#: classes/pref/filters.php:868
+#: classes/pref/filters.php:926
 msgid "with parameters:"
 msgstr "med parametrene:"
 
-#: classes/pref/filters.php:886
+#: classes/pref/filters.php:944
 #, fuzzy
 msgid "Save action"
 msgstr "Panelhandlinger"
 
-#: classes/pref/filters.php:886
-#: js/functions.js:1095
+#: classes/pref/filters.php:944
+#: js/functions.js:1089
 #, fuzzy
 msgid "Add action"
 msgstr "Nyhetsstrømshandlinger"
 
+#: classes/pref/filters.php:967
+msgid "[No caption]"
+msgstr "Ingen bildetekst"
+
 #: classes/pref/prefs.php:17
 msgid "Old password cannot be blank."
 msgstr "Gammelt passord kan ikke være blankt."
@@ -2468,265 +2387,296 @@ msgstr "Bruk nyhetsstrømsikoner"
 msgid "Incorrect password"
 msgstr "Feil brukernavn og/eller passord"
 
-#: classes/pref/feeds.php:12
+#: classes/pref/prefs.php:879
+#, 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 ""
+
+#: classes/pref/prefs.php:919
+#, fuzzy
+msgid "Create profile"
+msgstr "Lag filter"
+
+#: classes/pref/prefs.php:942
+#: classes/pref/prefs.php:972
+#, fuzzy
+msgid "(active)"
+msgstr "Tilpasset"
+
+#: classes/pref/prefs.php:1006
+#, fuzzy
+msgid "Remove selected profiles"
+msgstr "Fjerne valgte filtre?"
+
+#: classes/pref/prefs.php:1008
+#, fuzzy
+msgid "Activate profile"
+msgstr "Fjerne valgte filtre?"
+
+#: classes/pref/feeds.php:13
 msgid "Check to enable field"
 msgstr "Marker for å tillate felt"
 
-#: classes/pref/feeds.php:60
-#: classes/pref/feeds.php:208
-#: classes/pref/feeds.php:250
-#: classes/pref/feeds.php:256
-#: classes/pref/feeds.php:281
-#, fuzzy, php-format
-msgid "(%d feed)"
-msgid_plural "(%d feeds)"
-msgstr[0] "Rediger nyhetsstrømmen"
-msgstr[1] "Rediger nyhetsstrømmen"
-
-#: classes/pref/feeds.php:526
+#: classes/pref/feeds.php:527
 #, fuzzy
 msgid "Feed Title"
 msgstr "Tittel"
 
-#: classes/pref/feeds.php:582
-#: classes/pref/feeds.php:808
+#: classes/pref/feeds.php:568
+#: classes/pref/feeds.php:793
+msgid "Update"
+msgstr "Oppdater"
+
+#: classes/pref/feeds.php:583
+#: classes/pref/feeds.php:809
 msgid "Article purging:"
 msgstr "Slett artikler:"
 
-#: classes/pref/feeds.php:605
+#: classes/pref/feeds.php:606
 msgid "<b>Hint:</b> you need to fill in your login information if your feed requires authentication, except for Twitter feeds."
 msgstr ""
 
-#: classes/pref/feeds.php:621
-#: classes/pref/feeds.php:837
+#: classes/pref/feeds.php:622
+#: classes/pref/feeds.php:838
 #, fuzzy
 msgid "Hide from Popular feeds"
 msgstr "Skjul fra min nyhetsstrømslisten"
 
-#: classes/pref/feeds.php:633
-#: classes/pref/feeds.php:843
+#: classes/pref/feeds.php:634
+#: classes/pref/feeds.php:844
 msgid "Include in e-mail digest"
 msgstr "Inkluder i e-postsammendraget"
 
-#: classes/pref/feeds.php:646
-#: classes/pref/feeds.php:849
+#: classes/pref/feeds.php:647
+#: classes/pref/feeds.php:850
 msgid "Always display image attachments"
 msgstr ""
 
-#: classes/pref/feeds.php:659
-#: classes/pref/feeds.php:857
+#: classes/pref/feeds.php:660
+#: classes/pref/feeds.php:858
 msgid "Do not embed images"
 msgstr ""
 
-#: classes/pref/feeds.php:672
-#: classes/pref/feeds.php:865
+#: classes/pref/feeds.php:673
+#: classes/pref/feeds.php:866
 msgid "Cache images locally"
 msgstr "Mellomlagre bilder lokalt på serveren"
 
-#: classes/pref/feeds.php:684
-#: classes/pref/feeds.php:871
+#: classes/pref/feeds.php:685
+#: classes/pref/feeds.php:872
 #, fuzzy
 msgid "Mark updated articles as unread"
 msgstr "Marker alle artikler som leste?"
 
-#: classes/pref/feeds.php:690
+#: classes/pref/feeds.php:691
 #, fuzzy
 msgid "Icon"
 msgstr "Handling"
 
-#: classes/pref/feeds.php:704
+#: classes/pref/feeds.php:705
 msgid "Replace"
 msgstr ""
 
-#: classes/pref/feeds.php:723
+#: classes/pref/feeds.php:724
 #, fuzzy
 msgid "Resubscribe to push updates"
 msgstr "Abonnerer på følgende nyhetsstrømmer:"
 
-#: classes/pref/feeds.php:730
+#: classes/pref/feeds.php:731
 msgid "Resets PubSubHubbub subscription status for push-enabled feeds."
 msgstr ""
 
-#: classes/pref/feeds.php:1111
-#: classes/pref/feeds.php:1164
+#: classes/pref/feeds.php:1112
+#: classes/pref/feeds.php:1165
 msgid "All done."
 msgstr "Alt ferdig."
 
-#: classes/pref/feeds.php:1219
+#: classes/pref/feeds.php:1220
 #, fuzzy
 msgid "Feeds with errors"
 msgstr "Nyhetsstrømsredigerer"
 
-#: classes/pref/feeds.php:1239
+#: classes/pref/feeds.php:1240
 #, fuzzy
 msgid "Inactive feeds"
 msgstr "Hele nyhetsstrømmen"
 
-#: classes/pref/feeds.php:1276
+#: classes/pref/feeds.php:1277
 #, fuzzy
 msgid "Edit selected feeds"
 msgstr "Sletter den valgte nyhetsstrømmen..."
 
-#: classes/pref/feeds.php:1278
-#: classes/pref/feeds.php:1292
-#, fuzzy
-msgid "Reset sort order"
-msgstr "Nullstill passordet"
-
-#: classes/pref/feeds.php:1280
-#: js/prefs.js:1764
+#: classes/pref/feeds.php:1281
+#: js/prefs.js:1770
 #, fuzzy
 msgid "Batch subscribe"
 msgstr "Avabonner"
 
-#: classes/pref/feeds.php:1285
+#: classes/pref/feeds.php:1286
 #, fuzzy
 msgid "Categories"
 msgstr "Kategori:"
 
-#: classes/pref/feeds.php:1288
+#: classes/pref/feeds.php:1289
 #, fuzzy
 msgid "Add category"
 msgstr "Legger til kategori for nyhetsstrømmer"
 
-#: classes/pref/feeds.php:1290
+#: classes/pref/feeds.php:1291
 #, fuzzy
 msgid "(Un)hide empty categories"
 msgstr "Rediger kategorier"
 
-#: classes/pref/feeds.php:1294
+#: classes/pref/feeds.php:1295
 #, fuzzy
 msgid "Remove selected"
 msgstr "Fjerne valgte filtre?"
 
-#: classes/pref/feeds.php:1308
+#: classes/pref/feeds.php:1309
 #, fuzzy
 msgid "More actions..."
 msgstr "Handlinger..."
 
-#: classes/pref/feeds.php:1312
+#: classes/pref/feeds.php:1313
 msgid "Manual purge"
 msgstr "Slett manuelt"
 
-#: classes/pref/feeds.php:1316
+#: classes/pref/feeds.php:1317
 msgid "Clear feed data"
 msgstr "Slett nyhetsstrømsdata"
 
-#: classes/pref/feeds.php:1367
+#: classes/pref/feeds.php:1368
 msgid "OPML"
 msgstr "OPML"
 
-#: classes/pref/feeds.php:1369
+#: classes/pref/feeds.php:1370
 msgid "Using OPML you can export and import your feeds, filters, labels and Tiny Tiny RSS settings."
 msgstr ""
 
-#: classes/pref/feeds.php:1371
+#: classes/pref/feeds.php:1372
 msgid "Only main settings profile can be migrated using OPML."
 msgstr ""
 
-#: classes/pref/feeds.php:1384
+#: classes/pref/feeds.php:1385
 #, fuzzy
 msgid "Import my OPML"
 msgstr "Importerer OPML (bruker DOMXML-utvidelsen)..."
 
-#: classes/pref/feeds.php:1388
+#: classes/pref/feeds.php:1389
 msgid "Filename:"
 msgstr ""
 
-#: classes/pref/feeds.php:1390
+#: classes/pref/feeds.php:1391
 #, fuzzy
 msgid "Include settings"
 msgstr "Inkluder i e-postsammendraget"
 
-#: classes/pref/feeds.php:1394
+#: classes/pref/feeds.php:1395
 #, fuzzy
 msgid "Export OPML"
 msgstr "Eksporter OPML"
 
-#: classes/pref/feeds.php:1398
+#: classes/pref/feeds.php:1399
 #, fuzzy
 msgid "Your OPML can be published publicly and can be subscribed by anyone who knows the URL below."
 msgstr "Publiserte artikler kan bli eksportert som en offentlig RSS-nyhetskanal og kan bli abonnert på av alle som vet adressen som blir spesifisert nedenfor."
 
-#: classes/pref/feeds.php:1400
+#: classes/pref/feeds.php:1401
 msgid "Published OPML does not include your Tiny Tiny RSS settings, feeds that require authentication or feeds hidden from Popular feeds."
 msgstr ""
 
 #: classes/pref/feeds.php:1403
+msgid "Public OPML URL"
+msgstr ""
+
+#: classes/pref/feeds.php:1404
 msgid "Display published OPML URL"
 msgstr ""
 
-#: classes/pref/feeds.php:1413
+#: classes/pref/feeds.php:1414
 #, fuzzy
 msgid "Firefox integration"
 msgstr "Firefox integrering"
 
-#: classes/pref/feeds.php:1415
+#: classes/pref/feeds.php:1416
 msgid "This Tiny Tiny RSS site can be used as a Firefox Feed Reader by clicking the link below."
 msgstr "Denne Tiny Tiny RSS siden kan bli brukt som nyhetsstrømsleser for Firefox ved å trykke på lenken nedenfor."
 
-#: classes/pref/feeds.php:1422
+#: classes/pref/feeds.php:1423
 msgid "Click here to register this site as a feed reader."
 msgstr "Trykk her for å registrere denne siden som nyhetsstrømsleser"
 
-#: classes/pref/feeds.php:1430
+#: classes/pref/feeds.php:1431
 #, fuzzy
 msgid "Published & shared articles / Generated feeds"
 msgstr "Sett poeng på nytt for artiklene i de valgte nyhetskanalene?"
 
-#: classes/pref/feeds.php:1432
+#: classes/pref/feeds.php:1433
 #, fuzzy
 msgid "Published articles and generated feeds"
 msgstr "Sett poeng på nytt for artiklene i de valgte nyhetskanalene?"
 
-#: classes/pref/feeds.php:1434
+#: classes/pref/feeds.php:1435
 msgid "Published articles are exported as a public RSS feed and can be subscribed by anyone who knows the URL specified below."
 msgstr "Publiserte artikler kan bli eksportert som en offentlig RSS-nyhetskanal og kan bli abonnert på av alle som vet adressen som blir spesifisert nedenfor."
 
-#: classes/pref/feeds.php:1440
+#: classes/pref/feeds.php:1441
 #, fuzzy
 msgid "Display URL"
 msgstr "Vis stikkord"
 
-#: classes/pref/feeds.php:1443
+#: classes/pref/feeds.php:1444
 msgid "Clear all generated URLs"
 msgstr ""
 
-#: classes/pref/feeds.php:1445
+#: classes/pref/feeds.php:1446
 #, fuzzy
 msgid "Articles shared by URL"
 msgstr "Marker artikkel som favoritt"
 
-#: classes/pref/feeds.php:1447
+#: classes/pref/feeds.php:1448
 msgid "You can disable all articles shared by unique URLs here."
 msgstr ""
 
-#: classes/pref/feeds.php:1450
+#: classes/pref/feeds.php:1451
 #, fuzzy
 msgid "Unshare all articles"
 msgstr "Uleste artikler"
 
-#: classes/pref/feeds.php:1528
+#: classes/pref/feeds.php:1529
 #, fuzzy
 msgid "These feeds have not been updated with new content for 3 months (oldest first):"
 msgstr "Disse nyhetsstrømmene kunne ikke oppdateres på grunn av feil:"
 
-#: classes/pref/feeds.php:1565
-#: classes/pref/feeds.php:1635
+#: classes/pref/feeds.php:1566
+#: classes/pref/feeds.php:1636
 #, fuzzy
 msgid "Click to edit feed"
 msgstr "Trykk for å endre"
 
-#: classes/pref/feeds.php:1583
-#: classes/pref/feeds.php:1655
+#: classes/pref/feeds.php:1584
+#: classes/pref/feeds.php:1656
 #, fuzzy
 msgid "Unsubscribe from selected feeds"
 msgstr "Fjern abonnement på valgte nyhetsstrømmer"
 
-#: classes/pref/feeds.php:1594
+#: classes/pref/feeds.php:1595
 msgid "These feeds have not been updated because of errors:"
 msgstr "Disse nyhetsstrømmene kunne ikke oppdateres på grunn av feil:"
 
+#: classes/pref/feeds.php:1758
+msgid "Add one valid RSS feed per line (no feed detection is done)"
+msgstr ""
+
+#: classes/pref/feeds.php:1767
+msgid "Feeds to subscribe, One per line"
+msgstr ""
+
+#: classes/pref/feeds.php:1789
+#, fuzzy
+msgid "Feeds require authentication."
+msgstr "Denne nyhetsstrømmen krever autentifisering"
+
 #: plugins/digest/digest_body.php:59
 #, fuzzy
 msgid "Your browser doesn't support Javascript, which is required for this application to function properly. Please check your browser settings."
@@ -3007,24 +2957,24 @@ msgstr "Sett som favorittartikkel"
 msgid "No file uploaded."
 msgstr "Ingen OPML-fil til å lastes opp."
 
-#: plugins/googlereaderimport/init.php:149
+#: plugins/googlereaderimport/init.php:153
 #, php-format
 msgid "All done. %d out of %d articles imported."
 msgstr ""
 
-#: plugins/googlereaderimport/init.php:153
+#: plugins/googlereaderimport/init.php:157
 msgid "The document has incorrect format."
 msgstr ""
 
-#: plugins/googlereaderimport/init.php:322
+#: plugins/googlereaderimport/init.php:326
 msgid "Import starred or shared items from Google Reader"
 msgstr ""
 
-#: plugins/googlereaderimport/init.php:326
+#: plugins/googlereaderimport/init.php:330
 msgid "Paste your starred.json or shared.json into the form below."
 msgstr ""
 
-#: plugins/googlereaderimport/init.php:340
+#: plugins/googlereaderimport/init.php:344
 msgid "Import my Starred items"
 msgstr ""
 
@@ -3033,6 +2983,41 @@ msgstr ""
 msgid "Linked"
 msgstr "Lenke"
 
+#: plugins/instances/init.php:207
+#: plugins/instances/init.php:399
+msgid "Instance"
+msgstr ""
+
+#: plugins/instances/init.php:218
+#: plugins/instances/init.php:315
+#: plugins/instances/init.php:408
+msgid "Instance URL"
+msgstr ""
+
+#: plugins/instances/init.php:229
+#: plugins/instances/init.php:418
+#, fuzzy
+msgid "Access key:"
+msgstr "Tilgangsnivå:"
+
+#: plugins/instances/init.php:232
+#: plugins/instances/init.php:316
+#: plugins/instances/init.php:421
+#, fuzzy
+msgid "Access key"
+msgstr "Tilgangsnivå"
+
+#: plugins/instances/init.php:236
+#: plugins/instances/init.php:425
+msgid "Use one access key for both linked instances."
+msgstr ""
+
+#: plugins/instances/init.php:244
+#: plugins/instances/init.php:433
+#, fuzzy
+msgid "Generate new key"
+msgstr "Generert nyhetsstrøm"
+
 #: plugins/instances/init.php:295
 #, fuzzy
 msgid "Link instance"
@@ -3055,6 +3040,11 @@ msgstr ""
 msgid "Stored feeds"
 msgstr "Flere nyhetsstrømmer"
 
+#: plugins/instances/init.php:437
+#, fuzzy
+msgid "Create link"
+msgstr "Lag"
+
 #: plugins/share/init.php:27
 #, fuzzy
 msgid "Share by URL"
@@ -3119,188 +3109,192 @@ msgstr ""
 msgid "close"
 msgstr ""
 
-#: js/functions.js:627
+#: js/functions.js:621
 #, fuzzy
 msgid "Date syntax appears to be correct:"
 msgstr "Gammelt passord er feil"
 
-#: js/functions.js:630
+#: js/functions.js:624
 #, fuzzy
 msgid "Date syntax is incorrect."
 msgstr "Gammelt passord er feil"
 
-#: js/functions.js:724
+#: js/functions.js:636
+msgid "Error explained"
+msgstr ""
+
+#: js/functions.js:718
 #, fuzzy
 msgid "Upload complete."
 msgstr "Oppdaterte artikler"
 
-#: js/functions.js:748
+#: js/functions.js:742
 #, fuzzy
 msgid "Remove stored feed icon?"
 msgstr "Fjern lagrede data"
 
-#: js/functions.js:753
+#: js/functions.js:747
 #, fuzzy
 msgid "Removing feed icon..."
 msgstr "Fjerner nyhetsstrøm..."
 
-#: js/functions.js:758
+#: js/functions.js:752
 #, fuzzy
 msgid "Feed icon removed."
 msgstr "Nyhetsstrømmen ble ikke funnet"
 
-#: js/functions.js:780
+#: js/functions.js:774
 #, fuzzy
 msgid "Please select an image file to upload."
 msgstr "Vennligst velg en nyhetsstrøm"
 
-#: js/functions.js:782
+#: js/functions.js:776
 msgid "Upload new icon for this feed?"
 msgstr ""
 
-#: js/functions.js:783
+#: js/functions.js:777
 #, fuzzy
 msgid "Uploading, please wait..."
 msgstr "laster, vennligst vent"
 
-#: js/functions.js:799
+#: js/functions.js:793
 msgid "Please enter label caption:"
 msgstr "Vennligst skriv inn merkelappstekst:"
 
-#: js/functions.js:804
+#: js/functions.js:798
 msgid "Can't create label: missing caption."
 msgstr "Kan ikke skape merkelapp, mangler overskrift."
 
-#: js/functions.js:847
+#: js/functions.js:841
 msgid "Subscribe to Feed"
 msgstr "Abonner på nyhetsstrøm"
 
-#: js/functions.js:874
+#: js/functions.js:868
 #, fuzzy
 msgid "Subscribed to %s"
 msgstr "Abonnerer på følgende nyhetsstrømmer:"
 
-#: js/functions.js:879
+#: js/functions.js:873
 msgid "Specified URL seems to be invalid."
 msgstr ""
 
-#: js/functions.js:882
+#: js/functions.js:876
 msgid "Specified URL doesn't seem to contain any feeds."
 msgstr ""
 
-#: js/functions.js:935
+#: js/functions.js:929
 #, fuzzy
 msgid "Couldn't download the specified URL: %s"
 msgstr "Kan ikke abonnere: Ingen nyhetsstrømsadresse er blitt gitt"
 
-#: js/functions.js:939
+#: js/functions.js:933
 #, fuzzy
 msgid "You are already subscribed to this feed."
 msgstr "Du kan ikke fjerne abonnement fra kategorien."
 
-#: js/functions.js:1069
+#: js/functions.js:1063
 #, fuzzy
 msgid "Edit rule"
 msgstr "Filtre"
 
-#: js/functions.js:1095
+#: js/functions.js:1089
 #, fuzzy
 msgid "Edit action"
 msgstr "Nyhetsstrømshandlinger"
 
-#: js/functions.js:1132
+#: js/functions.js:1126
 msgid "Create Filter"
 msgstr "Lag filter"
 
-#: js/functions.js:1247
+#: js/functions.js:1241
 msgid "Reset subscription? Tiny Tiny RSS will try to subscribe to the notification hub again on next feed update."
 msgstr ""
 
-#: js/functions.js:1258
+#: js/functions.js:1252
 #, fuzzy
 msgid "Subscription reset."
 msgstr "Abonner på nyhetsstrøm..."
 
-#: js/functions.js:1268
+#: js/functions.js:1262
 #: js/tt-rss.js:619
 msgid "Unsubscribe from %s?"
 msgstr "Fjerne abonnement på %s?"
 
-#: js/functions.js:1271
+#: js/functions.js:1265
 msgid "Removing feed..."
 msgstr "Fjerner nyhetsstrøm..."
 
-#: js/functions.js:1379
+#: js/functions.js:1373
 #, fuzzy
 msgid "Please enter category title:"
 msgstr "Vennligst skriv inn et notat for denne artikkelen:"
 
-#: js/functions.js:1410
+#: js/functions.js:1404
 msgid "Generate new syndication address for this feed?"
 msgstr ""
 
-#: js/functions.js:1414
-#: js/prefs.js:1234
+#: js/functions.js:1408
+#: js/prefs.js:1222
 msgid "Trying to change address..."
 msgstr "Prøver å endre adressen..."
 
-#: js/functions.js:1601
+#: js/functions.js:1595
 #: js/tt-rss.js:396
 #: js/tt-rss.js:600
 msgid "You can't edit this kind of feed."
 msgstr "Du kan ikke endre denne typen nyhetsstrøm"
 
-#: js/functions.js:1616
+#: js/functions.js:1610
 #, fuzzy
 msgid "Edit Feed"
 msgstr "Rediger nyhetsstrømmen"
 
-#: js/functions.js:1622
+#: js/functions.js:1616
 #: js/prefs.js:194
 #: js/prefs.js:749
 #, fuzzy
 msgid "Saving data..."
 msgstr "Lagrer Nyhetsstrøm"
 
-#: js/functions.js:1654
+#: js/functions.js:1648
 #, fuzzy
 msgid "More Feeds"
 msgstr "Flere nyhetsstrømmer"
 
-#: js/functions.js:1715
-#: js/functions.js:1825
+#: js/functions.js:1709
+#: js/functions.js:1819
 #: 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
+#: js/prefs.js:1198
+#: js/prefs.js:1343
 msgid "No feeds are selected."
 msgstr "Ingen nyhetsstrømmer er valgt"
 
-#: js/functions.js:1757
+#: js/functions.js:1751
 msgid "Remove selected feeds from the archive? Feeds with stored articles will not be removed."
 msgstr ""
 
-#: js/functions.js:1796
+#: js/functions.js:1790
 #, fuzzy
 msgid "Feeds with update errors"
 msgstr "Oppdateringsfeil"
 
-#: js/functions.js:1807
-#: js/prefs.js:1192
+#: js/functions.js:1801
+#: js/prefs.js:1180
 #, fuzzy
 msgid "Remove selected feeds?"
 msgstr "Fjerne valgte filtre?"
 
-#: js/functions.js:1810
-#: js/prefs.js:1195
+#: js/functions.js:1804
+#: js/prefs.js:1183
 #, fuzzy
 msgid "Removing selected feeds..."
 msgstr "Fjerner valgte filtre..."
 
-#: js/functions.js:1908
+#: js/functions.js:1902
 msgid "Help"
 msgstr "Hjelp"
 
@@ -3314,7 +3308,7 @@ msgstr "Rediger kategorier"
 msgid "Remove category"
 msgstr "Lag kategori"
 
-#: js/PrefFilterTree.js:32
+#: js/PrefFilterTree.js:48
 #, fuzzy
 msgid "Inverse"
 msgstr "(Motsatt)"
@@ -3354,7 +3348,7 @@ msgid "Removing selected labels..."
 msgstr "Fjerner merkede merkelapper..."
 
 #: js/prefs.js:295
-#: js/prefs.js:1396
+#: js/prefs.js:1384
 msgid "No labels are selected."
 msgstr "Ingen merkelapper er markert"
 
@@ -3461,162 +3455,162 @@ msgstr "Nyhetsstrømsredigerer"
 msgid "Save changes to selected feeds?"
 msgstr "Lagre endringer til de valgte nyhetsstrømmene?"
 
-#: js/prefs.js:797
+#: js/prefs.js:785
 #, fuzzy
 msgid "OPML Import"
 msgstr "Importer"
 
-#: js/prefs.js:824
+#: js/prefs.js:812
 #, fuzzy
 msgid "Please choose an OPML file first."
 msgstr "Vennligst velg en eller flere nyhetsstrømmer først"
 
-#: js/prefs.js:827
+#: js/prefs.js:815
 #: plugins/import_export/import_export.js:115
 #: plugins/googlereaderimport/init.js:45
 #, fuzzy
 msgid "Importing, please wait..."
 msgstr "laster, vennligst vent"
 
-#: js/prefs.js:980
+#: js/prefs.js:968
 msgid "Reset to defaults?"
 msgstr "Tilbakefør til standardinnstillingene"
 
-#: js/prefs.js:1099
+#: js/prefs.js:1087
 msgid "Remove category %s? Any nested feeds would be placed into Uncategorized."
 msgstr ""
 
-#: js/prefs.js:1105
+#: js/prefs.js:1093
 #, fuzzy
 msgid "Removing category..."
 msgstr "Lag kategori"
 
-#: js/prefs.js:1126
+#: js/prefs.js:1114
 msgid "Remove selected categories?"
 msgstr "Fjerne valgte kategorier?"
 
-#: js/prefs.js:1129
+#: js/prefs.js:1117
 msgid "Removing selected categories..."
 msgstr "Fjerner valgte kategorier..."
 
-#: js/prefs.js:1142
+#: js/prefs.js:1130
 msgid "No categories are selected."
 msgstr "Ingen kategorier er valgt."
 
-#: js/prefs.js:1150
+#: js/prefs.js:1138
 #, fuzzy
 msgid "Category title:"
 msgstr "Kategoriredigerer"
 
-#: js/prefs.js:1154
+#: js/prefs.js:1142
 #, fuzzy
 msgid "Creating category..."
 msgstr "Lag filter..."
 
-#: js/prefs.js:1181
+#: js/prefs.js:1169
 #, fuzzy
 msgid "Feeds without recent updates"
 msgstr "Oppdateringsfeil"
 
-#: js/prefs.js:1230
+#: js/prefs.js:1218
 #, fuzzy
 msgid "Replace current OPML publishing address with a new one?"
 msgstr "Bytt ut nåværende publiseringsadresse med en ny?"
 
-#: js/prefs.js:1319
+#: js/prefs.js:1307
 msgid "Clearing feed..."
 msgstr "Rensker nyhetsstrøm..."
 
-#: js/prefs.js:1339
+#: js/prefs.js:1327
 msgid "Rescore articles in selected feeds?"
 msgstr "Sett poeng på nytt for artiklene i de valgte nyhetskanalene?"
 
-#: js/prefs.js:1342
+#: js/prefs.js:1330
 #, fuzzy
 msgid "Rescoring selected feeds..."
 msgstr "Rensker valgt nyhetsstrøm..."
 
-#: js/prefs.js:1362
+#: js/prefs.js:1350
 msgid "Rescore all articles? This operation may take a lot of time."
 msgstr "Endre poengene til artiklene? Dette kan ta lang tid."
 
-#: js/prefs.js:1365
+#: js/prefs.js:1353
 msgid "Rescoring feeds..."
 msgstr "Setter poeng på nytt for nyhetskanalene..."
 
-#: js/prefs.js:1382
+#: js/prefs.js:1370
 #, fuzzy
 msgid "Reset selected labels to default colors?"
 msgstr "Sett merkelappsfargene til standard?"
 
-#: js/prefs.js:1419
+#: js/prefs.js:1407
 msgid "Settings Profiles"
 msgstr ""
 
-#: js/prefs.js:1428
+#: js/prefs.js:1416
 msgid "Remove selected profiles? Active and default profiles will not be removed."
 msgstr ""
 
-#: js/prefs.js:1431
+#: js/prefs.js:1419
 #, fuzzy
 msgid "Removing selected profiles..."
 msgstr "Fjerner valgte filtre..."
 
-#: js/prefs.js:1446
+#: js/prefs.js:1434
 #, fuzzy
 msgid "No profiles are selected."
 msgstr "Ingen artikkel er valgt."
 
-#: js/prefs.js:1454
-#: js/prefs.js:1507
+#: js/prefs.js:1442
+#: js/prefs.js:1495
 #, fuzzy
 msgid "Activate selected profile?"
 msgstr "Fjerne valgte filtre?"
 
-#: js/prefs.js:1470
-#: js/prefs.js:1523
+#: js/prefs.js:1458
+#: js/prefs.js:1511
 #, fuzzy
 msgid "Please choose a profile to activate."
 msgstr "Vennligst velg en eller flere nyhetsstrømmer først"
 
-#: js/prefs.js:1475
+#: js/prefs.js:1463
 #, fuzzy
 msgid "Creating profile..."
 msgstr "Lag filter"
 
-#: js/prefs.js:1531
+#: js/prefs.js:1519
 msgid "This will invalidate all previously generated feed URLs. Continue?"
 msgstr ""
 
-#: js/prefs.js:1534
-#: js/prefs.js:1553
+#: js/prefs.js:1522
+#: js/prefs.js:1541
 #, fuzzy
 msgid "Clearing URLs..."
 msgstr "Rensker nyhetsstrøm..."
 
-#: js/prefs.js:1541
+#: js/prefs.js:1529
 #, fuzzy
 msgid "Generated URLs cleared."
 msgstr "Generert nyhetsstrøm"
 
-#: js/prefs.js:1550
+#: js/prefs.js:1538
 msgid "This will invalidate all previously shared article URLs. Continue?"
 msgstr ""
 
-#: js/prefs.js:1560
+#: js/prefs.js:1548
 msgid "Shared URLs cleared."
 msgstr ""
 
-#: js/prefs.js:1648
+#: js/prefs.js:1654
 msgid "Label Editor"
 msgstr "Merkelappredigerer"
 
-#: js/prefs.js:1770
+#: js/prefs.js:1776
 #, fuzzy
 msgid "Subscribing to feeds..."
 msgstr "Abonnerer på nyhetsstrømmen..."
 
-#: js/prefs.js:1807
+#: js/prefs.js:1813
 msgid "Clear stored data for this plugin?"
 msgstr ""
 
@@ -3638,28 +3632,32 @@ msgstr "Vennligst velg en eller flere nyhetsstrømmer først"
 msgid "Please enable embed_original plugin first."
 msgstr "Vennligst velg en eller flere nyhetsstrømmer først"
 
+#: js/tt-rss.js:587
+msgid "Select item(s) by tags"
+msgstr ""
+
 #: js/tt-rss.js:608
 msgid "You can't unsubscribe from the category."
 msgstr "Du kan ikke fjerne abonnement fra kategorien."
 
 #: js/tt-rss.js:613
-#: js/tt-rss.js:769
+#: js/tt-rss.js:765
 msgid "Please select some feed first."
 msgstr "Vennligst velg en eller flere nyhetsstrømmer først"
 
-#: js/tt-rss.js:764
+#: js/tt-rss.js:760
 msgid "You can't rescore this kind of feed."
 msgstr "Du kan ikke endre poengsummen for denne typen nyhetskanal"
 
-#: js/tt-rss.js:774
+#: js/tt-rss.js:770
 msgid "Rescore articles in %s?"
 msgstr "Endre poengene for artiklene i %s?"
 
-#: js/tt-rss.js:777
+#: js/tt-rss.js:773
 msgid "Rescoring articles..."
 msgstr "Endrer poengsummen for artiklene..."
 
-#: js/tt-rss.js:911
+#: js/tt-rss.js:907
 #, fuzzy
 msgid "New version available!"
 msgstr "Ny versjon av Tiny Tiny Rss er tilgjengelig!"
@@ -3692,123 +3690,119 @@ msgstr "Fjern publiseringen av artikkelen."
 #: js/viewfeed.js:734
 #: js/viewfeed.js:797
 #: js/viewfeed.js:831
-#: js/viewfeed.js:968
-#: js/viewfeed.js:1011
-#: js/viewfeed.js:1064
-#: js/viewfeed.js:2108
+#: js/viewfeed.js:951
+#: js/viewfeed.js:994
+#: js/viewfeed.js:1047
+#: js/viewfeed.js:2096
 #: plugins/mailto/init.js:7
 #: plugins/mail/mail.js:7
 msgid "No articles are selected."
 msgstr "Ingen artikler er valgt."
 
-#: js/viewfeed.js:948
-msgid "Mark all visible articles in %s as read?"
-msgstr "Marker alle synlige artikler i %s som leste?"
-
-#: js/viewfeed.js:976
+#: js/viewfeed.js:959
 #, fuzzy
 msgid "Delete %d selected article in %s?"
 msgid_plural "Delete %d selected articles in %s?"
 msgstr[0] "Marker %d valgte artikler i %s som leste?"
 msgstr[1] "Marker %d valgte artikler i %s som leste?"
 
-#: js/viewfeed.js:978
+#: js/viewfeed.js:961
 #, fuzzy
 msgid "Delete %d selected article?"
 msgid_plural "Delete %d selected articles?"
 msgstr[0] "Fjerne merkede artikler fra merkelappen?"
 msgstr[1] "Fjerne merkede artikler fra merkelappen?"
 
-#: js/viewfeed.js:1020
+#: js/viewfeed.js:1003
 #, fuzzy
 msgid "Archive %d selected article in %s?"
 msgid_plural "Archive %d selected articles in %s?"
 msgstr[0] "Marker %d valgte artikler i %s som leste?"
 msgstr[1] "Marker %d valgte artikler i %s som leste?"
 
-#: js/viewfeed.js:1023
+#: js/viewfeed.js:1006
 #, fuzzy
 msgid "Move %d archived article back?"
 msgid_plural "Move %d archived articles back?"
 msgstr[0] "Favorittartikler"
 msgstr[1] "Favorittartikler"
 
-#: js/viewfeed.js:1025
+#: js/viewfeed.js:1008
 msgid "Please note that unstarred articles might get purged on next feed update."
 msgstr ""
 
-#: js/viewfeed.js:1070
+#: js/viewfeed.js:1053
 #, fuzzy
 msgid "Mark %d selected article in %s as read?"
 msgid_plural "Mark %d selected articles in %s as read?"
 msgstr[0] "Marker %d valgte artikler i %s som leste?"
 msgstr[1] "Marker %d valgte artikler i %s som leste?"
 
-#: js/viewfeed.js:1094
+#: js/viewfeed.js:1077
 #, fuzzy
 msgid "Edit article Tags"
 msgstr "Endre Stikkord"
 
-#: js/viewfeed.js:1100
+#: js/viewfeed.js:1083
 msgid "Saving article tags..."
 msgstr "Lagrer artikkelens kategorier..."
 
-#: js/viewfeed.js:1337
+#: js/viewfeed.js:1323
 msgid "No article is selected."
 msgstr "Ingen artikkel er valgt."
 
-#: js/viewfeed.js:1372
+#: js/viewfeed.js:1358
 msgid "No articles found to mark"
 msgstr "Ingen artikler funnet som kan markeres"
 
-#: js/viewfeed.js:1374
+#: js/viewfeed.js:1360
 #, fuzzy
 msgid "Mark %d article as read?"
 msgid_plural "Mark %d articles as read?"
 msgstr[0] "Marker %d artikkel/artikler som leste?"
 msgstr[1] "Marker %d artikkel/artikler som leste?"
 
-#: js/viewfeed.js:1884
+#: js/viewfeed.js:1872
 #, fuzzy
 msgid "Open original article"
 msgstr "Vis opprinnelig artikkelinnhold"
 
-#: js/viewfeed.js:1890
+#: js/viewfeed.js:1878
 #, fuzzy
 msgid "Display article URL"
 msgstr "Vis stikkord"
 
-#: js/viewfeed.js:1909
+#: js/viewfeed.js:1897
 #, fuzzy
 msgid "Toggle marked"
 msgstr "Sett som favoritt"
 
-#: js/viewfeed.js:1995
+#: js/viewfeed.js:1983
 #, fuzzy
 msgid "Remove label"
 msgstr "Fjerne merkede merkelapper?"
 
-#: js/viewfeed.js:2019
+#: js/viewfeed.js:2007
 #, fuzzy
 msgid "Playing..."
 msgstr "Laster nyhetsstrømmer..."
 
-#: js/viewfeed.js:2020
+#: js/viewfeed.js:2008
 #, fuzzy
 msgid "Click to pause"
 msgstr "Trykk for å endre"
 
-#: js/viewfeed.js:2077
+#: js/viewfeed.js:2065
 #, fuzzy
 msgid "Please enter new score for selected articles:"
 msgstr "Vennligst skriv inn et notat for denne artikkelen:"
 
-#: js/viewfeed.js:2119
+#: js/viewfeed.js:2107
 #, fuzzy
 msgid "Please enter new score for this article:"
 msgstr "Vennligst skriv inn et notat for denne artikkelen:"
 
-#: js/viewfeed.js:2152
+#: js/viewfeed.js:2140
 #, fuzzy
 msgid "Article URL:"
 msgstr "Alle artikler"
@@ -3932,6 +3926,22 @@ msgstr "Marker artikkel som favoritt"
 msgid "Live updating is considered experimental. Backup your tt-rss directory before continuing. Please type 'yes' to continue."
 msgstr ""
 
+#, fuzzy
+#~ msgid "(%d feed)"
+#~ msgid_plural "(%d feeds)"
+#~ msgstr[0] "Rediger nyhetsstrømmen"
+#~ msgstr[1] "Rediger nyhetsstrømmen"
+
+#~ msgid "Notice"
+#~ msgstr "Notis"
+
+#, fuzzy
+#~ msgid "Tag Cloud"
+#~ msgstr "Tag-sky"
+
+#~ msgid "Mark all visible articles in %s as read?"
+#~ msgstr "Marker alle synlige artikler i %s som leste?"
+
 #~ msgid "Date"
 #~ msgstr "Dato"
 
@@ -4945,9 +4955,6 @@ msgstr ""
 #~ msgid "SQL Expression"
 #~ msgstr "SQL-uttrykk"
 
-#~ msgid "[No caption]"
-#~ msgstr "Ingen bildetekst"
-
 #~ msgid "Labels and SQL Expressions"
 #~ msgstr "Navnelapper og SQL-uttrykk"
 
index 9b77b490a6abb4abfdd1237eba685cff2faa2db8..2b8326aa68be117e53d202feee06b4ee5d3ef225 100644 (file)
Binary files a/locale/nl_NL/LC_MESSAGES/messages.mo and b/locale/nl_NL/LC_MESSAGES/messages.mo differ
index b1d47ac0946ef55fc2c8a3c540d9c85d03ec4751..a091161c6b3ff3120223f9d71ab286b2654316a8 100644 (file)
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: TT-RSS\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-03-31 12:47+0400\n"
+"POT-Creation-Date: 2013-04-01 16:28+0400\n"
 "PO-Revision-Date: 2013-03-23 11:28+0100\n"
 "Last-Translator: Dingoe <translations@gvmelle.com>\n"
 "Language-Team: translations <LL@li.org>\n"
@@ -141,9 +141,9 @@ msgstr "Tiny Tiny RSS database is bijgewerkt."
 #: register.php:336
 #: register.php:346
 #: register.php:358
-#: classes/handler/public.php:625
-#: classes/handler/public.php:713
-#: classes/handler/public.php:795
+#: classes/handler/public.php:626
+#: classes/handler/public.php:714
+#: classes/handler/public.php:796
 msgid "Return to Tiny Tiny RSS"
 msgstr "Ga terug naar Tiny Tiny RSS"
 
@@ -259,36 +259,37 @@ msgstr "SQL escaping test mislukt. Controleer uw database en de PHP configuratie
 
 #: index.php:135
 #: index.php:154
-#: index.php:264
-#: prefs.php:102
+#: index.php:263
+#: prefs.php:103
 #: classes/backend.php:5
 #: classes/pref/labels.php:296
-#: classes/pref/filters.php:628
-#: classes/pref/feeds.php:1330
+#: classes/pref/filters.php:680
+#: classes/pref/feeds.php:1331
 #: plugins/digest/digest_body.php:63
 #: js/feedlist.js:128
 #: js/feedlist.js:448
 #: js/functions.js:420
-#: js/functions.js:814
-#: js/functions.js:1250
-#: js/functions.js:1385
-#: js/functions.js:1697
+#: js/functions.js:808
+#: js/functions.js:1244
+#: js/functions.js:1379
+#: js/functions.js:1691
 #: js/prefs.js:86
 #: js/prefs.js:576
 #: js/prefs.js:666
-#: js/prefs.js:870
-#: js/prefs.js:1457
-#: js/prefs.js:1510
-#: js/prefs.js:1568
-#: js/prefs.js:1584
-#: js/prefs.js:1600
-#: js/prefs.js:1619
-#: js/prefs.js:1792
-#: js/prefs.js:1808
+#: js/prefs.js:858
+#: js/prefs.js:1445
+#: js/prefs.js:1498
+#: js/prefs.js:1557
+#: js/prefs.js:1574
+#: js/prefs.js:1590
+#: js/prefs.js:1606
+#: js/prefs.js:1625
+#: js/prefs.js:1798
+#: js/prefs.js:1814
 #: js/tt-rss.js:475
 #: js/tt-rss.js:492
 #: js/viewfeed.js:774
-#: js/viewfeed.js:1259
+#: js/viewfeed.js:1245
 #: plugins/import_export/import_export.js:17
 #: plugins/updater/updater.js:17
 msgid "Loading, please wait..."
@@ -311,13 +312,13 @@ msgid "All Articles"
 msgstr "Alle artikelen"
 
 #: index.php:176
-#: include/functions.php:1974
+#: include/functions.php:1924
 #: classes/feeds.php:106
 msgid "Starred"
 msgstr "Met ster"
 
 #: index.php:177
-#: include/functions.php:1975
+#: include/functions.php:1925
 #: classes/feeds.php:107
 msgid "Published"
 msgstr "Gepubliceerd"
@@ -357,23 +358,16 @@ msgstr ""
 msgid "Oldest first"
 msgstr ""
 
-#: index.php:195
-#: classes/pref/feeds.php:567
-#: classes/pref/feeds.php:792
-msgid "Update"
-msgstr "Bijwerken"
-
-#: index.php:197
+#: index.php:192
 #, fuzzy
 msgid "Mark feed as read"
 msgstr "Markeer alle feeds als gelezen"
 
-#: index.php:200
-#: index.php:235
-#: include/functions.php:1964
+#: index.php:195
+#: index.php:234
+#: include/functions.php:1914
 #: include/localized_schema.php:10
 #: classes/feeds.php:111
-#: classes/feeds.php:136
 #: classes/feeds.php:437
 #: js/FeedTree.js:128
 #: js/FeedTree.js:156
@@ -381,110 +375,115 @@ msgstr "Markeer alle feeds als gelezen"
 msgid "Mark as read"
 msgstr "Markeren als gelezen"
 
-#: index.php:201
-#: include/functions.php:1860
-#: include/functions.php:1972
+#: index.php:196
+#: include/functions.php:1810
+#: include/functions.php:1922
 msgid "All articles"
 msgstr "Alle artikelen"
 
-#: index.php:202
+#: index.php:197
 msgid "Older than one day"
 msgstr ""
 
-#: index.php:203
+#: index.php:198
 msgid "Older than one week"
 msgstr ""
 
-#: index.php:204
+#: index.php:199
 msgid "Older than two weeks"
 msgstr ""
 
-#: index.php:212
+#: index.php:204
+#, fuzzy
+msgid "Refresh"
+msgstr "Nieuw"
+
+#: index.php:211
 msgid "Communication problem with server."
 msgstr "communicatieprobleem met de server."
 
-#: index.php:220
+#: index.php:219
 msgid "New version of Tiny Tiny RSS is available!"
 msgstr "Er is een nieuwe versie van Tiny Tiny RSS beschikbaar!"
 
-#: index.php:225
+#: index.php:224
 msgid "Actions..."
 msgstr "Acties..."
 
-#: index.php:227
+#: index.php:226
 msgid "Preferences..."
 msgstr "Voorkeuren…"
 
-#: index.php:228
+#: index.php:227
 msgid "Search..."
 msgstr "zoeken..."
 
-#: index.php:229
+#: index.php:228
 msgid "Feed actions:"
 msgstr "Feed acties:"
 
-#: index.php:230
-#: classes/handler/public.php:555
+#: index.php:229
+#: classes/handler/public.php:556
 msgid "Subscribe to feed..."
 msgstr "Abonneren op feed..."
 
-#: index.php:231
+#: index.php:230
 msgid "Edit this feed..."
 msgstr "Bewerk deze feed..."
 
-#: index.php:232
+#: index.php:231
 msgid "Rescore feed"
 msgstr "Feed opnieuw score geven"
 
-#: index.php:233
-#: classes/pref/feeds.php:716
-#: classes/pref/feeds.php:1303
+#: index.php:232
+#: classes/pref/feeds.php:717
+#: classes/pref/feeds.php:1304
 #: js/PrefFeedTree.js:73
 msgid "Unsubscribe"
 msgstr "Abonnement opzeggen"
 
-#: index.php:234
+#: index.php:233
 msgid "All feeds:"
 msgstr "Alle feeds:"
 
-#: index.php:236
+#: index.php:235
 msgid "(Un)hide read feeds"
 msgstr "Toon/Verberg gelezen feeds"
 
-#: index.php:237
+#: index.php:236
 msgid "Other actions:"
 msgstr "andere acties:"
 
-#: index.php:239
+#: index.php:238
 msgid "Switch to digest..."
 msgstr "Omschakelen naar samenvatting…"
 
-#: index.php:241
+#: index.php:240
 msgid "Show tag cloud..."
 msgstr "Toon tagwolk..."
 
-#: index.php:242
-#: include/functions.php:1950
+#: index.php:241
+#: include/functions.php:1900
 msgid "Toggle widescreen mode"
 msgstr "Wisselen breedbeeld modus"
 
-#: index.php:243
+#: index.php:242
 msgid "Select by tags..."
 msgstr "Selectie met tags..."
 
-#: index.php:244
+#: index.php:243
 msgid "Create label..."
 msgstr "Aanmaken label…"
 
-#: index.php:245
+#: index.php:244
 msgid "Create filter..."
 msgstr "Aanmaken filter…"
 
-#: index.php:246
+#: index.php:245
 msgid "Keyboard shortcuts help"
 msgstr "Hulp bij sneltoetscombinaties"
 
-#: index.php:248
+#: index.php:247
 #: plugins/digest/digest_body.php:77
 #: plugins/mobile/mobile-functions.php:62
 #: plugins/mobile/mobile-functions.php:237
@@ -492,41 +491,41 @@ msgid "Logout"
 msgstr "Afmelden"
 
 #: prefs.php:36
-#: prefs.php:122
-#: include/functions.php:1977
+#: prefs.php:121
+#: include/functions.php:1927
 #: classes/pref/prefs.php:377
 msgid "Preferences"
 msgstr "Voorkeuren"
 
-#: prefs.php:113
+#: prefs.php:112
 msgid "Keyboard shortcuts"
 msgstr "Sneltoetscombinaties"
 
-#: prefs.php:114
+#: prefs.php:113
 msgid "Exit preferences"
 msgstr "Verlaat voorkeuren"
 
-#: prefs.php:125
-#: classes/pref/feeds.php:106
-#: classes/pref/feeds.php:1208
-#: classes/pref/feeds.php:1271
+#: prefs.php:124
+#: classes/pref/feeds.php:107
+#: classes/pref/feeds.php:1209
+#: classes/pref/feeds.php:1272
 msgid "Feeds"
 msgstr "Feeds"
 
-#: prefs.php:128
-#: classes/pref/filters.php:120
+#: prefs.php:127
+#: classes/pref/filters.php:156
 msgid "Filters"
 msgstr "Filters"
 
-#: prefs.php:131
-#: include/functions.php:1167
-#: include/functions.php:1803
+#: prefs.php:130
+#: include/functions.php:1117
+#: include/functions.php:1753
 #: classes/pref/labels.php:90
 #: plugins/mobile/mobile-functions.php:198
 msgid "Labels"
 msgstr "Labels"
 
-#: prefs.php:135
+#: prefs.php:134
 msgid "Users"
 msgstr "Gebruikers"
 
@@ -552,12 +551,12 @@ msgid "Check availability"
 msgstr "controleer beschikbaarheid"
 
 #: register.php:228
-#: classes/handler/public.php:753
+#: classes/handler/public.php:754
 msgid "Email:"
 msgstr "E-mail:"
 
 #: register.php:231
-#: classes/handler/public.php:758
+#: classes/handler/public.php:759
 msgid "How much is two plus two:"
 msgstr "hoeveel is twee plus twee:"
 
@@ -590,12 +589,12 @@ msgid "Tiny Tiny RSS data update script."
 msgstr "Tiny Tiny RSS data update script."
 
 #: include/digest.php:109
-#: include/functions.php:1176
-#: include/functions.php:1704
-#: include/functions.php:1789
-#: include/functions.php:1811
+#: include/functions.php:1126
+#: include/functions.php:1654
+#: include/functions.php:1739
+#: include/functions.php:1761
 #: classes/opml.php:416
-#: classes/pref/feeds.php:221
+#: classes/pref/feeds.php:222
 msgid "Uncategorized"
 msgstr "Ongecategoriseerd"
 
@@ -610,329 +609,327 @@ msgstr[1] "%d gearchiveerde artikelen"
 msgid "No feeds found."
 msgstr "Geen feeds gevonden."
 
-#: include/functions.php:722
-msgid "Session failed to validate (incorrect IP)"
-msgstr "De sessie kon niet worden gevalideerd (onjuist IP)"
-
-#: include/functions.php:1165
-#: include/functions.php:1801
+#: include/functions.php:1115
+#: include/functions.php:1751
 #: plugins/mobile/mobile-functions.php:171
 msgid "Special"
 msgstr "Speciaal"
 
-#: include/functions.php:1653
-#: classes/dlg.php:369
-#: classes/pref/filters.php:382
+#: include/functions.php:1603
+#: classes/feeds.php:1097
+#: classes/pref/filters.php:427
 msgid "All feeds"
 msgstr "Alle feeds"
 
-#: include/functions.php:1854
+#: include/functions.php:1804
 msgid "Starred articles"
 msgstr "Artikelen met ster"
 
-#: include/functions.php:1856
+#: include/functions.php:1806
 msgid "Published articles"
 msgstr "Gepubliceerde artikelen"
 
-#: include/functions.php:1858
+#: include/functions.php:1808
 msgid "Fresh articles"
 msgstr "Nieuwe artikelen"
 
-#: include/functions.php:1862
+#: include/functions.php:1812
 msgid "Archived articles"
 msgstr "Gearchiveerde artikelen"
 
-#: include/functions.php:1864
+#: include/functions.php:1814
 msgid "Recently read"
 msgstr "Recent gelezen"
 
-#: include/functions.php:1927
+#: include/functions.php:1877
 msgid "Navigation"
 msgstr "Navigatie"
 
-#: include/functions.php:1928
+#: include/functions.php:1878
 msgid "Open next feed"
 msgstr "Open volgende feed"
 
-#: include/functions.php:1929
+#: include/functions.php:1879
 msgid "Open previous feed"
 msgstr "Open voorgaande feed"
 
-#: include/functions.php:1930
+#: include/functions.php:1880
 msgid "Open next article"
 msgstr "Open volgende artikel"
 
-#: include/functions.php:1931
+#: include/functions.php:1881
 msgid "Open previous article"
 msgstr "Open voorgaand artikel"
 
-#: include/functions.php:1932
+#: include/functions.php:1882
 msgid "Open next article (don't scroll long articles)"
 msgstr "Open volgend artikel (lange artikelen niet scrollen)"
 
-#: include/functions.php:1933
+#: include/functions.php:1883
 msgid "Open previous article (don't scroll long articles)"
 msgstr "Open vorig artikel (lange artikelen niet scrollen)"
 
-#: include/functions.php:1934
+#: include/functions.php:1884
 msgid "Show search dialog"
 msgstr "toon zoekdialoogvenster"
 
-#: include/functions.php:1935
+#: include/functions.php:1885
 msgid "Article"
 msgstr "Artikel"
 
-#: include/functions.php:1936
+#: include/functions.php:1886
 msgid "Toggle starred"
 msgstr "In/uitschakelen sterren"
 
-#: include/functions.php:1937
-#: js/viewfeed.js:1920
+#: include/functions.php:1887
+#: js/viewfeed.js:1908
 msgid "Toggle published"
 msgstr "In/uitschakelen gepubliceerd"
 
-#: include/functions.php:1938
-#: js/viewfeed.js:1898
+#: include/functions.php:1888
+#: js/viewfeed.js:1886
 msgid "Toggle unread"
 msgstr "In/uitschakelen gelezen"
 
-#: include/functions.php:1939
+#: include/functions.php:1889
 msgid "Edit tags"
 msgstr "Bewerk tags"
 
-#: include/functions.php:1940
+#: include/functions.php:1890
 msgid "Dismiss selected"
 msgstr "Geselecteerde negeren"
 
-#: include/functions.php:1941
+#: include/functions.php:1891
 msgid "Dismiss read"
 msgstr "Gelezene negeren"
 
-#: include/functions.php:1942
+#: include/functions.php:1892
 msgid "Open in new window"
 msgstr "open in nieuw venster"
 
-#: include/functions.php:1943
-#: js/viewfeed.js:1939
+#: include/functions.php:1893
+#: js/viewfeed.js:1927
 msgid "Mark below as read"
 msgstr "Hieronder markeren als gelezen"
 
-#: include/functions.php:1944
-#: js/viewfeed.js:1933
+#: include/functions.php:1894
+#: js/viewfeed.js:1921
 msgid "Mark above as read"
 msgstr "hierboven markeren als gelezen"
 
-#: include/functions.php:1945
+#: include/functions.php:1895
 msgid "Scroll down"
 msgstr "Omlaag scrollen"
 
-#: include/functions.php:1946
+#: include/functions.php:1896
 msgid "Scroll up"
 msgstr "Omhoog scrollen"
 
-#: include/functions.php:1947
+#: include/functions.php:1897
 msgid "Select article under cursor"
 msgstr "Selecteer artikel onder de cursor"
 
-#: include/functions.php:1948
+#: include/functions.php:1898
 msgid "Email article"
 msgstr "E-mail artikel"
 
-#: include/functions.php:1949
+#: include/functions.php:1899
 msgid "Close/collapse article"
 msgstr "Sluiten/inklappen artikel"
 
-#: include/functions.php:1951
+#: include/functions.php:1901
 #: plugins/embed_original/init.php:33
 msgid "Toggle embed original"
 msgstr "In/uitschakelen origineel  insluiten"
 
-#: include/functions.php:1952
+#: include/functions.php:1902
 msgid "Article selection"
 msgstr "Artikelselectie"
 
-#: include/functions.php:1953
+#: include/functions.php:1903
 msgid "Select all articles"
 msgstr "Selecteer alle artikelen"
 
-#: include/functions.php:1954
+#: include/functions.php:1904
 msgid "Select unread"
 msgstr "Selecteer ongelezen"
 
-#: include/functions.php:1955
+#: include/functions.php:1905
 msgid "Select starred"
 msgstr "Selecteer met ster"
 
-#: include/functions.php:1956
+#: include/functions.php:1906
 msgid "Select published"
 msgstr "Selecteer gepubliceerde"
 
-#: include/functions.php:1957
+#: include/functions.php:1907
 msgid "Invert selection"
 msgstr "Omdraaien selectie"
 
-#: include/functions.php:1958
+#: include/functions.php:1908
 msgid "Deselect everything"
 msgstr "Deselecteer alles"
 
-#: include/functions.php:1959
-#: classes/pref/feeds.php:520
-#: classes/pref/feeds.php:753
+#: include/functions.php:1909
+#: classes/pref/feeds.php:521
+#: classes/pref/feeds.php:754
 msgid "Feed"
 msgstr "Feed"
 
-#: include/functions.php:1960
+#: include/functions.php:1910
 msgid "Refresh current feed"
 msgstr "Ververs huidige feed"
 
-#: include/functions.php:1961
+#: include/functions.php:1911
 msgid "Un/hide read feeds"
 msgstr "Toon/Verberg gelezen feeds"
 
-#: include/functions.php:1962
-#: classes/pref/feeds.php:1274
+#: include/functions.php:1912
+#: classes/pref/feeds.php:1275
 msgid "Subscribe to feed"
 msgstr "Abonneer op feed"
 
-#: include/functions.php:1963
+#: include/functions.php:1913
 #: js/FeedTree.js:135
 #: js/PrefFeedTree.js:67
 msgid "Edit feed"
 msgstr "Bewerk feed"
 
-#: include/functions.php:1965
+#: include/functions.php:1915
 msgid "Reverse headlines"
 msgstr "Draai kopteksten om"
 
-#: include/functions.php:1966
+#: include/functions.php:1916
 msgid "Debug feed update"
 msgstr "Debug feed update"
 
-#: include/functions.php:1967
+#: include/functions.php:1917
 #: js/FeedTree.js:178
 msgid "Mark all feeds as read"
 msgstr "Markeer alle feeds als gelezen"
 
-#: include/functions.php:1968
+#: include/functions.php:1918
 msgid "Un/collapse current category"
 msgstr "Uit/Inklappen huidige categorie"
 
-#: include/functions.php:1969
+#: include/functions.php:1919
 msgid "Toggle combined mode"
 msgstr "In/uitschakelen gecombineerde modus"
 
-#: include/functions.php:1970
+#: include/functions.php:1920
 #, fuzzy
 msgid "Toggle auto expand in combined mode"
 msgstr "In/uitschakelen gecombineerde modus"
 
-#: include/functions.php:1971
+#: include/functions.php:1921
 msgid "Go to"
 msgstr "Ga naar"
 
-#: include/functions.php:1973
+#: include/functions.php:1923
 msgid "Fresh"
 msgstr "Nieuw"
 
-#: include/functions.php:1976
+#: include/functions.php:1926
+#: js/tt-rss.js:431
+#: js/tt-rss.js:584
 msgid "Tag cloud"
 msgstr "Tag wolk"
 
-#: include/functions.php:1978
+#: include/functions.php:1928
 msgid "Other"
 msgstr "Andere"
 
-#: include/functions.php:1979
+#: include/functions.php:1929
 #: classes/pref/labels.php:281
 msgid "Create label"
 msgstr "Aanmaken label"
 
-#: include/functions.php:1980
-#: classes/pref/filters.php:606
+#: include/functions.php:1930
+#: classes/pref/filters.php:654
 msgid "Create filter"
 msgstr "Aanmaken filter"
 
-#: include/functions.php:1981
+#: include/functions.php:1931
 msgid "Un/collapse sidebar"
 msgstr "Uit/Inklappen zijbalk"
 
-#: include/functions.php:1982
+#: include/functions.php:1932
 msgid "Show help dialog"
 msgstr "Toon helpdialoogvenster"
 
-#: include/functions.php:2467
+#: include/functions.php:2417
 #, php-format
 msgid "Search results: %s"
 msgstr "zoekresultaten: %s"
 
-#: include/functions.php:2958
-#: js/viewfeed.js:2026
+#: include/functions.php:2908
+#: js/viewfeed.js:2014
 msgid "Click to play"
 msgstr "Klik om af te spelen"
 
-#: include/functions.php:2959
-#: js/viewfeed.js:2025
+#: include/functions.php:2909
+#: js/viewfeed.js:2013
 msgid "Play"
 msgstr "Afspelen"
 
-#: include/functions.php:3076
+#: include/functions.php:3026
 msgid " - "
 msgstr " - "
 
-#: include/functions.php:3098
-#: include/functions.php:3392
+#: include/functions.php:3048
+#: include/functions.php:3342
 #: classes/rpc.php:408
 msgid "no tags"
 msgstr "geen tags"
 
-#: include/functions.php:3108
+#: include/functions.php:3058
 #: classes/feeds.php:682
 msgid "Edit tags for this article"
 msgstr "Bewerk tags voor dit artikel"
 
-#: include/functions.php:3137
+#: include/functions.php:3087
 #: classes/feeds.php:638
 msgid "Originally from:"
 msgstr "Oorspronkelijk uit:"
 
-#: include/functions.php:3150
+#: include/functions.php:3100
 #: classes/feeds.php:651
-#: classes/pref/feeds.php:539
+#: classes/pref/feeds.php:540
 msgid "Feed URL"
 msgstr "Feed URL"
 
-#: include/functions.php:3181
-#: classes/dlg.php:43
-#: classes/dlg.php:162
-#: classes/dlg.php:185
-#: classes/dlg.php:222
-#: classes/dlg.php:506
-#: classes/dlg.php:541
-#: classes/dlg.php:572
-#: classes/dlg.php:606
-#: classes/dlg.php:618
+#: include/functions.php:3131
+#: classes/dlg.php:37
+#: classes/dlg.php:60
+#: classes/dlg.php:93
+#: classes/dlg.php:159
+#: classes/dlg.php:190
+#: classes/dlg.php:217
+#: classes/dlg.php:250
+#: classes/dlg.php:262
 #: classes/backend.php:105
 #: classes/pref/users.php:106
-#: classes/pref/filters.php:111
-#: classes/pref/feeds.php:1587
-#: classes/pref/feeds.php:1659
+#: classes/pref/filters.php:147
+#: classes/pref/prefs.php:1012
+#: classes/pref/feeds.php:1588
+#: classes/pref/feeds.php:1660
 #: plugins/import_export/init.php:409
 #: plugins/import_export/init.php:432
-#: plugins/googlereaderimport/init.php:164
+#: plugins/googlereaderimport/init.php:168
 #: plugins/share/init.php:67
 #: plugins/updater/init.php:357
 msgid "Close this window"
 msgstr "Sluit dit venster"
 
-#: include/functions.php:3417
+#: include/functions.php:3367
 msgid "(edit note)"
 msgstr "(bewerk notitie)"
 
-#: include/functions.php:3650
+#: include/functions.php:3600
 msgid "unknown type"
 msgstr "Onbekend type"
 
-#: include/functions.php:3706
+#: include/functions.php:3656
 msgid "Attachments"
 msgstr "Bijlagen"
 
@@ -976,7 +973,7 @@ msgid "Assign tags"
 msgstr "Tags toevoegen"
 
 #: include/localized_schema.php:14
-#: js/viewfeed.js:1990
+#: js/viewfeed.js:1978
 msgid "Assign label"
 msgstr "Labels toevoegen"
 
@@ -1159,7 +1156,7 @@ msgid "User timezone"
 msgstr "Gebruiker's tijdzone"
 
 #: include/localized_schema.php:61
-#: js/prefs.js:1719
+#: js/prefs.js:1725
 msgid "Customize stylesheet"
 msgstr "Aanpassen opmaakmodel"
 
@@ -1185,14 +1182,14 @@ msgid "Select theme"
 msgstr "Selecteer met ster"
 
 #: include/login_form.php:183
-#: classes/handler/public.php:460
-#: classes/handler/public.php:748
+#: classes/handler/public.php:461
+#: classes/handler/public.php:749
 #: plugins/mobile/login_form.php:40
 msgid "Login:"
 msgstr "Aanmelden:"
 
 #: include/login_form.php:192
-#: classes/handler/public.php:463
+#: classes/handler/public.php:464
 #: plugins/mobile/login_form.php:45
 msgid "Password:"
 msgstr "Wachtwoord:"
@@ -1203,7 +1200,7 @@ msgid "I forgot my password"
 msgstr "Onjuist wachtwoord"
 
 #: include/login_form.php:201
-#: classes/handler/public.php:466
+#: classes/handler/public.php:467
 msgid "Language:"
 msgstr "Taal:"
 
@@ -1212,9 +1209,9 @@ msgid "Profile:"
 msgstr "Profiel:"
 
 #: include/login_form.php:213
-#: classes/handler/public.php:210
+#: classes/handler/public.php:211
 #: classes/rpc.php:64
-#: classes/dlg.php:98
+#: classes/pref/prefs.php:948
 msgid "Default profile"
 msgstr "Standaard profiel"
 
@@ -1227,477 +1224,247 @@ msgid "Remember me"
 msgstr ""
 
 #: include/login_form.php:235
-#: classes/handler/public.php:476
+#: classes/handler/public.php:477
 #: plugins/mobile/login_form.php:28
 msgid "Log in"
 msgstr "Aanmelden"
 
+#: include/sessions.php:53
+msgid "Session failed to validate (incorrect IP)"
+msgstr "De sessie kon niet worden gevalideerd (onjuist IP)"
+
 #: classes/article.php:25
 msgid "Article not found."
 msgstr "Artikel niet gevonden."
 
-#: classes/handler/public.php:401
+#: classes/article.php:179
+msgid "Tags for this article (separated by commas):"
+msgstr "Tags voor dit artikel (komma gescheiden):"
+
+#: classes/article.php:204
+#: classes/pref/users.php:192
+#: classes/pref/labels.php:79
+#: classes/pref/filters.php:405
+#: classes/pref/prefs.php:894
+#: classes/pref/feeds.php:733
+#: classes/pref/feeds.php:881
+#: plugins/nsfw/init.php:86
+#: plugins/note/init.php:53
+#: plugins/instances/init.php:248
+msgid "Save"
+msgstr "Opslaan"
+
+#: classes/article.php:206
+#: classes/handler/public.php:438
+#: classes/handler/public.php:480
+#: classes/feeds.php:1024
+#: classes/feeds.php:1076
+#: classes/feeds.php:1136
+#: classes/pref/users.php:194
+#: classes/pref/labels.php:81
+#: classes/pref/filters.php:408
+#: classes/pref/filters.php:804
+#: classes/pref/filters.php:880
+#: classes/pref/filters.php:947
+#: classes/pref/prefs.php:896
+#: classes/pref/feeds.php:734
+#: classes/pref/feeds.php:884
+#: classes/pref/feeds.php:1797
+#: plugins/mail/init.php:131
+#: plugins/note/init.php:55
+#: plugins/instances/init.php:251
+#: plugins/instances/init.php:440
+msgid "Cancel"
+msgstr "Annuleren"
+
+#: classes/handler/public.php:402
 #: plugins/bookmarklets/init.php:38
 msgid "Share with Tiny Tiny RSS"
 msgstr "Deel met Tiny Tiny RSS"
 
-#: classes/handler/public.php:409
+#: classes/handler/public.php:410
 msgid "Title:"
 msgstr "Titel:"
 
-#: classes/handler/public.php:411
-#: classes/dlg.php:663
-#: classes/pref/feeds.php:537
-#: classes/pref/feeds.php:768
+#: classes/handler/public.php:412
+#: classes/pref/feeds.php:538
+#: classes/pref/feeds.php:769
 #: plugins/instances/init.php:215
+#: plugins/instances/init.php:405
 msgid "URL:"
 msgstr "URL:"
 
-#: classes/handler/public.php:413
+#: classes/handler/public.php:414
 msgid "Content:"
 msgstr "Inhoud:"
 
-#: classes/handler/public.php:415
+#: classes/handler/public.php:416
 msgid "Labels:"
 msgstr "Labels:"
 
-#: classes/handler/public.php:434
+#: classes/handler/public.php:435
 msgid "Shared article will appear in the Published feed."
 msgstr "Gedeeld artikel zal verschijnen in de Gepubliceerd feed."
 
-#: classes/handler/public.php:436
+#: classes/handler/public.php:437
 msgid "Share"
 msgstr "Delen"
 
-#: classes/handler/public.php:437
-#: classes/handler/public.php:479
-#: classes/dlg.php:296
-#: classes/dlg.php:348
-#: classes/dlg.php:408
-#: classes/dlg.php:439
-#: classes/dlg.php:648
-#: classes/dlg.php:698
-#: classes/dlg.php:747
-#: classes/pref/users.php:194
-#: classes/pref/labels.php:81
-#: classes/pref/filters.php:363
-#: classes/pref/filters.php:746
-#: classes/pref/filters.php:822
-#: classes/pref/filters.php:889
-#: classes/pref/feeds.php:733
-#: classes/pref/feeds.php:883
-#: plugins/mail/init.php:131
-#: plugins/note/init.php:55
-#: plugins/instances/init.php:251
-msgid "Cancel"
-msgstr "Annuleren"
-
-#: classes/handler/public.php:458
+#: classes/handler/public.php:459
 msgid "Not logged in"
 msgstr "Niet ingelogd"
 
-#: classes/handler/public.php:525
+#: classes/handler/public.php:526
 msgid "Incorrect username or password"
 msgstr "Onjuiste gebruikersnaam of wachtwoord"
 
-#: classes/handler/public.php:561
-#: classes/handler/public.php:658
+#: classes/handler/public.php:562
+#: classes/handler/public.php:659
 #, php-format
 msgid "Already subscribed to <b>%s</b>."
 msgstr "Reeds geabonneerd op <b>%s</b>."
 
-#: classes/handler/public.php:564
-#: classes/handler/public.php:649
+#: classes/handler/public.php:565
+#: classes/handler/public.php:650
 #, php-format
 msgid "Subscribed to <b>%s</b>."
 msgstr "Geabonneerd op  <b>%s</b>."
 
-#: classes/handler/public.php:567
-#: classes/handler/public.php:652
+#: classes/handler/public.php:568
+#: classes/handler/public.php:653
 #, php-format
 msgid "Could not subscribe to <b>%s</b>."
 msgstr "Kon niet abonneren op  <b>%s</b>."
 
-#: classes/handler/public.php:570
-#: classes/handler/public.php:655
+#: classes/handler/public.php:571
+#: classes/handler/public.php:656
 #, php-format
 msgid "No feeds found in <b>%s</b>."
 msgstr "Geen feeds gevonden in <b>%s</b>."
 
-#: classes/handler/public.php:573
-#: classes/handler/public.php:661
+#: classes/handler/public.php:574
+#: classes/handler/public.php:662
 msgid "Multiple feed URLs found."
 msgstr "Meerdere feed-URL's gevonden."
 
-#: classes/handler/public.php:577
-#: classes/handler/public.php:666
+#: classes/handler/public.php:578
+#: classes/handler/public.php:667
 #, php-format
 msgid "Could not subscribe to <b>%s</b>.<br>Can't download the Feed URL."
 msgstr "Kon niet abonneren op  <b>%s</b>.<br>Kon de feed URL niet downloaden."
 
-#: classes/handler/public.php:595
-#: classes/handler/public.php:684
+#: classes/handler/public.php:596
+#: classes/handler/public.php:685
 msgid "Subscribe to selected feed"
 msgstr "Abonneren op de geselecteerde feed"
 
-#: classes/handler/public.php:620
-#: classes/handler/public.php:708
+#: classes/handler/public.php:621
+#: classes/handler/public.php:709
 msgid "Edit subscription options"
 msgstr "Bewerk abonnement opties"
 
-#: classes/handler/public.php:735
+#: classes/handler/public.php:736
 #, fuzzy
 msgid "Password recovery"
 msgstr "Wachtwoord"
 
-#: classes/handler/public.php:741
+#: classes/handler/public.php:742
 msgid "You will need to provide valid account name and email. New password will be sent on your email address."
 msgstr ""
 
-#: classes/handler/public.php:763
+#: classes/handler/public.php:764
 #: classes/pref/users.php:378
 msgid "Reset password"
 msgstr "Herstel wachtwoord"
 
-#: classes/handler/public.php:773
+#: classes/handler/public.php:774
 msgid "Some of the required form parameters are missing or incorrect."
 msgstr ""
 
-#: classes/handler/public.php:777
-#: classes/handler/public.php:803
+#: classes/handler/public.php:778
+#: classes/handler/public.php:804
 #: plugins/digest/digest_body.php:69
 #, fuzzy
 msgid "Go back"
 msgstr "Terugzetten"
 
-#: classes/handler/public.php:799
+#: classes/handler/public.php:800
 msgid "Sorry, login and email combination not found."
 msgstr ""
 
-#: classes/dlg.php:22
+#: classes/dlg.php:16
 msgid "If you have imported labels and/or filters, you might need to reload preferences to see your new data."
 msgstr "Indien u labels en/of filters heeft geïmporteerd moet u waarschijnlijk te voorkeuren herladen om uw bijgewerkte gegevens te zien."
 
-#: classes/dlg.php:55
-#: classes/pref/users.php:360
-#: classes/pref/labels.php:272
-#: classes/pref/filters.php:234
-#: classes/pref/filters.php:282
-#: classes/pref/filters.php:597
-#: classes/pref/filters.php:676
-#: classes/pref/filters.php:703
-#: classes/pref/feeds.php:1262
-#: classes/pref/feeds.php:1532
-#: classes/pref/feeds.php:1602
-#: plugins/instances/init.php:287
-msgid "Select"
-msgstr "Selecteer"
-
-#: classes/dlg.php:58
-#: classes/feeds.php:92
-#: classes/pref/users.php:363
-#: classes/pref/labels.php:275
-#: classes/pref/filters.php:237
-#: classes/pref/filters.php:285
-#: classes/pref/filters.php:600
-#: classes/pref/filters.php:679
-#: classes/pref/filters.php:706
-#: classes/pref/feeds.php:1265
-#: classes/pref/feeds.php:1535
-#: classes/pref/feeds.php:1605
-#: plugins/instances/init.php:290
-msgid "All"
-msgstr "Alles"
-
-#: classes/dlg.php:60
-#: classes/feeds.php:95
-#: classes/pref/users.php:365
-#: classes/pref/labels.php:277
-#: classes/pref/filters.php:239
-#: classes/pref/filters.php:287
-#: classes/pref/filters.php:602
-#: classes/pref/filters.php:681
-#: classes/pref/filters.php:708
-#: classes/pref/feeds.php:1267
-#: classes/pref/feeds.php:1537
-#: classes/pref/feeds.php:1607
-#: plugins/instances/init.php:292
-msgid "None"
-msgstr "Niets"
-
-#: classes/dlg.php:69
-msgid "Create profile"
-msgstr "Maak profiel"
-
-#: classes/dlg.php:92
-#: classes/dlg.php:122
-msgid "(active)"
-msgstr "(actief)"
-
-#: classes/dlg.php:156
-msgid "Remove selected profiles"
-msgstr "Verwijder geselecteerde profielen"
-
-#: classes/dlg.php:158
-msgid "Activate profile"
-msgstr "Activeer profiel"
-
-#: classes/dlg.php:168
-msgid "Public OPML URL"
-msgstr "Publieke OPML URL"
-
-#: classes/dlg.php:173
+#: classes/dlg.php:48
 msgid "Your Public OPML URL is:"
 msgstr "Uw publieke OPML URL is:"
 
-#: classes/dlg.php:182
-#: classes/dlg.php:569
+#: classes/dlg.php:57
+#: classes/dlg.php:214
 msgid "Generate new URL"
 msgstr "Genereer nieuwe URL"
 
-#: classes/dlg.php:194
-msgid "Notice"
-msgstr "NB!"
-
-#: classes/dlg.php:200
+#: classes/dlg.php:71
 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 "De update deamon is ingeschakeld in de configuratie, maar het deamon proces loopt niet. Dit voorkomt dat alle feeds wordt bijgewerkt. Start het deamon proces of contacteer de eigenaar van deze instantie."
 
-#: classes/dlg.php:204
-#: classes/dlg.php:213
+#: classes/dlg.php:75
+#: classes/dlg.php:84
 msgid "Last update:"
 msgstr "Laatste update:"
 
-#: classes/dlg.php:209
+#: classes/dlg.php:80
 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 "De update deamon neemt te veel tijd om een feed bij te werken. Dit kan betekenen dat het proces is gescrashed of hangt. Controleer het deamon proces of contacteer de eigenaar van deze instantie."
 
-#: classes/dlg.php:234
-#: classes/dlg.php:242
-msgid "Feed or site URL"
-msgstr "Feed of website URL"
-
-#: classes/dlg.php:248
-#: classes/dlg.php:711
-#: classes/pref/feeds.php:559
-#: classes/pref/feeds.php:781
-msgid "Place in category:"
-msgstr "Plaats in categorie:"
-
-#: classes/dlg.php:256
-msgid "Available feeds"
-msgstr "Beschikbare feeds"
-
-#: classes/dlg.php:268
-#: classes/pref/users.php:155
-#: classes/pref/feeds.php:589
-#: classes/pref/feeds.php:817
-msgid "Authentication"
-msgstr "Authenticatie"
-
-#: classes/dlg.php:272
-#: classes/dlg.php:725
-#: classes/pref/users.php:420
-#: classes/pref/feeds.php:595
-#: classes/pref/feeds.php:821
-msgid "Login"
-msgstr "LoginID"
-
-#: classes/dlg.php:275
-#: classes/dlg.php:728
-#: classes/pref/prefs.php:202
-#: classes/pref/feeds.php:601
-#: classes/pref/feeds.php:827
-msgid "Password"
-msgstr "Wachtwoord"
-
-#: classes/dlg.php:285
-msgid "This feed requires authentication."
-msgstr "Deze feed vereist authenticatie."
-
-#: classes/dlg.php:290
-#: classes/dlg.php:346
-#: classes/dlg.php:746
-msgid "Subscribe"
-msgstr "Abonneren"
-
-#: classes/dlg.php:293
-msgid "More feeds"
-msgstr "Meer feeds"
-
-#: classes/dlg.php:316
-#: classes/dlg.php:407
-#: classes/pref/users.php:350
-#: classes/pref/filters.php:593
-#: classes/pref/feeds.php:1258
-#: js/tt-rss.js:170
-msgid "Search"
-msgstr "Zoeken"
-
-#: classes/dlg.php:320
-msgid "Popular feeds"
-msgstr "Populaire feeds"
-
-#: classes/dlg.php:321
-msgid "Feed archive"
-msgstr "Feed archief"
-
-#: classes/dlg.php:324
-msgid "limit:"
-msgstr "Beperking:"
-
-#: classes/dlg.php:347
-#: classes/pref/users.php:376
-#: classes/pref/labels.php:284
-#: classes/pref/filters.php:353
-#: classes/pref/filters.php:615
-#: classes/pref/feeds.php:706
-#: plugins/instances/init.php:297
-msgid "Remove"
-msgstr "Verwijderen"
-
-#: classes/dlg.php:358
-msgid "Look for"
-msgstr "Zoek naar"
-
-#: classes/dlg.php:366
-msgid "Limit search to:"
-msgstr "Beperk zoeken naar:"
-
-#: classes/dlg.php:382
-msgid "This feed"
-msgstr "Deze feed"
-
-#: classes/dlg.php:414
-msgid "Tags for this article (separated by commas):"
-msgstr "Tags voor dit artikel (komma gescheiden):"
-
-#: classes/dlg.php:437
-#: classes/dlg.php:646
-#: classes/pref/users.php:192
-#: classes/pref/labels.php:79
-#: classes/pref/filters.php:360
-#: classes/pref/feeds.php:732
-#: classes/pref/feeds.php:880
-#: plugins/nsfw/init.php:86
-#: plugins/note/init.php:53
-#: plugins/instances/init.php:248
-msgid "Save"
-msgstr "Opslaan"
-
-#: classes/dlg.php:445
-msgid "Tag Cloud"
-msgstr "Tag Wolk"
-
-#: classes/dlg.php:514
-msgid "Select item(s) by tags"
-msgstr "Selecteer item(s) via tags"
-
-#: classes/dlg.php:517
+#: classes/dlg.php:166
 msgid "Match:"
 msgstr "Match:"
 
-#: classes/dlg.php:519
+#: classes/dlg.php:168
 msgid "Any"
 msgstr "Elke"
 
-#: classes/dlg.php:522
+#: classes/dlg.php:171
 msgid "All tags."
 msgstr "Alle tags."
 
-#: classes/dlg.php:524
+#: classes/dlg.php:173
 msgid "Which Tags?"
 msgstr "Welke tags?"
 
-#: classes/dlg.php:537
+#: classes/dlg.php:186
 msgid "Display entries"
 msgstr "Items weergeven"
 
-#: classes/dlg.php:549
-#: classes/feeds.php:138
-msgid "View as RSS"
-msgstr "Toon als RSS"
-
-#: classes/dlg.php:560
+#: classes/dlg.php:205
 msgid "You can view this feed as RSS using the following URL:"
 msgstr "u kunt deze feed bekijken als RSS via de volgende URL:"
 
-#: classes/dlg.php:589
+#: classes/dlg.php:233
 #: plugins/updater/init.php:327
 #, php-format
 msgid "New version of Tiny Tiny RSS is available (%s)."
 msgstr "Nieuwe versie van Tiny Tiny RSS is beschikbaar (%s)."
 
-#: classes/dlg.php:597
+#: classes/dlg.php:241
 msgid "You can update using built-in updater in the Preferences or by using update.php"
 msgstr "U kunt updaten met behulp van de ingebouwde updater in de Voorkeuren of via update.php"
 
-#: classes/dlg.php:601
+#: classes/dlg.php:245
 #: plugins/updater/init.php:331
 msgid "See the release notes"
 msgstr ""
 
-#: classes/dlg.php:603
+#: classes/dlg.php:247
 msgid "Download"
 msgstr "Downloaden"
 
-#: classes/dlg.php:611
+#: classes/dlg.php:255
 msgid "Error receiving version information or no new version available."
 msgstr "Fout bij verkrijgen van informatie over de versie, of geen nieuwe versie beschikbaar."
 
-#: classes/dlg.php:631
-#, 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 "U kunt door de CSS-declaraties aan te passen de kleuren, lettertypen en lay-out van uw huidige thema hier aanpassen. <a target=\"_blank\" class=\"visibleLink\" href=\"%s\">Dit bestand</a> kan als richtlijn worden gebruikt."
-
-#: classes/dlg.php:657
-#: plugins/instances/init.php:207
-msgid "Instance"
-msgstr "Instantie"
-
-#: classes/dlg.php:666
-#: plugins/instances/init.php:218
-#: plugins/instances/init.php:315
-msgid "Instance URL"
-msgstr "instantie URL"
-
-#: classes/dlg.php:676
-#: plugins/instances/init.php:229
-msgid "Access key:"
-msgstr "Toegangssleutel:"
-
-#: classes/dlg.php:679
-#: plugins/instances/init.php:232
-#: plugins/instances/init.php:316
-msgid "Access key"
-msgstr "Toegangssleutel"
-
-#: classes/dlg.php:683
-#: plugins/instances/init.php:236
-msgid "Use one access key for both linked instances."
-msgstr "Gebruik één toegang-sleutel voor beide gekoppelde instanties."
-
-#: classes/dlg.php:691
-#: plugins/instances/init.php:244
-msgid "Generate new key"
-msgstr "Genereer nieuwe sleutel"
-
-#: classes/dlg.php:695
-msgid "Create link"
-msgstr "Link aanmaken"
-
-#: classes/dlg.php:708
-msgid "Add one valid RSS feed per line (no feed detection is done)"
-msgstr "Een geldige RSS feed per regel toevoegen (geen feed detectie uitgevoerd)"
-
-#: classes/dlg.php:717
-msgid "Feeds to subscribe, One per line"
-msgstr "Te abonneren feeds: één per regel"
-
-#: classes/dlg.php:739
-msgid "Feeds require authentication."
-msgstr "Feeds vereisen authenticatie."
-
 #: classes/feeds.php:68
 msgid "Visit the website"
 msgstr "Bezoek de website"
@@ -1706,14 +1473,52 @@ msgstr "Bezoek de website"
 msgid "View as RSS feed"
 msgstr "Toon als RSS feed"
 
+#: classes/feeds.php:84
+#: classes/feeds.php:138
+#: classes/pref/feeds.php:1440
+msgid "View as RSS"
+msgstr "Toon als RSS"
+
 #: classes/feeds.php:91
 msgid "Select:"
 msgstr "Selecteer:"
 
+#: classes/feeds.php:92
+#: classes/pref/users.php:363
+#: classes/pref/labels.php:275
+#: classes/pref/filters.php:282
+#: classes/pref/filters.php:330
+#: classes/pref/filters.php:648
+#: classes/pref/filters.php:737
+#: classes/pref/filters.php:764
+#: classes/pref/prefs.php:908
+#: classes/pref/feeds.php:1266
+#: classes/pref/feeds.php:1536
+#: classes/pref/feeds.php:1606
+#: plugins/instances/init.php:290
+msgid "All"
+msgstr "Alles"
+
 #: classes/feeds.php:94
 msgid "Invert"
 msgstr "Omkeren"
 
+#: classes/feeds.php:95
+#: classes/pref/users.php:365
+#: classes/pref/labels.php:277
+#: classes/pref/filters.php:284
+#: classes/pref/filters.php:332
+#: classes/pref/filters.php:650
+#: classes/pref/filters.php:739
+#: classes/pref/filters.php:766
+#: classes/pref/prefs.php:910
+#: classes/pref/feeds.php:1268
+#: classes/pref/feeds.php:1538
+#: classes/pref/feeds.php:1608
+#: plugins/instances/init.php:292
+msgid "None"
+msgstr "Niets"
+
 #: classes/feeds.php:101
 msgid "More..."
 msgstr "Meer…"
@@ -1739,10 +1544,10 @@ msgid "Move back"
 msgstr "Terugzetten"
 
 #: classes/feeds.php:118
-#: classes/pref/filters.php:246
-#: classes/pref/filters.php:294
-#: classes/pref/filters.php:688
-#: classes/pref/filters.php:715
+#: classes/pref/filters.php:291
+#: classes/pref/filters.php:339
+#: classes/pref/filters.php:746
+#: classes/pref/filters.php:773
 msgid "Delete"
 msgstr "Verwijderen"
 
@@ -1796,20 +1601,116 @@ msgid "No articles found to display."
 msgstr "Geen artikelen gevonden om weer te geven."
 
 #: classes/feeds.php:755
-#: classes/feeds.php:920
+#: classes/feeds.php:919
 #, php-format
 msgid "Feeds last updated at %s"
 msgstr "Feeds laatst bijgewerkt op %s"
 
 #: classes/feeds.php:765
-#: classes/feeds.php:930
+#: classes/feeds.php:929
 msgid "Some feeds have update errors (click for details)"
 msgstr "Sommige feeds hebben update fouten (klik voor details)"
 
-#: classes/feeds.php:910
+#: classes/feeds.php:909
 msgid "No feed selected."
 msgstr "Geen feeds geselecteerd."
 
+#: classes/feeds.php:962
+#: classes/feeds.php:970
+msgid "Feed or site URL"
+msgstr "Feed of website URL"
+
+#: classes/feeds.php:976
+#: classes/pref/feeds.php:560
+#: classes/pref/feeds.php:782
+#: classes/pref/feeds.php:1761
+msgid "Place in category:"
+msgstr "Plaats in categorie:"
+
+#: classes/feeds.php:984
+msgid "Available feeds"
+msgstr "Beschikbare feeds"
+
+#: classes/feeds.php:996
+#: classes/pref/users.php:155
+#: classes/pref/feeds.php:590
+#: classes/pref/feeds.php:818
+msgid "Authentication"
+msgstr "Authenticatie"
+
+#: classes/feeds.php:1000
+#: classes/pref/users.php:420
+#: classes/pref/feeds.php:596
+#: classes/pref/feeds.php:822
+#: classes/pref/feeds.php:1775
+msgid "Login"
+msgstr "LoginID"
+
+#: classes/feeds.php:1003
+#: classes/pref/prefs.php:202
+#: classes/pref/feeds.php:602
+#: classes/pref/feeds.php:828
+#: classes/pref/feeds.php:1778
+msgid "Password"
+msgstr "Wachtwoord"
+
+#: classes/feeds.php:1013
+msgid "This feed requires authentication."
+msgstr "Deze feed vereist authenticatie."
+
+#: classes/feeds.php:1018
+#: classes/feeds.php:1074
+#: classes/pref/feeds.php:1796
+msgid "Subscribe"
+msgstr "Abonneren"
+
+#: classes/feeds.php:1021
+msgid "More feeds"
+msgstr "Meer feeds"
+
+#: classes/feeds.php:1044
+#: classes/feeds.php:1135
+#: classes/pref/users.php:350
+#: classes/pref/filters.php:641
+#: classes/pref/feeds.php:1259
+#: js/tt-rss.js:170
+msgid "Search"
+msgstr "Zoeken"
+
+#: classes/feeds.php:1048
+msgid "Popular feeds"
+msgstr "Populaire feeds"
+
+#: classes/feeds.php:1049
+msgid "Feed archive"
+msgstr "Feed archief"
+
+#: classes/feeds.php:1052
+msgid "limit:"
+msgstr "Beperking:"
+
+#: classes/feeds.php:1075
+#: classes/pref/users.php:376
+#: classes/pref/labels.php:284
+#: classes/pref/filters.php:398
+#: classes/pref/filters.php:667
+#: classes/pref/feeds.php:707
+#: plugins/instances/init.php:297
+msgid "Remove"
+msgstr "Verwijderen"
+
+#: classes/feeds.php:1086
+msgid "Look for"
+msgstr "Zoek naar"
+
+#: classes/feeds.php:1094
+msgid "Limit search to:"
+msgstr "Beperk zoeken naar:"
+
+#: classes/feeds.php:1110
+msgid "This feed"
+msgstr "Deze feed"
+
 #: classes/backend.php:33
 msgid "Other interface tips are available in the Tiny Tiny RSS wiki."
 msgstr "andere interface tips zijn te vinden in de Tiny Tiny RSS wiki."
@@ -1882,7 +1783,7 @@ msgid "Error: please upload OPML file."
 msgstr "Fout: OPML-bestand uploaden aub."
 
 #: classes/opml.php:475
-#: plugins/googlereaderimport/init.php:157
+#: plugins/googlereaderimport/init.php:161
 msgid "Error while parsing document."
 msgstr "Fout bij het parseren van het document."
 
@@ -1929,8 +1830,8 @@ msgid "Change password to"
 msgstr "Wijzig wachtwoord naar"
 
 #: classes/pref/users.php:177
-#: classes/pref/feeds.php:609
-#: classes/pref/feeds.php:833
+#: classes/pref/feeds.php:610
+#: classes/pref/feeds.php:834
 msgid "Options"
 msgstr "Opties"
 
@@ -1971,6 +1872,21 @@ msgstr ""
 msgid "[tt-rss] Password change notification"
 msgstr "[tt-rss] Melding verandering van wachtwoord"
 
+#: classes/pref/users.php:360
+#: classes/pref/labels.php:272
+#: classes/pref/filters.php:279
+#: classes/pref/filters.php:327
+#: classes/pref/filters.php:645
+#: classes/pref/filters.php:734
+#: classes/pref/filters.php:761
+#: classes/pref/prefs.php:905
+#: classes/pref/feeds.php:1263
+#: classes/pref/feeds.php:1533
+#: classes/pref/feeds.php:1603
+#: plugins/instances/init.php:287
+msgid "Select"
+msgstr "Selecteer"
+
 #: classes/pref/users.php:368
 msgid "Create user"
 msgstr "Gebruiker aanmaken"
@@ -1980,7 +1896,7 @@ msgid "Details"
 msgstr "Details"
 
 #: classes/pref/users.php:374
-#: classes/pref/filters.php:612
+#: classes/pref/filters.php:660
 #: plugins/instances/init.php:296
 msgid "Edit"
 msgstr "Bewerken"
@@ -2007,6 +1923,8 @@ msgid "No matching users found."
 msgstr "geen overeenkomstige gebruikers gevonden."
 
 #: classes/pref/labels.php:22
+#: classes/pref/filters.php:268
+#: classes/pref/filters.php:725
 msgid "Caption"
 msgstr "Onderschrift"
 
@@ -2031,120 +1949,131 @@ msgstr "aangemaakt label <b>%s</b>"
 msgid "Clear colors"
 msgstr "Wis kleuren"
 
-#: classes/pref/filters.php:60
+#: classes/pref/filters.php:96
 msgid "Articles matching this filter:"
 msgstr "Artikelen volgens dit filter:"
 
-#: classes/pref/filters.php:97
+#: classes/pref/filters.php:133
 msgid "No recent articles matching this filter have been found."
 msgstr "Er zijn geen recente artikelen die overeenkomen met dit filter gevonden."
 
-#: classes/pref/filters.php:101
+#: classes/pref/filters.php:137
 msgid "Complex expressions might not give results while testing due to issues with database server regexp implementation."
 msgstr "complexe expressies kunnen geen resultaat geven bij het testen, tengevolge van problemen bij de database server's regexp implementatie."
 
-#: classes/pref/filters.php:229
-#: classes/pref/filters.php:671
-#: classes/pref/filters.php:786
+#: classes/pref/filters.php:274
+#: classes/pref/filters.php:729
+#: classes/pref/filters.php:844
 msgid "Match"
 msgstr "Match"
 
-#: classes/pref/filters.php:243
-#: classes/pref/filters.php:291
-#: classes/pref/filters.php:685
-#: classes/pref/filters.php:712
+#: classes/pref/filters.php:288
+#: classes/pref/filters.php:336
+#: classes/pref/filters.php:743
+#: classes/pref/filters.php:770
 msgid "Add"
 msgstr "Toevoegen"
 
-#: classes/pref/filters.php:277
-#: classes/pref/filters.php:698
+#: classes/pref/filters.php:322
+#: classes/pref/filters.php:756
 msgid "Apply actions"
 msgstr "Acties toepassen"
 
-#: classes/pref/filters.php:327
-#: classes/pref/filters.php:727
+#: classes/pref/filters.php:372
+#: classes/pref/filters.php:785
 msgid "Enabled"
 msgstr "Ingeschakeld"
 
-#: classes/pref/filters.php:336
-#: classes/pref/filters.php:730
+#: classes/pref/filters.php:381
+#: classes/pref/filters.php:788
 msgid "Match any rule"
 msgstr "Match elke regel"
 
-#: classes/pref/filters.php:345
-#: classes/pref/filters.php:733
+#: classes/pref/filters.php:390
+#: classes/pref/filters.php:791
 #, fuzzy
 msgid "Inverse matching"
 msgstr "Omdraaien selectie"
 
-#: classes/pref/filters.php:357
-#: classes/pref/filters.php:740
+#: classes/pref/filters.php:402
+#: classes/pref/filters.php:798
 msgid "Test"
 msgstr "Test"
 
-#: classes/pref/filters.php:390
+#: classes/pref/filters.php:435
 #, fuzzy
 msgid "(inverse)"
 msgstr "Omgekeerd"
 
-#: classes/pref/filters.php:389
+#: classes/pref/filters.php:434
 #, fuzzy, php-format
 msgid "%s on %s in %s %s"
 msgstr "%s op %s in %s"
 
-#: classes/pref/filters.php:609
+#: classes/pref/filters.php:657
 msgid "Combine"
 msgstr "Combineren"
 
-#: classes/pref/filters.php:619
-#: classes/pref/feeds.php:1317
+#: classes/pref/filters.php:663
+#: classes/pref/feeds.php:1279
+#: classes/pref/feeds.php:1293
+msgid "Reset sort order"
+msgstr "Herstel sorteervolgorde"
+
+#: classes/pref/filters.php:671
+#: classes/pref/feeds.php:1318
 msgid "Rescore articles"
 msgstr "Artikelen nieuwe score geven"
 
-#: classes/pref/filters.php:743
+#: classes/pref/filters.php:801
 msgid "Create"
 msgstr "Aanmaken"
 
-#: classes/pref/filters.php:798
+#: classes/pref/filters.php:856
 msgid "Inverse regular expression matching"
 msgstr ""
 
-#: classes/pref/filters.php:800
+#: classes/pref/filters.php:858
 msgid "on field"
 msgstr "op veld"
 
-#: classes/pref/filters.php:806
-#: js/PrefFilterTree.js:29
+#: classes/pref/filters.php:864
+#: js/PrefFilterTree.js:45
 #: plugins/digest/digest.js:242
 msgid "in"
 msgstr "in"
 
-#: classes/pref/filters.php:819
+#: classes/pref/filters.php:877
 msgid "Save rule"
 msgstr "Regel opslaan"
 
-#: classes/pref/filters.php:819
-#: js/functions.js:1069
+#: classes/pref/filters.php:877
+#: js/functions.js:1063
 msgid "Add rule"
 msgstr "regel toevoegen"
 
-#: classes/pref/filters.php:842
+#: classes/pref/filters.php:900
 msgid "Perform Action"
 msgstr "Actie doorvoeren"
 
-#: classes/pref/filters.php:868
+#: classes/pref/filters.php:926
 msgid "with parameters:"
 msgstr "met parameters:"
 
-#: classes/pref/filters.php:886
+#: classes/pref/filters.php:944
 msgid "Save action"
 msgstr "Actie opslaan"
 
-#: classes/pref/filters.php:886
-#: js/functions.js:1095
+#: classes/pref/filters.php:944
+#: js/functions.js:1089
 msgid "Add action"
 msgstr "Actie toevoegen"
 
+#: classes/pref/filters.php:967
+#, fuzzy
+msgid "[No caption]"
+msgstr "Onderschrift"
+
 #: classes/pref/prefs.php:17
 msgid "Old password cannot be blank."
 msgstr "Oud wachtwoord kan niet leeg zijn."
@@ -2348,237 +2277,264 @@ msgstr "Geselecteerd plug-ins inschakelen"
 msgid "Incorrect password"
 msgstr "Onjuist wachtwoord"
 
-#: classes/pref/feeds.php:12
+#: classes/pref/prefs.php:879
+#, 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 "U kunt door de CSS-declaraties aan te passen de kleuren, lettertypen en lay-out van uw huidige thema hier aanpassen. <a target=\"_blank\" class=\"visibleLink\" href=\"%s\">Dit bestand</a> kan als richtlijn worden gebruikt."
+
+#: classes/pref/prefs.php:919
+msgid "Create profile"
+msgstr "Maak profiel"
+
+#: classes/pref/prefs.php:942
+#: classes/pref/prefs.php:972
+msgid "(active)"
+msgstr "(actief)"
+
+#: classes/pref/prefs.php:1006
+msgid "Remove selected profiles"
+msgstr "Verwijder geselecteerde profielen"
+
+#: classes/pref/prefs.php:1008
+msgid "Activate profile"
+msgstr "Activeer profiel"
+
+#: classes/pref/feeds.php:13
 msgid "Check to enable field"
 msgstr "Aanvinken om veld in te schakelen"
 
-#: classes/pref/feeds.php:60
-#: classes/pref/feeds.php:208
-#: classes/pref/feeds.php:250
-#: classes/pref/feeds.php:256
-#: classes/pref/feeds.php:281
-#, fuzzy, php-format
-msgid "(%d feed)"
-msgid_plural "(%d feeds)"
-msgstr[0] "(%d feeds)"
-msgstr[1] "(%d feeds)"
-
-#: classes/pref/feeds.php:526
+#: classes/pref/feeds.php:527
 msgid "Feed Title"
 msgstr "Feed titel"
 
-#: classes/pref/feeds.php:582
-#: classes/pref/feeds.php:808
+#: classes/pref/feeds.php:568
+#: classes/pref/feeds.php:793
+msgid "Update"
+msgstr "Bijwerken"
+
+#: classes/pref/feeds.php:583
+#: classes/pref/feeds.php:809
 msgid "Article purging:"
 msgstr "Artikelopschoning:"
 
-#: classes/pref/feeds.php:605
+#: classes/pref/feeds.php:606
 msgid "<b>Hint:</b> you need to fill in your login information if your feed requires authentication, except for Twitter feeds."
 msgstr "<b>Hint:</b> U moet uw aanmeld informatie invullen als uw feed authenticatie vereist, behalve voor Twitter feeds."
 
-#: classes/pref/feeds.php:621
-#: classes/pref/feeds.php:837
+#: classes/pref/feeds.php:622
+#: classes/pref/feeds.php:838
 msgid "Hide from Popular feeds"
 msgstr "Verbergen voor populaire feeds"
 
-#: classes/pref/feeds.php:633
-#: classes/pref/feeds.php:843
+#: classes/pref/feeds.php:634
+#: classes/pref/feeds.php:844
 msgid "Include in e-mail digest"
 msgstr "toevoegen aan e-mail samenvatting"
 
-#: classes/pref/feeds.php:646
-#: classes/pref/feeds.php:849
+#: classes/pref/feeds.php:647
+#: classes/pref/feeds.php:850
 msgid "Always display image attachments"
 msgstr "Altijd afbeeldingsbijlagen weergeven"
 
-#: classes/pref/feeds.php:659
-#: classes/pref/feeds.php:857
+#: classes/pref/feeds.php:660
+#: classes/pref/feeds.php:858
 msgid "Do not embed images"
 msgstr "Afbeeldingen niet insluiten."
 
-#: classes/pref/feeds.php:672
-#: classes/pref/feeds.php:865
+#: classes/pref/feeds.php:673
+#: classes/pref/feeds.php:866
 msgid "Cache images locally"
 msgstr "Afbeelding lokaal in cache plaatsen"
 
-#: classes/pref/feeds.php:684
-#: classes/pref/feeds.php:871
+#: classes/pref/feeds.php:685
+#: classes/pref/feeds.php:872
 msgid "Mark updated articles as unread"
 msgstr "Markeer bijgewerkte artikelen als niet-gelezen"
 
-#: classes/pref/feeds.php:690
+#: classes/pref/feeds.php:691
 msgid "Icon"
 msgstr "Icon"
 
-#: classes/pref/feeds.php:704
+#: classes/pref/feeds.php:705
 msgid "Replace"
 msgstr "Vervangen"
 
-#: classes/pref/feeds.php:723
+#: classes/pref/feeds.php:724
 msgid "Resubscribe to push updates"
 msgstr "Herabonneren voor push updates"
 
-#: classes/pref/feeds.php:730
+#: classes/pref/feeds.php:731
 msgid "Resets PubSubHubbub subscription status for push-enabled feeds."
 msgstr "Herstelt PubSubHubbub abonnement status voor gepushte feeds."
 
-#: classes/pref/feeds.php:1111
-#: classes/pref/feeds.php:1164
+#: classes/pref/feeds.php:1112
+#: classes/pref/feeds.php:1165
 msgid "All done."
 msgstr "Alles gedaan."
 
-#: classes/pref/feeds.php:1219
+#: classes/pref/feeds.php:1220
 msgid "Feeds with errors"
 msgstr "Feeds met fouten"
 
-#: classes/pref/feeds.php:1239
+#: classes/pref/feeds.php:1240
 msgid "Inactive feeds"
 msgstr "Inactieve feeds"
 
-#: classes/pref/feeds.php:1276
+#: classes/pref/feeds.php:1277
 msgid "Edit selected feeds"
 msgstr "Bewerk geselecteerde feeds"
 
-#: classes/pref/feeds.php:1278
-#: classes/pref/feeds.php:1292
-msgid "Reset sort order"
-msgstr "Herstel sorteervolgorde"
-
-#: classes/pref/feeds.php:1280
-#: js/prefs.js:1764
+#: classes/pref/feeds.php:1281
+#: js/prefs.js:1770
 msgid "Batch subscribe"
 msgstr "Batchmatig abonneren"
 
-#: classes/pref/feeds.php:1285
+#: classes/pref/feeds.php:1286
 msgid "Categories"
 msgstr "Categorieën"
 
-#: classes/pref/feeds.php:1288
+#: classes/pref/feeds.php:1289
 msgid "Add category"
 msgstr "Categorie toevoegen"
 
-#: classes/pref/feeds.php:1290
+#: classes/pref/feeds.php:1291
 msgid "(Un)hide empty categories"
 msgstr "Verberg/Toon lege categorieën"
 
-#: classes/pref/feeds.php:1294
+#: classes/pref/feeds.php:1295
 msgid "Remove selected"
 msgstr "Verwijder geselecteerde"
 
-#: classes/pref/feeds.php:1308
+#: classes/pref/feeds.php:1309
 msgid "More actions..."
 msgstr "Meer acties…"
 
-#: classes/pref/feeds.php:1312
+#: classes/pref/feeds.php:1313
 msgid "Manual purge"
 msgstr "Handmatig opschonen"
 
-#: classes/pref/feeds.php:1316
+#: classes/pref/feeds.php:1317
 msgid "Clear feed data"
 msgstr "Wis feed data"
 
-#: classes/pref/feeds.php:1367
+#: classes/pref/feeds.php:1368
 msgid "OPML"
 msgstr "OPML"
 
-#: classes/pref/feeds.php:1369
+#: classes/pref/feeds.php:1370
 msgid "Using OPML you can export and import your feeds, filters, labels and Tiny Tiny RSS settings."
 msgstr "Met OPML kunt u feeds, filters, labels en Tiny Tiny RSS instellingen exporteren en importeren."
 
-#: classes/pref/feeds.php:1371
+#: classes/pref/feeds.php:1372
 msgid "Only main settings profile can be migrated using OPML."
 msgstr "Alleen het hoofdprofiel van de instellingen kan worden overgebracht met OPML."
 
-#: classes/pref/feeds.php:1384
+#: classes/pref/feeds.php:1385
 msgid "Import my OPML"
 msgstr "Importeer mijn OPML"
 
-#: classes/pref/feeds.php:1388
+#: classes/pref/feeds.php:1389
 msgid "Filename:"
 msgstr "Bestandsnaam:"
 
-#: classes/pref/feeds.php:1390
+#: classes/pref/feeds.php:1391
 msgid "Include settings"
 msgstr "toevoegingsinstellingen"
 
-#: classes/pref/feeds.php:1394
+#: classes/pref/feeds.php:1395
 msgid "Export OPML"
 msgstr "OPML exporteren"
 
-#: classes/pref/feeds.php:1398
+#: classes/pref/feeds.php:1399
 msgid "Your OPML can be published publicly and can be subscribed by anyone who knows the URL below."
 msgstr "Uw OPML kan openbaar worden gepubliceerd en er kan op worden geabonneerd door iedereen die de URL hieronder kent."
 
-#: classes/pref/feeds.php:1400
+#: classes/pref/feeds.php:1401
 msgid "Published OPML does not include your Tiny Tiny RSS settings, feeds that require authentication or feeds hidden from Popular feeds."
 msgstr "De gepubliceerde OPML bevatten niet uw Tiny Tiny RSS instellingen, feeds die authenticatie vereisen of feeds verborgen voor Populaire feeds."
 
 #: classes/pref/feeds.php:1403
+msgid "Public OPML URL"
+msgstr "Publieke OPML URL"
+
+#: classes/pref/feeds.php:1404
 msgid "Display published OPML URL"
 msgstr "Gepubliceerde OPML URL weergeven"
 
-#: classes/pref/feeds.php:1413
+#: classes/pref/feeds.php:1414
 msgid "Firefox integration"
 msgstr "Firefox integratie"
 
-#: classes/pref/feeds.php:1415
+#: classes/pref/feeds.php:1416
 msgid "This Tiny Tiny RSS site can be used as a Firefox Feed Reader by clicking the link below."
 msgstr "Deze Tiny Tiny RSS site kan gebruikt worden als een Firefox Feed Reader door op de link hieronder te klikken."
 
-#: classes/pref/feeds.php:1422
+#: classes/pref/feeds.php:1423
 msgid "Click here to register this site as a feed reader."
 msgstr "Klik hier om deze site te registreren als een feed reader."
 
-#: classes/pref/feeds.php:1430
+#: classes/pref/feeds.php:1431
 msgid "Published & shared articles / Generated feeds"
 msgstr "Gepubliceerde & gedeelde artikelen / Gegenereerde feeds"
 
-#: classes/pref/feeds.php:1432
+#: classes/pref/feeds.php:1433
 msgid "Published articles and generated feeds"
 msgstr "Gepubliceerde artikelen en gegenereerde feeds"
 
-#: classes/pref/feeds.php:1434
+#: classes/pref/feeds.php:1435
 msgid "Published articles are exported as a public RSS feed and can be subscribed by anyone who knows the URL specified below."
 msgstr "Gepubliceerde artikelen worden geëxporteerd als publieke RSS-feed en er kan door iedereen die de URL hieronder kent op worden geabonneerd."
 
-#: classes/pref/feeds.php:1440
+#: classes/pref/feeds.php:1441
 msgid "Display URL"
 msgstr "Toon URL"
 
-#: classes/pref/feeds.php:1443
+#: classes/pref/feeds.php:1444
 msgid "Clear all generated URLs"
 msgstr "Wis alle gegenereerde URL's"
 
-#: classes/pref/feeds.php:1445
+#: classes/pref/feeds.php:1446
 msgid "Articles shared by URL"
 msgstr "Artikelen gedeeld met URL"
 
-#: classes/pref/feeds.php:1447
+#: classes/pref/feeds.php:1448
 msgid "You can disable all articles shared by unique URLs here."
 msgstr "U kunt alle artikelen gedeeld via unieke URL's hier uitschakelen."
 
-#: classes/pref/feeds.php:1450
+#: classes/pref/feeds.php:1451
 msgid "Unshare all articles"
 msgstr "Delen alle artikelen teniet doen"
 
-#: classes/pref/feeds.php:1528
+#: classes/pref/feeds.php:1529
 msgid "These feeds have not been updated with new content for 3 months (oldest first):"
 msgstr "Deze feeds hebben al 3 maanden geen nieuwe inhoud (oudste eerst):"
 
-#: classes/pref/feeds.php:1565
-#: classes/pref/feeds.php:1635
+#: classes/pref/feeds.php:1566
+#: classes/pref/feeds.php:1636
 msgid "Click to edit feed"
 msgstr "Klik om feed te bewerken"
 
-#: classes/pref/feeds.php:1583
-#: classes/pref/feeds.php:1655
+#: classes/pref/feeds.php:1584
+#: classes/pref/feeds.php:1656
 msgid "Unsubscribe from selected feeds"
 msgstr "Abonnement opzeggen voor geselecteerde feeds"
 
-#: classes/pref/feeds.php:1594
+#: classes/pref/feeds.php:1595
 msgid "These feeds have not been updated because of errors:"
 msgstr "Deze feeds zijn niet bijgewerkt omdat er fouten zijn opgetreden:"
 
+#: classes/pref/feeds.php:1758
+msgid "Add one valid RSS feed per line (no feed detection is done)"
+msgstr "Een geldige RSS feed per regel toevoegen (geen feed detectie uitgevoerd)"
+
+#: classes/pref/feeds.php:1767
+msgid "Feeds to subscribe, One per line"
+msgstr "Te abonneren feeds: één per regel"
+
+#: classes/pref/feeds.php:1789
+msgid "Feeds require authentication."
+msgstr "Feeds vereisen authenticatie."
+
 #: plugins/digest/digest_body.php:59
 #, fuzzy
 msgid "Your browser doesn't support Javascript, which is required for this application to function properly. Please check your browser settings."
@@ -2838,24 +2794,24 @@ msgstr "Geef waarde"
 msgid "No file uploaded."
 msgstr ""
 
-#: plugins/googlereaderimport/init.php:149
+#: plugins/googlereaderimport/init.php:153
 #, php-format
 msgid "All done. %d out of %d articles imported."
 msgstr ""
 
-#: plugins/googlereaderimport/init.php:153
+#: plugins/googlereaderimport/init.php:157
 msgid "The document has incorrect format."
 msgstr ""
 
-#: plugins/googlereaderimport/init.php:322
+#: plugins/googlereaderimport/init.php:326
 msgid "Import starred or shared items from Google Reader"
 msgstr ""
 
-#: plugins/googlereaderimport/init.php:326
+#: plugins/googlereaderimport/init.php:330
 msgid "Paste your starred.json or shared.json into the form below."
 msgstr ""
 
-#: plugins/googlereaderimport/init.php:340
+#: plugins/googlereaderimport/init.php:344
 msgid "Import my Starred items"
 msgstr ""
 
@@ -2863,6 +2819,38 @@ msgstr ""
 msgid "Linked"
 msgstr "Gekoppeld"
 
+#: plugins/instances/init.php:207
+#: plugins/instances/init.php:399
+msgid "Instance"
+msgstr "Instantie"
+
+#: plugins/instances/init.php:218
+#: plugins/instances/init.php:315
+#: plugins/instances/init.php:408
+msgid "Instance URL"
+msgstr "instantie URL"
+
+#: plugins/instances/init.php:229
+#: plugins/instances/init.php:418
+msgid "Access key:"
+msgstr "Toegangssleutel:"
+
+#: plugins/instances/init.php:232
+#: plugins/instances/init.php:316
+#: plugins/instances/init.php:421
+msgid "Access key"
+msgstr "Toegangssleutel"
+
+#: plugins/instances/init.php:236
+#: plugins/instances/init.php:425
+msgid "Use one access key for both linked instances."
+msgstr "Gebruik één toegang-sleutel voor beide gekoppelde instanties."
+
+#: plugins/instances/init.php:244
+#: plugins/instances/init.php:433
+msgid "Generate new key"
+msgstr "Genereer nieuwe sleutel"
+
 #: plugins/instances/init.php:295
 msgid "Link instance"
 msgstr "Link instantie"
@@ -2883,6 +2871,10 @@ msgstr "Status"
 msgid "Stored feeds"
 msgstr "Opgeslagen feeds"
 
+#: plugins/instances/init.php:437
+msgid "Create link"
+msgstr "Link aanmaken"
+
 #: plugins/share/init.php:27
 msgid "Share by URL"
 msgstr "Deel via URL"
@@ -2942,173 +2934,177 @@ msgstr "Weet u zeker dat u deze uitzondering wilt rapporteren aan tt-rss.org? He
 msgid "close"
 msgstr ""
 
-#: js/functions.js:627
+#: js/functions.js:621
 msgid "Date syntax appears to be correct:"
 msgstr "Data syntax lijkt correct:"
 
-#: js/functions.js:630
+#: js/functions.js:624
 msgid "Date syntax is incorrect."
 msgstr "Data syntax is onjuist."
 
-#: js/functions.js:724
+#: js/functions.js:636
+msgid "Error explained"
+msgstr ""
+
+#: js/functions.js:718
 msgid "Upload complete."
 msgstr ""
 
-#: js/functions.js:748
+#: js/functions.js:742
 msgid "Remove stored feed icon?"
 msgstr "Opgeslagen feed pictogram verwijderen?"
 
-#: js/functions.js:753
+#: js/functions.js:747
 #, fuzzy
 msgid "Removing feed icon..."
 msgstr "Opgeslagen feed pictogram verwijderen?"
 
-#: js/functions.js:758
+#: js/functions.js:752
 #, fuzzy
 msgid "Feed icon removed."
 msgstr "Feed niet gevonden."
 
-#: js/functions.js:780
+#: js/functions.js:774
 msgid "Please select an image file to upload."
 msgstr "Selecteer aub een afbeeldingsbestand om te uploaden."
 
-#: js/functions.js:782
+#: js/functions.js:776
 msgid "Upload new icon for this feed?"
 msgstr "Nieuw pictogram voor deze feed uploaden?"
 
-#: js/functions.js:783
+#: js/functions.js:777
 #, fuzzy
 msgid "Uploading, please wait..."
 msgstr "Aan 't laden, even wachten aub..."
 
-#: js/functions.js:799
+#: js/functions.js:793
 msgid "Please enter label caption:"
 msgstr "Geeft een onderschrift voor label:"
 
-#: js/functions.js:804
+#: js/functions.js:798
 msgid "Can't create label: missing caption."
 msgstr "Kan geen label aanmaken: onderschrift ontbreekt"
 
-#: js/functions.js:847
+#: js/functions.js:841
 msgid "Subscribe to Feed"
 msgstr "Abonneren op feed"
 
-#: js/functions.js:874
+#: js/functions.js:868
 msgid "Subscribed to %s"
 msgstr "Geabonneerd op %s"
 
-#: js/functions.js:879
+#: js/functions.js:873
 msgid "Specified URL seems to be invalid."
 msgstr "Gespecificeerde URL lijkt ongeldig te zijn."
 
-#: js/functions.js:882
+#: js/functions.js:876
 msgid "Specified URL doesn't seem to contain any feeds."
 msgstr "Gespecificeerde URL lijkt geen feeds te bevatten."
 
-#: js/functions.js:935
+#: js/functions.js:929
 msgid "Couldn't download the specified URL: %s"
 msgstr "Kon de gespecificeerde URL: %s niet downloaden"
 
-#: js/functions.js:939
+#: js/functions.js:933
 msgid "You are already subscribed to this feed."
 msgstr "U bent al geabonneerd op deze feed."
 
-#: js/functions.js:1069
+#: js/functions.js:1063
 msgid "Edit rule"
 msgstr "Bewerk regel"
 
-#: js/functions.js:1095
+#: js/functions.js:1089
 msgid "Edit action"
 msgstr "Bewerk actie"
 
-#: js/functions.js:1132
+#: js/functions.js:1126
 msgid "Create Filter"
 msgstr "Filter aanmaken"
 
-#: js/functions.js:1247
+#: js/functions.js:1241
 msgid "Reset subscription? Tiny Tiny RSS will try to subscribe to the notification hub again on next feed update."
 msgstr "Abonnement opnieuw instellen? Tiny Tiny RSS zal proberen zich opnieuw op de notification hub te abonneren bij de volgende feed update."
 
-#: js/functions.js:1258
+#: js/functions.js:1252
 #, fuzzy
 msgid "Subscription reset."
 msgstr "Abonneren op feed..."
 
-#: js/functions.js:1268
+#: js/functions.js:1262
 #: js/tt-rss.js:619
 msgid "Unsubscribe from %s?"
 msgstr "Abonnement opzeggen voor %s?"
 
-#: js/functions.js:1271
+#: js/functions.js:1265
 msgid "Removing feed..."
 msgstr ""
 
-#: js/functions.js:1379
+#: js/functions.js:1373
 msgid "Please enter category title:"
 msgstr "Vul titel van categorie in aub:"
 
-#: js/functions.js:1410
+#: js/functions.js:1404
 msgid "Generate new syndication address for this feed?"
 msgstr "nieuw syndicatie-adres voor deze feed genereren?"
 
-#: js/functions.js:1414
-#: js/prefs.js:1234
+#: js/functions.js:1408
+#: js/prefs.js:1222
 msgid "Trying to change address..."
 msgstr ""
 
-#: js/functions.js:1601
+#: js/functions.js:1595
 #: js/tt-rss.js:396
 #: js/tt-rss.js:600
 msgid "You can't edit this kind of feed."
 msgstr "U kunt dit type feed niet bewerken."
 
-#: js/functions.js:1616
+#: js/functions.js:1610
 msgid "Edit Feed"
 msgstr "Bewerken feed"
 
-#: js/functions.js:1622
+#: js/functions.js:1616
 #: js/prefs.js:194
 #: js/prefs.js:749
 #, fuzzy
 msgid "Saving data..."
 msgstr "Gegevens opslaan"
 
-#: js/functions.js:1654
+#: js/functions.js:1648
 msgid "More Feeds"
 msgstr "Meer feeds"
 
-#: js/functions.js:1715
-#: js/functions.js:1825
+#: js/functions.js:1709
+#: js/functions.js:1819
 #: 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
+#: js/prefs.js:1198
+#: js/prefs.js:1343
 msgid "No feeds are selected."
 msgstr "Er zijn geen feeds geselecteerd."
 
-#: js/functions.js:1757
+#: js/functions.js:1751
 msgid "Remove selected feeds from the archive? Feeds with stored articles will not be removed."
 msgstr "Geselecteerde feeds uit het archief verwijderen? Feeds met opgeslagen artikelen zullen niet worden verwijderd."
 
-#: js/functions.js:1796
+#: js/functions.js:1790
 msgid "Feeds with update errors"
 msgstr "Feeds met update fouten"
 
-#: js/functions.js:1807
-#: js/prefs.js:1192
+#: js/functions.js:1801
+#: js/prefs.js:1180
 msgid "Remove selected feeds?"
 msgstr "Geselecteerde feeds verwijderen?"
 
-#: js/functions.js:1810
-#: js/prefs.js:1195
+#: js/functions.js:1804
+#: js/prefs.js:1183
 #, fuzzy
 msgid "Removing selected feeds..."
 msgstr "Geselecteerde feeds verwijderen?"
 
-#: js/functions.js:1908
+#: js/functions.js:1902
 msgid "Help"
 msgstr "Help"
 
@@ -3120,7 +3116,7 @@ msgstr "Bewerk categorie"
 msgid "Remove category"
 msgstr "Categorie verwijderen"
 
-#: js/PrefFilterTree.js:32
+#: js/PrefFilterTree.js:48
 msgid "Inverse"
 msgstr "Omgekeerd"
 
@@ -3160,7 +3156,7 @@ msgid "Removing selected labels..."
 msgstr "Geselecteerde labels verwijderen?"
 
 #: js/prefs.js:295
-#: js/prefs.js:1396
+#: js/prefs.js:1384
 msgid "No labels are selected."
 msgstr "Er zijn geen labels geselecteerd."
 
@@ -3271,154 +3267,154 @@ msgstr "Bewerk meervoudige feeds"
 msgid "Save changes to selected feeds?"
 msgstr "Veranderingen aan geselecteerde feeds opslaan?"
 
-#: js/prefs.js:797
+#: js/prefs.js:785
 msgid "OPML Import"
 msgstr "OPML import"
 
-#: js/prefs.js:824
+#: js/prefs.js:812
 msgid "Please choose an OPML file first."
 msgstr "kies eerst een OPML-bestand aub."
 
-#: js/prefs.js:827
+#: js/prefs.js:815
 #: plugins/import_export/import_export.js:115
 #: plugins/googlereaderimport/init.js:45
 #, fuzzy
 msgid "Importing, please wait..."
 msgstr "Aan 't laden, even wachten aub..."
 
-#: js/prefs.js:980
+#: js/prefs.js:968
 msgid "Reset to defaults?"
 msgstr "Terugzetten naar de standaardwaarden?"
 
-#: js/prefs.js:1099
+#: js/prefs.js:1087
 msgid "Remove category %s? Any nested feeds would be placed into Uncategorized."
 msgstr "Categorie %s verwijderen? elke genestelde feed zal in de rubriek 'Ongecategoriseerd' worden geplaatst."
 
-#: js/prefs.js:1105
+#: js/prefs.js:1093
 #, fuzzy
 msgid "Removing category..."
 msgstr "Categorie verwijderen"
 
-#: js/prefs.js:1126
+#: js/prefs.js:1114
 msgid "Remove selected categories?"
 msgstr "Geselecteerde categorieën verwijderen?"
 
-#: js/prefs.js:1129
+#: js/prefs.js:1117
 #, fuzzy
 msgid "Removing selected categories..."
 msgstr "Geselecteerde categorieën verwijderen?"
 
-#: js/prefs.js:1142
+#: js/prefs.js:1130
 msgid "No categories are selected."
 msgstr "Geen categorieën geselecteerd."
 
-#: js/prefs.js:1150
+#: js/prefs.js:1138
 msgid "Category title:"
 msgstr "Categorie titel:"
 
-#: js/prefs.js:1154
+#: js/prefs.js:1142
 #, fuzzy
 msgid "Creating category..."
 msgstr "Aanmaken filter…"
 
-#: js/prefs.js:1181
+#: js/prefs.js:1169
 msgid "Feeds without recent updates"
 msgstr "Feeds zonder recente updates"
 
-#: js/prefs.js:1230
+#: js/prefs.js:1218
 msgid "Replace current OPML publishing address with a new one?"
 msgstr "huidig OPML publicatieadres vervangen door een nieuwe?"
 
-#: js/prefs.js:1319
+#: js/prefs.js:1307
 #, fuzzy
 msgid "Clearing feed..."
 msgstr "Wis feed data"
 
-#: js/prefs.js:1339
+#: js/prefs.js:1327
 msgid "Rescore articles in selected feeds?"
 msgstr "Artikelen in geselecteerde feeds opnieuw een score geven?"
 
-#: js/prefs.js:1342
+#: js/prefs.js:1330
 #, fuzzy
 msgid "Rescoring selected feeds..."
 msgstr "Artikelen in geselecteerde feeds opnieuw een score geven?"
 
-#: js/prefs.js:1362
+#: js/prefs.js:1350
 msgid "Rescore all articles? This operation may take a lot of time."
 msgstr "Alle artikelen opnieuw een score geven? Dit kan veel tjid in beslag nemen."
 
-#: js/prefs.js:1365
+#: js/prefs.js:1353
 #, fuzzy
 msgid "Rescoring feeds..."
 msgstr "Feed opnieuw score geven"
 
-#: js/prefs.js:1382
+#: js/prefs.js:1370
 msgid "Reset selected labels to default colors?"
 msgstr "Geselecteerd label naar de standaard kleur terugzetten?"
 
-#: js/prefs.js:1419
+#: js/prefs.js:1407
 msgid "Settings Profiles"
 msgstr "Instellingsprofielen"
 
-#: js/prefs.js:1428
+#: js/prefs.js:1416
 msgid "Remove selected profiles? Active and default profiles will not be removed."
 msgstr "Geselecteerde profielen verwijderen? Actieve en standaard profielen zullen niet worden verwijderd."
 
-#: js/prefs.js:1431
+#: js/prefs.js:1419
 #, fuzzy
 msgid "Removing selected profiles..."
 msgstr "Verwijder geselecteerde profielen"
 
-#: js/prefs.js:1446
+#: js/prefs.js:1434
 msgid "No profiles are selected."
 msgstr "Er zijn geen profielen geselecteerd."
 
-#: js/prefs.js:1454
-#: js/prefs.js:1507
+#: js/prefs.js:1442
+#: js/prefs.js:1495
 msgid "Activate selected profile?"
 msgstr "Geselecteerd profiel activeren?"
 
-#: js/prefs.js:1470
-#: js/prefs.js:1523
+#: js/prefs.js:1458
+#: js/prefs.js:1511
 msgid "Please choose a profile to activate."
 msgstr "Kies een te activeren profiel aub."
 
-#: js/prefs.js:1475
+#: js/prefs.js:1463
 #, fuzzy
 msgid "Creating profile..."
 msgstr "Maak profiel"
 
-#: js/prefs.js:1531
+#: js/prefs.js:1519
 msgid "This will invalidate all previously generated feed URLs. Continue?"
 msgstr "Dit zal alle eerder gegenereerde feed-URL's ongeldig maken. Doorgaan?"
 
-#: js/prefs.js:1534
-#: js/prefs.js:1553
+#: js/prefs.js:1522
+#: js/prefs.js:1541
 msgid "Clearing URLs..."
 msgstr ""
 
-#: js/prefs.js:1541
+#: js/prefs.js:1529
 #, fuzzy
 msgid "Generated URLs cleared."
 msgstr "Genereer nieuwe URL"
 
-#: js/prefs.js:1550
+#: js/prefs.js:1538
 msgid "This will invalidate all previously shared article URLs. Continue?"
 msgstr "Dit zal all eerder gedeelde artikel-URL's ongeldig maken. Doorgaan?"
 
-#: js/prefs.js:1560
+#: js/prefs.js:1548
 msgid "Shared URLs cleared."
 msgstr ""
 
-#: js/prefs.js:1648
+#: js/prefs.js:1654
 msgid "Label Editor"
 msgstr "Label editor"
 
-#: js/prefs.js:1770
+#: js/prefs.js:1776
 msgid "Subscribing to feeds..."
 msgstr "Abonneren op feeds..."
 
-#: js/prefs.js:1807
+#: js/prefs.js:1813
 msgid "Clear stored data for this plugin?"
 msgstr "Wis opgeslagen data voor deze plug-in?"
 
@@ -3439,29 +3435,33 @@ msgstr "Eerst de e-mail plug-in inschakelen aub."
 msgid "Please enable embed_original plugin first."
 msgstr "embed_original plug-in inschakelen aub."
 
+#: js/tt-rss.js:587
+msgid "Select item(s) by tags"
+msgstr "Selecteer item(s) via tags"
+
 #: js/tt-rss.js:608
 msgid "You can't unsubscribe from the category."
 msgstr "U kunt het abonnementen niet opzeggen in deze categorie."
 
 #: js/tt-rss.js:613
-#: js/tt-rss.js:769
+#: js/tt-rss.js:765
 msgid "Please select some feed first."
 msgstr "Selecteer aub eerst een feed."
 
-#: js/tt-rss.js:764
+#: js/tt-rss.js:760
 msgid "You can't rescore this kind of feed."
 msgstr "U kunt dit type feed geen andere score geven."
 
-#: js/tt-rss.js:774
+#: js/tt-rss.js:770
 msgid "Rescore articles in %s?"
 msgstr "Artikelen in %s opnieuw een score geven?"
 
-#: js/tt-rss.js:777
+#: js/tt-rss.js:773
 #, fuzzy
 msgid "Rescoring articles..."
 msgstr "Artikelen nieuwe score geven"
 
-#: js/tt-rss.js:911
+#: js/tt-rss.js:907
 msgid "New version available!"
 msgstr "Nieuwe versie beschikbaar!"
 
@@ -3492,116 +3492,112 @@ msgstr "Ongepubliceerd artikel"
 #: js/viewfeed.js:734
 #: js/viewfeed.js:797
 #: js/viewfeed.js:831
-#: js/viewfeed.js:968
-#: js/viewfeed.js:1011
-#: js/viewfeed.js:1064
-#: js/viewfeed.js:2108
+#: js/viewfeed.js:951
+#: js/viewfeed.js:994
+#: js/viewfeed.js:1047
+#: js/viewfeed.js:2096
 #: plugins/mailto/init.js:7
 #: plugins/mail/mail.js:7
 msgid "No articles are selected."
 msgstr "Geen artikelen geselecteerd."
 
-#: js/viewfeed.js:948
-msgid "Mark all visible articles in %s as read?"
-msgstr "Markeer alle zichtbare artikelen in %s als gelezen?"
-
-#: js/viewfeed.js:976
+#: js/viewfeed.js:959
 #, fuzzy
 msgid "Delete %d selected article in %s?"
 msgid_plural "Delete %d selected articles in %s?"
 msgstr[0] "Verwijder %d geselecteerde artikelen in %s?"
 msgstr[1] "Verwijder %d geselecteerde artikelen in %s?"
 
-#: js/viewfeed.js:978
+#: js/viewfeed.js:961
 #, fuzzy
 msgid "Delete %d selected article?"
 msgid_plural "Delete %d selected articles?"
 msgstr[0] "Verwijder %d geselecteerde artikelen?"
 msgstr[1] "Verwijder %d geselecteerde artikelen?"
 
-#: js/viewfeed.js:1020
+#: js/viewfeed.js:1003
 #, fuzzy
 msgid "Archive %d selected article in %s?"
 msgid_plural "Archive %d selected articles in %s?"
 msgstr[0] "%d geselecteerd artikelen archiveren in %s?"
 msgstr[1] "%d geselecteerd artikelen archiveren in %s?"
 
-#: js/viewfeed.js:1023
+#: js/viewfeed.js:1006
 #, fuzzy
 msgid "Move %d archived article back?"
 msgid_plural "Move %d archived articles back?"
 msgstr[0] "%d gearchiveerde artikelen terugzetten?"
 msgstr[1] "%d gearchiveerde artikelen terugzetten?"
 
-#: js/viewfeed.js:1025
+#: js/viewfeed.js:1008
 msgid "Please note that unstarred articles might get purged on next feed update."
 msgstr ""
 
-#: js/viewfeed.js:1070
+#: js/viewfeed.js:1053
 #, fuzzy
 msgid "Mark %d selected article in %s as read?"
 msgid_plural "Mark %d selected articles in %s as read?"
 msgstr[0] "Markeer %d geselecteerde artikelen in %s als gelezen?"
 msgstr[1] "Markeer %d geselecteerde artikelen in %s als gelezen?"
 
-#: js/viewfeed.js:1094
+#: js/viewfeed.js:1077
 msgid "Edit article Tags"
 msgstr "Bewerken artikel tags"
 
-#: js/viewfeed.js:1100
+#: js/viewfeed.js:1083
 #, fuzzy
 msgid "Saving article tags..."
 msgstr "Bewerken artikel tags"
 
-#: js/viewfeed.js:1337
+#: js/viewfeed.js:1323
 msgid "No article is selected."
 msgstr "Geen artikel geselecteerd."
 
-#: js/viewfeed.js:1372
+#: js/viewfeed.js:1358
 msgid "No articles found to mark"
 msgstr "Geen artikelen gevonden om te markeren"
 
-#: js/viewfeed.js:1374
+#: js/viewfeed.js:1360
 #, fuzzy
 msgid "Mark %d article as read?"
 msgid_plural "Mark %d articles as read?"
 msgstr[0] "Markeer %d artikel(en) als gelezen?"
 msgstr[1] "Markeer %d artikel(en) als gelezen?"
 
-#: js/viewfeed.js:1884
+#: js/viewfeed.js:1872
 msgid "Open original article"
 msgstr "Open origineel artikel"
 
-#: js/viewfeed.js:1890
+#: js/viewfeed.js:1878
 msgid "Display article URL"
 msgstr "Toon artikel URL"
 
-#: js/viewfeed.js:1909
+#: js/viewfeed.js:1897
 #, fuzzy
 msgid "Toggle marked"
 msgstr "In/uitschakelen sterren"
 
-#: js/viewfeed.js:1995
+#: js/viewfeed.js:1983
 msgid "Remove label"
 msgstr "Label verwijderen"
 
-#: js/viewfeed.js:2019
+#: js/viewfeed.js:2007
 msgid "Playing..."
 msgstr "aan 't afspelen..."
 
-#: js/viewfeed.js:2020
+#: js/viewfeed.js:2008
 msgid "Click to pause"
 msgstr "Klik voor pauze"
 
-#: js/viewfeed.js:2077
+#: js/viewfeed.js:2065
 msgid "Please enter new score for selected articles:"
 msgstr "Geef aub een nieuwe score voor de geselecteerde artikelen:"
 
-#: js/viewfeed.js:2119
+#: js/viewfeed.js:2107
 msgid "Please enter new score for this article:"
 msgstr "Geef aub een nieuwe score voor dit artikel:"
 
-#: js/viewfeed.js:2152
+#: js/viewfeed.js:2140
 msgid "Article URL:"
 msgstr "Artikel URL:"
 
@@ -3711,6 +3707,21 @@ msgstr "Deel artikel via URL"
 msgid "Live updating is considered experimental. Backup your tt-rss directory before continuing. Please type 'yes' to continue."
 msgstr "Live updaten is nog experimenteel. Maak een back-up van uw tt-rss map alvorens door te gaan. Typ 'ja' om door te gaan. "
 
+#, fuzzy
+#~ msgid "(%d feed)"
+#~ msgid_plural "(%d feeds)"
+#~ msgstr[0] "(%d feeds)"
+#~ msgstr[1] "(%d feeds)"
+
+#~ msgid "Notice"
+#~ msgstr "NB!"
+
+#~ msgid "Tag Cloud"
+#~ msgstr "Tag Wolk"
+
+#~ msgid "Mark all visible articles in %s as read?"
+#~ msgstr "Markeer alle zichtbare artikelen in %s als gelezen?"
+
 #~ msgid "Date"
 #~ msgstr "Datum"
 
index bb36dae74549de40d205797927e8059d74f5f3e7..d992ad0558ed7fdd8a4dd43684bb347db6f774c3 100644 (file)
Binary files a/locale/pl_PL/LC_MESSAGES/messages.mo and b/locale/pl_PL/LC_MESSAGES/messages.mo differ
index 5fe71b30c5638deab8ff27429d3bf7e29147d604..446533e761a04ffcba5d2457d239715c302b008d 100644 (file)
@@ -9,7 +9,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Tiny Tiny RSS\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-03-31 12:47+0400\n"
+"POT-Creation-Date: 2013-04-01 16:28+0400\n"
 "PO-Revision-Date: 2013-03-25 13:25+0100\n"
 "Last-Translator: Mirosław Lach <m.wordpress@lach.waw.pl>\n"
 "Language-Team: Polish (http://www.transifex.com/projects/p/tt-rss/language/pl/)\n"
@@ -139,9 +139,9 @@ msgstr "Schemat bazy danych Tiny Tiny RSS jest aktualny."
 #: register.php:336
 #: register.php:346
 #: register.php:358
-#: classes/handler/public.php:625
-#: classes/handler/public.php:713
-#: classes/handler/public.php:795
+#: classes/handler/public.php:626
+#: classes/handler/public.php:714
+#: classes/handler/public.php:796
 msgid "Return to Tiny Tiny RSS"
 msgstr "Wróć do Tiny Tiny RSS"
 
@@ -250,36 +250,37 @@ msgstr "Test escape'owania SQL nie powiódł się. Sprawdź konfigurację swojej
 
 #: index.php:135
 #: index.php:154
-#: index.php:264
-#: prefs.php:102
+#: index.php:263
+#: prefs.php:103
 #: classes/backend.php:5
 #: classes/pref/labels.php:296
-#: classes/pref/filters.php:628
-#: classes/pref/feeds.php:1330
+#: classes/pref/filters.php:680
+#: classes/pref/feeds.php:1331
 #: plugins/digest/digest_body.php:63
 #: js/feedlist.js:128
 #: js/feedlist.js:448
 #: js/functions.js:420
-#: js/functions.js:814
-#: js/functions.js:1250
-#: js/functions.js:1385
-#: js/functions.js:1697
+#: js/functions.js:808
+#: js/functions.js:1244
+#: js/functions.js:1379
+#: js/functions.js:1691
 #: js/prefs.js:86
 #: js/prefs.js:576
 #: js/prefs.js:666
-#: js/prefs.js:870
-#: js/prefs.js:1457
-#: js/prefs.js:1510
-#: js/prefs.js:1568
-#: js/prefs.js:1584
-#: js/prefs.js:1600
-#: js/prefs.js:1619
-#: js/prefs.js:1792
-#: js/prefs.js:1808
+#: js/prefs.js:858
+#: js/prefs.js:1445
+#: js/prefs.js:1498
+#: js/prefs.js:1557
+#: js/prefs.js:1574
+#: js/prefs.js:1590
+#: js/prefs.js:1606
+#: js/prefs.js:1625
+#: js/prefs.js:1798
+#: js/prefs.js:1814
 #: js/tt-rss.js:475
 #: js/tt-rss.js:492
 #: js/viewfeed.js:774
-#: js/viewfeed.js:1259
+#: js/viewfeed.js:1245
 #: plugins/import_export/import_export.js:17
 #: plugins/updater/updater.js:17
 msgid "Loading, please wait..."
@@ -302,13 +303,13 @@ msgid "All Articles"
 msgstr "Wszystkie artykuły"
 
 #: index.php:176
-#: include/functions.php:1974
+#: include/functions.php:1924
 #: classes/feeds.php:106
 msgid "Starred"
 msgstr "Oznaczone gwiazdką"
 
 #: index.php:177
-#: include/functions.php:1975
+#: include/functions.php:1925
 #: classes/feeds.php:107
 msgid "Published"
 msgstr "Opublikowane"
@@ -348,22 +349,15 @@ msgstr ""
 msgid "Oldest first"
 msgstr ""
 
-#: index.php:195
-#: classes/pref/feeds.php:567
-#: classes/pref/feeds.php:792
-msgid "Update"
-msgstr "Aktualizuj"
-
-#: index.php:197
+#: index.php:192
 msgid "Mark feed as read"
 msgstr "Oznacz kanał jako przeczytany"
 
-#: index.php:200
-#: index.php:235
-#: include/functions.php:1964
+#: index.php:195
+#: index.php:234
+#: include/functions.php:1914
 #: include/localized_schema.php:10
 #: classes/feeds.php:111
-#: classes/feeds.php:136
 #: classes/feeds.php:437
 #: js/FeedTree.js:128
 #: js/FeedTree.js:156
@@ -371,110 +365,115 @@ msgstr "Oznacz kanał jako przeczytany"
 msgid "Mark as read"
 msgstr "Oznacz jako przeczytane"
 
-#: index.php:201
-#: include/functions.php:1860
-#: include/functions.php:1972
+#: index.php:196
+#: include/functions.php:1810
+#: include/functions.php:1922
 msgid "All articles"
 msgstr "Wszystkie artykuły"
 
-#: index.php:202
+#: index.php:197
 msgid "Older than one day"
 msgstr ""
 
-#: index.php:203
+#: index.php:198
 msgid "Older than one week"
 msgstr ""
 
-#: index.php:204
+#: index.php:199
 msgid "Older than two weeks"
 msgstr ""
 
-#: index.php:212
+#: index.php:204
+#, fuzzy
+msgid "Refresh"
+msgstr "Świeży"
+
+#: index.php:211
 msgid "Communication problem with server."
 msgstr "Problem w komunikacji z serwerem."
 
-#: index.php:220
+#: index.php:219
 msgid "New version of Tiny Tiny RSS is available!"
 msgstr "Dostępna jest nowa wersja Tiny Tiny RSS!"
 
-#: index.php:225
+#: index.php:224
 msgid "Actions..."
 msgstr "Działania..."
 
-#: index.php:227
+#: index.php:226
 msgid "Preferences..."
 msgstr "Ustawienia..."
 
-#: index.php:228
+#: index.php:227
 msgid "Search..."
 msgstr "Szukaj..."
 
-#: index.php:229
+#: index.php:228
 msgid "Feed actions:"
 msgstr "Działania dla kanałów:"
 
-#: index.php:230
-#: classes/handler/public.php:555
+#: index.php:229
+#: classes/handler/public.php:556
 msgid "Subscribe to feed..."
 msgstr "Prenumeruj kanał..."
 
-#: index.php:231
+#: index.php:230
 msgid "Edit this feed..."
 msgstr "Edytuj ten kanał..."
 
-#: index.php:232
+#: index.php:231
 msgid "Rescore feed"
 msgstr "Przelicz punktację kanału"
 
-#: index.php:233
-#: classes/pref/feeds.php:716
-#: classes/pref/feeds.php:1303
+#: index.php:232
+#: classes/pref/feeds.php:717
+#: classes/pref/feeds.php:1304
 #: js/PrefFeedTree.js:73
 msgid "Unsubscribe"
 msgstr "Wypisz się"
 
-#: index.php:234
+#: index.php:233
 msgid "All feeds:"
 msgstr "Wszystkie kanały:"
 
-#: index.php:236
+#: index.php:235
 msgid "(Un)hide read feeds"
 msgstr "Pokaż/Ukryj przeczytane kanały"
 
-#: index.php:237
+#: index.php:236
 msgid "Other actions:"
 msgstr "Inne działania:"
 
-#: index.php:239
+#: index.php:238
 msgid "Switch to digest..."
 msgstr "Przełącz na przegląd..."
 
-#: index.php:241
+#: index.php:240
 msgid "Show tag cloud..."
 msgstr "Pokaż chmurę tagów..."
 
-#: index.php:242
-#: include/functions.php:1950
+#: index.php:241
+#: include/functions.php:1900
 msgid "Toggle widescreen mode"
 msgstr "Przełącz tryb szerokoekranowy"
 
-#: index.php:243
+#: index.php:242
 msgid "Select by tags..."
 msgstr "Wybierz używając tagów..."
 
-#: index.php:244
+#: index.php:243
 msgid "Create label..."
 msgstr "Utwórz etykietę..."
 
-#: index.php:245
+#: index.php:244
 msgid "Create filter..."
 msgstr "Utwórz filtr..."
 
-#: index.php:246
+#: index.php:245
 msgid "Keyboard shortcuts help"
 msgstr "O skrótach klawiszowych"
 
-#: index.php:248
+#: index.php:247
 #: plugins/digest/digest_body.php:77
 #: plugins/mobile/mobile-functions.php:62
 #: plugins/mobile/mobile-functions.php:237
@@ -482,41 +481,41 @@ msgid "Logout"
 msgstr "Wyloguj"
 
 #: prefs.php:36
-#: prefs.php:122
-#: include/functions.php:1977
+#: prefs.php:121
+#: include/functions.php:1927
 #: classes/pref/prefs.php:377
 msgid "Preferences"
 msgstr "Ustawienia"
 
-#: prefs.php:113
+#: prefs.php:112
 msgid "Keyboard shortcuts"
 msgstr "Skróty klawiszowe"
 
-#: prefs.php:114
+#: prefs.php:113
 msgid "Exit preferences"
 msgstr "Wyjdź z ustawień"
 
-#: prefs.php:125
-#: classes/pref/feeds.php:106
-#: classes/pref/feeds.php:1208
-#: classes/pref/feeds.php:1271
+#: prefs.php:124
+#: classes/pref/feeds.php:107
+#: classes/pref/feeds.php:1209
+#: classes/pref/feeds.php:1272
 msgid "Feeds"
 msgstr "Kanały"
 
-#: prefs.php:128
-#: classes/pref/filters.php:120
+#: prefs.php:127
+#: classes/pref/filters.php:156
 msgid "Filters"
 msgstr "Filtry"
 
-#: prefs.php:131
-#: include/functions.php:1167
-#: include/functions.php:1803
+#: prefs.php:130
+#: include/functions.php:1117
+#: include/functions.php:1753
 #: classes/pref/labels.php:90
 #: plugins/mobile/mobile-functions.php:198
 msgid "Labels"
 msgstr "Etykiety"
 
-#: prefs.php:135
+#: prefs.php:134
 msgid "Users"
 msgstr "Użytkownicy"
 
@@ -542,12 +541,12 @@ msgid "Check availability"
 msgstr "Sprawdź dostępność"
 
 #: register.php:228
-#: classes/handler/public.php:753
+#: classes/handler/public.php:754
 msgid "Email:"
 msgstr "Email:"
 
 #: register.php:231
-#: classes/handler/public.php:758
+#: classes/handler/public.php:759
 msgid "How much is two plus two:"
 msgstr "Ile wynosi dwa plus dwa:"
 
@@ -580,12 +579,12 @@ msgid "Tiny Tiny RSS data update script."
 msgstr "Skrypt aktualizacji danych Tiny Tiny RSS."
 
 #: include/digest.php:109
-#: include/functions.php:1176
-#: include/functions.php:1704
-#: include/functions.php:1789
-#: include/functions.php:1811
+#: include/functions.php:1126
+#: include/functions.php:1654
+#: include/functions.php:1739
+#: include/functions.php:1761
 #: classes/opml.php:416
-#: classes/pref/feeds.php:221
+#: classes/pref/feeds.php:222
 msgid "Uncategorized"
 msgstr "Bez kategorii"
 
@@ -601,329 +600,327 @@ msgstr[2] "%d zarchiwizowanych artykułów"
 msgid "No feeds found."
 msgstr "Nie znaleziono kanałów."
 
-#: include/functions.php:722
-msgid "Session failed to validate (incorrect IP)"
-msgstr "Nie powiodła się weryfikacja sesji (nieprawidłowy adres IP)"
-
-#: include/functions.php:1165
-#: include/functions.php:1801
+#: include/functions.php:1115
+#: include/functions.php:1751
 #: plugins/mobile/mobile-functions.php:171
 msgid "Special"
 msgstr "Specjalne"
 
-#: include/functions.php:1653
-#: classes/dlg.php:369
-#: classes/pref/filters.php:382
+#: include/functions.php:1603
+#: classes/feeds.php:1097
+#: classes/pref/filters.php:427
 msgid "All feeds"
 msgstr "Wszystkie kanały"
 
-#: include/functions.php:1854
+#: include/functions.php:1804
 msgid "Starred articles"
 msgstr "Artykuły oznaczone gwiazdką"
 
-#: include/functions.php:1856
+#: include/functions.php:1806
 msgid "Published articles"
 msgstr "Opublikowane artykuły"
 
-#: include/functions.php:1858
+#: include/functions.php:1808
 msgid "Fresh articles"
 msgstr "Świeże artykuły"
 
-#: include/functions.php:1862
+#: include/functions.php:1812
 msgid "Archived articles"
 msgstr "Zarchiwizowane artykuły"
 
-#: include/functions.php:1864
+#: include/functions.php:1814
 msgid "Recently read"
 msgstr "Ostatnio czytane"
 
-#: include/functions.php:1927
+#: include/functions.php:1877
 msgid "Navigation"
 msgstr "Nawigacja"
 
-#: include/functions.php:1928
+#: include/functions.php:1878
 msgid "Open next feed"
 msgstr "Przejdź do następnego kanału"
 
-#: include/functions.php:1929
+#: include/functions.php:1879
 msgid "Open previous feed"
 msgstr "Otwórz poprzedni kanał"
 
-#: include/functions.php:1930
+#: include/functions.php:1880
 msgid "Open next article"
 msgstr "Otwórz następny artykuł"
 
-#: include/functions.php:1931
+#: include/functions.php:1881
 msgid "Open previous article"
 msgstr "Otwórz poprzedni artykuł"
 
-#: include/functions.php:1932
+#: include/functions.php:1882
 msgid "Open next article (don't scroll long articles)"
 msgstr "Otwórz następny artykuł (nie przewijaj długich artykułów)"
 
-#: include/functions.php:1933
+#: include/functions.php:1883
 msgid "Open previous article (don't scroll long articles)"
 msgstr "Otwórz poprzeni artykół (nie przewijaj długich artykułów)"
 
-#: include/functions.php:1934
+#: include/functions.php:1884
 msgid "Show search dialog"
 msgstr "Otwórz okno wyszukiwania"
 
-#: include/functions.php:1935
+#: include/functions.php:1885
 msgid "Article"
 msgstr "Artykuł"
 
-#: include/functions.php:1936
+#: include/functions.php:1886
 msgid "Toggle starred"
 msgstr "Przełącz oznaczenie gwiazdką"
 
-#: include/functions.php:1937
-#: js/viewfeed.js:1920
+#: include/functions.php:1887
+#: js/viewfeed.js:1908
 msgid "Toggle published"
 msgstr "Przełącz flagę publikacji"
 
-#: include/functions.php:1938
-#: js/viewfeed.js:1898
+#: include/functions.php:1888
+#: js/viewfeed.js:1886
 msgid "Toggle unread"
 msgstr "Przełącz flagę \"przeczytano\""
 
-#: include/functions.php:1939
+#: include/functions.php:1889
 msgid "Edit tags"
 msgstr "Edytuj tagi"
 
-#: include/functions.php:1940
+#: include/functions.php:1890
 msgid "Dismiss selected"
 msgstr "Odrzuć wybrane"
 
-#: include/functions.php:1941
+#: include/functions.php:1891
 msgid "Dismiss read"
 msgstr "Odrzuć przeczytane"
 
-#: include/functions.php:1942
+#: include/functions.php:1892
 msgid "Open in new window"
 msgstr "Otwórz w nowym oknie"
 
-#: include/functions.php:1943
-#: js/viewfeed.js:1939
+#: include/functions.php:1893
+#: js/viewfeed.js:1927
 msgid "Mark below as read"
 msgstr "Oznacz poniższe jako przeczytane"
 
-#: include/functions.php:1944
-#: js/viewfeed.js:1933
+#: include/functions.php:1894
+#: js/viewfeed.js:1921
 msgid "Mark above as read"
 msgstr "Oznacz powyższe jako przeczytane"
 
-#: include/functions.php:1945
+#: include/functions.php:1895
 msgid "Scroll down"
 msgstr "Przewiń w dół"
 
-#: include/functions.php:1946
+#: include/functions.php:1896
 msgid "Scroll up"
 msgstr "Przewiń do góry"
 
-#: include/functions.php:1947
+#: include/functions.php:1897
 msgid "Select article under cursor"
 msgstr "Wybierz artykuł pod kursorem"
 
-#: include/functions.php:1948
+#: include/functions.php:1898
 msgid "Email article"
 msgstr "Prześlij artykuł emailem"
 
-#: include/functions.php:1949
+#: include/functions.php:1899
 msgid "Close/collapse article"
 msgstr "Zamknij/zwiń artykuł"
 
-#: include/functions.php:1951
+#: include/functions.php:1901
 #: plugins/embed_original/init.php:33
 msgid "Toggle embed original"
 msgstr "Przełącza flagę \"wbuduj oryginalny artykuł\""
 
-#: include/functions.php:1952
+#: include/functions.php:1902
 msgid "Article selection"
 msgstr "Wybór artykułów"
 
-#: include/functions.php:1953
+#: include/functions.php:1903
 msgid "Select all articles"
 msgstr "Wybierz wszystkie artykuły"
 
-#: include/functions.php:1954
+#: include/functions.php:1904
 msgid "Select unread"
 msgstr "Wybierz nieprzeczytane"
 
-#: include/functions.php:1955
+#: include/functions.php:1905
 msgid "Select starred"
 msgstr "Wybierz oznaczone gwiazdką"
 
-#: include/functions.php:1956
+#: include/functions.php:1906
 msgid "Select published"
 msgstr "Wybierz opublikowane"
 
-#: include/functions.php:1957
+#: include/functions.php:1907
 msgid "Invert selection"
 msgstr "Odwróć zaznaczenie"
 
-#: include/functions.php:1958
+#: include/functions.php:1908
 msgid "Deselect everything"
 msgstr "Odznacz wszystko"
 
-#: include/functions.php:1959
-#: classes/pref/feeds.php:520
-#: classes/pref/feeds.php:753
+#: include/functions.php:1909
+#: classes/pref/feeds.php:521
+#: classes/pref/feeds.php:754
 msgid "Feed"
 msgstr "Kanał"
 
-#: include/functions.php:1960
+#: include/functions.php:1910
 msgid "Refresh current feed"
 msgstr "Odśwież bieżący kanał"
 
-#: include/functions.php:1961
+#: include/functions.php:1911
 msgid "Un/hide read feeds"
 msgstr "Pokaż/Ukryj przeczytane kanały"
 
-#: include/functions.php:1962
-#: classes/pref/feeds.php:1274
+#: include/functions.php:1912
+#: classes/pref/feeds.php:1275
 msgid "Subscribe to feed"
 msgstr "Prenumeruj kanał"
 
-#: include/functions.php:1963
+#: include/functions.php:1913
 #: js/FeedTree.js:135
 #: js/PrefFeedTree.js:67
 msgid "Edit feed"
 msgstr "Edytuj kanał"
 
-#: include/functions.php:1965
+#: include/functions.php:1915
 msgid "Reverse headlines"
 msgstr "Odwróć kolejność nagłówków"
 
-#: include/functions.php:1966
+#: include/functions.php:1916
 msgid "Debug feed update"
 msgstr "Testuj aktualizację kanałów"
 
-#: include/functions.php:1967
+#: include/functions.php:1917
 #: js/FeedTree.js:178
 msgid "Mark all feeds as read"
 msgstr "Oznacz wszystkie kanały jako przeczytane"
 
-#: include/functions.php:1968
+#: include/functions.php:1918
 msgid "Un/collapse current category"
 msgstr "Zwiń/rozwiń bieżącą kategorię"
 
-#: include/functions.php:1969
+#: include/functions.php:1919
 msgid "Toggle combined mode"
 msgstr "Przełącz tryb scalony"
 
-#: include/functions.php:1970
+#: include/functions.php:1920
 #, fuzzy
 msgid "Toggle auto expand in combined mode"
 msgstr "Przełącz tryb scalony"
 
-#: include/functions.php:1971
+#: include/functions.php:1921
 msgid "Go to"
 msgstr "Idź do"
 
-#: include/functions.php:1973
+#: include/functions.php:1923
 msgid "Fresh"
 msgstr "Świeży"
 
-#: include/functions.php:1976
+#: include/functions.php:1926
+#: js/tt-rss.js:431
+#: js/tt-rss.js:584
 msgid "Tag cloud"
 msgstr "Chmura tagów"
 
-#: include/functions.php:1978
+#: include/functions.php:1928
 msgid "Other"
 msgstr "Inne"
 
-#: include/functions.php:1979
+#: include/functions.php:1929
 #: classes/pref/labels.php:281
 msgid "Create label"
 msgstr "Utwórz etykietę"
 
-#: include/functions.php:1980
-#: classes/pref/filters.php:606
+#: include/functions.php:1930
+#: classes/pref/filters.php:654
 msgid "Create filter"
 msgstr "Utwórz filtr"
 
-#: include/functions.php:1981
+#: include/functions.php:1931
 msgid "Un/collapse sidebar"
 msgstr "Zwin/rozwiń pasek boczny"
 
-#: include/functions.php:1982
+#: include/functions.php:1932
 msgid "Show help dialog"
 msgstr "Otwórz okno pomocy"
 
-#: include/functions.php:2467
+#: include/functions.php:2417
 #, php-format
 msgid "Search results: %s"
 msgstr "Wyniki wyszukiwania: %s"
 
-#: include/functions.php:2958
-#: js/viewfeed.js:2026
+#: include/functions.php:2908
+#: js/viewfeed.js:2014
 msgid "Click to play"
 msgstr "Wciśnij aby odtworzyć"
 
-#: include/functions.php:2959
-#: js/viewfeed.js:2025
+#: include/functions.php:2909
+#: js/viewfeed.js:2013
 msgid "Play"
 msgstr "Odtwórz"
 
-#: include/functions.php:3076
+#: include/functions.php:3026
 msgid " - "
 msgstr " - "
 
-#: include/functions.php:3098
-#: include/functions.php:3392
+#: include/functions.php:3048
+#: include/functions.php:3342
 #: classes/rpc.php:408
 msgid "no tags"
 msgstr "brak tagów"
 
-#: include/functions.php:3108
+#: include/functions.php:3058
 #: classes/feeds.php:682
 msgid "Edit tags for this article"
 msgstr "Edytuj tagi dla tego artykułu"
 
-#: include/functions.php:3137
+#: include/functions.php:3087
 #: classes/feeds.php:638
 msgid "Originally from:"
 msgstr "Oryginał pochodzi z:"
 
-#: include/functions.php:3150
+#: include/functions.php:3100
 #: classes/feeds.php:651
-#: classes/pref/feeds.php:539
+#: classes/pref/feeds.php:540
 msgid "Feed URL"
 msgstr "Adres kanału"
 
-#: include/functions.php:3181
-#: classes/dlg.php:43
-#: classes/dlg.php:162
-#: classes/dlg.php:185
-#: classes/dlg.php:222
-#: classes/dlg.php:506
-#: classes/dlg.php:541
-#: classes/dlg.php:572
-#: classes/dlg.php:606
-#: classes/dlg.php:618
+#: include/functions.php:3131
+#: classes/dlg.php:37
+#: classes/dlg.php:60
+#: classes/dlg.php:93
+#: classes/dlg.php:159
+#: classes/dlg.php:190
+#: classes/dlg.php:217
+#: classes/dlg.php:250
+#: classes/dlg.php:262
 #: classes/backend.php:105
 #: classes/pref/users.php:106
-#: classes/pref/filters.php:111
-#: classes/pref/feeds.php:1587
-#: classes/pref/feeds.php:1659
+#: classes/pref/filters.php:147
+#: classes/pref/prefs.php:1012
+#: classes/pref/feeds.php:1588
+#: classes/pref/feeds.php:1660
 #: plugins/import_export/init.php:409
 #: plugins/import_export/init.php:432
-#: plugins/googlereaderimport/init.php:164
+#: plugins/googlereaderimport/init.php:168
 #: plugins/share/init.php:67
 #: plugins/updater/init.php:357
 msgid "Close this window"
 msgstr "Zamknij to okno"
 
-#: include/functions.php:3417
+#: include/functions.php:3367
 msgid "(edit note)"
 msgstr "(edytuj notatkę)"
 
-#: include/functions.php:3650
+#: include/functions.php:3600
 msgid "unknown type"
 msgstr "nieznany typ"
 
-#: include/functions.php:3706
+#: include/functions.php:3656
 msgid "Attachments"
 msgstr "Załączniki"
 
@@ -967,7 +964,7 @@ msgid "Assign tags"
 msgstr "Przypisz tagi"
 
 #: include/localized_schema.php:14
-#: js/viewfeed.js:1990
+#: js/viewfeed.js:1978
 msgid "Assign label"
 msgstr "Przypisz etykietę"
 
@@ -1150,7 +1147,7 @@ msgid "User timezone"
 msgstr "Strefa czasowa użytkownika"
 
 #: include/localized_schema.php:61
-#: js/prefs.js:1719
+#: js/prefs.js:1725
 msgid "Customize stylesheet"
 msgstr "Dostosuj arkusz styli"
 
@@ -1175,14 +1172,14 @@ msgid "Select theme"
 msgstr "Wybierz styl"
 
 #: include/login_form.php:183
-#: classes/handler/public.php:460
-#: classes/handler/public.php:748
+#: classes/handler/public.php:461
+#: classes/handler/public.php:749
 #: plugins/mobile/login_form.php:40
 msgid "Login:"
 msgstr "Nazwa użytkownika:"
 
 #: include/login_form.php:192
-#: classes/handler/public.php:463
+#: classes/handler/public.php:464
 #: plugins/mobile/login_form.php:45
 msgid "Password:"
 msgstr "Hasło:"
@@ -1192,7 +1189,7 @@ msgid "I forgot my password"
 msgstr "Zapomniałem hasła"
 
 #: include/login_form.php:201
-#: classes/handler/public.php:466
+#: classes/handler/public.php:467
 msgid "Language:"
 msgstr "Język:"
 
@@ -1201,9 +1198,9 @@ msgid "Profile:"
 msgstr "Profil:"
 
 #: include/login_form.php:213
-#: classes/handler/public.php:210
+#: classes/handler/public.php:211
 #: classes/rpc.php:64
-#: classes/dlg.php:98
+#: classes/pref/prefs.php:948
 msgid "Default profile"
 msgstr "Domyślny profil"
 
@@ -1216,476 +1213,246 @@ msgid "Remember me"
 msgstr ""
 
 #: include/login_form.php:235
-#: classes/handler/public.php:476
+#: classes/handler/public.php:477
 #: plugins/mobile/login_form.php:28
 msgid "Log in"
 msgstr "Zaloguj"
 
+#: include/sessions.php:53
+msgid "Session failed to validate (incorrect IP)"
+msgstr "Nie powiodła się weryfikacja sesji (nieprawidłowy adres IP)"
+
 #: classes/article.php:25
 msgid "Article not found."
 msgstr "Artykuł nie został znaleziony."
 
-#: classes/handler/public.php:401
+#: classes/article.php:179
+msgid "Tags for this article (separated by commas):"
+msgstr "Tagi dla tego artykułu (oddzielone przecinkami):"
+
+#: classes/article.php:204
+#: classes/pref/users.php:192
+#: classes/pref/labels.php:79
+#: classes/pref/filters.php:405
+#: classes/pref/prefs.php:894
+#: classes/pref/feeds.php:733
+#: classes/pref/feeds.php:881
+#: plugins/nsfw/init.php:86
+#: plugins/note/init.php:53
+#: plugins/instances/init.php:248
+msgid "Save"
+msgstr "Zapisz"
+
+#: classes/article.php:206
+#: classes/handler/public.php:438
+#: classes/handler/public.php:480
+#: classes/feeds.php:1024
+#: classes/feeds.php:1076
+#: classes/feeds.php:1136
+#: classes/pref/users.php:194
+#: classes/pref/labels.php:81
+#: classes/pref/filters.php:408
+#: classes/pref/filters.php:804
+#: classes/pref/filters.php:880
+#: classes/pref/filters.php:947
+#: classes/pref/prefs.php:896
+#: classes/pref/feeds.php:734
+#: classes/pref/feeds.php:884
+#: classes/pref/feeds.php:1797
+#: plugins/mail/init.php:131
+#: plugins/note/init.php:55
+#: plugins/instances/init.php:251
+#: plugins/instances/init.php:440
+msgid "Cancel"
+msgstr "Anuluj"
+
+#: classes/handler/public.php:402
 #: plugins/bookmarklets/init.php:38
 msgid "Share with Tiny Tiny RSS"
 msgstr "Udostępnij za pomocą Tiny Tiny RSS"
 
-#: classes/handler/public.php:409
+#: classes/handler/public.php:410
 msgid "Title:"
 msgstr "Tytuł:"
 
-#: classes/handler/public.php:411
-#: classes/dlg.php:663
-#: classes/pref/feeds.php:537
-#: classes/pref/feeds.php:768
+#: classes/handler/public.php:412
+#: classes/pref/feeds.php:538
+#: classes/pref/feeds.php:769
 #: plugins/instances/init.php:215
+#: plugins/instances/init.php:405
 msgid "URL:"
 msgstr "Adres:"
 
-#: classes/handler/public.php:413
+#: classes/handler/public.php:414
 msgid "Content:"
 msgstr "Treść:"
 
-#: classes/handler/public.php:415
+#: classes/handler/public.php:416
 msgid "Labels:"
 msgstr "Etykiety:"
 
-#: classes/handler/public.php:434
+#: classes/handler/public.php:435
 msgid "Shared article will appear in the Published feed."
 msgstr "Udostępniany artykuł będzie wyświetlany w Publikowanych kanałach."
 
-#: classes/handler/public.php:436
+#: classes/handler/public.php:437
 msgid "Share"
 msgstr "Udostępnij"
 
-#: classes/handler/public.php:437
-#: classes/handler/public.php:479
-#: classes/dlg.php:296
-#: classes/dlg.php:348
-#: classes/dlg.php:408
-#: classes/dlg.php:439
-#: classes/dlg.php:648
-#: classes/dlg.php:698
-#: classes/dlg.php:747
-#: classes/pref/users.php:194
-#: classes/pref/labels.php:81
-#: classes/pref/filters.php:363
-#: classes/pref/filters.php:746
-#: classes/pref/filters.php:822
-#: classes/pref/filters.php:889
-#: classes/pref/feeds.php:733
-#: classes/pref/feeds.php:883
-#: plugins/mail/init.php:131
-#: plugins/note/init.php:55
-#: plugins/instances/init.php:251
-msgid "Cancel"
-msgstr "Anuluj"
-
-#: classes/handler/public.php:458
+#: classes/handler/public.php:459
 msgid "Not logged in"
 msgstr "Nie zalogowany"
 
-#: classes/handler/public.php:525
+#: classes/handler/public.php:526
 msgid "Incorrect username or password"
 msgstr "Nieprawidłowa nazwa użytkownika lub hasło"
 
-#: classes/handler/public.php:561
-#: classes/handler/public.php:658
+#: classes/handler/public.php:562
+#: classes/handler/public.php:659
 #, php-format
 msgid "Already subscribed to <b>%s</b>."
 msgstr "Prenumerujesz już kanał <b>%s</b>."
 
-#: classes/handler/public.php:564
-#: classes/handler/public.php:649
+#: classes/handler/public.php:565
+#: classes/handler/public.php:650
 #, php-format
 msgid "Subscribed to <b>%s</b>."
 msgstr "Zaprenumerowano kanał <b>%s</b>."
 
-#: classes/handler/public.php:567
-#: classes/handler/public.php:652
+#: classes/handler/public.php:568
+#: classes/handler/public.php:653
 #, php-format
 msgid "Could not subscribe to <b>%s</b>."
 msgstr "Nie udało się zaprenumerować <b>%s</b>."
 
-#: classes/handler/public.php:570
-#: classes/handler/public.php:655
+#: classes/handler/public.php:571
+#: classes/handler/public.php:656
 #, php-format
 msgid "No feeds found in <b>%s</b>."
 msgstr "Nie znaleziono kanałów w <b>%s</b>."
 
-#: classes/handler/public.php:573
-#: classes/handler/public.php:661
+#: classes/handler/public.php:574
+#: classes/handler/public.php:662
 msgid "Multiple feed URLs found."
 msgstr "Znaleziono wiele adresów kanałów."
 
-#: classes/handler/public.php:577
-#: classes/handler/public.php:666
+#: classes/handler/public.php:578
+#: classes/handler/public.php:667
 #, php-format
 msgid "Could not subscribe to <b>%s</b>.<br>Can't download the Feed URL."
 msgstr "Nie udało się zaprenumerować <b>%s</b>. Nie udało się pobrać adresu kanału."
 
-#: classes/handler/public.php:595
-#: classes/handler/public.php:684
+#: classes/handler/public.php:596
+#: classes/handler/public.php:685
 msgid "Subscribe to selected feed"
 msgstr "Prenumeruj wybrany kanał"
 
-#: classes/handler/public.php:620
-#: classes/handler/public.php:708
+#: classes/handler/public.php:621
+#: classes/handler/public.php:709
 msgid "Edit subscription options"
 msgstr "Edytuj opcje prenumeraty"
 
-#: classes/handler/public.php:735
+#: classes/handler/public.php:736
 #, fuzzy
 msgid "Password recovery"
 msgstr "Hasło"
 
-#: classes/handler/public.php:741
+#: classes/handler/public.php:742
 msgid "You will need to provide valid account name and email. New password will be sent on your email address."
 msgstr ""
 
-#: classes/handler/public.php:763
+#: classes/handler/public.php:764
 #: classes/pref/users.php:378
 msgid "Reset password"
 msgstr "Resetuj hasło"
 
-#: classes/handler/public.php:773
+#: classes/handler/public.php:774
 msgid "Some of the required form parameters are missing or incorrect."
 msgstr "Niektóre z wymaganych parametrów są nieprawidłowe lub nie zostały wprowadzone."
 
-#: classes/handler/public.php:777
-#: classes/handler/public.php:803
+#: classes/handler/public.php:778
+#: classes/handler/public.php:804
 #: plugins/digest/digest_body.php:69
 msgid "Go back"
 msgstr "Cofnij"
 
-#: classes/handler/public.php:799
+#: classes/handler/public.php:800
 msgid "Sorry, login and email combination not found."
 msgstr "Przykro mi, podana kombinacja nazwy użytkownika i adresu email nie została oznaleziona."
 
-#: classes/dlg.php:22
+#: classes/dlg.php:16
 msgid "If you have imported labels and/or filters, you might need to reload preferences to see your new data."
 msgstr "Jeżeli posiadasz zaimportowane etykiety i/lub filtry, aby zobaczyć nowe dane możesz musieć przeładować ustawienia."
 
-#: classes/dlg.php:55
-#: classes/pref/users.php:360
-#: classes/pref/labels.php:272
-#: classes/pref/filters.php:234
-#: classes/pref/filters.php:282
-#: classes/pref/filters.php:597
-#: classes/pref/filters.php:676
-#: classes/pref/filters.php:703
-#: classes/pref/feeds.php:1262
-#: classes/pref/feeds.php:1532
-#: classes/pref/feeds.php:1602
-#: plugins/instances/init.php:287
-msgid "Select"
-msgstr "Wybierz"
-
-#: classes/dlg.php:58
-#: classes/feeds.php:92
-#: classes/pref/users.php:363
-#: classes/pref/labels.php:275
-#: classes/pref/filters.php:237
-#: classes/pref/filters.php:285
-#: classes/pref/filters.php:600
-#: classes/pref/filters.php:679
-#: classes/pref/filters.php:706
-#: classes/pref/feeds.php:1265
-#: classes/pref/feeds.php:1535
-#: classes/pref/feeds.php:1605
-#: plugins/instances/init.php:290
-msgid "All"
-msgstr "Wszystko"
-
-#: classes/dlg.php:60
-#: classes/feeds.php:95
-#: classes/pref/users.php:365
-#: classes/pref/labels.php:277
-#: classes/pref/filters.php:239
-#: classes/pref/filters.php:287
-#: classes/pref/filters.php:602
-#: classes/pref/filters.php:681
-#: classes/pref/filters.php:708
-#: classes/pref/feeds.php:1267
-#: classes/pref/feeds.php:1537
-#: classes/pref/feeds.php:1607
-#: plugins/instances/init.php:292
-msgid "None"
-msgstr "Nic"
-
-#: classes/dlg.php:69
-msgid "Create profile"
-msgstr "Utwórz profil"
-
-#: classes/dlg.php:92
-#: classes/dlg.php:122
-msgid "(active)"
-msgstr "(aktywny)"
-
-#: classes/dlg.php:156
-msgid "Remove selected profiles"
-msgstr "Usuń wybrane profile"
-
-#: classes/dlg.php:158
-msgid "Activate profile"
-msgstr "Aktywuj profil"
-
-#: classes/dlg.php:168
-msgid "Public OPML URL"
-msgstr "Publiczny adres OPML"
-
-#: classes/dlg.php:173
+#: classes/dlg.php:48
 msgid "Your Public OPML URL is:"
 msgstr "Twój publiczny adres OPML to:"
 
-#: classes/dlg.php:182
-#: classes/dlg.php:569
+#: classes/dlg.php:57
+#: classes/dlg.php:214
 msgid "Generate new URL"
 msgstr "Wygeneruj nowy adres"
 
-#: classes/dlg.php:194
-msgid "Notice"
-msgstr "Uwaga"
-
-#: classes/dlg.php:200
+#: classes/dlg.php:71
 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 "W konfiguracji wybrano wykorzystywanie zewnętrznego procesu aktualizacji, jednak proces ten nie działa co powoduje iż kanały nie są aktualizowane. Proszę uruchomić zewnętrzny proces aktualizacji lub skontaktować się z właścicielem tej instalacji."
 
-#: classes/dlg.php:204
-#: classes/dlg.php:213
+#: classes/dlg.php:75
+#: classes/dlg.php:84
 msgid "Last update:"
 msgstr "Ostatnia aktualizacja:"
 
-#: classes/dlg.php:209
+#: classes/dlg.php:80
 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 "Aktualizacja kanału z wykorzystaniem zewnętrznego procesu aktualizacji trwa zbyt długo. Może to wskazywać na jego awarię/unieruchomienie (crash) lub zawieszenie. Sprawdź poprawność działania zewnętrznego procesu aktualizacji lub skontaktuj się z właścicielem tej instalacji."
 
-#: classes/dlg.php:234
-#: classes/dlg.php:242
-msgid "Feed or site URL"
-msgstr "Adres kanału lub strony"
-
-#: classes/dlg.php:248
-#: classes/dlg.php:711
-#: classes/pref/feeds.php:559
-#: classes/pref/feeds.php:781
-msgid "Place in category:"
-msgstr "Umieść w kategorii:"
-
-#: classes/dlg.php:256
-msgid "Available feeds"
-msgstr "Dostępne kanały"
-
-#: classes/dlg.php:268
-#: classes/pref/users.php:155
-#: classes/pref/feeds.php:589
-#: classes/pref/feeds.php:817
-msgid "Authentication"
-msgstr "Uwierzytelnianie"
-
-#: classes/dlg.php:272
-#: classes/dlg.php:725
-#: classes/pref/users.php:420
-#: classes/pref/feeds.php:595
-#: classes/pref/feeds.php:821
-msgid "Login"
-msgstr "Nazwa użytkownika"
-
-#: classes/dlg.php:275
-#: classes/dlg.php:728
-#: classes/pref/prefs.php:202
-#: classes/pref/feeds.php:601
-#: classes/pref/feeds.php:827
-msgid "Password"
-msgstr "Hasło"
-
-#: classes/dlg.php:285
-msgid "This feed requires authentication."
-msgstr "Ten kanał wymaga uwierzytelniania."
-
-#: classes/dlg.php:290
-#: classes/dlg.php:346
-#: classes/dlg.php:746
-msgid "Subscribe"
-msgstr "Prenumeruj"
-
-#: classes/dlg.php:293
-msgid "More feeds"
-msgstr "Więcej kanałów"
-
-#: classes/dlg.php:316
-#: classes/dlg.php:407
-#: classes/pref/users.php:350
-#: classes/pref/filters.php:593
-#: classes/pref/feeds.php:1258
-#: js/tt-rss.js:170
-msgid "Search"
-msgstr "Szukaj"
-
-#: classes/dlg.php:320
-msgid "Popular feeds"
-msgstr "Popularne kanały"
-
-#: classes/dlg.php:321
-msgid "Feed archive"
-msgstr "Archiwum kanału"
-
-#: classes/dlg.php:324
-msgid "limit:"
-msgstr "limit:"
-
-#: classes/dlg.php:347
-#: classes/pref/users.php:376
-#: classes/pref/labels.php:284
-#: classes/pref/filters.php:353
-#: classes/pref/filters.php:615
-#: classes/pref/feeds.php:706
-#: plugins/instances/init.php:297
-msgid "Remove"
-msgstr "Usuń"
-
-#: classes/dlg.php:358
-msgid "Look for"
-msgstr "Szukaj napisu"
-
-#: classes/dlg.php:366
-msgid "Limit search to:"
-msgstr "Ogranicz wyszukiwanie do:"
-
-#: classes/dlg.php:382
-msgid "This feed"
-msgstr "Ten kanał"
-
-#: classes/dlg.php:414
-msgid "Tags for this article (separated by commas):"
-msgstr "Tagi dla tego artykułu (oddzielone przecinkami):"
-
-#: classes/dlg.php:437
-#: classes/dlg.php:646
-#: classes/pref/users.php:192
-#: classes/pref/labels.php:79
-#: classes/pref/filters.php:360
-#: classes/pref/feeds.php:732
-#: classes/pref/feeds.php:880
-#: plugins/nsfw/init.php:86
-#: plugins/note/init.php:53
-#: plugins/instances/init.php:248
-msgid "Save"
-msgstr "Zapisz"
-
-#: classes/dlg.php:445
-msgid "Tag Cloud"
-msgstr "Chmura tagów"
-
-#: classes/dlg.php:514
-msgid "Select item(s) by tags"
-msgstr "Wybierz element(y) przy użyciu tagów"
-
-#: classes/dlg.php:517
+#: classes/dlg.php:166
 msgid "Match:"
 msgstr "Dopasuj:"
 
-#: classes/dlg.php:519
+#: classes/dlg.php:168
 msgid "Any"
 msgstr "Dowolny"
 
-#: classes/dlg.php:522
+#: classes/dlg.php:171
 msgid "All tags."
 msgstr "Wszystkie znaczniki"
 
-#: classes/dlg.php:524
+#: classes/dlg.php:173
 msgid "Which Tags?"
 msgstr "Które tagi?"
 
-#: classes/dlg.php:537
+#: classes/dlg.php:186
 msgid "Display entries"
 msgstr "Wyświetl wpisy"
 
-#: classes/dlg.php:549
-#: classes/feeds.php:138
-msgid "View as RSS"
-msgstr "Wyświetl jako RSS"
-
-#: classes/dlg.php:560
+#: classes/dlg.php:205
 msgid "You can view this feed as RSS using the following URL:"
 msgstr "Możesz obejrzeć ten kanał jako RSS korzystając z adresu:"
 
-#: classes/dlg.php:589
+#: classes/dlg.php:233
 #: plugins/updater/init.php:327
 #, php-format
 msgid "New version of Tiny Tiny RSS is available (%s)."
 msgstr "Dostępna jest nowa wersja Tiny Tiny RSS (%s)."
 
-#: classes/dlg.php:597
+#: classes/dlg.php:241
 msgid "You can update using built-in updater in the Preferences or by using update.php"
 msgstr "Możesz przeprowadzić aktualizację wykorzystując wbudowany aktualizator dostępny w Ustawieniach lub korzystając z update.php"
 
-#: classes/dlg.php:601
+#: classes/dlg.php:245
 #: plugins/updater/init.php:331
 msgid "See the release notes"
 msgstr ""
 
-#: classes/dlg.php:603
+#: classes/dlg.php:247
 msgid "Download"
 msgstr "Pobierz"
 
-#: classes/dlg.php:611
+#: classes/dlg.php:255
 msgid "Error receiving version information or no new version available."
 msgstr "Błąd podczas odbierania informacji o wersji lub brak dostępnej nowej wersji."
 
-#: classes/dlg.php:631
-#, 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 "Możesz nadpisać ustawienia kolorów, czcionek i układu wybranego stylu przy użyciu własnych deklaracji CSS. <a target=\"_blank\" class=\"visibleLink\" href=\"%s\">Ten plik</a> może posłużyć jako przykład."
-
-#: classes/dlg.php:657
-#: plugins/instances/init.php:207
-msgid "Instance"
-msgstr "Instancja"
-
-#: classes/dlg.php:666
-#: plugins/instances/init.php:218
-#: plugins/instances/init.php:315
-msgid "Instance URL"
-msgstr "Adres instancji:"
-
-#: classes/dlg.php:676
-#: plugins/instances/init.php:229
-msgid "Access key:"
-msgstr "Klucz dostępu:"
-
-#: classes/dlg.php:679
-#: plugins/instances/init.php:232
-#: plugins/instances/init.php:316
-msgid "Access key"
-msgstr "Klucz dostępu"
-
-#: classes/dlg.php:683
-#: plugins/instances/init.php:236
-msgid "Use one access key for both linked instances."
-msgstr "Użyj jednego klucza dostępu dla obydwóch połączonych instancji."
-
-#: classes/dlg.php:691
-#: plugins/instances/init.php:244
-msgid "Generate new key"
-msgstr "Wygeneruj nowy klucz"
-
-#: classes/dlg.php:695
-msgid "Create link"
-msgstr "Utwórz łącze"
-
-#: classes/dlg.php:708
-msgid "Add one valid RSS feed per line (no feed detection is done)"
-msgstr "Wpisz jeden prawidłowy adres kanału RSS w każdej linii (nie jest przeprowadzana automatyczna detekcja adresu kanału)"
-
-#: classes/dlg.php:717
-msgid "Feeds to subscribe, One per line"
-msgstr "Kanały do prenumeraty. Każdy w osobnej linii"
-
-#: classes/dlg.php:739
-msgid "Feeds require authentication."
-msgstr "Kanały wymagają uwierzytelniania."
-
 #: classes/feeds.php:68
 msgid "Visit the website"
 msgstr "Odwiedź stronę internetową"
@@ -1694,14 +1461,52 @@ msgstr "Odwiedź stronę internetową"
 msgid "View as RSS feed"
 msgstr "Zobacz jako kanał RSS"
 
+#: classes/feeds.php:84
+#: classes/feeds.php:138
+#: classes/pref/feeds.php:1440
+msgid "View as RSS"
+msgstr "Wyświetl jako RSS"
+
 #: classes/feeds.php:91
 msgid "Select:"
 msgstr "Wybierz: "
 
+#: classes/feeds.php:92
+#: classes/pref/users.php:363
+#: classes/pref/labels.php:275
+#: classes/pref/filters.php:282
+#: classes/pref/filters.php:330
+#: classes/pref/filters.php:648
+#: classes/pref/filters.php:737
+#: classes/pref/filters.php:764
+#: classes/pref/prefs.php:908
+#: classes/pref/feeds.php:1266
+#: classes/pref/feeds.php:1536
+#: classes/pref/feeds.php:1606
+#: plugins/instances/init.php:290
+msgid "All"
+msgstr "Wszystko"
+
 #: classes/feeds.php:94
 msgid "Invert"
 msgstr "Odwróć"
 
+#: classes/feeds.php:95
+#: classes/pref/users.php:365
+#: classes/pref/labels.php:277
+#: classes/pref/filters.php:284
+#: classes/pref/filters.php:332
+#: classes/pref/filters.php:650
+#: classes/pref/filters.php:739
+#: classes/pref/filters.php:766
+#: classes/pref/prefs.php:910
+#: classes/pref/feeds.php:1268
+#: classes/pref/feeds.php:1538
+#: classes/pref/feeds.php:1608
+#: plugins/instances/init.php:292
+msgid "None"
+msgstr "Nic"
+
 #: classes/feeds.php:101
 msgid "More..."
 msgstr "Więcej..."
@@ -1727,10 +1532,10 @@ msgid "Move back"
 msgstr "Cofnij"
 
 #: classes/feeds.php:118
-#: classes/pref/filters.php:246
-#: classes/pref/filters.php:294
-#: classes/pref/filters.php:688
-#: classes/pref/filters.php:715
+#: classes/pref/filters.php:291
+#: classes/pref/filters.php:339
+#: classes/pref/filters.php:746
+#: classes/pref/filters.php:773
 msgid "Delete"
 msgstr "Usuń"
 
@@ -1784,20 +1589,116 @@ msgid "No articles found to display."
 msgstr "Nie znaleziono artykułów."
 
 #: classes/feeds.php:755
-#: classes/feeds.php:920
+#: classes/feeds.php:919
 #, php-format
 msgid "Feeds last updated at %s"
 msgstr "Kanały ostatnio uaktualnione o %s"
 
 #: classes/feeds.php:765
-#: classes/feeds.php:930
+#: classes/feeds.php:929
 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:910
+#: classes/feeds.php:909
 msgid "No feed selected."
 msgstr "Nie wybrano kanału."
 
+#: classes/feeds.php:962
+#: classes/feeds.php:970
+msgid "Feed or site URL"
+msgstr "Adres kanału lub strony"
+
+#: classes/feeds.php:976
+#: classes/pref/feeds.php:560
+#: classes/pref/feeds.php:782
+#: classes/pref/feeds.php:1761
+msgid "Place in category:"
+msgstr "Umieść w kategorii:"
+
+#: classes/feeds.php:984
+msgid "Available feeds"
+msgstr "Dostępne kanały"
+
+#: classes/feeds.php:996
+#: classes/pref/users.php:155
+#: classes/pref/feeds.php:590
+#: classes/pref/feeds.php:818
+msgid "Authentication"
+msgstr "Uwierzytelnianie"
+
+#: classes/feeds.php:1000
+#: classes/pref/users.php:420
+#: classes/pref/feeds.php:596
+#: classes/pref/feeds.php:822
+#: classes/pref/feeds.php:1775
+msgid "Login"
+msgstr "Nazwa użytkownika"
+
+#: classes/feeds.php:1003
+#: classes/pref/prefs.php:202
+#: classes/pref/feeds.php:602
+#: classes/pref/feeds.php:828
+#: classes/pref/feeds.php:1778
+msgid "Password"
+msgstr "Hasło"
+
+#: classes/feeds.php:1013
+msgid "This feed requires authentication."
+msgstr "Ten kanał wymaga uwierzytelniania."
+
+#: classes/feeds.php:1018
+#: classes/feeds.php:1074
+#: classes/pref/feeds.php:1796
+msgid "Subscribe"
+msgstr "Prenumeruj"
+
+#: classes/feeds.php:1021
+msgid "More feeds"
+msgstr "Więcej kanałów"
+
+#: classes/feeds.php:1044
+#: classes/feeds.php:1135
+#: classes/pref/users.php:350
+#: classes/pref/filters.php:641
+#: classes/pref/feeds.php:1259
+#: js/tt-rss.js:170
+msgid "Search"
+msgstr "Szukaj"
+
+#: classes/feeds.php:1048
+msgid "Popular feeds"
+msgstr "Popularne kanały"
+
+#: classes/feeds.php:1049
+msgid "Feed archive"
+msgstr "Archiwum kanału"
+
+#: classes/feeds.php:1052
+msgid "limit:"
+msgstr "limit:"
+
+#: classes/feeds.php:1075
+#: classes/pref/users.php:376
+#: classes/pref/labels.php:284
+#: classes/pref/filters.php:398
+#: classes/pref/filters.php:667
+#: classes/pref/feeds.php:707
+#: plugins/instances/init.php:297
+msgid "Remove"
+msgstr "Usuń"
+
+#: classes/feeds.php:1086
+msgid "Look for"
+msgstr "Szukaj napisu"
+
+#: classes/feeds.php:1094
+msgid "Limit search to:"
+msgstr "Ogranicz wyszukiwanie do:"
+
+#: classes/feeds.php:1110
+msgid "This feed"
+msgstr "Ten kanał"
+
 #: classes/backend.php:33
 msgid "Other interface tips are available in the Tiny Tiny RSS wiki."
 msgstr "Inne wskazówki dotyczące interfejsu znajdziesz na wiki Tiny Tiny RSS."
@@ -1870,7 +1771,7 @@ msgid "Error: please upload OPML file."
 msgstr "Błąd: proszę wgrać plik OPML."
 
 #: classes/opml.php:475
-#: plugins/googlereaderimport/init.php:157
+#: plugins/googlereaderimport/init.php:161
 msgid "Error while parsing document."
 msgstr "Błąd przetwarzania dokumentu."
 
@@ -1917,8 +1818,8 @@ msgid "Change password to"
 msgstr "Zmień hasło na"
 
 #: classes/pref/users.php:177
-#: classes/pref/feeds.php:609
-#: classes/pref/feeds.php:833
+#: classes/pref/feeds.php:610
+#: classes/pref/feeds.php:834
 msgid "Options"
 msgstr "Opcje"
 
@@ -1955,6 +1856,21 @@ msgstr "Wysyłam nowe hasło dla użytkownika <b>%s</b> na adres <b>%s</b>"
 msgid "[tt-rss] Password change notification"
 msgstr "[tt-rss] Informacja o zmianie hasła"
 
+#: classes/pref/users.php:360
+#: classes/pref/labels.php:272
+#: classes/pref/filters.php:279
+#: classes/pref/filters.php:327
+#: classes/pref/filters.php:645
+#: classes/pref/filters.php:734
+#: classes/pref/filters.php:761
+#: classes/pref/prefs.php:905
+#: classes/pref/feeds.php:1263
+#: classes/pref/feeds.php:1533
+#: classes/pref/feeds.php:1603
+#: plugins/instances/init.php:287
+msgid "Select"
+msgstr "Wybierz"
+
 #: classes/pref/users.php:368
 msgid "Create user"
 msgstr "Utwórz użytkownika"
@@ -1964,7 +1880,7 @@ msgid "Details"
 msgstr "Szczegóły"
 
 #: classes/pref/users.php:374
-#: classes/pref/filters.php:612
+#: classes/pref/filters.php:660
 #: plugins/instances/init.php:296
 msgid "Edit"
 msgstr "Edytuj"
@@ -1991,6 +1907,8 @@ msgid "No matching users found."
 msgstr "Nie odnaleziono pasującego użytkownika."
 
 #: classes/pref/labels.php:22
+#: classes/pref/filters.php:268
+#: classes/pref/filters.php:725
 msgid "Caption"
 msgstr "Opis"
 
@@ -2015,121 +1933,132 @@ msgstr "Utworzono etykietę <b>%s</b>"
 msgid "Clear colors"
 msgstr "Wyczyść kolory"
 
-#: classes/pref/filters.php:60
+#: classes/pref/filters.php:96
 msgid "Articles matching this filter:"
 msgstr "Artykuły pasujące do filtra:"
 
-#: classes/pref/filters.php:97
+#: classes/pref/filters.php:133
 msgid "No recent articles matching this filter have been found."
 msgstr "Nie znaleziono żadnych ostatnich artykułów pasujących do filtra."
 
-#: classes/pref/filters.php:101
+#: classes/pref/filters.php:137
 msgid "Complex expressions might not give results while testing due to issues with database server regexp implementation."
 msgstr "Złozone wyrażenia mogą nie przynosić spodziewanych rezultatów podczas testów ze względu na różnice w implementacji wyrażeń regularnych na serwerze bazy danych."
 
-#: classes/pref/filters.php:229
-#: classes/pref/filters.php:671
-#: classes/pref/filters.php:786
+#: classes/pref/filters.php:274
+#: classes/pref/filters.php:729
+#: classes/pref/filters.php:844
 msgid "Match"
 msgstr "Dopasuj"
 
-#: classes/pref/filters.php:243
-#: classes/pref/filters.php:291
-#: classes/pref/filters.php:685
-#: classes/pref/filters.php:712
+#: classes/pref/filters.php:288
+#: classes/pref/filters.php:336
+#: classes/pref/filters.php:743
+#: classes/pref/filters.php:770
 msgid "Add"
 msgstr "Dodaj"
 
-#: classes/pref/filters.php:277
-#: classes/pref/filters.php:698
+#: classes/pref/filters.php:322
+#: classes/pref/filters.php:756
 msgid "Apply actions"
 msgstr "Zastosuj działania"
 
-#: classes/pref/filters.php:327
-#: classes/pref/filters.php:727
+#: classes/pref/filters.php:372
+#: classes/pref/filters.php:785
 msgid "Enabled"
 msgstr "Włączone"
 
-#: classes/pref/filters.php:336
-#: classes/pref/filters.php:730
+#: classes/pref/filters.php:381
+#: classes/pref/filters.php:788
 msgid "Match any rule"
 msgstr "Pasuje do dowolnej reguły"
 
-#: classes/pref/filters.php:345
-#: classes/pref/filters.php:733
+#: classes/pref/filters.php:390
+#: classes/pref/filters.php:791
 #, fuzzy
 msgid "Inverse matching"
 msgstr "Odwróć dopasowanie"
 
-#: classes/pref/filters.php:357
-#: classes/pref/filters.php:740
+#: classes/pref/filters.php:402
+#: classes/pref/filters.php:798
 msgid "Test"
 msgstr "Testuj"
 
-#: classes/pref/filters.php:390
+#: classes/pref/filters.php:435
 #, fuzzy
 msgid "(inverse)"
 msgstr "Odwróć"
 
-#: classes/pref/filters.php:389
+#: classes/pref/filters.php:434
 #, fuzzy, php-format
 msgid "%s on %s in %s %s"
 msgstr "%s na %s w %s"
 
-#: classes/pref/filters.php:609
+#: classes/pref/filters.php:657
 msgid "Combine"
 msgstr "Połącz"
 
-#: classes/pref/filters.php:619
-#: classes/pref/feeds.php:1317
+#: classes/pref/filters.php:663
+#: classes/pref/feeds.php:1279
+#: classes/pref/feeds.php:1293
+msgid "Reset sort order"
+msgstr "Zresetuj porządek sortowania"
+
+#: classes/pref/filters.php:671
+#: classes/pref/feeds.php:1318
 msgid "Rescore articles"
 msgstr "Przywróć artykuły"
 
-#: classes/pref/filters.php:743
+#: classes/pref/filters.php:801
 msgid "Create"
 msgstr "Utwórz"
 
-#: classes/pref/filters.php:798
+#: classes/pref/filters.php:856
 #, fuzzy
 msgid "Inverse regular expression matching"
 msgstr "Nieprawidłowe wyrażenie regularne."
 
-#: classes/pref/filters.php:800
+#: classes/pref/filters.php:858
 msgid "on field"
 msgstr "pole"
 
-#: classes/pref/filters.php:806
-#: js/PrefFilterTree.js:29
+#: classes/pref/filters.php:864
+#: js/PrefFilterTree.js:45
 #: plugins/digest/digest.js:242
 msgid "in"
 msgstr "w"
 
-#: classes/pref/filters.php:819
+#: classes/pref/filters.php:877
 msgid "Save rule"
 msgstr "Zapisz regułę"
 
-#: classes/pref/filters.php:819
-#: js/functions.js:1069
+#: classes/pref/filters.php:877
+#: js/functions.js:1063
 msgid "Add rule"
 msgstr "Dodaj regułę"
 
-#: classes/pref/filters.php:842
+#: classes/pref/filters.php:900
 msgid "Perform Action"
 msgstr "Wykonaj operację"
 
-#: classes/pref/filters.php:868
+#: classes/pref/filters.php:926
 msgid "with parameters:"
 msgstr "z parametrami:"
 
-#: classes/pref/filters.php:886
+#: classes/pref/filters.php:944
 msgid "Save action"
 msgstr "Zapisz działanie"
 
-#: classes/pref/filters.php:886
-#: js/functions.js:1095
+#: classes/pref/filters.php:944
+#: js/functions.js:1089
 msgid "Add action"
 msgstr "Dodaj działania"
 
+#: classes/pref/filters.php:967
+#, fuzzy
+msgid "[No caption]"
+msgstr "Opis"
+
 #: classes/pref/prefs.php:17
 msgid "Old password cannot be blank."
 msgstr "Stare hasło nie może być puste."
@@ -2333,238 +2262,264 @@ msgstr "Włącz wybrane wtyczki"
 msgid "Incorrect password"
 msgstr "Nieprawidłowe hasło"
 
-#: classes/pref/feeds.php:12
+#: classes/pref/prefs.php:879
+#, 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 "Możesz nadpisać ustawienia kolorów, czcionek i układu wybranego stylu przy użyciu własnych deklaracji CSS. <a target=\"_blank\" class=\"visibleLink\" href=\"%s\">Ten plik</a> może posłużyć jako przykład."
+
+#: classes/pref/prefs.php:919
+msgid "Create profile"
+msgstr "Utwórz profil"
+
+#: classes/pref/prefs.php:942
+#: classes/pref/prefs.php:972
+msgid "(active)"
+msgstr "(aktywny)"
+
+#: classes/pref/prefs.php:1006
+msgid "Remove selected profiles"
+msgstr "Usuń wybrane profile"
+
+#: classes/pref/prefs.php:1008
+msgid "Activate profile"
+msgstr "Aktywuj profil"
+
+#: classes/pref/feeds.php:13
 msgid "Check to enable field"
 msgstr "Zaznacz aby uaktywnić pole"
 
-#: classes/pref/feeds.php:60
-#: classes/pref/feeds.php:208
-#: classes/pref/feeds.php:250
-#: classes/pref/feeds.php:256
-#: classes/pref/feeds.php:281
-#, php-format
-msgid "(%d feed)"
-msgid_plural "(%d feeds)"
-msgstr[0] "(%d kanał)"
-msgstr[1] "(%d kanały)"
-msgstr[2] "(%d kanałów)"
-
-#: classes/pref/feeds.php:526
+#: classes/pref/feeds.php:527
 msgid "Feed Title"
 msgstr "Tytuł kanału"
 
-#: classes/pref/feeds.php:582
-#: classes/pref/feeds.php:808
+#: classes/pref/feeds.php:568
+#: classes/pref/feeds.php:793
+msgid "Update"
+msgstr "Aktualizuj"
+
+#: classes/pref/feeds.php:583
+#: classes/pref/feeds.php:809
 msgid "Article purging:"
 msgstr "Czyszczenie artykułów:"
 
-#: classes/pref/feeds.php:605
+#: classes/pref/feeds.php:606
 msgid "<b>Hint:</b> you need to fill in your login information if your feed requires authentication, except for Twitter feeds."
 msgstr "<b>Wskazówka:</b> musisz wypełnić dane logowania jeżeli Twój kanał wymaga uwierzytelniania. Nie dotyczy to kanałów z Twittera."
 
-#: classes/pref/feeds.php:621
-#: classes/pref/feeds.php:837
+#: classes/pref/feeds.php:622
+#: classes/pref/feeds.php:838
 msgid "Hide from Popular feeds"
 msgstr "Ukryj przed umieszczeniem w Popularnych kanałach"
 
-#: classes/pref/feeds.php:633
-#: classes/pref/feeds.php:843
+#: classes/pref/feeds.php:634
+#: classes/pref/feeds.php:844
 msgid "Include in e-mail digest"
 msgstr "Umieść w przeglądzie emailowym"
 
-#: classes/pref/feeds.php:646
-#: classes/pref/feeds.php:849
+#: classes/pref/feeds.php:647
+#: classes/pref/feeds.php:850
 msgid "Always display image attachments"
 msgstr "Zawsze wyświetlaj załączniki graficzne"
 
-#: classes/pref/feeds.php:659
-#: classes/pref/feeds.php:857
+#: classes/pref/feeds.php:660
+#: classes/pref/feeds.php:858
 msgid "Do not embed images"
 msgstr "Nie osadzaj obrazków"
 
-#: classes/pref/feeds.php:672
-#: classes/pref/feeds.php:865
+#: classes/pref/feeds.php:673
+#: classes/pref/feeds.php:866
 msgid "Cache images locally"
 msgstr "Przechowuj obrazki lokalnie"
 
-#: classes/pref/feeds.php:684
-#: classes/pref/feeds.php:871
+#: classes/pref/feeds.php:685
+#: classes/pref/feeds.php:872
 msgid "Mark updated articles as unread"
 msgstr "Oznacz zaktualizowane artykuły jako nieprzeczytane"
 
-#: classes/pref/feeds.php:690
+#: classes/pref/feeds.php:691
 msgid "Icon"
 msgstr "Ikona"
 
-#: classes/pref/feeds.php:704
+#: classes/pref/feeds.php:705
 msgid "Replace"
 msgstr "Zamień"
 
-#: classes/pref/feeds.php:723
+#: classes/pref/feeds.php:724
 msgid "Resubscribe to push updates"
 msgstr "Odnów prenumeratę aktualizacji typu PUSH"
 
-#: classes/pref/feeds.php:730
+#: classes/pref/feeds.php:731
 msgid "Resets PubSubHubbub subscription status for push-enabled feeds."
 msgstr "Resetuje status prenumerat PubSubHubbub dla kanałów obsługujących PUSH."
 
-#: classes/pref/feeds.php:1111
-#: classes/pref/feeds.php:1164
+#: classes/pref/feeds.php:1112
+#: classes/pref/feeds.php:1165
 msgid "All done."
 msgstr "Zrobione."
 
-#: classes/pref/feeds.php:1219
+#: classes/pref/feeds.php:1220
 msgid "Feeds with errors"
 msgstr "Kanały z błędami"
 
-#: classes/pref/feeds.php:1239
+#: classes/pref/feeds.php:1240
 msgid "Inactive feeds"
 msgstr "Nieaktywne kanały"
 
-#: classes/pref/feeds.php:1276
+#: classes/pref/feeds.php:1277
 msgid "Edit selected feeds"
 msgstr "Edytuj wybrane kanały"
 
-#: classes/pref/feeds.php:1278
-#: classes/pref/feeds.php:1292
-msgid "Reset sort order"
-msgstr "Zresetuj porządek sortowania"
-
-#: classes/pref/feeds.php:1280
-#: js/prefs.js:1764
+#: classes/pref/feeds.php:1281
+#: js/prefs.js:1770
 msgid "Batch subscribe"
 msgstr "Prenumerata wsadowa"
 
-#: classes/pref/feeds.php:1285
+#: classes/pref/feeds.php:1286
 msgid "Categories"
 msgstr "Kategorie"
 
-#: classes/pref/feeds.php:1288
+#: classes/pref/feeds.php:1289
 msgid "Add category"
 msgstr "Dodaj kategorię"
 
-#: classes/pref/feeds.php:1290
+#: classes/pref/feeds.php:1291
 msgid "(Un)hide empty categories"
 msgstr "Pokaż/Ukryj puste kategorie"
 
-#: classes/pref/feeds.php:1294
+#: classes/pref/feeds.php:1295
 msgid "Remove selected"
 msgstr "Usuń wybrane"
 
-#: classes/pref/feeds.php:1308
+#: classes/pref/feeds.php:1309
 msgid "More actions..."
 msgstr "Więcej działań..."
 
-#: classes/pref/feeds.php:1312
+#: classes/pref/feeds.php:1313
 msgid "Manual purge"
 msgstr "Czyszczenie ręczne"
 
-#: classes/pref/feeds.php:1316
+#: classes/pref/feeds.php:1317
 msgid "Clear feed data"
 msgstr "Wyczyść dane kanału"
 
-#: classes/pref/feeds.php:1367
+#: classes/pref/feeds.php:1368
 msgid "OPML"
 msgstr "OPML"
 
-#: classes/pref/feeds.php:1369
+#: classes/pref/feeds.php:1370
 msgid "Using OPML you can export and import your feeds, filters, labels and Tiny Tiny RSS settings."
 msgstr "Korzystając z OPML możesz eksportować i importować kanały, filtry, etykiety i ustawienia Tiny Tiny RSS."
 
-#: classes/pref/feeds.php:1371
+#: classes/pref/feeds.php:1372
 msgid "Only main settings profile can be migrated using OPML."
 msgstr "Tylko główne ustawienia profilu mogą być migrowane korzystając z OPML."
 
-#: classes/pref/feeds.php:1384
+#: classes/pref/feeds.php:1385
 msgid "Import my OPML"
 msgstr "Importuj mój OPML"
 
-#: classes/pref/feeds.php:1388
+#: classes/pref/feeds.php:1389
 msgid "Filename:"
 msgstr "Nazwa pliku:"
 
-#: classes/pref/feeds.php:1390
+#: classes/pref/feeds.php:1391
 msgid "Include settings"
 msgstr "Załącz ustawienia"
 
-#: classes/pref/feeds.php:1394
+#: classes/pref/feeds.php:1395
 msgid "Export OPML"
 msgstr "Eksportuj OPML"
 
-#: classes/pref/feeds.php:1398
+#: classes/pref/feeds.php:1399
 msgid "Your OPML can be published publicly and can be subscribed by anyone who knows the URL below."
 msgstr "Twój OPML może zostać opublikowany i być prenumerowany przez każdego kto zna poniższy adres."
 
-#: classes/pref/feeds.php:1400
+#: classes/pref/feeds.php:1401
 msgid "Published OPML does not include your Tiny Tiny RSS settings, feeds that require authentication or feeds hidden from Popular feeds."
 msgstr "Opublikowany OPML nie zawiera ustawień Twojego Tiny Tiny RSS, kanałów wymagających uwierzytelniania i kanałów ukrytych przed umieszczeniem w Popularnych kanałach."
 
 #: classes/pref/feeds.php:1403
+msgid "Public OPML URL"
+msgstr "Publiczny adres OPML"
+
+#: classes/pref/feeds.php:1404
 msgid "Display published OPML URL"
 msgstr "Wyświetl opublikowany adres OPML"
 
-#: classes/pref/feeds.php:1413
+#: classes/pref/feeds.php:1414
 msgid "Firefox integration"
 msgstr "Integracja z Firefoxem"
 
-#: classes/pref/feeds.php:1415
+#: classes/pref/feeds.php:1416
 msgid "This Tiny Tiny RSS site can be used as a Firefox Feed Reader by clicking the link below."
 msgstr "Tiny Tiny RSS może być ustawiona jako domyślny czytnik kanałów w Firefoxie poprzez kliknięcie odnośnika poniżej."
 
-#: classes/pref/feeds.php:1422
+#: classes/pref/feeds.php:1423
 msgid "Click here to register this site as a feed reader."
 msgstr "Kliknij tutaj aby ustawić tę stronę jako czytnik kanałów."
 
-#: classes/pref/feeds.php:1430
+#: classes/pref/feeds.php:1431
 msgid "Published & shared articles / Generated feeds"
 msgstr "Opublikowane i udostępnione artykuły / Wygenerowane kanały"
 
-#: classes/pref/feeds.php:1432
+#: classes/pref/feeds.php:1433
 msgid "Published articles and generated feeds"
 msgstr "Opublikowane artykuły i wygenerowane kanały"
 
-#: classes/pref/feeds.php:1434
+#: classes/pref/feeds.php:1435
 msgid "Published articles are exported as a public RSS feed and can be subscribed by anyone who knows the URL specified below."
 msgstr "Opublikowane artykuły są eksportowane jako publiczny kanał RSS i mogą być prenumerowane przez każdego kto zna adres podany poniżej."
 
-#: classes/pref/feeds.php:1440
+#: classes/pref/feeds.php:1441
 msgid "Display URL"
 msgstr "Wyświetl adres"
 
-#: classes/pref/feeds.php:1443
+#: classes/pref/feeds.php:1444
 msgid "Clear all generated URLs"
 msgstr "Wyczyść wszystkie wygenerowane adresy"
 
-#: classes/pref/feeds.php:1445
+#: classes/pref/feeds.php:1446
 msgid "Articles shared by URL"
 msgstr "Wszystkie artykuły udostępnione przez adresy"
 
-#: classes/pref/feeds.php:1447
+#: classes/pref/feeds.php:1448
 msgid "You can disable all articles shared by unique URLs here."
 msgstr "Możesz wyłączyć wszystkie unikalne adresy prowadzące do udostępnionych artykułów."
 
-#: classes/pref/feeds.php:1450
+#: classes/pref/feeds.php:1451
 msgid "Unshare all articles"
 msgstr "Zakończ udostępnianie wszystkich artykułów"
 
-#: classes/pref/feeds.php:1528
+#: classes/pref/feeds.php:1529
 msgid "These feeds have not been updated with new content for 3 months (oldest first):"
 msgstr "Niniejsze kanały nie zostały uaktualnione przez 3 miesiące (najstarsze pierwsze):"
 
-#: classes/pref/feeds.php:1565
-#: classes/pref/feeds.php:1635
+#: classes/pref/feeds.php:1566
+#: classes/pref/feeds.php:1636
 msgid "Click to edit feed"
 msgstr "Kliknij aby edytować kanał"
 
-#: classes/pref/feeds.php:1583
-#: classes/pref/feeds.php:1655
+#: classes/pref/feeds.php:1584
+#: classes/pref/feeds.php:1656
 msgid "Unsubscribe from selected feeds"
 msgstr "Zakończ prenumeratę wybranych kanałów:"
 
-#: classes/pref/feeds.php:1594
+#: classes/pref/feeds.php:1595
 msgid "These feeds have not been updated because of errors:"
 msgstr "Te kanały nie zostały uaktualnione ponieważ wystąpiły błędy:"
 
+#: classes/pref/feeds.php:1758
+msgid "Add one valid RSS feed per line (no feed detection is done)"
+msgstr "Wpisz jeden prawidłowy adres kanału RSS w każdej linii (nie jest przeprowadzana automatyczna detekcja adresu kanału)"
+
+#: classes/pref/feeds.php:1767
+msgid "Feeds to subscribe, One per line"
+msgstr "Kanały do prenumeraty. Każdy w osobnej linii"
+
+#: classes/pref/feeds.php:1789
+msgid "Feeds require authentication."
+msgstr "Kanały wymagają uwierzytelniania."
+
 #: plugins/digest/digest_body.php:59
 msgid "Your browser doesn't support Javascript, which is required for this application to function properly. Please check your browser settings."
 msgstr "Twoja przeglądarka nie obsługuje Javascript, który jest wymagany aby aplikacja działała poprawnie. Proszę sprawdź ustawienia swojej przeglądarki."
@@ -2821,24 +2776,24 @@ msgstr "Ustaw wartość"
 msgid "No file uploaded."
 msgstr ""
 
-#: plugins/googlereaderimport/init.php:149
+#: plugins/googlereaderimport/init.php:153
 #, php-format
 msgid "All done. %d out of %d articles imported."
 msgstr ""
 
-#: plugins/googlereaderimport/init.php:153
+#: plugins/googlereaderimport/init.php:157
 msgid "The document has incorrect format."
 msgstr ""
 
-#: plugins/googlereaderimport/init.php:322
+#: plugins/googlereaderimport/init.php:326
 msgid "Import starred or shared items from Google Reader"
 msgstr ""
 
-#: plugins/googlereaderimport/init.php:326
+#: plugins/googlereaderimport/init.php:330
 msgid "Paste your starred.json or shared.json into the form below."
 msgstr ""
 
-#: plugins/googlereaderimport/init.php:340
+#: plugins/googlereaderimport/init.php:344
 msgid "Import my Starred items"
 msgstr ""
 
@@ -2846,6 +2801,38 @@ msgstr ""
 msgid "Linked"
 msgstr "Połączone instancje"
 
+#: plugins/instances/init.php:207
+#: plugins/instances/init.php:399
+msgid "Instance"
+msgstr "Instancja"
+
+#: plugins/instances/init.php:218
+#: plugins/instances/init.php:315
+#: plugins/instances/init.php:408
+msgid "Instance URL"
+msgstr "Adres instancji:"
+
+#: plugins/instances/init.php:229
+#: plugins/instances/init.php:418
+msgid "Access key:"
+msgstr "Klucz dostępu:"
+
+#: plugins/instances/init.php:232
+#: plugins/instances/init.php:316
+#: plugins/instances/init.php:421
+msgid "Access key"
+msgstr "Klucz dostępu"
+
+#: plugins/instances/init.php:236
+#: plugins/instances/init.php:425
+msgid "Use one access key for both linked instances."
+msgstr "Użyj jednego klucza dostępu dla obydwóch połączonych instancji."
+
+#: plugins/instances/init.php:244
+#: plugins/instances/init.php:433
+msgid "Generate new key"
+msgstr "Wygeneruj nowy klucz"
+
 #: plugins/instances/init.php:295
 msgid "Link instance"
 msgstr "Połącz instalację"
@@ -2866,6 +2853,10 @@ msgstr "Status"
 msgid "Stored feeds"
 msgstr "Zapisane kanały"
 
+#: plugins/instances/init.php:437
+msgid "Create link"
+msgstr "Utwórz łącze"
+
 #: plugins/share/init.php:27
 msgid "Share by URL"
 msgstr "Udostępnij adres"
@@ -2925,167 +2916,171 @@ msgstr "Czy jesteś pewien, że chcesz zgłosić ten wyjątek do tt-rss.org? Zg
 msgid "close"
 msgstr ""
 
-#: js/functions.js:627
+#: js/functions.js:621
 msgid "Date syntax appears to be correct:"
 msgstr "Format daty wygląda na poprawną:"
 
-#: js/functions.js:630
+#: js/functions.js:624
 msgid "Date syntax is incorrect."
 msgstr "Format daty jest niepoprawny."
 
-#: js/functions.js:724
+#: js/functions.js:636
+msgid "Error explained"
+msgstr ""
+
+#: js/functions.js:718
 msgid "Upload complete."
 msgstr "Przesyłanie ukończone."
 
-#: js/functions.js:748
+#: js/functions.js:742
 msgid "Remove stored feed icon?"
 msgstr "Usuń zapisaną ikonę kanału."
 
-#: js/functions.js:753
+#: js/functions.js:747
 msgid "Removing feed icon..."
 msgstr "Usuwanie ikony kanału..."
 
-#: js/functions.js:758
+#: js/functions.js:752
 msgid "Feed icon removed."
 msgstr "Ikona kanału usunięta."
 
-#: js/functions.js:780
+#: js/functions.js:774
 msgid "Please select an image file to upload."
 msgstr "Wybierz obrazek do wysłania."
 
-#: js/functions.js:782
+#: js/functions.js:776
 msgid "Upload new icon for this feed?"
 msgstr "Wgrać nową ikonę dla tego kanału?"
 
-#: js/functions.js:783
+#: js/functions.js:777
 msgid "Uploading, please wait..."
 msgstr "Trwa ładowanie, proszę czekać..."
 
-#: js/functions.js:799
+#: js/functions.js:793
 msgid "Please enter label caption:"
 msgstr "Proszę wprowadzić opis etykiety:"
 
-#: js/functions.js:804
+#: js/functions.js:798
 msgid "Can't create label: missing caption."
 msgstr "Nie udało się utworzyć etykiety: brak opisu."
 
-#: js/functions.js:847
+#: js/functions.js:841
 msgid "Subscribe to Feed"
 msgstr "Prenumeruj kanał"
 
-#: js/functions.js:874
+#: js/functions.js:868
 msgid "Subscribed to %s"
 msgstr "Zaprenumerowano kanał %s"
 
-#: js/functions.js:879
+#: js/functions.js:873
 msgid "Specified URL seems to be invalid."
 msgstr "Wprowadzony adres jest niepoprawny."
 
-#: js/functions.js:882
+#: js/functions.js:876
 msgid "Specified URL doesn't seem to contain any feeds."
 msgstr "Wprowadzony adres nie zawiera żadnych kanałów."
 
-#: js/functions.js:935
+#: js/functions.js:929
 msgid "Couldn't download the specified URL: %s"
 msgstr "Nie udało się pobrać wprowadzonego adresu: %s"
 
-#: js/functions.js:939
+#: js/functions.js:933
 msgid "You are already subscribed to this feed."
 msgstr "Prenumerujesz już ten kanał."
 
-#: js/functions.js:1069
+#: js/functions.js:1063
 msgid "Edit rule"
 msgstr "Edytuj regułę"
 
-#: js/functions.js:1095
+#: js/functions.js:1089
 msgid "Edit action"
 msgstr "Edytuj działanie"
 
-#: js/functions.js:1132
+#: js/functions.js:1126
 msgid "Create Filter"
 msgstr "Utwórz filtr"
 
-#: js/functions.js:1247
+#: js/functions.js:1241
 msgid "Reset subscription? Tiny Tiny RSS will try to subscribe to the notification hub again on next feed update."
 msgstr "Zresetować prenumeraty? Tiny Tiny RSS spróbuje zaprenumerować powiadomienia przy następnej aktualizacji."
 
-#: js/functions.js:1258
+#: js/functions.js:1252
 msgid "Subscription reset."
 msgstr "Zresetowano prenumerate."
 
-#: js/functions.js:1268
+#: js/functions.js:1262
 #: js/tt-rss.js:619
 msgid "Unsubscribe from %s?"
 msgstr "Zakończyć prenumeratę %s?"
 
-#: js/functions.js:1271
+#: js/functions.js:1265
 msgid "Removing feed..."
 msgstr "Usuwanie kanału..."
 
-#: js/functions.js:1379
+#: js/functions.js:1373
 msgid "Please enter category title:"
 msgstr "Wprowadź tytuł kategorii:"
 
-#: js/functions.js:1410
+#: js/functions.js:1404
 msgid "Generate new syndication address for this feed?"
 msgstr "Wygenerowań nowy adres do dzielenia się tym kanałem?"
 
-#: js/functions.js:1414
-#: js/prefs.js:1234
+#: js/functions.js:1408
+#: js/prefs.js:1222
 msgid "Trying to change address..."
 msgstr "Próbuje zmienić adres..."
 
-#: js/functions.js:1601
+#: js/functions.js:1595
 #: js/tt-rss.js:396
 #: js/tt-rss.js:600
 msgid "You can't edit this kind of feed."
 msgstr "Nie możesz edytować kanału tego typu."
 
-#: js/functions.js:1616
+#: js/functions.js:1610
 msgid "Edit Feed"
 msgstr "Edytuj kanał"
 
-#: js/functions.js:1622
+#: js/functions.js:1616
 #: js/prefs.js:194
 #: js/prefs.js:749
 msgid "Saving data..."
 msgstr "Zapisywanie danych..."
 
-#: js/functions.js:1654
+#: js/functions.js:1648
 msgid "More Feeds"
 msgstr "Więcej kanałów"
 
-#: js/functions.js:1715
-#: js/functions.js:1825
+#: js/functions.js:1709
+#: js/functions.js:1819
 #: 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
+#: js/prefs.js:1198
+#: js/prefs.js:1343
 msgid "No feeds are selected."
 msgstr "Nie wybrano żadnego kanału."
 
-#: js/functions.js:1757
+#: js/functions.js:1751
 msgid "Remove selected feeds from the archive? Feeds with stored articles will not be removed."
 msgstr "Usunąć wybrane kanały z archiwum? Kanały z zachowanymi artykułami nie zostaną usunięte."
 
-#: js/functions.js:1796
+#: js/functions.js:1790
 msgid "Feeds with update errors"
 msgstr "Kanały z błędami aktualizacji"
 
-#: js/functions.js:1807
-#: js/prefs.js:1192
+#: js/functions.js:1801
+#: js/prefs.js:1180
 msgid "Remove selected feeds?"
 msgstr "Usunąć wybrane kanały?"
 
-#: js/functions.js:1810
-#: js/prefs.js:1195
+#: js/functions.js:1804
+#: js/prefs.js:1183
 msgid "Removing selected feeds..."
 msgstr "Usuwanie wybranych kanałów..."
 
-#: js/functions.js:1908
+#: js/functions.js:1902
 msgid "Help"
 msgstr "Pomoc"
 
@@ -3097,7 +3092,7 @@ msgstr "Edytuj kategorię"
 msgid "Remove category"
 msgstr "Usuń kategorię"
 
-#: js/PrefFilterTree.js:32
+#: js/PrefFilterTree.js:48
 msgid "Inverse"
 msgstr "Odwróć"
 
@@ -3134,7 +3129,7 @@ msgid "Removing selected labels..."
 msgstr "Usuwanie wybranych etykiet..."
 
 #: js/prefs.js:295
-#: js/prefs.js:1396
+#: js/prefs.js:1384
 msgid "No labels are selected."
 msgstr "Nie wybrano żadnych etykiet."
 
@@ -3237,144 +3232,144 @@ msgstr "Edytuj wiele kanałów"
 msgid "Save changes to selected feeds?"
 msgstr "Zapisać zmiany w wybranych kanałach?"
 
-#: js/prefs.js:797
+#: js/prefs.js:785
 msgid "OPML Import"
 msgstr "Import OPML"
 
-#: js/prefs.js:824
+#: js/prefs.js:812
 msgid "Please choose an OPML file first."
 msgstr "Najpierw wybierz plik OPML."
 
-#: js/prefs.js:827
+#: js/prefs.js:815
 #: plugins/import_export/import_export.js:115
 #: plugins/googlereaderimport/init.js:45
 msgid "Importing, please wait..."
 msgstr "Trwa import, proszę czekać..."
 
-#: js/prefs.js:980
+#: js/prefs.js:968
 msgid "Reset to defaults?"
 msgstr "Przywrócić ustawienia domyślne?"
 
-#: js/prefs.js:1099
+#: js/prefs.js:1087
 msgid "Remove category %s? Any nested feeds would be placed into Uncategorized."
 msgstr "Usunąć kategorię %s? Wszystkie zagnieżdżone kanały zostaną umieszczone w Bez kategorii."
 
-#: js/prefs.js:1105
+#: js/prefs.js:1093
 msgid "Removing category..."
 msgstr "Usuwanie kategorii..."
 
-#: js/prefs.js:1126
+#: js/prefs.js:1114
 msgid "Remove selected categories?"
 msgstr "Usunąć wybrane kategorię?"
 
-#: js/prefs.js:1129
+#: js/prefs.js:1117
 msgid "Removing selected categories..."
 msgstr "Usuwanie wybranych kategorii..."
 
-#: js/prefs.js:1142
+#: js/prefs.js:1130
 msgid "No categories are selected."
 msgstr "Nie wybrano żadnej kategorii."
 
-#: js/prefs.js:1150
+#: js/prefs.js:1138
 msgid "Category title:"
 msgstr "Tytuł kategorii:"
 
-#: js/prefs.js:1154
+#: js/prefs.js:1142
 msgid "Creating category..."
 msgstr "Tworzenie kategorii..."
 
-#: js/prefs.js:1181
+#: js/prefs.js:1169
 msgid "Feeds without recent updates"
 msgstr "Kanały nieaktualizowane ostatnio"
 
-#: js/prefs.js:1230
+#: js/prefs.js:1218
 msgid "Replace current OPML publishing address with a new one?"
 msgstr "Zastąpić obecny adres publikacji OPML nowym adresem?"
 
-#: js/prefs.js:1319
+#: js/prefs.js:1307
 msgid "Clearing feed..."
 msgstr "Czyszczenie kanału..."
 
-#: js/prefs.js:1339
+#: js/prefs.js:1327
 msgid "Rescore articles in selected feeds?"
 msgstr "Przeliczyć punktację w wybranych kanałach?"
 
-#: js/prefs.js:1342
+#: js/prefs.js:1330
 msgid "Rescoring selected feeds..."
 msgstr "Przeliczanie punktacji wybranych kanałów..."
 
-#: js/prefs.js:1362
+#: js/prefs.js:1350
 msgid "Rescore all articles? This operation may take a lot of time."
 msgstr "Przeliczyć punktację wszystkich artykułów? Ta czynność może zająć dużo czasu."
 
-#: js/prefs.js:1365
+#: js/prefs.js:1353
 msgid "Rescoring feeds..."
 msgstr "Przeliczanie punktacji kanałów..."
 
-#: js/prefs.js:1382
+#: js/prefs.js:1370
 msgid "Reset selected labels to default colors?"
 msgstr "Przywrócić domyślne kolory wybranym etykietom?"
 
-#: js/prefs.js:1419
+#: js/prefs.js:1407
 msgid "Settings Profiles"
 msgstr "Profile ustawień"
 
-#: js/prefs.js:1428
+#: js/prefs.js:1416
 msgid "Remove selected profiles? Active and default profiles will not be removed."
 msgstr "Usunąć wybrane profile? Aktywne i domyślne profile nie zostaną usunięte."
 
-#: js/prefs.js:1431
+#: js/prefs.js:1419
 msgid "Removing selected profiles..."
 msgstr "Usuwanie wybranych profili..."
 
-#: js/prefs.js:1446
+#: js/prefs.js:1434
 msgid "No profiles are selected."
 msgstr "Nie wybrano żadnych profili."
 
-#: js/prefs.js:1454
-#: js/prefs.js:1507
+#: js/prefs.js:1442
+#: js/prefs.js:1495
 msgid "Activate selected profile?"
 msgstr "Uaktywnić wybrany profil?"
 
-#: js/prefs.js:1470
-#: js/prefs.js:1523
+#: js/prefs.js:1458
+#: js/prefs.js:1511
 msgid "Please choose a profile to activate."
 msgstr "Wybierz profil do uaktywnienia."
 
-#: js/prefs.js:1475
+#: js/prefs.js:1463
 msgid "Creating profile..."
 msgstr "Tworzenie profili...."
 
-#: js/prefs.js:1531
+#: js/prefs.js:1519
 msgid "This will invalidate all previously generated feed URLs. Continue?"
 msgstr "Operacja spowoduje unieważnienie wszystkich poprzednio wygenerowanych adresów kanałów. Kontynuować?"
 
-#: js/prefs.js:1534
-#: js/prefs.js:1553
+#: js/prefs.js:1522
+#: js/prefs.js:1541
 msgid "Clearing URLs..."
 msgstr "Czyszczę URLe..."
 
-#: js/prefs.js:1541
+#: js/prefs.js:1529
 msgid "Generated URLs cleared."
 msgstr "Wyczyszczono wygenerowane adresy URL."
 
-#: js/prefs.js:1550
+#: js/prefs.js:1538
 msgid "This will invalidate all previously shared article URLs. Continue?"
 msgstr "Operacja spowoduje unieważnienie adresów wszystkich poprzednio udostępnionych artykułów. Kontynuować?"
 
-#: js/prefs.js:1560
+#: js/prefs.js:1548
 msgid "Shared URLs cleared."
 msgstr "Udostępniane adresy zostały wyczyszczone."
 
-#: js/prefs.js:1648
+#: js/prefs.js:1654
 msgid "Label Editor"
 msgstr "Edytor etykiet"
 
-#: js/prefs.js:1770
+#: js/prefs.js:1776
 msgid "Subscribing to feeds..."
 msgstr "Prenumerowanie kanałów..."
 
-#: js/prefs.js:1807
+#: js/prefs.js:1813
 msgid "Clear stored data for this plugin?"
 msgstr "Wyczyścić zapamiętane dane tej wtyczki?"
 
@@ -3394,28 +3389,32 @@ msgstr "Włącz najpierw wtyczkę obsługi poczty (mail)."
 msgid "Please enable embed_original plugin first."
 msgstr "Włącz najpierw wtyczkę osadzania oryginalnej wiadomości (embed_original)."
 
+#: js/tt-rss.js:587
+msgid "Select item(s) by tags"
+msgstr "Wybierz element(y) przy użyciu tagów"
+
 #: js/tt-rss.js:608
 msgid "You can't unsubscribe from the category."
 msgstr "Nie możesz zrezygnować z prenumeraty tej kategorii."
 
 #: js/tt-rss.js:613
-#: js/tt-rss.js:769
+#: js/tt-rss.js:765
 msgid "Please select some feed first."
 msgstr "Wybierz najpierw jakiś kanał."
 
-#: js/tt-rss.js:764
+#: js/tt-rss.js:760
 msgid "You can't rescore this kind of feed."
 msgstr "Nie możesz przeliczyć punktacji kanału tego rodzaju."
 
-#: js/tt-rss.js:774
+#: js/tt-rss.js:770
 msgid "Rescore articles in %s?"
 msgstr "Przeliczyć punktację artykułów w %s?"
 
-#: js/tt-rss.js:777
+#: js/tt-rss.js:773
 msgid "Rescoring articles..."
 msgstr "Przeliczanie punktacji kanałów..."
 
-#: js/tt-rss.js:911
+#: js/tt-rss.js:907
 msgid "New version available!"
 msgstr "Dostępna jest nowa wersja!"
 
@@ -3446,115 +3445,111 @@ msgstr "Anuluj publikacje artykułu"
 #: js/viewfeed.js:734
 #: js/viewfeed.js:797
 #: js/viewfeed.js:831
-#: js/viewfeed.js:968
-#: js/viewfeed.js:1011
-#: js/viewfeed.js:1064
-#: js/viewfeed.js:2108
+#: js/viewfeed.js:951
+#: js/viewfeed.js:994
+#: js/viewfeed.js:1047
+#: js/viewfeed.js:2096
 #: plugins/mailto/init.js:7
 #: plugins/mail/mail.js:7
 msgid "No articles are selected."
 msgstr "Nie wybrano żadnych artykułów"
 
-#: js/viewfeed.js:948
-msgid "Mark all visible articles in %s as read?"
-msgstr "Oznaczyć wszystkie widoczne artykuły z %s jako przeczytane?"
-
-#: js/viewfeed.js:976
+#: js/viewfeed.js:959
 msgid "Delete %d selected article in %s?"
 msgid_plural "Delete %d selected articles in %s?"
 msgstr[0] "Usunąć %d zaznaczony artykuł z %s?"
 msgstr[1] "Usunąć %d zaznaczone artykuły z %s?"
 msgstr[2] "Usunąć %d zaznaczonych artykułów z %s?"
 
-#: js/viewfeed.js:978
+#: js/viewfeed.js:961
 msgid "Delete %d selected article?"
 msgid_plural "Delete %d selected articles?"
 msgstr[0] "Usunąć %d zaznaczony artykuł?"
 msgstr[1] "Usunąć %d zaznaczone artykuły?"
 msgstr[2] "Usunąć %d zaznaczonych artykułów?"
 
-#: js/viewfeed.js:1020
+#: js/viewfeed.js:1003
 msgid "Archive %d selected article in %s?"
 msgid_plural "Archive %d selected articles in %s?"
 msgstr[0] "Zarchiwizować %d zaznaczony artykuł z %s?"
 msgstr[1] "Zarchiwizować %d zaznaczone artykuły z %s?"
 msgstr[2] "Zarchiwizować %d zaznaczonych artykułów z %s?"
 
-#: js/viewfeed.js:1023
+#: js/viewfeed.js:1006
 msgid "Move %d archived article back?"
 msgid_plural "Move %d archived articles back?"
 msgstr[0] "Przywrócić %d zarchiwizowany artykuł?"
 msgstr[1] "Przywrócić %d zarchiwizowane artykuły?"
 msgstr[2] "Przywrócić %d zarchiwizowanych artykułów?"
 
-#: js/viewfeed.js:1025
+#: js/viewfeed.js:1008
 msgid "Please note that unstarred articles might get purged on next feed update."
 msgstr ""
 
-#: js/viewfeed.js:1070
+#: js/viewfeed.js:1053
 msgid "Mark %d selected article in %s as read?"
 msgid_plural "Mark %d selected articles in %s as read?"
 msgstr[0] "Oznaczyć %d wybrany artykuł z %s jako przeczytany?"
 msgstr[1] "Oznaczyć %d wybrane artykuły z %s jako przeczytane?"
 msgstr[2] "Oznaczyć %d wybranych artykułów z %s jako przeczytane?"
 
-#: js/viewfeed.js:1094
+#: js/viewfeed.js:1077
 msgid "Edit article Tags"
 msgstr "Edytuj tagi artykułu"
 
-#: js/viewfeed.js:1100
+#: js/viewfeed.js:1083
 msgid "Saving article tags..."
 msgstr "Zapisuję tagi artykułu..."
 
-#: js/viewfeed.js:1337
+#: js/viewfeed.js:1323
 msgid "No article is selected."
 msgstr "Nie wybrano żadnego artykułu."
 
-#: js/viewfeed.js:1372
+#: js/viewfeed.js:1358
 msgid "No articles found to mark"
 msgstr "Nie znaleziono artykułów do oznaczenia"
 
-#: js/viewfeed.js:1374
+#: js/viewfeed.js:1360
 msgid "Mark %d article as read?"
 msgid_plural "Mark %d articles as read?"
 msgstr[0] "Oznaczyć %d artykuł jako przeczytany?"
 msgstr[1] "Oznaczyć %d artykuły jako przeczytane?"
 msgstr[2] "Oznaczyć %d artykułów jako przeczytane?"
 
-#: js/viewfeed.js:1884
+#: js/viewfeed.js:1872
 msgid "Open original article"
 msgstr "Otwórz oryginalny artykuł"
 
-#: js/viewfeed.js:1890
+#: js/viewfeed.js:1878
 msgid "Display article URL"
 msgstr "Wyświetl adres artykułu"
 
-#: js/viewfeed.js:1909
+#: js/viewfeed.js:1897
 #, fuzzy
 msgid "Toggle marked"
 msgstr "Przełącz oznaczenie gwiazdką"
 
-#: js/viewfeed.js:1995
+#: js/viewfeed.js:1983
 msgid "Remove label"
 msgstr "Usuń etykietę"
 
-#: js/viewfeed.js:2019
+#: js/viewfeed.js:2007
 msgid "Playing..."
 msgstr "Odtwarzam..."
 
-#: js/viewfeed.js:2020
+#: js/viewfeed.js:2008
 msgid "Click to pause"
 msgstr "Kliknij aby zapauzować"
 
-#: js/viewfeed.js:2077
+#: js/viewfeed.js:2065
 msgid "Please enter new score for selected articles:"
 msgstr "Wprowadź nową punktację dla wybranych artykułów:"
 
-#: js/viewfeed.js:2119
+#: js/viewfeed.js:2107
 msgid "Please enter new score for this article:"
 msgstr "Wprowadź nową punktację dla tego artykułu:"
 
-#: js/viewfeed.js:2152
+#: js/viewfeed.js:2140
 msgid "Article URL:"
 msgstr "Adres artykułu:"
 
@@ -3662,6 +3657,21 @@ msgstr "Udostępnij artykuł"
 msgid "Live updating is considered experimental. Backup your tt-rss directory before continuing. Please type 'yes' to continue."
 msgstr "Aktualizacja \"na żywo\" jest uznawana za funkcję eksperymentalną. Wykonaj kopię swojego katalogu tt-rss przed kontynuowaniem. Wpisz 'yes' aby kontynuować."
 
+#~ msgid "(%d feed)"
+#~ msgid_plural "(%d feeds)"
+#~ msgstr[0] "(%d kanał)"
+#~ msgstr[1] "(%d kanały)"
+#~ msgstr[2] "(%d kanałów)"
+
+#~ msgid "Notice"
+#~ msgstr "Uwaga"
+
+#~ msgid "Tag Cloud"
+#~ msgstr "Chmura tagów"
+
+#~ msgid "Mark all visible articles in %s as read?"
+#~ msgstr "Oznaczyć wszystkie widoczne artykuły z %s jako przeczytane?"
+
 #~ msgid "Form secret key incorrect. Please enable cookies and try again."
 #~ msgstr "Nieprawidłowa wartość poufnego klucza. Włącz ciasteczka i spróbuj ponownie."
 
index cc8c7a5f4ac4385ecf09e32690020c24420aa199..6110ee5a76d47cdac2eea73a0d67d64556f23dfc 100644 (file)
Binary files a/locale/pt_BR/LC_MESSAGES/messages.mo and b/locale/pt_BR/LC_MESSAGES/messages.mo differ
index 4c79965f554cf54b5e1f4abe94e3a490c899174c..5ca792d9706b6bdca7d2ca6867660b0c5668b7e4 100644 (file)
@@ -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-31 12:47+0400\n"
+"POT-Creation-Date: 2013-04-01 16:28+0400\n"
 "PO-Revision-Date: 2007-10-24 00:47-0200\n"
 "Last-Translator: Marcelo Jorge VIeira (metal) <metal@alucinados.com>\n"
 "Language-Team: Portuguese/Brazil\n"
@@ -138,9 +138,9 @@ msgstr ""
 #: register.php:336
 #: register.php:346
 #: register.php:358
-#: classes/handler/public.php:625
-#: classes/handler/public.php:713
-#: classes/handler/public.php:795
+#: classes/handler/public.php:626
+#: classes/handler/public.php:714
+#: classes/handler/public.php:796
 msgid "Return to Tiny Tiny RSS"
 msgstr ""
 
@@ -251,36 +251,37 @@ msgstr ""
 
 #: index.php:135
 #: index.php:154
-#: index.php:264
-#: prefs.php:102
+#: index.php:263
+#: prefs.php:103
 #: classes/backend.php:5
 #: classes/pref/labels.php:296
-#: classes/pref/filters.php:628
-#: classes/pref/feeds.php:1330
+#: classes/pref/filters.php:680
+#: classes/pref/feeds.php:1331
 #: plugins/digest/digest_body.php:63
 #: js/feedlist.js:128
 #: js/feedlist.js:448
 #: js/functions.js:420
-#: js/functions.js:814
-#: js/functions.js:1250
-#: js/functions.js:1385
-#: js/functions.js:1697
+#: js/functions.js:808
+#: js/functions.js:1244
+#: js/functions.js:1379
+#: js/functions.js:1691
 #: js/prefs.js:86
 #: js/prefs.js:576
 #: js/prefs.js:666
-#: js/prefs.js:870
-#: js/prefs.js:1457
-#: js/prefs.js:1510
-#: js/prefs.js:1568
-#: js/prefs.js:1584
-#: js/prefs.js:1600
-#: js/prefs.js:1619
-#: js/prefs.js:1792
-#: js/prefs.js:1808
+#: js/prefs.js:858
+#: js/prefs.js:1445
+#: js/prefs.js:1498
+#: js/prefs.js:1557
+#: js/prefs.js:1574
+#: js/prefs.js:1590
+#: js/prefs.js:1606
+#: js/prefs.js:1625
+#: js/prefs.js:1798
+#: js/prefs.js:1814
 #: js/tt-rss.js:475
 #: js/tt-rss.js:492
 #: js/viewfeed.js:774
-#: js/viewfeed.js:1259
+#: js/viewfeed.js:1245
 #: plugins/import_export/import_export.js:17
 #: plugins/updater/updater.js:17
 msgid "Loading, please wait..."
@@ -305,13 +306,13 @@ msgid "All Articles"
 msgstr ""
 
 #: index.php:176
-#: include/functions.php:1974
+#: include/functions.php:1924
 #: classes/feeds.php:106
 msgid "Starred"
 msgstr "Favoritos"
 
 #: index.php:177
-#: include/functions.php:1975
+#: include/functions.php:1925
 #: classes/feeds.php:107
 msgid "Published"
 msgstr "Publicado"
@@ -352,23 +353,16 @@ msgstr ""
 msgid "Oldest first"
 msgstr ""
 
-#: index.php:195
-#: classes/pref/feeds.php:567
-#: classes/pref/feeds.php:792
-msgid "Update"
-msgstr "Atualizar"
-
-#: index.php:197
+#: index.php:192
 #, fuzzy
 msgid "Mark feed as read"
 msgstr "Marcar como lido"
 
-#: index.php:200
-#: index.php:235
-#: include/functions.php:1964
+#: index.php:195
+#: index.php:234
+#: include/functions.php:1914
 #: include/localized_schema.php:10
 #: classes/feeds.php:111
-#: classes/feeds.php:136
 #: classes/feeds.php:437
 #: js/FeedTree.js:128
 #: js/FeedTree.js:156
@@ -376,120 +370,124 @@ msgstr "Marcar como lido"
 msgid "Mark as read"
 msgstr "Marcar como lido"
 
-#: index.php:201
-#: include/functions.php:1860
-#: include/functions.php:1972
+#: index.php:196
+#: include/functions.php:1810
+#: include/functions.php:1922
 #, fuzzy
 msgid "All articles"
 msgstr "Favoritos"
 
-#: index.php:202
+#: index.php:197
 msgid "Older than one day"
 msgstr ""
 
-#: index.php:203
+#: index.php:198
 msgid "Older than one week"
 msgstr ""
 
-#: index.php:204
+#: index.php:199
 msgid "Older than two weeks"
 msgstr ""
 
-#: index.php:212
+#: index.php:204
+msgid "Refresh"
+msgstr ""
+
+#: index.php:211
 msgid "Communication problem with server."
 msgstr ""
 
-#: index.php:220
+#: index.php:219
 msgid "New version of Tiny Tiny RSS is available!"
 msgstr ""
 
-#: index.php:225
+#: index.php:224
 msgid "Actions..."
 msgstr "Ações..."
 
-#: index.php:227
+#: index.php:226
 #, fuzzy
 msgid "Preferences..."
 msgstr "Preferências"
 
-#: index.php:228
+#: index.php:227
 msgid "Search..."
 msgstr ""
 
-#: index.php:229
+#: index.php:228
 msgid "Feed actions:"
 msgstr "Ações do Feed:"
 
-#: index.php:230
-#: classes/handler/public.php:555
+#: index.php:229
+#: classes/handler/public.php:556
 #, fuzzy
 msgid "Subscribe to feed..."
 msgstr "Removendo o Feed..."
 
-#: index.php:231
+#: index.php:230
 #, fuzzy
 msgid "Edit this feed..."
 msgstr "Editar"
 
-#: index.php:232
+#: index.php:231
 #, fuzzy
 msgid "Rescore feed"
 msgstr "Removendo o Feed..."
 
-#: index.php:233
-#: classes/pref/feeds.php:716
-#: classes/pref/feeds.php:1303
+#: index.php:232
+#: classes/pref/feeds.php:717
+#: classes/pref/feeds.php:1304
 #: js/PrefFeedTree.js:73
 msgid "Unsubscribe"
 msgstr ""
 
-#: index.php:234
+#: index.php:233
 msgid "All feeds:"
 msgstr "Todos os Feeds:"
 
-#: index.php:236
+#: index.php:235
 msgid "(Un)hide read feeds"
 msgstr ""
 
-#: index.php:237
+#: index.php:236
 msgid "Other actions:"
 msgstr "Outras ações:"
 
-#: index.php:239
+#: index.php:238
 msgid "Switch to digest..."
 msgstr ""
 
-#: index.php:241
+#: index.php:240
 #, fuzzy
 msgid "Show tag cloud..."
 msgstr "núvem de tags"
 
-#: index.php:242
-#: include/functions.php:1950
+#: index.php:241
+#: include/functions.php:1900
 #, fuzzy
 msgid "Toggle widescreen mode"
 msgstr "Remover as categorias selecionadas?"
 
-#: index.php:243
+#: index.php:242
 msgid "Select by tags..."
 msgstr ""
 
-#: index.php:244
+#: index.php:243
 #, fuzzy
 msgid "Create label..."
 msgstr "Criar um usuário"
 
-#: index.php:245
+#: index.php:244
 #, fuzzy
 msgid "Create filter..."
 msgstr "Criar um usuário"
 
-#: index.php:246
+#: index.php:245
 #, fuzzy
 msgid "Keyboard shortcuts help"
 msgstr "&nbsp;&nbsp;Criar filtro"
 
-#: index.php:248
+#: index.php:247
 #: plugins/digest/digest_body.php:77
 #: plugins/mobile/mobile-functions.php:62
 #: plugins/mobile/mobile-functions.php:237
@@ -497,44 +495,44 @@ msgid "Logout"
 msgstr "Sair"
 
 #: prefs.php:36
-#: prefs.php:122
-#: include/functions.php:1977
+#: prefs.php:121
+#: include/functions.php:1927
 #: classes/pref/prefs.php:377
 msgid "Preferences"
 msgstr "Preferências"
 
-#: prefs.php:113
+#: prefs.php:112
 #, fuzzy
 msgid "Keyboard shortcuts"
 msgstr "&nbsp;&nbsp;Criar filtro"
 
-#: prefs.php:114
+#: prefs.php:113
 msgid "Exit preferences"
 msgstr "Sair das preferências"
 
-#: prefs.php:125
-#: classes/pref/feeds.php:106
-#: classes/pref/feeds.php:1208
-#: classes/pref/feeds.php:1271
+#: prefs.php:124
+#: classes/pref/feeds.php:107
+#: classes/pref/feeds.php:1209
+#: classes/pref/feeds.php:1272
 #, fuzzy
 msgid "Feeds"
 msgstr "Feed"
 
-#: prefs.php:128
-#: classes/pref/filters.php:120
+#: prefs.php:127
+#: classes/pref/filters.php:156
 #, fuzzy
 msgid "Filters"
 msgstr "Arquivo:"
 
-#: prefs.php:131
-#: include/functions.php:1167
-#: include/functions.php:1803
+#: prefs.php:130
+#: include/functions.php:1117
+#: include/functions.php:1753
 #: classes/pref/labels.php:90
 #: plugins/mobile/mobile-functions.php:198
 msgid "Labels"
 msgstr ""
 
-#: prefs.php:135
+#: prefs.php:134
 #, fuzzy
 msgid "Users"
 msgstr "Usuário"
@@ -561,13 +559,13 @@ msgid "Check availability"
 msgstr ""
 
 #: register.php:228
-#: classes/handler/public.php:753
+#: classes/handler/public.php:754
 #, fuzzy
 msgid "Email:"
 msgstr "E-mail:"
 
 #: register.php:231
-#: classes/handler/public.php:758
+#: classes/handler/public.php:759
 msgid "How much is two plus two:"
 msgstr ""
 
@@ -601,12 +599,12 @@ msgid "Tiny Tiny RSS data update script."
 msgstr ""
 
 #: include/digest.php:109
-#: include/functions.php:1176
-#: include/functions.php:1704
-#: include/functions.php:1789
-#: include/functions.php:1811
+#: include/functions.php:1126
+#: include/functions.php:1654
+#: include/functions.php:1739
+#: include/functions.php:1761
 #: classes/opml.php:416
-#: classes/pref/feeds.php:221
+#: classes/pref/feeds.php:222
 msgid "Uncategorized"
 msgstr "Não Categorizado"
 
@@ -622,370 +620,368 @@ msgstr[1] "Favoritos"
 msgid "No feeds found."
 msgstr "Sem Feeds para exibir."
 
-#: include/functions.php:722
-msgid "Session failed to validate (incorrect IP)"
-msgstr ""
-
-#: include/functions.php:1165
-#: include/functions.php:1801
+#: include/functions.php:1115
+#: include/functions.php:1751
 #: plugins/mobile/mobile-functions.php:171
 msgid "Special"
 msgstr "Especial"
 
-#: include/functions.php:1653
-#: classes/dlg.php:369
-#: classes/pref/filters.php:382
+#: include/functions.php:1603
+#: classes/feeds.php:1097
+#: classes/pref/filters.php:427
 msgid "All feeds"
 msgstr "Todos os feeds"
 
-#: include/functions.php:1854
+#: include/functions.php:1804
 msgid "Starred articles"
 msgstr ""
 
-#: include/functions.php:1856
+#: include/functions.php:1806
 msgid "Published articles"
 msgstr ""
 
-#: include/functions.php:1858
+#: include/functions.php:1808
 msgid "Fresh articles"
 msgstr ""
 
-#: include/functions.php:1862
+#: include/functions.php:1812
 #, fuzzy
 msgid "Archived articles"
 msgstr "Favoritos"
 
-#: include/functions.php:1864
+#: include/functions.php:1814
 msgid "Recently read"
 msgstr ""
 
-#: include/functions.php:1927
+#: include/functions.php:1877
 #, fuzzy
 msgid "Navigation"
 msgstr "Salvar configuração"
 
-#: include/functions.php:1928
+#: include/functions.php:1878
 msgid "Open next feed"
 msgstr ""
 
-#: include/functions.php:1929
+#: include/functions.php:1879
 msgid "Open previous feed"
 msgstr ""
 
-#: include/functions.php:1930
+#: include/functions.php:1880
 #, fuzzy
 msgid "Open next article"
 msgstr "Favoritos"
 
-#: include/functions.php:1931
+#: include/functions.php:1881
 #, fuzzy
 msgid "Open previous article"
 msgstr "Favoritos"
 
-#: include/functions.php:1932
+#: include/functions.php:1882
 msgid "Open next article (don't scroll long articles)"
 msgstr ""
 
-#: include/functions.php:1933
+#: include/functions.php:1883
 msgid "Open previous article (don't scroll long articles)"
 msgstr ""
 
-#: include/functions.php:1934
+#: include/functions.php:1884
 #, fuzzy
 msgid "Show search dialog"
 msgstr "Favoritos"
 
-#: include/functions.php:1935
+#: include/functions.php:1885
 #, fuzzy
 msgid "Article"
 msgstr "Feed não encontrado."
 
-#: include/functions.php:1936
+#: include/functions.php:1886
 #, fuzzy
 msgid "Toggle starred"
 msgstr "Marcar como favorito"
 
-#: include/functions.php:1937
-#: js/viewfeed.js:1920
+#: include/functions.php:1887
+#: js/viewfeed.js:1908
 #, fuzzy
 msgid "Toggle published"
 msgstr "Publicado"
 
-#: include/functions.php:1938
-#: js/viewfeed.js:1898
+#: include/functions.php:1888
+#: js/viewfeed.js:1886
 msgid "Toggle unread"
 msgstr ""
 
-#: include/functions.php:1939
+#: include/functions.php:1889
 #, fuzzy
 msgid "Edit tags"
 msgstr "Editar Tags"
 
-#: include/functions.php:1940
+#: include/functions.php:1890
 #, fuzzy
 msgid "Dismiss selected"
 msgstr "Remover os filtros selecionados?"
 
-#: include/functions.php:1941
+#: include/functions.php:1891
 #, fuzzy
 msgid "Dismiss read"
 msgstr "Favoritos"
 
-#: include/functions.php:1942
+#: include/functions.php:1892
 msgid "Open in new window"
 msgstr ""
 
-#: include/functions.php:1943
-#: js/viewfeed.js:1939
+#: include/functions.php:1893
+#: js/viewfeed.js:1927
 #, fuzzy
 msgid "Mark below as read"
 msgstr "Marcar como lido"
 
-#: include/functions.php:1944
-#: js/viewfeed.js:1933
+#: include/functions.php:1894
+#: js/viewfeed.js:1921
 #, fuzzy
 msgid "Mark above as read"
 msgstr "Marcar como lido"
 
-#: include/functions.php:1945
+#: include/functions.php:1895
 msgid "Scroll down"
 msgstr ""
 
-#: include/functions.php:1946
+#: include/functions.php:1896
 msgid "Scroll up"
 msgstr ""
 
-#: include/functions.php:1947
+#: include/functions.php:1897
 #, fuzzy
 msgid "Select article under cursor"
 msgstr "Favoritos"
 
-#: include/functions.php:1948
+#: include/functions.php:1898
 #, fuzzy
 msgid "Email article"
 msgstr "Favoritos"
 
-#: include/functions.php:1949
+#: include/functions.php:1899
 #, fuzzy
 msgid "Close/collapse article"
 msgstr "Favoritos"
 
-#: include/functions.php:1951
+#: include/functions.php:1901
 #: plugins/embed_original/init.php:33
 #, fuzzy
 msgid "Toggle embed original"
 msgstr "Remover as categorias selecionadas?"
 
-#: include/functions.php:1952
+#: include/functions.php:1902
 #, fuzzy
 msgid "Article selection"
 msgstr "Favoritos"
 
-#: include/functions.php:1953
+#: include/functions.php:1903
 #, fuzzy
 msgid "Select all articles"
 msgstr "Favoritos"
 
-#: include/functions.php:1954
+#: include/functions.php:1904
 #, fuzzy
 msgid "Select unread"
 msgstr "Favoritos"
 
-#: include/functions.php:1955
+#: include/functions.php:1905
 #, fuzzy
 msgid "Select starred"
 msgstr "Marcar como favorito"
 
-#: include/functions.php:1956
+#: include/functions.php:1906
 #, fuzzy
 msgid "Select published"
 msgstr "Favoritos"
 
-#: include/functions.php:1957
+#: include/functions.php:1907
 #, fuzzy
 msgid "Invert selection"
 msgstr "Favoritos"
 
-#: include/functions.php:1958
+#: include/functions.php:1908
 #, fuzzy
 msgid "Deselect everything"
 msgstr "Favoritos"
 
-#: include/functions.php:1959
-#: classes/pref/feeds.php:520
-#: classes/pref/feeds.php:753
+#: include/functions.php:1909
+#: classes/pref/feeds.php:521
+#: classes/pref/feeds.php:754
 msgid "Feed"
 msgstr "Feed"
 
-#: include/functions.php:1960
+#: include/functions.php:1910
 #, fuzzy
 msgid "Refresh current feed"
 msgstr "Favoritos"
 
-#: include/functions.php:1961
+#: include/functions.php:1911
 #, fuzzy
 msgid "Un/hide read feeds"
 msgstr "Favoritos"
 
-#: include/functions.php:1962
-#: classes/pref/feeds.php:1274
+#: include/functions.php:1912
+#: classes/pref/feeds.php:1275
 msgid "Subscribe to feed"
 msgstr ""
 
-#: include/functions.php:1963
+#: include/functions.php:1913
 #: js/FeedTree.js:135
 #: js/PrefFeedTree.js:67
 #, fuzzy
 msgid "Edit feed"
 msgstr "Editar"
 
-#: include/functions.php:1965
+#: include/functions.php:1915
 #, fuzzy
 msgid "Reverse headlines"
 msgstr "Remover as categorias selecionadas?"
 
-#: include/functions.php:1966
+#: include/functions.php:1916
 #, fuzzy
 msgid "Debug feed update"
 msgstr "Desabilitar updates"
 
-#: include/functions.php:1967
+#: include/functions.php:1917
 #: js/FeedTree.js:178
 #, fuzzy
 msgid "Mark all feeds as read"
 msgstr "Marcando todos os feeds como lidos..."
 
-#: include/functions.php:1968
+#: include/functions.php:1918
 #, fuzzy
 msgid "Un/collapse current category"
 msgstr "Salvando categoria..."
 
-#: include/functions.php:1969
+#: include/functions.php:1919
 #, fuzzy
 msgid "Toggle combined mode"
 msgstr "Remover as categorias selecionadas?"
 
-#: include/functions.php:1970
+#: include/functions.php:1920
 #, fuzzy
 msgid "Toggle auto expand in combined mode"
 msgstr "Remover as categorias selecionadas?"
 
-#: include/functions.php:1971
+#: include/functions.php:1921
 msgid "Go to"
 msgstr ""
 
-#: include/functions.php:1973
+#: include/functions.php:1923
 msgid "Fresh"
 msgstr ""
 
-#: include/functions.php:1976
+#: include/functions.php:1926
+#: js/tt-rss.js:431
+#: js/tt-rss.js:584
 msgid "Tag cloud"
 msgstr "Núvem de tags"
 
-#: include/functions.php:1978
+#: include/functions.php:1928
 #, fuzzy
 msgid "Other"
 msgstr "Onde:"
 
-#: include/functions.php:1979
+#: include/functions.php:1929
 #: classes/pref/labels.php:281
 msgid "Create label"
 msgstr ""
 
-#: include/functions.php:1980
-#: classes/pref/filters.php:606
+#: include/functions.php:1930
+#: classes/pref/filters.php:654
 msgid "Create filter"
 msgstr ""
 
-#: include/functions.php:1981
+#: include/functions.php:1931
 #, fuzzy
 msgid "Un/collapse sidebar"
 msgstr "Todos os feeds"
 
-#: include/functions.php:1982
+#: include/functions.php:1932
 #, fuzzy
 msgid "Show help dialog"
 msgstr "Favoritos"
 
-#: include/functions.php:2467
+#: include/functions.php:2417
 #, php-format
 msgid "Search results: %s"
 msgstr ""
 
-#: include/functions.php:2958
-#: js/viewfeed.js:2026
+#: include/functions.php:2908
+#: js/viewfeed.js:2014
 #, fuzzy
 msgid "Click to play"
 msgstr "Favoritos"
 
-#: include/functions.php:2959
-#: js/viewfeed.js:2025
+#: include/functions.php:2909
+#: js/viewfeed.js:2013
 msgid "Play"
 msgstr ""
 
-#: include/functions.php:3076
+#: include/functions.php:3026
 #, fuzzy
 msgid " - "
 msgstr " - por "
 
-#: include/functions.php:3098
-#: include/functions.php:3392
+#: include/functions.php:3048
+#: include/functions.php:3342
 #: classes/rpc.php:408
 msgid "no tags"
 msgstr "sem tags"
 
-#: include/functions.php:3108
+#: include/functions.php:3058
 #: classes/feeds.php:682
 #, fuzzy
 msgid "Edit tags for this article"
 msgstr "Favoritos"
 
-#: include/functions.php:3137
+#: include/functions.php:3087
 #: classes/feeds.php:638
 #, fuzzy
 msgid "Originally from:"
 msgstr "Favoritos"
 
-#: include/functions.php:3150
+#: include/functions.php:3100
 #: classes/feeds.php:651
-#: classes/pref/feeds.php:539
+#: classes/pref/feeds.php:540
 #, fuzzy
 msgid "Feed URL"
 msgstr "Feed"
 
-#: include/functions.php:3181
-#: classes/dlg.php:43
-#: classes/dlg.php:162
-#: classes/dlg.php:185
-#: classes/dlg.php:222
-#: classes/dlg.php:506
-#: classes/dlg.php:541
-#: classes/dlg.php:572
-#: classes/dlg.php:606
-#: classes/dlg.php:618
+#: include/functions.php:3131
+#: classes/dlg.php:37
+#: classes/dlg.php:60
+#: classes/dlg.php:93
+#: classes/dlg.php:159
+#: classes/dlg.php:190
+#: classes/dlg.php:217
+#: classes/dlg.php:250
+#: classes/dlg.php:262
 #: classes/backend.php:105
 #: classes/pref/users.php:106
-#: classes/pref/filters.php:111
-#: classes/pref/feeds.php:1587
-#: classes/pref/feeds.php:1659
+#: classes/pref/filters.php:147
+#: classes/pref/prefs.php:1012
+#: classes/pref/feeds.php:1588
+#: classes/pref/feeds.php:1660
 #: plugins/import_export/init.php:409
 #: plugins/import_export/init.php:432
-#: plugins/googlereaderimport/init.php:164
+#: plugins/googlereaderimport/init.php:168
 #: plugins/share/init.php:67
 #: plugins/updater/init.php:357
 msgid "Close this window"
 msgstr "Fechar esta janela"
 
-#: include/functions.php:3417
+#: include/functions.php:3367
 msgid "(edit note)"
 msgstr ""
 
-#: include/functions.php:3650
+#: include/functions.php:3600
 #, fuzzy
 msgid "unknown type"
 msgstr "Erro desconhecido"
 
-#: include/functions.php:3706
+#: include/functions.php:3656
 #, fuzzy
 msgid "Attachments"
 msgstr "Conteúdo"
@@ -1033,7 +1029,7 @@ msgid "Assign tags"
 msgstr "sem tags"
 
 #: include/localized_schema.php:14
-#: js/viewfeed.js:1990
+#: js/viewfeed.js:1978
 msgid "Assign label"
 msgstr ""
 
@@ -1220,7 +1216,7 @@ msgid "User timezone"
 msgstr ""
 
 #: include/localized_schema.php:61
-#: js/prefs.js:1719
+#: js/prefs.js:1725
 msgid "Customize stylesheet"
 msgstr ""
 
@@ -1246,14 +1242,14 @@ msgid "Select theme"
 msgstr "Selecionar o tema"
 
 #: include/login_form.php:183
-#: classes/handler/public.php:460
-#: classes/handler/public.php:748
+#: classes/handler/public.php:461
+#: classes/handler/public.php:749
 #: plugins/mobile/login_form.php:40
 msgid "Login:"
 msgstr "Login:"
 
 #: include/login_form.php:192
-#: classes/handler/public.php:463
+#: classes/handler/public.php:464
 #: plugins/mobile/login_form.php:45
 msgid "Password:"
 msgstr "Senha:"
@@ -1264,7 +1260,7 @@ msgid "I forgot my password"
 msgstr "Senha nova"
 
 #: include/login_form.php:201
-#: classes/handler/public.php:466
+#: classes/handler/public.php:467
 msgid "Language:"
 msgstr "Língua:"
 
@@ -1274,9 +1270,9 @@ msgid "Profile:"
 msgstr "Arquivo:"
 
 #: include/login_form.php:213
-#: classes/handler/public.php:210
+#: classes/handler/public.php:211
 #: classes/rpc.php:64
-#: classes/dlg.php:98
+#: classes/pref/prefs.php:948
 #, fuzzy
 msgid "Default profile"
 msgstr "Padrão"
@@ -1290,506 +1286,257 @@ msgid "Remember me"
 msgstr ""
 
 #: include/login_form.php:235
-#: classes/handler/public.php:476
+#: classes/handler/public.php:477
 #: plugins/mobile/login_form.php:28
 #, fuzzy
 msgid "Log in"
 msgstr "Login"
 
+#: include/sessions.php:53
+msgid "Session failed to validate (incorrect IP)"
+msgstr ""
+
 #: classes/article.php:25
 #, fuzzy
 msgid "Article not found."
 msgstr "Feed não encontrado."
 
-#: classes/handler/public.php:401
+#: classes/article.php:179
+msgid "Tags for this article (separated by commas):"
+msgstr ""
+
+#: classes/article.php:204
+#: classes/pref/users.php:192
+#: classes/pref/labels.php:79
+#: classes/pref/filters.php:405
+#: classes/pref/prefs.php:894
+#: classes/pref/feeds.php:733
+#: classes/pref/feeds.php:881
+#: plugins/nsfw/init.php:86
+#: plugins/note/init.php:53
+#: plugins/instances/init.php:248
+msgid "Save"
+msgstr "Salvar"
+
+#: classes/article.php:206
+#: classes/handler/public.php:438
+#: classes/handler/public.php:480
+#: classes/feeds.php:1024
+#: classes/feeds.php:1076
+#: classes/feeds.php:1136
+#: classes/pref/users.php:194
+#: classes/pref/labels.php:81
+#: classes/pref/filters.php:408
+#: classes/pref/filters.php:804
+#: classes/pref/filters.php:880
+#: classes/pref/filters.php:947
+#: classes/pref/prefs.php:896
+#: classes/pref/feeds.php:734
+#: classes/pref/feeds.php:884
+#: classes/pref/feeds.php:1797
+#: plugins/mail/init.php:131
+#: plugins/note/init.php:55
+#: plugins/instances/init.php:251
+#: plugins/instances/init.php:440
+msgid "Cancel"
+msgstr "Cancelar"
+
+#: classes/handler/public.php:402
 #: plugins/bookmarklets/init.php:38
 #, fuzzy
 msgid "Share with Tiny Tiny RSS"
 msgstr "Removendo o Feed..."
 
-#: classes/handler/public.php:409
+#: classes/handler/public.php:410
 msgid "Title:"
 msgstr "Título"
 
-#: classes/handler/public.php:411
-#: classes/dlg.php:663
-#: classes/pref/feeds.php:537
-#: classes/pref/feeds.php:768
+#: classes/handler/public.php:412
+#: classes/pref/feeds.php:538
+#: classes/pref/feeds.php:769
 #: plugins/instances/init.php:215
+#: plugins/instances/init.php:405
 #, fuzzy
 msgid "URL:"
 msgstr "Feed URL:"
 
-#: classes/handler/public.php:413
+#: classes/handler/public.php:414
 #, fuzzy
 msgid "Content:"
 msgstr "Conteúdo"
 
-#: classes/handler/public.php:415
+#: classes/handler/public.php:416
 msgid "Labels:"
 msgstr ""
 
-#: classes/handler/public.php:434
+#: classes/handler/public.php:435
 msgid "Shared article will appear in the Published feed."
 msgstr ""
 
-#: classes/handler/public.php:436
+#: classes/handler/public.php:437
 msgid "Share"
 msgstr ""
 
-#: classes/handler/public.php:437
-#: classes/handler/public.php:479
-#: classes/dlg.php:296
-#: classes/dlg.php:348
-#: classes/dlg.php:408
-#: classes/dlg.php:439
-#: classes/dlg.php:648
-#: classes/dlg.php:698
-#: classes/dlg.php:747
-#: classes/pref/users.php:194
-#: classes/pref/labels.php:81
-#: classes/pref/filters.php:363
-#: classes/pref/filters.php:746
-#: classes/pref/filters.php:822
-#: classes/pref/filters.php:889
-#: classes/pref/feeds.php:733
-#: classes/pref/feeds.php:883
-#: plugins/mail/init.php:131
-#: plugins/note/init.php:55
-#: plugins/instances/init.php:251
-msgid "Cancel"
-msgstr "Cancelar"
-
-#: classes/handler/public.php:458
+#: classes/handler/public.php:459
 #, fuzzy
 msgid "Not logged in"
 msgstr "Último Login"
 
-#: classes/handler/public.php:525
+#: classes/handler/public.php:526
 msgid "Incorrect username or password"
 msgstr ""
 
-#: classes/handler/public.php:561
-#: classes/handler/public.php:658
+#: classes/handler/public.php:562
+#: classes/handler/public.php:659
 #, fuzzy, php-format
 msgid "Already subscribed to <b>%s</b>."
 msgstr "Não pode criar o usuário <b>%s</b>"
 
-#: classes/handler/public.php:564
-#: classes/handler/public.php:649
+#: classes/handler/public.php:565
+#: classes/handler/public.php:650
 #, fuzzy, php-format
 msgid "Subscribed to <b>%s</b>."
 msgstr "Removendo o Feed..."
 
-#: classes/handler/public.php:567
-#: classes/handler/public.php:652
+#: classes/handler/public.php:568
+#: classes/handler/public.php:653
 #, fuzzy, php-format
 msgid "Could not subscribe to <b>%s</b>."
 msgstr "Não pode criar o usuário <b>%s</b>"
 
-#: classes/handler/public.php:570
-#: classes/handler/public.php:655
+#: classes/handler/public.php:571
+#: classes/handler/public.php:656
 #, fuzzy, php-format
 msgid "No feeds found in <b>%s</b>."
 msgstr "Sem Feeds para exibir."
 
-#: classes/handler/public.php:573
-#: classes/handler/public.php:661
+#: classes/handler/public.php:574
+#: classes/handler/public.php:662
 #, fuzzy
 msgid "Multiple feed URLs found."
 msgstr "Sem Feeds para exibir."
 
-#: classes/handler/public.php:577
-#: classes/handler/public.php:666
+#: classes/handler/public.php:578
+#: classes/handler/public.php:667
 #, fuzzy, php-format
 msgid "Could not subscribe to <b>%s</b>.<br>Can't download the Feed URL."
 msgstr "Não pode criar o usuário <b>%s</b>"
 
-#: classes/handler/public.php:595
-#: classes/handler/public.php:684
+#: classes/handler/public.php:596
+#: classes/handler/public.php:685
 #, fuzzy
 msgid "Subscribe to selected feed"
 msgstr "Removendo o Feed..."
 
-#: classes/handler/public.php:620
-#: classes/handler/public.php:708
+#: classes/handler/public.php:621
+#: classes/handler/public.php:709
 msgid "Edit subscription options"
 msgstr ""
 
-#: classes/handler/public.php:735
+#: classes/handler/public.php:736
 #, fuzzy
 msgid "Password recovery"
 msgstr "Senha:"
 
-#: classes/handler/public.php:741
+#: classes/handler/public.php:742
 msgid "You will need to provide valid account name and email. New password will be sent on your email address."
 msgstr ""
 
-#: classes/handler/public.php:763
+#: classes/handler/public.php:764
 #: classes/pref/users.php:378
 #, fuzzy
 msgid "Reset password"
 msgstr "Senha nova"
 
-#: classes/handler/public.php:773
+#: classes/handler/public.php:774
 msgid "Some of the required form parameters are missing or incorrect."
 msgstr ""
 
-#: classes/handler/public.php:777
-#: classes/handler/public.php:803
+#: classes/handler/public.php:778
+#: classes/handler/public.php:804
 #: plugins/digest/digest_body.php:69
 msgid "Go back"
 msgstr ""
 
-#: classes/handler/public.php:799
+#: classes/handler/public.php:800
 msgid "Sorry, login and email combination not found."
 msgstr ""
 
-#: classes/dlg.php:22
+#: classes/dlg.php:16
 msgid "If you have imported labels and/or filters, you might need to reload preferences to see your new data."
 msgstr ""
 
-#: classes/dlg.php:55
-#: classes/pref/users.php:360
-#: classes/pref/labels.php:272
-#: classes/pref/filters.php:234
-#: classes/pref/filters.php:282
-#: classes/pref/filters.php:597
-#: classes/pref/filters.php:676
-#: classes/pref/filters.php:703
-#: classes/pref/feeds.php:1262
-#: classes/pref/feeds.php:1532
-#: classes/pref/feeds.php:1602
-#: plugins/instances/init.php:287
-#, fuzzy
-msgid "Select"
-msgstr "Selecione:"
-
-#: classes/dlg.php:58
-#: classes/feeds.php:92
-#: classes/pref/users.php:363
-#: classes/pref/labels.php:275
-#: classes/pref/filters.php:237
-#: classes/pref/filters.php:285
-#: classes/pref/filters.php:600
-#: classes/pref/filters.php:679
-#: classes/pref/filters.php:706
-#: classes/pref/feeds.php:1265
-#: classes/pref/feeds.php:1535
-#: classes/pref/feeds.php:1605
-#: plugins/instances/init.php:290
-msgid "All"
-msgstr "Todos"
-
-#: classes/dlg.php:60
-#: classes/feeds.php:95
-#: classes/pref/users.php:365
-#: classes/pref/labels.php:277
-#: classes/pref/filters.php:239
-#: classes/pref/filters.php:287
-#: classes/pref/filters.php:602
-#: classes/pref/filters.php:681
-#: classes/pref/filters.php:708
-#: classes/pref/feeds.php:1267
-#: classes/pref/feeds.php:1537
-#: classes/pref/feeds.php:1607
-#: plugins/instances/init.php:292
-msgid "None"
-msgstr "Nenhum"
-
-#: classes/dlg.php:69
-#, fuzzy
-msgid "Create profile"
-msgstr "Criar um usuário"
-
-#: classes/dlg.php:92
-#: classes/dlg.php:122
-msgid "(active)"
-msgstr ""
-
-#: classes/dlg.php:156
-#, fuzzy
-msgid "Remove selected profiles"
-msgstr "Remover os filtros selecionados?"
-
-#: classes/dlg.php:158
-#, fuzzy
-msgid "Activate profile"
-msgstr "Remover os filtros selecionados?"
-
-#: classes/dlg.php:168
-msgid "Public OPML URL"
-msgstr ""
-
-#: classes/dlg.php:173
+#: classes/dlg.php:48
 msgid "Your Public OPML URL is:"
 msgstr ""
 
-#: classes/dlg.php:182
-#: classes/dlg.php:569
+#: classes/dlg.php:57
+#: classes/dlg.php:214
 #, fuzzy
 msgid "Generate new URL"
 msgstr "Gerar um outro endereço"
 
-#: classes/dlg.php:194
-msgid "Notice"
-msgstr ""
-
-#: classes/dlg.php:200
+#: classes/dlg.php:71
 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 ""
 
-#: classes/dlg.php:204
-#: classes/dlg.php:213
+#: classes/dlg.php:75
+#: classes/dlg.php:84
 msgid "Last update:"
 msgstr ""
 
-#: classes/dlg.php:209
+#: classes/dlg.php:80
 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 ""
 
-#: classes/dlg.php:234
-#: classes/dlg.php:242
-#, fuzzy
-msgid "Feed or site URL"
-msgstr "Feed"
-
-#: classes/dlg.php:248
-#: classes/dlg.php:711
-#: classes/pref/feeds.php:559
-#: classes/pref/feeds.php:781
-#, fuzzy
-msgid "Place in category:"
-msgstr "Salvando categoria..."
-
-#: classes/dlg.php:256
-#, fuzzy
-msgid "Available feeds"
-msgstr "Todos os feeds"
-
-#: classes/dlg.php:268
-#: classes/pref/users.php:155
-#: classes/pref/feeds.php:589
-#: classes/pref/feeds.php:817
-msgid "Authentication"
-msgstr ""
-
-#: classes/dlg.php:272
-#: classes/dlg.php:725
-#: classes/pref/users.php:420
-#: classes/pref/feeds.php:595
-#: classes/pref/feeds.php:821
-msgid "Login"
-msgstr "Login"
-
-#: classes/dlg.php:275
-#: classes/dlg.php:728
-#: classes/pref/prefs.php:202
-#: classes/pref/feeds.php:601
-#: classes/pref/feeds.php:827
-#, fuzzy
-msgid "Password"
-msgstr "Senha:"
-
-#: classes/dlg.php:285
-msgid "This feed requires authentication."
-msgstr "Este feed requer autenticação."
-
-#: classes/dlg.php:290
-#: classes/dlg.php:346
-#: classes/dlg.php:746
-msgid "Subscribe"
-msgstr ""
-
-#: classes/dlg.php:293
-#, fuzzy
-msgid "More feeds"
-msgstr "Removendo o Feed..."
-
-#: classes/dlg.php:316
-#: classes/dlg.php:407
-#: classes/pref/users.php:350
-#: classes/pref/filters.php:593
-#: classes/pref/feeds.php:1258
-#: js/tt-rss.js:170
-msgid "Search"
-msgstr ""
-
-#: classes/dlg.php:320
-#, fuzzy
-msgid "Popular feeds"
-msgstr "Todos os feeds"
-
-#: classes/dlg.php:321
-#, fuzzy
-msgid "Feed archive"
-msgstr "Ações do Feed:"
-
-#: classes/dlg.php:324
-#, fuzzy
-msgid "limit:"
-msgstr "Limite:"
-
-#: classes/dlg.php:347
-#: classes/pref/users.php:376
-#: classes/pref/labels.php:284
-#: classes/pref/filters.php:353
-#: classes/pref/filters.php:615
-#: classes/pref/feeds.php:706
-#: plugins/instances/init.php:297
-msgid "Remove"
-msgstr "Remover"
-
-#: classes/dlg.php:358
-msgid "Look for"
-msgstr ""
-
-#: classes/dlg.php:366
-msgid "Limit search to:"
-msgstr ""
-
-#: classes/dlg.php:382
-msgid "This feed"
-msgstr ""
-
-#: classes/dlg.php:414
-msgid "Tags for this article (separated by commas):"
-msgstr ""
-
-#: classes/dlg.php:437
-#: classes/dlg.php:646
-#: classes/pref/users.php:192
-#: classes/pref/labels.php:79
-#: classes/pref/filters.php:360
-#: classes/pref/feeds.php:732
-#: classes/pref/feeds.php:880
-#: plugins/nsfw/init.php:86
-#: plugins/note/init.php:53
-#: plugins/instances/init.php:248
-msgid "Save"
-msgstr "Salvar"
-
-#: classes/dlg.php:445
-#, fuzzy
-msgid "Tag Cloud"
-msgstr "Núvem de tags"
-
-#: classes/dlg.php:514
-msgid "Select item(s) by tags"
-msgstr ""
-
-#: classes/dlg.php:517
+#: classes/dlg.php:166
 msgid "Match:"
 msgstr ""
 
-#: classes/dlg.php:519
+#: classes/dlg.php:168
 msgid "Any"
 msgstr ""
 
-#: classes/dlg.php:522
+#: classes/dlg.php:171
 #, fuzzy
 msgid "All tags."
 msgstr "sem tags"
 
-#: classes/dlg.php:524
+#: classes/dlg.php:173
 msgid "Which Tags?"
 msgstr ""
 
-#: classes/dlg.php:537
+#: classes/dlg.php:186
 msgid "Display entries"
 msgstr ""
 
-#: classes/dlg.php:549
-#: classes/feeds.php:138
-#, fuzzy
-msgid "View as RSS"
-msgstr "Editar Tags"
-
-#: classes/dlg.php:560
+#: classes/dlg.php:205
 msgid "You can view this feed as RSS using the following URL:"
 msgstr ""
 
-#: classes/dlg.php:589
+#: classes/dlg.php:233
 #: plugins/updater/init.php:327
 #, php-format
 msgid "New version of Tiny Tiny RSS is available (%s)."
 msgstr ""
 
-#: classes/dlg.php:597
+#: classes/dlg.php:241
 msgid "You can update using built-in updater in the Preferences or by using update.php"
 msgstr ""
 
-#: classes/dlg.php:601
+#: classes/dlg.php:245
 #: plugins/updater/init.php:331
 msgid "See the release notes"
 msgstr ""
 
-#: classes/dlg.php:603
+#: classes/dlg.php:247
 msgid "Download"
 msgstr ""
 
-#: classes/dlg.php:611
+#: classes/dlg.php:255
 msgid "Error receiving version information or no new version available."
 msgstr ""
 
-#: classes/dlg.php:631
-#, 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 ""
-
-#: classes/dlg.php:657
-#: plugins/instances/init.php:207
-msgid "Instance"
-msgstr ""
-
-#: classes/dlg.php:666
-#: plugins/instances/init.php:218
-#: plugins/instances/init.php:315
-msgid "Instance URL"
-msgstr ""
-
-#: classes/dlg.php:676
-#: plugins/instances/init.php:229
-#, fuzzy
-msgid "Access key:"
-msgstr "Nível de acesso:"
-
-#: classes/dlg.php:679
-#: plugins/instances/init.php:232
-#: plugins/instances/init.php:316
-#, fuzzy
-msgid "Access key"
-msgstr "Nível de acesso:"
-
-#: classes/dlg.php:683
-#: plugins/instances/init.php:236
-msgid "Use one access key for both linked instances."
-msgstr ""
-
-#: classes/dlg.php:691
-#: plugins/instances/init.php:244
-#, fuzzy
-msgid "Generate new key"
-msgstr "Gerar um outro endereço"
-
-#: classes/dlg.php:695
-#, fuzzy
-msgid "Create link"
-msgstr "Criar"
-
-#: classes/dlg.php:708
-msgid "Add one valid RSS feed per line (no feed detection is done)"
-msgstr ""
-
-#: classes/dlg.php:717
-msgid "Feeds to subscribe, One per line"
-msgstr ""
-
-#: classes/dlg.php:739
-#, fuzzy
-msgid "Feeds require authentication."
-msgstr "Este feed requer autenticação."
-
 #: classes/feeds.php:68
 msgid "Visit the website"
 msgstr ""
@@ -1799,15 +1546,54 @@ msgstr ""
 msgid "View as RSS feed"
 msgstr "Todos os feeds"
 
+#: classes/feeds.php:84
+#: classes/feeds.php:138
+#: classes/pref/feeds.php:1440
+#, fuzzy
+msgid "View as RSS"
+msgstr "Editar Tags"
+
 #: classes/feeds.php:91
 msgid "Select:"
 msgstr "Selecione:"
 
+#: classes/feeds.php:92
+#: classes/pref/users.php:363
+#: classes/pref/labels.php:275
+#: classes/pref/filters.php:282
+#: classes/pref/filters.php:330
+#: classes/pref/filters.php:648
+#: classes/pref/filters.php:737
+#: classes/pref/filters.php:764
+#: classes/pref/prefs.php:908
+#: classes/pref/feeds.php:1266
+#: classes/pref/feeds.php:1536
+#: classes/pref/feeds.php:1606
+#: plugins/instances/init.php:290
+msgid "All"
+msgstr "Todos"
+
 #: classes/feeds.php:94
 #, fuzzy
 msgid "Invert"
 msgstr "(Inverso)"
 
+#: classes/feeds.php:95
+#: classes/pref/users.php:365
+#: classes/pref/labels.php:277
+#: classes/pref/filters.php:284
+#: classes/pref/filters.php:332
+#: classes/pref/filters.php:650
+#: classes/pref/filters.php:739
+#: classes/pref/filters.php:766
+#: classes/pref/prefs.php:910
+#: classes/pref/feeds.php:1268
+#: classes/pref/feeds.php:1538
+#: classes/pref/feeds.php:1608
+#: plugins/instances/init.php:292
+msgid "None"
+msgstr "Nenhum"
+
 #: classes/feeds.php:101
 #, fuzzy
 msgid "More..."
@@ -1838,10 +1624,10 @@ msgid "Move back"
 msgstr ""
 
 #: classes/feeds.php:118
-#: classes/pref/filters.php:246
-#: classes/pref/filters.php:294
-#: classes/pref/filters.php:688
-#: classes/pref/filters.php:715
+#: classes/pref/filters.php:291
+#: classes/pref/filters.php:339
+#: classes/pref/filters.php:746
+#: classes/pref/filters.php:773
 #, fuzzy
 msgid "Delete"
 msgstr "Padrão"
@@ -1903,20 +1689,124 @@ msgid "No articles found to display."
 msgstr "Sem Feeds para exibir."
 
 #: classes/feeds.php:755
-#: classes/feeds.php:920
+#: classes/feeds.php:919
 #, fuzzy, php-format
 msgid "Feeds last updated at %s"
 msgstr "Atualizar"
 
 #: classes/feeds.php:765
-#: classes/feeds.php:930
+#: classes/feeds.php:929
 msgid "Some feeds have update errors (click for details)"
 msgstr "Alguns feeds estão com erros (clique aqui para detalhes)"
 
-#: classes/feeds.php:910
+#: classes/feeds.php:909
 msgid "No feed selected."
 msgstr "Nenhum feed foi selecionado."
 
+#: classes/feeds.php:962
+#: classes/feeds.php:970
+#, fuzzy
+msgid "Feed or site URL"
+msgstr "Feed"
+
+#: classes/feeds.php:976
+#: classes/pref/feeds.php:560
+#: classes/pref/feeds.php:782
+#: classes/pref/feeds.php:1761
+#, fuzzy
+msgid "Place in category:"
+msgstr "Salvando categoria..."
+
+#: classes/feeds.php:984
+#, fuzzy
+msgid "Available feeds"
+msgstr "Todos os feeds"
+
+#: classes/feeds.php:996
+#: classes/pref/users.php:155
+#: classes/pref/feeds.php:590
+#: classes/pref/feeds.php:818
+msgid "Authentication"
+msgstr ""
+
+#: classes/feeds.php:1000
+#: classes/pref/users.php:420
+#: classes/pref/feeds.php:596
+#: classes/pref/feeds.php:822
+#: classes/pref/feeds.php:1775
+msgid "Login"
+msgstr "Login"
+
+#: classes/feeds.php:1003
+#: classes/pref/prefs.php:202
+#: classes/pref/feeds.php:602
+#: classes/pref/feeds.php:828
+#: classes/pref/feeds.php:1778
+#, fuzzy
+msgid "Password"
+msgstr "Senha:"
+
+#: classes/feeds.php:1013
+msgid "This feed requires authentication."
+msgstr "Este feed requer autenticação."
+
+#: classes/feeds.php:1018
+#: classes/feeds.php:1074
+#: classes/pref/feeds.php:1796
+msgid "Subscribe"
+msgstr ""
+
+#: classes/feeds.php:1021
+#, fuzzy
+msgid "More feeds"
+msgstr "Removendo o Feed..."
+
+#: classes/feeds.php:1044
+#: classes/feeds.php:1135
+#: classes/pref/users.php:350
+#: classes/pref/filters.php:641
+#: classes/pref/feeds.php:1259
+#: js/tt-rss.js:170
+msgid "Search"
+msgstr ""
+
+#: classes/feeds.php:1048
+#, fuzzy
+msgid "Popular feeds"
+msgstr "Todos os feeds"
+
+#: classes/feeds.php:1049
+#, fuzzy
+msgid "Feed archive"
+msgstr "Ações do Feed:"
+
+#: classes/feeds.php:1052
+#, fuzzy
+msgid "limit:"
+msgstr "Limite:"
+
+#: classes/feeds.php:1075
+#: classes/pref/users.php:376
+#: classes/pref/labels.php:284
+#: classes/pref/filters.php:398
+#: classes/pref/filters.php:667
+#: classes/pref/feeds.php:707
+#: plugins/instances/init.php:297
+msgid "Remove"
+msgstr "Remover"
+
+#: classes/feeds.php:1086
+msgid "Look for"
+msgstr ""
+
+#: classes/feeds.php:1094
+msgid "Limit search to:"
+msgstr ""
+
+#: classes/feeds.php:1110
+msgid "This feed"
+msgstr ""
+
 #: classes/backend.php:33
 msgid "Other interface tips are available in the Tiny Tiny RSS wiki."
 msgstr ""
@@ -1992,7 +1882,7 @@ msgid "Error: please upload OPML file."
 msgstr ""
 
 #: classes/opml.php:475
-#: plugins/googlereaderimport/init.php:157
+#: plugins/googlereaderimport/init.php:161
 msgid "Error while parsing document."
 msgstr ""
 
@@ -2048,8 +1938,8 @@ msgid "Change password to"
 msgstr "Mudar senha"
 
 #: classes/pref/users.php:177
-#: classes/pref/feeds.php:609
-#: classes/pref/feeds.php:833
+#: classes/pref/feeds.php:610
+#: classes/pref/feeds.php:834
 #, fuzzy
 msgid "Options"
 msgstr "Opções:"
@@ -2092,6 +1982,22 @@ msgstr ""
 msgid "[tt-rss] Password change notification"
 msgstr ""
 
+#: classes/pref/users.php:360
+#: classes/pref/labels.php:272
+#: classes/pref/filters.php:279
+#: classes/pref/filters.php:327
+#: classes/pref/filters.php:645
+#: classes/pref/filters.php:734
+#: classes/pref/filters.php:761
+#: classes/pref/prefs.php:905
+#: classes/pref/feeds.php:1263
+#: classes/pref/feeds.php:1533
+#: classes/pref/feeds.php:1603
+#: plugins/instances/init.php:287
+#, fuzzy
+msgid "Select"
+msgstr "Selecione:"
+
 #: classes/pref/users.php:368
 msgid "Create user"
 msgstr "Criar um usuário"
@@ -2102,7 +2008,7 @@ msgid "Details"
 msgstr "Diariamente"
 
 #: classes/pref/users.php:374
-#: classes/pref/filters.php:612
+#: classes/pref/filters.php:660
 #: plugins/instances/init.php:296
 msgid "Edit"
 msgstr "Editar"
@@ -2132,6 +2038,8 @@ msgid "No matching users found."
 msgstr "Sem Feeds para exibir."
 
 #: classes/pref/labels.php:22
+#: classes/pref/filters.php:268
+#: classes/pref/filters.php:725
 #, fuzzy
 msgid "Caption"
 msgstr "Opções:"
@@ -2159,131 +2067,143 @@ msgstr "Não pode criar o usuário <b>%s</b>"
 msgid "Clear colors"
 msgstr "Favoritos"
 
-#: classes/pref/filters.php:60
+#: classes/pref/filters.php:96
 #, fuzzy
 msgid "Articles matching this filter:"
 msgstr "Sem Feeds para exibir."
 
-#: classes/pref/filters.php:97
+#: classes/pref/filters.php:133
 #, fuzzy
 msgid "No recent articles matching this filter have been found."
 msgstr "Sem Feeds para exibir."
 
-#: classes/pref/filters.php:101
+#: classes/pref/filters.php:137
 msgid "Complex expressions might not give results while testing due to issues with database server regexp implementation."
 msgstr ""
 
-#: classes/pref/filters.php:229
-#: classes/pref/filters.php:671
-#: classes/pref/filters.php:786
+#: classes/pref/filters.php:274
+#: classes/pref/filters.php:729
+#: classes/pref/filters.php:844
 msgid "Match"
 msgstr ""
 
-#: classes/pref/filters.php:243
-#: classes/pref/filters.php:291
-#: classes/pref/filters.php:685
-#: classes/pref/filters.php:712
+#: classes/pref/filters.php:288
+#: classes/pref/filters.php:336
+#: classes/pref/filters.php:743
+#: classes/pref/filters.php:770
 msgid "Add"
 msgstr ""
 
-#: classes/pref/filters.php:277
-#: classes/pref/filters.php:698
+#: classes/pref/filters.php:322
+#: classes/pref/filters.php:756
 #, fuzzy
 msgid "Apply actions"
 msgstr "Ações do Feed:"
 
-#: classes/pref/filters.php:327
-#: classes/pref/filters.php:727
+#: classes/pref/filters.php:372
+#: classes/pref/filters.php:785
 msgid "Enabled"
 msgstr "Ativado"
 
-#: classes/pref/filters.php:336
-#: classes/pref/filters.php:730
+#: classes/pref/filters.php:381
+#: classes/pref/filters.php:788
 #, fuzzy
 msgid "Match any rule"
 msgstr "Favoritos"
 
-#: classes/pref/filters.php:345
-#: classes/pref/filters.php:733
+#: classes/pref/filters.php:390
+#: classes/pref/filters.php:791
 #, fuzzy
 msgid "Inverse matching"
 msgstr "Favoritos"
 
-#: classes/pref/filters.php:357
-#: classes/pref/filters.php:740
+#: classes/pref/filters.php:402
+#: classes/pref/filters.php:798
 msgid "Test"
 msgstr "Teste"
 
-#: classes/pref/filters.php:390
+#: classes/pref/filters.php:435
 #, fuzzy
 msgid "(inverse)"
 msgstr "(Inverso)"
 
-#: classes/pref/filters.php:389
+#: classes/pref/filters.php:434
 #, php-format
 msgid "%s on %s in %s %s"
 msgstr ""
 
-#: classes/pref/filters.php:609
+#: classes/pref/filters.php:657
 msgid "Combine"
 msgstr ""
 
-#: classes/pref/filters.php:619
-#: classes/pref/feeds.php:1317
+#: classes/pref/filters.php:663
+#: classes/pref/feeds.php:1279
+#: classes/pref/feeds.php:1293
+#, fuzzy
+msgid "Reset sort order"
+msgstr "Remover as categorias selecionadas?"
+
+#: classes/pref/filters.php:671
+#: classes/pref/feeds.php:1318
 #, fuzzy
 msgid "Rescore articles"
 msgstr "Favoritos"
 
-#: classes/pref/filters.php:743
+#: classes/pref/filters.php:801
 msgid "Create"
 msgstr "Criar"
 
-#: classes/pref/filters.php:798
+#: classes/pref/filters.php:856
 msgid "Inverse regular expression matching"
 msgstr ""
 
-#: classes/pref/filters.php:800
+#: classes/pref/filters.php:858
 #, fuzzy
 msgid "on field"
 msgstr "Feed"
 
-#: classes/pref/filters.php:806
-#: js/PrefFilterTree.js:29
+#: classes/pref/filters.php:864
+#: js/PrefFilterTree.js:45
 #: plugins/digest/digest.js:242
 #, fuzzy
 msgid "in"
 msgstr "Link"
 
-#: classes/pref/filters.php:819
+#: classes/pref/filters.php:877
 #, fuzzy
 msgid "Save rule"
 msgstr "Salvar"
 
-#: classes/pref/filters.php:819
-#: js/functions.js:1069
+#: classes/pref/filters.php:877
+#: js/functions.js:1063
 msgid "Add rule"
 msgstr ""
 
-#: classes/pref/filters.php:842
+#: classes/pref/filters.php:900
 #, fuzzy
 msgid "Perform Action"
 msgstr "Ação"
 
-#: classes/pref/filters.php:868
+#: classes/pref/filters.php:926
 msgid "with parameters:"
 msgstr ""
 
-#: classes/pref/filters.php:886
+#: classes/pref/filters.php:944
 #, fuzzy
 msgid "Save action"
 msgstr "Ações do Feed:"
 
-#: classes/pref/filters.php:886
-#: js/functions.js:1095
+#: classes/pref/filters.php:944
+#: js/functions.js:1089
 #, fuzzy
 msgid "Add action"
 msgstr "Ações do Feed:"
 
+#: classes/pref/filters.php:967
+#, fuzzy
+msgid "[No caption]"
+msgstr "Opções:"
+
 #: classes/pref/prefs.php:17
 msgid "Old password cannot be blank."
 msgstr "A senha antiga não pode ser vazia."
@@ -2504,264 +2424,294 @@ msgstr "Editar categorias"
 msgid "Incorrect password"
 msgstr "Senha nova"
 
-#: classes/pref/feeds.php:12
+#: classes/pref/prefs.php:879
+#, 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 ""
+
+#: classes/pref/prefs.php:919
+#, fuzzy
+msgid "Create profile"
+msgstr "Criar um usuário"
+
+#: classes/pref/prefs.php:942
+#: classes/pref/prefs.php:972
+msgid "(active)"
+msgstr ""
+
+#: classes/pref/prefs.php:1006
+#, fuzzy
+msgid "Remove selected profiles"
+msgstr "Remover os filtros selecionados?"
+
+#: classes/pref/prefs.php:1008
+#, fuzzy
+msgid "Activate profile"
+msgstr "Remover os filtros selecionados?"
+
+#: classes/pref/feeds.php:13
 #, fuzzy
 msgid "Check to enable field"
 msgstr "Favoritos"
 
-#: classes/pref/feeds.php:60
-#: classes/pref/feeds.php:208
-#: classes/pref/feeds.php:250
-#: classes/pref/feeds.php:256
-#: classes/pref/feeds.php:281
-#, fuzzy, php-format
-msgid "(%d feed)"
-msgid_plural "(%d feeds)"
-msgstr[0] "Editar"
-msgstr[1] "Editar"
-
-#: classes/pref/feeds.php:526
+#: classes/pref/feeds.php:527
 #, fuzzy
 msgid "Feed Title"
 msgstr "Título"
 
-#: classes/pref/feeds.php:582
-#: classes/pref/feeds.php:808
+#: classes/pref/feeds.php:568
+#: classes/pref/feeds.php:793
+msgid "Update"
+msgstr "Atualizar"
+
+#: classes/pref/feeds.php:583
+#: classes/pref/feeds.php:809
 #, fuzzy
 msgid "Article purging:"
 msgstr "Feed não encontrado."
 
-#: classes/pref/feeds.php:605
+#: classes/pref/feeds.php:606
 msgid "<b>Hint:</b> you need to fill in your login information if your feed requires authentication, except for Twitter feeds."
 msgstr ""
 
-#: classes/pref/feeds.php:621
-#: classes/pref/feeds.php:837
+#: classes/pref/feeds.php:622
+#: classes/pref/feeds.php:838
 #, fuzzy
 msgid "Hide from Popular feeds"
 msgstr "Todos os feeds"
 
-#: classes/pref/feeds.php:633
-#: classes/pref/feeds.php:843
+#: classes/pref/feeds.php:634
+#: classes/pref/feeds.php:844
 #, fuzzy
 msgid "Include in e-mail digest"
 msgstr "Marcando todos os feeds como lidos..."
 
-#: classes/pref/feeds.php:646
-#: classes/pref/feeds.php:849
+#: classes/pref/feeds.php:647
+#: classes/pref/feeds.php:850
 msgid "Always display image attachments"
 msgstr ""
 
-#: classes/pref/feeds.php:659
-#: classes/pref/feeds.php:857
+#: classes/pref/feeds.php:660
+#: classes/pref/feeds.php:858
 msgid "Do not embed images"
 msgstr ""
 
-#: classes/pref/feeds.php:672
-#: classes/pref/feeds.php:865
+#: classes/pref/feeds.php:673
+#: classes/pref/feeds.php:866
 msgid "Cache images locally"
 msgstr ""
 
-#: classes/pref/feeds.php:684
-#: classes/pref/feeds.php:871
+#: classes/pref/feeds.php:685
+#: classes/pref/feeds.php:872
 #, fuzzy
 msgid "Mark updated articles as unread"
 msgstr "Marcando todos os feeds como lidos..."
 
-#: classes/pref/feeds.php:690
+#: classes/pref/feeds.php:691
 #, fuzzy
 msgid "Icon"
 msgstr "Ação"
 
-#: classes/pref/feeds.php:704
+#: classes/pref/feeds.php:705
 msgid "Replace"
 msgstr ""
 
-#: classes/pref/feeds.php:723
+#: classes/pref/feeds.php:724
 #, fuzzy
 msgid "Resubscribe to push updates"
 msgstr "Removendo o Feed..."
 
-#: classes/pref/feeds.php:730
+#: classes/pref/feeds.php:731
 msgid "Resets PubSubHubbub subscription status for push-enabled feeds."
 msgstr ""
 
-#: classes/pref/feeds.php:1111
-#: classes/pref/feeds.php:1164
+#: classes/pref/feeds.php:1112
+#: classes/pref/feeds.php:1165
 msgid "All done."
 msgstr ""
 
-#: classes/pref/feeds.php:1219
+#: classes/pref/feeds.php:1220
 #, fuzzy
 msgid "Feeds with errors"
 msgstr "Editor de Feed"
 
-#: classes/pref/feeds.php:1239
+#: classes/pref/feeds.php:1240
 #, fuzzy
 msgid "Inactive feeds"
 msgstr "Editar"
 
-#: classes/pref/feeds.php:1276
+#: classes/pref/feeds.php:1277
 #, fuzzy
 msgid "Edit selected feeds"
 msgstr "Removendo filtros selecionados…"
 
-#: classes/pref/feeds.php:1278
-#: classes/pref/feeds.php:1292
-#, fuzzy
-msgid "Reset sort order"
-msgstr "Remover as categorias selecionadas?"
-
-#: classes/pref/feeds.php:1280
-#: js/prefs.js:1764
+#: classes/pref/feeds.php:1281
+#: js/prefs.js:1770
 msgid "Batch subscribe"
 msgstr ""
 
-#: classes/pref/feeds.php:1285
+#: classes/pref/feeds.php:1286
 #, fuzzy
 msgid "Categories"
 msgstr "Categoria:"
 
-#: classes/pref/feeds.php:1288
+#: classes/pref/feeds.php:1289
 #, fuzzy
 msgid "Add category"
 msgstr "Adicionando o Feed..."
 
-#: classes/pref/feeds.php:1290
+#: classes/pref/feeds.php:1291
 #, fuzzy
 msgid "(Un)hide empty categories"
 msgstr "Editar categorias"
 
-#: classes/pref/feeds.php:1294
+#: classes/pref/feeds.php:1295
 #, fuzzy
 msgid "Remove selected"
 msgstr "Remover os filtros selecionados?"
 
-#: classes/pref/feeds.php:1308
+#: classes/pref/feeds.php:1309
 #, fuzzy
 msgid "More actions..."
 msgstr "Ações..."
 
-#: classes/pref/feeds.php:1312
+#: classes/pref/feeds.php:1313
 msgid "Manual purge"
 msgstr ""
 
-#: classes/pref/feeds.php:1316
+#: classes/pref/feeds.php:1317
 #, fuzzy
 msgid "Clear feed data"
 msgstr "Salvando o Feed..."
 
-#: classes/pref/feeds.php:1367
+#: classes/pref/feeds.php:1368
 msgid "OPML"
 msgstr "OPML"
 
-#: classes/pref/feeds.php:1369
+#: classes/pref/feeds.php:1370
 msgid "Using OPML you can export and import your feeds, filters, labels and Tiny Tiny RSS settings."
 msgstr ""
 
-#: classes/pref/feeds.php:1371
+#: classes/pref/feeds.php:1372
 msgid "Only main settings profile can be migrated using OPML."
 msgstr ""
 
-#: classes/pref/feeds.php:1384
+#: classes/pref/feeds.php:1385
 #, fuzzy
 msgid "Import my OPML"
 msgstr "Importando OPML (usando a extensão DOMXML)..."
 
-#: classes/pref/feeds.php:1388
+#: classes/pref/feeds.php:1389
 msgid "Filename:"
 msgstr ""
 
-#: classes/pref/feeds.php:1390
+#: classes/pref/feeds.php:1391
 msgid "Include settings"
 msgstr ""
 
-#: classes/pref/feeds.php:1394
+#: classes/pref/feeds.php:1395
 #, fuzzy
 msgid "Export OPML"
 msgstr "Exportar OPML"
 
-#: classes/pref/feeds.php:1398
+#: classes/pref/feeds.php:1399
 msgid "Your OPML can be published publicly and can be subscribed by anyone who knows the URL below."
 msgstr ""
 
-#: classes/pref/feeds.php:1400
+#: classes/pref/feeds.php:1401
 msgid "Published OPML does not include your Tiny Tiny RSS settings, feeds that require authentication or feeds hidden from Popular feeds."
 msgstr ""
 
 #: classes/pref/feeds.php:1403
+msgid "Public OPML URL"
+msgstr ""
+
+#: classes/pref/feeds.php:1404
 msgid "Display published OPML URL"
 msgstr ""
 
-#: classes/pref/feeds.php:1413
+#: classes/pref/feeds.php:1414
 #, fuzzy
 msgid "Firefox integration"
 msgstr "Informações do Feed:"
 
-#: classes/pref/feeds.php:1415
+#: classes/pref/feeds.php:1416
 msgid "This Tiny Tiny RSS site can be used as a Firefox Feed Reader by clicking the link below."
 msgstr ""
 
-#: classes/pref/feeds.php:1422
+#: classes/pref/feeds.php:1423
 msgid "Click here to register this site as a feed reader."
 msgstr ""
 
-#: classes/pref/feeds.php:1430
+#: classes/pref/feeds.php:1431
 #, fuzzy
 msgid "Published & shared articles / Generated feeds"
 msgstr "Remover os filtros selecionados?"
 
-#: classes/pref/feeds.php:1432
+#: classes/pref/feeds.php:1433
 #, fuzzy
 msgid "Published articles and generated feeds"
 msgstr "Remover os filtros selecionados?"
 
-#: classes/pref/feeds.php:1434
+#: classes/pref/feeds.php:1435
 msgid "Published articles are exported as a public RSS feed and can be subscribed by anyone who knows the URL specified below."
 msgstr ""
 
-#: classes/pref/feeds.php:1440
+#: classes/pref/feeds.php:1441
 msgid "Display URL"
 msgstr ""
 
-#: classes/pref/feeds.php:1443
+#: classes/pref/feeds.php:1444
 msgid "Clear all generated URLs"
 msgstr ""
 
-#: classes/pref/feeds.php:1445
+#: classes/pref/feeds.php:1446
 #, fuzzy
 msgid "Articles shared by URL"
 msgstr "Favoritos"
 
-#: classes/pref/feeds.php:1447
+#: classes/pref/feeds.php:1448
 msgid "You can disable all articles shared by unique URLs here."
 msgstr ""
 
-#: classes/pref/feeds.php:1450
+#: classes/pref/feeds.php:1451
 #, fuzzy
 msgid "Unshare all articles"
 msgstr "Favoritos"
 
-#: classes/pref/feeds.php:1528
+#: classes/pref/feeds.php:1529
 msgid "These feeds have not been updated with new content for 3 months (oldest first):"
 msgstr ""
 
-#: classes/pref/feeds.php:1565
-#: classes/pref/feeds.php:1635
+#: classes/pref/feeds.php:1566
+#: classes/pref/feeds.php:1636
 #, fuzzy
 msgid "Click to edit feed"
 msgstr "Favoritos"
 
-#: classes/pref/feeds.php:1583
-#: classes/pref/feeds.php:1655
+#: classes/pref/feeds.php:1584
+#: classes/pref/feeds.php:1656
 #, fuzzy
 msgid "Unsubscribe from selected feeds"
 msgstr "Removendo o Feed..."
 
-#: classes/pref/feeds.php:1594
+#: classes/pref/feeds.php:1595
 msgid "These feeds have not been updated because of errors:"
 msgstr ""
 
+#: classes/pref/feeds.php:1758
+msgid "Add one valid RSS feed per line (no feed detection is done)"
+msgstr ""
+
+#: classes/pref/feeds.php:1767
+msgid "Feeds to subscribe, One per line"
+msgstr ""
+
+#: classes/pref/feeds.php:1789
+#, fuzzy
+msgid "Feeds require authentication."
+msgstr "Este feed requer autenticação."
+
 #: plugins/digest/digest_body.php:59
 msgid "Your browser doesn't support Javascript, which is required for this application to function properly. Please check your browser settings."
 msgstr ""
@@ -3033,24 +2983,24 @@ msgstr "Marcar como favorito"
 msgid "No file uploaded."
 msgstr "Nenhum arquivo OPML para upload."
 
-#: plugins/googlereaderimport/init.php:149
+#: plugins/googlereaderimport/init.php:153
 #, php-format
 msgid "All done. %d out of %d articles imported."
 msgstr ""
 
-#: plugins/googlereaderimport/init.php:153
+#: plugins/googlereaderimport/init.php:157
 msgid "The document has incorrect format."
 msgstr ""
 
-#: plugins/googlereaderimport/init.php:322
+#: plugins/googlereaderimport/init.php:326
 msgid "Import starred or shared items from Google Reader"
 msgstr ""
 
-#: plugins/googlereaderimport/init.php:326
+#: plugins/googlereaderimport/init.php:330
 msgid "Paste your starred.json or shared.json into the form below."
 msgstr ""
 
-#: plugins/googlereaderimport/init.php:340
+#: plugins/googlereaderimport/init.php:344
 msgid "Import my Starred items"
 msgstr ""
 
@@ -3059,6 +3009,41 @@ msgstr ""
 msgid "Linked"
 msgstr "Link"
 
+#: plugins/instances/init.php:207
+#: plugins/instances/init.php:399
+msgid "Instance"
+msgstr ""
+
+#: plugins/instances/init.php:218
+#: plugins/instances/init.php:315
+#: plugins/instances/init.php:408
+msgid "Instance URL"
+msgstr ""
+
+#: plugins/instances/init.php:229
+#: plugins/instances/init.php:418
+#, fuzzy
+msgid "Access key:"
+msgstr "Nível de acesso:"
+
+#: plugins/instances/init.php:232
+#: plugins/instances/init.php:316
+#: plugins/instances/init.php:421
+#, fuzzy
+msgid "Access key"
+msgstr "Nível de acesso:"
+
+#: plugins/instances/init.php:236
+#: plugins/instances/init.php:425
+msgid "Use one access key for both linked instances."
+msgstr ""
+
+#: plugins/instances/init.php:244
+#: plugins/instances/init.php:433
+#, fuzzy
+msgid "Generate new key"
+msgstr "Gerar um outro endereço"
+
 #: plugins/instances/init.php:295
 #, fuzzy
 msgid "Link instance"
@@ -3081,6 +3066,11 @@ msgstr ""
 msgid "Stored feeds"
 msgstr "Removendo o Feed..."
 
+#: plugins/instances/init.php:437
+#, fuzzy
+msgid "Create link"
+msgstr "Criar"
+
 #: plugins/share/init.php:27
 #, fuzzy
 msgid "Share by URL"
@@ -3145,189 +3135,193 @@ msgstr ""
 msgid "close"
 msgstr ""
 
-#: js/functions.js:627
+#: js/functions.js:621
 #, fuzzy
 msgid "Date syntax appears to be correct:"
 msgstr "Senha antiga incorreta"
 
-#: js/functions.js:630
+#: js/functions.js:624
 #, fuzzy
 msgid "Date syntax is incorrect."
 msgstr "Senha antiga incorreta"
 
-#: js/functions.js:724
+#: js/functions.js:636
+msgid "Error explained"
+msgstr ""
+
+#: js/functions.js:718
 msgid "Upload complete."
 msgstr ""
 
-#: js/functions.js:748
+#: js/functions.js:742
 #, fuzzy
 msgid "Remove stored feed icon?"
 msgstr "Remover as categorias selecionadas?"
 
-#: js/functions.js:753
+#: js/functions.js:747
 #, fuzzy
 msgid "Removing feed icon..."
 msgstr "Removendo o Feed..."
 
-#: js/functions.js:758
+#: js/functions.js:752
 #, fuzzy
 msgid "Feed icon removed."
 msgstr "Feed não encontrado."
 
-#: js/functions.js:780
+#: js/functions.js:774
 #, fuzzy
 msgid "Please select an image file to upload."
 msgstr "Por favor selecione  um feed."
 
-#: js/functions.js:782
+#: js/functions.js:776
 msgid "Upload new icon for this feed?"
 msgstr ""
 
-#: js/functions.js:783
+#: js/functions.js:777
 msgid "Uploading, please wait..."
 msgstr ""
 
-#: js/functions.js:799
+#: js/functions.js:793
 #, fuzzy
 msgid "Please enter label caption:"
 msgstr "Último Login"
 
-#: js/functions.js:804
+#: js/functions.js:798
 msgid "Can't create label: missing caption."
 msgstr ""
 
-#: js/functions.js:847
+#: js/functions.js:841
 #, fuzzy
 msgid "Subscribe to Feed"
 msgstr "Removendo o Feed..."
 
-#: js/functions.js:874
+#: js/functions.js:868
 #, fuzzy
 msgid "Subscribed to %s"
 msgstr "Removendo o Feed..."
 
-#: js/functions.js:879
+#: js/functions.js:873
 msgid "Specified URL seems to be invalid."
 msgstr ""
 
-#: js/functions.js:882
+#: js/functions.js:876
 msgid "Specified URL doesn't seem to contain any feeds."
 msgstr ""
 
-#: js/functions.js:935
+#: js/functions.js:929
 msgid "Couldn't download the specified URL: %s"
 msgstr ""
 
-#: js/functions.js:939
+#: js/functions.js:933
 msgid "You are already subscribed to this feed."
 msgstr ""
 
-#: js/functions.js:1069
+#: js/functions.js:1063
 #, fuzzy
 msgid "Edit rule"
 msgstr "Arquivo:"
 
-#: js/functions.js:1095
+#: js/functions.js:1089
 #, fuzzy
 msgid "Edit action"
 msgstr "Ações do Feed:"
 
-#: js/functions.js:1132
+#: js/functions.js:1126
 #, fuzzy
 msgid "Create Filter"
 msgstr "Criar um usuário"
 
-#: js/functions.js:1247
+#: js/functions.js:1241
 msgid "Reset subscription? Tiny Tiny RSS will try to subscribe to the notification hub again on next feed update."
 msgstr ""
 
-#: js/functions.js:1258
+#: js/functions.js:1252
 #, fuzzy
 msgid "Subscription reset."
 msgstr "Removendo o Feed..."
 
-#: js/functions.js:1268
+#: js/functions.js:1262
 #: js/tt-rss.js:619
 #, fuzzy
 msgid "Unsubscribe from %s?"
 msgstr "Removendo o Feed..."
 
-#: js/functions.js:1271
+#: js/functions.js:1265
 msgid "Removing feed..."
 msgstr "Removendo o Feed..."
 
-#: js/functions.js:1379
+#: js/functions.js:1373
 #, fuzzy
 msgid "Please enter category title:"
 msgstr "Salvando categoria..."
 
-#: js/functions.js:1410
+#: js/functions.js:1404
 msgid "Generate new syndication address for this feed?"
 msgstr ""
 
-#: js/functions.js:1414
-#: js/prefs.js:1234
+#: js/functions.js:1408
+#: js/prefs.js:1222
 #, fuzzy
 msgid "Trying to change address..."
 msgstr "Tentando alterar senha ..."
 
-#: js/functions.js:1601
+#: js/functions.js:1595
 #: js/tt-rss.js:396
 #: js/tt-rss.js:600
 msgid "You can't edit this kind of feed."
 msgstr ""
 
-#: js/functions.js:1616
+#: js/functions.js:1610
 #, fuzzy
 msgid "Edit Feed"
 msgstr "Editar"
 
-#: js/functions.js:1622
+#: js/functions.js:1616
 #: js/prefs.js:194
 #: js/prefs.js:749
 #, fuzzy
 msgid "Saving data..."
 msgstr "Salvando o Feed..."
 
-#: js/functions.js:1654
+#: js/functions.js:1648
 #, fuzzy
 msgid "More Feeds"
 msgstr "Removendo o Feed..."
 
-#: js/functions.js:1715
-#: js/functions.js:1825
+#: js/functions.js:1709
+#: js/functions.js:1819
 #: 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
+#: js/prefs.js:1198
+#: js/prefs.js:1343
 msgid "No feeds are selected."
 msgstr "Nenhum feed foi selecionado."
 
-#: js/functions.js:1757
+#: js/functions.js:1751
 msgid "Remove selected feeds from the archive? Feeds with stored articles will not be removed."
 msgstr ""
 
-#: js/functions.js:1796
+#: js/functions.js:1790
 #, fuzzy
 msgid "Feeds with update errors"
 msgstr "Atualizar"
 
-#: js/functions.js:1807
-#: js/prefs.js:1192
+#: js/functions.js:1801
+#: js/prefs.js:1180
 #, fuzzy
 msgid "Remove selected feeds?"
 msgstr "Remover os filtros selecionados?"
 
-#: js/functions.js:1810
-#: js/prefs.js:1195
+#: js/functions.js:1804
+#: js/prefs.js:1183
 #, fuzzy
 msgid "Removing selected feeds..."
 msgstr "Removendo filtros selecionados…"
 
-#: js/functions.js:1908
+#: js/functions.js:1902
 #, fuzzy
 msgid "Help"
 msgstr "Olá,"
@@ -3342,7 +3336,7 @@ msgstr "Editar categorias"
 msgid "Remove category"
 msgstr "Criar categoria"
 
-#: js/PrefFilterTree.js:32
+#: js/PrefFilterTree.js:48
 #, fuzzy
 msgid "Inverse"
 msgstr "(Inverso)"
@@ -3386,7 +3380,7 @@ msgid "Removing selected labels..."
 msgstr "Removendo filtros selecionados…"
 
 #: js/prefs.js:295
-#: js/prefs.js:1396
+#: js/prefs.js:1384
 #, fuzzy
 msgid "No labels are selected."
 msgstr "Nenhum filtro foi selecionado."
@@ -3501,165 +3495,165 @@ msgstr "Editor de Feed"
 msgid "Save changes to selected feeds?"
 msgstr "Remover os filtros selecionados?"
 
-#: js/prefs.js:797
+#: js/prefs.js:785
 #, fuzzy
 msgid "OPML Import"
 msgstr "Importar"
 
-#: js/prefs.js:824
+#: js/prefs.js:812
 #, fuzzy
 msgid "Please choose an OPML file first."
 msgstr "Por favor selecione somente um filtro."
 
-#: js/prefs.js:827
+#: js/prefs.js:815
 #: plugins/import_export/import_export.js:115
 #: plugins/googlereaderimport/init.js:45
 #, fuzzy
 msgid "Importing, please wait..."
 msgstr "Importando OPML (usando a extensão DOMXML)..."
 
-#: js/prefs.js:980
+#: js/prefs.js:968
 #, fuzzy
 msgid "Reset to defaults?"
 msgstr "Usar o padrão"
 
-#: js/prefs.js:1099
+#: js/prefs.js:1087
 msgid "Remove category %s? Any nested feeds would be placed into Uncategorized."
 msgstr ""
 
-#: js/prefs.js:1105
+#: js/prefs.js:1093
 #, fuzzy
 msgid "Removing category..."
 msgstr "Criar categoria"
 
-#: js/prefs.js:1126
+#: js/prefs.js:1114
 msgid "Remove selected categories?"
 msgstr "Remover as categorias selecionadas?"
 
-#: js/prefs.js:1129
+#: js/prefs.js:1117
 msgid "Removing selected categories..."
 msgstr "Removendo categorias selecionadas…"
 
-#: js/prefs.js:1142
+#: js/prefs.js:1130
 msgid "No categories are selected."
 msgstr "Nenhuma categoria foi selecionada."
 
-#: js/prefs.js:1150
+#: js/prefs.js:1138
 #, fuzzy
 msgid "Category title:"
 msgstr "Editor de Categoria"
 
-#: js/prefs.js:1154
+#: js/prefs.js:1142
 #, fuzzy
 msgid "Creating category..."
 msgstr "Criar um usuário"
 
-#: js/prefs.js:1181
+#: js/prefs.js:1169
 #, fuzzy
 msgid "Feeds without recent updates"
 msgstr "Atualizar"
 
-#: js/prefs.js:1230
+#: js/prefs.js:1218
 msgid "Replace current OPML publishing address with a new one?"
 msgstr ""
 
-#: js/prefs.js:1319
+#: js/prefs.js:1307
 #, fuzzy
 msgid "Clearing feed..."
 msgstr "Salvando o Feed..."
 
-#: js/prefs.js:1339
+#: js/prefs.js:1327
 #, fuzzy
 msgid "Rescore articles in selected feeds?"
 msgstr "Remover os filtros selecionados?"
 
-#: js/prefs.js:1342
+#: js/prefs.js:1330
 #, fuzzy
 msgid "Rescoring selected feeds..."
 msgstr "Removendo filtros selecionados…"
 
-#: js/prefs.js:1362
+#: js/prefs.js:1350
 msgid "Rescore all articles? This operation may take a lot of time."
 msgstr ""
 
-#: js/prefs.js:1365
+#: js/prefs.js:1353
 #, fuzzy
 msgid "Rescoring feeds..."
 msgstr "Removendo o Feed..."
 
-#: js/prefs.js:1382
+#: js/prefs.js:1370
 msgid "Reset selected labels to default colors?"
 msgstr ""
 
-#: js/prefs.js:1419
+#: js/prefs.js:1407
 msgid "Settings Profiles"
 msgstr ""
 
-#: js/prefs.js:1428
+#: js/prefs.js:1416
 msgid "Remove selected profiles? Active and default profiles will not be removed."
 msgstr ""
 
-#: js/prefs.js:1431
+#: js/prefs.js:1419
 #, fuzzy
 msgid "Removing selected profiles..."
 msgstr "Removendo filtros selecionados…"
 
-#: js/prefs.js:1446
+#: js/prefs.js:1434
 #, fuzzy
 msgid "No profiles are selected."
 msgstr "Nenhum filtro foi selecionado."
 
-#: js/prefs.js:1454
-#: js/prefs.js:1507
+#: js/prefs.js:1442
+#: js/prefs.js:1495
 #, fuzzy
 msgid "Activate selected profile?"
 msgstr "Remover os filtros selecionados?"
 
-#: js/prefs.js:1470
-#: js/prefs.js:1523
+#: js/prefs.js:1458
+#: js/prefs.js:1511
 #, fuzzy
 msgid "Please choose a profile to activate."
 msgstr "Por favor selecione somente um filtro."
 
-#: js/prefs.js:1475
+#: js/prefs.js:1463
 #, fuzzy
 msgid "Creating profile..."
 msgstr "Criar um usuário"
 
-#: js/prefs.js:1531
+#: js/prefs.js:1519
 msgid "This will invalidate all previously generated feed URLs. Continue?"
 msgstr ""
 
-#: js/prefs.js:1534
-#: js/prefs.js:1553
+#: js/prefs.js:1522
+#: js/prefs.js:1541
 #, fuzzy
 msgid "Clearing URLs..."
 msgstr "Salvando o Feed..."
 
-#: js/prefs.js:1541
+#: js/prefs.js:1529
 #, fuzzy
 msgid "Generated URLs cleared."
 msgstr "Gerar um outro endereço"
 
-#: js/prefs.js:1550
+#: js/prefs.js:1538
 msgid "This will invalidate all previously shared article URLs. Continue?"
 msgstr ""
 
-#: js/prefs.js:1560
+#: js/prefs.js:1548
 msgid "Shared URLs cleared."
 msgstr ""
 
-#: js/prefs.js:1648
+#: js/prefs.js:1654
 #, fuzzy
 msgid "Label Editor"
 msgstr "Editor de Feed"
 
-#: js/prefs.js:1770
+#: js/prefs.js:1776
 #, fuzzy
 msgid "Subscribing to feeds..."
 msgstr "Removendo o Feed..."
 
-#: js/prefs.js:1807
+#: js/prefs.js:1813
 msgid "Clear stored data for this plugin?"
 msgstr ""
 
@@ -3682,31 +3676,35 @@ msgstr "Por favor selecione somente um feed"
 msgid "Please enable embed_original plugin first."
 msgstr "Por favor selecione somente um feed"
 
+#: js/tt-rss.js:587
+msgid "Select item(s) by tags"
+msgstr ""
+
 #: js/tt-rss.js:608
 msgid "You can't unsubscribe from the category."
 msgstr ""
 
 #: js/tt-rss.js:613
-#: js/tt-rss.js:769
+#: js/tt-rss.js:765
 #, fuzzy
 msgid "Please select some feed first."
 msgstr "Por favor selecione somente um feed"
 
-#: js/tt-rss.js:764
+#: js/tt-rss.js:760
 msgid "You can't rescore this kind of feed."
 msgstr ""
 
-#: js/tt-rss.js:774
+#: js/tt-rss.js:770
 #, fuzzy
 msgid "Rescore articles in %s?"
 msgstr "Favoritos"
 
-#: js/tt-rss.js:777
+#: js/tt-rss.js:773
 #, fuzzy
 msgid "Rescoring articles..."
 msgstr "Favoritos"
 
-#: js/tt-rss.js:911
+#: js/tt-rss.js:907
 msgid "New version available!"
 msgstr ""
 
@@ -3741,128 +3739,123 @@ msgstr "Publicado"
 #: js/viewfeed.js:734
 #: js/viewfeed.js:797
 #: js/viewfeed.js:831
-#: js/viewfeed.js:968
-#: js/viewfeed.js:1011
-#: js/viewfeed.js:1064
-#: js/viewfeed.js:2108
+#: js/viewfeed.js:951
+#: js/viewfeed.js:994
+#: js/viewfeed.js:1047
+#: js/viewfeed.js:2096
 #: plugins/mailto/init.js:7
 #: plugins/mail/mail.js:7
 #, fuzzy
 msgid "No articles are selected."
 msgstr "Nenhum filtro foi selecionado."
 
-#: js/viewfeed.js:948
-#, fuzzy
-msgid "Mark all visible articles in %s as read?"
-msgstr "Marcando todos os feeds como lidos..."
-
-#: js/viewfeed.js:976
+#: js/viewfeed.js:959
 #, fuzzy
 msgid "Delete %d selected article in %s?"
 msgid_plural "Delete %d selected articles in %s?"
 msgstr[0] "Favoritos"
 msgstr[1] "Favoritos"
 
-#: js/viewfeed.js:978
+#: js/viewfeed.js:961
 #, fuzzy
 msgid "Delete %d selected article?"
 msgid_plural "Delete %d selected articles?"
 msgstr[0] "Remover os filtros selecionados?"
 msgstr[1] "Remover os filtros selecionados?"
 
-#: js/viewfeed.js:1020
+#: js/viewfeed.js:1003
 #, fuzzy
 msgid "Archive %d selected article in %s?"
 msgid_plural "Archive %d selected articles in %s?"
 msgstr[0] "Favoritos"
 msgstr[1] "Favoritos"
 
-#: js/viewfeed.js:1023
+#: js/viewfeed.js:1006
 #, fuzzy
 msgid "Move %d archived article back?"
 msgid_plural "Move %d archived articles back?"
 msgstr[0] "Favoritos"
 msgstr[1] "Favoritos"
 
-#: js/viewfeed.js:1025
+#: js/viewfeed.js:1008
 msgid "Please note that unstarred articles might get purged on next feed update."
 msgstr ""
 
-#: js/viewfeed.js:1070
+#: js/viewfeed.js:1053
 #, fuzzy
 msgid "Mark %d selected article in %s as read?"
 msgid_plural "Mark %d selected articles in %s as read?"
 msgstr[0] "Marcando todos os feeds como lidos..."
 msgstr[1] "Marcando todos os feeds como lidos..."
 
-#: js/viewfeed.js:1094
+#: js/viewfeed.js:1077
 #, fuzzy
 msgid "Edit article Tags"
 msgstr "Editar Tags"
 
-#: js/viewfeed.js:1100
+#: js/viewfeed.js:1083
 #, fuzzy
 msgid "Saving article tags..."
 msgstr "Salvando categoria..."
 
-#: js/viewfeed.js:1337
+#: js/viewfeed.js:1323
 #, fuzzy
 msgid "No article is selected."
 msgstr "Nenhum filtro foi selecionado."
 
-#: js/viewfeed.js:1372
+#: js/viewfeed.js:1358
 #, fuzzy
 msgid "No articles found to mark"
 msgstr "Sem Feeds para exibir."
 
-#: js/viewfeed.js:1374
+#: js/viewfeed.js:1360
 #, fuzzy
 msgid "Mark %d article as read?"
 msgid_plural "Mark %d articles as read?"
 msgstr[0] "Marcando todos os feeds como lidos..."
 msgstr[1] "Marcando todos os feeds como lidos..."
 
-#: js/viewfeed.js:1884
+#: js/viewfeed.js:1872
 #, fuzzy
 msgid "Open original article"
 msgstr "Favoritos"
 
-#: js/viewfeed.js:1890
+#: js/viewfeed.js:1878
 #, fuzzy
 msgid "Display article URL"
 msgstr "Favoritos"
 
-#: js/viewfeed.js:1909
+#: js/viewfeed.js:1897
 #, fuzzy
 msgid "Toggle marked"
 msgstr "Marcar como favorito"
 
-#: js/viewfeed.js:1995
+#: js/viewfeed.js:1983
 #, fuzzy
 msgid "Remove label"
 msgstr "Remover"
 
-#: js/viewfeed.js:2019
+#: js/viewfeed.js:2007
 #, fuzzy
 msgid "Playing..."
 msgstr "Salvando o Feed..."
 
-#: js/viewfeed.js:2020
+#: js/viewfeed.js:2008
 #, fuzzy
 msgid "Click to pause"
 msgstr "Favoritos"
 
-#: js/viewfeed.js:2077
+#: js/viewfeed.js:2065
 #, fuzzy
 msgid "Please enter new score for selected articles:"
 msgstr "Remover os filtros selecionados?"
 
-#: js/viewfeed.js:2119
+#: js/viewfeed.js:2107
 #, fuzzy
 msgid "Please enter new score for this article:"
 msgstr "Salvando categoria..."
 
-#: js/viewfeed.js:2152
+#: js/viewfeed.js:2140
 #, fuzzy
 msgid "Article URL:"
 msgstr "Feed não encontrado."
@@ -3986,6 +3979,20 @@ msgstr "Favoritos"
 msgid "Live updating is considered experimental. Backup your tt-rss directory before continuing. Please type 'yes' to continue."
 msgstr ""
 
+#, fuzzy
+#~ msgid "(%d feed)"
+#~ msgid_plural "(%d feeds)"
+#~ msgstr[0] "Editar"
+#~ msgstr[1] "Editar"
+
+#, fuzzy
+#~ msgid "Tag Cloud"
+#~ msgstr "Núvem de tags"
+
+#, fuzzy
+#~ msgid "Mark all visible articles in %s as read?"
+#~ msgstr "Marcando todos os feeds como lidos..."
+
 #, fuzzy
 #~ msgid "Date"
 #~ msgstr "Atualizar"
diff --git a/locale/ru_RU/LC_MESSAGES/messages.mo b/locale/ru_RU/LC_MESSAGES/messages.mo
deleted file mode 100644 (file)
index ed9d602..0000000
Binary files a/locale/ru_RU/LC_MESSAGES/messages.mo and /dev/null differ
diff --git a/locale/ru_RU/LC_MESSAGES/messages.po b/locale/ru_RU/LC_MESSAGES/messages.po
deleted file mode 100644 (file)
index 0e47859..0000000
+++ /dev/null
@@ -1,4985 +0,0 @@
-# SOME DESCRIPTIVE TITLE.\r
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER\r
-# This file is distributed under the same license as the PACKAGE package.\r
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.\r
-# \r
-# \r
-msgid ""
-msgstr ""
-"Project-Id-Version: 1.0\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-03-31 12:47+0400\n"
-"PO-Revision-Date: 2009-05-29 14:38+0300\n"
-"Last-Translator: Max Kamashev <max.kamashev@floscoeli.com>\n"
-"Language-Team: Русский <ru@li.org>\n"
-"Language: \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n% 10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\\n\n"
-"X-Poedit-Language: Russian\n"
-"X-Poedit-Country: RUSSIAN FEDERATION\n"
-"X-Poedit-SourceCharset: utf-8\n"
-
-#: backend.php:71
-msgid "Use default"
-msgstr "По умолчанию"
-
-#: backend.php:72
-msgid "Never purge"
-msgstr "Никогда"
-
-#: backend.php:73
-msgid "1 week old"
-msgstr "Неделя"
-
-#: backend.php:74
-msgid "2 weeks old"
-msgstr "Две недели"
-
-#: backend.php:75
-msgid "1 month old"
-msgstr "Один месяц"
-
-#: backend.php:76
-msgid "2 months old"
-msgstr "Два месяца"
-
-#: backend.php:77
-msgid "3 months old"
-msgstr "Три месяца"
-
-#: backend.php:80
-msgid "Default interval"
-msgstr "Интервал обновления:"
-
-#: backend.php:81
-#: backend.php:91
-msgid "Disable updates"
-msgstr "Не обновлять"
-
-#: backend.php:82
-#: backend.php:92
-msgid "Each 15 minutes"
-msgstr "Каждые 15 минут"
-
-#: backend.php:83
-#: backend.php:93
-msgid "Each 30 minutes"
-msgstr "Каждые 30 минут"
-
-#: backend.php:84
-#: backend.php:94
-msgid "Hourly"
-msgstr "Каждый час"
-
-#: backend.php:85
-#: backend.php:95
-msgid "Each 4 hours"
-msgstr "Каждые 4 часа"
-
-#: backend.php:86
-#: backend.php:96
-msgid "Each 12 hours"
-msgstr "Каждые 12 часов"
-
-#: backend.php:87
-#: backend.php:97
-msgid "Daily"
-msgstr "Раз в день"
-
-#: backend.php:88
-#: backend.php:98
-msgid "Weekly"
-msgstr "Раз в неделю"
-
-#: backend.php:101
-#: classes/pref/users.php:139
-msgid "User"
-msgstr "Пользователь"
-
-#: backend.php:102
-msgid "Power User"
-msgstr "Активный пользователь"
-
-#: backend.php:103
-msgid "Administrator"
-msgstr "Администратор"
-
-#: db-updater.php:19
-msgid "Your access level is insufficient to run this script."
-msgstr "В доступе отказано - недостаточный уровень привилегий."
-
-#: db-updater.php:44
-msgid "Database Updater"
-msgstr "Обновление базы данных"
-
-#: db-updater.php:87
-msgid "Could not update database"
-msgstr "Не могу обновить базу данных"
-
-#: db-updater.php:90
-msgid "Could not find necessary schema file, need version:"
-msgstr "Не могу найти необходимый файл схемы, требуется версия:"
-
-#: db-updater.php:91
-msgid ", found: "
-msgstr ", найдена: "
-
-#: db-updater.php:94
-msgid "Tiny Tiny RSS database is up to date."
-msgstr "Tiny Tiny RSS база данных обновлена."
-
-#: db-updater.php:96
-#: db-updater.php:165
-#: db-updater.php:178
-#: register.php:196
-#: register.php:241
-#: register.php:254
-#: register.php:269
-#: register.php:288
-#: register.php:336
-#: register.php:346
-#: register.php:358
-#: classes/handler/public.php:625
-#: classes/handler/public.php:713
-#: classes/handler/public.php:795
-msgid "Return to Tiny Tiny RSS"
-msgstr "Вернуться к Tiny Tiny RSS"
-
-#: db-updater.php:102
-msgid "Please backup your database before proceeding."
-msgstr "Пожалуйста, сохраните вашу базу данных перед продолжением."
-
-#: db-updater.php:104
-#, php-format
-msgid "Your Tiny Tiny RSS database needs update to the latest version (<b>%d</b> to <b>%d</b>)."
-msgstr "Вашей базе данных Tiny Tiny RSS необходимо обновиться до последней версии  (<b>%d</b> до <b>%d</b>)."
-
-#: db-updater.php:118
-msgid "Perform updates"
-msgstr "Применить обновления"
-
-#: db-updater.php:123
-msgid "Performing updates..."
-msgstr "Идет обновление..."
-
-#: db-updater.php:129
-#, php-format
-msgid "Updating to version %d..."
-msgstr "Обновляется до версии %d..."
-
-#: db-updater.php:144
-msgid "Checking version... "
-msgstr "Проверяется версия... "
-
-#: db-updater.php:150
-msgid "OK!"
-msgstr "OK!"
-
-#: db-updater.php:152
-msgid "ERROR!"
-msgstr "Ошибка!"
-
-#: db-updater.php:160
-#, fuzzy, php-format
-msgid "Finished. Performed <b>%d</b> update up to schema version <b>%d</b>."
-msgid_plural "Finished. Performed <b>%d</b> updates up to schema version <b>%d</b>."
-msgstr[0] "Обновление завершено. Выполнено <b>%d</b> обновление(ий) схемы базы данных до версии <b>%d</b>."
-msgstr[1] "Обновление завершено. Выполнено <b>%d</b> обновление(ий) схемы базы данных до версии <b>%d</b>."
-msgstr[2] "Обновление завершено. Выполнено <b>%d</b> обновление(ий) схемы базы данных до версии <b>%d</b>."
-
-#: db-updater.php:170
-msgid "Your database schema is from a newer version of Tiny Tiny RSS."
-msgstr ""
-
-#: db-updater.php:172
-#, php-format
-msgid "Found schema version: <b>%d</b>, required: <b>%d</b>."
-msgstr ""
-
-#: db-updater.php:174
-msgid "Schema upgrade impossible. Please update Tiny Tiny RSS files to the newer version and continue."
-msgstr ""
-
-#: errors.php:9
-msgid "This program requires XmlHttpRequest to function properly. Your browser doesn't seem to support it."
-msgstr "Программе требуется функционал XmlHttpRequest. Ваш браузер его не поддерживает."
-
-#: errors.php:12
-msgid "This program requires cookies to function properly. Your browser doesn't seem to support them."
-msgstr "Для работы программы необходимы куки. Ваш браузер их не поддерживает."
-
-#: errors.php:15
-msgid "Backend sanity check failed."
-msgstr ""
-
-#: errors.php:17
-msgid "Frontend sanity check failed."
-msgstr ""
-
-#: errors.php:19
-msgid "Incorrect database schema version. &lt;a href='db-updater.php'&gt;Please update&lt;/a&gt;."
-msgstr "Некорректная версия базы данных. &lt;a href='update.php'&gt;Пожалуйста обновите её&lt;/a&gt;."
-
-#: errors.php:21
-msgid "Request not authorized."
-msgstr "В доступе отказано."
-
-#: errors.php:23
-msgid "No operation to perform."
-msgstr "Операция не задана."
-
-#: errors.php:25
-msgid "Could not display feed: query failed. Please check label match syntax or local configuration."
-msgstr "Не могу показать канал: ошибка в запросе. Пожалуйста, проверьте синтаксис или локальную конфигурацию."
-
-#: errors.php:27
-msgid "Denied. Your access level is insufficient to access this page."
-msgstr "В доступе отказано - недостаточный уровень привилегий."
-
-#: errors.php:29
-msgid "Configuration check failed"
-msgstr "Тест конфигурации неудачен"
-
-#: errors.php:31
-#, fuzzy
-msgid "Your version of MySQL is not currently supported. Please see official site for more information."
-msgstr ""
-"Ваша версия MySQL сейчас не поддерживается. Пожалуйста \n"
-"\t\tпрочитайте на официальном сайте подробную информацию."
-
-#: errors.php:35
-msgid "SQL escaping test failed, check your database and PHP configuration"
-msgstr "неудавшийся тест экранирования SQL, проверьте вашу базу данных и конфигурацию PHP"
-
-#: index.php:135
-#: index.php:154
-#: index.php:264
-#: prefs.php:102
-#: classes/backend.php:5
-#: classes/pref/labels.php:296
-#: classes/pref/filters.php:628
-#: classes/pref/feeds.php:1330
-#: plugins/digest/digest_body.php:63
-#: js/feedlist.js:128
-#: js/feedlist.js:448
-#: js/functions.js:420
-#: js/functions.js:814
-#: js/functions.js:1250
-#: js/functions.js:1385
-#: js/functions.js:1697
-#: js/prefs.js:86
-#: js/prefs.js:576
-#: js/prefs.js:666
-#: js/prefs.js:870
-#: js/prefs.js:1457
-#: js/prefs.js:1510
-#: js/prefs.js:1568
-#: js/prefs.js:1584
-#: js/prefs.js:1600
-#: js/prefs.js:1619
-#: js/prefs.js:1792
-#: js/prefs.js:1808
-#: js/tt-rss.js:475
-#: js/tt-rss.js:492
-#: js/viewfeed.js:774
-#: js/viewfeed.js:1259
-#: plugins/import_export/import_export.js:17
-#: plugins/updater/updater.js:17
-msgid "Loading, please wait..."
-msgstr "Идет загрузка..."
-
-#: index.php:168
-msgid "Collapse feedlist"
-msgstr "Свернуть список каналов"
-
-#: index.php:171
-msgid "Show articles"
-msgstr "Показать статьи"
-
-#: index.php:174
-msgid "Adaptive"
-msgstr "Адаптивно"
-
-#: index.php:175
-msgid "All Articles"
-msgstr "Все статьи"
-
-#: index.php:176
-#: include/functions.php:1974
-#: classes/feeds.php:106
-msgid "Starred"
-msgstr "Отмеченные"
-
-#: index.php:177
-#: include/functions.php:1975
-#: classes/feeds.php:107
-msgid "Published"
-msgstr "Опубликован"
-
-#: index.php:178
-#: classes/feeds.php:93
-#: classes/feeds.php:105
-msgid "Unread"
-msgstr "Новые"
-
-#: index.php:179
-#, fuzzy
-msgid "Unread First"
-msgstr "Новые"
-
-#: index.php:180
-msgid "With Note"
-msgstr ""
-
-#: index.php:181
-msgid "Ignore Scoring"
-msgstr "Игнорировать Оценки"
-
-#: index.php:184
-msgid "Sort articles"
-msgstr "Сортировать статьи"
-
-#: index.php:187
-msgid "Default"
-msgstr "По умолчанию"
-
-#: index.php:188
-msgid "Newest first"
-msgstr ""
-
-#: index.php:189
-msgid "Oldest first"
-msgstr ""
-
-#: index.php:195
-#: classes/pref/feeds.php:567
-#: classes/pref/feeds.php:792
-msgid "Update"
-msgstr "Обновить"
-
-#: index.php:197
-msgid "Mark feed as read"
-msgstr "Отметить канал как прочитанный"
-
-#: index.php:200
-#: index.php:235
-#: include/functions.php:1964
-#: include/localized_schema.php:10
-#: classes/feeds.php:111
-#: classes/feeds.php:136
-#: classes/feeds.php:437
-#: js/FeedTree.js:128
-#: js/FeedTree.js:156
-#: plugins/digest/digest.js:647
-msgid "Mark as read"
-msgstr "Как прочитанные"
-
-#: index.php:201
-#: include/functions.php:1860
-#: include/functions.php:1972
-msgid "All articles"
-msgstr "Все статьи"
-
-#: index.php:202
-msgid "Older than one day"
-msgstr ""
-
-#: index.php:203
-msgid "Older than one week"
-msgstr ""
-
-#: index.php:204
-msgid "Older than two weeks"
-msgstr ""
-
-#: index.php:212
-msgid "Communication problem with server."
-msgstr ""
-
-#: index.php:220
-msgid "New version of Tiny Tiny RSS is available!"
-msgstr "Доступная новая версия Tiny Tiny RSS!"
-
-#: index.php:225
-msgid "Actions..."
-msgstr "Действия..."
-
-#: index.php:227
-#, fuzzy
-msgid "Preferences..."
-msgstr "Настройки"
-
-#: index.php:228
-msgid "Search..."
-msgstr "Поиск..."
-
-#: index.php:229
-msgid "Feed actions:"
-msgstr "Действия над каналами:"
-
-#: index.php:230
-#: classes/handler/public.php:555
-msgid "Subscribe to feed..."
-msgstr "Подписаться на канал..."
-
-#: index.php:231
-msgid "Edit this feed..."
-msgstr "Редактировать канал..."
-
-#: index.php:232
-msgid "Rescore feed"
-msgstr "Заново оценить канал"
-
-#: index.php:233
-#: classes/pref/feeds.php:716
-#: classes/pref/feeds.php:1303
-#: js/PrefFeedTree.js:73
-msgid "Unsubscribe"
-msgstr "Отписаться"
-
-#: index.php:234
-msgid "All feeds:"
-msgstr "Все каналы:"
-
-#: index.php:236
-msgid "(Un)hide read feeds"
-msgstr "Показать/скрыть прочитанные"
-
-#: index.php:237
-msgid "Other actions:"
-msgstr "Другие действия:"
-
-#: index.php:239
-msgid "Switch to digest..."
-msgstr "Перейти в дайджест..."
-
-#: index.php:241
-msgid "Show tag cloud..."
-msgstr "Показать облако тегов..."
-
-#: index.php:242
-#: include/functions.php:1950
-#, fuzzy
-msgid "Toggle widescreen mode"
-msgstr "Переключить изменение режима категории"
-
-#: index.php:243
-msgid "Select by tags..."
-msgstr "Выбрать по тегам..."
-
-#: index.php:244
-msgid "Create label..."
-msgstr "Создать метку..."
-
-#: index.php:245
-msgid "Create filter..."
-msgstr "Создать фильтр..."
-
-#: index.php:246
-msgid "Keyboard shortcuts help"
-msgstr "Горячие клавиши"
-
-#: index.php:248
-#: plugins/digest/digest_body.php:77
-#: plugins/mobile/mobile-functions.php:62
-#: plugins/mobile/mobile-functions.php:237
-msgid "Logout"
-msgstr "Выход"
-
-#: prefs.php:36
-#: prefs.php:122
-#: include/functions.php:1977
-#: classes/pref/prefs.php:377
-msgid "Preferences"
-msgstr "Настройки"
-
-#: prefs.php:113
-msgid "Keyboard shortcuts"
-msgstr "Горячие Клавиши"
-
-#: prefs.php:114
-msgid "Exit preferences"
-msgstr "Закрыть настройки"
-
-#: prefs.php:125
-#: classes/pref/feeds.php:106
-#: classes/pref/feeds.php:1208
-#: classes/pref/feeds.php:1271
-msgid "Feeds"
-msgstr "Каналы"
-
-#: prefs.php:128
-#: classes/pref/filters.php:120
-msgid "Filters"
-msgstr "Фильтры"
-
-#: prefs.php:131
-#: include/functions.php:1167
-#: include/functions.php:1803
-#: classes/pref/labels.php:90
-#: plugins/mobile/mobile-functions.php:198
-msgid "Labels"
-msgstr "Метки"
-
-#: prefs.php:135
-msgid "Users"
-msgstr "Пользователи"
-
-#: register.php:186
-#: include/login_form.php:238
-msgid "Create new account"
-msgstr "Создать новый аккаунт"
-
-#: register.php:192
-msgid "New user registrations are administratively disabled."
-msgstr "Регистрация новых пользователей запрещена."
-
-#: register.php:217
-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 "Временный пароль будет отправлен на указанный e-mail. Если аккаунт не будет активирован в течении 24 часов, то он будет удалён."
-
-#: register.php:223
-msgid "Desired login:"
-msgstr "Желаемый логин:"
-
-#: register.php:226
-msgid "Check availability"
-msgstr "Проверить доступность"
-
-#: register.php:228
-#: classes/handler/public.php:753
-msgid "Email:"
-msgstr "E-mail: "
-
-#: register.php:231
-#: classes/handler/public.php:758
-msgid "How much is two plus two:"
-msgstr "Сколько будет, два плюс два:"
-
-#: register.php:234
-msgid "Submit registration"
-msgstr "Зарегистрироваться"
-
-#: register.php:252
-msgid "Your registration information is incomplete."
-msgstr "Не полностью заполнена ваша регистрационная информация."
-
-#: register.php:267
-msgid "Sorry, this username is already taken."
-msgstr "Извините, такое имя пользователя уже существует."
-
-#: register.php:286
-msgid "Registration failed."
-msgstr "Неудачная регистрация."
-
-#: register.php:333
-msgid "Account created successfully."
-msgstr "Аккаунт успешно создан."
-
-#: register.php:355
-msgid "New user registrations are currently closed."
-msgstr "Регистрация новых пользователей временно закрыта."
-
-#: update.php:55
-#, fuzzy
-msgid "Tiny Tiny RSS data update script."
-msgstr "Tiny Tiny RSS база данных обновлена."
-
-#: include/digest.php:109
-#: include/functions.php:1176
-#: include/functions.php:1704
-#: include/functions.php:1789
-#: include/functions.php:1811
-#: classes/opml.php:416
-#: classes/pref/feeds.php:221
-msgid "Uncategorized"
-msgstr "Нет категории"
-
-#: include/feedbrowser.php:83
-#, fuzzy, php-format
-msgid "%d archived article"
-msgid_plural "%d archived articles"
-msgstr[0] "Отмеченные"
-msgstr[1] "Отмеченные"
-msgstr[2] "Отмеченные"
-
-#: include/feedbrowser.php:107
-msgid "No feeds found."
-msgstr "Каналы не найдены."
-
-#: include/functions.php:722
-msgid "Session failed to validate (incorrect IP)"
-msgstr "Ошибка проверки сессии (некорректный IP)"
-
-#: include/functions.php:1165
-#: include/functions.php:1801
-#: plugins/mobile/mobile-functions.php:171
-msgid "Special"
-msgstr "Особые"
-
-#: include/functions.php:1653
-#: classes/dlg.php:369
-#: classes/pref/filters.php:382
-msgid "All feeds"
-msgstr "Все каналы"
-
-#: include/functions.php:1854
-msgid "Starred articles"
-msgstr "Отмеченные"
-
-#: include/functions.php:1856
-msgid "Published articles"
-msgstr "Опубликованные"
-
-#: include/functions.php:1858
-msgid "Fresh articles"
-msgstr "Свежие"
-
-#: include/functions.php:1862
-msgid "Archived articles"
-msgstr "Архив статей"
-
-#: include/functions.php:1864
-msgid "Recently read"
-msgstr ""
-
-#: include/functions.php:1927
-msgid "Navigation"
-msgstr "Навигация"
-
-#: include/functions.php:1928
-#, fuzzy
-msgid "Open next feed"
-msgstr "Генерировать канал"
-
-#: include/functions.php:1929
-msgid "Open previous feed"
-msgstr ""
-
-#: include/functions.php:1930
-#, fuzzy
-msgid "Open next article"
-msgstr "Показать оригинальное содержимое статьи"
-
-#: include/functions.php:1931
-#, fuzzy
-msgid "Open previous article"
-msgstr "Показать оригинальное содержимое статьи"
-
-#: include/functions.php:1932
-msgid "Open next article (don't scroll long articles)"
-msgstr ""
-
-#: include/functions.php:1933
-msgid "Open previous article (don't scroll long articles)"
-msgstr ""
-
-#: include/functions.php:1934
-msgid "Show search dialog"
-msgstr "Показать диалог поиска"
-
-#: include/functions.php:1935
-#, fuzzy
-msgid "Article"
-msgstr "Все статьи"
-
-#: include/functions.php:1936
-msgid "Toggle starred"
-msgstr "Изм. отмеченное"
-
-#: include/functions.php:1937
-#: js/viewfeed.js:1920
-msgid "Toggle published"
-msgstr "Отметить / снять отметку"
-
-#: include/functions.php:1938
-#: js/viewfeed.js:1898
-msgid "Toggle unread"
-msgstr "Прочитано / не прочитано"
-
-#: include/functions.php:1939
-msgid "Edit tags"
-msgstr "Редактировать теги"
-
-#: include/functions.php:1940
-#, fuzzy
-msgid "Dismiss selected"
-msgstr "Скрыть выбранные статьи"
-
-#: include/functions.php:1941
-#, fuzzy
-msgid "Dismiss read"
-msgstr "Опубликовать"
-
-#: include/functions.php:1942
-#, fuzzy
-msgid "Open in new window"
-msgstr "Открыть статью в новом окне"
-
-#: include/functions.php:1943
-#: js/viewfeed.js:1939
-msgid "Mark below as read"
-msgstr "Отметить статьи ниже как прочитанные"
-
-#: include/functions.php:1944
-#: js/viewfeed.js:1933
-msgid "Mark above as read"
-msgstr "Отметить статьи выше как прочитанные"
-
-#: include/functions.php:1945
-#, fuzzy
-msgid "Scroll down"
-msgstr "Всё выполнено."
-
-#: include/functions.php:1946
-msgid "Scroll up"
-msgstr ""
-
-#: include/functions.php:1947
-#, fuzzy
-msgid "Select article under cursor"
-msgstr "Выбрать статью под курсором мыши"
-
-#: include/functions.php:1948
-msgid "Email article"
-msgstr "Отправить по почте"
-
-#: include/functions.php:1949
-#, fuzzy
-msgid "Close/collapse article"
-msgstr "Закрыть статью"
-
-#: include/functions.php:1951
-#: plugins/embed_original/init.php:33
-#, fuzzy
-msgid "Toggle embed original"
-msgstr "Переключить изменение режима категории"
-
-#: include/functions.php:1952
-#, fuzzy
-msgid "Article selection"
-msgstr "Инвертировать выделение"
-
-#: include/functions.php:1953
-msgid "Select all articles"
-msgstr "Выбрать все статьи"
-
-#: include/functions.php:1954
-#, fuzzy
-msgid "Select unread"
-msgstr "Выбрать непрочитанные статьи"
-
-#: include/functions.php:1955
-#, fuzzy
-msgid "Select starred"
-msgstr "Отметить"
-
-#: include/functions.php:1956
-#, fuzzy
-msgid "Select published"
-msgstr "Выбрать непрочитанные статьи"
-
-#: include/functions.php:1957
-#, fuzzy
-msgid "Invert selection"
-msgstr "Инвертировать выделение"
-
-#: include/functions.php:1958
-#, fuzzy
-msgid "Deselect everything"
-msgstr "Очистить выделение статей"
-
-#: include/functions.php:1959
-#: classes/pref/feeds.php:520
-#: classes/pref/feeds.php:753
-msgid "Feed"
-msgstr "Канал"
-
-#: include/functions.php:1960
-#, fuzzy
-msgid "Refresh current feed"
-msgstr "Обновить активный канал"
-
-#: include/functions.php:1961
-#, fuzzy
-msgid "Un/hide read feeds"
-msgstr "Показать/скрыть прочитанные"
-
-#: include/functions.php:1962
-#: classes/pref/feeds.php:1274
-msgid "Subscribe to feed"
-msgstr "Подписаться на канал"
-
-#: include/functions.php:1963
-#: js/FeedTree.js:135
-#: js/PrefFeedTree.js:67
-msgid "Edit feed"
-msgstr "Редактировать канал"
-
-#: include/functions.php:1965
-#, fuzzy
-msgid "Reverse headlines"
-msgstr "Обратный порядок заголовков"
-
-#: include/functions.php:1966
-#, fuzzy
-msgid "Debug feed update"
-msgstr "Все каналы обновлены."
-
-#: include/functions.php:1967
-#: js/FeedTree.js:178
-msgid "Mark all feeds as read"
-msgstr "Отметить все каналы как прочитанные"
-
-#: include/functions.php:1968
-#, fuzzy
-msgid "Un/collapse current category"
-msgstr "Щёлкните, чтобы развернуть категорию"
-
-#: include/functions.php:1969
-#, fuzzy
-msgid "Toggle combined mode"
-msgstr "Переключить изменение режима категории"
-
-#: include/functions.php:1970
-#, fuzzy
-msgid "Toggle auto expand in combined mode"
-msgstr "Переключить изменение режима категории"
-
-#: include/functions.php:1971
-#, fuzzy
-msgid "Go to"
-msgstr "Перейти к.."
-
-#: include/functions.php:1973
-#, fuzzy
-msgid "Fresh"
-msgstr "Обновить"
-
-#: include/functions.php:1976
-msgid "Tag cloud"
-msgstr "Облако тегов"
-
-#: include/functions.php:1978
-#, fuzzy
-msgid "Other"
-msgstr "Другой:"
-
-#: include/functions.php:1979
-#: classes/pref/labels.php:281
-msgid "Create label"
-msgstr "Создать метку"
-
-#: include/functions.php:1980
-#: classes/pref/filters.php:606
-msgid "Create filter"
-msgstr "Создать фильтр"
-
-#: include/functions.php:1981
-#, fuzzy
-msgid "Un/collapse sidebar"
-msgstr "Развернуть боковую панель"
-
-#: include/functions.php:1982
-#, fuzzy
-msgid "Show help dialog"
-msgstr "Показать диалог поиска"
-
-#: include/functions.php:2467
-#, fuzzy, php-format
-msgid "Search results: %s"
-msgstr "Результаты поиска"
-
-#: include/functions.php:2958
-#: js/viewfeed.js:2026
-msgid "Click to play"
-msgstr "Щёлкните для проигрывания"
-
-#: include/functions.php:2959
-#: js/viewfeed.js:2025
-msgid "Play"
-msgstr "Играть"
-
-#: include/functions.php:3076
-msgid " - "
-msgstr " - "
-
-#: include/functions.php:3098
-#: include/functions.php:3392
-#: classes/rpc.php:408
-msgid "no tags"
-msgstr "нет тегов"
-
-#: include/functions.php:3108
-#: classes/feeds.php:682
-msgid "Edit tags for this article"
-msgstr "Редактировать теги статьи"
-
-#: include/functions.php:3137
-#: classes/feeds.php:638
-msgid "Originally from:"
-msgstr "Оригинал:"
-
-#: include/functions.php:3150
-#: classes/feeds.php:651
-#: classes/pref/feeds.php:539
-#, fuzzy
-msgid "Feed URL"
-msgstr "Канал"
-
-#: include/functions.php:3181
-#: classes/dlg.php:43
-#: classes/dlg.php:162
-#: classes/dlg.php:185
-#: classes/dlg.php:222
-#: classes/dlg.php:506
-#: classes/dlg.php:541
-#: classes/dlg.php:572
-#: classes/dlg.php:606
-#: classes/dlg.php:618
-#: classes/backend.php:105
-#: classes/pref/users.php:106
-#: classes/pref/filters.php:111
-#: classes/pref/feeds.php:1587
-#: classes/pref/feeds.php:1659
-#: plugins/import_export/init.php:409
-#: plugins/import_export/init.php:432
-#: plugins/googlereaderimport/init.php:164
-#: plugins/share/init.php:67
-#: plugins/updater/init.php:357
-msgid "Close this window"
-msgstr "Закрыть это окно"
-
-#: include/functions.php:3417
-#, fuzzy
-msgid "(edit note)"
-msgstr "править заметку"
-
-#: include/functions.php:3650
-msgid "unknown type"
-msgstr "неизвестный тип"
-
-#: include/functions.php:3706
-#, fuzzy
-msgid "Attachments"
-msgstr "Вложения:"
-
-#: include/localized_schema.php:3
-msgid "Title"
-msgstr "Заголовок"
-
-#: include/localized_schema.php:4
-msgid "Title or Content"
-msgstr "Заголовок или содержимое"
-
-#: include/localized_schema.php:5
-msgid "Link"
-msgstr "Ссылка"
-
-#: include/localized_schema.php:6
-msgid "Content"
-msgstr "Содержимое"
-
-#: include/localized_schema.php:7
-msgid "Article Date"
-msgstr "Дата Статьи"
-
-#: include/localized_schema.php:9
-msgid "Delete article"
-msgstr "Удалить статью"
-
-#: include/localized_schema.php:11
-msgid "Set starred"
-msgstr "Отметить"
-
-#: include/localized_schema.php:12
-#: js/viewfeed.js:483
-#: plugins/digest/digest.js:265
-#: plugins/digest/digest.js:754
-msgid "Publish article"
-msgstr "Опубликовать"
-
-#: include/localized_schema.php:13
-msgid "Assign tags"
-msgstr "Применить теги"
-
-#: include/localized_schema.php:14
-#: js/viewfeed.js:1990
-msgid "Assign label"
-msgstr "Применить метку"
-
-#: include/localized_schema.php:15
-msgid "Modify score"
-msgstr "Изменить оценку"
-
-#: include/localized_schema.php:17
-msgid "General"
-msgstr "Общие"
-
-#: include/localized_schema.php:18
-msgid "Interface"
-msgstr "Интерфейс"
-
-#: include/localized_schema.php:19
-msgid "Advanced"
-msgstr "Расширенные"
-
-#: 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 "Эта опция полезна, если вы читаете несколько агрегаторов типа \"планета\" с пересекающимися статьями. Когда запрещено, статья показывается лишь один раз."
-
-#: include/localized_schema.php:22
-msgid "Display expanded list of feed articles, instead of separate displays for headlines and article content"
-msgstr "Показывать развёрнутый список статей, вместо разделения экрана на заголовки и содержимое статей"
-
-#: include/localized_schema.php:23
-msgid "Automatically open next feed with unread articles after marking one as read"
-msgstr ""
-
-#: include/localized_schema.php:24
-msgid "This option enables sending daily digest of new (and unread) headlines on your configured e-mail address"
-msgstr "Эта опция разрешает отправку ежедневного обзора новых (и непрочитанных) заголовков на ваш адрес электронной почты"
-
-#: include/localized_schema.php:25
-#, fuzzy
-msgid "This option enables marking articles as read automatically while you scroll article list."
-msgstr "Эта опция разрешает автоматически отмечать статьи как прочитанные в комбинированном режиме (исключение для специального канала \"Свежие статьи\" ), пока вы прокручиваете список статей."
-
-#: include/localized_schema.php:26
-msgid "Strip all but most common HTML tags when reading articles."
-msgstr "Вырезать все, кроме основных HTML тегов при показе статей."
-
-#: include/localized_schema.php:27
-msgid "When auto-detecting tags in articles these tags will not be applied (comma-separated list)."
-msgstr "Когда автоопределение тегов в статьях, эти теги не будут применяться (список значений, разделённых запятыми)."
-
-#: include/localized_schema.php:28
-msgid "When this option is enabled, headlines in Special feeds and Labels are grouped by feeds"
-msgstr "Когда эта опция включена, заголовки в Особом канале и Метки группируются по каналам"
-
-#: include/localized_schema.php:29
-msgid "Customize CSS stylesheet to your liking"
-msgstr ""
-
-#: include/localized_schema.php:30
-msgid "Use feed-specified date to sort headlines instead of local import date."
-msgstr ""
-
-#: include/localized_schema.php:31
-msgid "Click to register your SSL client certificate with tt-rss"
-msgstr ""
-
-#: include/localized_schema.php:32
-#, fuzzy
-msgid "Uses UTC timezone"
-msgstr "Часовой пояс"
-
-#: include/localized_schema.php:33
-msgid "Select one of the available CSS themes"
-msgstr ""
-
-#: include/localized_schema.php:34
-#, fuzzy
-msgid "Purge articles after this number of days (0 - disables)"
-msgstr "Стирать статьи старше этого количества дней (0 - выключает)"
-
-#: include/localized_schema.php:35
-msgid "Default interval between feed updates"
-msgstr "Интервал между обновлениями каналов по умолчанию (в минутах)"
-
-#: include/localized_schema.php:36
-msgid "Amount of articles to display at once"
-msgstr "Количество статей на странице"
-
-#: include/localized_schema.php:37
-msgid "Allow duplicate posts"
-msgstr "Разрешить дубликаты статей"
-
-#: include/localized_schema.php:38
-msgid "Enable feed categories"
-msgstr "Включить категории каналов"
-
-#: include/localized_schema.php:39
-msgid "Show content preview in headlines list"
-msgstr "Показать предпросмотр содержимого в списке заголовков"
-
-#: include/localized_schema.php:40
-msgid "Short date format"
-msgstr "Короткий формат даты"
-
-#: include/localized_schema.php:41
-msgid "Long date format"
-msgstr "Длинный формат даты"
-
-#: include/localized_schema.php:42
-msgid "Combined feed display"
-msgstr "Комбинированный режим отображения"
-
-#: include/localized_schema.php:43
-#, fuzzy
-msgid "Hide feeds with no unread articles"
-msgstr "Спрятать каналы без непрочитанных статей"
-
-#: include/localized_schema.php:44
-msgid "On catchup show next feed"
-msgstr "Показывать следующий канал при отметке как прочитанный"
-
-#: include/localized_schema.php:45
-msgid "Sort feeds by unread articles count"
-msgstr "Сортировать каналы по количеству непрочитанных статей"
-
-#: include/localized_schema.php:46
-#: plugins/mobile/prefs.php:60
-msgid "Reverse headline order (oldest first)"
-msgstr "Обратный порядок заголовков (старые впереди)"
-
-#: include/localized_schema.php:47
-msgid "Enable e-mail digest"
-msgstr "Включить почтовый дайджест"
-
-#: include/localized_schema.php:48
-msgid "Confirm marking feed as read"
-msgstr "Подтвердить отметку каналка как прочитанный"
-
-#: include/localized_schema.php:49
-msgid "Automatically mark articles as read"
-msgstr "Автоматически помечать статьи как прочитанные"
-
-#: include/localized_schema.php:50
-msgid "Strip unsafe tags from articles"
-msgstr "Вырезать небезопасные теги из статей"
-
-#: include/localized_schema.php:51
-msgid "Blacklisted tags"
-msgstr "Черный список тегов"
-
-#: include/localized_schema.php:52
-msgid "Maximum age of fresh articles (in hours)"
-msgstr "Максимальный возраст свежих статей (в часах)"
-
-#: include/localized_schema.php:53
-msgid "Mark articles in e-mail digest as read"
-msgstr "Отметить все статьи в e-mail дайджесте как прочитанные?"
-
-#: include/localized_schema.php:54
-msgid "Automatically expand articles in combined mode"
-msgstr "Автоматически раскрывать статьи в комбинированном режиме"
-
-#: include/localized_schema.php:55
-msgid "Purge unread articles"
-msgstr "Очистить непрочитанные статьи"
-
-#: include/localized_schema.php:56
-msgid "Show special feeds when hiding read feeds"
-msgstr "Показывать специальные каналы, когда скрываются прочитанные каналы"
-
-#: include/localized_schema.php:57
-msgid "Group headlines in virtual feeds"
-msgstr "Группировать заголовки в виртуальные каналы"
-
-#: include/localized_schema.php:58
-#, fuzzy
-msgid "Do not embed images in articles"
-msgstr "Не показывать изображения в статьях"
-
-#: include/localized_schema.php:59
-msgid "Enable external API"
-msgstr ""
-
-#: include/localized_schema.php:60
-msgid "User timezone"
-msgstr "Часовой пояс"
-
-#: include/localized_schema.php:61
-#: js/prefs.js:1719
-msgid "Customize stylesheet"
-msgstr "Изменить пользовательские стили"
-
-#: include/localized_schema.php:62
-msgid "Sort headlines by feed date"
-msgstr "Сортировать каналы по дате, указанной в канале"
-
-#: include/localized_schema.php:63
-msgid "Login with an SSL certificate"
-msgstr "Вход с помощью SSL сертификата"
-
-#: include/localized_schema.php:64
-msgid "Try to send digests around specified time"
-msgstr ""
-
-#: include/localized_schema.php:65
-#, fuzzy
-msgid "Assign articles to labels automatically"
-msgstr "Отмечать статьи как прочитанные автоматически"
-
-#: include/localized_schema.php:66
-msgid "Select theme"
-msgstr "Выбор темы"
-
-#: include/login_form.php:183
-#: classes/handler/public.php:460
-#: classes/handler/public.php:748
-#: plugins/mobile/login_form.php:40
-msgid "Login:"
-msgstr "Логин:"
-
-#: include/login_form.php:192
-#: classes/handler/public.php:463
-#: plugins/mobile/login_form.php:45
-msgid "Password:"
-msgstr "Пароль:"
-
-#: include/login_form.php:197
-#, fuzzy
-msgid "I forgot my password"
-msgstr "Некорректное имя пользователя или пароль"
-
-#: include/login_form.php:201
-#: classes/handler/public.php:466
-msgid "Language:"
-msgstr "Язык:"
-
-#: include/login_form.php:209
-msgid "Profile:"
-msgstr "Профиль:"
-
-#: include/login_form.php:213
-#: classes/handler/public.php:210
-#: classes/rpc.php:64
-#: classes/dlg.php:98
-msgid "Default profile"
-msgstr "Профиль по умолчанию"
-
-#: include/login_form.php:221
-msgid "Use less traffic"
-msgstr "Использовать меньше трафика"
-
-#: include/login_form.php:229
-msgid "Remember me"
-msgstr ""
-
-#: include/login_form.php:235
-#: classes/handler/public.php:476
-#: plugins/mobile/login_form.php:28
-msgid "Log in"
-msgstr "Войти"
-
-#: classes/article.php:25
-msgid "Article not found."
-msgstr "Статья не найдена"
-
-#: classes/handler/public.php:401
-#: plugins/bookmarklets/init.php:38
-#, fuzzy
-msgid "Share with Tiny Tiny RSS"
-msgstr "Вернуться к Tiny Tiny RSS"
-
-#: classes/handler/public.php:409
-msgid "Title:"
-msgstr "Заголовок:"
-
-#: classes/handler/public.php:411
-#: classes/dlg.php:663
-#: classes/pref/feeds.php:537
-#: classes/pref/feeds.php:768
-#: plugins/instances/init.php:215
-msgid "URL:"
-msgstr "URL:"
-
-#: classes/handler/public.php:413
-#, fuzzy
-msgid "Content:"
-msgstr "Содержимое"
-
-#: classes/handler/public.php:415
-#, fuzzy
-msgid "Labels:"
-msgstr "Метки"
-
-#: classes/handler/public.php:434
-msgid "Shared article will appear in the Published feed."
-msgstr ""
-
-#: classes/handler/public.php:436
-msgid "Share"
-msgstr ""
-
-#: classes/handler/public.php:437
-#: classes/handler/public.php:479
-#: classes/dlg.php:296
-#: classes/dlg.php:348
-#: classes/dlg.php:408
-#: classes/dlg.php:439
-#: classes/dlg.php:648
-#: classes/dlg.php:698
-#: classes/dlg.php:747
-#: classes/pref/users.php:194
-#: classes/pref/labels.php:81
-#: classes/pref/filters.php:363
-#: classes/pref/filters.php:746
-#: classes/pref/filters.php:822
-#: classes/pref/filters.php:889
-#: classes/pref/feeds.php:733
-#: classes/pref/feeds.php:883
-#: plugins/mail/init.php:131
-#: plugins/note/init.php:55
-#: plugins/instances/init.php:251
-msgid "Cancel"
-msgstr "Отмена"
-
-#: classes/handler/public.php:458
-#, fuzzy
-msgid "Not logged in"
-msgstr "Последний вход"
-
-#: classes/handler/public.php:525
-msgid "Incorrect username or password"
-msgstr "Некорректное имя пользователя или пароль"
-
-#: classes/handler/public.php:561
-#: classes/handler/public.php:658
-#, php-format
-msgid "Already subscribed to <b>%s</b>."
-msgstr "Канал <b>%s</b> уже подписан."
-
-#: classes/handler/public.php:564
-#: classes/handler/public.php:649
-#, php-format
-msgid "Subscribed to <b>%s</b>."
-msgstr "Добавлена подписка на <b>%s</b>."
-
-#: classes/handler/public.php:567
-#: classes/handler/public.php:652
-#, fuzzy, php-format
-msgid "Could not subscribe to <b>%s</b>."
-msgstr "Канал <b>%s</b> уже подписан."
-
-#: classes/handler/public.php:570
-#: classes/handler/public.php:655
-#, fuzzy, php-format
-msgid "No feeds found in <b>%s</b>."
-msgstr "Каналы не найдены."
-
-#: classes/handler/public.php:573
-#: classes/handler/public.php:661
-#, fuzzy
-msgid "Multiple feed URLs found."
-msgstr "Опубликованный URL канала изменён."
-
-#: classes/handler/public.php:577
-#: classes/handler/public.php:666
-#, fuzzy, php-format
-msgid "Could not subscribe to <b>%s</b>.<br>Can't download the Feed URL."
-msgstr "Канал <b>%s</b> уже подписан."
-
-#: classes/handler/public.php:595
-#: classes/handler/public.php:684
-#, fuzzy
-msgid "Subscribe to selected feed"
-msgstr "Отписаться от выбранных каналов?"
-
-#: classes/handler/public.php:620
-#: classes/handler/public.php:708
-msgid "Edit subscription options"
-msgstr "Редактировать опции  подписки"
-
-#: classes/handler/public.php:735
-#, fuzzy
-msgid "Password recovery"
-msgstr "Пароль"
-
-#: classes/handler/public.php:741
-msgid "You will need to provide valid account name and email. New password will be sent on your email address."
-msgstr ""
-
-#: classes/handler/public.php:763
-#: classes/pref/users.php:378
-msgid "Reset password"
-msgstr "Сбросить пароль"
-
-#: classes/handler/public.php:773
-msgid "Some of the required form parameters are missing or incorrect."
-msgstr ""
-
-#: classes/handler/public.php:777
-#: classes/handler/public.php:803
-#: plugins/digest/digest_body.php:69
-#, fuzzy
-msgid "Go back"
-msgstr "Переместить назад"
-
-#: classes/handler/public.php:799
-msgid "Sorry, login and email combination not found."
-msgstr ""
-
-#: 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 "Если вы импортировали метки или фильтры, вам возможно придется перезагрузить настройки чтобы увидеть новые данные."
-
-#: classes/dlg.php:55
-#: classes/pref/users.php:360
-#: classes/pref/labels.php:272
-#: classes/pref/filters.php:234
-#: classes/pref/filters.php:282
-#: classes/pref/filters.php:597
-#: classes/pref/filters.php:676
-#: classes/pref/filters.php:703
-#: classes/pref/feeds.php:1262
-#: classes/pref/feeds.php:1532
-#: classes/pref/feeds.php:1602
-#: plugins/instances/init.php:287
-msgid "Select"
-msgstr "Выбрать"
-
-#: classes/dlg.php:58
-#: classes/feeds.php:92
-#: classes/pref/users.php:363
-#: classes/pref/labels.php:275
-#: classes/pref/filters.php:237
-#: classes/pref/filters.php:285
-#: classes/pref/filters.php:600
-#: classes/pref/filters.php:679
-#: classes/pref/filters.php:706
-#: classes/pref/feeds.php:1265
-#: classes/pref/feeds.php:1535
-#: classes/pref/feeds.php:1605
-#: plugins/instances/init.php:290
-msgid "All"
-msgstr "Все"
-
-#: classes/dlg.php:60
-#: classes/feeds.php:95
-#: classes/pref/users.php:365
-#: classes/pref/labels.php:277
-#: classes/pref/filters.php:239
-#: classes/pref/filters.php:287
-#: classes/pref/filters.php:602
-#: classes/pref/filters.php:681
-#: classes/pref/filters.php:708
-#: classes/pref/feeds.php:1267
-#: classes/pref/feeds.php:1537
-#: classes/pref/feeds.php:1607
-#: plugins/instances/init.php:292
-msgid "None"
-msgstr "Ничего"
-
-#: classes/dlg.php:69
-msgid "Create profile"
-msgstr "Создать профиль"
-
-#: classes/dlg.php:92
-#: classes/dlg.php:122
-#, fuzzy
-msgid "(active)"
-msgstr "Адаптивно"
-
-#: classes/dlg.php:156
-msgid "Remove selected profiles"
-msgstr "Удалить выбранные профили?"
-
-#: classes/dlg.php:158
-msgid "Activate profile"
-msgstr "Активировать профиль"
-
-#: classes/dlg.php:168
-msgid "Public OPML URL"
-msgstr "Публичная ссылка на OPML"
-
-#: classes/dlg.php:173
-msgid "Your Public OPML URL is:"
-msgstr "Ссылка на ваш опубликованный OPML:"
-
-#: classes/dlg.php:182
-#: classes/dlg.php:569
-msgid "Generate new URL"
-msgstr "Создать новую ссылку"
-
-#: classes/dlg.php:194
-msgid "Notice"
-msgstr "Сообщение"
-
-#: 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 ""
-"Демон обновлений разрешён в вашей конфигурации, но процесс демона не запущен. Он необходим для обновления всех каналов.\n"
-"Пожалуйста, запустите демон обновлений или сообщите администратору."
-
-#: classes/dlg.php:204
-#: classes/dlg.php:213
-msgid "Last update:"
-msgstr "Последнее обновление:"
-
-#: 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 ""
-"Tiny Tiny RSS определил что демон обновлений не работает уже очень давно.\n"
-"Это обозначает что существует проблема подобная краху или зависанию демона.\n"
-"Пожалуйста проверьте процесс демона или сообщите администратору."
-
-#: classes/dlg.php:234
-#: classes/dlg.php:242
-#, fuzzy
-msgid "Feed or site URL"
-msgstr "Канал"
-
-#: classes/dlg.php:248
-#: classes/dlg.php:711
-#: classes/pref/feeds.php:559
-#: classes/pref/feeds.php:781
-msgid "Place in category:"
-msgstr "Поместить в категорию:"
-
-#: classes/dlg.php:256
-msgid "Available feeds"
-msgstr "Доступные каналы"
-
-#: classes/dlg.php:268
-#: classes/pref/users.php:155
-#: classes/pref/feeds.php:589
-#: classes/pref/feeds.php:817
-msgid "Authentication"
-msgstr "Авторизация"
-
-#: classes/dlg.php:272
-#: classes/dlg.php:725
-#: classes/pref/users.php:420
-#: classes/pref/feeds.php:595
-#: classes/pref/feeds.php:821
-msgid "Login"
-msgstr "Пользователь:"
-
-#: classes/dlg.php:275
-#: classes/dlg.php:728
-#: classes/pref/prefs.php:202
-#: classes/pref/feeds.php:601
-#: classes/pref/feeds.php:827
-msgid "Password"
-msgstr "Пароль"
-
-#: classes/dlg.php:285
-msgid "This feed requires authentication."
-msgstr "Этот канал требует авторизации."
-
-#: classes/dlg.php:290
-#: classes/dlg.php:346
-#: classes/dlg.php:746
-msgid "Subscribe"
-msgstr "Подписаться"
-
-#: classes/dlg.php:293
-msgid "More feeds"
-msgstr "Другие каналы"
-
-#: classes/dlg.php:316
-#: classes/dlg.php:407
-#: classes/pref/users.php:350
-#: classes/pref/filters.php:593
-#: classes/pref/feeds.php:1258
-#: js/tt-rss.js:170
-msgid "Search"
-msgstr "Поиск"
-
-#: classes/dlg.php:320
-#, fuzzy
-msgid "Popular feeds"
-msgstr "показать каналы"
-
-#: classes/dlg.php:321
-#, fuzzy
-msgid "Feed archive"
-msgstr "Действия над каналом:"
-
-#: classes/dlg.php:324
-#, fuzzy
-msgid "limit:"
-msgstr "Сколько:"
-
-#: classes/dlg.php:347
-#: classes/pref/users.php:376
-#: classes/pref/labels.php:284
-#: classes/pref/filters.php:353
-#: classes/pref/filters.php:615
-#: classes/pref/feeds.php:706
-#: plugins/instances/init.php:297
-msgid "Remove"
-msgstr "Удалить"
-
-#: classes/dlg.php:358
-msgid "Look for"
-msgstr ""
-
-#: classes/dlg.php:366
-msgid "Limit search to:"
-msgstr "Ограничить поиск:"
-
-#: classes/dlg.php:382
-msgid "This feed"
-msgstr "Этот канал"
-
-#: classes/dlg.php:414
-msgid "Tags for this article (separated by commas):"
-msgstr "Теги для этой статьи (разделенные запятыми):"
-
-#: classes/dlg.php:437
-#: classes/dlg.php:646
-#: classes/pref/users.php:192
-#: classes/pref/labels.php:79
-#: classes/pref/filters.php:360
-#: classes/pref/feeds.php:732
-#: classes/pref/feeds.php:880
-#: plugins/nsfw/init.php:86
-#: plugins/note/init.php:53
-#: plugins/instances/init.php:248
-msgid "Save"
-msgstr "Сохранить"
-
-#: classes/dlg.php:445
-#, fuzzy
-msgid "Tag Cloud"
-msgstr "Облако тегов"
-
-#: classes/dlg.php:514
-msgid "Select item(s) by tags"
-msgstr ""
-
-#: classes/dlg.php:517
-msgid "Match:"
-msgstr "Поиск:"
-
-#: classes/dlg.php:519
-msgid "Any"
-msgstr ""
-
-#: classes/dlg.php:522
-#, fuzzy
-msgid "All tags."
-msgstr "нет тегов"
-
-#: classes/dlg.php:524
-msgid "Which Tags?"
-msgstr ""
-
-#: classes/dlg.php:537
-#, fuzzy
-msgid "Display entries"
-msgstr "показать каналы"
-
-#: classes/dlg.php:549
-#: classes/feeds.php:138
-msgid "View as RSS"
-msgstr "Показать в формате RSS"
-
-#: classes/dlg.php:560
-msgid "You can view this feed as RSS using the following URL:"
-msgstr ""
-
-#: classes/dlg.php:589
-#: plugins/updater/init.php:327
-#, php-format
-msgid "New version of Tiny Tiny RSS is available (%s)."
-msgstr "Доступна новая версия Tiny Tiny RSS (%s)."
-
-#: classes/dlg.php:597
-msgid "You can update using built-in updater in the Preferences or by using update.php"
-msgstr ""
-
-#: classes/dlg.php:601
-#: plugins/updater/init.php:331
-msgid "See the release notes"
-msgstr ""
-
-#: classes/dlg.php:603
-msgid "Download"
-msgstr "Скачать"
-
-#: classes/dlg.php:611
-msgid "Error receiving version information or no new version available."
-msgstr ""
-
-#: classes/dlg.php:631
-#, 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 ""
-
-#: classes/dlg.php:657
-#: plugins/instances/init.php:207
-msgid "Instance"
-msgstr "Инсталляция"
-
-#: classes/dlg.php:666
-#: plugins/instances/init.php:218
-#: plugins/instances/init.php:315
-msgid "Instance URL"
-msgstr "URL инсталляции"
-
-#: classes/dlg.php:676
-#: plugins/instances/init.php:229
-#, fuzzy
-msgid "Access key:"
-msgstr "Уровень доступа:"
-
-#: classes/dlg.php:679
-#: plugins/instances/init.php:232
-#: plugins/instances/init.php:316
-#, fuzzy
-msgid "Access key"
-msgstr "Уровень доступа:"
-
-#: classes/dlg.php:683
-#: plugins/instances/init.php:236
-msgid "Use one access key for both linked instances."
-msgstr "Используйте один ключ доступа для обоих инсталляций"
-
-#: classes/dlg.php:691
-#: plugins/instances/init.php:244
-#, fuzzy
-msgid "Generate new key"
-msgstr "Генерировать канал"
-
-#: classes/dlg.php:695
-msgid "Create link"
-msgstr "Создать ссылку"
-
-#: classes/dlg.php:708
-msgid "Add one valid RSS feed per line (no feed detection is done)"
-msgstr ""
-
-#: classes/dlg.php:717
-msgid "Feeds to subscribe, One per line"
-msgstr ""
-
-#: classes/dlg.php:739
-#, fuzzy
-msgid "Feeds require authentication."
-msgstr "Этот канал требует авторизации."
-
-#: classes/feeds.php:68
-msgid "Visit the website"
-msgstr "Посетить официальный сайт"
-
-#: classes/feeds.php:83
-msgid "View as RSS feed"
-msgstr "Показать в формате RSS"
-
-#: classes/feeds.php:91
-msgid "Select:"
-msgstr "Выбрать:"
-
-#: classes/feeds.php:94
-msgid "Invert"
-msgstr "Инвертировать"
-
-#: classes/feeds.php:101
-#, fuzzy
-msgid "More..."
-msgstr "Идет загрузка помощи..."
-
-#: classes/feeds.php:103
-msgid "Selection toggle:"
-msgstr "Переключить выбранное:"
-
-#: classes/feeds.php:109
-msgid "Selection:"
-msgstr "Выбрано:"
-
-#: classes/feeds.php:112
-#, fuzzy
-msgid "Set score"
-msgstr "Оценка"
-
-#: classes/feeds.php:115
-msgid "Archive"
-msgstr "Архивировать"
-
-#: classes/feeds.php:117
-msgid "Move back"
-msgstr "Переместить назад"
-
-#: classes/feeds.php:118
-#: classes/pref/filters.php:246
-#: classes/pref/filters.php:294
-#: classes/pref/filters.php:688
-#: classes/pref/filters.php:715
-msgid "Delete"
-msgstr "Удалить"
-
-#: classes/feeds.php:125
-#: classes/feeds.php:130
-#: plugins/mailto/init.php:28
-#: plugins/mail/init.php:28
-msgid "Forward by email"
-msgstr "Отправить по почте"
-
-#: classes/feeds.php:134
-msgid "Feed:"
-msgstr "Канал:"
-
-#: classes/feeds.php:201
-#: classes/feeds.php:827
-msgid "Feed not found."
-msgstr "Канал не найден."
-
-#: classes/feeds.php:384
-#, fuzzy, php-format
-msgid "Imported at %s"
-msgstr "Импортировать"
-
-#: classes/feeds.php:531
-msgid "mark as read"
-msgstr "Отметить как прочитанные"
-
-#: classes/feeds.php:582
-#, fuzzy
-msgid "Collapse article"
-msgstr "Закрыть статью"
-
-#: classes/feeds.php:728
-msgid "No unread articles found to display."
-msgstr "Не найдено не прочитанных статей"
-
-#: classes/feeds.php:731
-msgid "No updated articles found to display."
-msgstr "Не найдено не прочитанных статей."
-
-#: classes/feeds.php:734
-msgid "No starred articles found to display."
-msgstr "Не найдено отмеченных статей"
-
-#: classes/feeds.php:738
-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:740
-msgid "No articles found to display."
-msgstr "Статей не найдено."
-
-#: classes/feeds.php:755
-#: classes/feeds.php:920
-#, php-format
-msgid "Feeds last updated at %s"
-msgstr "Последнее обновление в %s"
-
-#: classes/feeds.php:765
-#: classes/feeds.php:930
-msgid "Some feeds have update errors (click for details)"
-msgstr "Некоторые каналы не могут быть обновлены (щёлкните для подробностей)"
-
-#: classes/feeds.php:910
-msgid "No feed selected."
-msgstr "Канал не выбран."
-
-#: classes/backend.php:33
-msgid "Other interface tips are available in the Tiny Tiny RSS wiki."
-msgstr ""
-
-#: classes/backend.php:38
-msgid "Keyboard Shortcuts"
-msgstr "Горячие Клавиши"
-
-#: classes/backend.php:61
-msgid "Shift"
-msgstr ""
-
-#: classes/backend.php:64
-msgid "Ctrl"
-msgstr ""
-
-#: classes/backend.php:99
-msgid "Help topic not found."
-msgstr "Раздел помощи не найден."
-
-#: classes/opml.php:28
-#: classes/opml.php:33
-msgid "OPML Utility"
-msgstr "Утилита OPML"
-
-#: classes/opml.php:37
-msgid "Importing OPML..."
-msgstr "Импортирую OPML..."
-
-#: classes/opml.php:41
-msgid "Return to preferences"
-msgstr "Вернуться к настройкам"
-
-#: classes/opml.php:270
-#, fuzzy, php-format
-msgid "Adding feed: %s"
-msgstr "Добавляю фильтр %s"
-
-#: classes/opml.php:281
-#, fuzzy, php-format
-msgid "Duplicate feed: %s"
-msgstr "Метка уже существует: %s"
-
-#: classes/opml.php:295
-#, php-format
-msgid "Adding label %s"
-msgstr "Добавляю метку %s"
-
-#: classes/opml.php:298
-#, php-format
-msgid "Duplicate label: %s"
-msgstr "Метка уже существует: %s"
-
-#: classes/opml.php:310
-#, php-format
-msgid "Setting preference key %s to %s"
-msgstr "Устанавливаю ключ настроек %s в %s"
-
-#: classes/opml.php:339
-#, fuzzy
-msgid "Adding filter..."
-msgstr "Добавляю фильтр %s"
-
-#: classes/opml.php:416
-#, fuzzy, php-format
-msgid "Processing category: %s"
-msgstr "Поместить в категорию:"
-
-#: classes/opml.php:468
-msgid "Error: please upload OPML file."
-msgstr "Ошибка: пожалуйста загрузите OPML файл."
-
-#: classes/opml.php:475
-#: plugins/googlereaderimport/init.php:157
-msgid "Error while parsing document."
-msgstr "Ошибка при разборе документа."
-
-#: classes/pref/users.php:6
-#: plugins/instances/init.php:157
-msgid "Your access level is insufficient to open this tab."
-msgstr "Вашего уровня доступа недостаточно для открытия этой вкладки."
-
-#: classes/pref/users.php:27
-msgid "User details"
-msgstr "Подробнее..."
-
-#: classes/pref/users.php:41
-msgid "User not found"
-msgstr "Пользователь не найден"
-
-#: classes/pref/users.php:60
-#: classes/pref/users.php:422
-msgid "Registered"
-msgstr "Зарегистрирован"
-
-#: classes/pref/users.php:61
-msgid "Last logged in"
-msgstr "Последний вход"
-
-#: classes/pref/users.php:68
-msgid "Subscribed feeds count"
-msgstr "Количество подписанных каналов"
-
-#: classes/pref/users.php:72
-msgid "Subscribed feeds"
-msgstr "Подписан на каналы"
-
-#: classes/pref/users.php:122
-msgid "User Editor"
-msgstr "Редактор пользователей"
-
-#: classes/pref/users.php:158
-msgid "Access level: "
-msgstr "Уровень доступа:"
-
-#: classes/pref/users.php:171
-msgid "Change password to"
-msgstr "Изменить пароль на"
-
-#: classes/pref/users.php:177
-#: classes/pref/feeds.php:609
-#: classes/pref/feeds.php:833
-msgid "Options"
-msgstr "Опции:"
-
-#: classes/pref/users.php:180
-msgid "E-mail: "
-msgstr "E-mail: "
-
-#: classes/pref/users.php:258
-#, php-format
-msgid "Added user <b>%s</b> with password <b>%s</b>"
-msgstr "Добавлен пользователь <b>%s</b> с паролем <b>%s</b>"
-
-#: classes/pref/users.php:265
-#, php-format
-msgid "Could not create user <b>%s</b>"
-msgstr "Не могу добавить пользователя <b>%s</b>"
-
-#: classes/pref/users.php:269
-#, php-format
-msgid "User <b>%s</b> already exists."
-msgstr "Пользователь <b>%s</b> уже существует."
-
-#: classes/pref/users.php:291
-#, fuzzy, php-format
-msgid "Changed password of user <b>%s</b> to <b>%s</b>"
-msgstr "Пароль пользователя <b>%s</b> изменен на <b>%s</b>"
-
-#: classes/pref/users.php:293
-#, fuzzy, php-format
-msgid "Sending new password of user <b>%s</b> to <b>%s</b>"
-msgstr "Пароль пользователя <b>%s</b> изменен на <b>%s</b>"
-
-#: classes/pref/users.php:317
-msgid "[tt-rss] Password change notification"
-msgstr "[tt-rss] Уведомление о смене пароля"
-
-#: classes/pref/users.php:368
-msgid "Create user"
-msgstr "Добавить пользователя"
-
-#: classes/pref/users.php:372
-msgid "Details"
-msgstr "Подробнее"
-
-#: classes/pref/users.php:374
-#: classes/pref/filters.php:612
-#: plugins/instances/init.php:296
-msgid "Edit"
-msgstr "Редактировать"
-
-#: classes/pref/users.php:421
-msgid "Access Level"
-msgstr "Уровень доступа:"
-
-#: classes/pref/users.php:423
-msgid "Last login"
-msgstr "Последний вход"
-
-#: classes/pref/users.php:444
-#: plugins/instances/init.php:337
-msgid "Click to edit"
-msgstr "Щёлкните для редактирования"
-
-#: classes/pref/users.php:464
-msgid "No users defined."
-msgstr "Пользователи не определены."
-
-#: classes/pref/users.php:466
-msgid "No matching users found."
-msgstr "Подходящих пользователей не найдено."
-
-#: classes/pref/labels.php:22
-msgid "Caption"
-msgstr "Заголовок"
-
-#: classes/pref/labels.php:37
-msgid "Colors"
-msgstr "Цвета"
-
-#: classes/pref/labels.php:42
-msgid "Foreground:"
-msgstr "Передний план:"
-
-#: classes/pref/labels.php:42
-msgid "Background:"
-msgstr "Фон:"
-
-#: classes/pref/labels.php:232
-#, php-format
-msgid "Created label <b>%s</b>"
-msgstr "Добавлена метка <b>%s</b>"
-
-#: classes/pref/labels.php:287
-msgid "Clear colors"
-msgstr "Очистить цвета"
-
-#: classes/pref/filters.php:60
-#, fuzzy
-msgid "Articles matching this filter:"
-msgstr "Не найдено совпадений с фильтром."
-
-#: classes/pref/filters.php:97
-#, fuzzy
-msgid "No recent articles matching this filter have been found."
-msgstr "Не найдено совпадений с фильтром."
-
-#: classes/pref/filters.php:101
-msgid "Complex expressions might not give results while testing due to issues with database server regexp implementation."
-msgstr ""
-
-#: classes/pref/filters.php:229
-#: classes/pref/filters.php:671
-#: classes/pref/filters.php:786
-msgid "Match"
-msgstr "Искать"
-
-#: classes/pref/filters.php:243
-#: classes/pref/filters.php:291
-#: classes/pref/filters.php:685
-#: classes/pref/filters.php:712
-msgid "Add"
-msgstr "Добавить"
-
-#: classes/pref/filters.php:277
-#: classes/pref/filters.php:698
-#, fuzzy
-msgid "Apply actions"
-msgstr "Действия над каналом"
-
-#: classes/pref/filters.php:327
-#: classes/pref/filters.php:727
-msgid "Enabled"
-msgstr "Включен"
-
-#: classes/pref/filters.php:336
-#: classes/pref/filters.php:730
-#, fuzzy
-msgid "Match any rule"
-msgstr "Соответствие:"
-
-#: classes/pref/filters.php:345
-#: classes/pref/filters.php:733
-#, fuzzy
-msgid "Inverse matching"
-msgstr "Инвертировать фильтр"
-
-#: classes/pref/filters.php:357
-#: classes/pref/filters.php:740
-msgid "Test"
-msgstr "Проверить"
-
-#: classes/pref/filters.php:390
-#, fuzzy
-msgid "(inverse)"
-msgstr "(Инвертирован)"
-
-#: classes/pref/filters.php:389
-#, php-format
-msgid "%s on %s in %s %s"
-msgstr ""
-
-#: classes/pref/filters.php:609
-msgid "Combine"
-msgstr ""
-
-#: classes/pref/filters.php:619
-#: classes/pref/feeds.php:1317
-msgid "Rescore articles"
-msgstr "Заново оценить статьи"
-
-#: classes/pref/filters.php:743
-msgid "Create"
-msgstr "Создать"
-
-#: classes/pref/filters.php:798
-msgid "Inverse regular expression matching"
-msgstr ""
-
-#: classes/pref/filters.php:800
-msgid "on field"
-msgstr "по полю:"
-
-#: classes/pref/filters.php:806
-#: js/PrefFilterTree.js:29
-#: plugins/digest/digest.js:242
-msgid "in"
-msgstr "в"
-
-#: classes/pref/filters.php:819
-#, fuzzy
-msgid "Save rule"
-msgstr "Сохранить"
-
-#: classes/pref/filters.php:819
-#: js/functions.js:1069
-#, fuzzy
-msgid "Add rule"
-msgstr "Добавить метку..."
-
-#: classes/pref/filters.php:842
-msgid "Perform Action"
-msgstr "Выполнить действия"
-
-#: classes/pref/filters.php:868
-msgid "with parameters:"
-msgstr "с параметрами:"
-
-#: classes/pref/filters.php:886
-#, fuzzy
-msgid "Save action"
-msgstr "Действия над каналами"
-
-#: classes/pref/filters.php:886
-#: js/functions.js:1095
-#, fuzzy
-msgid "Add action"
-msgstr "Действия над каналом"
-
-#: classes/pref/prefs.php:17
-msgid "Old password cannot be blank."
-msgstr "Старый пароль не может быть пустым."
-
-#: classes/pref/prefs.php:22
-msgid "New password cannot be blank."
-msgstr "Новый пароль не может быть пустым."
-
-#: classes/pref/prefs.php:27
-msgid "Entered passwords do not match."
-msgstr "Пароли не совпадают."
-
-#: classes/pref/prefs.php:37
-msgid "Function not supported by authentication module."
-msgstr ""
-
-#: classes/pref/prefs.php:69
-msgid "The configuration was saved."
-msgstr "Конфигурация сохранена."
-
-#: classes/pref/prefs.php:83
-#, php-format
-msgid "Unknown option: %s"
-msgstr "Неизвестная опция: %s"
-
-#: classes/pref/prefs.php:97
-#, fuzzy
-msgid "Your personal data has been saved."
-msgstr "Пароль был изменен."
-
-#: classes/pref/prefs.php:137
-#, fuzzy
-msgid "Personal data / Authentication"
-msgstr "Авторизация"
-
-#: classes/pref/prefs.php:157
-msgid "Personal data"
-msgstr "Личные данные"
-
-#: classes/pref/prefs.php:167
-msgid "Full name"
-msgstr "Полное имя"
-
-#: classes/pref/prefs.php:171
-msgid "E-mail"
-msgstr "E-mail"
-
-#: classes/pref/prefs.php:177
-msgid "Access level"
-msgstr "Уровень доступа:"
-
-#: classes/pref/prefs.php:187
-msgid "Save data"
-msgstr "Сохранить"
-
-#: classes/pref/prefs.php:209
-msgid "Your password is at default value, please change it."
-msgstr "Используется пароль по умолчанию, пожалуйста, измените его."
-
-#: classes/pref/prefs.php:236
-msgid "Changing your current password will disable OTP."
-msgstr ""
-
-#: classes/pref/prefs.php:241
-msgid "Old password"
-msgstr "Старый пароль"
-
-#: classes/pref/prefs.php:244
-msgid "New password"
-msgstr "Новый пароль"
-
-#: classes/pref/prefs.php:249
-msgid "Confirm password"
-msgstr "Подтверждение пароля"
-
-#: classes/pref/prefs.php:259
-msgid "Change password"
-msgstr "Изменить пароль"
-
-#: classes/pref/prefs.php:265
-msgid "One time passwords / Authenticator"
-msgstr ""
-
-#: classes/pref/prefs.php:269
-msgid "One time passwords are currently enabled. Enter your current password below to disable."
-msgstr ""
-
-#: classes/pref/prefs.php:294
-#: classes/pref/prefs.php:345
-#, fuzzy
-msgid "Enter your password"
-msgstr "Некорректное имя пользователя или пароль"
-
-#: classes/pref/prefs.php:305
-#, fuzzy
-msgid "Disable OTP"
-msgstr "(Отключен)"
-
-#: classes/pref/prefs.php:311
-msgid "You will need a compatible Authenticator to use this. Changing your password would automatically disable OTP."
-msgstr ""
-
-#: classes/pref/prefs.php:313
-msgid "Scan the following code by the Authenticator application:"
-msgstr ""
-
-#: classes/pref/prefs.php:354
-msgid "I have scanned the code and would like to enable OTP"
-msgstr ""
-
-#: classes/pref/prefs.php:362
-#, fuzzy
-msgid "Enable OTP"
-msgstr "Включен"
-
-#: classes/pref/prefs.php:400
-msgid "Some preferences are only available in default profile."
-msgstr ""
-
-#: classes/pref/prefs.php:491
-#, fuzzy
-msgid "Customize"
-msgstr "Изменить пользовательские стили"
-
-#: classes/pref/prefs.php:558
-msgid "Register"
-msgstr "Регистрация"
-
-#: classes/pref/prefs.php:562
-msgid "Clear"
-msgstr ""
-
-#: classes/pref/prefs.php:568
-#, php-format
-msgid "Current server time: %s (UTC)"
-msgstr ""
-
-#: classes/pref/prefs.php:601
-msgid "Save configuration"
-msgstr "Сохранить конфигурацию"
-
-#: classes/pref/prefs.php:604
-msgid "Manage profiles"
-msgstr "Управление профилями"
-
-#: classes/pref/prefs.php:607
-msgid "Reset to defaults"
-msgstr "Сбросить настройки"
-
-#: classes/pref/prefs.php:631
-#: classes/pref/prefs.php:633
-msgid "Plugins"
-msgstr ""
-
-#: classes/pref/prefs.php:635
-msgid "You will need to reload Tiny Tiny RSS for plugin changes to take effect."
-msgstr ""
-
-#: classes/pref/prefs.php:637
-msgid "Download more plugins at tt-rss.org <a class=\"visibleLink\" target=\"_blank\" href=\"http://tt-rss.org/forum/viewforum.php?f=22\">forums</a> or <a target=\"_blank\" class=\"visibleLink\" href=\"http://tt-rss.org/wiki/Plugins\">wiki</a>."
-msgstr ""
-
-#: classes/pref/prefs.php:663
-msgid "System plugins"
-msgstr ""
-
-#: classes/pref/prefs.php:667
-#: classes/pref/prefs.php:721
-msgid "Plugin"
-msgstr ""
-
-#: classes/pref/prefs.php:668
-#: classes/pref/prefs.php:722
-#, fuzzy
-msgid "Description"
-msgstr "описание"
-
-#: classes/pref/prefs.php:669
-#: classes/pref/prefs.php:723
-msgid "Version"
-msgstr ""
-
-#: classes/pref/prefs.php:670
-#: classes/pref/prefs.php:724
-msgid "Author"
-msgstr ""
-
-#: classes/pref/prefs.php:699
-#: classes/pref/prefs.php:756
-msgid "more info"
-msgstr ""
-
-#: classes/pref/prefs.php:708
-#: classes/pref/prefs.php:765
-#, fuzzy
-msgid "Clear data"
-msgstr "Очистить данные канала."
-
-#: classes/pref/prefs.php:717
-msgid "User plugins"
-msgstr ""
-
-#: classes/pref/prefs.php:780
-#, fuzzy
-msgid "Enable selected plugins"
-msgstr "Разрешить иконки каналов"
-
-#: classes/pref/prefs.php:835
-#: classes/pref/prefs.php:853
-#, fuzzy
-msgid "Incorrect password"
-msgstr "Некорректное имя пользователя или пароль"
-
-#: classes/pref/feeds.php:12
-msgid "Check to enable field"
-msgstr "Проверить доступность поля"
-
-#: classes/pref/feeds.php:60
-#: classes/pref/feeds.php:208
-#: classes/pref/feeds.php:250
-#: classes/pref/feeds.php:256
-#: classes/pref/feeds.php:281
-#, fuzzy, php-format
-msgid "(%d feed)"
-msgid_plural "(%d feeds)"
-msgstr[0] "(%d каналов)"
-msgstr[1] "(%d каналов)"
-msgstr[2] "(%d каналов)"
-
-#: classes/pref/feeds.php:526
-msgid "Feed Title"
-msgstr "Заголовок"
-
-#: classes/pref/feeds.php:582
-#: classes/pref/feeds.php:808
-msgid "Article purging:"
-msgstr "Удаление сообщений:"
-
-#: classes/pref/feeds.php:605
-msgid "<b>Hint:</b> you need to fill in your login information if your feed requires authentication, except for Twitter feeds."
-msgstr ""
-
-#: classes/pref/feeds.php:621
-#: classes/pref/feeds.php:837
-msgid "Hide from Popular feeds"
-msgstr "Спрятать из списка популярных каналов"
-
-#: classes/pref/feeds.php:633
-#: classes/pref/feeds.php:843
-msgid "Include in e-mail digest"
-msgstr "Включить в e-mail дайджест"
-
-#: classes/pref/feeds.php:646
-#: classes/pref/feeds.php:849
-msgid "Always display image attachments"
-msgstr "Всегда показывать вложенные изображения"
-
-#: classes/pref/feeds.php:659
-#: classes/pref/feeds.php:857
-msgid "Do not embed images"
-msgstr ""
-
-#: classes/pref/feeds.php:672
-#: classes/pref/feeds.php:865
-msgid "Cache images locally"
-msgstr "Кэшировать изображения локально"
-
-#: classes/pref/feeds.php:684
-#: classes/pref/feeds.php:871
-msgid "Mark updated articles as unread"
-msgstr "Пометить все статьи как прочитанные?"
-
-#: classes/pref/feeds.php:690
-msgid "Icon"
-msgstr "Иконка"
-
-#: classes/pref/feeds.php:704
-msgid "Replace"
-msgstr "Заменить"
-
-#: classes/pref/feeds.php:723
-msgid "Resubscribe to push updates"
-msgstr "Переподписаться на PUSH обновления"
-
-#: classes/pref/feeds.php:730
-msgid "Resets PubSubHubbub subscription status for push-enabled feeds."
-msgstr "Сбрасывает статусподписки с помощью механизма PubSubHubbub"
-
-#: classes/pref/feeds.php:1111
-#: classes/pref/feeds.php:1164
-msgid "All done."
-msgstr "Всё выполнено."
-
-#: classes/pref/feeds.php:1219
-msgid "Feeds with errors"
-msgstr "Каналы с ошибками"
-
-#: classes/pref/feeds.php:1239
-msgid "Inactive feeds"
-msgstr "Неактивные каналы"
-
-#: classes/pref/feeds.php:1276
-msgid "Edit selected feeds"
-msgstr "Редактировать выбранные каналы"
-
-#: classes/pref/feeds.php:1278
-#: classes/pref/feeds.php:1292
-msgid "Reset sort order"
-msgstr "Сбросить сортировку"
-
-#: classes/pref/feeds.php:1280
-#: js/prefs.js:1764
-#, fuzzy
-msgid "Batch subscribe"
-msgstr "Отписаться"
-
-#: classes/pref/feeds.php:1285
-msgid "Categories"
-msgstr "Категории"
-
-#: classes/pref/feeds.php:1288
-#, fuzzy
-msgid "Add category"
-msgstr "Добавить категорию..."
-
-#: classes/pref/feeds.php:1290
-#, fuzzy
-msgid "(Un)hide empty categories"
-msgstr "Редактировать категории"
-
-#: classes/pref/feeds.php:1294
-#, fuzzy
-msgid "Remove selected"
-msgstr "Удалить выбранные фильтры?"
-
-#: classes/pref/feeds.php:1308
-msgid "More actions..."
-msgstr "Действия..."
-
-#: classes/pref/feeds.php:1312
-msgid "Manual purge"
-msgstr "Ручная очистка"
-
-#: classes/pref/feeds.php:1316
-msgid "Clear feed data"
-msgstr "Очистить данные канала."
-
-#: classes/pref/feeds.php:1367
-msgid "OPML"
-msgstr "OPML"
-
-#: classes/pref/feeds.php:1369
-msgid "Using OPML you can export and import your feeds, filters, labels and Tiny Tiny RSS settings."
-msgstr ""
-
-#: classes/pref/feeds.php:1371
-msgid "Only main settings profile can be migrated using OPML."
-msgstr "Только главный профиль настроек будет экспортирован в OPML."
-
-#: classes/pref/feeds.php:1384
-#, fuzzy
-msgid "Import my OPML"
-msgstr "Импортирую OPML..."
-
-#: classes/pref/feeds.php:1388
-#, fuzzy
-msgid "Filename:"
-msgstr "Полное имя"
-
-#: classes/pref/feeds.php:1390
-#, fuzzy
-msgid "Include settings"
-msgstr "Включить в e-mail дайджест"
-
-#: classes/pref/feeds.php:1394
-#, fuzzy
-msgid "Export OPML"
-msgstr "Экспортировать OPML"
-
-#: classes/pref/feeds.php:1398
-#, fuzzy
-msgid "Your OPML can be published publicly and can be subscribed by anyone who knows the URL below."
-msgstr "Опубликованные статьи экспортируется в качестве общего RSS канала и могут быть подписаны кем-либо ещё, кто знает URL, указанный ниже."
-
-#: classes/pref/feeds.php:1400
-msgid "Published OPML does not include your Tiny Tiny RSS settings, feeds that require authentication or feeds hidden from Popular feeds."
-msgstr ""
-
-#: classes/pref/feeds.php:1403
-#, fuzzy
-msgid "Display published OPML URL"
-msgstr "Публичная ссылка на OPML"
-
-#: classes/pref/feeds.php:1413
-#, fuzzy
-msgid "Firefox integration"
-msgstr "Интеграция в Firefox"
-
-#: classes/pref/feeds.php:1415
-msgid "This Tiny Tiny RSS site can be used as a Firefox Feed Reader by clicking the link below."
-msgstr "Этот сайт с Tiny Tiny RSS можно использовать в Firefox как агрегатор RSS. Для этого щёлкните по ссылке ниже."
-
-#: classes/pref/feeds.php:1422
-msgid "Click here to register this site as a feed reader."
-msgstr "Щёлкните здесь для регистрации сайта в роли RSS агрегатора"
-
-#: classes/pref/feeds.php:1430
-#, fuzzy
-msgid "Published & shared articles / Generated feeds"
-msgstr "Заново оценить статьи в выбранных каналах?"
-
-#: classes/pref/feeds.php:1432
-#, fuzzy
-msgid "Published articles and generated feeds"
-msgstr "Заново оценить статьи в выбранных каналах?"
-
-#: classes/pref/feeds.php:1434
-msgid "Published articles are exported as a public RSS feed and can be subscribed by anyone who knows the URL specified below."
-msgstr "Опубликованные статьи экспортируется в качестве общего RSS канала и могут быть подписаны кем-либо ещё, кто знает URL, указанный ниже."
-
-#: classes/pref/feeds.php:1440
-#, fuzzy
-msgid "Display URL"
-msgstr "показать теги"
-
-#: classes/pref/feeds.php:1443
-msgid "Clear all generated URLs"
-msgstr ""
-
-#: classes/pref/feeds.php:1445
-#, fuzzy
-msgid "Articles shared by URL"
-msgstr "Расшарить статью по ссылке"
-
-#: classes/pref/feeds.php:1447
-msgid "You can disable all articles shared by unique URLs here."
-msgstr ""
-
-#: classes/pref/feeds.php:1450
-#, fuzzy
-msgid "Unshare all articles"
-msgstr "Отмеченные"
-
-#: classes/pref/feeds.php:1528
-msgid "These feeds have not been updated with new content for 3 months (oldest first):"
-msgstr "Эти каналы не были обновлены в течение трех месяцев:"
-
-#: classes/pref/feeds.php:1565
-#: classes/pref/feeds.php:1635
-msgid "Click to edit feed"
-msgstr "Щёлкните для редактирования"
-
-#: classes/pref/feeds.php:1583
-#: classes/pref/feeds.php:1655
-msgid "Unsubscribe from selected feeds"
-msgstr "Отписаться от выбранных каналов?"
-
-#: classes/pref/feeds.php:1594
-msgid "These feeds have not been updated because of errors:"
-msgstr "Эти каналы не были обновлены из-за ошибок:"
-
-#: plugins/digest/digest_body.php:59
-#, fuzzy
-msgid "Your browser doesn't support Javascript, which is required for this application to function properly. Please check your browser settings."
-msgstr ""
-"Ваш браузер не поддерживает Javascript, который требуется\n"
-"\t\tдля функционала этой программы. Пожалуйста, проверьте\n"
-"\t\tнастройки вашего браузера."
-
-#: plugins/digest/digest_body.php:74
-msgid "Hello,"
-msgstr "Привет,"
-
-#: plugins/digest/digest_body.php:80
-msgid "Regular version"
-msgstr ""
-
-#: plugins/close_button/init.php:24
-msgid "Close article"
-msgstr "Закрыть статью"
-
-#: plugins/nsfw/init.php:32
-#: plugins/nsfw/init.php:43
-msgid "Not work safe (click to toggle)"
-msgstr ""
-
-#: plugins/nsfw/init.php:53
-msgid "NSFW Plugin"
-msgstr ""
-
-#: plugins/nsfw/init.php:80
-msgid "Tags to consider NSFW (comma-separated)"
-msgstr ""
-
-#: plugins/nsfw/init.php:101
-#, fuzzy
-msgid "Configuration saved."
-msgstr "Конфигурация сохранена."
-
-#: plugins/auth_internal/init.php:62
-#, fuzzy
-msgid "Please enter your one time password:"
-msgstr "Пожалуйста, укажите заметку для статьи:"
-
-#: plugins/auth_internal/init.php:185
-msgid "Password has been changed."
-msgstr "Пароль был изменен."
-
-#: plugins/auth_internal/init.php:187
-msgid "Old password is incorrect."
-msgstr "Старый пароль неправилен."
-
-#: plugins/mobile/mobile-functions.php:61
-#: plugins/mobile/mobile-functions.php:137
-#: plugins/mobile/mobile-functions.php:173
-#: plugins/mobile/mobile-functions.php:200
-#: plugins/mobile/mobile-functions.php:236
-#: plugins/mobile/mobile-functions.php:373
-#: plugins/mobile/prefs.php:29
-msgid "Home"
-msgstr ""
-
-#: plugins/mobile/mobile-functions.php:409
-msgid "Nothing found (click to reload feed)."
-msgstr ""
-
-#: plugins/mobile/login_form.php:52
-msgid "Open regular version"
-msgstr ""
-
-#: plugins/mobile/prefs.php:34
-#, fuzzy
-msgid "Enable categories"
-msgstr "Включить категории каналов"
-
-#: plugins/mobile/prefs.php:35
-#: plugins/mobile/prefs.php:40
-#: plugins/mobile/prefs.php:46
-#: plugins/mobile/prefs.php:51
-#: plugins/mobile/prefs.php:56
-#: plugins/mobile/prefs.php:61
-msgid "ON"
-msgstr ""
-
-#: plugins/mobile/prefs.php:35
-#: plugins/mobile/prefs.php:40
-#: plugins/mobile/prefs.php:46
-#: plugins/mobile/prefs.php:51
-#: plugins/mobile/prefs.php:56
-#: plugins/mobile/prefs.php:61
-msgid "OFF"
-msgstr ""
-
-#: plugins/mobile/prefs.php:39
-#, fuzzy
-msgid "Browse categories like folders"
-msgstr "Сбросить порядок категорий"
-
-#: plugins/mobile/prefs.php:45
-#, fuzzy
-msgid "Show images in posts"
-msgstr "Не показывать изображения в статьях"
-
-#: plugins/mobile/prefs.php:50
-#, fuzzy
-msgid "Hide read articles and feeds"
-msgstr "&nbsp;&nbsp;Показать/скрыть прочитанные"
-
-#: plugins/mobile/prefs.php:55
-#, fuzzy
-msgid "Sort feeds by unread count"
-msgstr "Сортировать каналы по количеству непрочитанных статей"
-
-#: plugins/mailto/init.php:52
-#: plugins/mailto/init.php:58
-#: plugins/mail/init.php:71
-#: plugins/mail/init.php:77
-msgid "[Forwarded]"
-msgstr ""
-
-#: plugins/mailto/init.php:52
-#: plugins/mail/init.php:71
-msgid "Multiple articles"
-msgstr "Все статьи"
-
-#: plugins/mailto/init.php:74
-msgid "Clicking the following link to invoke your mail client:"
-msgstr ""
-
-#: plugins/mailto/init.php:78
-#, fuzzy
-msgid "Forward selected article(s) by email."
-msgstr "Отмеченные"
-
-#: plugins/mailto/init.php:81
-msgid "You should be able to edit the message before sending in your mail client."
-msgstr ""
-
-#: plugins/mailto/init.php:86
-#, fuzzy
-msgid "Close this dialog"
-msgstr "Закрыть это окно"
-
-#: plugins/bookmarklets/init.php:22
-msgid "Bookmarklets"
-msgstr ""
-
-#: 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 ""
-
-#: plugins/bookmarklets/init.php:28
-#, fuzzy, php-format
-msgid "Subscribe to %s in Tiny Tiny RSS?"
-msgstr "Вернуться к Tiny Tiny RSS"
-
-#: plugins/bookmarklets/init.php:32
-#, fuzzy
-msgid "Subscribe in Tiny Tiny RSS"
-msgstr "Вернуться к Tiny Tiny RSS"
-
-#: plugins/bookmarklets/init.php:34
-msgid "Use this bookmarklet to publish arbitrary pages using Tiny Tiny RSS"
-msgstr ""
-
-#: plugins/import_export/init.php:64
-msgid "Import and export"
-msgstr ""
-
-#: plugins/import_export/init.php:66
-msgid "Article archive"
-msgstr "Архив статей"
-
-#: 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 ""
-
-#: plugins/import_export/init.php:71
-#, fuzzy
-msgid "Export my data"
-msgstr "Экспортировать данные"
-
-#: plugins/import_export/init.php:87
-msgid "Import"
-msgstr "Импортировать"
-
-#: plugins/import_export/init.php:221
-msgid "Could not import: incorrect schema version."
-msgstr "Не могу импортировать данные: некорректная версия схемы."
-
-#: plugins/import_export/init.php:226
-msgid "Could not import: unrecognized document format."
-msgstr "Не могу импортировать данные: неизвестынй формат данных."
-
-#: plugins/import_export/init.php:385
-msgid "Finished: "
-msgstr ""
-
-#: plugins/import_export/init.php:386
-#, fuzzy, php-format
-msgid "%d article processed, "
-msgid_plural "%d articles processed, "
-msgstr[0] "Редактировать заметку"
-msgstr[1] "Редактировать заметку"
-msgstr[2] "Редактировать заметку"
-
-#: plugins/import_export/init.php:387
-#, fuzzy, php-format
-msgid "%d imported, "
-msgid_plural "%d imported, "
-msgstr[0] "уже импортирован."
-msgstr[1] "уже импортирован."
-msgstr[2] "уже импортирован."
-
-#: plugins/import_export/init.php:388
-#, fuzzy, php-format
-msgid "%d feed created."
-msgid_plural "%d feeds created."
-msgstr[0] "Канал не выбран."
-msgstr[1] "Канал не выбран."
-msgstr[2] "Канал не выбран."
-
-#: plugins/import_export/init.php:393
-msgid "Could not load XML document."
-msgstr "Не могу загрузить XML документ."
-
-#: plugins/import_export/init.php:405
-#, fuzzy
-msgid "Prepare data"
-msgstr "Сохранить"
-
-#: plugins/import_export/init.php:426
-#, php-format
-msgid "Could not upload file. You might need to adjust upload_max_filesize in PHP.ini (current value = %s)"
-msgstr ""
-
-#: plugins/mail/init.php:92
-msgid "From:"
-msgstr "От:"
-
-#: plugins/mail/init.php:101
-msgid "To:"
-msgstr "Кому:"
-
-#: plugins/mail/init.php:114
-msgid "Subject:"
-msgstr "Заголовок:"
-
-#: plugins/mail/init.php:130
-msgid "Send e-mail"
-msgstr "Отправить письмо"
-
-#: plugins/note/init.php:28
-#: plugins/note/note.js:11
-msgid "Edit article note"
-msgstr "Редактировать заметку"
-
-#: plugins/example/init.php:39
-#, fuzzy
-msgid "Example Pane"
-msgstr "Примеры"
-
-#: plugins/example/init.php:70
-msgid "Sample value"
-msgstr ""
-
-#: plugins/example/init.php:76
-#, fuzzy
-msgid "Set value"
-msgstr "Отметить"
-
-#: plugins/googlereaderimport/init.php:72
-#, fuzzy
-msgid "No file uploaded."
-msgstr "Нет файла OPML для загрузки."
-
-#: plugins/googlereaderimport/init.php:149
-#, php-format
-msgid "All done. %d out of %d articles imported."
-msgstr ""
-
-#: plugins/googlereaderimport/init.php:153
-msgid "The document has incorrect format."
-msgstr ""
-
-#: plugins/googlereaderimport/init.php:322
-msgid "Import starred or shared items from Google Reader"
-msgstr ""
-
-#: plugins/googlereaderimport/init.php:326
-msgid "Paste your starred.json or shared.json into the form below."
-msgstr ""
-
-#: plugins/googlereaderimport/init.php:340
-msgid "Import my Starred items"
-msgstr ""
-
-#: plugins/instances/init.php:144
-msgid "Linked"
-msgstr "Связанные"
-
-#: plugins/instances/init.php:295
-#, fuzzy
-msgid "Link instance"
-msgstr "Редактировать теги"
-
-#: 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 ""
-
-#: plugins/instances/init.php:317
-msgid "Last connected"
-msgstr ""
-
-#: plugins/instances/init.php:318
-msgid "Status"
-msgstr ""
-
-#: plugins/instances/init.php:319
-#, fuzzy
-msgid "Stored feeds"
-msgstr "Больше каналов"
-
-#: plugins/share/init.php:27
-#, fuzzy
-msgid "Share by URL"
-msgstr "Расшарить статью по ссылке"
-
-#: plugins/share/init.php:49
-msgid "You can share this article by the following unique URL:"
-msgstr ""
-
-#: plugins/updater/init.php:317
-#: plugins/updater/init.php:334
-#: plugins/updater/updater.js:10
-#, fuzzy
-msgid "Update Tiny Tiny RSS"
-msgstr "Вернуться к Tiny Tiny RSS"
-
-#: plugins/updater/init.php:337
-#, fuzzy
-msgid "Your Tiny Tiny RSS installation is up to date."
-msgstr "Tiny Tiny RSS база данных обновлена."
-
-#: plugins/updater/init.php:347
-msgid "Do not close this dialog until updating is finished. Backup your tt-rss directory before continuing."
-msgstr ""
-
-#: plugins/updater/init.php:350
-#, fuzzy
-msgid "Ready to update."
-msgstr "Последнее обновление:"
-
-#: plugins/updater/init.php:355
-#, fuzzy
-msgid "Start update"
-msgstr "Последнее обновление:"
-
-#: js/feedlist.js:404
-#: js/feedlist.js:432
-#: plugins/digest/digest.js:26
-msgid "Mark all articles in %s as read?"
-msgstr "Отметить все статьи в %s как прочитанные?"
-
-#: js/feedlist.js:423
-#, fuzzy
-msgid "Mark all articles in %s older than 1 day as read?"
-msgstr "Отметить все статьи в %s как прочитанные?"
-
-#: js/feedlist.js:426
-#, fuzzy
-msgid "Mark all articles in %s older than 1 week as read?"
-msgstr "Отметить все статьи в %s как прочитанные?"
-
-#: js/feedlist.js:429
-#, fuzzy
-msgid "Mark all articles in %s older than 2 weeks as read?"
-msgstr "Отметить все статьи в %s как прочитанные?"
-
-#: js/functions.js:92
-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 ""
-
-#: js/functions.js:214
-msgid "close"
-msgstr ""
-
-#: js/functions.js:627
-#, fuzzy
-msgid "Date syntax appears to be correct:"
-msgstr "Старый пароль неправилен."
-
-#: js/functions.js:630
-#, fuzzy
-msgid "Date syntax is incorrect."
-msgstr "Старый пароль неправилен."
-
-#: js/functions.js:724
-#, fuzzy
-msgid "Upload complete."
-msgstr "Обновлённые статьи"
-
-#: js/functions.js:748
-#, fuzzy
-msgid "Remove stored feed icon?"
-msgstr "Удалить сохранённые данные"
-
-#: js/functions.js:753
-#, fuzzy
-msgid "Removing feed icon..."
-msgstr "Канал удаляется..."
-
-#: js/functions.js:758
-#, fuzzy
-msgid "Feed icon removed."
-msgstr "Канал не найден."
-
-#: js/functions.js:780
-#, fuzzy
-msgid "Please select an image file to upload."
-msgstr "Пожалуйста выберите только один канал."
-
-#: js/functions.js:782
-msgid "Upload new icon for this feed?"
-msgstr ""
-
-#: js/functions.js:783
-#, fuzzy
-msgid "Uploading, please wait..."
-msgstr "Идет загрузка..."
-
-#: js/functions.js:799
-msgid "Please enter label caption:"
-msgstr "Пожалуйста, введите заголовок метки:"
-
-#: js/functions.js:804
-msgid "Can't create label: missing caption."
-msgstr "Не могу создать метку: отсутствует заголовок."
-
-#: js/functions.js:847
-msgid "Subscribe to Feed"
-msgstr "Подписаться на канал"
-
-#: js/functions.js:874
-#, fuzzy
-msgid "Subscribed to %s"
-msgstr "Подписаны каналы:"
-
-#: js/functions.js:879
-msgid "Specified URL seems to be invalid."
-msgstr ""
-
-#: js/functions.js:882
-msgid "Specified URL doesn't seem to contain any feeds."
-msgstr ""
-
-#: js/functions.js:935
-#, fuzzy
-msgid "Couldn't download the specified URL: %s"
-msgstr "Не могу подписаться: нет URL"
-
-#: js/functions.js:939
-#, fuzzy
-msgid "You are already subscribed to this feed."
-msgstr "Нельзя отписаться от категории."
-
-#: js/functions.js:1069
-#, fuzzy
-msgid "Edit rule"
-msgstr "Фильтры"
-
-#: js/functions.js:1095
-#, fuzzy
-msgid "Edit action"
-msgstr "Действия над каналом"
-
-#: js/functions.js:1132
-msgid "Create Filter"
-msgstr "Создать фильтр"
-
-#: js/functions.js:1247
-msgid "Reset subscription? Tiny Tiny RSS will try to subscribe to the notification hub again on next feed update."
-msgstr ""
-
-#: js/functions.js:1258
-#, fuzzy
-msgid "Subscription reset."
-msgstr "Подписаться на канал..."
-
-#: js/functions.js:1268
-#: js/tt-rss.js:619
-msgid "Unsubscribe from %s?"
-msgstr "Отписаться от %s?"
-
-#: js/functions.js:1271
-msgid "Removing feed..."
-msgstr "Канал удаляется..."
-
-#: js/functions.js:1379
-#, fuzzy
-msgid "Please enter category title:"
-msgstr "Пожалуйста, укажите заметку для статьи:"
-
-#: js/functions.js:1410
-msgid "Generate new syndication address for this feed?"
-msgstr ""
-
-#: js/functions.js:1414
-#: js/prefs.js:1234
-msgid "Trying to change address..."
-msgstr "Попытка изменить адрес.."
-
-#: js/functions.js:1601
-#: js/tt-rss.js:396
-#: js/tt-rss.js:600
-msgid "You can't edit this kind of feed."
-msgstr "Вы не можете редактировать этот канал."
-
-#: js/functions.js:1616
-#, fuzzy
-msgid "Edit Feed"
-msgstr "Редактировать канал"
-
-#: js/functions.js:1622
-#: js/prefs.js:194
-#: js/prefs.js:749
-#, fuzzy
-msgid "Saving data..."
-msgstr "Идёт сохранение..."
-
-#: js/functions.js:1654
-#, fuzzy
-msgid "More Feeds"
-msgstr "Больше каналов"
-
-#: js/functions.js:1715
-#: js/functions.js:1825
-#: 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 "Нет выбранных каналов."
-
-#: js/functions.js:1757
-msgid "Remove selected feeds from the archive? Feeds with stored articles will not be removed."
-msgstr ""
-
-#: js/functions.js:1796
-#, fuzzy
-msgid "Feeds with update errors"
-msgstr "Ошибки обновления"
-
-#: js/functions.js:1807
-#: js/prefs.js:1192
-#, fuzzy
-msgid "Remove selected feeds?"
-msgstr "Удалить выбранные фильтры?"
-
-#: js/functions.js:1810
-#: js/prefs.js:1195
-#, fuzzy
-msgid "Removing selected feeds..."
-msgstr "Выбранные фильтры удаляются..."
-
-#: js/functions.js:1908
-msgid "Help"
-msgstr "Помощь"
-
-#: js/PrefFeedTree.js:47
-#, fuzzy
-msgid "Edit category"
-msgstr "Редактировать категории"
-
-#: js/PrefFeedTree.js:54
-#, fuzzy
-msgid "Remove category"
-msgstr "Создать категорию"
-
-#: js/PrefFilterTree.js:32
-#, fuzzy
-msgid "Inverse"
-msgstr "(Инвертирован)"
-
-#: js/prefs.js:55
-msgid "Please enter login:"
-msgstr "Пожалуйста, введите логин:"
-
-#: js/prefs.js:62
-msgid "Can't create user: no login specified."
-msgstr "Не могу добавить пользователя: не указан логин."
-
-#: js/prefs.js:66
-msgid "Adding user..."
-msgstr "Пользователь добавляется..."
-
-#: js/prefs.js:117
-#, fuzzy
-msgid "Edit Filter"
-msgstr "Фильтры"
-
-#: js/prefs.js:164
-#, fuzzy
-msgid "Remove filter?"
-msgstr "Удалить фильтр %s?"
-
-#: js/prefs.js:169
-msgid "Removing filter..."
-msgstr "Удаление фильтра..."
-
-#: js/prefs.js:279
-msgid "Remove selected labels?"
-msgstr "Удалить выбранные метки?"
-
-#: js/prefs.js:282
-msgid "Removing selected labels..."
-msgstr "Выбранные метки удаляются..."
-
-#: js/prefs.js:295
-#: js/prefs.js:1396
-msgid "No labels are selected."
-msgstr "Нет выбранных меток."
-
-#: js/prefs.js:309
-msgid "Remove selected users? Neither default admin nor your account will be removed."
-msgstr ""
-
-#: js/prefs.js:312
-msgid "Removing selected users..."
-msgstr "Выбранные пользователи удаляются..."
-
-#: js/prefs.js:326
-#: js/prefs.js:507
-#: js/prefs.js:528
-#: js/prefs.js:567
-msgid "No users are selected."
-msgstr "Нет выбранных пользователей."
-
-#: js/prefs.js:344
-msgid "Remove selected filters?"
-msgstr "Удалить выбранные фильтры?"
-
-#: js/prefs.js:347
-msgid "Removing selected filters..."
-msgstr "Выбранные фильтры удаляются..."
-
-#: js/prefs.js:359
-#: js/prefs.js:597
-#: js/prefs.js:616
-msgid "No filters are selected."
-msgstr "Нет выбранных фильтров."
-
-#: js/prefs.js:378
-msgid "Unsubscribe from selected feeds?"
-msgstr "Отписаться от выбранных каналов?"
-
-#: js/prefs.js:382
-msgid "Unsubscribing from selected feeds..."
-msgstr "Выбранные каналы удаляются..."
-
-#: js/prefs.js:412
-msgid "Please select only one feed."
-msgstr "Пожалуйста выберите только один канал."
-
-#: js/prefs.js:418
-msgid "Erase all non-starred articles in selected feed?"
-msgstr "Стереть все не отмеченные статьи в выбранном канале?"
-
-#: js/prefs.js:421
-msgid "Clearing selected feed..."
-msgstr "Очистка выбранных каналов..."
-
-#: js/prefs.js:440
-msgid "How many days of articles to keep (0 - use default)?"
-msgstr "Сколько дней хранить статьи (0 - по умолчанию)?"
-
-#: js/prefs.js:443
-#, fuzzy
-msgid "Purging selected feed..."
-msgstr "Очистка выбранных каналов..."
-
-#: js/prefs.js:478
-msgid "Login field cannot be blank."
-msgstr "Поле логина не может быть пустым."
-
-#: js/prefs.js:482
-msgid "Saving user..."
-msgstr "Идет сохранение пользователя..."
-
-#: js/prefs.js:512
-#: js/prefs.js:533
-#: js/prefs.js:572
-msgid "Please select only one user."
-msgstr "Пожалуйста выберите только одного пользователя."
-
-#: js/prefs.js:537
-msgid "Reset password of selected user?"
-msgstr "Сбросить пароль выбранного пользователя?"
-
-#: js/prefs.js:540
-msgid "Resetting password for selected user..."
-msgstr "Пароль пользователя сбрасывается..."
-
-#: js/prefs.js:602
-msgid "Please select only one filter."
-msgstr "Пожалуйста выберите только один фильтр."
-
-#: js/prefs.js:620
-#, fuzzy
-msgid "Combine selected filters?"
-msgstr "Удалить выбранные фильтры?"
-
-#: js/prefs.js:623
-#, fuzzy
-msgid "Joining filters..."
-msgstr "Удаление фильтра..."
-
-#: js/prefs.js:684
-#, fuzzy
-msgid "Edit Multiple Feeds"
-msgstr "Редактор канала"
-
-#: js/prefs.js:708
-msgid "Save changes to selected feeds?"
-msgstr "Сохранить изменения выбранных каналов?"
-
-#: js/prefs.js:797
-msgid "OPML Import"
-msgstr "Импорт OPML"
-
-#: js/prefs.js:824
-msgid "Please choose an OPML file first."
-msgstr "Пожалуйста выберите файл OPML."
-
-#: js/prefs.js:827
-#: plugins/import_export/import_export.js:115
-#: plugins/googlereaderimport/init.js:45
-#, fuzzy
-msgid "Importing, please wait..."
-msgstr "Идет загрузка..."
-
-#: js/prefs.js:980
-msgid "Reset to defaults?"
-msgstr "Сбросить настройки?"
-
-#: js/prefs.js:1099
-msgid "Remove category %s? Any nested feeds would be placed into Uncategorized."
-msgstr ""
-
-#: js/prefs.js:1105
-#, fuzzy
-msgid "Removing category..."
-msgstr "Создать категорию"
-
-#: js/prefs.js:1126
-msgid "Remove selected categories?"
-msgstr "Удалить выбранные категории?"
-
-#: js/prefs.js:1129
-msgid "Removing selected categories..."
-msgstr "Выбранные категории удаляются..."
-
-#: js/prefs.js:1142
-msgid "No categories are selected."
-msgstr "Нет выбранных категорий."
-
-#: js/prefs.js:1150
-#, fuzzy
-msgid "Category title:"
-msgstr "Редактор категорий"
-
-#: js/prefs.js:1154
-#, fuzzy
-msgid "Creating category..."
-msgstr "Создать фильтр..."
-
-#: js/prefs.js:1181
-msgid "Feeds without recent updates"
-msgstr "Давно не обновлявшиеся каналы"
-
-#: js/prefs.js:1230
-msgid "Replace current OPML publishing address with a new one?"
-msgstr "Изменить текущий адрес публикации OPML на новый?"
-
-#: js/prefs.js:1319
-msgid "Clearing feed..."
-msgstr "Очистка канала..."
-
-#: js/prefs.js:1339
-msgid "Rescore articles in selected feeds?"
-msgstr "Заново оценить статьи в выбранных каналах?"
-
-#: js/prefs.js:1342
-#, fuzzy
-msgid "Rescoring selected feeds..."
-msgstr "Очистка выбранных каналов..."
-
-#: js/prefs.js:1362
-msgid "Rescore all articles? This operation may take a lot of time."
-msgstr "Оценить заново все статьи? Эта операция может продолжаться длительное время."
-
-#: js/prefs.js:1365
-msgid "Rescoring feeds..."
-msgstr "Переоценка каналов..."
-
-#: js/prefs.js:1382
-#, fuzzy
-msgid "Reset selected labels to default colors?"
-msgstr "Сбросить метку цветов, на цвета по умолчанию?"
-
-#: js/prefs.js:1419
-msgid "Settings Profiles"
-msgstr "Профили настроек"
-
-#: js/prefs.js:1428
-msgid "Remove selected profiles? Active and default profiles will not be removed."
-msgstr ""
-
-#: js/prefs.js:1431
-#, fuzzy
-msgid "Removing selected profiles..."
-msgstr "Выбранные фильтры удаляются..."
-
-#: js/prefs.js:1446
-msgid "No profiles are selected."
-msgstr "Профиль не выбран"
-
-#: js/prefs.js:1454
-#: js/prefs.js:1507
-msgid "Activate selected profile?"
-msgstr "Активировать выбранный профиль?"
-
-#: js/prefs.js:1470
-#: js/prefs.js:1523
-msgid "Please choose a profile to activate."
-msgstr "Пожалуйста выберите какой-нибудь профиль."
-
-#: js/prefs.js:1475
-#, fuzzy
-msgid "Creating profile..."
-msgstr "Создать профиль"
-
-#: js/prefs.js:1531
-msgid "This will invalidate all previously generated feed URLs. Continue?"
-msgstr ""
-
-#: js/prefs.js:1534
-#: js/prefs.js:1553
-#, fuzzy
-msgid "Clearing URLs..."
-msgstr "Очистка канала..."
-
-#: js/prefs.js:1541
-#, fuzzy
-msgid "Generated URLs cleared."
-msgstr "Создать новую ссылку"
-
-#: js/prefs.js:1550
-msgid "This will invalidate all previously shared article URLs. Continue?"
-msgstr ""
-
-#: js/prefs.js:1560
-msgid "Shared URLs cleared."
-msgstr ""
-
-#: js/prefs.js:1648
-msgid "Label Editor"
-msgstr "Редактор Меток"
-
-#: js/prefs.js:1770
-#, fuzzy
-msgid "Subscribing to feeds..."
-msgstr "Подписаться на канал..."
-
-#: js/prefs.js:1807
-msgid "Clear stored data for this plugin?"
-msgstr ""
-
-#: js/tt-rss.js:124
-msgid "Mark all articles as read?"
-msgstr "Пометить все статьи как прочитанные?"
-
-#: js/tt-rss.js:130
-msgid "Marking all feeds as read..."
-msgstr "Помечаю все каналы как прочитанные..."
-
-#: js/tt-rss.js:355
-#, fuzzy
-msgid "Please enable mail plugin first."
-msgstr "Пожалуйста выберите какой-нибудь канал."
-
-#: js/tt-rss.js:461
-#, fuzzy
-msgid "Please enable embed_original plugin first."
-msgstr "Пожалуйста выберите какой-нибудь канал."
-
-#: js/tt-rss.js:608
-msgid "You can't unsubscribe from the category."
-msgstr "Нельзя отписаться от категории."
-
-#: js/tt-rss.js:613
-#: js/tt-rss.js:769
-msgid "Please select some feed first."
-msgstr "Пожалуйста выберите какой-нибудь канал."
-
-#: js/tt-rss.js:764
-msgid "You can't rescore this kind of feed."
-msgstr "Вы не можете снова оценить этот канал."
-
-#: js/tt-rss.js:774
-msgid "Rescore articles in %s?"
-msgstr "Установить оценку статьям в %s?"
-
-#: js/tt-rss.js:777
-msgid "Rescoring articles..."
-msgstr "Переоценка статей..."
-
-#: js/tt-rss.js:911
-#, fuzzy
-msgid "New version available!"
-msgstr "Доступная новая версия Tiny Tiny RSS!"
-
-#: js/viewfeed.js:106
-#, fuzzy
-msgid "Cancel search"
-msgstr "Отмена"
-
-#: js/viewfeed.js:440
-#: plugins/digest/digest.js:258
-#: plugins/digest/digest.js:714
-msgid "Unstar article"
-msgstr "Не отмеченные"
-
-#: js/viewfeed.js:445
-#: plugins/digest/digest.js:260
-#: plugins/digest/digest.js:718
-msgid "Star article"
-msgstr "Отмеченные"
-
-#: js/viewfeed.js:478
-#: plugins/digest/digest.js:263
-#: plugins/digest/digest.js:749
-msgid "Unpublish article"
-msgstr "Не публиковать"
-
-#: js/viewfeed.js:679
-#: js/viewfeed.js:707
-#: js/viewfeed.js:734
-#: js/viewfeed.js:797
-#: js/viewfeed.js:831
-#: js/viewfeed.js:968
-#: js/viewfeed.js:1011
-#: js/viewfeed.js:1064
-#: js/viewfeed.js:2108
-#: plugins/mailto/init.js:7
-#: plugins/mail/mail.js:7
-msgid "No articles are selected."
-msgstr "Нет выбранных статей."
-
-#: js/viewfeed.js:948
-msgid "Mark all visible articles in %s as read?"
-msgstr "Отметить все видимые статьи в %s как прочитанные?"
-
-#: js/viewfeed.js:976
-#, fuzzy
-msgid "Delete %d selected article in %s?"
-msgid_plural "Delete %d selected articles in %s?"
-msgstr[0] "Отметить %d выбранные статьи в %s как прочитанные?"
-msgstr[1] "Отметить %d выбранные статьи в %s как прочитанные?"
-msgstr[2] "Отметить %d выбранные статьи в %s как прочитанные?"
-
-#: js/viewfeed.js:978
-#, fuzzy
-msgid "Delete %d selected article?"
-msgid_plural "Delete %d selected articles?"
-msgstr[0] "Удалить %d выбранных статей?"
-msgstr[1] "Удалить %d выбранных статей?"
-msgstr[2] "Удалить %d выбранных статей?"
-
-#: js/viewfeed.js:1020
-#, fuzzy
-msgid "Archive %d selected article in %s?"
-msgid_plural "Archive %d selected articles in %s?"
-msgstr[0] "Архивировать %d выбранных статей в %s?"
-msgstr[1] "Архивировать %d выбранных статей в %s?"
-msgstr[2] "Архивировать %d выбранных статей в %s?"
-
-#: js/viewfeed.js:1023
-#, fuzzy
-msgid "Move %d archived article back?"
-msgid_plural "Move %d archived articles back?"
-msgstr[0] "Переместить %d архивированных статей назад?"
-msgstr[1] "Переместить %d архивированных статей назад?"
-msgstr[2] "Переместить %d архивированных статей назад?"
-
-#: js/viewfeed.js:1025
-msgid "Please note that unstarred articles might get purged on next feed update."
-msgstr ""
-
-#: js/viewfeed.js:1070
-#, fuzzy
-msgid "Mark %d selected article in %s as read?"
-msgid_plural "Mark %d selected articles in %s as read?"
-msgstr[0] "Отметить %d выбранные статьи в %s как прочитанные?"
-msgstr[1] "Отметить %d выбранные статьи в %s как прочитанные?"
-msgstr[2] "Отметить %d выбранные статьи в %s как прочитанные?"
-
-#: js/viewfeed.js:1094
-msgid "Edit article Tags"
-msgstr "Редактировать теги"
-
-#: js/viewfeed.js:1100
-msgid "Saving article tags..."
-msgstr "Сохранить теги статьи..."
-
-#: js/viewfeed.js:1337
-msgid "No article is selected."
-msgstr "Статья не выбрана"
-
-#: js/viewfeed.js:1372
-msgid "No articles found to mark"
-msgstr "Статей для отметки не найдено."
-
-#: js/viewfeed.js:1374
-#, fuzzy
-msgid "Mark %d article as read?"
-msgid_plural "Mark %d articles as read?"
-msgstr[0] "Отметить %d статью(ей) как прочитанные?"
-msgstr[1] "Отметить %d статью(ей) как прочитанные?"
-msgstr[2] "Отметить %d статью(ей) как прочитанные?"
-
-#: js/viewfeed.js:1884
-msgid "Open original article"
-msgstr "Показать оригинальное содержимое статьи"
-
-#: js/viewfeed.js:1890
-#, fuzzy
-msgid "Display article URL"
-msgstr "показать теги"
-
-#: js/viewfeed.js:1909
-#, fuzzy
-msgid "Toggle marked"
-msgstr "Изм. отмеченное"
-
-#: js/viewfeed.js:1995
-msgid "Remove label"
-msgstr "Удалить метку"
-
-#: js/viewfeed.js:2019
-msgid "Playing..."
-msgstr "Проигрываю..."
-
-#: js/viewfeed.js:2020
-msgid "Click to pause"
-msgstr "Пауза"
-
-#: js/viewfeed.js:2077
-#, fuzzy
-msgid "Please enter new score for selected articles:"
-msgstr "Пожалуйста, укажите заметку для статьи:"
-
-#: js/viewfeed.js:2119
-#, fuzzy
-msgid "Please enter new score for this article:"
-msgstr "Пожалуйста, укажите заметку для статьи:"
-
-#: js/viewfeed.js:2152
-#, fuzzy
-msgid "Article URL:"
-msgstr "Все статьи"
-
-#: plugins/digest/digest.js:72
-#, fuzzy
-msgid "Mark %d displayed article as read?"
-msgid_plural "Mark %d displayed articles as read?"
-msgstr[0] "Отметить %d статью(ей) как прочитанные?"
-msgstr[1] "Отметить %d статью(ей) как прочитанные?"
-msgstr[2] "Отметить %d статью(ей) как прочитанные?"
-
-#: plugins/digest/digest.js:290
-#, fuzzy
-msgid "Error: unable to load article."
-msgstr "Ошибка: пожалуйста загрузите OPML файл."
-
-#: plugins/digest/digest.js:464
-#, fuzzy
-msgid "Click to expand article."
-msgstr "Щёлкните чтобы развернуть статью"
-
-#: plugins/digest/digest.js:535
-#, fuzzy
-msgid "%d more..."
-msgid_plural "%d more..."
-msgstr[0] "Идет загрузка помощи..."
-msgstr[1] "Идет загрузка помощи..."
-msgstr[2] "Идет загрузка помощи..."
-
-#: plugins/digest/digest.js:542
-#, fuzzy
-msgid "No unread feeds."
-msgstr "&nbsp;&nbsp;Показать/скрыть прочитанные"
-
-#: plugins/digest/digest.js:649
-#, fuzzy
-msgid "Load more..."
-msgstr "Идет загрузка помощи..."
-
-#: plugins/embed_original/init.js:6
-msgid "Sorry, your browser does not support sandboxed iframes."
-msgstr ""
-
-#: plugins/mailto/init.js:21
-#: plugins/mail/mail.js:21
-#, fuzzy
-msgid "Forward article by email"
-msgstr "Отмеченные"
-
-#: plugins/import_export/import_export.js:13
-msgid "Export Data"
-msgstr "Экспортировать данные"
-
-#: plugins/import_export/import_export.js:40
-msgid "Finished, exported %d article. You can download the data <a class='visibleLink' href='%u'>here</a>."
-msgid_plural "Finished, exported %d articles. You can download the data <a class='visibleLink' href='%u'>here</a>."
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-
-#: plugins/import_export/import_export.js:93
-msgid "Data Import"
-msgstr "Импортировать данные"
-
-#: plugins/import_export/import_export.js:112
-msgid "Please choose the file first."
-msgstr "Пожалуйста выберите файл."
-
-#: plugins/note/note.js:17
-#, fuzzy
-msgid "Saving article note..."
-msgstr "Сохранить теги статьи..."
-
-#: plugins/googlereaderimport/init.js:18
-msgid "Google Reader Import"
-msgstr ""
-
-#: plugins/googlereaderimport/init.js:42
-#, fuzzy
-msgid "Please choose a file first."
-msgstr "Пожалуйста выберите файл."
-
-#: plugins/instances/instances.js:10
-#, fuzzy
-msgid "Link Instance"
-msgstr "Редактировать теги"
-
-#: plugins/instances/instances.js:73
-#, fuzzy
-msgid "Edit Instance"
-msgstr "Редактировать теги"
-
-#: plugins/instances/instances.js:122
-#, fuzzy
-msgid "Remove selected instances?"
-msgstr "Удалить выбранные фильтры?"
-
-#: plugins/instances/instances.js:125
-#, fuzzy
-msgid "Removing selected instances..."
-msgstr "Выбранные фильтры удаляются..."
-
-#: plugins/instances/instances.js:139
-#: plugins/instances/instances.js:151
-#, fuzzy
-msgid "No instances are selected."
-msgstr "Нет выбранных фильтров."
-
-#: plugins/instances/instances.js:156
-#, fuzzy
-msgid "Please select only one instance."
-msgstr "Пожалуйста выберите только один фильтр."
-
-#: plugins/share/share.js:10
-msgid "Share article by URL"
-msgstr "Расшарить статью по ссылке"
-
-#: 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 "Date"
-#~ msgstr "Дата"
-
-#~ msgid "Score"
-#~ msgstr "Оценка"
-
-#, fuzzy
-#~ msgid "Share on identi.ca"
-#~ msgstr "Заголовок"
-
-#, fuzzy
-#~ msgid "Flattr this article."
-#~ msgstr "Отмеченные"
-
-#, fuzzy
-#~ msgid "Share on Google+"
-#~ msgstr "Заголовок"
-
-#, fuzzy
-#~ msgid "Share on Twitter"
-#~ msgstr "Заголовок"
-
-#, fuzzy
-#~ msgid "Show additional preferences"
-#~ msgstr "Закрыть настройки"
-
-#, fuzzy
-#~ msgid "Back to feeds"
-#~ msgstr "Щёлкните для редактирования"
-
-#, fuzzy
-#~ msgid "Clearing credentials..."
-#~ msgstr "Очистить данные канала."
-
-#~ msgid "Updated"
-#~ msgstr "Обновлено"
-
-#~ 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 ""
-#~ "Ваш браузер не поддерживает Javascript, который требуется\n"
-#~ "\t\tдля функционала этой программы. Пожалуйста, проверьте\n"
-#~ "\t\tнастройки вашего браузера."
-
-#~ msgid "Notifying <b>%s</b>."
-#~ msgstr "Уведомление <b>%s</b>."
-
-#~ msgid "Yes"
-#~ msgstr "Да"
-
-#~ msgid "No"
-#~ msgstr "Нет"
-
-#~ msgid "Comments?"
-#~ msgstr "Комментарии?"
-
-#~ msgid "Move between feeds"
-#~ msgstr "Перемещаться между каналами"
-
-#~ msgid "Move between articles"
-#~ msgstr "Перемещаться между статьями"
-
-#~ msgid "Active article actions"
-#~ msgstr "Действия над текущей статьёй"
-
-#~ msgid "Dismiss read articles"
-#~ msgstr "Скрыть прочитанные статьи"
-
-#~ msgid "Mark articles below/above active one as read"
-#~ msgstr "Отметить статью выше/ниже текущей, как прочитанную"
-
-#~ msgid "Scroll article content"
-#~ msgstr "Прокрутить содержимое статьи"
-
-#~ msgid "Other actions"
-#~ msgstr "Другие действия:"
-
-#~ msgid "Display this help dialog"
-#~ msgstr "Показать этот диалог помощи"
-
-#~ msgid "Multiple articles actions"
-#~ msgstr "Действия над несколькими статьями"
-
-#, fuzzy
-#~ msgid "Select starred articles"
-#~ msgstr "Выбрать непрочитанные статьи"
-
-#~ msgid "Feed actions"
-#~ msgstr "Действия над каналом"
-
-#~ msgid "If viewing category, (un)collapse it"
-#~ msgstr "Если котегория видна, (раз)свернуть её"
-
-#~ msgid "Press any key to close this window."
-#~ msgstr "Нажмите любую клавишу для закрытия этого окна"
-
-#~ msgid "My Feeds"
-#~ msgstr "Мои каналы"
-
-#~ msgid "Other Feeds"
-#~ msgstr "Другие каналы"
-
-#~ msgid "Panel actions"
-#~ msgstr "Действия над каналами"
-
-#~ msgid "Top 25 feeds"
-#~ msgstr "Лучшие 25 каналов"
-
-#~ msgid "Edit feed categories"
-#~ msgstr "Редактировать категории канала"
-
-#~ msgid "Focus search (if present)"
-#~ msgstr "Фокус на поиск (если поиск показан)"
-
-#~ msgid "<b>Note:</b> not all actions may be available, depending on Tiny Tiny RSS configuration and your access level."
-#~ msgstr "<b>Замечание:</b> не все действия могут быть доступны. Это зависит от конфигурации Tiny Tiny RSS и вашего уровня доступа."
-
-#~ msgid "Open article in new tab"
-#~ msgstr "Открыть статью в новом табе"
-
-#~ msgid "Right-to-left content"
-#~ msgstr "Язык канала пишется справа налево"
-
-#, fuzzy
-#~ msgid "Cache content locally"
-#~ msgstr "Кэшировать изображения локально"
-
-#~ msgid "Mark posts as updated on content change"
-#~ msgstr "При изменении текста статьи, помечать ее как обновленную"
-
-#~ msgid "Loading..."
-#~ msgstr "Идет загрузка..."
-
-#~ msgid "View in a tt-rss tab"
-#~ msgstr "Открыть статью в новой закладке tt-rss"
-
-#~ msgid "Magpie"
-#~ msgstr "Magpie"
-
-#~ msgid "SimplePie"
-#~ msgstr "SimplePie"
-
-#~ msgid "using"
-#~ msgstr "использование"
-
-#, fuzzy
-#~ msgid "match on"
-#~ msgstr "соответствие:"
-
-#~ msgid "Title or content"
-#~ msgstr "Заголовок или содержимое"
-
-#, fuzzy
-#~ msgid "Your request could not be completed."
-#~ msgstr "Не полностью заполнена ваша регистрационная информация."
-
-#~ msgid "Feed update has been scheduled."
-#~ msgstr "Обновление канала запланировано"
-
-#~ msgid "Can't update this kind of feed."
-#~ msgstr "Вы не можете обновить этот канал."
-
-#, fuzzy
-#~ msgid "Original article"
-#~ msgstr "Показать оригинальное содержимое статьи"
-
-#, fuzzy
-#~ msgid "Update feed"
-#~ msgstr "Обновить все каналы"
-
-#, fuzzy
-#~ msgid "With subcategories"
-#~ msgstr "Редактировать категории"
-
-#~ msgid "<li>Adding category <b>%s</b>.</li>"
-#~ msgstr "<li>Добавляется категория <b>%s</b>.</li>"
-
-#~ msgid "Duplicate filter %s"
-#~ msgstr "Фильтр %s уже существует"
-
-#~ msgid "OK"
-#~ msgstr "OK"
-
-#~ msgid "before"
-#~ msgstr "перед"
-
-#~ msgid "after"
-#~ msgstr "после"
-
-#~ msgid "Check it"
-#~ msgstr "Проверить"
-
-#~ msgid "Apply to category"
-#~ msgstr "Применить к категории"
-
-#~ msgid "Category <b>$%s</b> already exists in the database."
-#~ msgstr "Категория <b>$%s</b> уже существует."
-
-#~ msgid "No feed categories defined."
-#~ msgstr "Категории отсутствуют."
-
-#, fuzzy
-#~ msgid "Remove selected categories"
-#~ msgstr "Удалить выбранные категории?"
-
-#~ msgid "<b>Hint:</b> you can drag feeds and categories around."
-#~ msgstr "Вы можете менять категории и каналы местами"
-
-#, fuzzy
-#~ msgid "Twitter"
-#~ msgstr "Заголовок"
-
-#~ msgid "Created filter <b>%s</b>"
-#~ msgstr "Добавлен фильтр <b>%s</b>"
-
-#~ msgid "Attachment:"
-#~ msgstr "Вложение:"
-
-#~ msgid "Subscribing to feed..."
-#~ msgstr "Подписаться на канал..."
-
-#, fuzzy
-#~ msgid "Filter Test Results"
-#~ msgstr "Выражение"
-
-#~ msgid "Feed Categories"
-#~ msgstr "Категории"
-
-#~ msgid "When \"Mark as read\" button is clicked in toolbar, automatically open next feed with unread articles."
-#~ msgstr "После выбора опции \"Отметить как прочитанное\" в верхней панели, автоматически открывать следующий канал с не прочитанными статьями."
-
-#, fuzzy
-#~ msgid "Uses server timezone"
-#~ msgstr "Часовой пояс"
-
-#~ msgid "About..."
-#~ msgstr "О программе..."
-
-#~ msgid "Importing using DOMXML."
-#~ msgstr "Импортирую OPML (с помощью расширения DOMXML)..."
-
-#~ msgid "Importing using DOMDocument."
-#~ msgstr "Импортирую OPML (с помощью расширения DOMDocument)..."
-
-#~ msgid "DOMXML extension is not found. It is required for PHP versions below 5."
-#~ msgstr "Расширение DOMXML не найдено. Оно необходимо для версий PHP старее 5."
-
-#, fuzzy
-#~ msgid "Cache images locally (SimplePie only)"
-#~ msgstr "Кэшировать изображения локально"
-
-#~ msgid "Note: Only main settings profile can be migrated using OPML."
-#~ msgstr "Только главный профиль настроек будет экспортирован в OPML."
-
-#, fuzzy
-#~ msgid "Publish"
-#~ msgstr "Опубликован"
-
-#~ msgid "Changed password of user <b>%s</b>."
-#~ msgstr "Пароль пользователя <b>%s</b> изменен."
-
-#~ msgid "Content filtering"
-#~ msgstr "Фильтровать содержимое"
-
-#~ msgid "Tiny Tiny RSS has support for filtering (or processing) articles. Filtering is done once, when new article is imported to the database from the newsfeed, specified field is matched against regular expression and some action is taken. Regular expression matching is case-insensitive."
-#~ msgstr "Tiny Tiny RSS поддерживает фильтрацию (обработку) статей. Фильтрация выполняется однажды, когда новая статья импортируется в базу данных из новостного канала, затем ищется совпадение с заданным регулярным выражением и выполняется заданное действие. Регулярное выражение не чувствительно к регистру."
-
-#~ msgid "Supported actions are: filter (do not import) article, mark article as read, set starred, assign tag(s), and set score. Filters can be defined globally and for some specific feed."
-#~ msgstr "Поддерживаются события: фильтр (не импорт) статьи, отметить статью как прочитанную, пометить статью, назначить тег, и установить оценку. Фильтры могут быть определены глобально и локально для некоторых специфических каналов."
-
-#~ msgid "Multiple and inverse matching are supported. All matching filters are considered when article is being imported and all actions executed in sequence. Inverse matching reverts matching result, e.g. filter matching XYZZY in title with inverse flag will match all articles, except those containing string XYZZY in title."
-#~ msgstr "Составные и инверсионные фильтры поддерживаются. Все совпадения фильтров обсчитываются при импорте статьей и все действия выполняются последовательно. Инверсное совпадение возвращает результат совпадения, т.е. фильтр совпадающий с XYZZY в заголовке с инверсным флагом, отфильтрует все статьи кроме тех, где заголовок содержит строку XYZZY."
-
-#~ msgid "See also:"
-#~ msgstr "Смотри также:"
-
-#~ msgid "short_desc"
-#~ msgstr "краткое описание"
-
-#, fuzzy
-#~ msgid "Remove:"
-#~ msgstr "Удалить"
-
-#, fuzzy
-#~ msgid "Assign:"
-#~ msgstr "Применить метку:"
-
-#~ msgid "Toggle category reordering mode"
-#~ msgstr "Переключить изменение режима категории"
-
-#~ msgid "Update all feeds"
-#~ msgstr "Обновить все каналы"
-
-#~ msgid "Sort by name or unread count"
-#~ msgstr "Сортировать по имени или количеству непрочитанных"
-
-#, fuzzy
-#~ msgid "feeds"
-#~ msgstr "Каналы"
-
-#, fuzzy
-#~ msgid "headlines"
-#~ msgstr "Последние заголовки:"
-
-#~ msgid "Click to expand article"
-#~ msgstr "Щёлкните чтобы развернуть статью"
-
-#, fuzzy
-#~ msgid "Unable to load article."
-#~ msgstr "Ошибка: пожалуйста загрузите OPML файл."
-
-#~ msgid "Update post on checksum change"
-#~ msgstr "Обновлять статью при изменении контрольной суммы"
-
-#~ msgid "Use more accessible date/time format for headlines"
-#~ msgstr "Использовать более удобный формат отображения даты/времени"
-
-#~ msgid "Set articles as unread on update"
-#~ msgstr "Установить статьи как не прочитанные при обновлении"
-
-#~ msgid "Importing OPML (using DOMXML extension)..."
-#~ msgstr "Импортирую OPML (с помощью расширения DOMXML)..."
-
-#~ msgid "Importing OPML (using DOMDocument extension)..."
-#~ msgstr "Импортирую OPML (с помощью расширения DOMDocument)..."
-
-#~ msgid "Error: can't find body element."
-#~ msgstr "Ошибка: не могу найти тело элемента"
-
-#, fuzzy
-#~ msgid "No profiles selected."
-#~ msgstr "Статья не выбрана"
-
-#~ msgid "Unknown error"
-#~ msgstr "Неизвестная ошибка"
-
-#~ msgid "Could not display feed (query failed). Please check label match syntax or local configuration."
-#~ msgstr "Не могу показать канал (ошибка в запросе). Пожалуйста проверьте синтаксис или локальную конфигурацию."
-
-#~ msgid "Publish article with a note"
-#~ msgstr "Опубликовать статью с заметкой"
-
-#, fuzzy
-#~ msgid "View article"
-#~ msgstr "Отфильтровать статью"
-
-#, fuzzy
-#~ msgid "Server error while trying to query feed URLs."
-#~ msgstr "Ошибка при попытке загрузить больше заголовков"
-
-#, fuzzy
-#~ msgid "Subscribed to %d feed(s)."
-#~ msgstr "Подписаны каналы:"
-
-#, fuzzy
-#~ msgid "Fatal Exception"
-#~ msgstr "Фатальная Ошибка"
-
-#~ msgid "audio/mpeg"
-#~ msgstr "audio/mpeg"
-
-#~ msgid "Enable offline reading"
-#~ msgstr "Разрешить чтение оффлайн"
-
-#~ msgid "Synchronize new articles for offline reading using Google Gears."
-#~ msgstr "Синхронизация новых статей для чтения оффлайн, использую Google Gears."
-
-#~ msgid "Default article limit"
-#~ msgstr "Количество статей по умолчанию"
-
-#~ msgid "Default limit for articles to display, any custom number you like (0 - disables)."
-#~ msgstr "По умолчанию ограничивать количество статей для показа. Любое число, какое вам нравится (0 - выключить)"
-
-#~ msgid "Enable search toolbar"
-#~ msgstr "Разрешить панель поиска"
-
-#~ msgid "Open article links in new browser window"
-#~ msgstr "Открыть ссылку на статью в новом окне браузера"
-
-#~ msgid "Link to user stylesheet to override default style, disabled if empty."
-#~ msgstr "Ссылка на пользовательский файл стилей замещает файл стилей по умолчанию, запрещает если пусто"
-
-#~ msgid "Hide feedlist"
-#~ msgstr "Спрятать список каналов"
-
-#~ msgid "This option hides feedlist and allows it to be toggled on the fly, useful for small screens."
-#~ msgstr "Эта опция скрывает список каналов и позволяет его переключать на лету, удобно для маленьких экранов"
-
-#~ msgid "Enable labels"
-#~ msgstr "Включить метки"
-
-#~ msgid "Experimental support for virtual feeds based on user crafted SQL queries. This feature is highly experimental and at this point not user friendly. Use with caution."
-#~ msgstr "Экспериментальная поддержка виртуальных каналов основана на пользовательских группировках SQL запросов. Эта возможность строго экспериментальная и не удобна в работе. Использовать с осторожностью."
-
-#~ msgid "Show additional information in feedlist"
-#~ msgstr "Показывать расширенную информацию в списке каналов"
-
-#~ msgid "Prefer more accurate feedlist counters to UI speed"
-#~ msgstr "Предпочитать более точные счётчики списка каналов для скорости пользовательского интерфейса"
-
-#~ msgid "Enable inline MP3 player"
-#~ msgstr "Разрешить встроенный MP3 плеер"
-
-#~ msgid "Enable the Flash-based XSPF Player to play MP3-format podcast enclosures."
-#~ msgstr "Разрешить XSPF Flash плеер для проигрывания подкастов в MP3 формате"
-
-#, fuzzy
-#~ msgid "Activate"
-#~ msgstr "Адаптивно"
-
-#~ msgid "You are running the latest version of Tiny Tiny RSS. The fact that you are seeing this dialog is probably a bug."
-#~ msgstr "Вы запустили последнюю версию Tiny Tiny RSS. Если вы видите этот диалог, скорее всего обозначает ошибку."
-
-#~ msgid "Feed Browser"
-#~ msgstr "Обзор Каналов"
-
-#~ msgid "Update Errors"
-#~ msgstr "Ошибки обновления"
-
-#~ msgid "Show last article times"
-#~ msgstr "Показать дату последней статьи"
-
-#~ msgid "Last&nbsp;Article"
-#~ msgstr "Последняя&nbsp;статья"
-
-#, fuzzy
-#~ msgid "You don't have any subscribed feeds."
-#~ msgstr "Нельзя отписаться от категории."
-
-#, fuzzy
-#~ msgid "No matching feeds found."
-#~ msgstr "Не найдено совпадений с фильтром."
-
-#~ msgid "Filter Editor"
-#~ msgstr "Редактор фильтров"
-
-#~ msgid "Field"
-#~ msgstr "Поле"
-
-#~ msgid "Params"
-#~ msgstr "Параметры:"
-
-#~ msgid "No filters defined."
-#~ msgstr "Фильтры отсутствуют."
-
-#~ msgid "Click to change color"
-#~ msgstr "Щёлкните для изменения цвета"
-
-#~ msgid "No labels defined."
-#~ msgstr "Метки отсутствуют."
-
-#~ msgid "No matching labels found."
-#~ msgstr "Не найдено совпадений с метками."
-
-#~ msgid "custom color:"
-#~ msgstr "пользовательский цвет:"
-
-#~ msgid "Can't add filter: nothing to match on."
-#~ msgstr "Не могу добавить фильтр: нет соответствия."
-
-#~ msgid "Can't subscribe: no feed URL given."
-#~ msgstr "Не могу подписаться: нет URL"
-
-#~ msgid "Error: No feed URL given."
-#~ msgstr "Ошибка: Канал не отдаёт URL."
-
-#~ msgid "Error: Invalid feed URL."
-#~ msgstr "Ошибка: Не верный URL канала."
-
-#, fuzzy
-#~ msgid "Can't add profile: no name specified."
-#~ msgstr "Не могу добавить категорию без имени"
-
-#~ msgid "Can't add category: no name specified."
-#~ msgstr "Не могу добавить категорию без имени"
-
-#~ msgid "Save current configuration?"
-#~ msgstr "Сохранить конфигурацию"
-
-#~ msgid "Please enter new label foreground color:"
-#~ msgstr "Пожалуйста, введите новую метку цвета переднего плана:"
-
-#~ msgid "Please enter new label background color:"
-#~ msgstr "Пожалуйста, введите новую метку цвета фона:"
-
-#~ msgid "Saved filter <b>%s</b>"
-#~ msgstr "Фильтр <b>%s</b> сохранен"
-
-#~ msgid "Tags"
-#~ msgstr "Теги"
-
-#~ msgid "Show article summary in new window"
-#~ msgstr "Показать детали статьи в новом окне"
-
-#~ msgid "toggle unread"
-#~ msgstr "переключить непрочитанные"
-
-#~ msgid "(remove)"
-#~ msgstr "(удалить)"
-
-#~ msgid "Offline reading"
-#~ msgstr "Оффлайн чтение"
-
-#~ msgid "Cancel synchronization"
-#~ msgstr "Отменить синхронизацию"
-
-#~ msgid "Synchronize"
-#~ msgstr "Синхронизация"
-
-#~ msgid "Remove stored data"
-#~ msgstr "Удалить сохранённые данные"
-
-#~ msgid "Go offline"
-#~ msgstr "Перейти в оффлайн"
-
-#~ msgid "Go online"
-#~ msgstr "Перейти в онлайн"
-
-#~ msgid "Reset UI layout"
-#~ msgstr "Сбросить панели"
-
-#~ msgid "Drag me to resize panels"
-#~ msgstr "Потяни за меня для изменения размера панелей"
-
-#~ msgid "Showing most popular tags "
-#~ msgstr "Самые популярные теги "
-
-#, fuzzy
-#~ msgid "more tags"
-#~ msgstr "нет тегов"
-
-#~ msgid "Link to feed:"
-#~ msgstr "Связать с:"
-
-#~ msgid "Not linked"
-#~ msgstr "Нет связей"
-
-#~ msgid "(linked to %s)"
-#~ msgstr "(ссылка на %s)"
-
-#~ msgid "E-mail has been changed."
-#~ msgstr "E-mail был изменен."
-
-#~ msgid "Change e-mail"
-#~ msgstr "Изменить e-mail"
-
-#~ msgid "Please wait..."
-#~ msgstr "Пожалуйста, подождите..."
-
-#~ msgid "Data for offline browsing has not been downloaded yet."
-#~ msgstr "Данные для оффлайн обзора не были загружены."
-
-#~ msgid "Synchronizing feeds..."
-#~ msgstr "Синхронизация каналов..."
-
-#~ msgid "Synchronizing categories..."
-#~ msgstr "Синхронизация категорий..."
-
-#~ msgid "Synchronizing labels..."
-#~ msgstr "Синхронизация меток..."
-
-#~ msgid "Synchronizing articles..."
-#~ msgstr "Синхронизация статей..."
-
-#~ msgid "Synchronizing articles (%d)..."
-#~ msgstr "Синхронизация статей (%d)..."
-
-#~ msgid "Last sync: %s"
-#~ msgstr "Последняя синхронизация: %s"
-
-#~ msgid "Last sync: Error receiving data."
-#~ msgstr "Последняя синхронизация: Ошибка получения данных."
-
-#~ msgid "Synchronizing..."
-#~ msgstr "Синхронизация..."
-
-#~ msgid "Switch Tiny Tiny RSS into offline mode?"
-#~ msgstr "Переключить Tiny Tiny RSS в оффлайн режим?"
-
-#~ msgid "Tiny Tiny RSS will reload. Go online?"
-#~ msgstr "Tiny Tiny RSS будет перезагружен. Переходим в онлайн?"
-
-#~ msgid "Last sync: Cancelled."
-#~ msgstr "Последняя синхронизация: Отменена."
-
-#~ msgid "This will remove all offline data stored by Tiny Tiny RSS on this computer. Continue?"
-#~ msgstr "Это удалит все оффлайн данные, хранящиеся на этом компьютере. Продолжит?"
-
-#~ msgid "Tiny Tiny RSS has trouble accessing its server. Would you like to go offline?"
-#~ msgstr "У Tiny Tiny RSS есть проблемы с доступом к серверу. Хотели бы вы перейти в режим оффлайн?"
-
-#~ msgid "Reset category order?"
-#~ msgstr "Сбросить порядок категорий?"
-
-#~ msgid "No feeds to display."
-#~ msgstr "Нет каналов для отображения."
-
-#~ msgid "Published Articles"
-#~ msgstr "Опубликованные статьи"
-
-#, fuzzy
-#~ msgid "Your Published articles feed URL is:"
-#~ msgstr "Ссылка на общий канал со статьями."
-
-#~ msgid "Replace current publishing address with a new one?"
-#~ msgstr "Изменить текущий адрес публикации на новый?"
-
-#~ msgid "Limit bandwidth usage"
-#~ msgstr "Ограничить скорость передачи"
-
-#~ msgid "Remove selected users?"
-#~ msgstr "Удалить выбранных пользователей?"
-
-#~ msgid "Adding feed..."
-#~ msgstr "Канал добавляется..."
-
-#~ msgid "Assign score to article:"
-#~ msgstr "Привязать счёт к статье:"
-
-#~ msgid "Assign selected articles to label?"
-#~ msgstr "Привязать выбранную статью к метке?"
-
-#~ msgid "Can't open article: received invalid article link"
-#~ msgstr "Не могу открыть статью: получена неверная ссылка на статью"
-
-#~ msgid "Category reordering disabled"
-#~ msgstr "Отключено изменение порядка категорий"
-
-#~ msgid "Category reordering enabled"
-#~ msgstr "Включено изменение порядка категорий"
-
-#, fuzzy
-#~ msgid "Changing password..."
-#~ msgstr "Изменить пароль"
-
-#~ msgid "comments"
-#~ msgstr "комментарии"
-
-#~ msgid "Could not change feed URL."
-#~ msgstr "Не получилось изменить URL канала."
-
-#~ msgid "Could not display article (missing XML object)"
-#~ msgstr "Не могу показать статью (отсутствует XML объект)"
-
-#~ msgid "Could not update headlines (missing XML data)"
-#~ msgstr "Не получается обновить заголовки (отсутствуют XML данные)"
-
-#~ msgid "Could not update headlines (missing XML object)"
-#~ msgstr "Не могу обновить заголовки (отсутствует XML объект)"
-
-#~ msgid "Failed to load article in new window"
-#~ msgstr "Ошибка загрузки статей в новом окне"
-
-#~ msgid "Failed to open window for the article"
-#~ msgstr "Ошибка открытия окна для статьи"
-
-#~ msgid "Local data removed."
-#~ msgstr "Локальные данные удалены."
-
-#~ msgid "Mark as read:"
-#~ msgstr "Пометить как прочит.:"
-
-#~ msgid "Please wait until operation finishes."
-#~ msgstr "Пожалуйста подождите пока операция завершится."
-
-#~ msgid "Remove selected articles from label?"
-#~ msgstr "Удалить выбранные статьи из меток?"
-
-#~ msgid "Removing offline data..."
-#~ msgstr "Удаление оффлайн данных..."
-
-#~ msgid "Rescore last 100 articles in selected feeds?"
-#~ msgstr "Переоценить последние 100 статей в выбранных каналах?"
-
-#~ msgid "Saving feeds..."
-#~ msgstr "Сохраняются каналы..."
-
-#~ msgid "Saving filter..."
-#~ msgstr "Идет сохранение фильтра..."
-
-#~ msgid "Selection"
-#~ msgstr "Выбранные"
-
-#~ msgid "Tiny Tiny RSS is in offline mode."
-#~ msgstr "Tiny Tiny RSS в оффлайн режиме."
-
-#~ msgid "Trying to change e-mail..."
-#~ msgstr "Идет изменение e-mail..."
-
-#~ msgid "You have to synchronize some articles before going into offline mode."
-#~ msgstr "Нужно синхронизировать несколько статей перед переходом в оффлайн режим."
-
-#~ msgid "You won't be able to access offline version of Tiny Tiny RSS until you switch it into offline mode again. Go online?"
-#~ msgstr "Вы не сможете перейти в оффлайн режим Tiny Tiny RSS до тех пор, пока не переключитесь в оффлайн снова. Выходим в онлайн?"
-
-#~ msgid "Can't open article: received invalid XML"
-#~ msgstr "Не могу открыть статью: получен неверный XML"
-
-#~ msgid "Changing category of selected feeds..."
-#~ msgstr "Идет изменение категории..."
-
-#~ msgid "Erase all non-starred articles in %s?"
-#~ msgstr "Стереть все не отмеченные статьи в %s?"
-
-#~ msgid "Trying to change password..."
-#~ msgstr "Идет сохранение пароля..."
-
-#~ msgid "You can't clear this type of feed."
-#~ msgstr "Вы не можете очистить этот канал."
-
-#~ msgid "Adding category <b>%s</b>...<br>"
-#~ msgstr "Добавляется категория <b>%s</b>...<br>"
-
-#~ msgid "Done."
-#~ msgstr "Готово."
-
-#~ msgid "The configuration was reset to defaults."
-#~ msgstr "Настройки были сброшены по-умолчанию."
-
-#~ msgid "Themes"
-#~ msgstr "Темы"
-
-#~ msgid "Change theme"
-#~ msgstr "Изменить тему"
-
-#, fuzzy
-#~ msgid "Hide read items"
-#~ msgstr "&nbsp;&nbsp;Показать/скрыть прочитанные"
-
-#, fuzzy
-#~ msgid "Remove selected feeds from archive?"
-#~ msgstr "Удалить выбранные статьи из меток?"
-
-#~ msgid "Searched for"
-#~ msgstr "Поиск"
-
-#~ msgid "More feeds..."
-#~ msgstr "Больше каналов..."
-
-#~ msgid "Toggle Feedlist"
-#~ msgstr "Переключить Список Каналов"
-
-#~ msgid "Search:"
-#~ msgstr "Искать:"
-
-#~ msgid "Order:"
-#~ msgstr "Порядок:"
-
-#~ msgid "browse more"
-#~ msgstr "еще"
-
-#~ msgid "Feed browser is administratively disabled."
-#~ msgstr "Другие каналы отключены администратором"
-
-#~ msgid "Show"
-#~ msgstr "Показать"
-
-#~ msgid "Hide from \"Other Feeds\""
-#~ msgstr "Спрятать из \"Других каналов\""
-
-#~ msgid "Unable to delete non empty feed categories."
-#~ msgstr "Не могу удалить не пустую категорию"
-
-#~ msgid "(Hidden)"
-#~ msgstr "(Скрыт)"
-
-#~ msgid "Recategorize"
-#~ msgstr "Изменить категорию"
-
-#~ msgid "Generate another link"
-#~ msgstr "Создать другую ссылку"
-
-#~ msgid "Back"
-#~ msgstr "Назад"
-
-#~ msgid "View:"
-#~ msgstr "Показать:"
-
-#~ msgid "Page"
-#~ msgstr "Страница"
-
-#~ msgid "Tags:"
-#~ msgstr "Теги:"
-
-#~ msgid "Mark as unread"
-#~ msgstr "Отметить как прочитанные"
-
-#~ msgid "Where:"
-#~ msgstr "Где:"
-
-#~ msgid "Internal error: Function not implemented"
-#~ msgstr "Внутренняя ошибка: Функция не реализована"
-
-#, fuzzy
-#~ msgid "Click to view"
-#~ msgstr "Щёлкните для редактирования"
-
-#~ msgid "This program requires XmlHttpRequest "
-#~ msgstr "Этой программе нужен XmlHttpRequest "
-
-#~ msgid "This program requires cookies "
-#~ msgstr "Этой программе нужны включённые куки"
-
-#~ msgid "&nbsp;&nbsp;Keyboard shortcuts"
-#~ msgstr "&nbsp;&nbsp;Горячие клавиши"
-
-#~ msgid "filter_type_descr"
-#~ msgstr "описание типа фильтра"
-
-#~ msgid "action_description"
-#~ msgstr "описание действия"
-
-#~ msgid "Can't add user: no login specified."
-#~ msgstr "Не могу добавить пользователя без логина"
-
-#~ msgid "Can't create label: missing SQL expression."
-#~ msgstr "Не могу создать метку: отсутствует SQL выражение."
-
-#~ msgid "Saving label..."
-#~ msgstr "Идет сохранение метки..."
-
-#~ msgid "Please select only one label."
-#~ msgstr "Пожалуйста выберите только одну метку."
-
-#~ msgid "Please select only one category."
-#~ msgstr "Пожалуйста выберите только одну категорию."
-
-#~ msgid "Address changed."
-#~ msgstr "Адрес изменен."
-
-#~ msgid "Rescore articles in all feeds? This operation may take a lot of time."
-#~ msgstr "Оценить заново все статьи в каналах? Эта операция может продолжаться длительное время."
-
-#, fuzzy
-#~ msgid "Restart in offline mode"
-#~ msgstr "Неудачная регистрация."
-
-#~ msgid "MySQL Charset Updater"
-#~ msgstr "Кодировка обновлений MySQL"
-
-#~ msgid "This script is for Tiny Tiny RSS installations with MySQL backend only."
-#~ msgstr "Этот скрипт для инсталяции Tiny Tiny RSS только с MySQL бекендом."
-
-#~ msgid ""
-#~ "This script will convert your Tiny Tiny RSS database to UTF-8. \n"
-#~ "\t\t\tDepending on current database charset you may experience data corruption (lost accent characters, etc.). \n"
-#~ "\t\t\tAfter update, you'll have to set <b>MYSQL_CHARSET</b> option in config.php to 'utf8'."
-#~ msgstr ""
-#~ "Этот скрипт переконвертирует вашу базу данных Tiny Tiny RSS в кодировку UTF-8. \n"
-#~ "\t\t\tЗависит от текущей кодировки базы данных и может испортить данные (потерянные символы знака ударения, умляуты, и т.д.) \n"
-#~ "\t\t\tПосле обновления, вам нужно установить опцию <b>MYSQL_CHARSET</b> в файле config.php в 'utf8'."
-
-#~ msgid "Converting database..."
-#~ msgstr "Преобразование базы данных..."
-
-#~ msgid ""
-#~ "<b>Fatal Error</b>: You forgot to copy \n"
-#~ "\t\t<b>config.php-dist</b> to <b>config.php</b> and edit it.\n"
-#~ msgstr ""
-#~ "<b>Фатальная ошибка</b>: Вы забыли скопировать \n"
-#~ "\t\t<b>config.php-dist</b> в <b>config.php</b> и отредактировать его.\n"
-
-#~ msgid "config: your config file version is incorrect. See config.php-dist.\n"
-#~ msgstr "config: версия вашего файла конфигурации не корректна. Смотрите config.php-dist.\n"
-
-#~ msgid ""
-#~ "<b>Fatal error</b>: RSS_BACKEND_TYPE is deprecated. Please remove this\n"
-#~ "\t\t\toption from config.php\n"
-#~ msgstr ""
-#~ "<b>Фатальная ошибка</b>: RSS_BACKEND_TYPE устарел. Пожалуйста удалите эту\n"
-#~ "\t\t\tопцию из config.php\n"
-
-#~ msgid ""
-#~ "<b>Fatal Error</b>: XML Import/Export tools (<b>xml-export.php</b>\n"
-#~ "\t\tand <b>xml-import.php</b>) could be used maliciously. Please remove them \n"
-#~ "\t\tfrom your TT-RSS instance.\n"
-#~ msgstr ""
-#~ "<b>Фатальная ошибка</b>: Инструменты Импорта/Экспорта XML (<b>xml-export.php</b>\n"
-#~ "\t\tи <b>xml-import.php</b>) могут использоваться злоумышленниками. Пожалуйста удалите их \n"
-#~ "\t\tиз вашей копии TT-RSS.\n"
-
-#~ msgid ""
-#~ "<b>Fatal Error</b>: Please set DAEMON_UPDATE_LOGIN_LIMIT\n"
-#~ "\t\t\tto 0 in single user mode.\n"
-#~ msgstr ""
-#~ "<b>Фатальная Ошибка</b>: Пожалуйста установите DAEMON_UPDATE_LOGIN_LIMIT\n"
-#~ "\t\t\tна 0 в однопользовательском режиме.\n"
-
-#~ msgid ""
-#~ "<b>Fatal Error</b>: You have enabled USE_CURL_FOR_ICONS, but your PHP \n"
-#~ "\t\t\tdoesn't seem to support CURL functions."
-#~ msgstr ""
-#~ "<b>Фатальная Ошибка</b>: Вы разрешили USE_CURL_FOR_ICONS, но ваша версия PHP \n"
-#~ "\t\t\tне поддерживает CURL фунции."
-
-#~ msgid "config: SESSION_EXPIRE_TIME is undefined"
-#~ msgstr "config: SESSION_EXPIRE_TIME не определена"
-
-#~ msgid "config: SESSION_EXPIRE_TIME is too low (less than 60)"
-#~ msgstr "config: SESSION_EXPIRE_TIME очень мала (меньше 60)"
-
-#~ msgid "config: SESSION_EXPIRE_TIME should be greater or equal to"
-#~ msgstr "config: SESSION_EXPIRE_TIME должна быть больше или равна"
-
-#~ msgid "config: DATABASE_BACKED_SESSIONS is incompatible with SINGLE_USER_MODE"
-#~ msgstr "config: DATABASE_BACKED_SESSIONS не совместим с SINGLE_USER_MODE"
-
-#~ msgid "config: DATABASE_BACKED_SESSIONS are currently broken with MySQL"
-#~ msgstr "config: DATABASE_BACKED_SESSIONS не правильно работает с MySQL"
-
-#~ msgid "config: MAIL_FROM has been split into DIGEST_FROM_NAME and DIGEST_FROM_ADDRESS"
-#~ msgstr "config: MAIL_FROM будет разделено на DIGEST_FROM_NAME и DIGEST_FROM_ADDRESS"
-
-#~ msgid "config: option COUNTERS_MAX_AGE expected, but not defined"
-#~ msgstr "config: опция COUNTERS_MAX_AGE ожидается, но не определена"
-
-#~ msgid "config: option DAEMON_REFRESH_ONLY is obsolete. Please remove this option and read about other ways to update feeds on the <a href='http://tt-rss.spb.ru/trac/wiki/UpdatingFeeds'>wiki</a>."
-#~ msgstr "config: опция DAEMON_REFRESH_ONLY устарела. Пожалуйста удалите эту опцию и прочитайте о других способах обновления каналов в <a href='http://tt-rss.spb.ru/trac/wiki/UpdatingFeeds'>wiki</a>."
-
-#~ msgid "<h1>User not found</h1>"
-#~ msgstr "<h1>Пользователь не найден</h1>"
-
-#~ msgid "Tiny Tiny RSS - Subscribe to feed..."
-#~ msgstr "Tiny Tiny RSS - Подписка на канал..."
-
-#~ msgid "Unknown Error"
-#~ msgstr "Неизвестная ошибка"
-
-#~ msgid "Feed information:"
-#~ msgstr "Информация о канале:"
-
-#~ msgid "Site:"
-#~ msgstr "Сайт:"
-
-#~ msgid "Last updated:"
-#~ msgstr "Последнее обновление"
-
-#, fuzzy
-#~ msgid "Feed browser cache information is missing. Please refer to the <a class='visibleLink' target='_blank' href='http://tt-rss.org/trac/wiki/FeedBrowser'>wiki</a> for more information."
-#~ msgstr "Feed browser cache information is missing. Для большей информации смотрите тут <a class='visibleLink' target='_blank' href='http://tt-rss.org/trac/wiki/FeedBrowser'>wiki</a>."
-
-#~ msgid "Couldn't find any feeds available for subscription."
-#~ msgstr "Не удалось найти каналы доступные для подписки."
-
-#~ msgid "Other feeds: Top 25"
-#~ msgstr "Топ 25 каналов"
-
-#~ msgid "Showing top 25 registered feeds, sorted by popularity:"
-#~ msgstr "Топ 25 популярных каналов:"
-
-#~ msgid "Top 25"
-#~ msgstr "Топ 25"
-
-#~ msgid "Content Filtering"
-#~ msgstr "Фильтры"
-
-#~ msgid "User Manager"
-#~ msgstr "Пользователи"
-
-#~ msgid "Toggle:"
-#~ msgstr "Изменить:"
-
-#~ msgid "&nbsp;&nbsp;Subscribe to feed"
-#~ msgstr "&nbsp;&nbsp;Подписаться"
-
-#~ msgid "&nbsp;&nbsp;Edit this feed"
-#~ msgstr "&nbsp;&nbsp;Редактировать канал"
-
-#~ msgid "&nbsp;&nbsp;Clear articles"
-#~ msgstr "&nbsp;&nbsp;Очистить статьи"
-
-#~ msgid "&nbsp;&nbsp;Rescore feed"
-#~ msgstr "&nbsp;&nbsp;Оценить канал"
-
-#~ msgid "&nbsp;&nbsp;Unsubscribe"
-#~ msgstr "&nbsp;&nbsp;Отписаться"
-
-#~ msgid "&nbsp;&nbsp;Mark as read"
-#~ msgstr "&nbsp;&nbsp;Пометить как прочитанные"
-
-#~ msgid "&nbsp;&nbsp;(Un)hide read feeds"
-#~ msgstr "&nbsp;&nbsp;Спрятать прочитанные"
-
-#~ msgid "&nbsp;&nbsp;Create label"
-#~ msgstr "&nbsp;&nbsp;Создать метку"
-
-#~ msgid "&nbsp;&nbsp;Create filter"
-#~ msgstr "&nbsp;&nbsp;Создать фильтр"
-
-#~ msgid "&nbsp;&nbsp;Reset category order"
-#~ msgstr "&nbsp;&nbsp;Сбросить порядок категорий"
-
-#~ msgid "This panel shows feeds subscribed by other users of this system, just in case you are interested in them too."
-#~ msgstr "Эта панель показывает каналы на которые подписаны другие пользователи системы, только в случае если вам они тоже интересны."
-
-#~ msgid "Match "
-#~ msgstr "Соответствие"
-
-#~ msgid "Title contains"
-#~ msgstr "Заголовок содержит"
-
-#~ msgid "Content contains"
-#~ msgstr "В содержимом"
-
-#~ msgid "Score equals"
-#~ msgstr "Оценка равна"
-
-#~ msgid "Score is greater than"
-#~ msgstr "Оценка выше чем"
-
-#~ msgid "Score is less than"
-#~ msgstr "Оценка меньше чем"
-
-#~ msgid "Articles newer than X hours"
-#~ msgstr "Статье меньше X часов"
-
-#~ msgid "Articles newer than X days"
-#~ msgstr "Статье меньше X дней"
-
-#~ msgid "Match SQL"
-#~ msgstr "Совпадение SQL"
-
-#~ msgid "Error: SQL expression is blank."
-#~ msgstr "Ошибка: пустое SQL выражение."
-
-#~ msgid "Saved label <b>%s</b>"
-#~ msgstr "Метка <b>%s</b> сохранена"
-
-#~ msgid "SQL Expression"
-#~ msgstr "SQL выражение"
-
-#~ msgid "[No caption]"
-#~ msgstr "[Нет заголовка]"
-
-#~ msgid "Labels and SQL Expressions"
-#~ msgstr "Метки и SQL выражения"
-
-#, fuzzy
-#~ msgid "Match all unread articles:"
-#~ msgstr "Отмеченные"
-
-#~ msgid "Search to label"
-#~ msgstr "Искать метку"
-
-#~ msgid "Convert to label"
-#~ msgstr "Превратить в метку"
-
-#~ msgid "Dashboard"
-#~ msgstr "Панель управления"
-
-#~ msgid "Create Label"
-#~ msgstr "Создать метку"
-
-#, fuzzy
-#~ msgid "Perform action"
-#~ msgstr "Применить обновления"
-
-#~ msgid "Caption:"
-#~ msgstr "Заголовок:"
-
-#~ msgid "SQL Expression:"
-#~ msgstr "SQL выражение:"
-
-#~ msgid "Action:"
-#~ msgstr "Действие:"
-
-#~ msgid "Params:"
-#~ msgstr "Параметры:"
-
-#, fuzzy
-#~ msgid "Update using:"
-#~ msgstr "Обновить"
-
-#~ msgid "Change password:"
-#~ msgstr "Изменить пароль:"
-
-#~ msgid "Toggle"
-#~ msgstr "Изменить:"
-
-#~ msgid "This page"
-#~ msgstr "Эту страницу"
-
-#, fuzzy
-#~ msgid "Below active article"
-#~ msgstr "Отфильтровать статью"
-
-#~ msgid "Next page"
-#~ msgstr "След. стр."
-
-#~ msgid "Previous page"
-#~ msgstr "Пред. cтр."
-
-#~ msgid "First page"
-#~ msgstr "На первую"
-
-#~ msgid "New headlines for last 24 hours, as of "
-#~ msgstr "Новые заголовки за последние 24 часа, на "
-
-#~ msgid "&nbsp;&nbsp;Update"
-#~ msgstr "&nbsp;&nbsp;Обновить"
-
-#~ msgid "Add existing tag:"
-#~ msgstr "Добавить существуюший тег:"
-
-#~ msgid "This category"
-#~ msgstr "Эта категория"
-
-#~ msgid "Global search results"
-#~ msgstr "Результаты поиска"
-
-#~ msgid "Category search results"
-#~ msgstr "Результаты поиска"
-
-#~ msgid "Feed search results"
-#~ msgstr "Результаты поиска"
-
-#~ msgid "Label search results"
-#~ msgstr "Результаты поиска"
index 2db432db4700c67f72f3a72786eaae0118949a22..9777da46bfb1a73bf115a9d53d3809c348c6008e 100644 (file)
Binary files a/locale/zh_CN/LC_MESSAGES/messages.mo and b/locale/zh_CN/LC_MESSAGES/messages.mo differ
index 680e1d36005b25344ddd240f003a7efb28f7145d..dec9b899b22511e43ae14cf1361c187fce7e8619 100644 (file)
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Tiny Tiny RSS\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-03-31 12:47+0400\n"
+"POT-Creation-Date: 2013-04-01 16:28+0400\n"
 "PO-Revision-Date: 2012-02-14 08:32+0000\n"
 "Last-Translator: Sai <lazycai.ffsky@gmail.com>\n"
 "Language-Team: Chinese (China) (http://www.transifex.net/projects/p/tt-rss/language/zh_CN/)\n"
@@ -138,9 +138,9 @@ msgstr "Tiny Tiny RSS 数据库是最新版。"
 #: register.php:336
 #: register.php:346
 #: register.php:358
-#: classes/handler/public.php:625
-#: classes/handler/public.php:713
-#: classes/handler/public.php:795
+#: classes/handler/public.php:626
+#: classes/handler/public.php:714
+#: classes/handler/public.php:796
 msgid "Return to Tiny Tiny RSS"
 msgstr "返回 Tiny Tiny RSS"
 
@@ -253,36 +253,37 @@ msgstr "SQL 脱出测试失败,请检查您的数据库和 PHP 设置。"
 
 #: index.php:135
 #: index.php:154
-#: index.php:264
-#: prefs.php:102
+#: index.php:263
+#: prefs.php:103
 #: classes/backend.php:5
 #: classes/pref/labels.php:296
-#: classes/pref/filters.php:628
-#: classes/pref/feeds.php:1330
+#: classes/pref/filters.php:680
+#: classes/pref/feeds.php:1331
 #: plugins/digest/digest_body.php:63
 #: js/feedlist.js:128
 #: js/feedlist.js:448
 #: js/functions.js:420
-#: js/functions.js:814
-#: js/functions.js:1250
-#: js/functions.js:1385
-#: js/functions.js:1697
+#: js/functions.js:808
+#: js/functions.js:1244
+#: js/functions.js:1379
+#: js/functions.js:1691
 #: js/prefs.js:86
 #: js/prefs.js:576
 #: js/prefs.js:666
-#: js/prefs.js:870
-#: js/prefs.js:1457
-#: js/prefs.js:1510
-#: js/prefs.js:1568
-#: js/prefs.js:1584
-#: js/prefs.js:1600
-#: js/prefs.js:1619
-#: js/prefs.js:1792
-#: js/prefs.js:1808
+#: js/prefs.js:858
+#: js/prefs.js:1445
+#: js/prefs.js:1498
+#: js/prefs.js:1557
+#: js/prefs.js:1574
+#: js/prefs.js:1590
+#: js/prefs.js:1606
+#: js/prefs.js:1625
+#: js/prefs.js:1798
+#: js/prefs.js:1814
 #: js/tt-rss.js:475
 #: js/tt-rss.js:492
 #: js/viewfeed.js:774
-#: js/viewfeed.js:1259
+#: js/viewfeed.js:1245
 #: plugins/import_export/import_export.js:17
 #: plugins/updater/updater.js:17
 msgid "Loading, please wait..."
@@ -305,13 +306,13 @@ msgid "All Articles"
 msgstr "全部文章"
 
 #: index.php:176
-#: include/functions.php:1974
+#: include/functions.php:1924
 #: classes/feeds.php:106
 msgid "Starred"
 msgstr "加星标的"
 
 #: index.php:177
-#: include/functions.php:1975
+#: include/functions.php:1925
 #: classes/feeds.php:107
 msgid "Published"
 msgstr "已发布"
@@ -351,22 +352,15 @@ msgstr ""
 msgid "Oldest first"
 msgstr ""
 
-#: index.php:195
-#: classes/pref/feeds.php:567
-#: classes/pref/feeds.php:792
-msgid "Update"
-msgstr "更新列表"
-
-#: index.php:197
+#: index.php:192
 msgid "Mark feed as read"
 msgstr "标记信息源为已读"
 
-#: index.php:200
-#: index.php:235
-#: include/functions.php:1964
+#: index.php:195
+#: index.php:234
+#: include/functions.php:1914
 #: include/localized_schema.php:10
 #: classes/feeds.php:111
-#: classes/feeds.php:136
 #: classes/feeds.php:437
 #: js/FeedTree.js:128
 #: js/FeedTree.js:156
@@ -374,112 +368,116 @@ msgstr "标记信息源为已读"
 msgid "Mark as read"
 msgstr "标记为已读"
 
-#: index.php:201
-#: include/functions.php:1860
-#: include/functions.php:1972
+#: index.php:196
+#: include/functions.php:1810
+#: include/functions.php:1922
 msgid "All articles"
 msgstr "全部文章"
 
-#: index.php:202
+#: index.php:197
 msgid "Older than one day"
 msgstr ""
 
-#: index.php:203
+#: index.php:198
 msgid "Older than one week"
 msgstr ""
 
-#: index.php:204
+#: index.php:199
 msgid "Older than two weeks"
 msgstr ""
 
-#: index.php:212
+#: index.php:204
+msgid "Refresh"
+msgstr ""
+
+#: index.php:211
 msgid "Communication problem with server."
 msgstr ""
 
-#: index.php:220
+#: index.php:219
 msgid "New version of Tiny Tiny RSS is available!"
 msgstr "Tiny Tiny RSS 有新版本啦!"
 
-#: index.php:225
+#: index.php:224
 msgid "Actions..."
 msgstr "动作"
 
-#: index.php:227
+#: index.php:226
 #, fuzzy
 msgid "Preferences..."
 msgstr "偏好设置"
 
-#: index.php:228
+#: index.php:227
 msgid "Search..."
 msgstr "搜索"
 
-#: index.php:229
+#: index.php:228
 msgid "Feed actions:"
 msgstr "信息源操作:"
 
-#: index.php:230
-#: classes/handler/public.php:555
+#: index.php:229
+#: classes/handler/public.php:556
 msgid "Subscribe to feed..."
 msgstr "订阅信息源"
 
-#: index.php:231
+#: index.php:230
 msgid "Edit this feed..."
 msgstr "编辑信息源"
 
-#: index.php:232
+#: index.php:231
 msgid "Rescore feed"
 msgstr "为信息源重新评分"
 
-#: index.php:233
-#: classes/pref/feeds.php:716
-#: classes/pref/feeds.php:1303
+#: index.php:232
+#: classes/pref/feeds.php:717
+#: classes/pref/feeds.php:1304
 #: js/PrefFeedTree.js:73
 msgid "Unsubscribe"
 msgstr "取消订阅"
 
-#: index.php:234
+#: index.php:233
 msgid "All feeds:"
 msgstr "全部信息源:"
 
-#: index.php:236
+#: index.php:235
 msgid "(Un)hide read feeds"
 msgstr "隐藏(显示)已读信息"
 
-#: index.php:237
+#: index.php:236
 msgid "Other actions:"
 msgstr "其他操作:"
 
-#: index.php:239
+#: index.php:238
 msgid "Switch to digest..."
 msgstr "切换至摘要模式"
 
-#: index.php:241
+#: index.php:240
 msgid "Show tag cloud..."
 msgstr "显示标签云"
 
-#: index.php:242
-#: include/functions.php:1950
+#: index.php:241
+#: include/functions.php:1900
 #, fuzzy
 msgid "Toggle widescreen mode"
 msgstr "锁定加星标的项"
 
-#: index.php:243
+#: index.php:242
 msgid "Select by tags..."
 msgstr "通过自定义标签选择"
 
-#: index.php:244
+#: index.php:243
 msgid "Create label..."
 msgstr "创建预定义标签"
 
-#: index.php:245
+#: index.php:244
 msgid "Create filter..."
 msgstr "创建过滤器"
 
-#: index.php:246
+#: index.php:245
 msgid "Keyboard shortcuts help"
 msgstr "快捷键帮助"
 
-#: index.php:248
+#: index.php:247
 #: plugins/digest/digest_body.php:77
 #: plugins/mobile/mobile-functions.php:62
 #: plugins/mobile/mobile-functions.php:237
@@ -487,41 +485,41 @@ msgid "Logout"
 msgstr "注销"
 
 #: prefs.php:36
-#: prefs.php:122
-#: include/functions.php:1977
+#: prefs.php:121
+#: include/functions.php:1927
 #: classes/pref/prefs.php:377
 msgid "Preferences"
 msgstr "偏好设置"
 
-#: prefs.php:113
+#: prefs.php:112
 msgid "Keyboard shortcuts"
 msgstr "快捷键"
 
-#: prefs.php:114
+#: prefs.php:113
 msgid "Exit preferences"
 msgstr "退出偏好设置"
 
-#: prefs.php:125
-#: classes/pref/feeds.php:106
-#: classes/pref/feeds.php:1208
-#: classes/pref/feeds.php:1271
+#: prefs.php:124
+#: classes/pref/feeds.php:107
+#: classes/pref/feeds.php:1209
+#: classes/pref/feeds.php:1272
 msgid "Feeds"
 msgstr "信息源"
 
-#: prefs.php:128
-#: classes/pref/filters.php:120
+#: prefs.php:127
+#: classes/pref/filters.php:156
 msgid "Filters"
 msgstr "过滤器"
 
-#: prefs.php:131
-#: include/functions.php:1167
-#: include/functions.php:1803
+#: prefs.php:130
+#: include/functions.php:1117
+#: include/functions.php:1753
 #: classes/pref/labels.php:90
 #: plugins/mobile/mobile-functions.php:198
 msgid "Labels"
 msgstr "预定义标签"
 
-#: prefs.php:135
+#: prefs.php:134
 msgid "Users"
 msgstr "用户"
 
@@ -547,12 +545,12 @@ msgid "Check availability"
 msgstr "检查可用性"
 
 #: register.php:228
-#: classes/handler/public.php:753
+#: classes/handler/public.php:754
 msgid "Email:"
 msgstr "电子邮箱:"
 
 #: register.php:231
-#: classes/handler/public.php:758
+#: classes/handler/public.php:759
 msgid "How much is two plus two:"
 msgstr "二加二等于几:"
 
@@ -586,12 +584,12 @@ msgid "Tiny Tiny RSS data update script."
 msgstr "Tiny Tiny RSS 数据库是最新版。"
 
 #: include/digest.php:109
-#: include/functions.php:1176
-#: include/functions.php:1704
-#: include/functions.php:1789
-#: include/functions.php:1811
+#: include/functions.php:1126
+#: include/functions.php:1654
+#: include/functions.php:1739
+#: include/functions.php:1761
 #: classes/opml.php:416
-#: classes/pref/feeds.php:221
+#: classes/pref/feeds.php:222
 msgid "Uncategorized"
 msgstr "未分类"
 
@@ -605,356 +603,354 @@ msgstr[0] "%d 个存档的文章"
 msgid "No feeds found."
 msgstr "未找到信息源。"
 
-#: include/functions.php:722
-msgid "Session failed to validate (incorrect IP)"
-msgstr "无法验证会话(IP 错误)"
-
-#: include/functions.php:1165
-#: include/functions.php:1801
+#: include/functions.php:1115
+#: include/functions.php:1751
 #: plugins/mobile/mobile-functions.php:171
 msgid "Special"
 msgstr "特殊区域"
 
-#: include/functions.php:1653
-#: classes/dlg.php:369
-#: classes/pref/filters.php:382
+#: include/functions.php:1603
+#: classes/feeds.php:1097
+#: classes/pref/filters.php:427
 msgid "All feeds"
 msgstr "全部信息源"
 
-#: include/functions.php:1854
+#: include/functions.php:1804
 msgid "Starred articles"
 msgstr "加星标文章"
 
-#: include/functions.php:1856
+#: include/functions.php:1806
 msgid "Published articles"
 msgstr "已发布文章"
 
-#: include/functions.php:1858
+#: include/functions.php:1808
 msgid "Fresh articles"
 msgstr "最新更新的文章"
 
-#: include/functions.php:1862
+#: include/functions.php:1812
 msgid "Archived articles"
 msgstr "存档的文章"
 
-#: include/functions.php:1864
+#: include/functions.php:1814
 msgid "Recently read"
 msgstr ""
 
-#: include/functions.php:1927
+#: include/functions.php:1877
 msgid "Navigation"
 msgstr "导航"
 
-#: include/functions.php:1928
+#: include/functions.php:1878
 #, fuzzy
 msgid "Open next feed"
 msgstr "自动显示下一个信息源"
 
-#: include/functions.php:1929
+#: include/functions.php:1879
 msgid "Open previous feed"
 msgstr ""
 
-#: include/functions.php:1930
+#: include/functions.php:1880
 #, fuzzy
 msgid "Open next article"
 msgstr "打开原文"
 
-#: include/functions.php:1931
+#: include/functions.php:1881
 #, fuzzy
 msgid "Open previous article"
 msgstr "打开原文"
 
-#: include/functions.php:1932
+#: include/functions.php:1882
 msgid "Open next article (don't scroll long articles)"
 msgstr ""
 
-#: include/functions.php:1933
+#: include/functions.php:1883
 msgid "Open previous article (don't scroll long articles)"
 msgstr ""
 
-#: include/functions.php:1934
+#: include/functions.php:1884
 msgid "Show search dialog"
 msgstr "显示搜索对话框"
 
-#: include/functions.php:1935
+#: include/functions.php:1885
 #, fuzzy
 msgid "Article"
 msgstr "全部文章"
 
-#: include/functions.php:1936
+#: include/functions.php:1886
 msgid "Toggle starred"
 msgstr "锁定加星标的项"
 
-#: include/functions.php:1937
-#: js/viewfeed.js:1920
+#: include/functions.php:1887
+#: js/viewfeed.js:1908
 msgid "Toggle published"
 msgstr "锁定发布的项"
 
-#: include/functions.php:1938
-#: js/viewfeed.js:1898
+#: include/functions.php:1888
+#: js/viewfeed.js:1886
 msgid "Toggle unread"
 msgstr "锁定未读项"
 
-#: include/functions.php:1939
+#: include/functions.php:1889
 msgid "Edit tags"
 msgstr "编辑自定义标签"
 
-#: include/functions.php:1940
+#: include/functions.php:1890
 #, fuzzy
 msgid "Dismiss selected"
 msgstr "不再显示所选的文章"
 
-#: include/functions.php:1941
+#: include/functions.php:1891
 #, fuzzy
 msgid "Dismiss read"
 msgstr "不再显示已读文章"
 
-#: include/functions.php:1942
+#: include/functions.php:1892
 #, fuzzy
 msgid "Open in new window"
 msgstr "在新窗口打开文章"
 
-#: include/functions.php:1943
-#: js/viewfeed.js:1939
+#: include/functions.php:1893
+#: js/viewfeed.js:1927
 msgid "Mark below as read"
 msgstr ""
 
-#: include/functions.php:1944
-#: js/viewfeed.js:1933
+#: include/functions.php:1894
+#: js/viewfeed.js:1921
 msgid "Mark above as read"
 msgstr ""
 
-#: include/functions.php:1945
+#: include/functions.php:1895
 #, fuzzy
 msgid "Scroll down"
 msgstr "全部完成。"
 
-#: include/functions.php:1946
+#: include/functions.php:1896
 msgid "Scroll up"
 msgstr ""
 
-#: include/functions.php:1947
+#: include/functions.php:1897
 #, fuzzy
 msgid "Select article under cursor"
 msgstr "选择鼠标指向的文章"
 
-#: include/functions.php:1948
+#: include/functions.php:1898
 msgid "Email article"
 msgstr "通过邮件发送文章"
 
-#: include/functions.php:1949
+#: include/functions.php:1899
 #, fuzzy
 msgid "Close/collapse article"
 msgstr "选择所有文章"
 
-#: include/functions.php:1951
+#: include/functions.php:1901
 #: plugins/embed_original/init.php:33
 #, fuzzy
 msgid "Toggle embed original"
 msgstr "锁定发布的项"
 
-#: include/functions.php:1952
+#: include/functions.php:1902
 #, fuzzy
 msgid "Article selection"
 msgstr "反选文章"
 
-#: include/functions.php:1953
+#: include/functions.php:1903
 msgid "Select all articles"
 msgstr "选择所有文章"
 
-#: include/functions.php:1954
+#: include/functions.php:1904
 #, fuzzy
 msgid "Select unread"
 msgstr "选择未读文章"
 
-#: include/functions.php:1955
+#: include/functions.php:1905
 #, fuzzy
 msgid "Select starred"
 msgstr "加星标"
 
-#: include/functions.php:1956
+#: include/functions.php:1906
 #, fuzzy
 msgid "Select published"
 msgstr "选择未读文章"
 
-#: include/functions.php:1957
+#: include/functions.php:1907
 #, fuzzy
 msgid "Invert selection"
 msgstr "反选文章"
 
-#: include/functions.php:1958
+#: include/functions.php:1908
 #, fuzzy
 msgid "Deselect everything"
 msgstr "取消选择所有文章"
 
-#: include/functions.php:1959
-#: classes/pref/feeds.php:520
-#: classes/pref/feeds.php:753
+#: include/functions.php:1909
+#: classes/pref/feeds.php:521
+#: classes/pref/feeds.php:754
 msgid "Feed"
 msgstr "信息源"
 
-#: include/functions.php:1960
+#: include/functions.php:1910
 #, fuzzy
 msgid "Refresh current feed"
 msgstr "刷新活动的信息源"
 
-#: include/functions.php:1961
+#: include/functions.php:1911
 #, fuzzy
 msgid "Un/hide read feeds"
 msgstr "隐藏(显示)已读信息"
 
-#: include/functions.php:1962
-#: classes/pref/feeds.php:1274
+#: include/functions.php:1912
+#: classes/pref/feeds.php:1275
 msgid "Subscribe to feed"
 msgstr "订阅信息源"
 
-#: include/functions.php:1963
+#: include/functions.php:1913
 #: js/FeedTree.js:135
 #: js/PrefFeedTree.js:67
 msgid "Edit feed"
 msgstr "编辑信息源"
 
-#: include/functions.php:1965
+#: include/functions.php:1915
 #, fuzzy
 msgid "Reverse headlines"
 msgstr "反向排序"
 
-#: include/functions.php:1966
+#: include/functions.php:1916
 #, fuzzy
 msgid "Debug feed update"
 msgstr "禁用更新"
 
-#: include/functions.php:1967
+#: include/functions.php:1917
 #: js/FeedTree.js:178
 msgid "Mark all feeds as read"
 msgstr "标记所有信息源为已读"
 
-#: include/functions.php:1968
+#: include/functions.php:1918
 #, fuzzy
 msgid "Un/collapse current category"
 msgstr "加入到类别:"
 
-#: include/functions.php:1969
+#: include/functions.php:1919
 #, fuzzy
 msgid "Toggle combined mode"
 msgstr "锁定发布的项"
 
-#: include/functions.php:1970
+#: include/functions.php:1920
 #, fuzzy
 msgid "Toggle auto expand in combined mode"
 msgstr "锁定发布的项"
 
-#: include/functions.php:1971
+#: include/functions.php:1921
 #, fuzzy
 msgid "Go to"
 msgstr "跳转至……"
 
-#: include/functions.php:1973
+#: include/functions.php:1923
 msgid "Fresh"
 msgstr ""
 
-#: include/functions.php:1976
+#: include/functions.php:1926
+#: js/tt-rss.js:431
+#: js/tt-rss.js:584
 msgid "Tag cloud"
 msgstr "标签云"
 
-#: include/functions.php:1978
+#: include/functions.php:1928
 #, fuzzy
 msgid "Other"
 msgstr "其他信息源"
 
-#: include/functions.php:1979
+#: include/functions.php:1929
 #: classes/pref/labels.php:281
 msgid "Create label"
 msgstr "创建预定义标签"
 
-#: include/functions.php:1980
-#: classes/pref/filters.php:606
+#: include/functions.php:1930
+#: classes/pref/filters.php:654
 msgid "Create filter"
 msgstr "创建过滤器"
 
-#: include/functions.php:1981
+#: include/functions.php:1931
 #, fuzzy
 msgid "Un/collapse sidebar"
 msgstr "折叠侧边栏"
 
-#: include/functions.php:1982
+#: include/functions.php:1932
 #, fuzzy
 msgid "Show help dialog"
 msgstr "显示搜索对话框"
 
-#: include/functions.php:2467
+#: include/functions.php:2417
 #, php-format
 msgid "Search results: %s"
 msgstr ""
 
-#: include/functions.php:2958
-#: js/viewfeed.js:2026
+#: include/functions.php:2908
+#: js/viewfeed.js:2014
 msgid "Click to play"
 msgstr "点击播放"
 
-#: include/functions.php:2959
-#: js/viewfeed.js:2025
+#: include/functions.php:2909
+#: js/viewfeed.js:2013
 msgid "Play"
 msgstr "播放"
 
-#: include/functions.php:3076
+#: include/functions.php:3026
 msgid " - "
 msgstr " - "
 
-#: include/functions.php:3098
-#: include/functions.php:3392
+#: include/functions.php:3048
+#: include/functions.php:3342
 #: classes/rpc.php:408
 msgid "no tags"
 msgstr "无标签"
 
-#: include/functions.php:3108
+#: include/functions.php:3058
 #: classes/feeds.php:682
 msgid "Edit tags for this article"
 msgstr "为本文编辑自定义标签"
 
-#: include/functions.php:3137
+#: include/functions.php:3087
 #: classes/feeds.php:638
 msgid "Originally from:"
 msgstr "来源:"
 
-#: include/functions.php:3150
+#: include/functions.php:3100
 #: classes/feeds.php:651
-#: classes/pref/feeds.php:539
+#: classes/pref/feeds.php:540
 msgid "Feed URL"
 msgstr "信息源 URL"
 
-#: include/functions.php:3181
-#: classes/dlg.php:43
-#: classes/dlg.php:162
-#: classes/dlg.php:185
-#: classes/dlg.php:222
-#: classes/dlg.php:506
-#: classes/dlg.php:541
-#: classes/dlg.php:572
-#: classes/dlg.php:606
-#: classes/dlg.php:618
+#: include/functions.php:3131
+#: classes/dlg.php:37
+#: classes/dlg.php:60
+#: classes/dlg.php:93
+#: classes/dlg.php:159
+#: classes/dlg.php:190
+#: classes/dlg.php:217
+#: classes/dlg.php:250
+#: classes/dlg.php:262
 #: classes/backend.php:105
 #: classes/pref/users.php:106
-#: classes/pref/filters.php:111
-#: classes/pref/feeds.php:1587
-#: classes/pref/feeds.php:1659
+#: classes/pref/filters.php:147
+#: classes/pref/prefs.php:1012
+#: classes/pref/feeds.php:1588
+#: classes/pref/feeds.php:1660
 #: plugins/import_export/init.php:409
 #: plugins/import_export/init.php:432
-#: plugins/googlereaderimport/init.php:164
+#: plugins/googlereaderimport/init.php:168
 #: plugins/share/init.php:67
 #: plugins/updater/init.php:357
 msgid "Close this window"
 msgstr "关闭本窗口"
 
-#: include/functions.php:3417
+#: include/functions.php:3367
 msgid "(edit note)"
 msgstr "(编辑注记)"
 
-#: include/functions.php:3650
+#: include/functions.php:3600
 msgid "unknown type"
 msgstr "未知类型"
 
-#: include/functions.php:3706
+#: include/functions.php:3656
 #, fuzzy
 msgid "Attachments"
 msgstr "附件:"
@@ -999,7 +995,7 @@ msgid "Assign tags"
 msgstr "添加自定义标签"
 
 #: include/localized_schema.php:14
-#: js/viewfeed.js:1990
+#: js/viewfeed.js:1978
 msgid "Assign label"
 msgstr "添加预定义标签"
 
@@ -1185,7 +1181,7 @@ msgid "User timezone"
 msgstr "用户所在时区"
 
 #: include/localized_schema.php:61
-#: js/prefs.js:1719
+#: js/prefs.js:1725
 msgid "Customize stylesheet"
 msgstr "自定义样式"
 
@@ -1210,14 +1206,14 @@ msgid "Select theme"
 msgstr "选择主题"
 
 #: include/login_form.php:183
-#: classes/handler/public.php:460
-#: classes/handler/public.php:748
+#: classes/handler/public.php:461
+#: classes/handler/public.php:749
 #: plugins/mobile/login_form.php:40
 msgid "Login:"
 msgstr "登陆:"
 
 #: include/login_form.php:192
-#: classes/handler/public.php:463
+#: classes/handler/public.php:464
 #: plugins/mobile/login_form.php:45
 msgid "Password:"
 msgstr "密码:"
@@ -1228,7 +1224,7 @@ msgid "I forgot my password"
 msgstr "用户名或密码错误"
 
 #: include/login_form.php:201
-#: classes/handler/public.php:466
+#: classes/handler/public.php:467
 msgid "Language:"
 msgstr "语言:"
 
@@ -1237,9 +1233,9 @@ msgid "Profile:"
 msgstr "偏好:"
 
 #: include/login_form.php:213
-#: classes/handler/public.php:210
+#: classes/handler/public.php:211
 #: classes/rpc.php:64
-#: classes/dlg.php:98
+#: classes/pref/prefs.php:948
 msgid "Default profile"
 msgstr "默认偏好设置"
 
@@ -1252,485 +1248,254 @@ msgid "Remember me"
 msgstr ""
 
 #: include/login_form.php:235
-#: classes/handler/public.php:476
+#: classes/handler/public.php:477
 #: plugins/mobile/login_form.php:28
 msgid "Log in"
 msgstr "登录"
 
+#: include/sessions.php:53
+msgid "Session failed to validate (incorrect IP)"
+msgstr "无法验证会话(IP 错误)"
+
 #: classes/article.php:25
 msgid "Article not found."
 msgstr "找不到文章。"
 
-#: classes/handler/public.php:401
+#: classes/article.php:179
+msgid "Tags for this article (separated by commas):"
+msgstr "本文的标签,请用逗号分开:"
+
+#: classes/article.php:204
+#: classes/pref/users.php:192
+#: classes/pref/labels.php:79
+#: classes/pref/filters.php:405
+#: classes/pref/prefs.php:894
+#: classes/pref/feeds.php:733
+#: classes/pref/feeds.php:881
+#: plugins/nsfw/init.php:86
+#: plugins/note/init.php:53
+#: plugins/instances/init.php:248
+msgid "Save"
+msgstr "保存"
+
+#: classes/article.php:206
+#: classes/handler/public.php:438
+#: classes/handler/public.php:480
+#: classes/feeds.php:1024
+#: classes/feeds.php:1076
+#: classes/feeds.php:1136
+#: classes/pref/users.php:194
+#: classes/pref/labels.php:81
+#: classes/pref/filters.php:408
+#: classes/pref/filters.php:804
+#: classes/pref/filters.php:880
+#: classes/pref/filters.php:947
+#: classes/pref/prefs.php:896
+#: classes/pref/feeds.php:734
+#: classes/pref/feeds.php:884
+#: classes/pref/feeds.php:1797
+#: plugins/mail/init.php:131
+#: plugins/note/init.php:55
+#: plugins/instances/init.php:251
+#: plugins/instances/init.php:440
+msgid "Cancel"
+msgstr "取消"
+
+#: classes/handler/public.php:402
 #: plugins/bookmarklets/init.php:38
 #, fuzzy
 msgid "Share with Tiny Tiny RSS"
 msgstr "在 Tiny Tiny RSS 中订阅"
 
-#: classes/handler/public.php:409
+#: classes/handler/public.php:410
 #, fuzzy
 msgid "Title:"
 msgstr "标题"
 
-#: classes/handler/public.php:411
-#: classes/dlg.php:663
-#: classes/pref/feeds.php:537
-#: classes/pref/feeds.php:768
+#: classes/handler/public.php:412
+#: classes/pref/feeds.php:538
+#: classes/pref/feeds.php:769
 #: plugins/instances/init.php:215
+#: plugins/instances/init.php:405
 msgid "URL:"
 msgstr "URL:"
 
-#: classes/handler/public.php:413
+#: classes/handler/public.php:414
 #, fuzzy
 msgid "Content:"
 msgstr "内容"
 
-#: classes/handler/public.php:415
+#: classes/handler/public.php:416
 #, fuzzy
 msgid "Labels:"
 msgstr "预定义标签"
 
-#: classes/handler/public.php:434
+#: classes/handler/public.php:435
 msgid "Shared article will appear in the Published feed."
 msgstr ""
 
-#: classes/handler/public.php:436
+#: classes/handler/public.php:437
 msgid "Share"
 msgstr ""
 
-#: classes/handler/public.php:437
-#: classes/handler/public.php:479
-#: classes/dlg.php:296
-#: classes/dlg.php:348
-#: classes/dlg.php:408
-#: classes/dlg.php:439
-#: classes/dlg.php:648
-#: classes/dlg.php:698
-#: classes/dlg.php:747
-#: classes/pref/users.php:194
-#: classes/pref/labels.php:81
-#: classes/pref/filters.php:363
-#: classes/pref/filters.php:746
-#: classes/pref/filters.php:822
-#: classes/pref/filters.php:889
-#: classes/pref/feeds.php:733
-#: classes/pref/feeds.php:883
-#: plugins/mail/init.php:131
-#: plugins/note/init.php:55
-#: plugins/instances/init.php:251
-msgid "Cancel"
-msgstr "取消"
-
-#: classes/handler/public.php:458
+#: classes/handler/public.php:459
 #, fuzzy
 msgid "Not logged in"
 msgstr "上次登录"
 
-#: classes/handler/public.php:525
+#: classes/handler/public.php:526
 msgid "Incorrect username or password"
 msgstr "用户名或密码错误"
 
-#: classes/handler/public.php:561
-#: classes/handler/public.php:658
+#: classes/handler/public.php:562
+#: classes/handler/public.php:659
 #, php-format
 msgid "Already subscribed to <b>%s</b>."
 msgstr "已经订阅到 <b>%s</b>."
 
-#: classes/handler/public.php:564
-#: classes/handler/public.php:649
+#: classes/handler/public.php:565
+#: classes/handler/public.php:650
 #, php-format
 msgid "Subscribed to <b>%s</b>."
 msgstr "订阅到 <b>%s</b>."
 
-#: classes/handler/public.php:567
-#: classes/handler/public.php:652
+#: classes/handler/public.php:568
+#: classes/handler/public.php:653
 #, php-format
 msgid "Could not subscribe to <b>%s</b>."
 msgstr "无法订阅 <b>%s</b>。"
 
-#: classes/handler/public.php:570
-#: classes/handler/public.php:655
+#: classes/handler/public.php:571
+#: classes/handler/public.php:656
 #, php-format
 msgid "No feeds found in <b>%s</b>."
 msgstr "在 <b>%s</b> 中没有找到信息源。"
 
-#: classes/handler/public.php:573
-#: classes/handler/public.php:661
+#: classes/handler/public.php:574
+#: classes/handler/public.php:662
 #, fuzzy
 msgid "Multiple feed URLs found."
 msgstr "未找到信息源。"
 
-#: classes/handler/public.php:577
-#: classes/handler/public.php:666
+#: classes/handler/public.php:578
+#: classes/handler/public.php:667
 #, php-format
 msgid "Could not subscribe to <b>%s</b>.<br>Can't download the Feed URL."
 msgstr "无法订阅 <b>%s</b>。<br>无法下载信息源的 URL。"
 
-#: classes/handler/public.php:595
-#: classes/handler/public.php:684
+#: classes/handler/public.php:596
+#: classes/handler/public.php:685
 msgid "Subscribe to selected feed"
 msgstr "订阅选中的信息源"
 
-#: classes/handler/public.php:620
-#: classes/handler/public.php:708
+#: classes/handler/public.php:621
+#: classes/handler/public.php:709
 msgid "Edit subscription options"
 msgstr "编辑订阅选项"
 
-#: classes/handler/public.php:735
+#: classes/handler/public.php:736
 #, fuzzy
 msgid "Password recovery"
 msgstr "密码"
 
-#: classes/handler/public.php:741
+#: classes/handler/public.php:742
 msgid "You will need to provide valid account name and email. New password will be sent on your email address."
 msgstr ""
 
-#: classes/handler/public.php:763
+#: classes/handler/public.php:764
 #: classes/pref/users.php:378
 msgid "Reset password"
 msgstr "重置密码"
 
-#: classes/handler/public.php:773
+#: classes/handler/public.php:774
 msgid "Some of the required form parameters are missing or incorrect."
 msgstr ""
 
-#: classes/handler/public.php:777
-#: classes/handler/public.php:803
+#: classes/handler/public.php:778
+#: classes/handler/public.php:804
 #: plugins/digest/digest_body.php:69
 #, fuzzy
 msgid "Go back"
 msgstr "移回原位"
 
-#: classes/handler/public.php:799
+#: classes/handler/public.php:800
 msgid "Sorry, login and email combination not found."
 msgstr ""
 
-#: classes/dlg.php:22
+#: classes/dlg.php:16
 msgid "If you have imported labels and/or filters, you might need to reload preferences to see your new data."
 msgstr ""
 
-#: classes/dlg.php:55
-#: classes/pref/users.php:360
-#: classes/pref/labels.php:272
-#: classes/pref/filters.php:234
-#: classes/pref/filters.php:282
-#: classes/pref/filters.php:597
-#: classes/pref/filters.php:676
-#: classes/pref/filters.php:703
-#: classes/pref/feeds.php:1262
-#: classes/pref/feeds.php:1532
-#: classes/pref/feeds.php:1602
-#: plugins/instances/init.php:287
-msgid "Select"
-msgstr "选择"
-
-#: classes/dlg.php:58
-#: classes/feeds.php:92
-#: classes/pref/users.php:363
-#: classes/pref/labels.php:275
-#: classes/pref/filters.php:237
-#: classes/pref/filters.php:285
-#: classes/pref/filters.php:600
-#: classes/pref/filters.php:679
-#: classes/pref/filters.php:706
-#: classes/pref/feeds.php:1265
-#: classes/pref/feeds.php:1535
-#: classes/pref/feeds.php:1605
-#: plugins/instances/init.php:290
-msgid "All"
-msgstr "全部"
-
-#: classes/dlg.php:60
-#: classes/feeds.php:95
-#: classes/pref/users.php:365
-#: classes/pref/labels.php:277
-#: classes/pref/filters.php:239
-#: classes/pref/filters.php:287
-#: classes/pref/filters.php:602
-#: classes/pref/filters.php:681
-#: classes/pref/filters.php:708
-#: classes/pref/feeds.php:1267
-#: classes/pref/feeds.php:1537
-#: classes/pref/feeds.php:1607
-#: plugins/instances/init.php:292
-msgid "None"
-msgstr "无"
-
-#: classes/dlg.php:69
-msgid "Create profile"
-msgstr "创建偏好文件"
-
-#: classes/dlg.php:92
-#: classes/dlg.php:122
-msgid "(active)"
-msgstr "(当前使用的)"
-
-#: classes/dlg.php:156
-msgid "Remove selected profiles"
-msgstr "移除选中的偏好文件"
-
-#: classes/dlg.php:158
-msgid "Activate profile"
-msgstr "启用偏好文件"
-
-#: classes/dlg.php:168
-msgid "Public OPML URL"
-msgstr "公开的 OPML URL"
-
-#: classes/dlg.php:173
+#: classes/dlg.php:48
 msgid "Your Public OPML URL is:"
 msgstr "你的公共 OPML URL 是:"
 
-#: classes/dlg.php:182
-#: classes/dlg.php:569
+#: classes/dlg.php:57
+#: classes/dlg.php:214
 msgid "Generate new URL"
 msgstr "生成一个新的 URL"
 
-#: classes/dlg.php:194
-msgid "Notice"
-msgstr "提示"
-
-#: classes/dlg.php:200
+#: classes/dlg.php:71
 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 "更新进程已在配置中启用,但守护进程没有运行,无法抓取信息。请启动守护进程,或联系管理员。"
 
-#: classes/dlg.php:204
-#: classes/dlg.php:213
+#: classes/dlg.php:75
+#: classes/dlg.php:84
 msgid "Last update:"
 msgstr "上次更新:"
 
-#: classes/dlg.php:209
+#: classes/dlg.php:80
 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 "更新进程在抓取信息更新时花费了太长时间,可能已经崩溃。请检查守护进程或联系管理员。"
 
-#: classes/dlg.php:234
-#: classes/dlg.php:242
-#, fuzzy
-msgid "Feed or site URL"
-msgstr "信息源 URL"
-
-#: classes/dlg.php:248
-#: classes/dlg.php:711
-#: classes/pref/feeds.php:559
-#: classes/pref/feeds.php:781
-msgid "Place in category:"
-msgstr "加入到类别:"
-
-#: classes/dlg.php:256
-msgid "Available feeds"
-msgstr "可用的信息源"
-
-#: classes/dlg.php:268
-#: classes/pref/users.php:155
-#: classes/pref/feeds.php:589
-#: classes/pref/feeds.php:817
-msgid "Authentication"
-msgstr "登录密码"
-
-#: classes/dlg.php:272
-#: classes/dlg.php:725
-#: classes/pref/users.php:420
-#: classes/pref/feeds.php:595
-#: classes/pref/feeds.php:821
-msgid "Login"
-msgstr "登陆"
-
-#: classes/dlg.php:275
-#: classes/dlg.php:728
-#: classes/pref/prefs.php:202
-#: classes/pref/feeds.php:601
-#: classes/pref/feeds.php:827
-msgid "Password"
-msgstr "密码"
-
-#: classes/dlg.php:285
-msgid "This feed requires authentication."
-msgstr "这个信息源需要认证"
-
-#: classes/dlg.php:290
-#: classes/dlg.php:346
-#: classes/dlg.php:746
-msgid "Subscribe"
-msgstr "订阅"
-
-#: classes/dlg.php:293
-msgid "More feeds"
-msgstr "更多信息源"
-
-#: classes/dlg.php:316
-#: classes/dlg.php:407
-#: classes/pref/users.php:350
-#: classes/pref/filters.php:593
-#: classes/pref/feeds.php:1258
-#: js/tt-rss.js:170
-msgid "Search"
-msgstr "搜索"
-
-#: classes/dlg.php:320
-msgid "Popular feeds"
-msgstr "最受欢迎的信息源"
-
-#: classes/dlg.php:321
-msgid "Feed archive"
-msgstr "信息源存档"
-
-#: classes/dlg.php:324
-msgid "limit:"
-msgstr "限制:"
-
-#: classes/dlg.php:347
-#: classes/pref/users.php:376
-#: classes/pref/labels.php:284
-#: classes/pref/filters.php:353
-#: classes/pref/filters.php:615
-#: classes/pref/feeds.php:706
-#: plugins/instances/init.php:297
-msgid "Remove"
-msgstr "移除"
-
-#: classes/dlg.php:358
-msgid "Look for"
-msgstr "查找"
-
-#: classes/dlg.php:366
-msgid "Limit search to:"
-msgstr "限制搜索条件:"
-
-#: classes/dlg.php:382
-msgid "This feed"
-msgstr "本信息源"
-
-#: classes/dlg.php:414
-msgid "Tags for this article (separated by commas):"
-msgstr "本文的标签,请用逗号分开:"
-
-#: classes/dlg.php:437
-#: classes/dlg.php:646
-#: classes/pref/users.php:192
-#: classes/pref/labels.php:79
-#: classes/pref/filters.php:360
-#: classes/pref/feeds.php:732
-#: classes/pref/feeds.php:880
-#: plugins/nsfw/init.php:86
-#: plugins/note/init.php:53
-#: plugins/instances/init.php:248
-msgid "Save"
-msgstr "保存"
-
-#: classes/dlg.php:445
-msgid "Tag Cloud"
-msgstr "标签云"
-
-#: classes/dlg.php:514
-msgid "Select item(s) by tags"
-msgstr "通过自定义标签选择"
-
-#: classes/dlg.php:517
+#: classes/dlg.php:166
 msgid "Match:"
 msgstr "匹配:"
 
-#: classes/dlg.php:519
+#: classes/dlg.php:168
 msgid "Any"
 msgstr ""
 
-#: classes/dlg.php:522
+#: classes/dlg.php:171
 #, fuzzy
 msgid "All tags."
 msgstr "无标签"
 
-#: classes/dlg.php:524
+#: classes/dlg.php:173
 msgid "Which Tags?"
 msgstr "哪些标签?"
 
-#: classes/dlg.php:537
+#: classes/dlg.php:186
 msgid "Display entries"
 msgstr "显示条目"
 
-#: classes/dlg.php:549
-#: classes/feeds.php:138
-msgid "View as RSS"
-msgstr "以 RSS 形式阅读"
-
-#: classes/dlg.php:560
+#: classes/dlg.php:205
 msgid "You can view this feed as RSS using the following URL:"
 msgstr "您可以通过如下 URL 以 RSS 方式查看本信息源:"
 
-#: classes/dlg.php:589
+#: classes/dlg.php:233
 #: plugins/updater/init.php:327
 #, php-format
 msgid "New version of Tiny Tiny RSS is available (%s)."
 msgstr "Tiny Tiny RSS 有可用的新版本 (%s)。"
 
-#: classes/dlg.php:597
+#: classes/dlg.php:241
 msgid "You can update using built-in updater in the Preferences or by using update.php"
 msgstr ""
 
-#: classes/dlg.php:601
+#: classes/dlg.php:245
 #: plugins/updater/init.php:331
 msgid "See the release notes"
 msgstr ""
 
-#: classes/dlg.php:603
+#: classes/dlg.php:247
 msgid "Download"
 msgstr "下载"
 
-#: classes/dlg.php:611
+#: classes/dlg.php:255
 msgid "Error receiving version information or no new version available."
 msgstr ""
 
-#: classes/dlg.php:631
-#, 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 "您可以通过自定义 CSS 来更改颜色,字体和版式。具体可参考 <a target=\"_blank\" class=\"visibleLink\" href=\"%s\">本文件</a>。"
-
-#: classes/dlg.php:657
-#: plugins/instances/init.php:207
-msgid "Instance"
-msgstr "实例"
-
-#: classes/dlg.php:666
-#: plugins/instances/init.php:218
-#: plugins/instances/init.php:315
-msgid "Instance URL"
-msgstr "实例 URL:"
-
-#: classes/dlg.php:676
-#: plugins/instances/init.php:229
-msgid "Access key:"
-msgstr "访问密钥:"
-
-#: classes/dlg.php:679
-#: plugins/instances/init.php:232
-#: plugins/instances/init.php:316
-msgid "Access key"
-msgstr "访问密钥"
-
-#: classes/dlg.php:683
-#: plugins/instances/init.php:236
-msgid "Use one access key for both linked instances."
-msgstr "为两个相联的实例使用一个访问密钥。"
-
-#: classes/dlg.php:691
-#: plugins/instances/init.php:244
-msgid "Generate new key"
-msgstr "生成新的密钥"
-
-#: classes/dlg.php:695
-msgid "Create link"
-msgstr "创建链接"
-
-#: classes/dlg.php:708
-msgid "Add one valid RSS feed per line (no feed detection is done)"
-msgstr ""
-
-#: classes/dlg.php:717
-msgid "Feeds to subscribe, One per line"
-msgstr ""
-
-#: classes/dlg.php:739
-msgid "Feeds require authentication."
-msgstr ""
-
 #: classes/feeds.php:68
 msgid "Visit the website"
 msgstr "访问网站"
@@ -1739,14 +1504,52 @@ msgstr "访问网站"
 msgid "View as RSS feed"
 msgstr "以RSS信息源方式阅读"
 
+#: classes/feeds.php:84
+#: classes/feeds.php:138
+#: classes/pref/feeds.php:1440
+msgid "View as RSS"
+msgstr "以 RSS 形式阅读"
+
 #: classes/feeds.php:91
 msgid "Select:"
 msgstr "选择:"
 
+#: classes/feeds.php:92
+#: classes/pref/users.php:363
+#: classes/pref/labels.php:275
+#: classes/pref/filters.php:282
+#: classes/pref/filters.php:330
+#: classes/pref/filters.php:648
+#: classes/pref/filters.php:737
+#: classes/pref/filters.php:764
+#: classes/pref/prefs.php:908
+#: classes/pref/feeds.php:1266
+#: classes/pref/feeds.php:1536
+#: classes/pref/feeds.php:1606
+#: plugins/instances/init.php:290
+msgid "All"
+msgstr "全部"
+
 #: classes/feeds.php:94
 msgid "Invert"
 msgstr "反选"
 
+#: classes/feeds.php:95
+#: classes/pref/users.php:365
+#: classes/pref/labels.php:277
+#: classes/pref/filters.php:284
+#: classes/pref/filters.php:332
+#: classes/pref/filters.php:650
+#: classes/pref/filters.php:739
+#: classes/pref/filters.php:766
+#: classes/pref/prefs.php:910
+#: classes/pref/feeds.php:1268
+#: classes/pref/feeds.php:1538
+#: classes/pref/feeds.php:1608
+#: plugins/instances/init.php:292
+msgid "None"
+msgstr "无"
+
 #: classes/feeds.php:101
 #, fuzzy
 msgid "More..."
@@ -1774,10 +1577,10 @@ msgid "Move back"
 msgstr "移回原位"
 
 #: classes/feeds.php:118
-#: classes/pref/filters.php:246
-#: classes/pref/filters.php:294
-#: classes/pref/filters.php:688
-#: classes/pref/filters.php:715
+#: classes/pref/filters.php:291
+#: classes/pref/filters.php:339
+#: classes/pref/filters.php:746
+#: classes/pref/filters.php:773
 msgid "Delete"
 msgstr "删除"
 
@@ -1832,20 +1635,117 @@ msgid "No articles found to display."
 msgstr "暂时没有文章。"
 
 #: classes/feeds.php:755
-#: classes/feeds.php:920
+#: classes/feeds.php:919
 #, php-format
 msgid "Feeds last updated at %s"
 msgstr "上次信息源更新时间:%s"
 
 #: classes/feeds.php:765
-#: classes/feeds.php:930
+#: classes/feeds.php:929
 msgid "Some feeds have update errors (click for details)"
 msgstr "部分信息源更新错误(点击了解详情)"
 
-#: classes/feeds.php:910
+#: classes/feeds.php:909
 msgid "No feed selected."
 msgstr "没有选中的信息源。"
 
+#: classes/feeds.php:962
+#: classes/feeds.php:970
+#, fuzzy
+msgid "Feed or site URL"
+msgstr "信息源 URL"
+
+#: classes/feeds.php:976
+#: classes/pref/feeds.php:560
+#: classes/pref/feeds.php:782
+#: classes/pref/feeds.php:1761
+msgid "Place in category:"
+msgstr "加入到类别:"
+
+#: classes/feeds.php:984
+msgid "Available feeds"
+msgstr "可用的信息源"
+
+#: classes/feeds.php:996
+#: classes/pref/users.php:155
+#: classes/pref/feeds.php:590
+#: classes/pref/feeds.php:818
+msgid "Authentication"
+msgstr "登录密码"
+
+#: classes/feeds.php:1000
+#: classes/pref/users.php:420
+#: classes/pref/feeds.php:596
+#: classes/pref/feeds.php:822
+#: classes/pref/feeds.php:1775
+msgid "Login"
+msgstr "登陆"
+
+#: classes/feeds.php:1003
+#: classes/pref/prefs.php:202
+#: classes/pref/feeds.php:602
+#: classes/pref/feeds.php:828
+#: classes/pref/feeds.php:1778
+msgid "Password"
+msgstr "密码"
+
+#: classes/feeds.php:1013
+msgid "This feed requires authentication."
+msgstr "这个信息源需要认证"
+
+#: classes/feeds.php:1018
+#: classes/feeds.php:1074
+#: classes/pref/feeds.php:1796
+msgid "Subscribe"
+msgstr "订阅"
+
+#: classes/feeds.php:1021
+msgid "More feeds"
+msgstr "更多信息源"
+
+#: classes/feeds.php:1044
+#: classes/feeds.php:1135
+#: classes/pref/users.php:350
+#: classes/pref/filters.php:641
+#: classes/pref/feeds.php:1259
+#: js/tt-rss.js:170
+msgid "Search"
+msgstr "搜索"
+
+#: classes/feeds.php:1048
+msgid "Popular feeds"
+msgstr "最受欢迎的信息源"
+
+#: classes/feeds.php:1049
+msgid "Feed archive"
+msgstr "信息源存档"
+
+#: classes/feeds.php:1052
+msgid "limit:"
+msgstr "限制:"
+
+#: classes/feeds.php:1075
+#: classes/pref/users.php:376
+#: classes/pref/labels.php:284
+#: classes/pref/filters.php:398
+#: classes/pref/filters.php:667
+#: classes/pref/feeds.php:707
+#: plugins/instances/init.php:297
+msgid "Remove"
+msgstr "移除"
+
+#: classes/feeds.php:1086
+msgid "Look for"
+msgstr "查找"
+
+#: classes/feeds.php:1094
+msgid "Limit search to:"
+msgstr "限制搜索条件:"
+
+#: classes/feeds.php:1110
+msgid "This feed"
+msgstr "本信息源"
+
 #: classes/backend.php:33
 msgid "Other interface tips are available in the Tiny Tiny RSS wiki."
 msgstr "在 Tiny Tiny RSS 的维基上可以找到其他界面技巧。"
@@ -1919,7 +1819,7 @@ msgid "Error: please upload OPML file."
 msgstr "错误:请上传 OPML 文件。"
 
 #: classes/opml.php:475
-#: plugins/googlereaderimport/init.php:157
+#: plugins/googlereaderimport/init.php:161
 msgid "Error while parsing document."
 msgstr "解析文档时发生错误。"
 
@@ -1966,8 +1866,8 @@ msgid "Change password to"
 msgstr "更改密码为:"
 
 #: classes/pref/users.php:177
-#: classes/pref/feeds.php:609
-#: classes/pref/feeds.php:833
+#: classes/pref/feeds.php:610
+#: classes/pref/feeds.php:834
 msgid "Options"
 msgstr "选项"
 
@@ -2004,6 +1904,21 @@ msgstr "已添加用户 <b>%s</b> ,密码为<b>%s</b>"
 msgid "[tt-rss] Password change notification"
 msgstr "[tt-rss] 密码更换提醒"
 
+#: classes/pref/users.php:360
+#: classes/pref/labels.php:272
+#: classes/pref/filters.php:279
+#: classes/pref/filters.php:327
+#: classes/pref/filters.php:645
+#: classes/pref/filters.php:734
+#: classes/pref/filters.php:761
+#: classes/pref/prefs.php:905
+#: classes/pref/feeds.php:1263
+#: classes/pref/feeds.php:1533
+#: classes/pref/feeds.php:1603
+#: plugins/instances/init.php:287
+msgid "Select"
+msgstr "选择"
+
 #: classes/pref/users.php:368
 msgid "Create user"
 msgstr "创建用户"
@@ -2013,7 +1928,7 @@ msgid "Details"
 msgstr "详细"
 
 #: classes/pref/users.php:374
-#: classes/pref/filters.php:612
+#: classes/pref/filters.php:660
 #: plugins/instances/init.php:296
 msgid "Edit"
 msgstr "编辑"
@@ -2040,6 +1955,8 @@ msgid "No matching users found."
 msgstr "没有匹配的用户。"
 
 #: classes/pref/labels.php:22
+#: classes/pref/filters.php:268
+#: classes/pref/filters.php:725
 msgid "Caption"
 msgstr "标题"
 
@@ -2064,125 +1981,136 @@ msgstr "创建预定义标签 <b>%s</b>"
 msgid "Clear colors"
 msgstr "清空颜色"
 
-#: classes/pref/filters.php:60
+#: classes/pref/filters.php:96
 msgid "Articles matching this filter:"
 msgstr "符合本过滤器条件的文章:"
 
-#: classes/pref/filters.php:97
+#: classes/pref/filters.php:133
 #, fuzzy
 msgid "No recent articles matching this filter have been found."
 msgstr "本过滤器下没有匹配到文章。"
 
-#: classes/pref/filters.php:101
+#: classes/pref/filters.php:137
 msgid "Complex expressions might not give results while testing due to issues with database server regexp implementation."
 msgstr ""
 
-#: classes/pref/filters.php:229
-#: classes/pref/filters.php:671
-#: classes/pref/filters.php:786
+#: classes/pref/filters.php:274
+#: classes/pref/filters.php:729
+#: classes/pref/filters.php:844
 msgid "Match"
 msgstr "匹配"
 
-#: classes/pref/filters.php:243
-#: classes/pref/filters.php:291
-#: classes/pref/filters.php:685
-#: classes/pref/filters.php:712
+#: classes/pref/filters.php:288
+#: classes/pref/filters.php:336
+#: classes/pref/filters.php:743
+#: classes/pref/filters.php:770
 msgid "Add"
 msgstr ""
 
-#: classes/pref/filters.php:277
-#: classes/pref/filters.php:698
+#: classes/pref/filters.php:322
+#: classes/pref/filters.php:756
 #, fuzzy
 msgid "Apply actions"
 msgstr "信息源动作"
 
-#: classes/pref/filters.php:327
-#: classes/pref/filters.php:727
+#: classes/pref/filters.php:372
+#: classes/pref/filters.php:785
 msgid "Enabled"
 msgstr "已启用"
 
-#: classes/pref/filters.php:336
-#: classes/pref/filters.php:730
+#: classes/pref/filters.php:381
+#: classes/pref/filters.php:788
 msgid "Match any rule"
 msgstr ""
 
-#: classes/pref/filters.php:345
-#: classes/pref/filters.php:733
+#: classes/pref/filters.php:390
+#: classes/pref/filters.php:791
 #, fuzzy
 msgid "Inverse matching"
 msgstr "反向匹配"
 
-#: classes/pref/filters.php:357
-#: classes/pref/filters.php:740
+#: classes/pref/filters.php:402
+#: classes/pref/filters.php:798
 msgid "Test"
 msgstr "测试"
 
-#: classes/pref/filters.php:390
+#: classes/pref/filters.php:435
 #, fuzzy
 msgid "(inverse)"
 msgstr "反选"
 
-#: classes/pref/filters.php:389
+#: classes/pref/filters.php:434
 #, php-format
 msgid "%s on %s in %s %s"
 msgstr ""
 
-#: classes/pref/filters.php:609
+#: classes/pref/filters.php:657
 msgid "Combine"
 msgstr ""
 
-#: classes/pref/filters.php:619
-#: classes/pref/feeds.php:1317
+#: classes/pref/filters.php:663
+#: classes/pref/feeds.php:1279
+#: classes/pref/feeds.php:1293
+msgid "Reset sort order"
+msgstr "重置排序"
+
+#: classes/pref/filters.php:671
+#: classes/pref/feeds.php:1318
 msgid "Rescore articles"
 msgstr "为文章重新评分"
 
-#: classes/pref/filters.php:743
+#: classes/pref/filters.php:801
 msgid "Create"
 msgstr "创建"
 
-#: classes/pref/filters.php:798
+#: classes/pref/filters.php:856
 msgid "Inverse regular expression matching"
 msgstr ""
 
-#: classes/pref/filters.php:800
+#: classes/pref/filters.php:858
 msgid "on field"
 msgstr "on field"
 
-#: classes/pref/filters.php:806
-#: js/PrefFilterTree.js:29
+#: classes/pref/filters.php:864
+#: js/PrefFilterTree.js:45
 #: plugins/digest/digest.js:242
 msgid "in"
 msgstr "在"
 
-#: classes/pref/filters.php:819
+#: classes/pref/filters.php:877
 #, fuzzy
 msgid "Save rule"
 msgstr "保存"
 
-#: classes/pref/filters.php:819
-#: js/functions.js:1069
+#: classes/pref/filters.php:877
+#: js/functions.js:1063
 msgid "Add rule"
 msgstr ""
 
-#: classes/pref/filters.php:842
+#: classes/pref/filters.php:900
 msgid "Perform Action"
 msgstr "执行动作"
 
-#: classes/pref/filters.php:868
+#: classes/pref/filters.php:926
 msgid "with parameters:"
 msgstr "指定参数:"
 
-#: classes/pref/filters.php:886
+#: classes/pref/filters.php:944
 #, fuzzy
 msgid "Save action"
 msgstr "版面动作"
 
-#: classes/pref/filters.php:886
-#: js/functions.js:1095
+#: classes/pref/filters.php:944
+#: js/functions.js:1089
 #, fuzzy
 msgid "Add action"
 msgstr "信息源动作"
 
+#: classes/pref/filters.php:967
+#, fuzzy
+msgid "[No caption]"
+msgstr "标题"
+
 #: classes/pref/prefs.php:17
 msgid "Old password cannot be blank."
 msgstr "请输入之前使用的密码。"
@@ -2393,245 +2321,273 @@ msgstr "启用信息源分类"
 msgid "Incorrect password"
 msgstr "用户名或密码错误"
 
-#: classes/pref/feeds.php:12
+#: classes/pref/prefs.php:879
+#, 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 "您可以通过自定义 CSS 来更改颜色,字体和版式。具体可参考 <a target=\"_blank\" class=\"visibleLink\" href=\"%s\">本文件</a>。"
+
+#: classes/pref/prefs.php:919
+msgid "Create profile"
+msgstr "创建偏好文件"
+
+#: classes/pref/prefs.php:942
+#: classes/pref/prefs.php:972
+msgid "(active)"
+msgstr "(当前使用的)"
+
+#: classes/pref/prefs.php:1006
+msgid "Remove selected profiles"
+msgstr "移除选中的偏好文件"
+
+#: classes/pref/prefs.php:1008
+msgid "Activate profile"
+msgstr "启用偏好文件"
+
+#: classes/pref/feeds.php:13
 msgid "Check to enable field"
 msgstr "勾选以启用"
 
-#: classes/pref/feeds.php:60
-#: classes/pref/feeds.php:208
-#: classes/pref/feeds.php:250
-#: classes/pref/feeds.php:256
-#: classes/pref/feeds.php:281
-#, fuzzy, php-format
-msgid "(%d feed)"
-msgid_plural "(%d feeds)"
-msgstr[0] "(%d 个信息源)"
-
-#: classes/pref/feeds.php:526
+#: classes/pref/feeds.php:527
 msgid "Feed Title"
 msgstr "信息源标题"
 
-#: classes/pref/feeds.php:582
-#: classes/pref/feeds.php:808
+#: classes/pref/feeds.php:568
+#: classes/pref/feeds.php:793
+msgid "Update"
+msgstr "更新列表"
+
+#: classes/pref/feeds.php:583
+#: classes/pref/feeds.php:809
 msgid "Article purging:"
 msgstr "文章清理:"
 
-#: classes/pref/feeds.php:605
+#: classes/pref/feeds.php:606
 msgid "<b>Hint:</b> you need to fill in your login information if your feed requires authentication, except for Twitter feeds."
 msgstr "<b>提示:</b>如果您的信息源需要验证,那么您需要填写登录信息。Twitter 信息源除外。"
 
-#: classes/pref/feeds.php:621
-#: classes/pref/feeds.php:837
+#: classes/pref/feeds.php:622
+#: classes/pref/feeds.php:838
 msgid "Hide from Popular feeds"
 msgstr "从最受欢迎的信息源中隐藏"
 
-#: classes/pref/feeds.php:633
-#: classes/pref/feeds.php:843
+#: classes/pref/feeds.php:634
+#: classes/pref/feeds.php:844
 msgid "Include in e-mail digest"
 msgstr "包含电子邮件摘要"
 
-#: classes/pref/feeds.php:646
-#: classes/pref/feeds.php:849
+#: classes/pref/feeds.php:647
+#: classes/pref/feeds.php:850
 msgid "Always display image attachments"
 msgstr "始终显示图片附件"
 
-#: classes/pref/feeds.php:659
-#: classes/pref/feeds.php:857
+#: classes/pref/feeds.php:660
+#: classes/pref/feeds.php:858
 msgid "Do not embed images"
 msgstr ""
 
-#: classes/pref/feeds.php:672
-#: classes/pref/feeds.php:865
+#: classes/pref/feeds.php:673
+#: classes/pref/feeds.php:866
 msgid "Cache images locally"
 msgstr "本地缓存图片"
 
-#: classes/pref/feeds.php:684
-#: classes/pref/feeds.php:871
+#: classes/pref/feeds.php:685
+#: classes/pref/feeds.php:872
 msgid "Mark updated articles as unread"
 msgstr "将已更新的文章标记为未读"
 
-#: classes/pref/feeds.php:690
+#: classes/pref/feeds.php:691
 msgid "Icon"
 msgstr "图标"
 
-#: classes/pref/feeds.php:704
+#: classes/pref/feeds.php:705
 msgid "Replace"
 msgstr "替换"
 
-#: classes/pref/feeds.php:723
+#: classes/pref/feeds.php:724
 msgid "Resubscribe to push updates"
 msgstr "重新订阅以推送更新"
 
-#: classes/pref/feeds.php:730
+#: classes/pref/feeds.php:731
 msgid "Resets PubSubHubbub subscription status for push-enabled feeds."
 msgstr "为启用推送的信息源重置 PubSubHubbub 订阅。"
 
-#: classes/pref/feeds.php:1111
-#: classes/pref/feeds.php:1164
+#: classes/pref/feeds.php:1112
+#: classes/pref/feeds.php:1165
 msgid "All done."
 msgstr "全部完成。"
 
-#: classes/pref/feeds.php:1219
+#: classes/pref/feeds.php:1220
 msgid "Feeds with errors"
 msgstr "有错误的信息源"
 
-#: classes/pref/feeds.php:1239
+#: classes/pref/feeds.php:1240
 #, fuzzy
 msgid "Inactive feeds"
 msgstr "刷新活动的信息源"
 
-#: classes/pref/feeds.php:1276
+#: classes/pref/feeds.php:1277
 msgid "Edit selected feeds"
 msgstr "编辑选定的信息源"
 
-#: classes/pref/feeds.php:1278
-#: classes/pref/feeds.php:1292
-msgid "Reset sort order"
-msgstr "重置排序"
-
-#: classes/pref/feeds.php:1280
-#: js/prefs.js:1764
+#: classes/pref/feeds.php:1281
+#: js/prefs.js:1770
 msgid "Batch subscribe"
 msgstr ""
 
-#: classes/pref/feeds.php:1285
+#: classes/pref/feeds.php:1286
 #, fuzzy
 msgid "Categories"
 msgstr "信息源类别"
 
-#: classes/pref/feeds.php:1288
+#: classes/pref/feeds.php:1289
 #, fuzzy
 msgid "Add category"
 msgstr "编辑类别"
 
-#: classes/pref/feeds.php:1290
+#: classes/pref/feeds.php:1291
 #, fuzzy
 msgid "(Un)hide empty categories"
 msgstr "编辑类别"
 
-#: classes/pref/feeds.php:1294
+#: classes/pref/feeds.php:1295
 #, fuzzy
 msgid "Remove selected"
 msgstr "移除选中的信息源?"
 
-#: classes/pref/feeds.php:1308
+#: classes/pref/feeds.php:1309
 msgid "More actions..."
 msgstr "更多动作"
 
-#: classes/pref/feeds.php:1312
+#: classes/pref/feeds.php:1313
 msgid "Manual purge"
 msgstr "手动清除"
 
-#: classes/pref/feeds.php:1316
+#: classes/pref/feeds.php:1317
 msgid "Clear feed data"
 msgstr "清空信息源数据"
 
-#: classes/pref/feeds.php:1367
+#: classes/pref/feeds.php:1368
 msgid "OPML"
 msgstr "OPML"
 
-#: classes/pref/feeds.php:1369
+#: classes/pref/feeds.php:1370
 msgid "Using OPML you can export and import your feeds, filters, labels and Tiny Tiny RSS settings."
 msgstr ""
 
-#: classes/pref/feeds.php:1371
+#: classes/pref/feeds.php:1372
 msgid "Only main settings profile can be migrated using OPML."
 msgstr ""
 
-#: classes/pref/feeds.php:1384
+#: classes/pref/feeds.php:1385
 #, fuzzy
 msgid "Import my OPML"
 msgstr "正在导入 OPML ……"
 
-#: classes/pref/feeds.php:1388
+#: classes/pref/feeds.php:1389
 msgid "Filename:"
 msgstr "文件名:"
 
-#: classes/pref/feeds.php:1390
+#: classes/pref/feeds.php:1391
 msgid "Include settings"
 msgstr "包含设置"
 
-#: classes/pref/feeds.php:1394
+#: classes/pref/feeds.php:1395
 #, fuzzy
 msgid "Export OPML"
 msgstr "正在导入 OPML ……"
 
-#: classes/pref/feeds.php:1398
+#: classes/pref/feeds.php:1399
 msgid "Your OPML can be published publicly and can be subscribed by anyone who knows the URL below."
 msgstr "您可以公开发布您的 OPML 。网上的任何人都可以通过如下 URL 订阅该文件。"
 
-#: classes/pref/feeds.php:1400
+#: classes/pref/feeds.php:1401
 msgid "Published OPML does not include your Tiny Tiny RSS settings, feeds that require authentication or feeds hidden from Popular feeds."
 msgstr ""
 
 #: classes/pref/feeds.php:1403
+msgid "Public OPML URL"
+msgstr "公开的 OPML URL"
+
+#: classes/pref/feeds.php:1404
 #, fuzzy
 msgid "Display published OPML URL"
 msgstr "公开的 OPML URL"
 
-#: classes/pref/feeds.php:1413
+#: classes/pref/feeds.php:1414
 msgid "Firefox integration"
 msgstr "Firefox 集成"
 
-#: classes/pref/feeds.php:1415
+#: classes/pref/feeds.php:1416
 msgid "This Tiny Tiny RSS site can be used as a Firefox Feed Reader by clicking the link below."
 msgstr "点击如下链接,可以将本 Tiny Tiny RSS 站点作为一个 Firefox 阅读器使用。"
 
-#: classes/pref/feeds.php:1422
+#: classes/pref/feeds.php:1423
 msgid "Click here to register this site as a feed reader."
 msgstr "点击此处将本站注册为信息源阅读器。"
 
-#: classes/pref/feeds.php:1430
+#: classes/pref/feeds.php:1431
 #, fuzzy
 msgid "Published & shared articles / Generated feeds"
 msgstr "已发布的文章和生成的信息源"
 
-#: classes/pref/feeds.php:1432
+#: classes/pref/feeds.php:1433
 msgid "Published articles and generated feeds"
 msgstr "已发布的文章和生成的信息源"
 
-#: classes/pref/feeds.php:1434
+#: classes/pref/feeds.php:1435
 msgid "Published articles are exported as a public RSS feed and can be subscribed by anyone who knows the URL specified below."
 msgstr "已发布的文章将会输出为公开的 RSS 信息源,网上的任何人可以通过如下 URL 进行订阅。"
 
-#: classes/pref/feeds.php:1440
+#: classes/pref/feeds.php:1441
 msgid "Display URL"
 msgstr "显示 URL"
 
-#: classes/pref/feeds.php:1443
+#: classes/pref/feeds.php:1444
 msgid "Clear all generated URLs"
 msgstr "清空所有生成的 URL"
 
-#: classes/pref/feeds.php:1445
+#: classes/pref/feeds.php:1446
 msgid "Articles shared by URL"
 msgstr "通过 URL 分享的文章"
 
-#: classes/pref/feeds.php:1447
+#: classes/pref/feeds.php:1448
 msgid "You can disable all articles shared by unique URLs here."
 msgstr "您可以取消所有通过 URL 分享的文章。"
 
-#: classes/pref/feeds.php:1450
+#: classes/pref/feeds.php:1451
 msgid "Unshare all articles"
 msgstr "取消所有分享"
 
-#: classes/pref/feeds.php:1528
+#: classes/pref/feeds.php:1529
 msgid "These feeds have not been updated with new content for 3 months (oldest first):"
 msgstr "以下信息源已经有三个月没有内容更新了(最旧的在最上):"
 
-#: classes/pref/feeds.php:1565
-#: classes/pref/feeds.php:1635
+#: classes/pref/feeds.php:1566
+#: classes/pref/feeds.php:1636
 msgid "Click to edit feed"
 msgstr "点击以编辑信息源"
 
-#: classes/pref/feeds.php:1583
-#: classes/pref/feeds.php:1655
+#: classes/pref/feeds.php:1584
+#: classes/pref/feeds.php:1656
 msgid "Unsubscribe from selected feeds"
 msgstr "取消订阅选中的信息源"
 
-#: classes/pref/feeds.php:1594
+#: classes/pref/feeds.php:1595
 msgid "These feeds have not been updated because of errors:"
 msgstr "信息源因为如下错误未能更新:"
 
+#: classes/pref/feeds.php:1758
+msgid "Add one valid RSS feed per line (no feed detection is done)"
+msgstr ""
+
+#: classes/pref/feeds.php:1767
+msgid "Feeds to subscribe, One per line"
+msgstr ""
+
+#: classes/pref/feeds.php:1789
+msgid "Feeds require authentication."
+msgstr ""
+
 #: plugins/digest/digest_body.php:59
 #, fuzzy
 msgid "Your browser doesn't support Javascript, which is required for this application to function properly. Please check your browser settings."
@@ -2891,24 +2847,24 @@ msgstr "加星标"
 msgid "No file uploaded."
 msgstr ""
 
-#: plugins/googlereaderimport/init.php:149
+#: plugins/googlereaderimport/init.php:153
 #, php-format
 msgid "All done. %d out of %d articles imported."
 msgstr ""
 
-#: plugins/googlereaderimport/init.php:153
+#: plugins/googlereaderimport/init.php:157
 msgid "The document has incorrect format."
 msgstr ""
 
-#: plugins/googlereaderimport/init.php:322
+#: plugins/googlereaderimport/init.php:326
 msgid "Import starred or shared items from Google Reader"
 msgstr ""
 
-#: plugins/googlereaderimport/init.php:326
+#: plugins/googlereaderimport/init.php:330
 msgid "Paste your starred.json or shared.json into the form below."
 msgstr ""
 
-#: plugins/googlereaderimport/init.php:340
+#: plugins/googlereaderimport/init.php:344
 msgid "Import my Starred items"
 msgstr ""
 
@@ -2916,6 +2872,38 @@ msgstr ""
 msgid "Linked"
 msgstr "链接"
 
+#: plugins/instances/init.php:207
+#: plugins/instances/init.php:399
+msgid "Instance"
+msgstr "实例"
+
+#: plugins/instances/init.php:218
+#: plugins/instances/init.php:315
+#: plugins/instances/init.php:408
+msgid "Instance URL"
+msgstr "实例 URL:"
+
+#: plugins/instances/init.php:229
+#: plugins/instances/init.php:418
+msgid "Access key:"
+msgstr "访问密钥:"
+
+#: plugins/instances/init.php:232
+#: plugins/instances/init.php:316
+#: plugins/instances/init.php:421
+msgid "Access key"
+msgstr "访问密钥"
+
+#: plugins/instances/init.php:236
+#: plugins/instances/init.php:425
+msgid "Use one access key for both linked instances."
+msgstr "为两个相联的实例使用一个访问密钥。"
+
+#: plugins/instances/init.php:244
+#: plugins/instances/init.php:433
+msgid "Generate new key"
+msgstr "生成新的密钥"
+
 #: plugins/instances/init.php:295
 msgid "Link instance"
 msgstr "链接实例"
@@ -2936,6 +2924,10 @@ msgstr ""
 msgid "Stored feeds"
 msgstr "保存的信息源"
 
+#: plugins/instances/init.php:437
+msgid "Create link"
+msgstr "创建链接"
+
 #: plugins/share/init.php:27
 msgid "Share by URL"
 msgstr "通过 URL 分享"
@@ -2999,176 +2991,180 @@ msgstr "您确认将该异常报告至 tt-rss.org ?报告将包含您的浏览
 msgid "close"
 msgstr ""
 
-#: js/functions.js:627
+#: js/functions.js:621
 msgid "Date syntax appears to be correct:"
 msgstr "日期的语法正确:"
 
-#: js/functions.js:630
+#: js/functions.js:624
 msgid "Date syntax is incorrect."
 msgstr "日期的语法错误。"
 
-#: js/functions.js:724
+#: js/functions.js:636
+msgid "Error explained"
+msgstr ""
+
+#: js/functions.js:718
 msgid "Upload complete."
 msgstr ""
 
-#: js/functions.js:748
+#: js/functions.js:742
 msgid "Remove stored feed icon?"
 msgstr "移除已保存的信息源图标?"
 
-#: js/functions.js:753
+#: js/functions.js:747
 #, fuzzy
 msgid "Removing feed icon..."
 msgstr "移除已保存的信息源图标?"
 
-#: js/functions.js:758
+#: js/functions.js:752
 #, fuzzy
 msgid "Feed icon removed."
 msgstr "找不到信息源。"
 
-#: js/functions.js:780
+#: js/functions.js:774
 msgid "Please select an image file to upload."
 msgstr "请选择图片文件上传。"
 
-#: js/functions.js:782
+#: js/functions.js:776
 msgid "Upload new icon for this feed?"
 msgstr "为本信息源上传一个新的图标?"
 
-#: js/functions.js:783
+#: js/functions.js:777
 #, fuzzy
 msgid "Uploading, please wait..."
 msgstr "读取中,请稍候……"
 
-#: js/functions.js:799
+#: js/functions.js:793
 msgid "Please enter label caption:"
 msgstr "请填写预定义标签的说明:"
 
-#: js/functions.js:804
+#: js/functions.js:798
 msgid "Can't create label: missing caption."
 msgstr "创建标签失败:没有标题。"
 
-#: js/functions.js:847
+#: js/functions.js:841
 msgid "Subscribe to Feed"
 msgstr "订阅信息源"
 
-#: js/functions.js:874
+#: js/functions.js:868
 msgid "Subscribed to %s"
 msgstr "已订阅至 %s"
 
-#: js/functions.js:879
+#: js/functions.js:873
 msgid "Specified URL seems to be invalid."
 msgstr "指定的 URL 无效。"
 
-#: js/functions.js:882
+#: js/functions.js:876
 msgid "Specified URL doesn't seem to contain any feeds."
 msgstr "指定的 URL 没有包含任何信息源。"
 
-#: js/functions.js:935
+#: js/functions.js:929
 #, fuzzy
 msgid "Couldn't download the specified URL: %s"
 msgstr "无法下载指定的 URL 。"
 
-#: js/functions.js:939
+#: js/functions.js:933
 msgid "You are already subscribed to this feed."
 msgstr "您已经订阅过这个信息源啦。"
 
-#: js/functions.js:1069
+#: js/functions.js:1063
 #, fuzzy
 msgid "Edit rule"
 msgstr "编辑过滤器"
 
-#: js/functions.js:1095
+#: js/functions.js:1089
 #, fuzzy
 msgid "Edit action"
 msgstr "信息源动作"
 
-#: js/functions.js:1132
+#: js/functions.js:1126
 msgid "Create Filter"
 msgstr "创建过滤器"
 
-#: js/functions.js:1247
+#: js/functions.js:1241
 msgid "Reset subscription? Tiny Tiny RSS will try to subscribe to the notification hub again on next feed update."
 msgstr "重置订阅? Tiny Tiny RSS 将会在下次信息源更新的时候尝试再次订阅信息提醒中心。"
 
-#: js/functions.js:1258
+#: js/functions.js:1252
 #, fuzzy
 msgid "Subscription reset."
 msgstr "订阅信息源"
 
-#: js/functions.js:1268
+#: js/functions.js:1262
 #: js/tt-rss.js:619
 msgid "Unsubscribe from %s?"
 msgstr "从 %s 取消订阅?"
 
-#: js/functions.js:1271
+#: js/functions.js:1265
 msgid "Removing feed..."
 msgstr ""
 
-#: js/functions.js:1379
+#: js/functions.js:1373
 msgid "Please enter category title:"
 msgstr "请填写类别名称:"
 
-#: js/functions.js:1410
+#: js/functions.js:1404
 msgid "Generate new syndication address for this feed?"
 msgstr "为本信息源生成新的群地址?"
 
-#: js/functions.js:1414
-#: js/prefs.js:1234
+#: js/functions.js:1408
+#: js/prefs.js:1222
 msgid "Trying to change address..."
 msgstr ""
 
-#: js/functions.js:1601
+#: js/functions.js:1595
 #: js/tt-rss.js:396
 #: js/tt-rss.js:600
 msgid "You can't edit this kind of feed."
 msgstr "您无法编辑这种类型的信息源。"
 
-#: js/functions.js:1616
+#: js/functions.js:1610
 msgid "Edit Feed"
 msgstr "编辑信息源"
 
-#: js/functions.js:1622
+#: js/functions.js:1616
 #: js/prefs.js:194
 #: js/prefs.js:749
 #, fuzzy
 msgid "Saving data..."
 msgstr "保存信息"
 
-#: js/functions.js:1654
+#: js/functions.js:1648
 msgid "More Feeds"
 msgstr "更多信息源"
 
-#: js/functions.js:1715
-#: js/functions.js:1825
+#: js/functions.js:1709
+#: js/functions.js:1819
 #: 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
+#: js/prefs.js:1198
+#: js/prefs.js:1343
 msgid "No feeds are selected."
 msgstr "没有选择任何信息源。"
 
-#: js/functions.js:1757
+#: js/functions.js:1751
 msgid "Remove selected feeds from the archive? Feeds with stored articles will not be removed."
 msgstr "将选中的信息源从存档中移除?包含已保存文章的信息源不会被移除。"
 
-#: js/functions.js:1796
+#: js/functions.js:1790
 msgid "Feeds with update errors"
 msgstr "更新错误的信息源"
 
-#: js/functions.js:1807
-#: js/prefs.js:1192
+#: js/functions.js:1801
+#: js/prefs.js:1180
 msgid "Remove selected feeds?"
 msgstr "移除选中的信息源?"
 
-#: js/functions.js:1810
-#: js/prefs.js:1195
+#: js/functions.js:1804
+#: js/prefs.js:1183
 #, fuzzy
 msgid "Removing selected feeds..."
 msgstr "移除选中的信息源?"
 
-#: js/functions.js:1908
+#: js/functions.js:1902
 msgid "Help"
 msgstr ""
 
@@ -3182,7 +3178,7 @@ msgstr "编辑类别"
 msgid "Remove category"
 msgstr "创建类别"
 
-#: js/PrefFilterTree.js:32
+#: js/PrefFilterTree.js:48
 msgid "Inverse"
 msgstr "反选"
 
@@ -3223,7 +3219,7 @@ msgid "Removing selected labels..."
 msgstr "移除选中的预定义标签?"
 
 #: js/prefs.js:295
-#: js/prefs.js:1396
+#: js/prefs.js:1384
 msgid "No labels are selected."
 msgstr "没有选择任何预定义标签。"
 
@@ -3335,155 +3331,155 @@ msgstr "编辑多个信息源"
 msgid "Save changes to selected feeds?"
 msgstr "保存对信息源的更改?"
 
-#: js/prefs.js:797
+#: js/prefs.js:785
 msgid "OPML Import"
 msgstr "OPML 导入"
 
-#: js/prefs.js:824
+#: js/prefs.js:812
 msgid "Please choose an OPML file first."
 msgstr "请先选择一个 OPML 文件。"
 
-#: js/prefs.js:827
+#: js/prefs.js:815
 #: plugins/import_export/import_export.js:115
 #: plugins/googlereaderimport/init.js:45
 #, fuzzy
 msgid "Importing, please wait..."
 msgstr "读取中,请稍候……"
 
-#: js/prefs.js:980
+#: js/prefs.js:968
 msgid "Reset to defaults?"
 msgstr "重置为默认状态?"
 
-#: js/prefs.js:1099
+#: js/prefs.js:1087
 msgid "Remove category %s? Any nested feeds would be placed into Uncategorized."
 msgstr ""
 
-#: js/prefs.js:1105
+#: js/prefs.js:1093
 #, fuzzy
 msgid "Removing category..."
 msgstr "创建类别"
 
-#: js/prefs.js:1126
+#: js/prefs.js:1114
 msgid "Remove selected categories?"
 msgstr "移除选中的类别?"
 
-#: js/prefs.js:1129
+#: js/prefs.js:1117
 #, fuzzy
 msgid "Removing selected categories..."
 msgstr "移除选定的类别"
 
-#: js/prefs.js:1142
+#: js/prefs.js:1130
 msgid "No categories are selected."
 msgstr "没有选中任何类别。"
 
-#: js/prefs.js:1150
+#: js/prefs.js:1138
 #, fuzzy
 msgid "Category title:"
 msgstr "类别"
 
-#: js/prefs.js:1154
+#: js/prefs.js:1142
 #, fuzzy
 msgid "Creating category..."
 msgstr "创建过滤器"
 
-#: js/prefs.js:1181
+#: js/prefs.js:1169
 msgid "Feeds without recent updates"
 msgstr "最近没更新的信息源"
 
-#: js/prefs.js:1230
+#: js/prefs.js:1218
 msgid "Replace current OPML publishing address with a new one?"
 msgstr "将当前的 OPML 发布地址更改替换为新地址?"
 
-#: js/prefs.js:1319
+#: js/prefs.js:1307
 #, fuzzy
 msgid "Clearing feed..."
 msgstr "清空信息源数据"
 
-#: js/prefs.js:1339
+#: js/prefs.js:1327
 msgid "Rescore articles in selected feeds?"
 msgstr "为选中信息源中的文章重置评分?"
 
-#: js/prefs.js:1342
+#: js/prefs.js:1330
 #, fuzzy
 msgid "Rescoring selected feeds..."
 msgstr "为选中信息源中的文章重置评分?"
 
-#: js/prefs.js:1362
+#: js/prefs.js:1350
 msgid "Rescore all articles? This operation may take a lot of time."
 msgstr "重置所有文章的评分?这可能将花费很长时间。"
 
-#: js/prefs.js:1365
+#: js/prefs.js:1353
 #, fuzzy
 msgid "Rescoring feeds..."
 msgstr "为信息源重新评分"
 
-#: js/prefs.js:1382
+#: js/prefs.js:1370
 msgid "Reset selected labels to default colors?"
 msgstr "将选中的可选标签重置为默认颜色?"
 
-#: js/prefs.js:1419
+#: js/prefs.js:1407
 msgid "Settings Profiles"
 msgstr "偏好文件的设置"
 
-#: js/prefs.js:1428
+#: js/prefs.js:1416
 msgid "Remove selected profiles? Active and default profiles will not be removed."
 msgstr "移除选中的偏好文件?当前偏好与默认偏好不会被移除。"
 
-#: js/prefs.js:1431
+#: js/prefs.js:1419
 #, fuzzy
 msgid "Removing selected profiles..."
 msgstr "移除选中的偏好文件"
 
-#: js/prefs.js:1446
+#: js/prefs.js:1434
 msgid "No profiles are selected."
 msgstr "未选择偏好文件。"
 
-#: js/prefs.js:1454
-#: js/prefs.js:1507
+#: js/prefs.js:1442
+#: js/prefs.js:1495
 msgid "Activate selected profile?"
 msgstr "启用选中的偏好文件?"
 
-#: js/prefs.js:1470
-#: js/prefs.js:1523
+#: js/prefs.js:1458
+#: js/prefs.js:1511
 msgid "Please choose a profile to activate."
 msgstr "请选择希望启用的偏好文件。"
 
-#: js/prefs.js:1475
+#: js/prefs.js:1463
 #, fuzzy
 msgid "Creating profile..."
 msgstr "创建偏好文件"
 
-#: js/prefs.js:1531
+#: js/prefs.js:1519
 msgid "This will invalidate all previously generated feed URLs. Continue?"
 msgstr "之前生成的信息源 URL 将会回到未认证状态。是否继续?"
 
-#: js/prefs.js:1534
-#: js/prefs.js:1553
+#: js/prefs.js:1522
+#: js/prefs.js:1541
 msgid "Clearing URLs..."
 msgstr ""
 
-#: js/prefs.js:1541
+#: js/prefs.js:1529
 #, fuzzy
 msgid "Generated URLs cleared."
 msgstr "生成一个新的 URL"
 
-#: js/prefs.js:1550
+#: js/prefs.js:1538
 msgid "This will invalidate all previously shared article URLs. Continue?"
 msgstr "之前共享文章的 URL 将会回到未认证状态。是否继续?"
 
-#: js/prefs.js:1560
+#: js/prefs.js:1548
 msgid "Shared URLs cleared."
 msgstr ""
 
-#: js/prefs.js:1648
+#: js/prefs.js:1654
 msgid "Label Editor"
 msgstr "编辑预定义标签"
 
-#: js/prefs.js:1770
+#: js/prefs.js:1776
 msgid "Subscribing to feeds..."
 msgstr ""
 
-#: js/prefs.js:1807
+#: js/prefs.js:1813
 msgid "Clear stored data for this plugin?"
 msgstr ""
 
@@ -3506,29 +3502,33 @@ msgstr "请先选几个信息源吧。"
 msgid "Please enable embed_original plugin first."
 msgstr "请先选几个信息源吧。"
 
+#: js/tt-rss.js:587
+msgid "Select item(s) by tags"
+msgstr "通过自定义标签选择"
+
 #: js/tt-rss.js:608
 msgid "You can't unsubscribe from the category."
 msgstr "您不能取消订阅一个类别。"
 
 #: js/tt-rss.js:613
-#: js/tt-rss.js:769
+#: js/tt-rss.js:765
 msgid "Please select some feed first."
 msgstr "请先选几个信息源吧。"
 
-#: js/tt-rss.js:764
+#: js/tt-rss.js:760
 msgid "You can't rescore this kind of feed."
 msgstr "无法重置本类信息源的评分。"
 
-#: js/tt-rss.js:774
+#: js/tt-rss.js:770
 msgid "Rescore articles in %s?"
 msgstr "重置 %s 中文章的评分?"
 
-#: js/tt-rss.js:777
+#: js/tt-rss.js:773
 #, fuzzy
 msgid "Rescoring articles..."
 msgstr "为文章重新评分"
 
-#: js/tt-rss.js:911
+#: js/tt-rss.js:907
 msgid "New version available!"
 msgstr "有可用的新版本啦!"
 
@@ -3560,113 +3560,109 @@ msgstr "取消发布文章"
 #: js/viewfeed.js:734
 #: js/viewfeed.js:797
 #: js/viewfeed.js:831
-#: js/viewfeed.js:968
-#: js/viewfeed.js:1011
-#: js/viewfeed.js:1064
-#: js/viewfeed.js:2108
+#: js/viewfeed.js:951
+#: js/viewfeed.js:994
+#: js/viewfeed.js:1047
+#: js/viewfeed.js:2096
 #: plugins/mailto/init.js:7
 #: plugins/mail/mail.js:7
 msgid "No articles are selected."
 msgstr "没有选中任何文章。"
 
-#: js/viewfeed.js:948
-msgid "Mark all visible articles in %s as read?"
-msgstr "标记 %s 中所有可见的文章为已读?"
-
-#: js/viewfeed.js:976
+#: js/viewfeed.js:959
 #, fuzzy
 msgid "Delete %d selected article in %s?"
 msgid_plural "Delete %d selected articles in %s?"
 msgstr[0] "删除 %s 中选择的 %d 篇文章?"
 
-#: js/viewfeed.js:978
+#: js/viewfeed.js:961
 #, fuzzy
 msgid "Delete %d selected article?"
 msgid_plural "Delete %d selected articles?"
 msgstr[0] "删除选中的 %d 篇文章?"
 
-#: js/viewfeed.js:1020
+#: js/viewfeed.js:1003
 #, fuzzy
 msgid "Archive %d selected article in %s?"
 msgid_plural "Archive %d selected articles in %s?"
 msgstr[0] "将 %s 中的 %d 篇选中的文章存档?"
 
-#: js/viewfeed.js:1023
+#: js/viewfeed.js:1006
 #, fuzzy
 msgid "Move %d archived article back?"
 msgid_plural "Move %d archived articles back?"
 msgstr[0] "将存档的 %d 篇文章移回原处?"
 
-#: js/viewfeed.js:1025
+#: js/viewfeed.js:1008
 msgid "Please note that unstarred articles might get purged on next feed update."
 msgstr ""
 
-#: js/viewfeed.js:1070
+#: js/viewfeed.js:1053
 #, fuzzy
 msgid "Mark %d selected article in %s as read?"
 msgid_plural "Mark %d selected articles in %s as read?"
 msgstr[0] "将 %s 中选中的 %d 篇文章标记为已读?"
 
-#: js/viewfeed.js:1094
+#: js/viewfeed.js:1077
 msgid "Edit article Tags"
 msgstr "编辑文章的自定义标签"
 
-#: js/viewfeed.js:1100
+#: js/viewfeed.js:1083
 #, fuzzy
 msgid "Saving article tags..."
 msgstr "编辑文章的自定义标签"
 
-#: js/viewfeed.js:1337
+#: js/viewfeed.js:1323
 msgid "No article is selected."
 msgstr "未选中任何文章。"
 
-#: js/viewfeed.js:1372
+#: js/viewfeed.js:1358
 msgid "No articles found to mark"
 msgstr "未找到需要标记的文章"
 
-#: js/viewfeed.js:1374
+#: js/viewfeed.js:1360
 #, fuzzy
 msgid "Mark %d article as read?"
 msgid_plural "Mark %d articles as read?"
 msgstr[0] "将 %d 篇文章标记为已读?"
 
-#: js/viewfeed.js:1884
+#: js/viewfeed.js:1872
 msgid "Open original article"
 msgstr "打开原文"
 
-#: js/viewfeed.js:1890
+#: js/viewfeed.js:1878
 #, fuzzy
 msgid "Display article URL"
 msgstr "显示 URL"
 
-#: js/viewfeed.js:1909
+#: js/viewfeed.js:1897
 #, fuzzy
 msgid "Toggle marked"
 msgstr "锁定加星标的项"
 
-#: js/viewfeed.js:1995
+#: js/viewfeed.js:1983
 msgid "Remove label"
 msgstr "移除预定义标签"
 
-#: js/viewfeed.js:2019
+#: js/viewfeed.js:2007
 msgid "Playing..."
 msgstr "播放中……"
 
-#: js/viewfeed.js:2020
+#: js/viewfeed.js:2008
 msgid "Click to pause"
 msgstr "点击暂停"
 
-#: js/viewfeed.js:2077
+#: js/viewfeed.js:2065
 #, fuzzy
 msgid "Please enter new score for selected articles:"
 msgstr "删除选中的 %d 篇文章?"
 
-#: js/viewfeed.js:2119
+#: js/viewfeed.js:2107
 #, fuzzy
 msgid "Please enter new score for this article:"
 msgstr "请填写类别名称:"
 
-#: js/viewfeed.js:2152
+#: js/viewfeed.js:2140
 #, fuzzy
 msgid "Article URL:"
 msgstr "全部文章"
@@ -3773,6 +3769,20 @@ msgstr "通过 URL 分享文章"
 msgid "Live updating is considered experimental. Backup your tt-rss directory before continuing. Please type 'yes' to continue."
 msgstr ""
 
+#, fuzzy
+#~ msgid "(%d feed)"
+#~ msgid_plural "(%d feeds)"
+#~ msgstr[0] "(%d 个信息源)"
+
+#~ msgid "Notice"
+#~ msgstr "提示"
+
+#~ msgid "Tag Cloud"
+#~ msgstr "标签云"
+
+#~ msgid "Mark all visible articles in %s as read?"
+#~ msgstr "标记 %s 中所有可见的文章为已读?"
+
 #~ msgid "Date"
 #~ msgstr "日期"
 
index 9b1bf74214a86ad64a9b011888abc7b133ef6a80..d27c2c4fe7619ee5c506d5aa921d0e81c5b0fa85 100644 (file)
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-03-31 12:47+0400\n"
+"POT-Creation-Date: 2013-04-01 16:28+0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -121,8 +121,8 @@ msgstr ""
 #: db-updater.php:96 db-updater.php:165 db-updater.php:178 register.php:196
 #: register.php:241 register.php:254 register.php:269 register.php:288
 #: register.php:336 register.php:346 register.php:358
-#: classes/handler/public.php:625 classes/handler/public.php:713
-#: classes/handler/public.php:795
+#: classes/handler/public.php:626 classes/handler/public.php:714
+#: classes/handler/public.php:796
 msgid "Return to Tiny Tiny RSS"
 msgstr ""
 
@@ -243,16 +243,16 @@ msgstr ""
 msgid "SQL escaping test failed, check your database and PHP configuration"
 msgstr ""
 
-#: index.php:135 index.php:154 index.php:264 prefs.php:102
+#: index.php:135 index.php:154 index.php:263 prefs.php:103
 #: classes/backend.php:5 classes/pref/labels.php:296
-#: classes/pref/filters.php:628 classes/pref/feeds.php:1330
+#: classes/pref/filters.php:680 classes/pref/feeds.php:1331
 #: plugins/digest/digest_body.php:63 js/feedlist.js:128 js/feedlist.js:448
-#: js/functions.js:420 js/functions.js:814 js/functions.js:1250
-#: js/functions.js:1385 js/functions.js:1697 js/prefs.js:86 js/prefs.js:576
-#: js/prefs.js:666 js/prefs.js:870 js/prefs.js:1457 js/prefs.js:1510
-#: js/prefs.js:1568 js/prefs.js:1584 js/prefs.js:1600 js/prefs.js:1619
-#: js/prefs.js:1792 js/prefs.js:1808 js/tt-rss.js:475 js/tt-rss.js:492
-#: js/viewfeed.js:774 js/viewfeed.js:1259
+#: js/functions.js:420 js/functions.js:808 js/functions.js:1244
+#: js/functions.js:1379 js/functions.js:1691 js/prefs.js:86 js/prefs.js:576
+#: js/prefs.js:666 js/prefs.js:858 js/prefs.js:1445 js/prefs.js:1498
+#: js/prefs.js:1557 js/prefs.js:1574 js/prefs.js:1590 js/prefs.js:1606
+#: js/prefs.js:1625 js/prefs.js:1798 js/prefs.js:1814 js/tt-rss.js:475
+#: js/tt-rss.js:492 js/viewfeed.js:774 js/viewfeed.js:1245
 #: plugins/import_export/import_export.js:17 plugins/updater/updater.js:17
 msgid "Loading, please wait..."
 msgstr ""
@@ -273,11 +273,11 @@ msgstr ""
 msgid "All Articles"
 msgstr ""
 
-#: index.php:176 include/functions.php:1974 classes/feeds.php:106
+#: index.php:176 include/functions.php:1924 classes/feeds.php:106
 msgid "Starred"
 msgstr ""
 
-#: index.php:177 include/functions.php:1975 classes/feeds.php:107
+#: index.php:177 include/functions.php:1925 classes/feeds.php:107
 msgid "Published"
 msgstr ""
 
@@ -313,152 +313,151 @@ msgstr ""
 msgid "Oldest first"
 msgstr ""
 
-#: index.php:195 classes/pref/feeds.php:567 classes/pref/feeds.php:792
-msgid "Update"
-msgstr ""
-
-#: index.php:197
+#: index.php:192
 msgid "Mark feed as read"
 msgstr ""
 
-#: index.php:200 index.php:235 include/functions.php:1964
-#: include/localized_schema.php:10 classes/feeds.php:111 classes/feeds.php:136
-#: classes/feeds.php:437 js/FeedTree.js:128 js/FeedTree.js:156
-#: plugins/digest/digest.js:647
+#: index.php:195 index.php:234 include/functions.php:1914
+#: include/localized_schema.php:10 classes/feeds.php:111 classes/feeds.php:437
+#: js/FeedTree.js:128 js/FeedTree.js:156 plugins/digest/digest.js:647
 msgid "Mark as read"
 msgstr ""
 
-#: index.php:201 include/functions.php:1860 include/functions.php:1972
+#: index.php:196 include/functions.php:1810 include/functions.php:1922
 msgid "All articles"
 msgstr ""
 
-#: index.php:202
+#: index.php:197
 msgid "Older than one day"
 msgstr ""
 
-#: index.php:203
+#: index.php:198
 msgid "Older than one week"
 msgstr ""
 
-#: index.php:204
+#: index.php:199
 msgid "Older than two weeks"
 msgstr ""
 
-#: index.php:212
+#: index.php:204
+msgid "Refresh"
+msgstr ""
+
+#: index.php:211
 msgid "Communication problem with server."
 msgstr ""
 
-#: index.php:220
+#: index.php:219
 msgid "New version of Tiny Tiny RSS is available!"
 msgstr ""
 
-#: index.php:225
+#: index.php:224
 msgid "Actions..."
 msgstr ""
 
-#: index.php:227
+#: index.php:226
 msgid "Preferences..."
 msgstr ""
 
-#: index.php:228
+#: index.php:227
 msgid "Search..."
 msgstr ""
 
-#: index.php:229
+#: index.php:228
 msgid "Feed actions:"
 msgstr ""
 
-#: index.php:230 classes/handler/public.php:555
+#: index.php:229 classes/handler/public.php:556
 msgid "Subscribe to feed..."
 msgstr ""
 
-#: index.php:231
+#: index.php:230
 msgid "Edit this feed..."
 msgstr ""
 
-#: index.php:232
+#: index.php:231
 msgid "Rescore feed"
 msgstr ""
 
-#: index.php:233 classes/pref/feeds.php:716 classes/pref/feeds.php:1303
+#: index.php:232 classes/pref/feeds.php:717 classes/pref/feeds.php:1304
 #: js/PrefFeedTree.js:73
 msgid "Unsubscribe"
 msgstr ""
 
-#: index.php:234
+#: index.php:233
 msgid "All feeds:"
 msgstr ""
 
-#: index.php:236
+#: index.php:235
 msgid "(Un)hide read feeds"
 msgstr ""
 
-#: index.php:237
+#: index.php:236
 msgid "Other actions:"
 msgstr ""
 
-#: index.php:239
+#: index.php:238
 msgid "Switch to digest..."
 msgstr ""
 
-#: index.php:241
+#: index.php:240
 msgid "Show tag cloud..."
 msgstr ""
 
-#: index.php:242 include/functions.php:1950
+#: index.php:241 include/functions.php:1900
 msgid "Toggle widescreen mode"
 msgstr ""
 
-#: index.php:243
+#: index.php:242
 msgid "Select by tags..."
 msgstr ""
 
-#: index.php:244
+#: index.php:243
 msgid "Create label..."
 msgstr ""
 
-#: index.php:245
+#: index.php:244
 msgid "Create filter..."
 msgstr ""
 
-#: index.php:246
+#: index.php:245
 msgid "Keyboard shortcuts help"
 msgstr ""
 
-#: index.php:248 plugins/digest/digest_body.php:77
+#: index.php:247 plugins/digest/digest_body.php:77
 #: plugins/mobile/mobile-functions.php:62
 #: plugins/mobile/mobile-functions.php:237
 msgid "Logout"
 msgstr ""
 
-#: prefs.php:36 prefs.php:122 include/functions.php:1977
+#: prefs.php:36 prefs.php:121 include/functions.php:1927
 #: classes/pref/prefs.php:377
 msgid "Preferences"
 msgstr ""
 
-#: prefs.php:113
+#: prefs.php:112
 msgid "Keyboard shortcuts"
 msgstr ""
 
-#: prefs.php:114
+#: prefs.php:113
 msgid "Exit preferences"
 msgstr ""
 
-#: prefs.php:125 classes/pref/feeds.php:106 classes/pref/feeds.php:1208
-#: classes/pref/feeds.php:1271
+#: prefs.php:124 classes/pref/feeds.php:107 classes/pref/feeds.php:1209
+#: classes/pref/feeds.php:1272
 msgid "Feeds"
 msgstr ""
 
-#: prefs.php:128 classes/pref/filters.php:120
+#: prefs.php:127 classes/pref/filters.php:156
 msgid "Filters"
 msgstr ""
 
-#: prefs.php:131 include/functions.php:1167 include/functions.php:1803
+#: prefs.php:130 include/functions.php:1117 include/functions.php:1753
 #: classes/pref/labels.php:90 plugins/mobile/mobile-functions.php:198
 msgid "Labels"
 msgstr ""
 
-#: prefs.php:135
+#: prefs.php:134
 msgid "Users"
 msgstr ""
 
@@ -485,11 +484,11 @@ msgstr ""
 msgid "Check availability"
 msgstr ""
 
-#: register.php:228 classes/handler/public.php:753
+#: register.php:228 classes/handler/public.php:754
 msgid "Email:"
 msgstr ""
 
-#: register.php:231 classes/handler/public.php:758
+#: register.php:231 classes/handler/public.php:759
 msgid "How much is two plus two:"
 msgstr ""
 
@@ -521,9 +520,9 @@ msgstr ""
 msgid "Tiny Tiny RSS data update script."
 msgstr ""
 
-#: include/digest.php:109 include/functions.php:1176
-#: include/functions.php:1704 include/functions.php:1789
-#: include/functions.php:1811 classes/opml.php:416 classes/pref/feeds.php:221
+#: include/digest.php:109 include/functions.php:1126
+#: include/functions.php:1654 include/functions.php:1739
+#: include/functions.php:1761 classes/opml.php:416 classes/pref/feeds.php:222
 msgid "Uncategorized"
 msgstr ""
 
@@ -538,293 +537,291 @@ msgstr[1] ""
 msgid "No feeds found."
 msgstr ""
 
-#: include/functions.php:722
-msgid "Session failed to validate (incorrect IP)"
-msgstr ""
-
-#: include/functions.php:1165 include/functions.php:1801
+#: include/functions.php:1115 include/functions.php:1751
 #: plugins/mobile/mobile-functions.php:171
 msgid "Special"
 msgstr ""
 
-#: include/functions.php:1653 classes/dlg.php:369 classes/pref/filters.php:382
+#: include/functions.php:1603 classes/feeds.php:1097
+#: classes/pref/filters.php:427
 msgid "All feeds"
 msgstr ""
 
-#: include/functions.php:1854
+#: include/functions.php:1804
 msgid "Starred articles"
 msgstr ""
 
-#: include/functions.php:1856
+#: include/functions.php:1806
 msgid "Published articles"
 msgstr ""
 
-#: include/functions.php:1858
+#: include/functions.php:1808
 msgid "Fresh articles"
 msgstr ""
 
-#: include/functions.php:1862
+#: include/functions.php:1812
 msgid "Archived articles"
 msgstr ""
 
-#: include/functions.php:1864
+#: include/functions.php:1814
 msgid "Recently read"
 msgstr ""
 
-#: include/functions.php:1927
+#: include/functions.php:1877
 msgid "Navigation"
 msgstr ""
 
-#: include/functions.php:1928
+#: include/functions.php:1878
 msgid "Open next feed"
 msgstr ""
 
-#: include/functions.php:1929
+#: include/functions.php:1879
 msgid "Open previous feed"
 msgstr ""
 
-#: include/functions.php:1930
+#: include/functions.php:1880
 msgid "Open next article"
 msgstr ""
 
-#: include/functions.php:1931
+#: include/functions.php:1881
 msgid "Open previous article"
 msgstr ""
 
-#: include/functions.php:1932
+#: include/functions.php:1882
 msgid "Open next article (don't scroll long articles)"
 msgstr ""
 
-#: include/functions.php:1933
+#: include/functions.php:1883
 msgid "Open previous article (don't scroll long articles)"
 msgstr ""
 
-#: include/functions.php:1934
+#: include/functions.php:1884
 msgid "Show search dialog"
 msgstr ""
 
-#: include/functions.php:1935
+#: include/functions.php:1885
 msgid "Article"
 msgstr ""
 
-#: include/functions.php:1936
+#: include/functions.php:1886
 msgid "Toggle starred"
 msgstr ""
 
-#: include/functions.php:1937 js/viewfeed.js:1920
+#: include/functions.php:1887 js/viewfeed.js:1908
 msgid "Toggle published"
 msgstr ""
 
-#: include/functions.php:1938 js/viewfeed.js:1898
+#: include/functions.php:1888 js/viewfeed.js:1886
 msgid "Toggle unread"
 msgstr ""
 
-#: include/functions.php:1939
+#: include/functions.php:1889
 msgid "Edit tags"
 msgstr ""
 
-#: include/functions.php:1940
+#: include/functions.php:1890
 msgid "Dismiss selected"
 msgstr ""
 
-#: include/functions.php:1941
+#: include/functions.php:1891
 msgid "Dismiss read"
 msgstr ""
 
-#: include/functions.php:1942
+#: include/functions.php:1892
 msgid "Open in new window"
 msgstr ""
 
-#: include/functions.php:1943 js/viewfeed.js:1939
+#: include/functions.php:1893 js/viewfeed.js:1927
 msgid "Mark below as read"
 msgstr ""
 
-#: include/functions.php:1944 js/viewfeed.js:1933
+#: include/functions.php:1894 js/viewfeed.js:1921
 msgid "Mark above as read"
 msgstr ""
 
-#: include/functions.php:1945
+#: include/functions.php:1895
 msgid "Scroll down"
 msgstr ""
 
-#: include/functions.php:1946
+#: include/functions.php:1896
 msgid "Scroll up"
 msgstr ""
 
-#: include/functions.php:1947
+#: include/functions.php:1897
 msgid "Select article under cursor"
 msgstr ""
 
-#: include/functions.php:1948
+#: include/functions.php:1898
 msgid "Email article"
 msgstr ""
 
-#: include/functions.php:1949
+#: include/functions.php:1899
 msgid "Close/collapse article"
 msgstr ""
 
-#: include/functions.php:1951 plugins/embed_original/init.php:33
+#: include/functions.php:1901 plugins/embed_original/init.php:33
 msgid "Toggle embed original"
 msgstr ""
 
-#: include/functions.php:1952
+#: include/functions.php:1902
 msgid "Article selection"
 msgstr ""
 
-#: include/functions.php:1953
+#: include/functions.php:1903
 msgid "Select all articles"
 msgstr ""
 
-#: include/functions.php:1954
+#: include/functions.php:1904
 msgid "Select unread"
 msgstr ""
 
-#: include/functions.php:1955
+#: include/functions.php:1905
 msgid "Select starred"
 msgstr ""
 
-#: include/functions.php:1956
+#: include/functions.php:1906
 msgid "Select published"
 msgstr ""
 
-#: include/functions.php:1957
+#: include/functions.php:1907
 msgid "Invert selection"
 msgstr ""
 
-#: include/functions.php:1958
+#: include/functions.php:1908
 msgid "Deselect everything"
 msgstr ""
 
-#: include/functions.php:1959 classes/pref/feeds.php:520
-#: classes/pref/feeds.php:753
+#: include/functions.php:1909 classes/pref/feeds.php:521
+#: classes/pref/feeds.php:754
 msgid "Feed"
 msgstr ""
 
-#: include/functions.php:1960
+#: include/functions.php:1910
 msgid "Refresh current feed"
 msgstr ""
 
-#: include/functions.php:1961
+#: include/functions.php:1911
 msgid "Un/hide read feeds"
 msgstr ""
 
-#: include/functions.php:1962 classes/pref/feeds.php:1274
+#: include/functions.php:1912 classes/pref/feeds.php:1275
 msgid "Subscribe to feed"
 msgstr ""
 
-#: include/functions.php:1963 js/FeedTree.js:135 js/PrefFeedTree.js:67
+#: include/functions.php:1913 js/FeedTree.js:135 js/PrefFeedTree.js:67
 msgid "Edit feed"
 msgstr ""
 
-#: include/functions.php:1965
+#: include/functions.php:1915
 msgid "Reverse headlines"
 msgstr ""
 
-#: include/functions.php:1966
+#: include/functions.php:1916
 msgid "Debug feed update"
 msgstr ""
 
-#: include/functions.php:1967 js/FeedTree.js:178
+#: include/functions.php:1917 js/FeedTree.js:178
 msgid "Mark all feeds as read"
 msgstr ""
 
-#: include/functions.php:1968
+#: include/functions.php:1918
 msgid "Un/collapse current category"
 msgstr ""
 
-#: include/functions.php:1969
+#: include/functions.php:1919
 msgid "Toggle combined mode"
 msgstr ""
 
-#: include/functions.php:1970
+#: include/functions.php:1920
 msgid "Toggle auto expand in combined mode"
 msgstr ""
 
-#: include/functions.php:1971
+#: include/functions.php:1921
 msgid "Go to"
 msgstr ""
 
-#: include/functions.php:1973
+#: include/functions.php:1923
 msgid "Fresh"
 msgstr ""
 
-#: include/functions.php:1976
+#: include/functions.php:1926 js/tt-rss.js:431 js/tt-rss.js:584
 msgid "Tag cloud"
 msgstr ""
 
-#: include/functions.php:1978
+#: include/functions.php:1928
 msgid "Other"
 msgstr ""
 
-#: include/functions.php:1979 classes/pref/labels.php:281
+#: include/functions.php:1929 classes/pref/labels.php:281
 msgid "Create label"
 msgstr ""
 
-#: include/functions.php:1980 classes/pref/filters.php:606
+#: include/functions.php:1930 classes/pref/filters.php:654
 msgid "Create filter"
 msgstr ""
 
-#: include/functions.php:1981
+#: include/functions.php:1931
 msgid "Un/collapse sidebar"
 msgstr ""
 
-#: include/functions.php:1982
+#: include/functions.php:1932
 msgid "Show help dialog"
 msgstr ""
 
-#: include/functions.php:2467
+#: include/functions.php:2417
 #, php-format
 msgid "Search results: %s"
 msgstr ""
 
-#: include/functions.php:2958 js/viewfeed.js:2026
+#: include/functions.php:2908 js/viewfeed.js:2014
 msgid "Click to play"
 msgstr ""
 
-#: include/functions.php:2959 js/viewfeed.js:2025
+#: include/functions.php:2909 js/viewfeed.js:2013
 msgid "Play"
 msgstr ""
 
-#: include/functions.php:3076
+#: include/functions.php:3026
 msgid " - "
 msgstr ""
 
-#: include/functions.php:3098 include/functions.php:3392 classes/rpc.php:408
+#: include/functions.php:3048 include/functions.php:3342 classes/rpc.php:408
 msgid "no tags"
 msgstr ""
 
-#: include/functions.php:3108 classes/feeds.php:682
+#: include/functions.php:3058 classes/feeds.php:682
 msgid "Edit tags for this article"
 msgstr ""
 
-#: include/functions.php:3137 classes/feeds.php:638
+#: include/functions.php:3087 classes/feeds.php:638
 msgid "Originally from:"
 msgstr ""
 
-#: include/functions.php:3150 classes/feeds.php:651 classes/pref/feeds.php:539
+#: include/functions.php:3100 classes/feeds.php:651 classes/pref/feeds.php:540
 msgid "Feed URL"
 msgstr ""
 
-#: include/functions.php:3181 classes/dlg.php:43 classes/dlg.php:162
-#: classes/dlg.php:185 classes/dlg.php:222 classes/dlg.php:506
-#: classes/dlg.php:541 classes/dlg.php:572 classes/dlg.php:606
-#: classes/dlg.php:618 classes/backend.php:105 classes/pref/users.php:106
-#: classes/pref/filters.php:111 classes/pref/feeds.php:1587
-#: classes/pref/feeds.php:1659 plugins/import_export/init.php:409
-#: plugins/import_export/init.php:432 plugins/googlereaderimport/init.php:164
-#: plugins/share/init.php:67 plugins/updater/init.php:357
+#: include/functions.php:3131 classes/dlg.php:37 classes/dlg.php:60
+#: classes/dlg.php:93 classes/dlg.php:159 classes/dlg.php:190
+#: classes/dlg.php:217 classes/dlg.php:250 classes/dlg.php:262
+#: classes/backend.php:105 classes/pref/users.php:106
+#: classes/pref/filters.php:147 classes/pref/prefs.php:1012
+#: classes/pref/feeds.php:1588 classes/pref/feeds.php:1660
+#: plugins/import_export/init.php:409 plugins/import_export/init.php:432
+#: plugins/googlereaderimport/init.php:168 plugins/share/init.php:67
+#: plugins/updater/init.php:357
 msgid "Close this window"
 msgstr ""
 
-#: include/functions.php:3417
+#: include/functions.php:3367
 msgid "(edit note)"
 msgstr ""
 
-#: include/functions.php:3650
+#: include/functions.php:3600
 msgid "unknown type"
 msgstr ""
 
-#: include/functions.php:3706
+#: include/functions.php:3656
 msgid "Attachments"
 msgstr ""
 
@@ -865,7 +862,7 @@ msgstr ""
 msgid "Assign tags"
 msgstr ""
 
-#: include/localized_schema.php:14 js/viewfeed.js:1990
+#: include/localized_schema.php:14 js/viewfeed.js:1978
 msgid "Assign label"
 msgstr ""
 
@@ -1059,7 +1056,7 @@ msgstr ""
 msgid "User timezone"
 msgstr ""
 
-#: include/localized_schema.php:61 js/prefs.js:1719
+#: include/localized_schema.php:61 js/prefs.js:1725
 msgid "Customize stylesheet"
 msgstr ""
 
@@ -1083,12 +1080,12 @@ msgstr ""
 msgid "Select theme"
 msgstr ""
 
-#: include/login_form.php:183 classes/handler/public.php:460
-#: classes/handler/public.php:748 plugins/mobile/login_form.php:40
+#: include/login_form.php:183 classes/handler/public.php:461
+#: classes/handler/public.php:749 plugins/mobile/login_form.php:40
 msgid "Login:"
 msgstr ""
 
-#: include/login_form.php:192 classes/handler/public.php:463
+#: include/login_form.php:192 classes/handler/public.php:464
 #: plugins/mobile/login_form.php:45
 msgid "Password:"
 msgstr ""
@@ -1097,7 +1094,7 @@ msgstr ""
 msgid "I forgot my password"
 msgstr ""
 
-#: include/login_form.php:201 classes/handler/public.php:466
+#: include/login_form.php:201 classes/handler/public.php:467
 msgid "Language:"
 msgstr ""
 
@@ -1105,8 +1102,8 @@ msgstr ""
 msgid "Profile:"
 msgstr ""
 
-#: include/login_form.php:213 classes/handler/public.php:210
-#: classes/rpc.php:64 classes/dlg.php:98
+#: include/login_form.php:213 classes/handler/public.php:211
+#: classes/rpc.php:64 classes/pref/prefs.php:948
 msgid "Default profile"
 msgstr ""
 
@@ -1118,408 +1115,225 @@ msgstr ""
 msgid "Remember me"
 msgstr ""
 
-#: include/login_form.php:235 classes/handler/public.php:476
+#: include/login_form.php:235 classes/handler/public.php:477
 #: plugins/mobile/login_form.php:28
 msgid "Log in"
 msgstr ""
 
+#: include/sessions.php:53
+msgid "Session failed to validate (incorrect IP)"
+msgstr ""
+
 #: classes/article.php:25
 msgid "Article not found."
 msgstr ""
 
-#: classes/handler/public.php:401 plugins/bookmarklets/init.php:38
+#: classes/article.php:179
+msgid "Tags for this article (separated by commas):"
+msgstr ""
+
+#: classes/article.php:204 classes/pref/users.php:192
+#: classes/pref/labels.php:79 classes/pref/filters.php:405
+#: classes/pref/prefs.php:894 classes/pref/feeds.php:733
+#: classes/pref/feeds.php:881 plugins/nsfw/init.php:86
+#: plugins/note/init.php:53 plugins/instances/init.php:248
+msgid "Save"
+msgstr ""
+
+#: classes/article.php:206 classes/handler/public.php:438
+#: classes/handler/public.php:480 classes/feeds.php:1024
+#: classes/feeds.php:1076 classes/feeds.php:1136 classes/pref/users.php:194
+#: classes/pref/labels.php:81 classes/pref/filters.php:408
+#: classes/pref/filters.php:804 classes/pref/filters.php:880
+#: classes/pref/filters.php:947 classes/pref/prefs.php:896
+#: classes/pref/feeds.php:734 classes/pref/feeds.php:884
+#: classes/pref/feeds.php:1797 plugins/mail/init.php:131
+#: plugins/note/init.php:55 plugins/instances/init.php:251
+#: plugins/instances/init.php:440
+msgid "Cancel"
+msgstr ""
+
+#: classes/handler/public.php:402 plugins/bookmarklets/init.php:38
 msgid "Share with Tiny Tiny RSS"
 msgstr ""
 
-#: classes/handler/public.php:409
+#: classes/handler/public.php:410
 msgid "Title:"
 msgstr ""
 
-#: classes/handler/public.php:411 classes/dlg.php:663
-#: classes/pref/feeds.php:537 classes/pref/feeds.php:768
-#: plugins/instances/init.php:215
+#: classes/handler/public.php:412 classes/pref/feeds.php:538
+#: classes/pref/feeds.php:769 plugins/instances/init.php:215
+#: plugins/instances/init.php:405
 msgid "URL:"
 msgstr ""
 
-#: classes/handler/public.php:413
+#: classes/handler/public.php:414
 msgid "Content:"
 msgstr ""
 
-#: classes/handler/public.php:415
+#: classes/handler/public.php:416
 msgid "Labels:"
 msgstr ""
 
-#: classes/handler/public.php:434
+#: classes/handler/public.php:435
 msgid "Shared article will appear in the Published feed."
 msgstr ""
 
-#: classes/handler/public.php:436
+#: classes/handler/public.php:437
 msgid "Share"
 msgstr ""
 
-#: classes/handler/public.php:437 classes/handler/public.php:479
-#: classes/dlg.php:296 classes/dlg.php:348 classes/dlg.php:408
-#: classes/dlg.php:439 classes/dlg.php:648 classes/dlg.php:698
-#: classes/dlg.php:747 classes/pref/users.php:194 classes/pref/labels.php:81
-#: classes/pref/filters.php:363 classes/pref/filters.php:746
-#: classes/pref/filters.php:822 classes/pref/filters.php:889
-#: classes/pref/feeds.php:733 classes/pref/feeds.php:883
-#: plugins/mail/init.php:131 plugins/note/init.php:55
-#: plugins/instances/init.php:251
-msgid "Cancel"
-msgstr ""
-
-#: classes/handler/public.php:458
+#: classes/handler/public.php:459
 msgid "Not logged in"
 msgstr ""
 
-#: classes/handler/public.php:525
+#: classes/handler/public.php:526
 msgid "Incorrect username or password"
 msgstr ""
 
-#: classes/handler/public.php:561 classes/handler/public.php:658
+#: classes/handler/public.php:562 classes/handler/public.php:659
 #, php-format
 msgid "Already subscribed to <b>%s</b>."
 msgstr ""
 
-#: classes/handler/public.php:564 classes/handler/public.php:649
+#: classes/handler/public.php:565 classes/handler/public.php:650
 #, php-format
 msgid "Subscribed to <b>%s</b>."
 msgstr ""
 
-#: classes/handler/public.php:567 classes/handler/public.php:652
+#: classes/handler/public.php:568 classes/handler/public.php:653
 #, php-format
 msgid "Could not subscribe to <b>%s</b>."
 msgstr ""
 
-#: classes/handler/public.php:570 classes/handler/public.php:655
+#: classes/handler/public.php:571 classes/handler/public.php:656
 #, php-format
 msgid "No feeds found in <b>%s</b>."
 msgstr ""
 
-#: classes/handler/public.php:573 classes/handler/public.php:661
+#: classes/handler/public.php:574 classes/handler/public.php:662
 msgid "Multiple feed URLs found."
 msgstr ""
 
-#: classes/handler/public.php:577 classes/handler/public.php:666
+#: classes/handler/public.php:578 classes/handler/public.php:667
 #, php-format
 msgid "Could not subscribe to <b>%s</b>.<br>Can't download the Feed URL."
 msgstr ""
 
-#: classes/handler/public.php:595 classes/handler/public.php:684
+#: classes/handler/public.php:596 classes/handler/public.php:685
 msgid "Subscribe to selected feed"
 msgstr ""
 
-#: classes/handler/public.php:620 classes/handler/public.php:708
+#: classes/handler/public.php:621 classes/handler/public.php:709
 msgid "Edit subscription options"
 msgstr ""
 
-#: classes/handler/public.php:735
+#: classes/handler/public.php:736
 msgid "Password recovery"
 msgstr ""
 
-#: classes/handler/public.php:741
+#: classes/handler/public.php:742
 msgid ""
 "You will need to provide valid account name and email. New password will be "
 "sent on your email address."
 msgstr ""
 
-#: classes/handler/public.php:763 classes/pref/users.php:378
+#: classes/handler/public.php:764 classes/pref/users.php:378
 msgid "Reset password"
 msgstr ""
 
-#: classes/handler/public.php:773
+#: classes/handler/public.php:774
 msgid "Some of the required form parameters are missing or incorrect."
 msgstr ""
 
-#: classes/handler/public.php:777 classes/handler/public.php:803
+#: classes/handler/public.php:778 classes/handler/public.php:804
 #: plugins/digest/digest_body.php:69
 msgid "Go back"
 msgstr ""
 
-#: classes/handler/public.php:799
+#: classes/handler/public.php:800
 msgid "Sorry, login and email combination not found."
 msgstr ""
 
-#: classes/dlg.php:22
+#: classes/dlg.php:16
 msgid ""
 "If you have imported labels and/or filters, you might need to reload "
 "preferences to see your new data."
 msgstr ""
 
-#: classes/dlg.php:55 classes/pref/users.php:360 classes/pref/labels.php:272
-#: classes/pref/filters.php:234 classes/pref/filters.php:282
-#: classes/pref/filters.php:597 classes/pref/filters.php:676
-#: classes/pref/filters.php:703 classes/pref/feeds.php:1262
-#: classes/pref/feeds.php:1532 classes/pref/feeds.php:1602
-#: plugins/instances/init.php:287
-msgid "Select"
-msgstr ""
-
-#: classes/dlg.php:58 classes/feeds.php:92 classes/pref/users.php:363
-#: classes/pref/labels.php:275 classes/pref/filters.php:237
-#: classes/pref/filters.php:285 classes/pref/filters.php:600
-#: classes/pref/filters.php:679 classes/pref/filters.php:706
-#: classes/pref/feeds.php:1265 classes/pref/feeds.php:1535
-#: classes/pref/feeds.php:1605 plugins/instances/init.php:290
-msgid "All"
-msgstr ""
-
-#: classes/dlg.php:60 classes/feeds.php:95 classes/pref/users.php:365
-#: classes/pref/labels.php:277 classes/pref/filters.php:239
-#: classes/pref/filters.php:287 classes/pref/filters.php:602
-#: classes/pref/filters.php:681 classes/pref/filters.php:708
-#: classes/pref/feeds.php:1267 classes/pref/feeds.php:1537
-#: classes/pref/feeds.php:1607 plugins/instances/init.php:292
-msgid "None"
-msgstr ""
-
-#: classes/dlg.php:69
-msgid "Create profile"
-msgstr ""
-
-#: classes/dlg.php:92 classes/dlg.php:122
-msgid "(active)"
-msgstr ""
-
-#: classes/dlg.php:156
-msgid "Remove selected profiles"
-msgstr ""
-
-#: classes/dlg.php:158
-msgid "Activate profile"
-msgstr ""
-
-#: classes/dlg.php:168
-msgid "Public OPML URL"
-msgstr ""
-
-#: classes/dlg.php:173
+#: classes/dlg.php:48
 msgid "Your Public OPML URL is:"
 msgstr ""
 
-#: classes/dlg.php:182 classes/dlg.php:569
+#: classes/dlg.php:57 classes/dlg.php:214
 msgid "Generate new URL"
 msgstr ""
 
-#: classes/dlg.php:194
-msgid "Notice"
-msgstr ""
-
-#: classes/dlg.php:200
+#: classes/dlg.php:71
 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 ""
 
-#: classes/dlg.php:204 classes/dlg.php:213
+#: classes/dlg.php:75 classes/dlg.php:84
 msgid "Last update:"
 msgstr ""
 
-#: classes/dlg.php:209
+#: classes/dlg.php:80
 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 ""
 
-#: classes/dlg.php:234 classes/dlg.php:242
-msgid "Feed or site URL"
-msgstr ""
-
-#: classes/dlg.php:248 classes/dlg.php:711 classes/pref/feeds.php:559
-#: classes/pref/feeds.php:781
-msgid "Place in category:"
-msgstr ""
-
-#: classes/dlg.php:256
-msgid "Available feeds"
-msgstr ""
-
-#: classes/dlg.php:268 classes/pref/users.php:155 classes/pref/feeds.php:589
-#: classes/pref/feeds.php:817
-msgid "Authentication"
-msgstr ""
-
-#: classes/dlg.php:272 classes/dlg.php:725 classes/pref/users.php:420
-#: classes/pref/feeds.php:595 classes/pref/feeds.php:821
-msgid "Login"
-msgstr ""
-
-#: classes/dlg.php:275 classes/dlg.php:728 classes/pref/prefs.php:202
-#: classes/pref/feeds.php:601 classes/pref/feeds.php:827
-msgid "Password"
-msgstr ""
-
-#: classes/dlg.php:285
-msgid "This feed requires authentication."
-msgstr ""
-
-#: classes/dlg.php:290 classes/dlg.php:346 classes/dlg.php:746
-msgid "Subscribe"
-msgstr ""
-
-#: classes/dlg.php:293
-msgid "More feeds"
-msgstr ""
-
-#: classes/dlg.php:316 classes/dlg.php:407 classes/pref/users.php:350
-#: classes/pref/filters.php:593 classes/pref/feeds.php:1258 js/tt-rss.js:170
-msgid "Search"
-msgstr ""
-
-#: classes/dlg.php:320
-msgid "Popular feeds"
-msgstr ""
-
-#: classes/dlg.php:321
-msgid "Feed archive"
-msgstr ""
-
-#: classes/dlg.php:324
-msgid "limit:"
-msgstr ""
-
-#: classes/dlg.php:347 classes/pref/users.php:376 classes/pref/labels.php:284
-#: classes/pref/filters.php:353 classes/pref/filters.php:615
-#: classes/pref/feeds.php:706 plugins/instances/init.php:297
-msgid "Remove"
-msgstr ""
-
-#: classes/dlg.php:358
-msgid "Look for"
-msgstr ""
-
-#: classes/dlg.php:366
-msgid "Limit search to:"
-msgstr ""
-
-#: classes/dlg.php:382
-msgid "This feed"
-msgstr ""
-
-#: classes/dlg.php:414
-msgid "Tags for this article (separated by commas):"
-msgstr ""
-
-#: classes/dlg.php:437 classes/dlg.php:646 classes/pref/users.php:192
-#: classes/pref/labels.php:79 classes/pref/filters.php:360
-#: classes/pref/feeds.php:732 classes/pref/feeds.php:880
-#: plugins/nsfw/init.php:86 plugins/note/init.php:53
-#: plugins/instances/init.php:248
-msgid "Save"
-msgstr ""
-
-#: classes/dlg.php:445
-msgid "Tag Cloud"
-msgstr ""
-
-#: classes/dlg.php:514
-msgid "Select item(s) by tags"
-msgstr ""
-
-#: classes/dlg.php:517
+#: classes/dlg.php:166
 msgid "Match:"
 msgstr ""
 
-#: classes/dlg.php:519
+#: classes/dlg.php:168
 msgid "Any"
 msgstr ""
 
-#: classes/dlg.php:522
+#: classes/dlg.php:171
 msgid "All tags."
 msgstr ""
 
-#: classes/dlg.php:524
+#: classes/dlg.php:173
 msgid "Which Tags?"
 msgstr ""
 
-#: classes/dlg.php:537
+#: classes/dlg.php:186
 msgid "Display entries"
 msgstr ""
 
-#: classes/dlg.php:549 classes/feeds.php:138
-msgid "View as RSS"
-msgstr ""
-
-#: classes/dlg.php:560
+#: classes/dlg.php:205
 msgid "You can view this feed as RSS using the following URL:"
 msgstr ""
 
-#: classes/dlg.php:589 plugins/updater/init.php:327
+#: classes/dlg.php:233 plugins/updater/init.php:327
 #, php-format
 msgid "New version of Tiny Tiny RSS is available (%s)."
 msgstr ""
 
-#: classes/dlg.php:597
+#: classes/dlg.php:241
 msgid ""
 "You can update using built-in updater in the Preferences or by using update."
 "php"
 msgstr ""
 
-#: classes/dlg.php:601 plugins/updater/init.php:331
+#: classes/dlg.php:245 plugins/updater/init.php:331
 msgid "See the release notes"
 msgstr ""
 
-#: classes/dlg.php:603
+#: classes/dlg.php:247
 msgid "Download"
 msgstr ""
 
-#: classes/dlg.php:611
+#: classes/dlg.php:255
 msgid "Error receiving version information or no new version available."
 msgstr ""
 
-#: classes/dlg.php:631
-#, 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 ""
-
-#: classes/dlg.php:657 plugins/instances/init.php:207
-msgid "Instance"
-msgstr ""
-
-#: classes/dlg.php:666 plugins/instances/init.php:218
-#: plugins/instances/init.php:315
-msgid "Instance URL"
-msgstr ""
-
-#: classes/dlg.php:676 plugins/instances/init.php:229
-msgid "Access key:"
-msgstr ""
-
-#: classes/dlg.php:679 plugins/instances/init.php:232
-#: plugins/instances/init.php:316
-msgid "Access key"
-msgstr ""
-
-#: classes/dlg.php:683 plugins/instances/init.php:236
-msgid "Use one access key for both linked instances."
-msgstr ""
-
-#: classes/dlg.php:691 plugins/instances/init.php:244
-msgid "Generate new key"
-msgstr ""
-
-#: classes/dlg.php:695
-msgid "Create link"
-msgstr ""
-
-#: classes/dlg.php:708
-msgid "Add one valid RSS feed per line (no feed detection is done)"
-msgstr ""
-
-#: classes/dlg.php:717
-msgid "Feeds to subscribe, One per line"
-msgstr ""
-
-#: classes/dlg.php:739
-msgid "Feeds require authentication."
-msgstr ""
-
 #: classes/feeds.php:68
 msgid "Visit the website"
 msgstr ""
@@ -1528,14 +1342,36 @@ msgstr ""
 msgid "View as RSS feed"
 msgstr ""
 
+#: classes/feeds.php:84 classes/feeds.php:138 classes/pref/feeds.php:1440
+msgid "View as RSS"
+msgstr ""
+
 #: classes/feeds.php:91
 msgid "Select:"
 msgstr ""
 
+#: classes/feeds.php:92 classes/pref/users.php:363 classes/pref/labels.php:275
+#: classes/pref/filters.php:282 classes/pref/filters.php:330
+#: classes/pref/filters.php:648 classes/pref/filters.php:737
+#: classes/pref/filters.php:764 classes/pref/prefs.php:908
+#: classes/pref/feeds.php:1266 classes/pref/feeds.php:1536
+#: classes/pref/feeds.php:1606 plugins/instances/init.php:290
+msgid "All"
+msgstr ""
+
 #: classes/feeds.php:94
 msgid "Invert"
 msgstr ""
 
+#: classes/feeds.php:95 classes/pref/users.php:365 classes/pref/labels.php:277
+#: classes/pref/filters.php:284 classes/pref/filters.php:332
+#: classes/pref/filters.php:650 classes/pref/filters.php:739
+#: classes/pref/filters.php:766 classes/pref/prefs.php:910
+#: classes/pref/feeds.php:1268 classes/pref/feeds.php:1538
+#: classes/pref/feeds.php:1608 plugins/instances/init.php:292
+msgid "None"
+msgstr ""
+
 #: classes/feeds.php:101
 msgid "More..."
 msgstr ""
@@ -1560,9 +1396,9 @@ msgstr ""
 msgid "Move back"
 msgstr ""
 
-#: classes/feeds.php:118 classes/pref/filters.php:246
-#: classes/pref/filters.php:294 classes/pref/filters.php:688
-#: classes/pref/filters.php:715
+#: classes/feeds.php:118 classes/pref/filters.php:291
+#: classes/pref/filters.php:339 classes/pref/filters.php:746
+#: classes/pref/filters.php:773
 msgid "Delete"
 msgstr ""
 
@@ -1614,19 +1450,97 @@ msgstr ""
 msgid "No articles found to display."
 msgstr ""
 
-#: classes/feeds.php:755 classes/feeds.php:920
+#: classes/feeds.php:755 classes/feeds.php:919
 #, php-format
 msgid "Feeds last updated at %s"
 msgstr ""
 
-#: classes/feeds.php:765 classes/feeds.php:930
+#: classes/feeds.php:765 classes/feeds.php:929
 msgid "Some feeds have update errors (click for details)"
 msgstr ""
 
-#: classes/feeds.php:910
+#: classes/feeds.php:909
 msgid "No feed selected."
 msgstr ""
 
+#: classes/feeds.php:962 classes/feeds.php:970
+msgid "Feed or site URL"
+msgstr ""
+
+#: classes/feeds.php:976 classes/pref/feeds.php:560 classes/pref/feeds.php:782
+#: classes/pref/feeds.php:1761
+msgid "Place in category:"
+msgstr ""
+
+#: classes/feeds.php:984
+msgid "Available feeds"
+msgstr ""
+
+#: classes/feeds.php:996 classes/pref/users.php:155 classes/pref/feeds.php:590
+#: classes/pref/feeds.php:818
+msgid "Authentication"
+msgstr ""
+
+#: classes/feeds.php:1000 classes/pref/users.php:420
+#: classes/pref/feeds.php:596 classes/pref/feeds.php:822
+#: classes/pref/feeds.php:1775
+msgid "Login"
+msgstr ""
+
+#: classes/feeds.php:1003 classes/pref/prefs.php:202
+#: classes/pref/feeds.php:602 classes/pref/feeds.php:828
+#: classes/pref/feeds.php:1778
+msgid "Password"
+msgstr ""
+
+#: classes/feeds.php:1013
+msgid "This feed requires authentication."
+msgstr ""
+
+#: classes/feeds.php:1018 classes/feeds.php:1074 classes/pref/feeds.php:1796
+msgid "Subscribe"
+msgstr ""
+
+#: classes/feeds.php:1021
+msgid "More feeds"
+msgstr ""
+
+#: classes/feeds.php:1044 classes/feeds.php:1135 classes/pref/users.php:350
+#: classes/pref/filters.php:641 classes/pref/feeds.php:1259 js/tt-rss.js:170
+msgid "Search"
+msgstr ""
+
+#: classes/feeds.php:1048
+msgid "Popular feeds"
+msgstr ""
+
+#: classes/feeds.php:1049
+msgid "Feed archive"
+msgstr ""
+
+#: classes/feeds.php:1052
+msgid "limit:"
+msgstr ""
+
+#: classes/feeds.php:1075 classes/pref/users.php:376
+#: classes/pref/labels.php:284 classes/pref/filters.php:398
+#: classes/pref/filters.php:667 classes/pref/feeds.php:707
+#: plugins/instances/init.php:297
+msgid "Remove"
+msgstr ""
+
+#: classes/feeds.php:1086
+msgid "Look for"
+msgstr ""
+
+#: classes/feeds.php:1094
+msgid "Limit search to:"
+msgstr ""
+
+#: classes/feeds.php:1110
+msgid "This feed"
+msgstr ""
+
 #: classes/backend.php:33
 msgid "Other interface tips are available in the Tiny Tiny RSS wiki."
 msgstr ""
@@ -1697,7 +1611,7 @@ msgstr ""
 msgid "Error: please upload OPML file."
 msgstr ""
 
-#: classes/opml.php:475 plugins/googlereaderimport/init.php:157
+#: classes/opml.php:475 plugins/googlereaderimport/init.php:161
 msgid "Error while parsing document."
 msgstr ""
 
@@ -1741,8 +1655,8 @@ msgstr ""
 msgid "Change password to"
 msgstr ""
 
-#: classes/pref/users.php:177 classes/pref/feeds.php:609
-#: classes/pref/feeds.php:833
+#: classes/pref/users.php:177 classes/pref/feeds.php:610
+#: classes/pref/feeds.php:834
 msgid "Options"
 msgstr ""
 
@@ -1779,6 +1693,15 @@ msgstr ""
 msgid "[tt-rss] Password change notification"
 msgstr ""
 
+#: classes/pref/users.php:360 classes/pref/labels.php:272
+#: classes/pref/filters.php:279 classes/pref/filters.php:327
+#: classes/pref/filters.php:645 classes/pref/filters.php:734
+#: classes/pref/filters.php:761 classes/pref/prefs.php:905
+#: classes/pref/feeds.php:1263 classes/pref/feeds.php:1533
+#: classes/pref/feeds.php:1603 plugins/instances/init.php:287
+msgid "Select"
+msgstr ""
+
 #: classes/pref/users.php:368
 msgid "Create user"
 msgstr ""
@@ -1787,7 +1710,7 @@ msgstr ""
 msgid "Details"
 msgstr ""
 
-#: classes/pref/users.php:374 classes/pref/filters.php:612
+#: classes/pref/users.php:374 classes/pref/filters.php:660
 #: plugins/instances/init.php:296
 msgid "Edit"
 msgstr ""
@@ -1812,7 +1735,8 @@ msgstr ""
 msgid "No matching users found."
 msgstr ""
 
-#: classes/pref/labels.php:22
+#: classes/pref/labels.php:22 classes/pref/filters.php:268
+#: classes/pref/filters.php:725
 msgid "Caption"
 msgstr ""
 
@@ -1837,108 +1761,117 @@ msgstr ""
 msgid "Clear colors"
 msgstr ""
 
-#: classes/pref/filters.php:60
+#: classes/pref/filters.php:96
 msgid "Articles matching this filter:"
 msgstr ""
 
-#: classes/pref/filters.php:97
+#: classes/pref/filters.php:133
 msgid "No recent articles matching this filter have been found."
 msgstr ""
 
-#: classes/pref/filters.php:101
+#: classes/pref/filters.php:137
 msgid ""
 "Complex expressions might not give results while testing due to issues with "
 "database server regexp implementation."
 msgstr ""
 
-#: classes/pref/filters.php:229 classes/pref/filters.php:671
-#: classes/pref/filters.php:786
+#: classes/pref/filters.php:274 classes/pref/filters.php:729
+#: classes/pref/filters.php:844
 msgid "Match"
 msgstr ""
 
-#: classes/pref/filters.php:243 classes/pref/filters.php:291
-#: classes/pref/filters.php:685 classes/pref/filters.php:712
+#: classes/pref/filters.php:288 classes/pref/filters.php:336
+#: classes/pref/filters.php:743 classes/pref/filters.php:770
 msgid "Add"
 msgstr ""
 
-#: classes/pref/filters.php:277 classes/pref/filters.php:698
+#: classes/pref/filters.php:322 classes/pref/filters.php:756
 msgid "Apply actions"
 msgstr ""
 
-#: classes/pref/filters.php:327 classes/pref/filters.php:727
+#: classes/pref/filters.php:372 classes/pref/filters.php:785
 msgid "Enabled"
 msgstr ""
 
-#: classes/pref/filters.php:336 classes/pref/filters.php:730
+#: classes/pref/filters.php:381 classes/pref/filters.php:788
 msgid "Match any rule"
 msgstr ""
 
-#: classes/pref/filters.php:345 classes/pref/filters.php:733
+#: classes/pref/filters.php:390 classes/pref/filters.php:791
 msgid "Inverse matching"
 msgstr ""
 
-#: classes/pref/filters.php:357 classes/pref/filters.php:740
+#: classes/pref/filters.php:402 classes/pref/filters.php:798
 msgid "Test"
 msgstr ""
 
-#: classes/pref/filters.php:390
+#: classes/pref/filters.php:435
 msgid "(inverse)"
 msgstr ""
 
-#: classes/pref/filters.php:389
+#: classes/pref/filters.php:434
 #, php-format
 msgid "%s on %s in %s %s"
 msgstr ""
 
-#: classes/pref/filters.php:609
+#: classes/pref/filters.php:657
 msgid "Combine"
 msgstr ""
 
-#: classes/pref/filters.php:619 classes/pref/feeds.php:1317
+#: classes/pref/filters.php:663 classes/pref/feeds.php:1279
+#: classes/pref/feeds.php:1293
+msgid "Reset sort order"
+msgstr ""
+
+#: classes/pref/filters.php:671 classes/pref/feeds.php:1318
 msgid "Rescore articles"
 msgstr ""
 
-#: classes/pref/filters.php:743
+#: classes/pref/filters.php:801
 msgid "Create"
 msgstr ""
 
-#: classes/pref/filters.php:798
+#: classes/pref/filters.php:856
 msgid "Inverse regular expression matching"
 msgstr ""
 
-#: classes/pref/filters.php:800
+#: classes/pref/filters.php:858
 msgid "on field"
 msgstr ""
 
-#: classes/pref/filters.php:806 js/PrefFilterTree.js:29
+#: classes/pref/filters.php:864 js/PrefFilterTree.js:45
 #: plugins/digest/digest.js:242
 msgid "in"
 msgstr ""
 
-#: classes/pref/filters.php:819
+#: classes/pref/filters.php:877
 msgid "Save rule"
 msgstr ""
 
-#: classes/pref/filters.php:819 js/functions.js:1069
+#: classes/pref/filters.php:877 js/functions.js:1063
 msgid "Add rule"
 msgstr ""
 
-#: classes/pref/filters.php:842
+#: classes/pref/filters.php:900
 msgid "Perform Action"
 msgstr ""
 
-#: classes/pref/filters.php:868
+#: classes/pref/filters.php:926
 msgid "with parameters:"
 msgstr ""
 
-#: classes/pref/filters.php:886
+#: classes/pref/filters.php:944
 msgid "Save action"
 msgstr ""
 
-#: classes/pref/filters.php:886 js/functions.js:1095
+#: classes/pref/filters.php:944 js/functions.js:1089
 msgid "Add action"
 msgstr ""
 
+#: classes/pref/filters.php:967
+msgid "[No caption]"
+msgstr ""
+
 #: classes/pref/prefs.php:17
 msgid "Old password cannot be blank."
 msgstr ""
@@ -2142,237 +2075,268 @@ msgstr ""
 msgid "Incorrect password"
 msgstr ""
 
-#: classes/pref/feeds.php:12
-msgid "Check to enable field"
+#: classes/pref/prefs.php:879
+#, 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 ""
 
-#: classes/pref/feeds.php:60 classes/pref/feeds.php:208
-#: classes/pref/feeds.php:250 classes/pref/feeds.php:256
-#: classes/pref/feeds.php:281
-#, php-format
-msgid "(%d feed)"
-msgid_plural "(%d feeds)"
-msgstr[0] ""
-msgstr[1] ""
+#: classes/pref/prefs.php:919
+msgid "Create profile"
+msgstr ""
+
+#: classes/pref/prefs.php:942 classes/pref/prefs.php:972
+msgid "(active)"
+msgstr ""
+
+#: classes/pref/prefs.php:1006
+msgid "Remove selected profiles"
+msgstr ""
 
-#: classes/pref/feeds.php:526
+#: classes/pref/prefs.php:1008
+msgid "Activate profile"
+msgstr ""
+
+#: classes/pref/feeds.php:13
+msgid "Check to enable field"
+msgstr ""
+
+#: classes/pref/feeds.php:527
 msgid "Feed Title"
 msgstr ""
 
-#: classes/pref/feeds.php:582 classes/pref/feeds.php:808
+#: classes/pref/feeds.php:568 classes/pref/feeds.php:793
+msgid "Update"
+msgstr ""
+
+#: classes/pref/feeds.php:583 classes/pref/feeds.php:809
 msgid "Article purging:"
 msgstr ""
 
-#: classes/pref/feeds.php:605
+#: classes/pref/feeds.php:606
 msgid ""
 "<b>Hint:</b> you need to fill in your login information if your feed "
 "requires authentication, except for Twitter feeds."
 msgstr ""
 
-#: classes/pref/feeds.php:621 classes/pref/feeds.php:837
+#: classes/pref/feeds.php:622 classes/pref/feeds.php:838
 msgid "Hide from Popular feeds"
 msgstr ""
 
-#: classes/pref/feeds.php:633 classes/pref/feeds.php:843
+#: classes/pref/feeds.php:634 classes/pref/feeds.php:844
 msgid "Include in e-mail digest"
 msgstr ""
 
-#: classes/pref/feeds.php:646 classes/pref/feeds.php:849
+#: classes/pref/feeds.php:647 classes/pref/feeds.php:850
 msgid "Always display image attachments"
 msgstr ""
 
-#: classes/pref/feeds.php:659 classes/pref/feeds.php:857
+#: classes/pref/feeds.php:660 classes/pref/feeds.php:858
 msgid "Do not embed images"
 msgstr ""
 
-#: classes/pref/feeds.php:672 classes/pref/feeds.php:865
+#: classes/pref/feeds.php:673 classes/pref/feeds.php:866
 msgid "Cache images locally"
 msgstr ""
 
-#: classes/pref/feeds.php:684 classes/pref/feeds.php:871
+#: classes/pref/feeds.php:685 classes/pref/feeds.php:872
 msgid "Mark updated articles as unread"
 msgstr ""
 
-#: classes/pref/feeds.php:690
+#: classes/pref/feeds.php:691
 msgid "Icon"
 msgstr ""
 
-#: classes/pref/feeds.php:704
+#: classes/pref/feeds.php:705
 msgid "Replace"
 msgstr ""
 
-#: classes/pref/feeds.php:723
+#: classes/pref/feeds.php:724
 msgid "Resubscribe to push updates"
 msgstr ""
 
-#: classes/pref/feeds.php:730
+#: classes/pref/feeds.php:731
 msgid "Resets PubSubHubbub subscription status for push-enabled feeds."
 msgstr ""
 
-#: classes/pref/feeds.php:1111 classes/pref/feeds.php:1164
+#: classes/pref/feeds.php:1112 classes/pref/feeds.php:1165
 msgid "All done."
 msgstr ""
 
-#: classes/pref/feeds.php:1219
+#: classes/pref/feeds.php:1220
 msgid "Feeds with errors"
 msgstr ""
 
-#: classes/pref/feeds.php:1239
+#: classes/pref/feeds.php:1240
 msgid "Inactive feeds"
 msgstr ""
 
-#: classes/pref/feeds.php:1276
+#: classes/pref/feeds.php:1277
 msgid "Edit selected feeds"
 msgstr ""
 
-#: classes/pref/feeds.php:1278 classes/pref/feeds.php:1292
-msgid "Reset sort order"
-msgstr ""
-
-#: classes/pref/feeds.php:1280 js/prefs.js:1764
+#: classes/pref/feeds.php:1281 js/prefs.js:1770
 msgid "Batch subscribe"
 msgstr ""
 
-#: classes/pref/feeds.php:1285
+#: classes/pref/feeds.php:1286
 msgid "Categories"
 msgstr ""
 
-#: classes/pref/feeds.php:1288
+#: classes/pref/feeds.php:1289
 msgid "Add category"
 msgstr ""
 
-#: classes/pref/feeds.php:1290
+#: classes/pref/feeds.php:1291
 msgid "(Un)hide empty categories"
 msgstr ""
 
-#: classes/pref/feeds.php:1294
+#: classes/pref/feeds.php:1295
 msgid "Remove selected"
 msgstr ""
 
-#: classes/pref/feeds.php:1308
+#: classes/pref/feeds.php:1309
 msgid "More actions..."
 msgstr ""
 
-#: classes/pref/feeds.php:1312
+#: classes/pref/feeds.php:1313
 msgid "Manual purge"
 msgstr ""
 
-#: classes/pref/feeds.php:1316
+#: classes/pref/feeds.php:1317
 msgid "Clear feed data"
 msgstr ""
 
-#: classes/pref/feeds.php:1367
+#: classes/pref/feeds.php:1368
 msgid "OPML"
 msgstr ""
 
-#: classes/pref/feeds.php:1369
+#: classes/pref/feeds.php:1370
 msgid ""
 "Using OPML you can export and import your feeds, filters, labels and Tiny "
 "Tiny RSS settings."
 msgstr ""
 
-#: classes/pref/feeds.php:1371
+#: classes/pref/feeds.php:1372
 msgid "Only main settings profile can be migrated using OPML."
 msgstr ""
 
-#: classes/pref/feeds.php:1384
+#: classes/pref/feeds.php:1385
 msgid "Import my OPML"
 msgstr ""
 
-#: classes/pref/feeds.php:1388
+#: classes/pref/feeds.php:1389
 msgid "Filename:"
 msgstr ""
 
-#: classes/pref/feeds.php:1390
+#: classes/pref/feeds.php:1391
 msgid "Include settings"
 msgstr ""
 
-#: classes/pref/feeds.php:1394
+#: classes/pref/feeds.php:1395
 msgid "Export OPML"
 msgstr ""
 
-#: classes/pref/feeds.php:1398
+#: classes/pref/feeds.php:1399
 msgid ""
 "Your OPML can be published publicly and can be subscribed by anyone who "
 "knows the URL below."
 msgstr ""
 
-#: classes/pref/feeds.php:1400
+#: classes/pref/feeds.php:1401
 msgid ""
 "Published OPML does not include your Tiny Tiny RSS settings, feeds that "
 "require authentication or feeds hidden from Popular feeds."
 msgstr ""
 
 #: classes/pref/feeds.php:1403
+msgid "Public OPML URL"
+msgstr ""
+
+#: classes/pref/feeds.php:1404
 msgid "Display published OPML URL"
 msgstr ""
 
-#: classes/pref/feeds.php:1413
+#: classes/pref/feeds.php:1414
 msgid "Firefox integration"
 msgstr ""
 
-#: classes/pref/feeds.php:1415
+#: classes/pref/feeds.php:1416
 msgid ""
 "This Tiny Tiny RSS site can be used as a Firefox Feed Reader by clicking the "
 "link below."
 msgstr ""
 
-#: classes/pref/feeds.php:1422
+#: classes/pref/feeds.php:1423
 msgid "Click here to register this site as a feed reader."
 msgstr ""
 
-#: classes/pref/feeds.php:1430
+#: classes/pref/feeds.php:1431
 msgid "Published & shared articles / Generated feeds"
 msgstr ""
 
-#: classes/pref/feeds.php:1432
+#: classes/pref/feeds.php:1433
 msgid "Published articles and generated feeds"
 msgstr ""
 
-#: classes/pref/feeds.php:1434
+#: classes/pref/feeds.php:1435
 msgid ""
 "Published articles are exported as a public RSS feed and can be subscribed "
 "by anyone who knows the URL specified below."
 msgstr ""
 
-#: classes/pref/feeds.php:1440
+#: classes/pref/feeds.php:1441
 msgid "Display URL"
 msgstr ""
 
-#: classes/pref/feeds.php:1443
+#: classes/pref/feeds.php:1444
 msgid "Clear all generated URLs"
 msgstr ""
 
-#: classes/pref/feeds.php:1445
+#: classes/pref/feeds.php:1446
 msgid "Articles shared by URL"
 msgstr ""
 
-#: classes/pref/feeds.php:1447
+#: classes/pref/feeds.php:1448
 msgid "You can disable all articles shared by unique URLs here."
 msgstr ""
 
-#: classes/pref/feeds.php:1450
+#: classes/pref/feeds.php:1451
 msgid "Unshare all articles"
 msgstr ""
 
-#: classes/pref/feeds.php:1528
+#: classes/pref/feeds.php:1529
 msgid ""
 "These feeds have not been updated with new content for 3 months (oldest "
 "first):"
 msgstr ""
 
-#: classes/pref/feeds.php:1565 classes/pref/feeds.php:1635
+#: classes/pref/feeds.php:1566 classes/pref/feeds.php:1636
 msgid "Click to edit feed"
 msgstr ""
 
-#: classes/pref/feeds.php:1583 classes/pref/feeds.php:1655
+#: classes/pref/feeds.php:1584 classes/pref/feeds.php:1656
 msgid "Unsubscribe from selected feeds"
 msgstr ""
 
-#: classes/pref/feeds.php:1594
+#: classes/pref/feeds.php:1595
 msgid "These feeds have not been updated because of errors:"
 msgstr ""
 
+#: classes/pref/feeds.php:1758
+msgid "Add one valid RSS feed per line (no feed detection is done)"
+msgstr ""
+
+#: classes/pref/feeds.php:1767
+msgid "Feeds to subscribe, One per line"
+msgstr ""
+
+#: classes/pref/feeds.php:1789
+msgid "Feeds require authentication."
+msgstr ""
+
 #: plugins/digest/digest_body.php:59
 msgid ""
 "Your browser doesn't support Javascript, which is required for this "
@@ -2623,24 +2587,24 @@ msgstr ""
 msgid "No file uploaded."
 msgstr ""
 
-#: plugins/googlereaderimport/init.php:149
+#: plugins/googlereaderimport/init.php:153
 #, php-format
 msgid "All done. %d out of %d articles imported."
 msgstr ""
 
-#: plugins/googlereaderimport/init.php:153
+#: plugins/googlereaderimport/init.php:157
 msgid "The document has incorrect format."
 msgstr ""
 
-#: plugins/googlereaderimport/init.php:322
+#: plugins/googlereaderimport/init.php:326
 msgid "Import starred or shared items from Google Reader"
 msgstr ""
 
-#: plugins/googlereaderimport/init.php:326
+#: plugins/googlereaderimport/init.php:330
 msgid "Paste your starred.json or shared.json into the form below."
 msgstr ""
 
-#: plugins/googlereaderimport/init.php:340
+#: plugins/googlereaderimport/init.php:344
 msgid "Import my Starred items"
 msgstr ""
 
@@ -2648,6 +2612,32 @@ msgstr ""
 msgid "Linked"
 msgstr ""
 
+#: plugins/instances/init.php:207 plugins/instances/init.php:399
+msgid "Instance"
+msgstr ""
+
+#: plugins/instances/init.php:218 plugins/instances/init.php:315
+#: plugins/instances/init.php:408
+msgid "Instance URL"
+msgstr ""
+
+#: plugins/instances/init.php:229 plugins/instances/init.php:418
+msgid "Access key:"
+msgstr ""
+
+#: plugins/instances/init.php:232 plugins/instances/init.php:316
+#: plugins/instances/init.php:421
+msgid "Access key"
+msgstr ""
+
+#: plugins/instances/init.php:236 plugins/instances/init.php:425
+msgid "Use one access key for both linked instances."
+msgstr ""
+
+#: plugins/instances/init.php:244 plugins/instances/init.php:433
+msgid "Generate new key"
+msgstr ""
+
 #: plugins/instances/init.php:295
 msgid "Link instance"
 msgstr ""
@@ -2670,6 +2660,10 @@ msgstr ""
 msgid "Stored feeds"
 msgstr ""
 
+#: plugins/instances/init.php:437
+msgid "Create link"
+msgstr ""
+
 #: plugins/share/init.php:27
 msgid "Share by URL"
 msgstr ""
@@ -2727,157 +2721,161 @@ msgstr ""
 msgid "close"
 msgstr ""
 
-#: js/functions.js:627
+#: js/functions.js:621
 msgid "Date syntax appears to be correct:"
 msgstr ""
 
-#: js/functions.js:630
+#: js/functions.js:624
 msgid "Date syntax is incorrect."
 msgstr ""
 
-#: js/functions.js:724
+#: js/functions.js:636
+msgid "Error explained"
+msgstr ""
+
+#: js/functions.js:718
 msgid "Upload complete."
 msgstr ""
 
-#: js/functions.js:748
+#: js/functions.js:742
 msgid "Remove stored feed icon?"
 msgstr ""
 
-#: js/functions.js:753
+#: js/functions.js:747
 msgid "Removing feed icon..."
 msgstr ""
 
-#: js/functions.js:758
+#: js/functions.js:752
 msgid "Feed icon removed."
 msgstr ""
 
-#: js/functions.js:780
+#: js/functions.js:774
 msgid "Please select an image file to upload."
 msgstr ""
 
-#: js/functions.js:782
+#: js/functions.js:776
 msgid "Upload new icon for this feed?"
 msgstr ""
 
-#: js/functions.js:783
+#: js/functions.js:777
 msgid "Uploading, please wait..."
 msgstr ""
 
-#: js/functions.js:799
+#: js/functions.js:793
 msgid "Please enter label caption:"
 msgstr ""
 
-#: js/functions.js:804
+#: js/functions.js:798
 msgid "Can't create label: missing caption."
 msgstr ""
 
-#: js/functions.js:847
+#: js/functions.js:841
 msgid "Subscribe to Feed"
 msgstr ""
 
-#: js/functions.js:874
+#: js/functions.js:868
 msgid "Subscribed to %s"
 msgstr ""
 
-#: js/functions.js:879
+#: js/functions.js:873
 msgid "Specified URL seems to be invalid."
 msgstr ""
 
-#: js/functions.js:882
+#: js/functions.js:876
 msgid "Specified URL doesn't seem to contain any feeds."
 msgstr ""
 
-#: js/functions.js:935
+#: js/functions.js:929
 msgid "Couldn't download the specified URL: %s"
 msgstr ""
 
-#: js/functions.js:939
+#: js/functions.js:933
 msgid "You are already subscribed to this feed."
 msgstr ""
 
-#: js/functions.js:1069
+#: js/functions.js:1063
 msgid "Edit rule"
 msgstr ""
 
-#: js/functions.js:1095
+#: js/functions.js:1089
 msgid "Edit action"
 msgstr ""
 
-#: js/functions.js:1132
+#: js/functions.js:1126
 msgid "Create Filter"
 msgstr ""
 
-#: js/functions.js:1247
+#: js/functions.js:1241
 msgid ""
 "Reset subscription? Tiny Tiny RSS will try to subscribe to the notification "
 "hub again on next feed update."
 msgstr ""
 
-#: js/functions.js:1258
+#: js/functions.js:1252
 msgid "Subscription reset."
 msgstr ""
 
-#: js/functions.js:1268 js/tt-rss.js:619
+#: js/functions.js:1262 js/tt-rss.js:619
 msgid "Unsubscribe from %s?"
 msgstr ""
 
-#: js/functions.js:1271
+#: js/functions.js:1265
 msgid "Removing feed..."
 msgstr ""
 
-#: js/functions.js:1379
+#: js/functions.js:1373
 msgid "Please enter category title:"
 msgstr ""
 
-#: js/functions.js:1410
+#: js/functions.js:1404
 msgid "Generate new syndication address for this feed?"
 msgstr ""
 
-#: js/functions.js:1414 js/prefs.js:1234
+#: js/functions.js:1408 js/prefs.js:1222
 msgid "Trying to change address..."
 msgstr ""
 
-#: js/functions.js:1601 js/tt-rss.js:396 js/tt-rss.js:600
+#: js/functions.js:1595 js/tt-rss.js:396 js/tt-rss.js:600
 msgid "You can't edit this kind of feed."
 msgstr ""
 
-#: js/functions.js:1616
+#: js/functions.js:1610
 msgid "Edit Feed"
 msgstr ""
 
-#: js/functions.js:1622 js/prefs.js:194 js/prefs.js:749
+#: js/functions.js:1616 js/prefs.js:194 js/prefs.js:749
 msgid "Saving data..."
 msgstr ""
 
-#: js/functions.js:1654
+#: js/functions.js:1648
 msgid "More Feeds"
 msgstr ""
 
-#: js/functions.js:1715 js/functions.js:1825 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
+#: js/functions.js:1709 js/functions.js:1819 js/prefs.js:397 js/prefs.js:427
+#: js/prefs.js:459 js/prefs.js:642 js/prefs.js:662 js/prefs.js:1198
+#: js/prefs.js:1343
 msgid "No feeds are selected."
 msgstr ""
 
-#: js/functions.js:1757
+#: js/functions.js:1751
 msgid ""
 "Remove selected feeds from the archive? Feeds with stored articles will not "
 "be removed."
 msgstr ""
 
-#: js/functions.js:1796
+#: js/functions.js:1790
 msgid "Feeds with update errors"
 msgstr ""
 
-#: js/functions.js:1807 js/prefs.js:1192
+#: js/functions.js:1801 js/prefs.js:1180
 msgid "Remove selected feeds?"
 msgstr ""
 
-#: js/functions.js:1810 js/prefs.js:1195
+#: js/functions.js:1804 js/prefs.js:1183
 msgid "Removing selected feeds..."
 msgstr ""
 
-#: js/functions.js:1908
+#: js/functions.js:1902
 msgid "Help"
 msgstr ""
 
@@ -2889,7 +2887,7 @@ msgstr ""
 msgid "Remove category"
 msgstr ""
 
-#: js/PrefFilterTree.js:32
+#: js/PrefFilterTree.js:48
 msgid "Inverse"
 msgstr ""
 
@@ -2925,7 +2923,7 @@ msgstr ""
 msgid "Removing selected labels..."
 msgstr ""
 
-#: js/prefs.js:295 js/prefs.js:1396
+#: js/prefs.js:295 js/prefs.js:1384
 msgid "No labels are selected."
 msgstr ""
 
@@ -3023,142 +3021,142 @@ msgstr ""
 msgid "Save changes to selected feeds?"
 msgstr ""
 
-#: js/prefs.js:797
+#: js/prefs.js:785
 msgid "OPML Import"
 msgstr ""
 
-#: js/prefs.js:824
+#: js/prefs.js:812
 msgid "Please choose an OPML file first."
 msgstr ""
 
-#: js/prefs.js:827 plugins/import_export/import_export.js:115
+#: js/prefs.js:815 plugins/import_export/import_export.js:115
 #: plugins/googlereaderimport/init.js:45
 msgid "Importing, please wait..."
 msgstr ""
 
-#: js/prefs.js:980
+#: js/prefs.js:968
 msgid "Reset to defaults?"
 msgstr ""
 
-#: js/prefs.js:1099
+#: js/prefs.js:1087
 msgid ""
 "Remove category %s? Any nested feeds would be placed into Uncategorized."
 msgstr ""
 
-#: js/prefs.js:1105
+#: js/prefs.js:1093
 msgid "Removing category..."
 msgstr ""
 
-#: js/prefs.js:1126
+#: js/prefs.js:1114
 msgid "Remove selected categories?"
 msgstr ""
 
-#: js/prefs.js:1129
+#: js/prefs.js:1117
 msgid "Removing selected categories..."
 msgstr ""
 
-#: js/prefs.js:1142
+#: js/prefs.js:1130
 msgid "No categories are selected."
 msgstr ""
 
-#: js/prefs.js:1150
+#: js/prefs.js:1138
 msgid "Category title:"
 msgstr ""
 
-#: js/prefs.js:1154
+#: js/prefs.js:1142
 msgid "Creating category..."
 msgstr ""
 
-#: js/prefs.js:1181
+#: js/prefs.js:1169
 msgid "Feeds without recent updates"
 msgstr ""
 
-#: js/prefs.js:1230
+#: js/prefs.js:1218
 msgid "Replace current OPML publishing address with a new one?"
 msgstr ""
 
-#: js/prefs.js:1319
+#: js/prefs.js:1307
 msgid "Clearing feed..."
 msgstr ""
 
-#: js/prefs.js:1339
+#: js/prefs.js:1327
 msgid "Rescore articles in selected feeds?"
 msgstr ""
 
-#: js/prefs.js:1342
+#: js/prefs.js:1330
 msgid "Rescoring selected feeds..."
 msgstr ""
 
-#: js/prefs.js:1362
+#: js/prefs.js:1350
 msgid "Rescore all articles? This operation may take a lot of time."
 msgstr ""
 
-#: js/prefs.js:1365
+#: js/prefs.js:1353
 msgid "Rescoring feeds..."
 msgstr ""
 
-#: js/prefs.js:1382
+#: js/prefs.js:1370
 msgid "Reset selected labels to default colors?"
 msgstr ""
 
-#: js/prefs.js:1419
+#: js/prefs.js:1407
 msgid "Settings Profiles"
 msgstr ""
 
-#: js/prefs.js:1428
+#: js/prefs.js:1416
 msgid ""
 "Remove selected profiles? Active and default profiles will not be removed."
 msgstr ""
 
-#: js/prefs.js:1431
+#: js/prefs.js:1419
 msgid "Removing selected profiles..."
 msgstr ""
 
-#: js/prefs.js:1446
+#: js/prefs.js:1434
 msgid "No profiles are selected."
 msgstr ""
 
-#: js/prefs.js:1454 js/prefs.js:1507
+#: js/prefs.js:1442 js/prefs.js:1495
 msgid "Activate selected profile?"
 msgstr ""
 
-#: js/prefs.js:1470 js/prefs.js:1523
+#: js/prefs.js:1458 js/prefs.js:1511
 msgid "Please choose a profile to activate."
 msgstr ""
 
-#: js/prefs.js:1475
+#: js/prefs.js:1463
 msgid "Creating profile..."
 msgstr ""
 
-#: js/prefs.js:1531
+#: js/prefs.js:1519
 msgid "This will invalidate all previously generated feed URLs. Continue?"
 msgstr ""
 
-#: js/prefs.js:1534 js/prefs.js:1553
+#: js/prefs.js:1522 js/prefs.js:1541
 msgid "Clearing URLs..."
 msgstr ""
 
-#: js/prefs.js:1541
+#: js/prefs.js:1529
 msgid "Generated URLs cleared."
 msgstr ""
 
-#: js/prefs.js:1550
+#: js/prefs.js:1538
 msgid "This will invalidate all previously shared article URLs. Continue?"
 msgstr ""
 
-#: js/prefs.js:1560
+#: js/prefs.js:1548
 msgid "Shared URLs cleared."
 msgstr ""
 
-#: js/prefs.js:1648
+#: js/prefs.js:1654
 msgid "Label Editor"
 msgstr ""
 
-#: js/prefs.js:1770
+#: js/prefs.js:1776
 msgid "Subscribing to feeds..."
 msgstr ""
 
-#: js/prefs.js:1807
+#: js/prefs.js:1813
 msgid "Clear stored data for this plugin?"
 msgstr ""
 
@@ -3178,27 +3176,31 @@ msgstr ""
 msgid "Please enable embed_original plugin first."
 msgstr ""
 
+#: js/tt-rss.js:587
+msgid "Select item(s) by tags"
+msgstr ""
+
 #: js/tt-rss.js:608
 msgid "You can't unsubscribe from the category."
 msgstr ""
 
-#: js/tt-rss.js:613 js/tt-rss.js:769
+#: js/tt-rss.js:613 js/tt-rss.js:765
 msgid "Please select some feed first."
 msgstr ""
 
-#: js/tt-rss.js:764
+#: js/tt-rss.js:760
 msgid "You can't rescore this kind of feed."
 msgstr ""
 
-#: js/tt-rss.js:774
+#: js/tt-rss.js:770
 msgid "Rescore articles in %s?"
 msgstr ""
 
-#: js/tt-rss.js:777
+#: js/tt-rss.js:773
 msgid "Rescoring articles..."
 msgstr ""
 
-#: js/tt-rss.js:911
+#: js/tt-rss.js:907
 msgid "New version available!"
 msgstr ""
 
@@ -3222,106 +3224,102 @@ msgid "Unpublish article"
 msgstr ""
 
 #: js/viewfeed.js:679 js/viewfeed.js:707 js/viewfeed.js:734 js/viewfeed.js:797
-#: js/viewfeed.js:831 js/viewfeed.js:968 js/viewfeed.js:1011
-#: js/viewfeed.js:1064 js/viewfeed.js:2108 plugins/mailto/init.js:7
+#: js/viewfeed.js:831 js/viewfeed.js:951 js/viewfeed.js:994
+#: js/viewfeed.js:1047 js/viewfeed.js:2096 plugins/mailto/init.js:7
 #: plugins/mail/mail.js:7
 msgid "No articles are selected."
 msgstr ""
 
-#: js/viewfeed.js:948
-msgid "Mark all visible articles in %s as read?"
-msgstr ""
-
-#: js/viewfeed.js:976
+#: js/viewfeed.js:959
 msgid "Delete %d selected article in %s?"
 msgid_plural "Delete %d selected articles in %s?"
 msgstr[0] ""
 msgstr[1] ""
 
-#: js/viewfeed.js:978
+#: js/viewfeed.js:961
 msgid "Delete %d selected article?"
 msgid_plural "Delete %d selected articles?"
 msgstr[0] ""
 msgstr[1] ""
 
-#: js/viewfeed.js:1020
+#: js/viewfeed.js:1003
 msgid "Archive %d selected article in %s?"
 msgid_plural "Archive %d selected articles in %s?"
 msgstr[0] ""
 msgstr[1] ""
 
-#: js/viewfeed.js:1023
+#: js/viewfeed.js:1006
 msgid "Move %d archived article back?"
 msgid_plural "Move %d archived articles back?"
 msgstr[0] ""
 msgstr[1] ""
 
-#: js/viewfeed.js:1025
+#: js/viewfeed.js:1008
 msgid ""
 "Please note that unstarred articles might get purged on next feed update."
 msgstr ""
 
-#: js/viewfeed.js:1070
+#: js/viewfeed.js:1053
 msgid "Mark %d selected article in %s as read?"
 msgid_plural "Mark %d selected articles in %s as read?"
 msgstr[0] ""
 msgstr[1] ""
 
-#: js/viewfeed.js:1094
+#: js/viewfeed.js:1077
 msgid "Edit article Tags"
 msgstr ""
 
-#: js/viewfeed.js:1100
+#: js/viewfeed.js:1083
 msgid "Saving article tags..."
 msgstr ""
 
-#: js/viewfeed.js:1337
+#: js/viewfeed.js:1323
 msgid "No article is selected."
 msgstr ""
 
-#: js/viewfeed.js:1372
+#: js/viewfeed.js:1358
 msgid "No articles found to mark"
 msgstr ""
 
-#: js/viewfeed.js:1374
+#: js/viewfeed.js:1360
 msgid "Mark %d article as read?"
 msgid_plural "Mark %d articles as read?"
 msgstr[0] ""
 msgstr[1] ""
 
-#: js/viewfeed.js:1884
+#: js/viewfeed.js:1872
 msgid "Open original article"
 msgstr ""
 
-#: js/viewfeed.js:1890
+#: js/viewfeed.js:1878
 msgid "Display article URL"
 msgstr ""
 
-#: js/viewfeed.js:1909
+#: js/viewfeed.js:1897
 msgid "Toggle marked"
 msgstr ""
 
-#: js/viewfeed.js:1995
+#: js/viewfeed.js:1983
 msgid "Remove label"
 msgstr ""
 
-#: js/viewfeed.js:2019
+#: js/viewfeed.js:2007
 msgid "Playing..."
 msgstr ""
 
-#: js/viewfeed.js:2020
+#: js/viewfeed.js:2008
 msgid "Click to pause"
 msgstr ""
 
-#: js/viewfeed.js:2077
+#: js/viewfeed.js:2065
 msgid "Please enter new score for selected articles:"
 msgstr ""
 
-#: js/viewfeed.js:2119
+#: js/viewfeed.js:2107
 msgid "Please enter new score for this article:"
 msgstr ""
 
-#: js/viewfeed.js:2152
+#: js/viewfeed.js:2140
 msgid "Article URL:"
 msgstr ""
 
index 6e8d43e9bdf73f2354727ac8396e9e5756428a76..6a7f7003a9a90076a167652c91f374ec133c57d7 100644 (file)
@@ -392,6 +392,55 @@ class Instances extends Plugin implements IHandler {
                }
        }
 
+       function addInstance() {
+               print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\"  name=\"op\" value=\"pref-instances\">";
+               print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\"  name=\"method\" value=\"add\">";
+
+               print "<div class=\"dlgSec\">".__("Instance")."</div>";
+
+               print "<div class=\"dlgSecCont\">";
+
+               /* URL */
+
+               print __("URL:") . " ";
+
+               print "<input dojoType=\"dijit.form.ValidationTextBox\" required=\"1\"
+                       placeHolder=\"".__("Instance URL")."\"
+                       regExp='^(http|https)://.*'
+                       style=\"font-size : 16px; width: 20em\" name=\"access_url\">";
+
+               print "<hr/>";
+
+               $access_key = sha1(uniqid(rand(), true));
+
+               /* Access key */
+
+               print __("Access key:") . " ";
+
+               print "<input dojoType=\"dijit.form.ValidationTextBox\" required=\"1\"
+                       placeHolder=\"".__("Access key")."\" regExp='\w{40}'
+                       style=\"width: 20em\" name=\"access_key\" id=\"instance_add_key\"
+                       value=\"$access_key\">";
+
+               print "<p class='insensitive'>" . __("Use one access key for both linked instances.");
+
+               print "</div>";
+
+               print "<div class=\"dlgButtons\">
+                       <div style='float : left'>
+                               <button dojoType=\"dijit.form.Button\"
+                                       onclick=\"return dijit.byId('instanceAddDlg').regenKey()\">".
+                                       __('Generate new key')."</button>
+                       </div>
+                       <button dojoType=\"dijit.form.Button\"
+                               onclick=\"return dijit.byId('instanceAddDlg').execute()\">".
+                               __('Create link')."</button>
+                       <button dojoType=\"dijit.form.Button\"
+                               onclick=\"return dijit.byId('instanceAddDlg').hide()\"\">".
+                               __('Cancel')."</button></div>";
+
+               return;
+       }
 
 }
 ?>
index 83213896d8f91bb52ebf511340ac378d018e0e2a..4a60692b3ce572de0a5c548469659f22fa84d5f8 100644 (file)
@@ -1,6 +1,6 @@
 function addInstance() {
        try {
-               var query = "backend.php?op=dlg&method=addInstance";
+               var query = "backend.php?op=pluginhandler&plugin=instances&method=addInstance";
 
                if (dijit.byId("instanceAddDlg"))
                        dijit.byId("instanceAddDlg").destroyRecursive();
index 92a2e7e7641e76ab313d2b6c2e2ca591c2fe313b..353fbe80bd647f2a8dd12f56df4558302951b332 100644 (file)
--- a/prefs.css
+++ b/prefs.css
@@ -68,7 +68,7 @@ tr.title td a:hover {
        color : black;
 }
 
-div.prefFeedCatHolder, div.prefFeedOPMLHolder, div.inactiveFeedHolder {
+div.prefProfileHolder, div.prefFeedOPMLHolder, div.inactiveFeedHolder {
        height : 300px;
        overflow : auto;
        border-width : 0px 1px 1px 1px;
@@ -77,9 +77,8 @@ div.prefFeedCatHolder, div.prefFeedOPMLHolder, div.inactiveFeedHolder {
        margin : 0px 0px 5px 0px;
        background-color : #ecf4ff;
 }
-
-div.filterTestHolder {
-       border-width : 1px 1px 1px 1px;
+div.filterTestHolder, div.prefFeedOPMLHolder {
+       border-width : 1px;
 }
 
 ul.selfUpdateList {
index 387ea97b436697f5fa1f5deaa1b95d3d17809a54..ea531e2c6943eebddb52c67023990cb9fd682674 100644 (file)
--- a/prefs.php
+++ b/prefs.php
@@ -57,6 +57,7 @@
                                "lib/scriptaculous/scriptaculous.js?load=effects,dragdrop,controls",
                                "lib/dojo/dojo.js",
                                "lib/dijit/dijit.js",
+                               "lib/CheckBoxTree.js",
                                "lib/dojo/tt-rss-layer.js",
                                "errors.php?mode=js") as $jsfile) {
 
@@ -76,7 +77,7 @@
                        }
                }
 
-               print get_minified_js(array("functions", "deprecated", "prefs"));
+               print get_minified_js(array("functions", "deprecated", "prefs", "PrefFeedTree", "PrefFilterTree", "PrefLabelTree"));
 
                init_js_translations();
        ?>
        </div>
 </div>
 
-<img id="piggie" src="images/piggie.png" style="display : none" alt="piggie"/>
-
 <div id="header" dojoType="dijit.layout.ContentPane" region="top">
        <!-- <a href='#' onclick="showHelp()"><?php echo __("Keyboard shortcuts") ?></a> | -->
        <a href="#" onclick="gotoMain()"><?php echo __('Exit preferences') ?></a>
index dce3921d58364d5af1bf1ebcffcbfbc35ad418c9..76dabe95bf6ea2c76cf8d7ad766929eb3a6c050f 100644 (file)
@@ -62,6 +62,7 @@ create table ttrss_feed_categories(id integer not null primary key auto_incremen
        collapsed bool not null default false,
        order_id integer not null default 0,
        parent_cat integer,
+       view_settings varchar(250) not null default '',
        index(parent_cat),
        foreign key (parent_cat) references ttrss_feed_categories(id) ON DELETE SET NULL,
        index(owner_uid),
@@ -127,6 +128,7 @@ create table ttrss_feeds (id integer not null auto_increment primary key,
        mark_unread_on_update boolean not null default false,
        update_on_checksum_change boolean not null default false,
        strip_images boolean not null default false,
+       view_settings varchar(250) not null default '',
        pubsub_state integer not null default 0,
        favicon_last_checked datetime default null,
        index(owner_uid),
@@ -246,11 +248,16 @@ insert into ttrss_filter_actions (id,name,description) values (6, 'score',
 insert into ttrss_filter_actions (id,name,description) values (7, 'label',
        'Assign label');
 
+insert into ttrss_filter_actions (id,name,description) values (8, 'stop',
+       'Stop / Do nothing');
+
 create table ttrss_filters2(id integer primary key auto_increment,
        owner_uid integer not null,
        match_any_rule boolean not null default false,
        enabled boolean not null default true,
        inverse bool not null default false,
+       title varchar(250) not null default '',
+       order_id integer not null default 0,
        index(owner_uid),
        foreign key (owner_uid) references ttrss_users(id) ON DELETE CASCADE) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
 
@@ -291,7 +298,7 @@ create table ttrss_tags (id integer primary key auto_increment,
 
 create table ttrss_version (schema_version int not null) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
 
-insert into ttrss_version values (111);
+insert into ttrss_version values (114);
 
 create table ttrss_enclosures (id integer primary key auto_increment,
        content_url text not null,
index 8ef7f08054776d43993424c7b7a9907f4b481003..2a171de4cc4f8fc0c9179d39d24bac01ce1daf39 100644 (file)
@@ -56,6 +56,7 @@ create table ttrss_feed_categories(id serial not null primary key,
        owner_uid integer not null references ttrss_users(id) on delete cascade,
        collapsed boolean not null default false,
        order_id integer not null default 0,
+       view_settings varchar(250) not null default '',
        parent_cat integer references ttrss_feed_categories(id) on delete set null,
        title varchar(200) not null);
 
@@ -88,6 +89,7 @@ create table ttrss_feeds (id serial not null primary key,
        mark_unread_on_update boolean not null default false,
        update_on_checksum_change boolean not null default false,
        strip_images boolean not null default false,
+       view_settings varchar(250) not null default '',
        pubsub_state integer not null default 0,
        favicon_last_checked timestamp default null,
        auth_pass_encrypted boolean not null default false);
@@ -219,10 +221,15 @@ insert into ttrss_filter_actions (id,name,description) values (6, 'score',
 insert into ttrss_filter_actions (id,name,description) values (7, 'label',
        'Assign label');
 
+insert into ttrss_filter_actions (id,name,description) values (8, 'stop',
+       'Stop / Do nothing');
+
 create table ttrss_filters2(id serial not null primary key,
        owner_uid integer not null references ttrss_users(id) on delete cascade,
        match_any_rule boolean not null default false,
        inverse boolean not null default false,
+       title varchar(250) not null default '',
+       order_id integer not null default 0,
        enabled boolean not null default true);
 
 create table ttrss_filters2_rules(id serial not null primary key,
@@ -249,7 +256,7 @@ create index ttrss_tags_post_int_id_idx on ttrss_tags(post_int_id);
 
 create table ttrss_version (schema_version int not null);
 
-insert into ttrss_version values (111);
+insert into ttrss_version values (114);
 
 create table ttrss_enclosures (id serial not null primary key,
        content_url text not null,
diff --git a/schema/versions/mysql/112.sql b/schema/versions/mysql/112.sql
new file mode 100644 (file)
index 0000000..a6f0b20
--- /dev/null
@@ -0,0 +1,15 @@
+begin;
+
+alter table ttrss_filters2 add column order_id integer;
+update ttrss_filters2 set order_id = 0;
+alter table ttrss_filters2 change order_id order_id integer not null;
+alter table ttrss_filters2 alter column order_id set default 0;
+
+alter table ttrss_filters2 add column title varchar(250);
+update ttrss_filters2 set title = '';
+alter table ttrss_filters2 change title title varchar(250) not null;
+alter table ttrss_filters2 alter column title set default '';
+
+update ttrss_version set schema_version = 112;
+
+commit;
diff --git a/schema/versions/mysql/113.sql b/schema/versions/mysql/113.sql
new file mode 100644 (file)
index 0000000..3c0d005
--- /dev/null
@@ -0,0 +1,8 @@
+begin;
+
+insert into ttrss_filter_actions (id,name,description) values (8, 'stop',
+       'Stop / Do nothing');
+
+update ttrss_version set schema_version = 113;
+
+commit;
diff --git a/schema/versions/mysql/114.sql b/schema/versions/mysql/114.sql
new file mode 100644 (file)
index 0000000..fd7ce5d
--- /dev/null
@@ -0,0 +1,15 @@
+begin;
+
+alter table ttrss_feeds add column view_settings varchar(250);
+update ttrss_feeds set view_settings = '';
+alter table ttrss_feeds change view_settings view_settings varchar(250) not null;
+alter table ttrss_feeds alter column view_settings set default '';
+
+alter table ttrss_feed_categories add column view_settings varchar(250);
+update ttrss_feed_categories set view_settings = '';
+alter table ttrss_feed_categories change view_settings view_settings varchar(250) not null;
+alter table ttrss_feed_categories alter column view_settings set default '';
+
+update ttrss_version set schema_version = 114;
+
+commit;
diff --git a/schema/versions/pgsql/112.sql b/schema/versions/pgsql/112.sql
new file mode 100644 (file)
index 0000000..a9d90d6
--- /dev/null
@@ -0,0 +1,15 @@
+begin;
+
+alter table ttrss_filters2 add column order_id integer;
+update ttrss_filters2 set order_id = 0;
+alter table ttrss_filters2 alter column order_id set not null;
+alter table ttrss_filters2 alter column order_id set default 0;
+
+alter table ttrss_filters2 add column title varchar(250);
+update ttrss_filters2 set title = '';
+alter table ttrss_filters2 alter column title set not null;
+alter table ttrss_filters2 alter column title set default '';
+
+update ttrss_version set schema_version = 112;
+
+commit;
diff --git a/schema/versions/pgsql/113.sql b/schema/versions/pgsql/113.sql
new file mode 100644 (file)
index 0000000..3c0d005
--- /dev/null
@@ -0,0 +1,8 @@
+begin;
+
+insert into ttrss_filter_actions (id,name,description) values (8, 'stop',
+       'Stop / Do nothing');
+
+update ttrss_version set schema_version = 113;
+
+commit;
diff --git a/schema/versions/pgsql/114.sql b/schema/versions/pgsql/114.sql
new file mode 100644 (file)
index 0000000..d317ea7
--- /dev/null
@@ -0,0 +1,15 @@
+begin;
+
+alter table ttrss_feeds add column view_settings varchar(250);
+update ttrss_feeds set view_settings = '';
+alter table ttrss_feeds alter column view_settings set not null;
+alter table ttrss_feeds alter column view_settings set default '';
+
+alter table ttrss_feed_categories add column view_settings varchar(250);
+update ttrss_feed_categories set view_settings = '';
+alter table ttrss_feed_categories alter column view_settings set not null;
+alter table ttrss_feed_categories alter column view_settings set default '';
+
+update ttrss_version set schema_version = 114;
+
+commit;
index bdfeee3a38c14f8b4975152c4a6d36c1f9eaa20c..dd89bff87c27767e7015d37d606b40767e39a294 100644 (file)
@@ -32,11 +32,9 @@ div.postReply a:hover {
 div.postReply div.postHeader {
        border-width : 0px 0px 1px 0px;
        border-style : solid;
-       border-color : #88b0f0;
-       background-color : white;
-       background : url("images/toolbar.png");
-       background-position : bottom left;
-       background-repeat : repeat-x;
+       border-color : #c0c0c0;
+       background : #fafafa;
+       box-shadow : 0px 0px 3px 0px #ccc;
        padding : 5px;
        color : #909090;
 }
@@ -842,6 +840,11 @@ div.fatalError textarea {
        margin-right : 1em;
 }
 
+.labelParam {
+       float : right;
+       margin-right : 1em;
+}
+
 .dijitTreeLabel.Disabled, .labelParam.Disabled {
        color : gray;
 }
@@ -983,7 +986,7 @@ body#ttrssZoom div.postReply {
        box-shadow : 0px 0px 3px #ccc;
 }
 
-body#ttrssZoom div.postContent, body#ttrssZoom div.postHeader {
+body#ttrssZoom div.postContent {
        background-color : white;
 }
 
@@ -1004,6 +1007,5 @@ div.hl.active {
 
 div.hl.active a.title {
        color : #4684ff;
-       font-weight : bold;
 }
 
index fa64b302d8464aee7836fc0db5112dba24f01a10..2fbdd8b8cde7db3b68be98c91ce6fe812d967b93 100755 (executable)
 
        $longopts = array("log:",
                        "tasks:",
-                       "interval",
+                       "interval:",
                        "quiet",
                        "help");
 
 
        if (isset($options["tasks"])) {
                _debug("Set to spawn " . $options["tasks"] . " children.");
-               $max_jobs = $option["tasks"];
+               $max_jobs = $options["tasks"];
        } else {
                $max_jobs = MAX_JOBS;
        }
 
        if (isset($options["interval"])) {
                _debug("Spawn interval: " . $options["interval"] . " seconds.");
-               $spawn_interval = $option["interval"];
+               $spawn_interval = $options["interval"];
        } else {
                $spawn_interval = SPAWN_INTERVAL;
        }
        // It is unnecessary to start the fork loop if database is not ok.
        $link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME);
 
-       if (!init_connection($link)) return;
+       if (!init_connection($link)) die("Can't initialize db connection.\n");
+
+       $schema_version = get_schema_version($link);
 
        db_close($link);
 
 
                if ($last_checkpoint + $spawn_interval < time()) {
 
+                       /* Check if schema version changed */
+
+                       $link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME);
+                       if (!init_connection($link)) die("Can't initialize db connection.\n");
+                       $test_schema_version = get_schema_version($link);
+                       db_close($link);
+
+                       if ($test_schema_version != $schema_version) {
+                               _debug("Expected schema version: $schema_version, got: $test_schema_version");
+                               _debug("Schema version changed while we were running, bailing out");
+                               exit(100);
+                       }
+
                        check_ctimes();
                        reap_children();