diff options
73 files changed, 18166 insertions, 14223 deletions
diff --git a/classes/api.php b/classes/api.php index 0e56e58f9..ea57a61ab 100644 --- a/classes/api.php +++ b/classes/api.php @@ -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; + } + + } ?> diff --git a/classes/article.php b/classes/article.php index b10766bf5..79c94f59b 100644 --- a/classes/article.php +++ b/classes/article.php @@ -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>"; + + } } diff --git a/classes/dlg.php b/classes/dlg.php index e03489505..e56560a47 100644 --- a/classes/dlg.php +++ b/classes/dlg.php @@ -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:"). " " . "<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>"; - } } ?> diff --git a/classes/feeds.php b/classes/feeds.php index 2b00b848d..0c643325f 100644 --- a/classes/feeds.php +++ b/classes/feeds.php @@ -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>"; @@ -143,6 +143,10 @@ class Feeds extends Handler_Protected { //$reply .= "</h2"; + foreach ($pluginhost->get_hooks($pluginhost::HOOK_HEADLINE_TOOLBAR_BUTTON) as $p) { + echo $p->hook_headline_toolbar_button($feed_id, $is_cat); + } + return $reply; } @@ -836,7 +840,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 +959,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>"; + } + + } ?> diff --git a/classes/handler/public.php b/classes/handler/public.php index 6822faa77..37c704584 100644 --- a/classes/handler/public.php +++ b/classes/handler/public.php @@ -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); diff --git a/classes/pluginhost.php b/classes/pluginhost.php index a6ba72fc6..5b8a77fd6 100644 --- a/classes/pluginhost.php +++ b/classes/pluginhost.php @@ -24,6 +24,9 @@ class PluginHost { const HOOK_FEED_FETCHED = 12; const HOOK_SANITIZE = 13; const HOOK_RENDER_ARTICLE_API = 14; + const HOOK_TOOLBAR_BUTTON = 15; + const HOOK_ACTION_ITEM = 16; + const HOOK_HEADLINE_TOOLBAR_BUTTON = 17; const KIND_ALL = 1; const KIND_SYSTEM = 2; diff --git a/classes/pref/feeds.php b/classes/pref/feeds.php index 7895a0396..46c3d083b 100644 --- a/classes/pref/feeds.php +++ b/classes/pref/feeds.php @@ -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>"; + } + + } ?> diff --git a/classes/pref/filters.php b/classes/pref/filters.php index 883ff0ebd..4be1cdae5 100644 --- a/classes/pref/filters.php +++ b/classes/pref/filters.php @@ -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() { diff --git a/classes/pref/prefs.php b/classes/pref/prefs.php index 2190dc0e7..cc523092f 100644 --- a/classes/pref/prefs.php +++ b/classes/pref/prefs.php @@ -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>"; + + } + + } ?> diff --git a/classes/pref/users.php b/classes/pref/users.php index 5b5120e1b..891a69a52 100644 --- a/classes/pref/users.php +++ b/classes/pref/users.php @@ -19,15 +19,8 @@ class Pref_Users extends Handler_Protected { function userdetails() { - header("Content-Type: text/xml"); - print "<dlg>"; - $uid = sprintf("%d", $_REQUEST["id"]); - print "<title>".__('User details')."</title>"; - - print "<content><![CDATA["; - $result = db_query($this->link, "SELECT login, ".SUBSTRING_FOR_DATE."(last_login,1,16) AS last_login, access_level, @@ -106,22 +99,13 @@ class Pref_Users extends Handler_Protected { <button onclick=\"closeInfoBox()\">".__("Close this window"). "</button></div>"; - print "]]></content></dlg>"; - return; } function edit() { global $access_level_names; - header("Content-Type: text/xml"); - $id = db_escape_string($this->link, $_REQUEST["id"]); - - print "<dlg id=\"$method\">"; - print "<title>".__('User Editor')."</title>"; - print "<content><![CDATA["; - print "<form id=\"user_edit_form\" onsubmit='return false'>"; print "<input type=\"hidden\" name=\"id\" value=\"$id\">"; @@ -193,8 +177,6 @@ class Pref_Users extends Handler_Protected { <button onclick=\"return userEditCancel()\">". __('Cancel')."</button></div>"; - print "]]></content></dlg>"; - return; } diff --git a/classes/rpc.php b/classes/rpc.php index 3a20db6f3..34f623b06 100644 --- a/classes/rpc.php +++ b/classes/rpc.php @@ -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 Binary files differdeleted file mode 100644 index be35e4453..000000000 --- a/images/overlay.png +++ /dev/null diff --git a/images/piggie.png b/images/piggie.png Binary files differdeleted file mode 100644 index 3cb7c6531..000000000 --- a/images/piggie.png +++ /dev/null diff --git a/images/piggie_icon.png b/images/piggie_icon.png Binary files differdeleted file mode 100644 index 9b5481b33..000000000 --- a/images/piggie_icon.png +++ /dev/null diff --git a/include/functions.php b/include/functions.php index 7d1cf6b9a..039048095 100644 --- a/include/functions.php +++ b/include/functions.php @@ -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); @@ -83,7 +83,8 @@ "pl_PL" => "Polski", "ru_RU" => "РуÑÑкий", "pt_BR" => "Portuguese/Brazil", - "zh_CN" => "Simplified Chinese"); + "zh_CN" => "Simplified Chinese", + "fi_FI" => "Suomi"); return $tr; } @@ -641,6 +642,7 @@ $_SESSION["uid"]); $_SESSION["ip_address"] = $_SERVER["REMOTE_ADDR"]; + $_SESSION["user_agent"] = sha1($_SERVER['HTTP_USER_AGENT']); $_SESSION["pwd_hash"] = db_fetch_result($result, 0, "pwd_hash"); $_SESSION["last_version_check"] = time(); @@ -3213,7 +3215,7 @@ $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), diff --git a/include/localized_schema.php b/include/localized_schema.php index 674acabcf..51d11f79a 100644 --- a/include/localized_schema.php +++ b/include/localized_schema.php @@ -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 19:15:55 MSK 2013 __("Title"); __("Title or Content"); diff --git a/include/rssfuncs.php b/include/rssfuncs.php index 5c37b7523..ce197156c 100644 --- a/include/rssfuncs.php +++ b/include/rssfuncs.php @@ -283,10 +283,12 @@ _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."); @@ -1298,6 +1300,9 @@ 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; } } } diff --git a/include/sessions.php b/include/sessions.php index 81a5a7383..dd1ca663d 100644 --- a/include/sessions.php +++ b/include/sessions.php @@ -3,6 +3,8 @@ require_once "config.php"; require_once "db.php"; + require_once "lib/accept-to-gettext.php"; + require_once "lib/gettext/gettext.inc"; $session_expire = max(SESSION_COOKIE_LIFETIME, 86400); $session_name = (!defined('TTRSS_SESSION_NAME')) ? "ttrss_sid" : TTRSS_SESSION_NAME; @@ -57,6 +59,9 @@ if ($_SESSION["ref_schema_version"] != session_get_schema_version($link, true)) return false; + if (sha1($_SERVER['HTTP_USER_AGENT']) != $_SESSION["user_agent"]) + return false; + if ($_SESSION["uid"]) { $result = db_query($link, "SELECT pwd_hash FROM ttrss_users WHERE id = '".$_SESSION["uid"]."'"); @@ -189,13 +189,8 @@ <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> @@ -206,6 +201,13 @@ </form> + <?php + global $pluginhost; + foreach ($pluginhost->get_hooks($pluginhost::HOOK_TOOLBAR_BUTTON) as $p) { + echo $p->hook_toolbar_button(); + } + ?> + <div class="actionChooser"> <button id="net-alert" dojoType="dijit.form.Button" style="display : none" disabled="true" @@ -229,21 +231,28 @@ <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 + foreach ($pluginhost->get_hooks($pluginhost::HOOK_ACTION_ITEM) as $p) { + echo $p->hook_action_item(); + } + ?> + <?php if (!$_SESSION["hide_logout"]) { ?> <div dojoType="dijit.MenuItem" onclick="quickMenuGo('qmcLogout')"><?php echo __('Logout') ?></div> <?php } ?> diff --git a/js/PrefFilterTree.js b/js/PrefFilterTree.js index afa2f445a..3546e30fb 100644 --- a/js/PrefFilterTree.js +++ b/js/PrefFilterTree.js @@ -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(); + }, }); diff --git a/js/functions.js b/js/functions.js index 7da9abfbd..0b39cc466 100644 --- a/js/functions.js +++ b/js/functions.js @@ -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(); diff --git a/js/prefs.js b/js/prefs.js index 7d12e4202..358625e93 100644 --- a/js/prefs.js +++ b/js/prefs.js @@ -91,7 +91,7 @@ function editUser(id, event) { new Ajax.Request("backend.php", { parameters: query, onComplete: function(transport) { - infobox_callback2(transport); + infobox_callback2(transport, __("User Editor")); document.forms['user_edit_form'].login.focus(); } }); @@ -582,7 +582,7 @@ function selectedUserDetails() { new Ajax.Request("backend.php", { parameters: query, onComplete: function(transport) { - infobox_callback2(transport); + infobox_callback2(transport, __("User details")); } }); } catch (e) { exception_error("selectedUserDetails", e); @@ -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(); diff --git a/js/tt-rss.js b/js/tt-rss.js index 6c921c258..51257a693 100644 --- a/js/tt-rss.js +++ b/js/tt-rss.js @@ -159,7 +159,7 @@ function timeout() { } function search() { - var query = "backend.php?op=dlg&method=search¶m=" + + var query = "backend.php?op=feeds&method=search¶m=" + 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(); diff --git a/js/viewfeed.js b/js/viewfeed.js index caf40919e..c24dec62e 100644 --- a/js/viewfeed.js +++ b/js/viewfeed.js @@ -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¶m=" + param_escape(id); + var query = "backend.php?op=article&method=editArticleTags¶m=" + 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}); diff --git a/lib/gettext/gettext.inc b/lib/gettext/gettext.inc index 399a0f24b..00b966692 100644 --- a/lib/gettext/gettext.inc +++ b/lib/gettext/gettext.inc @@ -32,7 +32,6 @@ LC_MESSAGES 5 LC_ALL 6 */ - // LC_MESSAGES is not available if php-gettext is not loaded // while the other constants are already available from session extension. if (!defined('LC_MESSAGES')) { @@ -229,7 +228,9 @@ function _setlocale($category, $locale) { } // Allow locale to be changed on the go for one translation domain. global $text_domains, $default_domain; - unset($text_domains[$default_domain]->l10n); + if (array_key_exists($default_domain, $text_domains)) { + unset($text_domains[$default_domain]->l10n); + } return $CURRENTLOCALE; } } @@ -288,9 +289,9 @@ function __($msgid) { /** * Plural version of gettext. */ -function _ngettext($single, $plural, $number) { +function _ngettext($singular, $plural, $number) { $l10n = _get_reader(); - return _encode($l10n->ngettext($single, $plural, $number)); + return _encode($l10n->ngettext($singular, $plural, $number)); } /** @@ -304,9 +305,9 @@ function _dgettext($domain, $msgid) { /** * Plural version of dgettext. */ -function _dngettext($domain, $single, $plural, $number) { +function _dngettext($domain, $singular, $plural, $number) { $l10n = _get_reader($domain); - return _encode($l10n->ngettext($single, $plural, $number)); + return _encode($l10n->ngettext($singular, $plural, $number)); } /** @@ -319,9 +320,9 @@ function _dcgettext($domain, $msgid, $category) { /** * Plural version of dcgettext. */ -function _dcngettext($domain, $single, $plural, $number, $category) { +function _dcngettext($domain, $singular, $plural, $number, $category) { $l10n = _get_reader($domain, $category); - return _encode($l10n->ngettext($single, $plural, $number)); + return _encode($l10n->ngettext($singular, $plural, $number)); } /** @@ -405,29 +406,29 @@ function T_($msgid) { if (_check_locale_and_function()) return _($msgid); return __($msgid); } -function T_ngettext($single, $plural, $number) { +function T_ngettext($singular, $plural, $number) { if (_check_locale_and_function()) - return ngettext($single, $plural, $number); - else return _ngettext($single, $plural, $number); + return ngettext($singular, $plural, $number); + else return _ngettext($singular, $plural, $number); } function T_dgettext($domain, $msgid) { if (_check_locale_and_function()) return dgettext($domain, $msgid); else return _dgettext($domain, $msgid); } -function T_dngettext($domain, $single, $plural, $number) { +function T_dngettext($domain, $singular, $plural, $number) { if (_check_locale_and_function()) - return dngettext($domain, $single, $plural, $number); - else return _dngettext($domain, $single, $plural, $number); + return dngettext($domain, $singular, $plural, $number); + else return _dngettext($domain, $singular, $plural, $number); } function T_dcgettext($domain, $msgid, $category) { if (_check_locale_and_function()) return dcgettext($domain, $msgid, $category); else return _dcgettext($domain, $msgid, $category); } -function T_dcngettext($domain, $single, $plural, $number, $category) { +function T_dcngettext($domain, $singular, $plural, $number, $category) { if (_check_locale_and_function()) - return dcngettext($domain, $single, $plural, $number, $category); - else return _dcngettext($domain, $single, $plural, $number, $category); + return dcngettext($domain, $singular, $plural, $number, $category); + else return _dcngettext($domain, $singular, $plural, $number, $category); } function T_pgettext($context, $msgid) { @@ -451,26 +452,27 @@ function T_dcpgettext($domain, $context, $msgid, $category) { return _dcpgettext($domain, $context, $msgid, $category); } -function T_npgettext($context, $singular, $plural) { +function T_npgettext($context, $singular, $plural, $number) { if (_check_locale_and_function('npgettext')) - return npgettext($context, $single, $plural, $number); + return npgettext($context, $singular, $plural, $number); else - return _npgettext($context, $single, $plural, $number); + return _npgettext($context, $singular, $plural, $number); } -function T_dnpgettext($domain, $context, $singular, $plural) { +function T_dnpgettext($domain, $context, $singular, $plural, $number) { if (_check_locale_and_function('dnpgettext')) - return dnpgettext($domain, $context, $single, $plural, $number); + return dnpgettext($domain, $context, $singular, $plural, $number); else - return _dnpgettext($domain, $context, $single, $plural, $number); + return _dnpgettext($domain, $context, $singular, $plural, $number); } -function T_dcnpgettext($domain, $context, $singular, $plural, $category) { +function T_dcnpgettext($domain, $context, $singular, $plural, + $number, $category) { if (_check_locale_and_function('dcnpgettext')) - return dcnpgettext($domain, $context, $single, + return dcnpgettext($domain, $context, $singular, $plural, $number, $category); else - return _dcnpgettext($domain, $context, $single, + return _dcnpgettext($domain, $context, $singular, $plural, $number, $category); } @@ -494,39 +496,39 @@ if (!function_exists('gettext')) { function _($msgid) { return __($msgid); } - function ngettext($single, $plural, $number) { - return _ngettext($single, $plural, $number); + function ngettext($singular, $plural, $number) { + return _ngettext($singular, $plural, $number); } function dgettext($domain, $msgid) { return _dgettext($domain, $msgid); } - function dngettext($domain, $single, $plural, $number) { - return _dngettext($domain, $single, $plural, $number); + function dngettext($domain, $singular, $plural, $number) { + return _dngettext($domain, $singular, $plural, $number); } function dcgettext($domain, $msgid, $category) { return _dcgettext($domain, $msgid, $category); } - function dcngettext($domain, $single, $plural, $number, $category) { - return _dcngettext($domain, $single, $plural, $number, $category); + function dcngettext($domain, $singular, $plural, $number, $category) { + return _dcngettext($domain, $singular, $plural, $number, $category); } function pgettext($context, $msgid) { return _pgettext($context, $msgid); } - function npgettext($context, $single, $plural, $number) { - return _npgettext($context, $single, $plural, $number); + function npgettext($context, $singular, $plural, $number) { + return _npgettext($context, $singular, $plural, $number); } function dpgettext($domain, $context, $msgid) { return _dpgettext($domain, $context, $msgid); } - function dnpgettext($domain, $context, $single, $plural, $number) { - return _dnpgettext($domain, $context, $single, $plural, $number); + function dnpgettext($domain, $context, $singular, $plural, $number) { + return _dnpgettext($domain, $context, $singular, $plural, $number); } function dcpgettext($domain, $context, $msgid, $category) { return _dcpgettext($domain, $context, $msgid, $category); } - function dcnpgettext($domain, $context, $single, $plural, + function dcnpgettext($domain, $context, $singular, $plural, $number, $category) { - return _dcnpgettext($domain, $context, $single, $plural, + return _dcnpgettext($domain, $context, $singular, $plural, $number, $category); } } diff --git a/lib/gettext/gettext.php b/lib/gettext/gettext.php index a121f9c7e..5064047cb 100755 --- a/lib/gettext/gettext.php +++ b/lib/gettext/gettext.php @@ -409,12 +409,23 @@ class gettext_reader { function pgettext($context, $msgid) { $key = $context . chr(4) . $msgid; - return $this->translate($key); + $ret = $this->translate($key); + if (strpos($ret, "\004") !== FALSE) { + return $msgid; + } else { + return $ret; + } } function npgettext($context, $singular, $plural, $number) { - $singular = $context . chr(4) . $singular; - return $this->ngettext($singular, $plural, $number); + $key = $context . chr(4) . $singular; + $ret = $this->ngettext($key, $plural, $number); + if (strpos($ret, "\004") !== FALSE) { + return $singular; + } else { + return $ret; + } + } } diff --git a/locale/ca_CA/LC_MESSAGES/messages.mo b/locale/ca_CA/LC_MESSAGES/messages.mo Binary files differindex 423aaad94..1d1686ff9 100644 --- a/locale/ca_CA/LC_MESSAGES/messages.mo +++ b/locale/ca_CA/LC_MESSAGES/messages.mo diff --git a/locale/ca_CA/LC_MESSAGES/messages.po b/locale/ca_CA/LC_MESSAGES/messages.po index dfed7eea5..06d28363e 100644 --- a/locale/ca_CA/LC_MESSAGES/messages.po +++ b/locale/ca_CA/LC_MESSAGES/messages.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: messages\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-31 12:47+0400\n" +"POT-Creation-Date: 2013-04-01 19:15+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" @@ -90,7 +90,7 @@ msgid "Weekly" msgstr "Setmanalment" #: backend.php:101 -#: classes/pref/users.php:139 +#: classes/pref/users.php:123 msgid "User" msgstr "Usuari" @@ -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,38 @@ 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:273 +#: prefs.php:103 +#: test.php:11 #: 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 +307,13 @@ msgid "All Articles" msgstr "Tots els articles" #: index.php:176 -#: include/functions.php:1974 +#: include/functions.php:1925 #: classes/feeds.php:106 msgid "Starred" msgstr "Marcats" #: index.php:177 -#: include/functions.php:1975 +#: include/functions.php:1926 #: classes/feeds.php:107 msgid "Published" msgstr "Publicats" @@ -352,137 +354,130 @@ 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:237 +#: include/functions.php:1915 #: include/localized_schema.php:10 #: classes/feeds.php:111 -#: classes/feeds.php:136 -#: classes/feeds.php:437 +#: classes/feeds.php:441 #: js/FeedTree.js:128 #: js/FeedTree.js:156 #: plugins/digest/digest.js:647 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:1811 +#: include/functions.php:1923 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:214 msgid "Communication problem with server." msgstr "" -#: index.php:220 +#: index.php:222 msgid "New version of Tiny Tiny RSS is available!" msgstr "Hi ha una nova versió de Tiny Tiny RSS!" -#: index.php:225 +#: index.php:227 msgid "Actions..." msgstr "Accions..." -#: index.php:227 +#: index.php:229 #, fuzzy msgid "Preferences..." msgstr "Preferències" -#: index.php:228 +#: index.php:230 msgid "Search..." msgstr "Cerca..." -#: index.php:229 +#: index.php:231 msgid "Feed actions:" msgstr "Accions sobre els canals:" -#: index.php:230 -#: classes/handler/public.php:555 +#: index.php:232 +#: classes/handler/public.php:556 msgid "Subscribe to feed..." msgstr "Subscriviu-vos al canal" -#: index.php:231 +#: index.php:233 msgid "Edit this feed..." msgstr "Edita aquest canal..." -#: index.php:232 +#: index.php:234 msgid "Rescore feed" msgstr "Canvia la puntuació del canal" -#: index.php:233 -#: classes/pref/feeds.php:716 -#: classes/pref/feeds.php:1303 +#: index.php:235 +#: 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:236 msgid "All feeds:" msgstr "Tots els canals" -#: index.php:236 +#: index.php:238 msgid "(Un)hide read feeds" msgstr "Mostra/amaga els canals llegits" -#: index.php:237 +#: index.php:239 msgid "Other actions:" msgstr "Altres accions:" -#: index.php:239 +#: index.php:241 msgid "Switch to digest..." msgstr "" -#: index.php:241 +#: index.php:243 #, fuzzy msgid "Show tag cloud..." msgstr "Núvol d'etiquetes" -#: index.php:242 -#: include/functions.php:1950 +#: index.php:244 +#: include/functions.php:1901 #, fuzzy msgid "Toggle widescreen mode" msgstr "Canvia al mode de reordenació de categories" -#: index.php:243 +#: index.php:245 msgid "Select by tags..." msgstr "" -#: index.php:244 +#: index.php:246 msgid "Create label..." msgstr "Crea una etiqueta" -#: index.php:245 +#: index.php:247 msgid "Create filter..." msgstr "Crea un filtre..." -#: index.php:246 +#: index.php:248 #, fuzzy msgid "Keyboard shortcuts help" msgstr "Dreceres de teclat" -#: index.php:248 +#: index.php:257 #: plugins/digest/digest_body.php:77 #: plugins/mobile/mobile-functions.php:62 #: plugins/mobile/mobile-functions.php:237 @@ -490,41 +485,41 @@ msgid "Logout" msgstr "Surt" #: prefs.php:36 -#: prefs.php:122 -#: include/functions.php:1977 +#: prefs.php:121 +#: include/functions.php:1928 #: 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:1118 +#: include/functions.php:1754 #: 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 +545,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 +584,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:1127 +#: include/functions.php:1655 +#: include/functions.php:1740 +#: include/functions.php:1762 #: classes/opml.php:416 -#: classes/pref/feeds.php:221 +#: classes/pref/feeds.php:222 msgid "Uncategorized" msgstr "Sense categoria" @@ -609,366 +604,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:1116 +#: include/functions.php:1752 #: 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:1604 +#: classes/feeds.php:1101 +#: classes/pref/filters.php:427 msgid "All feeds" msgstr "Tots els canals" -#: include/functions.php:1854 +#: include/functions.php:1805 msgid "Starred articles" msgstr "Articles marcats" -#: include/functions.php:1856 +#: include/functions.php:1807 msgid "Published articles" msgstr "Articles publicats" -#: include/functions.php:1858 +#: include/functions.php:1809 msgid "Fresh articles" msgstr "Articles nous" -#: include/functions.php:1862 +#: include/functions.php:1813 #, fuzzy msgid "Archived articles" msgstr "Articles mémorisés" -#: include/functions.php:1864 +#: include/functions.php:1815 msgid "Recently read" msgstr "" -#: include/functions.php:1927 +#: include/functions.php:1878 msgid "Navigation" msgstr "Navegació" -#: include/functions.php:1928 +#: include/functions.php:1879 #, fuzzy msgid "Open next feed" msgstr "Canals generats" -#: include/functions.php:1929 +#: include/functions.php:1880 msgid "Open previous feed" msgstr "" -#: include/functions.php:1930 +#: include/functions.php:1881 #, fuzzy msgid "Open next article" msgstr "Mostra el contingut original de l'article" -#: include/functions.php:1931 +#: include/functions.php:1882 #, fuzzy msgid "Open previous article" msgstr "Mostra el contingut original de l'article" -#: include/functions.php:1932 +#: include/functions.php:1883 msgid "Open next article (don't scroll long articles)" msgstr "" -#: include/functions.php:1933 +#: include/functions.php:1884 msgid "Open previous article (don't scroll long articles)" msgstr "" -#: include/functions.php:1934 +#: include/functions.php:1885 msgid "Show search dialog" msgstr "Mostra el dià leg de cerca" -#: include/functions.php:1935 +#: include/functions.php:1886 #, fuzzy msgid "Article" msgstr "Tots els articles" -#: include/functions.php:1936 +#: include/functions.php:1887 msgid "Toggle starred" msgstr "Commuta els marcats" -#: include/functions.php:1937 -#: js/viewfeed.js:1920 +#: include/functions.php:1888 +#: js/viewfeed.js:1908 msgid "Toggle published" msgstr "Commuta els publicats" -#: include/functions.php:1938 -#: js/viewfeed.js:1898 +#: include/functions.php:1889 +#: js/viewfeed.js:1886 msgid "Toggle unread" msgstr "Commuta els no llegits" -#: include/functions.php:1939 +#: include/functions.php:1890 msgid "Edit tags" msgstr "Edita les etiquetes" -#: include/functions.php:1940 +#: include/functions.php:1891 #, fuzzy msgid "Dismiss selected" msgstr "Esteu segur que voleu eliminar els articles seleccionats de l'etiqueta?" -#: include/functions.php:1941 +#: include/functions.php:1892 #, fuzzy msgid "Dismiss read" msgstr "Publica l'article" -#: include/functions.php:1942 +#: include/functions.php:1893 #, 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:1894 +#: 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:1895 +#: js/viewfeed.js:1921 #, fuzzy msgid "Mark above as read" msgstr "Marca'l com a llegit" -#: include/functions.php:1945 +#: include/functions.php:1896 #, fuzzy msgid "Scroll down" msgstr "Fet!" -#: include/functions.php:1946 +#: include/functions.php:1897 msgid "Scroll up" msgstr "" -#: include/functions.php:1947 +#: include/functions.php:1898 #, fuzzy msgid "Select article under cursor" msgstr "Seleccioneu un article mitjançant el ratolÃ." -#: include/functions.php:1948 +#: include/functions.php:1899 #, fuzzy msgid "Email article" msgstr "Tots els articles" -#: include/functions.php:1949 +#: include/functions.php:1900 #, fuzzy msgid "Close/collapse article" msgstr "Buida els articles" -#: include/functions.php:1951 +#: include/functions.php:1902 #: 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:1903 #, fuzzy msgid "Article selection" msgstr "Accions actives de l'article" -#: include/functions.php:1953 +#: include/functions.php:1904 #, fuzzy msgid "Select all articles" msgstr "Buida els articles" -#: include/functions.php:1954 +#: include/functions.php:1905 #, fuzzy msgid "Select unread" msgstr "Purga els articles per llegir" -#: include/functions.php:1955 +#: include/functions.php:1906 #, fuzzy msgid "Select starred" msgstr "Marca'l com a destacat" -#: include/functions.php:1956 +#: include/functions.php:1907 #, fuzzy msgid "Select published" msgstr "Purga els articles per llegir" -#: include/functions.php:1957 +#: include/functions.php:1908 #, fuzzy msgid "Invert selection" msgstr "Accions actives de l'article" -#: include/functions.php:1958 +#: include/functions.php:1909 #, 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:1910 +#: classes/pref/feeds.php:521 +#: classes/pref/feeds.php:754 msgid "Feed" msgstr "Canal" -#: include/functions.php:1960 +#: include/functions.php:1911 #, fuzzy msgid "Refresh current feed" msgstr "Actualitza els canals actius" -#: include/functions.php:1961 +#: include/functions.php:1912 #, fuzzy msgid "Un/hide read feeds" msgstr "Mostra/amaga els canals llegits" -#: include/functions.php:1962 -#: classes/pref/feeds.php:1274 +#: include/functions.php:1913 +#: classes/pref/feeds.php:1275 msgid "Subscribe to feed" msgstr "Subscriu-te al canal" -#: include/functions.php:1963 +#: include/functions.php:1914 #: js/FeedTree.js:135 #: js/PrefFeedTree.js:67 msgid "Edit feed" msgstr "Edita el canal" -#: include/functions.php:1965 +#: include/functions.php:1916 #, 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:1917 #, fuzzy msgid "Debug feed update" msgstr "S'ha acabat l'actualització dels canals." -#: include/functions.php:1967 +#: include/functions.php:1918 #: 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:1919 #, fuzzy msgid "Un/collapse current category" msgstr "Clica-hi per a reduir la categoria" -#: include/functions.php:1969 +#: include/functions.php:1920 #, fuzzy msgid "Toggle combined mode" msgstr "Canvia al mode de reordenació de categories" -#: include/functions.php:1970 +#: include/functions.php:1921 #, fuzzy msgid "Toggle auto expand in combined mode" msgstr "Canvia al mode de reordenació de categories" -#: include/functions.php:1971 +#: include/functions.php:1922 #, fuzzy msgid "Go to" msgstr "Vés a..." -#: include/functions.php:1973 +#: include/functions.php:1924 #, fuzzy msgid "Fresh" msgstr "Actualitza" -#: include/functions.php:1976 +#: include/functions.php:1927 +#: 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:1929 #, fuzzy msgid "Other" msgstr "Altres:" -#: include/functions.php:1979 +#: include/functions.php:1930 #: classes/pref/labels.php:281 msgid "Create label" msgstr "Crea una etiqueta" -#: include/functions.php:1980 -#: classes/pref/filters.php:606 +#: include/functions.php:1931 +#: classes/pref/filters.php:654 msgid "Create filter" msgstr "Crea un filtre" -#: include/functions.php:1981 +#: include/functions.php:1932 #, fuzzy msgid "Un/collapse sidebar" msgstr "Redueix la barra lateral" -#: include/functions.php:1982 +#: include/functions.php:1933 #, fuzzy msgid "Show help dialog" msgstr "Mostra el dià leg de cerca" -#: include/functions.php:2467 +#: include/functions.php:2418 #, fuzzy, php-format msgid "Search results: %s" msgstr "Resultats de la cerca" -#: include/functions.php:2958 -#: js/viewfeed.js:2026 +#: include/functions.php:2909 +#: 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:2910 +#: js/viewfeed.js:2013 msgid "Play" msgstr "" -#: include/functions.php:3076 +#: include/functions.php:3027 msgid " - " msgstr " - " -#: include/functions.php:3098 -#: include/functions.php:3392 +#: include/functions.php:3049 +#: include/functions.php:3343 #: classes/rpc.php:408 msgid "no tags" msgstr "sense etiqueta" -#: include/functions.php:3108 -#: classes/feeds.php:682 +#: include/functions.php:3059 +#: classes/feeds.php:686 msgid "Edit tags for this article" msgstr "Edita les etiquetes d'aquest article" -#: include/functions.php:3137 -#: classes/feeds.php:638 +#: include/functions.php:3088 +#: classes/feeds.php:642 #, fuzzy msgid "Originally from:" msgstr "Mostra el contingut original de l'article" -#: include/functions.php:3150 -#: classes/feeds.php:651 -#: classes/pref/feeds.php:539 +#: include/functions.php:3101 +#: classes/feeds.php:655 +#: 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:3132 +#: 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/users.php:99 +#: 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:3368 #, fuzzy msgid "(edit note)" msgstr "edita la nota" -#: include/functions.php:3650 +#: include/functions.php:3601 msgid "unknown type" msgstr "tipus desconegut" -#: include/functions.php:3706 +#: include/functions.php:3657 #, fuzzy msgid "Attachments" msgstr "Adjuncions:" @@ -1014,7 +1007,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 +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 de la fulla d'estils personalitzada." @@ -1231,14 +1224,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 +1242,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 +1252,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 +1268,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:55 +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:176 +#: 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:1028 +#: classes/feeds.php:1080 +#: classes/feeds.php:1140 +#: classes/pref/users.php:178 +#: 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 :" -#: 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/pref/users.php:378 +#: classes/handler/public.php:764 +#: classes/pref/users.php:360 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 :" -#: 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 +1530,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:345 +#: 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:347 +#: 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 +1606,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" @@ -1843,60 +1626,163 @@ msgstr "Marca l'article" msgid "Feed:" msgstr "Flux :" -#: classes/feeds.php:201 -#: classes/feeds.php:827 +#: classes/feeds.php:205 +#: classes/feeds.php:831 msgid "Feed not found." msgstr "No s'ha trobat el canal." -#: classes/feeds.php:384 +#: classes/feeds.php:388 #, fuzzy, php-format msgid "Imported at %s" msgstr "Importeu" -#: classes/feeds.php:531 +#: classes/feeds.php:535 msgid "mark as read" msgstr "Marca'l com a llegit" -#: classes/feeds.php:582 +#: classes/feeds.php:586 #, fuzzy msgid "Collapse article" msgstr "Buida els articles" -#: classes/feeds.php:728 +#: classes/feeds.php:732 msgid "No unread articles found to display." msgstr "No es poden mostrar els articles no llegits perquè no n'hi ha." -#: classes/feeds.php:731 +#: classes/feeds.php:735 msgid "No updated articles found to display." msgstr "No hi ha cap article actualitzat." -#: classes/feeds.php:734 +#: classes/feeds.php:738 msgid "No starred articles found to display." msgstr "No hi ha articles marcats per mostrar." -#: classes/feeds.php:738 +#: classes/feeds.php:742 msgid "No articles found to display. You can assign articles to labels manually (see the Actions menu above) or use a filter." msgstr "No s'han trobat articles per a mostrar. Podeu assignar articles a etiquetes manualment (mireu el menú Accions) o utilitzeu un filtre." -#: classes/feeds.php:740 +#: classes/feeds.php:744 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:759 +#: classes/feeds.php:923 #, 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:769 +#: classes/feeds.php:933 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:913 msgid "No feed selected." msgstr "No heu seleccionat cap canal." +#: classes/feeds.php:966 +#: classes/feeds.php:974 +#, fuzzy +msgid "Feed or site URL" +msgstr "Canal" + +#: classes/feeds.php:980 +#: 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:988 +#, fuzzy +msgid "Available feeds" +msgstr "Tots els canals" + +#: classes/feeds.php:1000 +#: classes/pref/users.php:139 +#: classes/pref/feeds.php:590 +#: classes/pref/feeds.php:818 +msgid "Authentication" +msgstr "Autenticació" + +#: classes/feeds.php:1004 +#: classes/pref/users.php:402 +#: classes/pref/feeds.php:596 +#: classes/pref/feeds.php:822 +#: classes/pref/feeds.php:1775 +msgid "Login" +msgstr "Entra" + +#: classes/feeds.php:1007 +#: 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:1017 +msgid "This feed requires authentication." +msgstr "Aquest canal requereix autenticació." + +#: classes/feeds.php:1022 +#: classes/feeds.php:1078 +#: classes/pref/feeds.php:1796 +msgid "Subscribe" +msgstr "Subscriu-t'hi" + +#: classes/feeds.php:1025 +#, fuzzy +msgid "More feeds" +msgstr "Més canals" + +#: classes/feeds.php:1048 +#: classes/feeds.php:1139 +#: classes/pref/users.php:332 +#: classes/pref/filters.php:641 +#: classes/pref/feeds.php:1259 +#: js/tt-rss.js:170 +msgid "Search" +msgstr "Cerca" + +#: classes/feeds.php:1052 +#, fuzzy +msgid "Popular feeds" +msgstr "mostra els canals" + +#: classes/feeds.php:1053 +#, fuzzy +msgid "Feed archive" +msgstr "Accions dels canals" + +#: classes/feeds.php:1056 +#, fuzzy +msgid "limit:" +msgstr "LÃmit:" + +#: classes/feeds.php:1079 +#: classes/pref/users.php:358 +#: 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:1090 +msgid "Look for" +msgstr "Mirar-ho per" + +#: classes/feeds.php:1098 +msgid "Limit search to:" +msgstr "Limita la cerca a:" + +#: classes/feeds.php:1114 +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 +1857,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." @@ -1980,123 +1866,133 @@ msgstr "Error mentre s'analitza el document." msgid "Your access level is insufficient to open this tab." msgstr "No teniu permisos per a obrir aquesta pestanya." -#: classes/pref/users.php:27 -msgid "User details" -msgstr "Detalls de l'usuari" - -#: classes/pref/users.php:41 +#: classes/pref/users.php:34 msgid "User not found" msgstr "No s'ha trobat l'usuari" -#: classes/pref/users.php:60 -#: classes/pref/users.php:422 +#: classes/pref/users.php:53 +#: classes/pref/users.php:404 msgid "Registered" msgstr "Registrat" -#: classes/pref/users.php:61 +#: classes/pref/users.php:54 msgid "Last logged in" msgstr "Última connexió el" -#: classes/pref/users.php:68 +#: classes/pref/users.php:61 msgid "Subscribed feeds count" msgstr "Nombre de canals subscrits" -#: classes/pref/users.php:72 +#: classes/pref/users.php:65 msgid "Subscribed feeds" msgstr "Canals subscrits" -#: classes/pref/users.php:122 -msgid "User Editor" -msgstr "Editor de perfils d'usuari" - -#: classes/pref/users.php:158 +#: classes/pref/users.php:142 msgid "Access level: " msgstr "Nivell d'accés:" -#: classes/pref/users.php:171 +#: classes/pref/users.php:155 msgid "Change password to" msgstr "Nova contrasenya" -#: classes/pref/users.php:177 -#: classes/pref/feeds.php:609 -#: classes/pref/feeds.php:833 +#: classes/pref/users.php:161 +#: classes/pref/feeds.php:610 +#: classes/pref/feeds.php:834 msgid "Options" msgstr "Opcions" -#: classes/pref/users.php:180 +#: classes/pref/users.php:164 msgid "E-mail: " msgstr "Adreça electrònica:" -#: classes/pref/users.php:258 +#: classes/pref/users.php:240 #, php-format msgid "Added user <b>%s</b> with password <b>%s</b>" msgstr "S'ha creat l'usuari <b>%s</b> amb la contrasenya <b>%s</b>" -#: classes/pref/users.php:265 +#: classes/pref/users.php:247 #, php-format msgid "Could not create user <b>%s</b>" msgstr "No s'ha pogut crear l'usuari <b>%s</b>" -#: classes/pref/users.php:269 +#: classes/pref/users.php:251 #, php-format msgid "User <b>%s</b> already exists." msgstr "L'usuari<b>%s</b> ja existeix." -#: classes/pref/users.php:291 +#: classes/pref/users.php:273 #, fuzzy, php-format msgid "Changed password of user <b>%s</b> to <b>%s</b>" msgstr "" "La contrasenya de l'usuari <b>%s</b>\n" "\t\t\t\t\ts'ha canviat a <b>%s</b>" -#: classes/pref/users.php:293 +#: classes/pref/users.php:275 #, fuzzy, php-format msgid "Sending new password of user <b>%s</b> to <b>%s</b>" msgstr "" "La contrasenya de l'usuari <b>%s</b>\n" "\t\t\t\t\ts'ha canviat a <b>%s</b>" -#: classes/pref/users.php:317 +#: classes/pref/users.php:299 msgid "[tt-rss] Password change notification" msgstr "[tt-rss] Notificació de canvi de contrasenya" -#: classes/pref/users.php:368 +#: classes/pref/users.php:342 +#: 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:350 msgid "Create user" msgstr "Crea un usuari" -#: classes/pref/users.php:372 +#: classes/pref/users.php:354 #, fuzzy msgid "Details" msgstr "Dià riament" -#: classes/pref/users.php:374 -#: classes/pref/filters.php:612 +#: classes/pref/users.php:356 +#: classes/pref/filters.php:660 #: plugins/instances/init.php:296 msgid "Edit" msgstr "Edita" -#: classes/pref/users.php:421 +#: classes/pref/users.php:403 msgid "Access Level" msgstr "Permisos" -#: classes/pref/users.php:423 +#: classes/pref/users.php:405 msgid "Last login" msgstr "Última connexió" -#: classes/pref/users.php:444 +#: classes/pref/users.php:426 #: plugins/instances/init.php:337 msgid "Click to edit" msgstr "Feu clic per editar" -#: classes/pref/users.php:464 +#: classes/pref/users.php:446 msgid "No users defined." msgstr "No s'han definit els usuaris." -#: classes/pref/users.php:466 +#: classes/pref/users.php:448 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 +2020,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 +2373,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 :" -#: 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 +2942,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 +2968,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 +3025,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 +3094,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 +3293,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)" @@ -3327,6 +3310,10 @@ msgstr "No s'ha pogut crear l'usuari: no hi ha cap nom especificat." msgid "Adding user..." msgstr "S'està afegint l'usuari" +#: js/prefs.js:94 +msgid "User Editor" +msgstr "Editor de perfils d'usuari" + #: js/prefs.js:117 #, fuzzy msgid "Edit Filter" @@ -3350,7 +3337,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." @@ -3434,6 +3421,10 @@ msgstr "Voleu reiniciar la contrasenya de l'usuari seleccionat?" msgid "Resetting password for selected user..." msgstr "S'està reiniciant la contrasenya de l'usuari seleccionat..." +#: js/prefs.js:585 +msgid "User details" +msgstr "Detalls de l'usuari" + #: js/prefs.js:602 msgid "Please select only one filter." msgstr "Si us plau, seleccioneu només un filtre." @@ -3457,163 +3448,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 +3626,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 +3684,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 +3920,26 @@ 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 "Refresh" +#~ msgstr "Actualitza" + +#, 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" @@ -4917,10 +4928,6 @@ msgstr "" #~ msgstr "Expression SQL" #, fuzzy -#~ msgid "[No caption]" -#~ msgstr "Descriptif" - -#, fuzzy #~ msgid "Labels and SQL Expressions" #~ msgstr "Expression SQL" diff --git a/locale/cs_CZ/LC_MESSAGES/messages.mo b/locale/cs_CZ/LC_MESSAGES/messages.mo Binary files differindex 77798ad1b..ec8c8f628 100644 --- a/locale/cs_CZ/LC_MESSAGES/messages.mo +++ b/locale/cs_CZ/LC_MESSAGES/messages.mo diff --git a/locale/cs_CZ/LC_MESSAGES/messages.po b/locale/cs_CZ/LC_MESSAGES/messages.po index fcb7c8622..512d4ab26 100644 --- a/locale/cs_CZ/LC_MESSAGES/messages.po +++ b/locale/cs_CZ/LC_MESSAGES/messages.po @@ -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 19:15+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" @@ -91,7 +91,7 @@ msgid "Weekly" msgstr "TýdnÄ›" #: backend.php:101 -#: classes/pref/users.php:139 +#: classes/pref/users.php:123 msgid "User" msgstr "Uživatel" @@ -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,38 @@ 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:273 +#: prefs.php:103 +#: test.php:11 #: 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 +303,13 @@ msgid "All Articles" msgstr "VÅ¡echny Älánky" #: index.php:176 -#: include/functions.php:1974 +#: include/functions.php:1925 #: classes/feeds.php:106 msgid "Starred" msgstr "S hvÄ›zdiÄkou" #: index.php:177 -#: include/functions.php:1975 +#: include/functions.php:1926 #: classes/feeds.php:107 msgid "Published" msgstr "Publikováno" @@ -319,13 +321,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,140 +342,132 @@ 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:237 +#: include/functions.php:1915 #: include/localized_schema.php:10 #: classes/feeds.php:111 -#: classes/feeds.php:136 -#: classes/feeds.php:437 +#: classes/feeds.php:441 #: js/FeedTree.js:128 #: js/FeedTree.js:156 #: plugins/digest/digest.js:647 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:1811 +#: include/functions.php:1923 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:212 +#: index.php:214 msgid "Communication problem with server." msgstr "Chyba pÅ™i komunikaci se serverem." -#: index.php:220 +#: index.php:222 msgid "New version of Tiny Tiny RSS is available!" msgstr "Je dostupná nová verze Tiny Tiny RSS." -#: index.php:225 +#: index.php:227 msgid "Actions..." msgstr "ÄŒinnosti..." -#: index.php:227 +#: index.php:229 msgid "Preferences..." msgstr "NastavenÃ..." -#: index.php:228 +#: index.php:230 msgid "Search..." msgstr "Hledat..." -#: index.php:229 +#: index.php:231 msgid "Feed actions:" msgstr "ÄŒinnosti kanálů:" -#: index.php:230 -#: classes/handler/public.php:555 +#: index.php:232 +#: classes/handler/public.php:556 msgid "Subscribe to feed..." msgstr "PÅ™ihlásit se k odbÄ›ru..." -#: index.php:231 +#: index.php:233 msgid "Edit this feed..." msgstr "Upravit kanál..." -#: index.php:232 +#: index.php:234 msgid "Rescore feed" msgstr "PÅ™ehodnotit kanál" -#: index.php:233 -#: classes/pref/feeds.php:716 -#: classes/pref/feeds.php:1303 +#: index.php:235 +#: 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:236 msgid "All feeds:" msgstr "VÅ¡echny kanály:" -#: index.php:236 +#: index.php:238 msgid "(Un)hide read feeds" msgstr "Zobrazit/Skrýt pÅ™eÄtené kanály" -#: index.php:237 +#: index.php:239 msgid "Other actions:" msgstr "Ostatnà Äinnosti:" -#: index.php:239 +#: index.php:241 msgid "Switch to digest..." -msgstr "PÅ™epnout na výbÄ›r..." +msgstr "PÅ™epnout na souhrn..." -#: index.php:241 +#: index.php:243 msgid "Show tag cloud..." msgstr "Zobrazit seznam znaÄek..." -#: index.php:242 -#: include/functions.php:1950 +#: index.php:244 +#: include/functions.php:1901 msgid "Toggle widescreen mode" msgstr "PÅ™epnout Å¡irokoúhlý režim" -#: index.php:243 +#: index.php:245 msgid "Select by tags..." msgstr "Vybrat podle znaÄek..." -#: index.php:244 +#: index.php:246 msgid "Create label..." msgstr "VytvoÅ™it Å¡tÃtek..." -#: index.php:245 +#: index.php:247 msgid "Create filter..." msgstr "VytvoÅ™it filtr..." -#: index.php:246 +#: index.php:248 msgid "Keyboard shortcuts help" msgstr "NápovÄ›da ke klávesovým zkratkám" -#: index.php:248 +#: index.php:257 #: plugins/digest/digest_body.php:77 #: plugins/mobile/mobile-functions.php:62 #: plugins/mobile/mobile-functions.php:237 @@ -482,41 +475,41 @@ msgid "Logout" msgstr "Odhlásit se" #: prefs.php:36 -#: prefs.php:122 -#: include/functions.php:1977 +#: prefs.php:121 +#: include/functions.php:1928 #: 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:1118 +#: include/functions.php:1754 #: 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 +535,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 +573,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:1127 +#: include/functions.php:1655 +#: include/functions.php:1740 +#: include/functions.php:1762 #: classes/opml.php:416 -#: classes/pref/feeds.php:221 +#: classes/pref/feeds.php:222 msgid "Uncategorized" msgstr "Bez zaÅ™azenÃ" @@ -601,329 +594,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:1116 +#: include/functions.php:1752 #: 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:1604 +#: classes/feeds.php:1101 +#: classes/pref/filters.php:427 msgid "All feeds" msgstr "VÅ¡echny kanály" -#: include/functions.php:1854 +#: include/functions.php:1805 msgid "Starred articles" msgstr "ÄŒlánky s hvÄ›zdiÄkou" -#: include/functions.php:1856 +#: include/functions.php:1807 msgid "Published articles" msgstr "Publikované Älánky" -#: include/functions.php:1858 +#: include/functions.php:1809 msgid "Fresh articles" msgstr "Nové Älánky" -#: include/functions.php:1862 +#: include/functions.php:1813 msgid "Archived articles" msgstr "Archivované Älánky" -#: include/functions.php:1864 +#: include/functions.php:1815 msgid "Recently read" msgstr "Nedávno pÅ™eÄtené" -#: include/functions.php:1927 +#: include/functions.php:1878 msgid "Navigation" msgstr "Navigace" -#: include/functions.php:1928 +#: include/functions.php:1879 msgid "Open next feed" msgstr "OtevÅ™Ãt následujÃcà kanál" -#: include/functions.php:1929 +#: include/functions.php:1880 msgid "Open previous feed" msgstr "OtevÅ™Ãt pÅ™edchozà kanál" -#: include/functions.php:1930 +#: include/functions.php:1881 msgid "Open next article" msgstr "OtevÅ™Ãt následujÃcà Älánek" -#: include/functions.php:1931 +#: include/functions.php:1882 msgid "Open previous article" msgstr "OtevÅ™Ãt pÅ™edchozà Älánek" -#: include/functions.php:1932 +#: include/functions.php:1883 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:1884 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:1885 msgid "Show search dialog" msgstr "Zobrazit dialog hledánÃ" -#: include/functions.php:1935 +#: include/functions.php:1886 msgid "Article" msgstr "ÄŒlánek" -#: include/functions.php:1936 +#: include/functions.php:1887 msgid "Toggle starred" msgstr "PÅ™epnout hvÄ›zdiÄku" -#: include/functions.php:1937 -#: js/viewfeed.js:1920 +#: include/functions.php:1888 +#: js/viewfeed.js:1908 msgid "Toggle published" msgstr "PÅ™epnout publikováno" -#: include/functions.php:1938 -#: js/viewfeed.js:1898 +#: include/functions.php:1889 +#: js/viewfeed.js:1886 msgid "Toggle unread" msgstr "PÅ™epnout pÅ™eÄteno" -#: include/functions.php:1939 +#: include/functions.php:1890 msgid "Edit tags" msgstr "Upravit znaÄky" -#: include/functions.php:1940 +#: include/functions.php:1891 msgid "Dismiss selected" msgstr "" -#: include/functions.php:1941 +#: include/functions.php:1892 msgid "Dismiss read" msgstr "" -#: include/functions.php:1942 +#: include/functions.php:1893 msgid "Open in new window" msgstr "OtevÅ™Ãt v novém oknÄ›" -#: include/functions.php:1943 -#: js/viewfeed.js:1939 +#: include/functions.php:1894 +#: 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:1895 +#: 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:1896 msgid "Scroll down" msgstr "Posunout dolů" -#: include/functions.php:1946 +#: include/functions.php:1897 msgid "Scroll up" msgstr "Posunout nahoru" -#: include/functions.php:1947 +#: include/functions.php:1898 msgid "Select article under cursor" msgstr "Vybrat Älánek pod kurzorem" -#: include/functions.php:1948 +#: include/functions.php:1899 msgid "Email article" -msgstr "" +msgstr "Odeslat Älánek e-mailem" -#: include/functions.php:1949 +#: include/functions.php:1900 msgid "Close/collapse article" msgstr "ZavÅ™Ãt/sbalit Älánek" -#: include/functions.php:1951 +#: include/functions.php:1902 #: plugins/embed_original/init.php:33 msgid "Toggle embed original" msgstr "PÅ™epnout vložený originál" -#: include/functions.php:1952 +#: include/functions.php:1903 msgid "Article selection" msgstr "VýbÄ›r Älánků" -#: include/functions.php:1953 +#: include/functions.php:1904 msgid "Select all articles" msgstr "Vybrat vÅ¡echny Älánky" -#: include/functions.php:1954 +#: include/functions.php:1905 msgid "Select unread" msgstr "Vybrat nepÅ™eÄtené" -#: include/functions.php:1955 +#: include/functions.php:1906 msgid "Select starred" msgstr "Vybrat s hvÄ›zdiÄkou" -#: include/functions.php:1956 +#: include/functions.php:1907 msgid "Select published" msgstr "Vybrat publikované" -#: include/functions.php:1957 +#: include/functions.php:1908 msgid "Invert selection" msgstr "Obrátit výbÄ›r" -#: include/functions.php:1958 +#: include/functions.php:1909 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:1910 +#: classes/pref/feeds.php:521 +#: classes/pref/feeds.php:754 msgid "Feed" msgstr "Kanál" -#: include/functions.php:1960 +#: include/functions.php:1911 msgid "Refresh current feed" msgstr "Obnovit souÄasný kanál" -#: include/functions.php:1961 +#: include/functions.php:1912 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:1913 +#: classes/pref/feeds.php:1275 msgid "Subscribe to feed" msgstr "PÅ™ihlásit se k odbÄ›ru" -#: include/functions.php:1963 +#: include/functions.php:1914 #: js/FeedTree.js:135 #: js/PrefFeedTree.js:67 msgid "Edit feed" msgstr "Upravit kanál" -#: include/functions.php:1965 +#: include/functions.php:1916 msgid "Reverse headlines" msgstr "" -#: include/functions.php:1966 +#: include/functions.php:1917 msgid "Debug feed update" msgstr "Ladit aktualizaci kanálů" -#: include/functions.php:1967 +#: include/functions.php:1918 #: 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:1919 msgid "Un/collapse current category" msgstr "Rozbalit/sbalit aktuálnà kategorii" -#: include/functions.php:1969 +#: include/functions.php:1920 msgid "Toggle combined mode" msgstr "PÅ™epnout kombinovaný režim" -#: include/functions.php:1970 -#, fuzzy +#: include/functions.php:1921 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:1922 msgid "Go to" msgstr "PÅ™ejÃt na" -#: include/functions.php:1973 +#: include/functions.php:1924 msgid "Fresh" msgstr "Nové" -#: include/functions.php:1976 +#: include/functions.php:1927 +#: js/tt-rss.js:431 +#: js/tt-rss.js:584 msgid "Tag cloud" msgstr "Seznam znaÄek" -#: include/functions.php:1978 +#: include/functions.php:1929 msgid "Other" msgstr "OstatnÃ" -#: include/functions.php:1979 +#: include/functions.php:1930 #: 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:1931 +#: classes/pref/filters.php:654 msgid "Create filter" msgstr "VytvoÅ™it filtr" -#: include/functions.php:1981 +#: include/functions.php:1932 msgid "Un/collapse sidebar" msgstr "Rozbalit/sbalit postrannà liÅ¡tu" -#: include/functions.php:1982 +#: include/functions.php:1933 msgid "Show help dialog" msgstr "Zobrazit nápovÄ›du" -#: include/functions.php:2467 +#: include/functions.php:2418 #, php-format msgid "Search results: %s" msgstr "Výsledky hledánÃ: %s" -#: include/functions.php:2958 -#: js/viewfeed.js:2026 +#: include/functions.php:2909 +#: 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:2910 +#: js/viewfeed.js:2013 msgid "Play" msgstr "PÅ™ehrát" -#: include/functions.php:3076 +#: include/functions.php:3027 msgid " - " msgstr " - " -#: include/functions.php:3098 -#: include/functions.php:3392 +#: include/functions.php:3049 +#: include/functions.php:3343 #: classes/rpc.php:408 msgid "no tags" msgstr "žádné znaÄky" -#: include/functions.php:3108 -#: classes/feeds.php:682 +#: include/functions.php:3059 +#: classes/feeds.php:686 msgid "Edit tags for this article" msgstr "Upravit znaÄky pro Älánek" -#: include/functions.php:3137 -#: classes/feeds.php:638 +#: include/functions.php:3088 +#: classes/feeds.php:642 msgid "Originally from:" msgstr "PůvodnÄ› z:" -#: include/functions.php:3150 -#: classes/feeds.php:651 -#: classes/pref/feeds.php:539 +#: include/functions.php:3101 +#: classes/feeds.php:655 +#: 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:3132 +#: 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/users.php:99 +#: 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:3368 msgid "(edit note)" msgstr "(upravit poznámku)" -#: include/functions.php:3650 +#: include/functions.php:3601 msgid "unknown type" msgstr "neznámý typ" -#: include/functions.php:3706 +#: include/functions.php:3657 msgid "Attachments" msgstr "PÅ™Ãlohy" @@ -967,7 +957,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 +991,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 +1027,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 +1066,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 +1084,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 +1128,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 +1139,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 +1149,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 +1181,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 +1190,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,479 +1202,248 @@ 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:55 +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:176 +#: 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:1028 +#: classes/feeds.php:1080 +#: classes/feeds.php:1140 +#: classes/pref/users.php:178 +#: 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/pref/users.php:378 +#: classes/handler/public.php:764 +#: classes/pref/users.php:360 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 "" +msgstr "Generovat novou URL" -#: classes/dlg.php:194 -msgid "Notice" -msgstr "Poznámka" - -#: 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 +#: 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 "Stáhnout" -#: 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 "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" - -#: 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 "Kanály k odebÃránÃ. Jeden na řádku" - -#: classes/dlg.php:739 -msgid "Feeds require authentication." -msgstr "" - #: classes/feeds.php:68 msgid "Visit the website" msgstr "" @@ -1695,14 +1452,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:345 +#: 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:347 +#: 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 +1523,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" @@ -1746,59 +1541,155 @@ msgstr "PÅ™eposlat e-mailem" msgid "Feed:" msgstr "Kanál:" -#: classes/feeds.php:201 -#: classes/feeds.php:827 +#: classes/feeds.php:205 +#: classes/feeds.php:831 msgid "Feed not found." msgstr "Kanál nenalezen." -#: classes/feeds.php:384 -#, fuzzy, php-format +#: classes/feeds.php:388 +#, php-format msgid "Imported at %s" -msgstr "Importovat" +msgstr "" -#: classes/feeds.php:531 +#: classes/feeds.php:535 msgid "mark as read" msgstr "oznaÄit jako pÅ™eÄtené" -#: classes/feeds.php:582 +#: classes/feeds.php:586 msgid "Collapse article" msgstr "Sbalit Älánek" -#: classes/feeds.php:728 +#: classes/feeds.php:732 msgid "No unread articles found to display." msgstr "Nenalezeny žádné nepÅ™eÄtené Älánky k zobrazenÃ." -#: classes/feeds.php:731 +#: classes/feeds.php:735 msgid "No updated articles found to display." msgstr "Nenalezeny žádné aktualizované Älánky k zobrazenÃ." -#: classes/feeds.php:734 +#: classes/feeds.php:738 msgid "No starred articles found to display." msgstr "Nenalezeny žádné Älánky s hvÄ›zdiÄkou k zobrazenÃ." -#: classes/feeds.php:738 +#: classes/feeds.php:742 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 +#: classes/feeds.php:744 msgid "No articles found to display." msgstr "Nenalezeny žádné Älánky ke zobrazenÃ." -#: classes/feeds.php:755 -#: classes/feeds.php:920 +#: classes/feeds.php:759 +#: classes/feeds.php:923 #, 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:769 +#: classes/feeds.php:933 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:913 msgid "No feed selected." msgstr "Nenà vybrán žádný kanál." +#: classes/feeds.php:966 +#: classes/feeds.php:974 +msgid "Feed or site URL" +msgstr "" + +#: classes/feeds.php:980 +#: classes/pref/feeds.php:560 +#: classes/pref/feeds.php:782 +#: classes/pref/feeds.php:1761 +msgid "Place in category:" +msgstr "" + +#: classes/feeds.php:988 +msgid "Available feeds" +msgstr "Dostupné kanály" + +#: classes/feeds.php:1000 +#: classes/pref/users.php:139 +#: classes/pref/feeds.php:590 +#: classes/pref/feeds.php:818 +msgid "Authentication" +msgstr "OvěřenÃ" + +#: classes/feeds.php:1004 +#: classes/pref/users.php:402 +#: classes/pref/feeds.php:596 +#: classes/pref/feeds.php:822 +#: classes/pref/feeds.php:1775 +msgid "Login" +msgstr "PÅ™ihlášenÃ" + +#: classes/feeds.php:1007 +#: 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:1017 +msgid "This feed requires authentication." +msgstr "Tento kanál vyžaduje ověřenÃ." + +#: classes/feeds.php:1022 +#: classes/feeds.php:1078 +#: classes/pref/feeds.php:1796 +msgid "Subscribe" +msgstr "OdebÃrat" + +#: classes/feeds.php:1025 +msgid "More feeds" +msgstr "VÃce kanálů" + +#: classes/feeds.php:1048 +#: classes/feeds.php:1139 +#: classes/pref/users.php:332 +#: classes/pref/filters.php:641 +#: classes/pref/feeds.php:1259 +#: js/tt-rss.js:170 +msgid "Search" +msgstr "Hledat" + +#: classes/feeds.php:1052 +msgid "Popular feeds" +msgstr "OblÃbené kanály" + +#: classes/feeds.php:1053 +msgid "Feed archive" +msgstr "ArchÃv kanálů" + +#: classes/feeds.php:1056 +msgid "limit:" +msgstr "omezenÃ:" + +#: classes/feeds.php:1079 +#: classes/pref/users.php:358 +#: 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:1090 +msgid "Look for" +msgstr "Hledat" + +#: classes/feeds.php:1098 +msgid "Limit search to:" +msgstr "Omezit hledánà na:" + +#: classes/feeds.php:1114 +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 +1762,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 "" @@ -1880,118 +1771,127 @@ msgstr "" msgid "Your access level is insufficient to open this tab." msgstr "" -#: classes/pref/users.php:27 -msgid "User details" -msgstr "Podrobnosti uživatele" - -#: classes/pref/users.php:41 +#: classes/pref/users.php:34 msgid "User not found" msgstr "Uživatel nebyl nalezen" -#: classes/pref/users.php:60 -#: classes/pref/users.php:422 +#: classes/pref/users.php:53 +#: classes/pref/users.php:404 msgid "Registered" msgstr "Registrován" -#: classes/pref/users.php:61 +#: classes/pref/users.php:54 msgid "Last logged in" msgstr "Naposledy pÅ™ihlášen" -#: classes/pref/users.php:68 +#: classes/pref/users.php:61 msgid "Subscribed feeds count" msgstr "PoÄet odebÃraných kanálů" -#: classes/pref/users.php:72 +#: classes/pref/users.php:65 msgid "Subscribed feeds" msgstr "OdebÃrané kanály" -#: classes/pref/users.php:122 -msgid "User Editor" -msgstr "Editor uživatelů" - -#: classes/pref/users.php:158 +#: classes/pref/users.php:142 msgid "Access level: " msgstr "Úroveň pÅ™Ãstupu: " -#: classes/pref/users.php:171 +#: classes/pref/users.php:155 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/users.php:161 +#: classes/pref/feeds.php:610 +#: classes/pref/feeds.php:834 msgid "Options" msgstr "Možnosti" -#: classes/pref/users.php:180 +#: classes/pref/users.php:164 msgid "E-mail: " msgstr "E-mail: " -#: classes/pref/users.php:258 +#: classes/pref/users.php:240 #, php-format msgid "Added user <b>%s</b> with password <b>%s</b>" msgstr "PÅ™idán uživatel <b>%s</b> s heslem <b>%s</b>" -#: classes/pref/users.php:265 +#: classes/pref/users.php:247 #, php-format msgid "Could not create user <b>%s</b>" msgstr "Nelze vytvoÅ™it uživatele <b>%s</b>" -#: classes/pref/users.php:269 +#: classes/pref/users.php:251 #, php-format msgid "User <b>%s</b> already exists." msgstr "Uživatel <b>%s</b> již existuje." -#: classes/pref/users.php:291 +#: classes/pref/users.php:273 #, php-format msgid "Changed password of user <b>%s</b> to <b>%s</b>" msgstr "ZmÄ›nÄ›no heslo uživatele <b>%s</b> na <b>%s</b>" -#: classes/pref/users.php:293 +#: classes/pref/users.php:275 #, php-format msgid "Sending new password of user <b>%s</b> to <b>%s</b>" msgstr "ZasÃlám nové heslo uživatele <b>%s</b> na <b>%s</b>" -#: classes/pref/users.php:317 +#: classes/pref/users.php:299 msgid "[tt-rss] Password change notification" msgstr "[tt-rss] Oznámenà o zmÄ›nÄ› hesla" -#: classes/pref/users.php:368 +#: classes/pref/users.php:342 +#: 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:350 msgid "Create user" msgstr "VytvoÅ™it uživatele" -#: classes/pref/users.php:372 +#: classes/pref/users.php:354 msgid "Details" msgstr "Podrobnosti" -#: classes/pref/users.php:374 -#: classes/pref/filters.php:612 +#: classes/pref/users.php:356 +#: classes/pref/filters.php:660 #: plugins/instances/init.php:296 msgid "Edit" msgstr "Upravit" -#: classes/pref/users.php:421 +#: classes/pref/users.php:403 msgid "Access Level" msgstr "Úroveň pÅ™Ãstupu" -#: classes/pref/users.php:423 +#: classes/pref/users.php:405 msgid "Last login" msgstr "Poslednà pÅ™ihlášenÃ" -#: classes/pref/users.php:444 +#: classes/pref/users.php:426 #: plugins/instances/init.php:337 msgid "Click to edit" msgstr "KliknÄ›te pro úpravy" -#: classes/pref/users.php:464 +#: classes/pref/users.php:446 msgid "No users defined." msgstr "" -#: classes/pref/users.php:466 +#: classes/pref/users.php:448 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 +1916,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 +2098,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 +2118,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 +2131,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 +2147,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 +2222,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 +2242,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/feeds.php:526 +#: 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/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 +2535,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 +2553,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 +2564,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 +2574,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 +2583,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 +2594,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 +2756,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 +2781,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 +2833,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 +2874,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 +2891,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 +3069,7 @@ msgstr "Upravit kategorii" msgid "Remove category" msgstr "Odstranit kategorii" -#: js/PrefFilterTree.js:32 +#: js/PrefFilterTree.js:48 msgid "Inverse" msgstr "InverznÃ" @@ -3116,6 +3085,10 @@ msgstr "" msgid "Adding user..." msgstr "PÅ™idávám uživatele..." +#: js/prefs.js:94 +msgid "User Editor" +msgstr "Editor uživatelů" + #: js/prefs.js:117 msgid "Edit Filter" msgstr "Upravit filtr" @@ -3137,7 +3110,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 +3145,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..." @@ -3220,6 +3193,10 @@ msgstr "Obnovit heslo vybraného uživatele?" msgid "Resetting password for selected user..." msgstr "Obnovuji heslo vybraného uživatele..." +#: js/prefs.js:585 +msgid "User details" +msgstr "Podrobnosti uživatele" + #: js/prefs.js:602 msgid "Please select only one filter." msgstr "Vyberte prosÃm pouze jeden filtr." @@ -3240,144 +3217,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 +3374,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 +3430,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 +3597,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 +3640,22 @@ 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 "" +#, fuzzy +#~ msgid "Refresh" +#~ msgstr "Nové" + +#~ 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" diff --git a/locale/de_DE/LC_MESSAGES/messages.mo b/locale/de_DE/LC_MESSAGES/messages.mo Binary files differindex 2c0b4e454..d72ac4b45 100755 --- a/locale/de_DE/LC_MESSAGES/messages.mo +++ b/locale/de_DE/LC_MESSAGES/messages.mo diff --git a/locale/de_DE/LC_MESSAGES/messages.po b/locale/de_DE/LC_MESSAGES/messages.po index 129615bec..04148c1ca 100755 --- a/locale/de_DE/LC_MESSAGES/messages.po +++ b/locale/de_DE/LC_MESSAGES/messages.po @@ -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 19:15+0400\n" "PO-Revision-Date: 2013-03-25 17:14+0100\n" "Last-Translator: Joschasa <joschasa@lavabit.com>\n" "Language-Team: \n" @@ -96,7 +96,7 @@ msgid "Weekly" msgstr "Wöchentlich" #: backend.php:101 -#: classes/pref/users.php:139 +#: classes/pref/users.php:123 msgid "User" msgstr "Benutzer" @@ -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,38 @@ 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:273 +#: prefs.php:103 +#: test.php:11 #: 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 +307,13 @@ msgid "All Articles" msgstr "Alle Artikel" #: index.php:176 -#: include/functions.php:1974 +#: include/functions.php:1925 #: classes/feeds.php:106 msgid "Starred" msgstr "Markiert" #: index.php:177 -#: include/functions.php:1975 +#: include/functions.php:1926 #: classes/feeds.php:107 msgid "Published" msgstr "Veröffentlicht" @@ -351,133 +353,126 @@ 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:237 +#: include/functions.php:1915 #: include/localized_schema.php:10 #: classes/feeds.php:111 -#: classes/feeds.php:136 -#: classes/feeds.php:437 +#: classes/feeds.php:441 #: js/FeedTree.js:128 #: js/FeedTree.js:156 #: plugins/digest/digest.js:647 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:1811 +#: include/functions.php:1923 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:214 msgid "Communication problem with server." msgstr "Kommunikationsfehler mit Server" -#: index.php:220 +#: index.php:222 msgid "New version of Tiny Tiny RSS is available!" msgstr "Neue Version von Tiny Tiny RSS verfügbar!" -#: index.php:225 +#: index.php:227 msgid "Actions..." msgstr "Aktionen..." -#: index.php:227 +#: index.php:229 msgid "Preferences..." msgstr "Einstellungen..." -#: index.php:228 +#: index.php:230 msgid "Search..." msgstr "Suchen..." -#: index.php:229 +#: index.php:231 msgid "Feed actions:" msgstr "Feed-Aktionen:" -#: index.php:230 -#: classes/handler/public.php:555 +#: index.php:232 +#: classes/handler/public.php:556 msgid "Subscribe to feed..." msgstr "Feed abonnieren..." -#: index.php:231 +#: index.php:233 msgid "Edit this feed..." msgstr "Feed bearbeiten..." -#: index.php:232 +#: index.php:234 msgid "Rescore feed" msgstr "Feed neu bewerten" -#: index.php:233 -#: classes/pref/feeds.php:716 -#: classes/pref/feeds.php:1303 +#: index.php:235 +#: classes/pref/feeds.php:717 +#: classes/pref/feeds.php:1304 #: js/PrefFeedTree.js:73 msgid "Unsubscribe" msgstr "Feed abbestellen" -#: index.php:234 +#: index.php:236 msgid "All feeds:" msgstr "Alle Feeds:" -#: index.php:236 +#: index.php:238 msgid "(Un)hide read feeds" msgstr "Gelesene zeigen/verstecken" -#: index.php:237 +#: index.php:239 msgid "Other actions:" msgstr "Andere Aktionen:" -#: index.php:239 +#: index.php:241 msgid "Switch to digest..." msgstr "Zur Zusammenfassung wechseln..." -#: index.php:241 +#: index.php:243 msgid "Show tag cloud..." msgstr "Tagwolke anzeigen..." -#: index.php:242 -#: include/functions.php:1950 +#: index.php:244 +#: include/functions.php:1901 msgid "Toggle widescreen mode" msgstr "Breitbild-Modus umschalten" -#: index.php:243 +#: index.php:245 msgid "Select by tags..." msgstr "Artikel nach Tag filtern.." -#: index.php:244 +#: index.php:246 msgid "Create label..." msgstr "Label erstellen..." -#: index.php:245 +#: index.php:247 msgid "Create filter..." msgstr "Filter erstellen..." -#: index.php:246 +#: index.php:248 msgid "Keyboard shortcuts help" msgstr "Tastaturkürzel..." -#: index.php:248 +#: index.php:257 #: plugins/digest/digest_body.php:77 #: plugins/mobile/mobile-functions.php:62 #: plugins/mobile/mobile-functions.php:237 @@ -485,41 +480,41 @@ msgid "Logout" msgstr "Abmelden" #: prefs.php:36 -#: prefs.php:122 -#: include/functions.php:1977 +#: prefs.php:121 +#: include/functions.php:1928 #: 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:1118 +#: include/functions.php:1754 #: 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 +540,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 +578,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:1127 +#: include/functions.php:1655 +#: include/functions.php:1740 +#: include/functions.php:1762 #: classes/opml.php:416 -#: classes/pref/feeds.php:221 +#: classes/pref/feeds.php:222 msgid "Uncategorized" msgstr "Unkategorisiert" @@ -603,335 +598,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:1116 +#: include/functions.php:1752 #: 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:1604 +#: classes/feeds.php:1101 +#: classes/pref/filters.php:427 msgid "All feeds" msgstr "Alle Feeds" -#: include/functions.php:1854 +#: include/functions.php:1805 msgid "Starred articles" msgstr "Markierte Artikel" -#: include/functions.php:1856 +#: include/functions.php:1807 msgid "Published articles" msgstr "Veröffentlichte Artikel" -#: include/functions.php:1858 +#: include/functions.php:1809 msgid "Fresh articles" msgstr "Neue Artikel" -#: include/functions.php:1862 +#: include/functions.php:1813 msgid "Archived articles" msgstr "Archivierte Artikel" -#: include/functions.php:1864 +#: include/functions.php:1815 msgid "Recently read" msgstr "Kürzlich gelesen" -#: include/functions.php:1927 +#: include/functions.php:1878 msgid "Navigation" msgstr "Navigation" -#: include/functions.php:1928 +#: include/functions.php:1879 msgid "Open next feed" msgstr "Nächsten Feed öffnen" -#: include/functions.php:1929 +#: include/functions.php:1880 msgid "Open previous feed" msgstr "Vorherigen Feed öffnen" -#: include/functions.php:1930 +#: include/functions.php:1881 msgid "Open next article" msgstr "Nächsten Artikel öffnen" -#: include/functions.php:1931 +#: include/functions.php:1882 msgid "Open previous article" msgstr "Vorherigen Artikel öffnen" -#: include/functions.php:1932 +#: include/functions.php:1883 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:1884 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:1885 msgid "Show search dialog" msgstr "Suchdialog anzeigen" -#: include/functions.php:1935 +#: include/functions.php:1886 msgid "Article" msgstr "Artikel" -#: include/functions.php:1936 +#: include/functions.php:1887 msgid "Toggle starred" msgstr "Markierung ein-/ausschalten" -#: include/functions.php:1937 -#: js/viewfeed.js:1920 +#: include/functions.php:1888 +#: js/viewfeed.js:1908 msgid "Toggle published" msgstr "Veröffentlichung ein-/ausschalten" -#: include/functions.php:1938 -#: js/viewfeed.js:1898 +#: include/functions.php:1889 +#: js/viewfeed.js:1886 msgid "Toggle unread" msgstr "Gelesen-Status umschalten" -#: include/functions.php:1939 +#: include/functions.php:1890 msgid "Edit tags" msgstr "Tags bearbeiten" -#: include/functions.php:1940 +#: include/functions.php:1891 #, fuzzy msgid "Dismiss selected" msgstr "Ausgewählte Artikel verbergen" -#: include/functions.php:1941 +#: include/functions.php:1892 #, fuzzy msgid "Dismiss read" msgstr "Gelesene Artikel verbergen" -#: include/functions.php:1942 +#: include/functions.php:1893 msgid "Open in new window" msgstr "In neuem Fenster öffnen" -#: include/functions.php:1943 -#: js/viewfeed.js:1939 +#: include/functions.php:1894 +#: 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:1895 +#: js/viewfeed.js:1921 msgid "Mark above as read" msgstr "Obige als gelesen markieren" -#: include/functions.php:1945 +#: include/functions.php:1896 msgid "Scroll down" msgstr "Nach unten scrollen" -#: include/functions.php:1946 +#: include/functions.php:1897 msgid "Scroll up" msgstr "Nach oben scrollen" -#: include/functions.php:1947 +#: include/functions.php:1898 #, fuzzy msgid "Select article under cursor" msgstr "Artikel unter Mauszeiger auswählen" -#: include/functions.php:1948 +#: include/functions.php:1899 msgid "Email article" msgstr "Artikel per E-Mail versenden" -#: include/functions.php:1949 +#: include/functions.php:1900 #, fuzzy msgid "Close/collapse article" msgstr "Artikel schließen" -#: include/functions.php:1951 +#: include/functions.php:1902 #: plugins/embed_original/init.php:33 #, fuzzy msgid "Toggle embed original" msgstr "\"Original einbetten\" umschalten" -#: include/functions.php:1952 +#: include/functions.php:1903 msgid "Article selection" msgstr "Artikelauswahl" -#: include/functions.php:1953 +#: include/functions.php:1904 msgid "Select all articles" msgstr "Alle Artikel auswählen" -#: include/functions.php:1954 +#: include/functions.php:1905 msgid "Select unread" msgstr "Ungelesene Artikel auswählen" -#: include/functions.php:1955 +#: include/functions.php:1906 msgid "Select starred" msgstr "Markierte Artikel auswählen" -#: include/functions.php:1956 +#: include/functions.php:1907 msgid "Select published" msgstr "Veröffentlichte Artikel auswählen" -#: include/functions.php:1957 +#: include/functions.php:1908 msgid "Invert selection" msgstr "Auswahl umkehren" -#: include/functions.php:1958 +#: include/functions.php:1909 msgid "Deselect everything" msgstr "Auswahl aufheben" -#: include/functions.php:1959 -#: classes/pref/feeds.php:520 -#: classes/pref/feeds.php:753 +#: include/functions.php:1910 +#: classes/pref/feeds.php:521 +#: classes/pref/feeds.php:754 msgid "Feed" msgstr "Feed" -#: include/functions.php:1960 +#: include/functions.php:1911 msgid "Refresh current feed" msgstr "Aktuellen Feed aktualisieren" -#: include/functions.php:1961 +#: include/functions.php:1912 msgid "Un/hide read feeds" msgstr "Gelesene Feeds zeigen/verstecken" -#: include/functions.php:1962 -#: classes/pref/feeds.php:1274 +#: include/functions.php:1913 +#: classes/pref/feeds.php:1275 msgid "Subscribe to feed" msgstr "Feed abonnieren" -#: include/functions.php:1963 +#: include/functions.php:1914 #: js/FeedTree.js:135 #: js/PrefFeedTree.js:67 msgid "Edit feed" msgstr "Feed bearbeiten" -#: include/functions.php:1965 +#: include/functions.php:1916 #, fuzzy msgid "Reverse headlines" msgstr "Schlagzeilensortierung umkehren" -#: include/functions.php:1966 +#: include/functions.php:1917 msgid "Debug feed update" msgstr "Aktualisierung im Diagnose-Modus durchführen" -#: include/functions.php:1967 +#: include/functions.php:1918 #: js/FeedTree.js:178 msgid "Mark all feeds as read" msgstr "Alle Feeds als gelesen markieren" -#: include/functions.php:1968 +#: include/functions.php:1919 msgid "Un/collapse current category" msgstr "Aktuelle Kategorie ein-/ausklappen:" -#: include/functions.php:1969 +#: include/functions.php:1920 msgid "Toggle combined mode" msgstr "Kombinierte Feed-Anzeige umschalten" -#: include/functions.php:1970 +#: include/functions.php:1921 #, fuzzy msgid "Toggle auto expand in combined mode" msgstr "Kombinierte Feed-Anzeige umschalten" -#: include/functions.php:1971 +#: include/functions.php:1922 msgid "Go to" msgstr "Gehe zu" -#: include/functions.php:1973 +#: include/functions.php:1924 msgid "Fresh" msgstr "Neu" -#: include/functions.php:1976 +#: include/functions.php:1927 +#: js/tt-rss.js:431 +#: js/tt-rss.js:584 msgid "Tag cloud" msgstr "Tagwolke" -#: include/functions.php:1978 +#: include/functions.php:1929 msgid "Other" msgstr "Sonstiges" -#: include/functions.php:1979 +#: include/functions.php:1930 #: classes/pref/labels.php:281 msgid "Create label" msgstr "Label erstellen" -#: include/functions.php:1980 -#: classes/pref/filters.php:606 +#: include/functions.php:1931 +#: classes/pref/filters.php:654 msgid "Create filter" msgstr "Filter erstellen" -#: include/functions.php:1981 +#: include/functions.php:1932 msgid "Un/collapse sidebar" msgstr "Seitenleiste ein-/ausklappen" -#: include/functions.php:1982 +#: include/functions.php:1933 msgid "Show help dialog" msgstr "Hilfe anzeigen" -#: include/functions.php:2467 +#: include/functions.php:2418 #, php-format msgid "Search results: %s" msgstr "Suchergebnisse: %s" -#: include/functions.php:2958 -#: js/viewfeed.js:2026 +#: include/functions.php:2909 +#: js/viewfeed.js:2014 msgid "Click to play" msgstr "Zum Abspielen klicken" -#: include/functions.php:2959 -#: js/viewfeed.js:2025 +#: include/functions.php:2910 +#: js/viewfeed.js:2013 msgid "Play" msgstr "Abspielen" -#: include/functions.php:3076 +#: include/functions.php:3027 msgid " - " msgstr " - " -#: include/functions.php:3098 -#: include/functions.php:3392 +#: include/functions.php:3049 +#: include/functions.php:3343 #: classes/rpc.php:408 msgid "no tags" msgstr "Keine Tags" -#: include/functions.php:3108 -#: classes/feeds.php:682 +#: include/functions.php:3059 +#: classes/feeds.php:686 msgid "Edit tags for this article" msgstr "Tags für diesen Artikel bearbeiten" -#: include/functions.php:3137 -#: classes/feeds.php:638 +#: include/functions.php:3088 +#: classes/feeds.php:642 msgid "Originally from:" msgstr "Original von:" -#: include/functions.php:3150 -#: classes/feeds.php:651 -#: classes/pref/feeds.php:539 +#: include/functions.php:3101 +#: classes/feeds.php:655 +#: 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:3132 +#: 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/users.php:99 +#: 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:3368 msgid "(edit note)" msgstr "(Notiz bearbeiten)" -#: include/functions.php:3650 +#: include/functions.php:3601 msgid "unknown type" msgstr "unbekannter Typ" -#: include/functions.php:3706 +#: include/functions.php:3657 msgid "Attachments" msgstr "Anhänge" @@ -975,7 +968,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 +1151,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 +1176,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 +1193,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 +1202,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 +1217,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:55 +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:176 +#: 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:1028 +#: classes/feeds.php:1080 +#: classes/feeds.php:1140 +#: classes/pref/users.php:178 +#: 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/pref/users.php:378 +#: classes/handler/public.php:764 +#: classes/pref/users.php:360 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 +1465,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:345 +#: 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:347 +#: 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 +1536,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" @@ -1753,59 +1554,155 @@ msgstr "Per E-Mail weiterleiten" msgid "Feed:" msgstr "Feed:" -#: classes/feeds.php:201 -#: classes/feeds.php:827 +#: classes/feeds.php:205 +#: classes/feeds.php:831 msgid "Feed not found." msgstr "Feed nicht gefunden." -#: classes/feeds.php:384 +#: classes/feeds.php:388 #, fuzzy, php-format msgid "Imported at %s" msgstr "Importieren" -#: classes/feeds.php:531 +#: classes/feeds.php:535 msgid "mark as read" msgstr "als gelesen markieren" -#: classes/feeds.php:582 +#: classes/feeds.php:586 msgid "Collapse article" msgstr "Artikel einklappen" -#: classes/feeds.php:728 +#: classes/feeds.php:732 msgid "No unread articles found to display." msgstr "Keine ungelesenen Artikel zum Anzeigen gefunden." -#: classes/feeds.php:731 +#: classes/feeds.php:735 msgid "No updated articles found to display." msgstr "Keine aktualisierten Artikel zum Anzeigen gefunden." -#: classes/feeds.php:734 +#: classes/feeds.php:738 msgid "No starred articles found to display." msgstr "Keine markierten Artikel zum Anzeigen gefunden." -#: classes/feeds.php:738 +#: classes/feeds.php:742 msgid "No articles found to display. You can assign articles to labels manually (see the Actions menu above) or use a filter." msgstr "Keine Artikel zum Anzeigen gefunden. Sie können Artikel zu Labeln manuell hinzufügen (siehe obiges Aktionsmenü) oder durch das Benutzen von Filtern." -#: classes/feeds.php:740 +#: classes/feeds.php:744 msgid "No articles found to display." msgstr "Keine Artikel zum Anzeigen gefunden." -#: classes/feeds.php:755 -#: classes/feeds.php:920 +#: classes/feeds.php:759 +#: classes/feeds.php:923 #, 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:769 +#: classes/feeds.php:933 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:913 msgid "No feed selected." msgstr "Keinen Feed ausgewählt." +#: classes/feeds.php:966 +#: classes/feeds.php:974 +msgid "Feed or site URL" +msgstr "URL von Feed oder Seite" + +#: classes/feeds.php:980 +#: 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:988 +msgid "Available feeds" +msgstr "Verfügbare Feeds" + +#: classes/feeds.php:1000 +#: classes/pref/users.php:139 +#: classes/pref/feeds.php:590 +#: classes/pref/feeds.php:818 +msgid "Authentication" +msgstr "Authentifizierung" + +#: classes/feeds.php:1004 +#: classes/pref/users.php:402 +#: classes/pref/feeds.php:596 +#: classes/pref/feeds.php:822 +#: classes/pref/feeds.php:1775 +msgid "Login" +msgstr "Benutzername" + +#: classes/feeds.php:1007 +#: 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:1017 +msgid "This feed requires authentication." +msgstr "Dieser Feed erfordert Authentifizierung." + +#: classes/feeds.php:1022 +#: classes/feeds.php:1078 +#: classes/pref/feeds.php:1796 +msgid "Subscribe" +msgstr "Abonnieren" + +#: classes/feeds.php:1025 +msgid "More feeds" +msgstr "Weitere Feeds" + +#: classes/feeds.php:1048 +#: classes/feeds.php:1139 +#: classes/pref/users.php:332 +#: classes/pref/filters.php:641 +#: classes/pref/feeds.php:1259 +#: js/tt-rss.js:170 +msgid "Search" +msgstr "Suchen" + +#: classes/feeds.php:1052 +msgid "Popular feeds" +msgstr "Beliebte Feeds" + +#: classes/feeds.php:1053 +msgid "Feed archive" +msgstr "Feed-Archiv" + +#: classes/feeds.php:1056 +msgid "limit:" +msgstr "Grenzwert:" + +#: classes/feeds.php:1079 +#: classes/pref/users.php:358 +#: 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:1090 +msgid "Look for" +msgstr "Suche nach" + +#: classes/feeds.php:1098 +msgid "Limit search to:" +msgstr "Suche begrenzen auf:" + +#: classes/feeds.php:1114 +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 +1775,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." @@ -1887,118 +1784,127 @@ msgstr "Fehler beim Parsen des Dokuments." msgid "Your access level is insufficient to open this tab." msgstr "Sie haben nicht die benötigten Rechte um diese Registerkarte zu öffnen." -#: classes/pref/users.php:27 -msgid "User details" -msgstr "Benutzerdetails" - -#: classes/pref/users.php:41 +#: classes/pref/users.php:34 msgid "User not found" msgstr "Benutzer nicht gefunden" -#: classes/pref/users.php:60 -#: classes/pref/users.php:422 +#: classes/pref/users.php:53 +#: classes/pref/users.php:404 msgid "Registered" msgstr "Registriert" -#: classes/pref/users.php:61 +#: classes/pref/users.php:54 msgid "Last logged in" msgstr "Zuletzt angemeldet" -#: classes/pref/users.php:68 +#: classes/pref/users.php:61 msgid "Subscribed feeds count" msgstr "Anzahl abonnierter Feeds" -#: classes/pref/users.php:72 +#: classes/pref/users.php:65 msgid "Subscribed feeds" msgstr "Abonnierte Feeds" -#: classes/pref/users.php:122 -msgid "User Editor" -msgstr "Benutzereditor" - -#: classes/pref/users.php:158 +#: classes/pref/users.php:142 msgid "Access level: " msgstr "Zugriffsberechtigung: " -#: classes/pref/users.php:171 +#: classes/pref/users.php:155 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/users.php:161 +#: classes/pref/feeds.php:610 +#: classes/pref/feeds.php:834 msgid "Options" msgstr "Optionen" -#: classes/pref/users.php:180 +#: classes/pref/users.php:164 msgid "E-mail: " msgstr "E-Mail: " -#: classes/pref/users.php:258 +#: classes/pref/users.php:240 #, php-format msgid "Added user <b>%s</b> with password <b>%s</b>" msgstr "Benutzer <b>%s</b> mit Passwort <b>%s</b> hinzugefügt" -#: classes/pref/users.php:265 +#: classes/pref/users.php:247 #, php-format msgid "Could not create user <b>%s</b>" msgstr "Konnte den Benutzer <b>%s</b> nicht anlegen" -#: classes/pref/users.php:269 +#: classes/pref/users.php:251 #, php-format msgid "User <b>%s</b> already exists." msgstr "Benutzer <b>%s</b> existiert bereits." -#: classes/pref/users.php:291 +#: classes/pref/users.php:273 #, php-format msgid "Changed password of user <b>%s</b> to <b>%s</b>" msgstr "Passwort für Benutzer <b>%s</b> auf <b>%s</b> geändert" -#: classes/pref/users.php:293 +#: classes/pref/users.php:275 #, php-format msgid "Sending new password of user <b>%s</b> to <b>%s</b>" msgstr "Sende das neue Passwort von Benutzer <b>%s</b> an <b>%s</b>" -#: classes/pref/users.php:317 +#: classes/pref/users.php:299 msgid "[tt-rss] Password change notification" msgstr "[tt-rss] Benachrichtigung: Passwort geändert" -#: classes/pref/users.php:368 +#: classes/pref/users.php:342 +#: 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:350 msgid "Create user" msgstr "Benutzer anlegen" -#: classes/pref/users.php:372 +#: classes/pref/users.php:354 msgid "Details" msgstr "Details" -#: classes/pref/users.php:374 -#: classes/pref/filters.php:612 +#: classes/pref/users.php:356 +#: classes/pref/filters.php:660 #: plugins/instances/init.php:296 msgid "Edit" msgstr "Bearbeiten" -#: classes/pref/users.php:421 +#: classes/pref/users.php:403 msgid "Access Level" msgstr "Zugriffsberechtigung" -#: classes/pref/users.php:423 +#: classes/pref/users.php:405 msgid "Last login" msgstr "Zuletzt angemeldet" -#: classes/pref/users.php:444 +#: classes/pref/users.php:426 #: plugins/instances/init.php:337 msgid "Click to edit" msgstr "Zum Bearbeiten klicken" -#: classes/pref/users.php:464 +#: classes/pref/users.php:446 msgid "No users defined." msgstr "Keine Benutzer definiert." -#: classes/pref/users.php:466 +#: classes/pref/users.php:448 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 +1929,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 +2257,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 +2768,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 +2793,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 +2845,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 +2908,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 +3084,7 @@ msgstr "Kategorie bearbeiten" msgid "Remove category" msgstr "Kategorie entfernen" -#: js/PrefFilterTree.js:32 +#: js/PrefFilterTree.js:48 msgid "Inverse" msgstr "Invertiert" @@ -3116,6 +3100,10 @@ msgstr "Kann den Benutzer nicht hinzufügen: kein Login angegeben." msgid "Adding user..." msgstr "Füge Benutzer hinzu..." +#: js/prefs.js:94 +msgid "User Editor" +msgstr "Benutzereditor" + #: js/prefs.js:117 msgid "Edit Filter" msgstr "Filter bearbeiten" @@ -3137,7 +3125,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." @@ -3220,6 +3208,10 @@ msgstr "Passwort des ausgewählten Benutzers zurücksetzen?" msgid "Resetting password for selected user..." msgstr "Passwort des ausgewählten Benutzers wird zurückgesetzt..." +#: js/prefs.js:585 +msgid "User details" +msgstr "Benutzerdetails" + #: js/prefs.js:602 msgid "Please select only one filter." msgstr "Bitte nur einen Filter auswählen." @@ -3240,144 +3232,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 +3390,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 +3446,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 +3649,24 @@ 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." +#, fuzzy +#~ msgid "Refresh" +#~ msgstr "Neu" + +#~ 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." diff --git a/locale/es_ES/LC_MESSAGES/messages.mo b/locale/es_ES/LC_MESSAGES/messages.mo Binary files differindex 53b5374e8..cb4de0399 100644 --- a/locale/es_ES/LC_MESSAGES/messages.mo +++ b/locale/es_ES/LC_MESSAGES/messages.mo diff --git a/locale/es_ES/LC_MESSAGES/messages.po b/locale/es_ES/LC_MESSAGES/messages.po index 1c9bb200f..30631ba8b 100644 --- a/locale/es_ES/LC_MESSAGES/messages.po +++ b/locale/es_ES/LC_MESSAGES/messages.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: messages\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-31 12:47+0400\n" +"POT-Creation-Date: 2013-04-01 19:15+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" @@ -89,7 +89,7 @@ msgid "Weekly" msgstr "Semanalmente" #: backend.php:101 -#: classes/pref/users.php:139 +#: classes/pref/users.php:123 msgid "User" msgstr "Usuario" @@ -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,38 @@ 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:273 +#: prefs.php:103 +#: test.php:11 #: 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 +302,13 @@ msgid "All Articles" msgstr "Todos" #: index.php:176 -#: include/functions.php:1974 +#: include/functions.php:1925 #: classes/feeds.php:106 msgid "Starred" msgstr "Favoritos" #: index.php:177 -#: include/functions.php:1975 +#: include/functions.php:1926 #: classes/feeds.php:107 msgid "Published" msgstr "Publicados" @@ -346,135 +348,128 @@ 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:237 +#: include/functions.php:1915 #: include/localized_schema.php:10 #: classes/feeds.php:111 -#: classes/feeds.php:136 -#: classes/feeds.php:437 +#: classes/feeds.php:441 #: js/FeedTree.js:128 #: js/FeedTree.js:156 #: plugins/digest/digest.js:647 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:1811 +#: include/functions.php:1923 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:214 msgid "Communication problem with server." msgstr "" -#: index.php:220 +#: index.php:222 msgid "New version of Tiny Tiny RSS is available!" msgstr "¡Nueva versión de Tiny Tiny RSS disponible!" -#: index.php:225 +#: index.php:227 msgid "Actions..." msgstr "Acciones..." -#: index.php:227 +#: index.php:229 #, fuzzy msgid "Preferences..." msgstr "Preferencias" -#: index.php:228 +#: index.php:230 msgid "Search..." msgstr "Buscar..." -#: index.php:229 +#: index.php:231 msgid "Feed actions:" msgstr "Acciones de la fuente:" -#: index.php:230 -#: classes/handler/public.php:555 +#: index.php:232 +#: classes/handler/public.php:556 msgid "Subscribe to feed..." msgstr "Suscribirse a una fuente..." -#: index.php:231 +#: index.php:233 msgid "Edit this feed..." msgstr "Editar esta fuente..." -#: index.php:232 +#: index.php:234 msgid "Rescore feed" msgstr "Reiniciar la puntuación" -#: index.php:233 -#: classes/pref/feeds.php:716 -#: classes/pref/feeds.php:1303 +#: index.php:235 +#: 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:236 msgid "All feeds:" msgstr "Todas las fuentes:" -#: index.php:236 +#: index.php:238 msgid "(Un)hide read feeds" msgstr "Ocultar/Mostrar fuentes leÃdas" -#: index.php:237 +#: index.php:239 msgid "Other actions:" msgstr "Otras acciones:" -#: index.php:239 +#: index.php:241 msgid "Switch to digest..." msgstr "Modo resumen..." -#: index.php:241 +#: index.php:243 msgid "Show tag cloud..." msgstr "Nube de etiquetas..." -#: index.php:242 -#: include/functions.php:1950 +#: index.php:244 +#: include/functions.php:1901 #, fuzzy msgid "Toggle widescreen mode" msgstr "Cambiar a modo de reordenación de categorÃas" -#: index.php:243 +#: index.php:245 msgid "Select by tags..." msgstr "Seleccionar por etiquetas..." -#: index.php:244 +#: index.php:246 msgid "Create label..." msgstr "Crear marcador..." -#: index.php:245 +#: index.php:247 msgid "Create filter..." msgstr "Crear filtro..." -#: index.php:246 +#: index.php:248 msgid "Keyboard shortcuts help" msgstr "Ayuda para atajos de teclado" -#: index.php:248 +#: index.php:257 #: plugins/digest/digest_body.php:77 #: plugins/mobile/mobile-functions.php:62 #: plugins/mobile/mobile-functions.php:237 @@ -482,41 +477,41 @@ msgid "Logout" msgstr "Cerrar sesión" #: prefs.php:36 -#: prefs.php:122 -#: include/functions.php:1977 +#: prefs.php:121 +#: include/functions.php:1928 #: 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:1118 +#: include/functions.php:1754 #: 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 +537,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 +576,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:1127 +#: include/functions.php:1655 +#: include/functions.php:1740 +#: include/functions.php:1762 #: classes/opml.php:416 -#: classes/pref/feeds.php:221 +#: classes/pref/feeds.php:222 msgid "Uncategorized" msgstr "Sin clasificar" @@ -601,357 +596,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:1116 +#: include/functions.php:1752 #: 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:1604 +#: classes/feeds.php:1101 +#: classes/pref/filters.php:427 msgid "All feeds" msgstr "Todas las fuentes" -#: include/functions.php:1854 +#: include/functions.php:1805 msgid "Starred articles" msgstr "Favoritos" -#: include/functions.php:1856 +#: include/functions.php:1807 msgid "Published articles" msgstr "Publicados" -#: include/functions.php:1858 +#: include/functions.php:1809 msgid "Fresh articles" msgstr "Recientes" -#: include/functions.php:1862 +#: include/functions.php:1813 msgid "Archived articles" msgstr "ArtÃculos archivados" -#: include/functions.php:1864 +#: include/functions.php:1815 msgid "Recently read" msgstr "LeÃdos recientemente" -#: include/functions.php:1927 +#: include/functions.php:1878 msgid "Navigation" msgstr "Navegación" -#: include/functions.php:1928 +#: include/functions.php:1879 #, fuzzy msgid "Open next feed" msgstr "Fuente generada" -#: include/functions.php:1929 +#: include/functions.php:1880 msgid "Open previous feed" msgstr "" -#: include/functions.php:1930 +#: include/functions.php:1881 #, fuzzy msgid "Open next article" msgstr "Abrir artÃculo original" -#: include/functions.php:1931 +#: include/functions.php:1882 #, fuzzy msgid "Open previous article" msgstr "Abrir artÃculo original" -#: include/functions.php:1932 +#: include/functions.php:1883 msgid "Open next article (don't scroll long articles)" msgstr "" -#: include/functions.php:1933 +#: include/functions.php:1884 msgid "Open previous article (don't scroll long articles)" msgstr "" -#: include/functions.php:1934 +#: include/functions.php:1885 msgid "Show search dialog" msgstr "Mostrar el diálogo de búsqueda" -#: include/functions.php:1935 +#: include/functions.php:1886 #, fuzzy msgid "Article" msgstr "Todos" -#: include/functions.php:1936 +#: include/functions.php:1887 msgid "Toggle starred" msgstr "Alternar favoritos" -#: include/functions.php:1937 -#: js/viewfeed.js:1920 +#: include/functions.php:1888 +#: js/viewfeed.js:1908 msgid "Toggle published" msgstr "Alternar publicados" -#: include/functions.php:1938 -#: js/viewfeed.js:1898 +#: include/functions.php:1889 +#: js/viewfeed.js:1886 msgid "Toggle unread" msgstr "Alternar no leÃdos" -#: include/functions.php:1939 +#: include/functions.php:1890 msgid "Edit tags" msgstr "Editar etiquetas" -#: include/functions.php:1940 +#: include/functions.php:1891 #, fuzzy msgid "Dismiss selected" msgstr "Descartar artÃculos seleccionados" -#: include/functions.php:1941 +#: include/functions.php:1892 #, fuzzy msgid "Dismiss read" msgstr "Publicar artÃculo" -#: include/functions.php:1942 +#: include/functions.php:1893 #, 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:1894 +#: 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:1895 +#: js/viewfeed.js:1921 msgid "Mark above as read" msgstr "Marcar artÃculos anteriores como leÃdos" -#: include/functions.php:1945 +#: include/functions.php:1896 #, fuzzy msgid "Scroll down" msgstr "Hecho." -#: include/functions.php:1946 +#: include/functions.php:1897 msgid "Scroll up" msgstr "" -#: include/functions.php:1947 +#: include/functions.php:1898 #, 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:1899 msgid "Email article" msgstr "Enviar artÃculo por correo" -#: include/functions.php:1949 +#: include/functions.php:1900 #, fuzzy msgid "Close/collapse article" msgstr "Cerrar artÃculo" -#: include/functions.php:1951 +#: include/functions.php:1902 #: 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:1903 #, fuzzy msgid "Article selection" msgstr "Invertir selección de artÃculos" -#: include/functions.php:1953 +#: include/functions.php:1904 msgid "Select all articles" msgstr "Seleccionar todos los artÃculos" -#: include/functions.php:1954 +#: include/functions.php:1905 #, fuzzy msgid "Select unread" msgstr "Seleccionar artÃculos sin leer" -#: include/functions.php:1955 +#: include/functions.php:1906 #, fuzzy msgid "Select starred" msgstr "Marcar como favorito" -#: include/functions.php:1956 +#: include/functions.php:1907 #, fuzzy msgid "Select published" msgstr "Seleccionar artÃculos publicados" -#: include/functions.php:1957 +#: include/functions.php:1908 #, fuzzy msgid "Invert selection" msgstr "Invertir selección de artÃculos" -#: include/functions.php:1958 +#: include/functions.php:1909 #, 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:1910 +#: classes/pref/feeds.php:521 +#: classes/pref/feeds.php:754 msgid "Feed" msgstr "Fuente" -#: include/functions.php:1960 +#: include/functions.php:1911 #, fuzzy msgid "Refresh current feed" msgstr "Actualizar la fuente activa" -#: include/functions.php:1961 +#: include/functions.php:1912 #, fuzzy msgid "Un/hide read feeds" msgstr "Ocultar/Mostrar fuentes leÃdas" -#: include/functions.php:1962 -#: classes/pref/feeds.php:1274 +#: include/functions.php:1913 +#: classes/pref/feeds.php:1275 msgid "Subscribe to feed" msgstr "Suscribirse a una fuente" -#: include/functions.php:1963 +#: include/functions.php:1914 #: js/FeedTree.js:135 #: js/PrefFeedTree.js:67 msgid "Edit feed" msgstr "Editar fuente" -#: include/functions.php:1965 +#: include/functions.php:1916 #, fuzzy msgid "Reverse headlines" msgstr "Invertir orden de titulares" -#: include/functions.php:1966 +#: include/functions.php:1917 #, fuzzy msgid "Debug feed update" msgstr "Se han actualizado todas las fuentes." -#: include/functions.php:1967 +#: include/functions.php:1918 #: 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:1919 #, fuzzy msgid "Un/collapse current category" msgstr "Plegar la categorÃa" -#: include/functions.php:1969 +#: include/functions.php:1920 #, fuzzy msgid "Toggle combined mode" msgstr "Cambiar a modo de reordenación de categorÃas" -#: include/functions.php:1970 +#: include/functions.php:1921 #, 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:1922 #, fuzzy msgid "Go to" msgstr "Ir a..." -#: include/functions.php:1973 +#: include/functions.php:1924 #, fuzzy msgid "Fresh" msgstr "Refrescar" -#: include/functions.php:1976 +#: include/functions.php:1927 +#: js/tt-rss.js:431 +#: js/tt-rss.js:584 msgid "Tag cloud" msgstr "Nube de etiquetas" -#: include/functions.php:1978 +#: include/functions.php:1929 #, fuzzy msgid "Other" msgstr "Otro:" -#: include/functions.php:1979 +#: include/functions.php:1930 #: classes/pref/labels.php:281 msgid "Create label" msgstr "Crear marcador" -#: include/functions.php:1980 -#: classes/pref/filters.php:606 +#: include/functions.php:1931 +#: classes/pref/filters.php:654 msgid "Create filter" msgstr "Crear filtro" -#: include/functions.php:1981 +#: include/functions.php:1932 #, fuzzy msgid "Un/collapse sidebar" msgstr "Colapsar la barra lateral" -#: include/functions.php:1982 +#: include/functions.php:1933 #, fuzzy msgid "Show help dialog" msgstr "Mostrar el diálogo de búsqueda" -#: include/functions.php:2467 +#: include/functions.php:2418 #, php-format msgid "Search results: %s" msgstr "Resultados de búsqueda: %s" -#: include/functions.php:2958 -#: js/viewfeed.js:2026 +#: include/functions.php:2909 +#: js/viewfeed.js:2014 msgid "Click to play" msgstr "Clic para reproducir" -#: include/functions.php:2959 -#: js/viewfeed.js:2025 +#: include/functions.php:2910 +#: js/viewfeed.js:2013 msgid "Play" msgstr "Reproducir" -#: include/functions.php:3076 +#: include/functions.php:3027 msgid " - " msgstr " - " -#: include/functions.php:3098 -#: include/functions.php:3392 +#: include/functions.php:3049 +#: include/functions.php:3343 #: classes/rpc.php:408 msgid "no tags" msgstr "sin etiquetas" -#: include/functions.php:3108 -#: classes/feeds.php:682 +#: include/functions.php:3059 +#: classes/feeds.php:686 msgid "Edit tags for this article" msgstr "Editar las etiquetas de este artÃculo" -#: include/functions.php:3137 -#: classes/feeds.php:638 +#: include/functions.php:3088 +#: classes/feeds.php:642 msgid "Originally from:" msgstr "Original de:" -#: include/functions.php:3150 -#: classes/feeds.php:651 -#: classes/pref/feeds.php:539 +#: include/functions.php:3101 +#: classes/feeds.php:655 +#: 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:3132 +#: 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/users.php:99 +#: 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:3368 msgid "(edit note)" msgstr "(editar nota)" -#: include/functions.php:3650 +#: include/functions.php:3601 msgid "unknown type" msgstr "tipo desconocido" -#: include/functions.php:3706 +#: include/functions.php:3657 msgid "Attachments" msgstr "Adjuntos" @@ -995,7 +988,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 +1172,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 +1198,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 +1216,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 +1225,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 +1240,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:55 +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:176 +#: 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:1028 +#: classes/feeds.php:1080 +#: classes/feeds.php:1140 +#: classes/pref/users.php:178 +#: 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/pref/users.php:378 +#: classes/handler/public.php:764 +#: classes/pref/users.php:360 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 +1497,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:345 +#: 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:347 +#: 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 +1570,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" @@ -1788,60 +1588,157 @@ msgstr "Enviar por correo electrónico" msgid "Feed:" msgstr "Fuente:" -#: classes/feeds.php:201 -#: classes/feeds.php:827 +#: classes/feeds.php:205 +#: classes/feeds.php:831 msgid "Feed not found." msgstr "Fuente no encontrada." -#: classes/feeds.php:384 +#: classes/feeds.php:388 #, fuzzy, php-format msgid "Imported at %s" msgstr "Importar" -#: classes/feeds.php:531 +#: classes/feeds.php:535 msgid "mark as read" msgstr "marcar como leÃdo" -#: classes/feeds.php:582 +#: classes/feeds.php:586 #, fuzzy msgid "Collapse article" msgstr "Cerrar artÃculo" -#: classes/feeds.php:728 +#: classes/feeds.php:732 msgid "No unread articles found to display." msgstr "No se han encontrado artÃculos sin leer." -#: classes/feeds.php:731 +#: classes/feeds.php:735 msgid "No updated articles found to display." msgstr "No se han encontrado artÃculos actualizados." -#: classes/feeds.php:734 +#: classes/feeds.php:738 msgid "No starred articles found to display." msgstr "No se han encontrado artÃculos favoritos." -#: classes/feeds.php:738 +#: classes/feeds.php:742 msgid "No articles found to display. You can assign articles to labels manually (see the Actions menu above) or use a filter." msgstr "No se han encontrado artÃculos que mostrar. Si lo desea, puede asignar artÃculos a los marcadores manualmente (ver arriba el menú Acciones) o usar un filtro." -#: classes/feeds.php:740 +#: classes/feeds.php:744 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:759 +#: classes/feeds.php:923 #, 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:769 +#: classes/feeds.php:933 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:913 msgid "No feed selected." msgstr "No se ha seleccionado ninguna fuente." +#: classes/feeds.php:966 +#: classes/feeds.php:974 +#, fuzzy +msgid "Feed or site URL" +msgstr "URL de la fuente" + +#: classes/feeds.php:980 +#: 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:988 +msgid "Available feeds" +msgstr "Fuentes disponibles" + +#: classes/feeds.php:1000 +#: classes/pref/users.php:139 +#: classes/pref/feeds.php:590 +#: classes/pref/feeds.php:818 +msgid "Authentication" +msgstr "Autenticación" + +#: classes/feeds.php:1004 +#: classes/pref/users.php:402 +#: classes/pref/feeds.php:596 +#: classes/pref/feeds.php:822 +#: classes/pref/feeds.php:1775 +msgid "Login" +msgstr "Iniciar sesión" + +#: classes/feeds.php:1007 +#: 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:1017 +msgid "This feed requires authentication." +msgstr "Esta fuente requiere autenticación." + +#: classes/feeds.php:1022 +#: classes/feeds.php:1078 +#: classes/pref/feeds.php:1796 +msgid "Subscribe" +msgstr "Suscribir" + +#: classes/feeds.php:1025 +msgid "More feeds" +msgstr "Más fuentes" + +#: classes/feeds.php:1048 +#: classes/feeds.php:1139 +#: classes/pref/users.php:332 +#: classes/pref/filters.php:641 +#: classes/pref/feeds.php:1259 +#: js/tt-rss.js:170 +msgid "Search" +msgstr "Buscar" + +#: classes/feeds.php:1052 +msgid "Popular feeds" +msgstr "Fuentes populares" + +#: classes/feeds.php:1053 +msgid "Feed archive" +msgstr "Archivo de fuentes" + +#: classes/feeds.php:1056 +msgid "limit:" +msgstr "lÃmite:" + +#: classes/feeds.php:1079 +#: classes/pref/users.php:358 +#: 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:1090 +msgid "Look for" +msgstr "Buscar" + +#: classes/feeds.php:1098 +msgid "Limit search to:" +msgstr "Limitar la búsqueda a:" + +#: classes/feeds.php:1114 +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 +1811,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." @@ -1923,118 +1820,127 @@ msgstr "Error mientras se analizaba el documento." msgid "Your access level is insufficient to open this tab." msgstr "Su nivel de acceso es insuficiente para abrir esta pestaña." -#: classes/pref/users.php:27 -msgid "User details" -msgstr "Detalles del usuario" - -#: classes/pref/users.php:41 +#: classes/pref/users.php:34 msgid "User not found" msgstr "Usuario no encontrado" -#: classes/pref/users.php:60 -#: classes/pref/users.php:422 +#: classes/pref/users.php:53 +#: classes/pref/users.php:404 msgid "Registered" msgstr "Registrado" -#: classes/pref/users.php:61 +#: classes/pref/users.php:54 msgid "Last logged in" msgstr "Última sesión el" -#: classes/pref/users.php:68 +#: classes/pref/users.php:61 msgid "Subscribed feeds count" msgstr "Contador de fuentes suscritas" -#: classes/pref/users.php:72 +#: classes/pref/users.php:65 msgid "Subscribed feeds" msgstr "Fuentes suscritas" -#: classes/pref/users.php:122 -msgid "User Editor" -msgstr "Editor de usuario" - -#: classes/pref/users.php:158 +#: classes/pref/users.php:142 msgid "Access level: " msgstr "Nivel de acceso:" -#: classes/pref/users.php:171 +#: classes/pref/users.php:155 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/users.php:161 +#: classes/pref/feeds.php:610 +#: classes/pref/feeds.php:834 msgid "Options" msgstr "Opciones" -#: classes/pref/users.php:180 +#: classes/pref/users.php:164 msgid "E-mail: " msgstr "Correo electrónico:" -#: classes/pref/users.php:258 +#: classes/pref/users.php:240 #, php-format msgid "Added user <b>%s</b> with password <b>%s</b>" msgstr "Se ha añadido al usuario <strong>%s</strong> con la contraseña <strong>%s</strong>" -#: classes/pref/users.php:265 +#: classes/pref/users.php:247 #, php-format msgid "Could not create user <b>%s</b>" msgstr "No se puede crear el usuario <strong>%s</strong>" -#: classes/pref/users.php:269 +#: classes/pref/users.php:251 #, php-format msgid "User <b>%s</b> already exists." msgstr "El usuario <strong>%s</strong> ya existe." -#: classes/pref/users.php:291 +#: classes/pref/users.php:273 #, fuzzy, php-format msgid "Changed password of user <b>%s</b> to <b>%s</b>" msgstr "Se ha cambiado la contraseña del usuario <strong>%s</strong> a <strong>%s</strong>" -#: classes/pref/users.php:293 +#: classes/pref/users.php:275 #, fuzzy, php-format msgid "Sending new password of user <b>%s</b> to <b>%s</b>" msgstr "Se ha cambiado la contraseña del usuario <strong>%s</strong> a <strong>%s</strong>" -#: classes/pref/users.php:317 +#: classes/pref/users.php:299 msgid "[tt-rss] Password change notification" msgstr "[tt-rss] Notificación de cambio de contraseña" -#: classes/pref/users.php:368 +#: classes/pref/users.php:342 +#: 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:350 msgid "Create user" msgstr "Crear usuario" -#: classes/pref/users.php:372 +#: classes/pref/users.php:354 msgid "Details" msgstr "Detalles" -#: classes/pref/users.php:374 -#: classes/pref/filters.php:612 +#: classes/pref/users.php:356 +#: classes/pref/filters.php:660 #: plugins/instances/init.php:296 msgid "Edit" msgstr "Editar" -#: classes/pref/users.php:421 +#: classes/pref/users.php:403 msgid "Access Level" msgstr "Nivel de acceso" -#: classes/pref/users.php:423 +#: classes/pref/users.php:405 msgid "Last login" msgstr "Última sesión" -#: classes/pref/users.php:444 +#: classes/pref/users.php:426 #: plugins/instances/init.php:337 msgid "Click to edit" msgstr "Pulse aquà para editar" -#: classes/pref/users.php:464 +#: classes/pref/users.php:446 msgid "No users defined." msgstr "No se han definido usuarios." -#: classes/pref/users.php:466 +#: classes/pref/users.php:448 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 +1969,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 +2318,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 +2869,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 +2894,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 +2948,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 +3017,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 +3199,7 @@ msgstr "Editar categorÃa" msgid "Remove category" msgstr "Borrar categorÃa" -#: js/PrefFilterTree.js:32 +#: js/PrefFilterTree.js:48 msgid "Inverse" msgstr "Inverso" @@ -3231,6 +3215,10 @@ msgstr "No se puede crear el usuario: no se ha especificado el nombre de usuario msgid "Adding user..." msgstr "Añadiendo usuario..." +#: js/prefs.js:94 +msgid "User Editor" +msgstr "Editor de usuario" + #: js/prefs.js:117 msgid "Edit Filter" msgstr "Editar filtro" @@ -3252,7 +3240,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." @@ -3336,6 +3324,10 @@ msgstr "¿Restaurar la contraseña del usuario seleccionado?" msgid "Resetting password for selected user..." msgstr "Reajustando la contraseña del usuario seleccionado..." +#: js/prefs.js:585 +msgid "User details" +msgstr "Detalles del usuario" + #: js/prefs.js:602 msgid "Please select only one filter." msgstr "Por favor, seleccione un solo filtro." @@ -3357,153 +3349,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 +3517,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 +3574,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 +3792,25 @@ 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 "Refresh" +#~ msgstr "Refrescar" + +#, 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 Binary files differnew file mode 100644 index 000000000..6b11e1384 --- /dev/null +++ b/locale/fi_FI/LC_MESSAGES/messages.mo diff --git a/locale/fi_FI/LC_MESSAGES/messages.po b/locale/fi_FI/LC_MESSAGES/messages.po new file mode 100644 index 000000000..f332a9529 --- /dev/null +++ b/locale/fi_FI/LC_MESSAGES/messages.po @@ -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 19:15+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:123 +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. <a href='db-updater.php'>Please update</a>." +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:273 +#: prefs.php:103 +#: test.php:11 +#: 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:1925 +#: classes/feeds.php:106 +msgid "Starred" +msgstr "Tähti" + +#: index.php:177 +#: include/functions.php:1926 +#: 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:237 +#: include/functions.php:1915 +#: include/localized_schema.php:10 +#: classes/feeds.php:111 +#: classes/feeds.php:441 +#: 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:1811 +#: include/functions.php:1923 +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:214 +msgid "Communication problem with server." +msgstr "Serveriin ei saada yhteyttä" + +#: index.php:222 +msgid "New version of Tiny Tiny RSS is available!" +msgstr "Uusi versio Tiny Tiny RSS:stä saatavilla!" + +#: index.php:227 +msgid "Actions..." +msgstr "Toiminnot..." + +#: index.php:229 +msgid "Preferences..." +msgstr "Asetukset" + +#: index.php:230 +msgid "Search..." +msgstr "Etsi..." + +#: index.php:231 +msgid "Feed actions:" +msgstr "Syötetoiminnot:" + +#: index.php:232 +#: classes/handler/public.php:556 +msgid "Subscribe to feed..." +msgstr "Tilaa syöte..." + +#: index.php:233 +msgid "Edit this feed..." +msgstr "Muokkaa tätä syötettä" + +#: index.php:234 +msgid "Rescore feed" +msgstr "Uudelleenpisteytä syöte" + +#: index.php:235 +#: classes/pref/feeds.php:717 +#: classes/pref/feeds.php:1304 +#: js/PrefFeedTree.js:73 +msgid "Unsubscribe" +msgstr "Peruuta syötetilaus" + +#: index.php:236 +msgid "All feeds:" +msgstr "Kaikki syötteet" + +#: index.php:238 +msgid "(Un)hide read feeds" +msgstr "Piilota/näytä luetut syötteet" + +#: index.php:239 +msgid "Other actions:" +msgstr "Muut toiminnot" + +#: index.php:241 +msgid "Switch to digest..." +msgstr "Vaihda tiivistelmään..." + +#: index.php:243 +msgid "Show tag cloud..." +msgstr "Näytä tagipilvi" + +#: index.php:244 +#: include/functions.php:1901 +msgid "Toggle widescreen mode" +msgstr "Vaihda näkymä" + +#: index.php:245 +msgid "Select by tags..." +msgstr "Valitse tageilla" + +#: index.php:246 +msgid "Create label..." +msgstr "Luo tunniste..." + +#: index.php:247 +msgid "Create filter..." +msgstr "Luo suodatin..." + +#: index.php:248 +msgid "Keyboard shortcuts help" +msgstr "Näytä pikanäppäimet" + +#: index.php:257 +#: 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:1928 +#: 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:1118 +#: include/functions.php:1754 +#: 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:1127 +#: include/functions.php:1655 +#: include/functions.php:1740 +#: include/functions.php:1762 +#: 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:1116 +#: include/functions.php:1752 +#: plugins/mobile/mobile-functions.php:171 +msgid "Special" +msgstr "Erikoiset" + +#: include/functions.php:1604 +#: classes/feeds.php:1101 +#: classes/pref/filters.php:427 +msgid "All feeds" +msgstr "Kaikki syötteet" + +#: include/functions.php:1805 +msgid "Starred articles" +msgstr "Tähdellä merkityt syötteet" + +#: include/functions.php:1807 +msgid "Published articles" +msgstr "Julkiset artikkelit" + +#: include/functions.php:1809 +msgid "Fresh articles" +msgstr "Tuoreet artikkelit" + +#: include/functions.php:1813 +msgid "Archived articles" +msgstr "Arkistoidut artikkelit" + +#: include/functions.php:1815 +msgid "Recently read" +msgstr "Viimeksi luetut" + +#: include/functions.php:1878 +msgid "Navigation" +msgstr "Valikko" + +#: include/functions.php:1879 +msgid "Open next feed" +msgstr "Avaa seuraava syöte" + +#: include/functions.php:1880 +msgid "Open previous feed" +msgstr "Avaa edellinen syöte" + +#: include/functions.php:1881 +msgid "Open next article" +msgstr "Avaa seuraava artikkeli" + +#: include/functions.php:1882 +msgid "Open previous article" +msgstr "Avaa edellinen artikkeli" + +#: include/functions.php:1883 +msgid "Open next article (don't scroll long articles)" +msgstr "Avaa seuraava artikkeli (älä vieritä pitkiä artikkeleita)" + +#: include/functions.php:1884 +msgid "Open previous article (don't scroll long articles)" +msgstr "Avaa edellinen artikkeli (älä vieritä pitkiä artikkeleita)" + +#: include/functions.php:1885 +msgid "Show search dialog" +msgstr "Etsi..." + +#: include/functions.php:1886 +msgid "Article" +msgstr "Artikkeli" + +#: include/functions.php:1887 +msgid "Toggle starred" +msgstr "Lisää/Poista tähti" + +#: include/functions.php:1888 +#: js/viewfeed.js:1908 +msgid "Toggle published" +msgstr "Vaihda julkinen-tilaa" + +#: include/functions.php:1889 +#: js/viewfeed.js:1886 +msgid "Toggle unread" +msgstr "Vaihda luettu/lukematon" + +#: include/functions.php:1890 +msgid "Edit tags" +msgstr "Muokkaa tageja" + +#: include/functions.php:1891 +msgid "Dismiss selected" +msgstr "Piilota valittu" + +#: include/functions.php:1892 +msgid "Dismiss read" +msgstr "Piilota luettu" + +#: include/functions.php:1893 +msgid "Open in new window" +msgstr "Avaa uudessa ikkunassa" + +#: include/functions.php:1894 +#: js/viewfeed.js:1927 +msgid "Mark below as read" +msgstr "Merkitse alla olevat luetuiksi" + +#: include/functions.php:1895 +#: js/viewfeed.js:1921 +msgid "Mark above as read" +msgstr "Merkitse yllä olevat luetuiksi" + +#: include/functions.php:1896 +msgid "Scroll down" +msgstr "Vieritä alas" + +#: include/functions.php:1897 +msgid "Scroll up" +msgstr "Vieritä ylös" + +#: include/functions.php:1898 +msgid "Select article under cursor" +msgstr "Valitse kursorin alla oleva artikkeli" + +#: include/functions.php:1899 +msgid "Email article" +msgstr "Lähetä artikkeli sähköpostilla" + +#: include/functions.php:1900 +msgid "Close/collapse article" +msgstr "Piilota/näytä artikkeli" + +#: include/functions.php:1902 +#: plugins/embed_original/init.php:33 +msgid "Toggle embed original" +msgstr "Vaihda alkuperäinen liitetty" + +#: include/functions.php:1903 +msgid "Article selection" +msgstr "Artikkelin valinta" + +#: include/functions.php:1904 +msgid "Select all articles" +msgstr "Valitse kaikki artikkelit" + +#: include/functions.php:1905 +msgid "Select unread" +msgstr "Valitse lukematon" + +#: include/functions.php:1906 +msgid "Select starred" +msgstr "Valitse tähdellä merkityt" + +#: include/functions.php:1907 +msgid "Select published" +msgstr "Valitse julkaistu" + +#: include/functions.php:1908 +msgid "Invert selection" +msgstr "Vaihda valittujen tila" + +#: include/functions.php:1909 +msgid "Deselect everything" +msgstr "Poista valinnat" + +#: include/functions.php:1910 +#: classes/pref/feeds.php:521 +#: classes/pref/feeds.php:754 +msgid "Feed" +msgstr "Syöte" + +#: include/functions.php:1911 +msgid "Refresh current feed" +msgstr "Päivitä tämänhetkinen syöte" + +#: include/functions.php:1912 +msgid "Un/hide read feeds" +msgstr "Piilota/näytä luetut syötteet" + +#: include/functions.php:1913 +#: classes/pref/feeds.php:1275 +msgid "Subscribe to feed" +msgstr "Tilaa syöte" + +#: include/functions.php:1914 +#: js/FeedTree.js:135 +#: js/PrefFeedTree.js:67 +msgid "Edit feed" +msgstr "Muokkaa syötettä" + +#: include/functions.php:1916 +msgid "Reverse headlines" +msgstr "Käännä otsikot" + +#: include/functions.php:1917 +msgid "Debug feed update" +msgstr "Syötteen päivitys (Debug)" + +#: include/functions.php:1918 +#: js/FeedTree.js:178 +msgid "Mark all feeds as read" +msgstr "Merkitse kaikki syötteet luetuiksi" + +#: include/functions.php:1919 +msgid "Un/collapse current category" +msgstr "Piilota/näytä tämänhetkinen kansio" + +#: include/functions.php:1920 +msgid "Toggle combined mode" +msgstr "Vaihda yhdistety tila" + +#: include/functions.php:1921 +msgid "Toggle auto expand in combined mode" +msgstr "Vaihda automaattilaajennus tiivistemuodossa" + +#: include/functions.php:1922 +msgid "Go to" +msgstr "Mene" + +#: include/functions.php:1924 +msgid "Fresh" +msgstr "Päivitä" + +#: include/functions.php:1927 +#: js/tt-rss.js:431 +#: js/tt-rss.js:584 +msgid "Tag cloud" +msgstr "Tagipilvi" + +#: include/functions.php:1929 +msgid "Other" +msgstr "Muu" + +#: include/functions.php:1930 +#: classes/pref/labels.php:281 +msgid "Create label" +msgstr "Luo tunniste" + +#: include/functions.php:1931 +#: classes/pref/filters.php:654 +msgid "Create filter" +msgstr "Luo suodatin" + +#: include/functions.php:1932 +msgid "Un/collapse sidebar" +msgstr "Piilota/näytä sivupalkki" + +#: include/functions.php:1933 +msgid "Show help dialog" +msgstr "Näytä ohjeikkuna" + +#: include/functions.php:2418 +#, php-format +msgid "Search results: %s" +msgstr "Hakutulokset: %s" + +#: include/functions.php:2909 +#: js/viewfeed.js:2014 +msgid "Click to play" +msgstr "" + +#: include/functions.php:2910 +#: js/viewfeed.js:2013 +msgid "Play" +msgstr "" + +#: include/functions.php:3027 +msgid " - " +msgstr " - " + +#: include/functions.php:3049 +#: include/functions.php:3343 +#: classes/rpc.php:408 +msgid "no tags" +msgstr "ei tageja" + +#: include/functions.php:3059 +#: classes/feeds.php:686 +msgid "Edit tags for this article" +msgstr "Muokkaa tämän artikkelin tageja" + +#: include/functions.php:3088 +#: classes/feeds.php:642 +msgid "Originally from:" +msgstr "" + +#: include/functions.php:3101 +#: classes/feeds.php:655 +#: classes/pref/feeds.php:540 +msgid "Feed URL" +msgstr "Syötteen URL" + +#: include/functions.php:3132 +#: 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:99 +#: 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:3368 +msgid "(edit note)" +msgstr "" + +#: include/functions.php:3601 +msgid "unknown type" +msgstr "tuntematon tyyppi" + +#: include/functions.php:3657 +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:55 +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:176 +#: 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:1028 +#: classes/feeds.php:1080 +#: classes/feeds.php:1140 +#: classes/pref/users.php:178 +#: 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:360 +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:345 +#: 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:347 +#: 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:205 +#: classes/feeds.php:831 +msgid "Feed not found." +msgstr "Syötettä ei löydy" + +#: classes/feeds.php:388 +#, php-format +msgid "Imported at %s" +msgstr "Tuotu %s" + +#: classes/feeds.php:535 +msgid "mark as read" +msgstr "merkitse luetuksi" + +#: classes/feeds.php:586 +msgid "Collapse article" +msgstr "Sulje artikkeli" + +#: classes/feeds.php:732 +msgid "No unread articles found to display." +msgstr "Lukemattomia artikkeleita ei ole näytettäväksi" + +#: classes/feeds.php:735 +msgid "No updated articles found to display." +msgstr "Päivitettyjä artikkeleita ei ole näytettäväksi" + +#: classes/feeds.php:738 +msgid "No starred articles found to display." +msgstr "Tähdellä merkittyjä artikkeleita ei ole näytettäväksi" + +#: classes/feeds.php:742 +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:744 +msgid "No articles found to display." +msgstr "Ei näytettäviä artikkeleita." + +#: classes/feeds.php:759 +#: classes/feeds.php:923 +#, php-format +msgid "Feeds last updated at %s" +msgstr "Syötteet päivitetty viimeksi %s" + +#: classes/feeds.php:769 +#: classes/feeds.php:933 +msgid "Some feeds have update errors (click for details)" +msgstr "Joissakin syötteissä oli virheitä (klikkaa nähdäksesi lisätietoja)" + +#: classes/feeds.php:913 +msgid "No feed selected." +msgstr "Yhtään syötettä ei ole valittuna" + +#: classes/feeds.php:966 +#: classes/feeds.php:974 +msgid "Feed or site URL" +msgstr "Syötteen/sivuston URL" + +#: classes/feeds.php:980 +#: 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:988 +msgid "Available feeds" +msgstr "Saatavilla olevat syötteet" + +#: classes/feeds.php:1000 +#: classes/pref/users.php:139 +#: classes/pref/feeds.php:590 +#: classes/pref/feeds.php:818 +msgid "Authentication" +msgstr "Tunnistautuminen" + +#: classes/feeds.php:1004 +#: classes/pref/users.php:402 +#: 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:1007 +#: 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:1017 +msgid "This feed requires authentication." +msgstr "Tämä syöte vaatii kirjautumisen" + +#: classes/feeds.php:1022 +#: classes/feeds.php:1078 +#: classes/pref/feeds.php:1796 +msgid "Subscribe" +msgstr "Tilaa" + +#: classes/feeds.php:1025 +msgid "More feeds" +msgstr "Lisää syötteitä" + +#: classes/feeds.php:1048 +#: classes/feeds.php:1139 +#: classes/pref/users.php:332 +#: classes/pref/filters.php:641 +#: classes/pref/feeds.php:1259 +#: js/tt-rss.js:170 +msgid "Search" +msgstr "Etsi" + +#: classes/feeds.php:1052 +msgid "Popular feeds" +msgstr "Suositut syötteet" + +#: classes/feeds.php:1053 +msgid "Feed archive" +msgstr "Syötearkisto" + +#: classes/feeds.php:1056 +msgid "limit:" +msgstr "raja:" + +#: classes/feeds.php:1079 +#: classes/pref/users.php:358 +#: 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:1090 +msgid "Look for" +msgstr "Etsi" + +#: classes/feeds.php:1098 +msgid "Limit search to:" +msgstr "Rajaa haku" + +#: classes/feeds.php:1114 +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:34 +msgid "User not found" +msgstr "Käyttäjätunnusta ei löydy" + +#: classes/pref/users.php:53 +#: classes/pref/users.php:404 +msgid "Registered" +msgstr "Rekisteröity" + +#: classes/pref/users.php:54 +msgid "Last logged in" +msgstr "Viimeksi kirjautunut" + +#: classes/pref/users.php:61 +msgid "Subscribed feeds count" +msgstr "Tilattujen syötteiden määrä" + +#: classes/pref/users.php:65 +msgid "Subscribed feeds" +msgstr "Tilatut syötteet" + +#: classes/pref/users.php:142 +msgid "Access level: " +msgstr "Käyttäjäoikeudet:" + +#: classes/pref/users.php:155 +msgid "Change password to" +msgstr "Uusi salasana" + +#: classes/pref/users.php:161 +#: classes/pref/feeds.php:610 +#: classes/pref/feeds.php:834 +msgid "Options" +msgstr "Valinnat" + +#: classes/pref/users.php:164 +msgid "E-mail: " +msgstr "Email" + +#: classes/pref/users.php:240 +#, php-format +msgid "Added user <b>%s</b> with password <b>%s</b>" +msgstr "" + +#: classes/pref/users.php:247 +#, php-format +msgid "Could not create user <b>%s</b>" +msgstr "Käyttääjää ei voitu luoda <b>%s</b>" + +#: classes/pref/users.php:251 +#, php-format +msgid "User <b>%s</b> already exists." +msgstr "Käyttäjätunnus <b>%s</b> on olemassa." + +#: classes/pref/users.php:273 +#, php-format +msgid "Changed password of user <b>%s</b> to <b>%s</b>" +msgstr "" + +#: classes/pref/users.php:275 +#, php-format +msgid "Sending new password of user <b>%s</b> to <b>%s</b>" +msgstr "" + +#: classes/pref/users.php:299 +msgid "[tt-rss] Password change notification" +msgstr "" + +#: classes/pref/users.php:342 +#: 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:350 +msgid "Create user" +msgstr "Luo käyttäjätunnus" + +#: classes/pref/users.php:354 +msgid "Details" +msgstr "Tarkemmat tiedot" + +#: classes/pref/users.php:356 +#: classes/pref/filters.php:660 +#: plugins/instances/init.php:296 +msgid "Edit" +msgstr "Muokkaa" + +#: classes/pref/users.php:403 +msgid "Access Level" +msgstr "Käyttäjäoikeudet" + +#: classes/pref/users.php:405 +msgid "Last login" +msgstr "Viimeisin kirjautuminen" + +#: classes/pref/users.php:426 +#: plugins/instances/init.php:337 +msgid "Click to edit" +msgstr "Klikkaa muokataksesi" + +#: classes/pref/users.php:446 +msgid "No users defined." +msgstr "Ei käyttjätunnuksia" + +#: classes/pref/users.php:448 +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:94 +msgid "User Editor" +msgstr "Käyttäjätunnusten muokkaus" + +#: 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:585 +msgid "User details" +msgstr "Käyttäjätiedot" + +#: 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 "Refresh" +#~ msgstr "Päivitä" + +#~ msgid "Tag Cloud" +#~ msgstr "Tagipilvi" + +#~ msgid "Mark all visible articles in %s as read?" +#~ msgstr "Merkitse kaikki näkyvät artikkelit kansiossa %s luetuksi?" diff --git a/locale/fr_FR/LC_MESSAGES/messages.mo b/locale/fr_FR/LC_MESSAGES/messages.mo Binary files differindex 8f9350956..64bcb48fa 100644 --- a/locale/fr_FR/LC_MESSAGES/messages.mo +++ b/locale/fr_FR/LC_MESSAGES/messages.mo diff --git a/locale/fr_FR/LC_MESSAGES/messages.po b/locale/fr_FR/LC_MESSAGES/messages.po index 577664a99..6389c6def 100644 --- a/locale/fr_FR/LC_MESSAGES/messages.po +++ b/locale/fr_FR/LC_MESSAGES/messages.po @@ -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 19:15+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:123 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. <a href='db-updater.php'>Please " -"update</a>." -msgstr "" -"Version non valable pour le schéma de la base de données. <a href='db-" -"updater.php'>Veuillez le mettre à jour</a>." +msgid "Incorrect database schema version. <a href='db-updater.php'>Please update</a>." +msgstr "Version non valable pour le schéma de la base de données. <a href='db-updater.php'>Veuillez le mettre à jour</a>." #: errors.php:21 msgid "Request not authorized." @@ -242,48 +231,61 @@ 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:273 +#: prefs.php:103 +#: test.php:11 +#: 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 +305,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:1925 +#: 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:1926 +#: 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 +329,7 @@ msgstr "Non lus en premier" #: index.php:180 msgid "With Note" -msgstr "" +msgstr "Avec annotation" #: index.php:181 msgid "Ignore Scoring" @@ -343,173 +351,183 @@ 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:237 +#: include/functions.php:1915 +#: include/localized_schema.php:10 +#: classes/feeds.php:111 +#: classes/feeds.php:441 +#: 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:1811 +#: include/functions.php:1923 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:214 msgid "Communication problem with server." msgstr "Un problème de communication avec le serveur est survenu." -#: index.php:220 +#: index.php:222 msgid "New version of Tiny Tiny RSS is available!" msgstr "Une nouvelle version de Tiny Tiny RSS est disponible !" -#: index.php:225 +#: index.php:227 msgid "Actions..." msgstr "Actions..." -#: index.php:227 +#: index.php:229 msgid "Preferences..." msgstr "Configuration..." -#: index.php:228 +#: index.php:230 msgid "Search..." msgstr "Rechercher..." -#: index.php:229 +#: index.php:231 msgid "Feed actions:" msgstr "Actions sur ce flux :" -#: index.php:230 classes/handler/public.php:555 +#: index.php:232 +#: classes/handler/public.php:556 msgid "Subscribe to feed..." msgstr "S'abonner au flux..." -#: index.php:231 +#: index.php:233 msgid "Edit this feed..." msgstr "Modifier ce flux..." -#: index.php:232 +#: index.php:234 msgid "Rescore feed" msgstr "Recalculer le score du flux" -#: index.php:233 classes/pref/feeds.php:716 classes/pref/feeds.php:1303 +#: index.php:235 +#: 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:236 msgid "All feeds:" msgstr "Tous les flux :" -#: index.php:236 +#: index.php:238 msgid "(Un)hide read feeds" msgstr "Masquer/afficher les flux lus" -#: index.php:237 +#: index.php:239 msgid "Other actions:" msgstr "Autres actions :" -#: index.php:239 +#: index.php:241 msgid "Switch to digest..." msgstr "Basculer en mode résumé..." -#: index.php:241 +#: index.php:243 msgid "Show tag cloud..." msgstr "Afficher le nuage de tags..." -#: index.php:242 include/functions.php:1950 +#: index.php:244 +#: include/functions.php:1901 msgid "Toggle widescreen mode" msgstr "Basculer le mode écran large" -#: index.php:243 +#: index.php:245 msgid "Select by tags..." msgstr "Sélectionner par tags..." -#: index.php:244 +#: index.php:246 msgid "Create label..." msgstr "Créer une étiquette..." -#: index.php:245 +#: index.php:247 msgid "Create filter..." msgstr "Créer un filtre..." -#: index.php:246 +#: index.php:248 msgid "Keyboard shortcuts help" msgstr "Aide sur les raccourcis clavier" -#: index.php:248 plugins/digest/digest_body.php:77 +#: index.php:257 +#: 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:1928 #: 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:1118 +#: include/functions.php:1754 +#: 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 +537,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 +575,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:1127 +#: include/functions.php:1655 +#: include/functions.php:1740 +#: include/functions.php:1762 +#: classes/opml.php:416 +#: classes/pref/feeds.php:222 msgid "Uncategorized" msgstr "Sans catégorie" @@ -572,293 +596,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:1116 +#: include/functions.php:1752 #: 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:1604 +#: classes/feeds.php:1101 +#: classes/pref/filters.php:427 msgid "All feeds" msgstr "Tous les flux" -#: include/functions.php:1854 +#: include/functions.php:1805 msgid "Starred articles" msgstr "Articles remarquables" -#: include/functions.php:1856 +#: include/functions.php:1807 msgid "Published articles" msgstr "Articles publiés" -#: include/functions.php:1858 +#: include/functions.php:1809 msgid "Fresh articles" msgstr "Nouveaux articles" -#: include/functions.php:1862 +#: include/functions.php:1813 msgid "Archived articles" msgstr "Articles archivés" -#: include/functions.php:1864 +#: include/functions.php:1815 msgid "Recently read" msgstr "Lus récemment" -#: include/functions.php:1927 +#: include/functions.php:1878 msgid "Navigation" msgstr "Navigation" -#: include/functions.php:1928 +#: include/functions.php:1879 msgid "Open next feed" msgstr "Ouvrir le flux suivant" -#: include/functions.php:1929 +#: include/functions.php:1880 msgid "Open previous feed" msgstr "Ouvrir le flux précédent" -#: include/functions.php:1930 +#: include/functions.php:1881 msgid "Open next article" msgstr "Ouvrir l'article suivant" -#: include/functions.php:1931 +#: include/functions.php:1882 msgid "Open previous article" msgstr "Ouvrir l'article précédent" -#: include/functions.php:1932 +#: include/functions.php:1883 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:1884 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:1885 msgid "Show search dialog" msgstr "Afficher la fenêtre de recherche" -#: include/functions.php:1935 +#: include/functions.php:1886 msgid "Article" msgstr "Article" -#: include/functions.php:1936 +#: include/functions.php:1887 msgid "Toggle starred" msgstr "Marquer comme (non) remarquable" -#: include/functions.php:1937 js/viewfeed.js:1920 +#: include/functions.php:1888 +#: js/viewfeed.js:1908 msgid "Toggle published" msgstr "Marquer comme (non) publié" -#: include/functions.php:1938 js/viewfeed.js:1898 +#: include/functions.php:1889 +#: js/viewfeed.js:1886 msgid "Toggle unread" msgstr "Marquer comme (non) lu" -#: include/functions.php:1939 +#: include/functions.php:1890 msgid "Edit tags" msgstr "Modifier les tags" -#: include/functions.php:1940 +#: include/functions.php:1891 msgid "Dismiss selected" msgstr "Ecarter la sélection" -#: include/functions.php:1941 +#: include/functions.php:1892 msgid "Dismiss read" msgstr "Ecarter les articles lus" -#: include/functions.php:1942 +#: include/functions.php:1893 msgid "Open in new window" msgstr "Ouvrir dans une nouvelle fenêtre" -#: include/functions.php:1943 js/viewfeed.js:1939 +#: include/functions.php:1894 +#: 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:1895 +#: js/viewfeed.js:1921 msgid "Mark above as read" msgstr "Marquer les articles au-dessus comme lus" -#: include/functions.php:1945 +#: include/functions.php:1896 msgid "Scroll down" msgstr "Défiler vers le bas" -#: include/functions.php:1946 +#: include/functions.php:1897 msgid "Scroll up" msgstr "Défiler vers le haut" -#: include/functions.php:1947 +#: include/functions.php:1898 msgid "Select article under cursor" msgstr "Sélectionner l'article sous le curseur" -#: include/functions.php:1948 +#: include/functions.php:1899 msgid "Email article" msgstr "Envoyer l'article par mail" -#: include/functions.php:1949 +#: include/functions.php:1900 msgid "Close/collapse article" msgstr "Contracter l'article" -#: include/functions.php:1951 plugins/embed_original/init.php:33 +#: include/functions.php:1902 +#: 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:1903 msgid "Article selection" msgstr "Sélection d'article" -#: include/functions.php:1953 +#: include/functions.php:1904 msgid "Select all articles" msgstr "Sélectionner tous les articles" -#: include/functions.php:1954 +#: include/functions.php:1905 msgid "Select unread" msgstr "Sélectionner les articles non-lus" -#: include/functions.php:1955 +#: include/functions.php:1906 msgid "Select starred" msgstr "Sélectionner les articles remarquables" -#: include/functions.php:1956 +#: include/functions.php:1907 msgid "Select published" msgstr "Sélectionner les articles publiés" -#: include/functions.php:1957 +#: include/functions.php:1908 msgid "Invert selection" msgstr "Inverser la sélection" -#: include/functions.php:1958 +#: include/functions.php:1909 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:1910 +#: classes/pref/feeds.php:521 +#: classes/pref/feeds.php:754 msgid "Feed" msgstr "Flux" -#: include/functions.php:1960 +#: include/functions.php:1911 msgid "Refresh current feed" msgstr "Actualiser le flux actif" -#: include/functions.php:1961 +#: include/functions.php:1912 msgid "Un/hide read feeds" msgstr "Masquer/afficher les flux lus" -#: include/functions.php:1962 classes/pref/feeds.php:1274 +#: include/functions.php:1913 +#: 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:1914 +#: js/FeedTree.js:135 +#: js/PrefFeedTree.js:67 msgid "Edit feed" msgstr "Modifier le flux" -#: include/functions.php:1965 +#: include/functions.php:1916 msgid "Reverse headlines" msgstr "Inverser l'ordre des en-têtes" -#: include/functions.php:1966 +#: include/functions.php:1917 msgid "Debug feed update" msgstr "Déboguer les mises à jour" -#: include/functions.php:1967 js/FeedTree.js:178 +#: include/functions.php:1918 +#: js/FeedTree.js:178 msgid "Mark all feeds as read" msgstr "Marquer tous les flux comme lus" -#: include/functions.php:1968 +#: include/functions.php:1919 msgid "Un/collapse current category" msgstr "Étendre/contracter la catégorie" -#: include/functions.php:1969 +#: include/functions.php:1920 msgid "Toggle combined mode" msgstr "Basculer le mode combiné" -#: include/functions.php:1970 +#: include/functions.php:1921 msgid "Toggle auto expand in combined mode" msgstr "Basculer le développement automatique en mode combiné" -#: include/functions.php:1971 +#: include/functions.php:1922 msgid "Go to" msgstr "Aller à " -#: include/functions.php:1973 +#: include/functions.php:1924 msgid "Fresh" msgstr "Nouveaux" -#: include/functions.php:1976 +#: include/functions.php:1927 +#: js/tt-rss.js:431 +#: js/tt-rss.js:584 msgid "Tag cloud" msgstr "Nuage de tags" -#: include/functions.php:1978 +#: include/functions.php:1929 msgid "Other" msgstr "Autre" -#: include/functions.php:1979 classes/pref/labels.php:281 +#: include/functions.php:1930 +#: 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:1931 +#: classes/pref/filters.php:654 msgid "Create filter" msgstr "Créer un filtre" -#: include/functions.php:1981 +#: include/functions.php:1932 msgid "Un/collapse sidebar" msgstr "Ouvrir/fermer la barre latérale" -#: include/functions.php:1982 +#: include/functions.php:1933 msgid "Show help dialog" msgstr "Afficher la fenêtre d'aide" -#: include/functions.php:2467 +#: include/functions.php:2418 #, php-format msgid "Search results: %s" msgstr "Résultats de recherche: %s" -#: include/functions.php:2958 js/viewfeed.js:2026 +#: include/functions.php:2909 +#: 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:2910 +#: js/viewfeed.js:2013 msgid "Play" msgstr "Lecture" -#: include/functions.php:3076 +#: include/functions.php:3027 msgid " - " msgstr " - " -#: include/functions.php:3098 include/functions.php:3392 classes/rpc.php:408 +#: include/functions.php:3049 +#: include/functions.php:3343 +#: classes/rpc.php:408 msgid "no tags" msgstr "aucun tag" -#: include/functions.php:3108 classes/feeds.php:682 +#: include/functions.php:3059 +#: classes/feeds.php:686 msgid "Edit tags for this article" msgstr "Modifier les tags pour cet article" -#: include/functions.php:3137 classes/feeds.php:638 +#: include/functions.php:3088 +#: classes/feeds.php:642 msgid "Originally from:" msgstr "Origine :" -#: include/functions.php:3150 classes/feeds.php:651 classes/pref/feeds.php:539 +#: include/functions.php:3101 +#: classes/feeds.php:655 +#: 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:3132 +#: 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:99 +#: 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:3368 msgid "(edit note)" msgstr "(modifier l'annotation)" -#: include/functions.php:3650 +#: include/functions.php:3601 msgid "unknown type" msgstr "type inconnu" -#: include/functions.php:3706 +#: include/functions.php:3657 msgid "Attachments" msgstr "Fichier attaché" @@ -890,8 +947,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 +958,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 +980,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 +1017,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 +1033,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 +1079,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 +1140,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 +1165,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 +1182,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 +1191,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 +1206,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:55 +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:176 +#: 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:1028 +#: classes/feeds.php:1080 +#: classes/feeds.php:1140 +#: classes/pref/users.php:178 +#: 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:360 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: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: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: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: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: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: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: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: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: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 +1454,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:345 +#: 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:347 +#: 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 +1524,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,67 +1543,158 @@ msgstr "Transférer par email" msgid "Feed:" msgstr "Flux :" -#: classes/feeds.php:201 classes/feeds.php:827 +#: classes/feeds.php:205 +#: classes/feeds.php:831 msgid "Feed not found." msgstr "Flux non trouvé." -#: classes/feeds.php:384 +#: classes/feeds.php:388 #, php-format msgid "Imported at %s" msgstr "Importé à %s" -#: classes/feeds.php:531 +#: classes/feeds.php:535 msgid "mark as read" msgstr "marquer comme lu" -#: classes/feeds.php:582 +#: classes/feeds.php:586 msgid "Collapse article" msgstr "Fermer l'article" -#: classes/feeds.php:728 +#: classes/feeds.php:732 msgid "No unread articles found to display." msgstr "Aucun article non lu à afficher." -#: classes/feeds.php:731 +#: classes/feeds.php:735 msgid "No updated articles found to display." msgstr "Aucun article mis à jour à afficher." -#: classes/feeds.php:734 +#: classes/feeds.php:738 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." +#: classes/feeds.php:742 +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 +#: classes/feeds.php:744 msgid "No articles found to display." msgstr "Aucun article à afficher." -#: classes/feeds.php:755 classes/feeds.php:920 +#: classes/feeds.php:759 +#: classes/feeds.php:923 #, php-format msgid "Feeds last updated at %s" msgstr "Flux mis à jour à %s" -#: classes/feeds.php:765 classes/feeds.php:930 +#: classes/feeds.php:769 +#: classes/feeds.php:933 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:913 msgid "No feed selected." msgstr "Aucun flux sélectionné." +#: classes/feeds.php:966 +#: classes/feeds.php:974 +msgid "Feed or site URL" +msgstr "URL du flux" + +#: classes/feeds.php:980 +#: 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:988 +msgid "Available feeds" +msgstr "Flux disponibles" + +#: classes/feeds.php:1000 +#: classes/pref/users.php:139 +#: classes/pref/feeds.php:590 +#: classes/pref/feeds.php:818 +msgid "Authentication" +msgstr "Identification" + +#: classes/feeds.php:1004 +#: classes/pref/users.php:402 +#: classes/pref/feeds.php:596 +#: classes/pref/feeds.php:822 +#: classes/pref/feeds.php:1775 +msgid "Login" +msgstr "Se connecter" + +#: classes/feeds.php:1007 +#: 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:1017 +msgid "This feed requires authentication." +msgstr "Ce flux nécessite une identification." + +#: classes/feeds.php:1022 +#: classes/feeds.php:1078 +#: classes/pref/feeds.php:1796 +msgid "Subscribe" +msgstr "S'abonner" + +#: classes/feeds.php:1025 +msgid "More feeds" +msgstr "D'autres flux" + +#: classes/feeds.php:1048 +#: classes/feeds.php:1139 +#: classes/pref/users.php:332 +#: classes/pref/filters.php:641 +#: classes/pref/feeds.php:1259 +#: js/tt-rss.js:170 +msgid "Search" +msgstr "Rechercher" + +#: classes/feeds.php:1052 +msgid "Popular feeds" +msgstr "Flux populaires" + +#: classes/feeds.php:1053 +msgid "Feed archive" +msgstr "Archive du flux" + +#: classes/feeds.php:1056 +msgid "limit:" +msgstr "limite :" + +#: classes/feeds.php:1079 +#: classes/pref/users.php:358 +#: 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:1090 +msgid "Look for" +msgstr "Rechercher" + +#: classes/feeds.php:1098 +msgid "Limit search to:" +msgstr "Restreindre la recherche à :" + +#: classes/feeds.php:1114 +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 +1712,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,122 +1763,137 @@ 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." -#: classes/pref/users.php:27 -msgid "User details" -msgstr "Détails de l'utilisateur" - -#: classes/pref/users.php:41 +#: classes/pref/users.php:34 msgid "User not found" msgstr "Utilisateur non trouvé" -#: classes/pref/users.php:60 classes/pref/users.php:422 +#: classes/pref/users.php:53 +#: classes/pref/users.php:404 msgid "Registered" msgstr "Inscrit" -#: classes/pref/users.php:61 +#: classes/pref/users.php:54 msgid "Last logged in" msgstr "Dernière connexion" -#: classes/pref/users.php:68 +#: classes/pref/users.php:61 msgid "Subscribed feeds count" msgstr "Nombre d'abonnements à des flux" -#: classes/pref/users.php:72 +#: classes/pref/users.php:65 msgid "Subscribed feeds" msgstr "Flux abonnés" -#: classes/pref/users.php:122 -msgid "User Editor" -msgstr "Éditeur d'utilisateur" - -#: classes/pref/users.php:158 +#: classes/pref/users.php:142 msgid "Access level: " msgstr "Permissions : " -#: classes/pref/users.php:171 +#: classes/pref/users.php:155 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:161 +#: classes/pref/feeds.php:610 +#: classes/pref/feeds.php:834 msgid "Options" msgstr "Options" -#: classes/pref/users.php:180 +#: classes/pref/users.php:164 msgid "E-mail: " msgstr "Adresse email : " -#: classes/pref/users.php:258 +#: classes/pref/users.php:240 #, php-format msgid "Added user <b>%s</b> with password <b>%s</b>" msgstr "Utilisateur <b>%s</b> ajouté avec le mot de passe <b>%s</b>" -#: classes/pref/users.php:265 +#: classes/pref/users.php:247 #, php-format msgid "Could not create user <b>%s</b>" msgstr "Impossible de créer l'utilisateur <b>%s</b>" -#: classes/pref/users.php:269 +#: classes/pref/users.php:251 #, php-format msgid "User <b>%s</b> already exists." msgstr "L'utilisateur <b>%s</b> existe déjà ." -#: classes/pref/users.php:291 +#: classes/pref/users.php:273 #, php-format msgid "Changed password of user <b>%s</b> to <b>%s</b>" msgstr "Mot de passe de l'utilisateur <b>%s</b> changé en <b>%s</b>" -#: classes/pref/users.php:293 +#: classes/pref/users.php:275 #, php-format msgid "Sending new password of user <b>%s</b> to <b>%s</b>" msgstr "Envoi du mot de passe de <b>%s</b> à <b>%s</b>" -#: classes/pref/users.php:317 +#: classes/pref/users.php:299 msgid "[tt-rss] Password change notification" msgstr "[tt-rss] Notification de changement de mot passe" -#: classes/pref/users.php:368 +#: classes/pref/users.php:342 +#: 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:350 msgid "Create user" msgstr "Créer l'utilisateur" -#: classes/pref/users.php:372 +#: classes/pref/users.php:354 msgid "Details" msgstr "Détails" -#: classes/pref/users.php:374 classes/pref/filters.php:612 +#: classes/pref/users.php:356 +#: classes/pref/filters.php:660 #: plugins/instances/init.php:296 msgid "Edit" msgstr "Modifier" -#: classes/pref/users.php:421 +#: classes/pref/users.php:403 msgid "Access Level" msgstr "Permissions" -#: classes/pref/users.php:423 +#: classes/pref/users.php:405 msgid "Last login" msgstr "Dernière connexion" -#: classes/pref/users.php:444 plugins/instances/init.php:337 +#: classes/pref/users.php:426 +#: plugins/instances/init.php:337 msgid "Click to edit" msgstr "Cliquer pour modifier" -#: classes/pref/users.php:464 +#: classes/pref/users.php:446 msgid "No users defined." msgstr "Aucun utilisateur défini." -#: classes/pref/users.php:466 +#: classes/pref/users.php:448 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 +1918,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 +2099,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 +2122,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 +2135,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 +2144,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 +2183,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 +2238,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 +2517,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 +2528,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 +2551,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 +2568,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 +2602,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 +2623,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 +2635,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 +2660,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 +2714,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 +2733,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 +2754,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 +2779,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 +2831,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 +2843,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 +2854,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 +2865,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 +2884,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 +3067,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,13 +3077,16 @@ 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..." msgstr "Ajout de l'utilisateur..." +#: js/prefs.js:94 +msgid "User Editor" +msgstr "Éditeur d'utilisateur" + #: js/prefs.js:117 msgid "Edit Filter" msgstr "Modifier le filtre" @@ -3065,23 +3107,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 +3135,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 +3155,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 +3163,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 +3177,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." @@ -3148,6 +3191,10 @@ msgstr "Ré-initialiser le mot de passe de l'utilisateur sélectionné ?" msgid "Resetting password for selected user..." msgstr "Ré-initialisation du mot de passe de l'utilisateur sélectionné..." +#: js/prefs.js:585 +msgid "User details" +msgstr "Détails de l'utilisateur" + #: js/prefs.js:602 msgid "Please select only one filter." msgstr "Veuillez sélectionner un seul filtre." @@ -3168,152 +3215,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 +3372,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 +3405,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 +3560,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 +3572,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 +3613,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 +3627,28 @@ 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 "Refresh" +#~ msgstr "Actualiser" + +#~ 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" diff --git a/locale/hu_HU/LC_MESSAGES/messages.mo b/locale/hu_HU/LC_MESSAGES/messages.mo Binary files differindex b2b5e060d..1af7e126c 100644 --- a/locale/hu_HU/LC_MESSAGES/messages.mo +++ b/locale/hu_HU/LC_MESSAGES/messages.mo diff --git a/locale/hu_HU/LC_MESSAGES/messages.po b/locale/hu_HU/LC_MESSAGES/messages.po index 167519368..f8a52cf53 100644 --- a/locale/hu_HU/LC_MESSAGES/messages.po +++ b/locale/hu_HU/LC_MESSAGES/messages.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-31 12:47+0400\n" +"POT-Creation-Date: 2013-04-01 19:15+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" @@ -90,7 +90,7 @@ msgid "Weekly" msgstr "Heti" #: backend.php:101 -#: classes/pref/users.php:139 +#: classes/pref/users.php:123 msgid "User" msgstr "Felhasználó" @@ -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,38 @@ 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:273 +#: prefs.php:103 +#: test.php:11 #: 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 +305,13 @@ msgid "All Articles" msgstr "Minden hÃr" #: index.php:176 -#: include/functions.php:1974 +#: include/functions.php:1925 #: classes/feeds.php:106 msgid "Starred" msgstr "Csillagozott" #: index.php:177 -#: include/functions.php:1975 +#: include/functions.php:1926 #: classes/feeds.php:107 msgid "Published" msgstr "Publikált" @@ -349,133 +351,126 @@ 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:237 +#: include/functions.php:1915 #: include/localized_schema.php:10 #: classes/feeds.php:111 -#: classes/feeds.php:136 -#: classes/feeds.php:437 +#: classes/feeds.php:441 #: js/FeedTree.js:128 #: js/FeedTree.js:156 #: plugins/digest/digest.js:647 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:1811 +#: include/functions.php:1923 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:214 msgid "Communication problem with server." msgstr "Kommunikációs probléma a szerverrel" -#: index.php:220 +#: index.php:222 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:227 msgid "Actions..." msgstr "Műveletek" -#: index.php:227 +#: index.php:229 msgid "Preferences..." msgstr "BeállÃtások..." -#: index.php:228 +#: index.php:230 msgid "Search..." msgstr "Keresés..." -#: index.php:229 +#: index.php:231 msgid "Feed actions:" msgstr "Műveletek hÃrcsatornákkal:" -#: index.php:230 -#: classes/handler/public.php:555 +#: index.php:232 +#: classes/handler/public.php:556 msgid "Subscribe to feed..." msgstr "Feliratkozás hÃrcsatornára..." -#: index.php:231 +#: index.php:233 msgid "Edit this feed..." msgstr "HÃrcsatorna szerkesztése..." -#: index.php:232 +#: index.php:234 msgid "Rescore feed" msgstr "HÃrcsatorna újrapontozása" -#: index.php:233 -#: classes/pref/feeds.php:716 -#: classes/pref/feeds.php:1303 +#: index.php:235 +#: classes/pref/feeds.php:717 +#: classes/pref/feeds.php:1304 #: js/PrefFeedTree.js:73 msgid "Unsubscribe" msgstr "Leiratkozás" -#: index.php:234 +#: index.php:236 msgid "All feeds:" msgstr "Az összes hÃrcsatorna:" -#: index.php:236 +#: index.php:238 msgid "(Un)hide read feeds" msgstr "Olvasottak rejtése/mutatása" -#: index.php:237 +#: index.php:239 msgid "Other actions:" msgstr "Egyéb műveletek:" -#: index.php:239 +#: index.php:241 msgid "Switch to digest..." msgstr "Váltás áttekintÅ‘ módba..." -#: index.php:241 +#: index.php:243 msgid "Show tag cloud..." msgstr "CÃmkefelhÅ‘ megjelenÃtése..." -#: index.php:242 -#: include/functions.php:1950 +#: index.php:244 +#: include/functions.php:1901 msgid "Toggle widescreen mode" msgstr "Szélesvásznú mód váltása" -#: index.php:243 +#: index.php:245 msgid "Select by tags..." msgstr "Kijelölés cÃmkék alapján" -#: index.php:244 +#: index.php:246 msgid "Create label..." msgstr "Új cÃmke létrehozása..." -#: index.php:245 +#: index.php:247 msgid "Create filter..." msgstr "SzűrÅ‘ létrehozása..." -#: index.php:246 +#: index.php:248 msgid "Keyboard shortcuts help" msgstr "Billentyűparancsok súgója" -#: index.php:248 +#: index.php:257 #: plugins/digest/digest_body.php:77 #: plugins/mobile/mobile-functions.php:62 #: plugins/mobile/mobile-functions.php:237 @@ -483,41 +478,41 @@ msgid "Logout" msgstr "Kijelentkezés" #: prefs.php:36 -#: prefs.php:122 -#: include/functions.php:1977 +#: prefs.php:121 +#: include/functions.php:1928 #: 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:1118 +#: include/functions.php:1754 #: 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 +538,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 +576,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:1127 +#: include/functions.php:1655 +#: include/functions.php:1740 +#: include/functions.php:1762 #: classes/opml.php:416 -#: classes/pref/feeds.php:221 +#: classes/pref/feeds.php:222 msgid "Uncategorized" msgstr "Kategorizálatlan" @@ -601,331 +596,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:1116 +#: include/functions.php:1752 #: 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:1604 +#: classes/feeds.php:1101 +#: classes/pref/filters.php:427 msgid "All feeds" msgstr "Összes hÃrcsatorna" -#: include/functions.php:1854 +#: include/functions.php:1805 msgid "Starred articles" msgstr "Csillagozott hÃrek" -#: include/functions.php:1856 +#: include/functions.php:1807 msgid "Published articles" msgstr "Publikált hÃrek" -#: include/functions.php:1858 +#: include/functions.php:1809 msgid "Fresh articles" msgstr "Friss hÃrek" -#: include/functions.php:1862 +#: include/functions.php:1813 msgid "Archived articles" msgstr "Archivált hÃrek" -#: include/functions.php:1864 +#: include/functions.php:1815 msgid "Recently read" msgstr "Legutóbb olvasott" -#: include/functions.php:1927 +#: include/functions.php:1878 msgid "Navigation" msgstr "Navigáció" -#: include/functions.php:1928 +#: include/functions.php:1879 msgid "Open next feed" msgstr "KövetkezÅ‘ hÃrcsatorna megnyitása" -#: include/functions.php:1929 +#: include/functions.php:1880 msgid "Open previous feed" msgstr "ElÅ‘zÅ‘ hÃrcsatorna megnyitása" -#: include/functions.php:1930 +#: include/functions.php:1881 msgid "Open next article" msgstr "KövetkezÅ‘ hÃr megnyitása" -#: include/functions.php:1931 +#: include/functions.php:1882 msgid "Open previous article" msgstr "ElÅ‘zÅ‘ hÃr megjelenÃtése" -#: include/functions.php:1932 +#: include/functions.php:1883 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:1884 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:1885 msgid "Show search dialog" msgstr "KeresÅ‘mezÅ‘ megjelenÃtése" -#: include/functions.php:1935 +#: include/functions.php:1886 msgid "Article" msgstr "HÃr" -#: include/functions.php:1936 +#: include/functions.php:1887 msgid "Toggle starred" msgstr "Csillagoz" -#: include/functions.php:1937 -#: js/viewfeed.js:1920 +#: include/functions.php:1888 +#: js/viewfeed.js:1908 msgid "Toggle published" msgstr "Publikált" -#: include/functions.php:1938 -#: js/viewfeed.js:1898 +#: include/functions.php:1889 +#: js/viewfeed.js:1886 msgid "Toggle unread" msgstr "Olvasatlannak jelöl" -#: include/functions.php:1939 +#: include/functions.php:1890 msgid "Edit tags" msgstr "CÃmkék szerkesztése" -#: include/functions.php:1940 +#: include/functions.php:1891 #, 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:1892 #, fuzzy msgid "Dismiss read" msgstr "Látható olvasott hÃrek elrejtése" -#: include/functions.php:1942 +#: include/functions.php:1893 msgid "Open in new window" msgstr "Megnyitás új ablakban" -#: include/functions.php:1943 -#: js/viewfeed.js:1939 +#: include/functions.php:1894 +#: 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:1895 +#: js/viewfeed.js:1921 msgid "Mark above as read" msgstr "Olvasottnak jel ez fölött" -#: include/functions.php:1945 +#: include/functions.php:1896 msgid "Scroll down" msgstr "LegördÃtés" -#: include/functions.php:1946 +#: include/functions.php:1897 msgid "Scroll up" msgstr "FelgördÃtés" -#: include/functions.php:1947 +#: include/functions.php:1898 msgid "Select article under cursor" msgstr "Az kurzor alatti hÃr kiválasztása" -#: include/functions.php:1948 +#: include/functions.php:1899 msgid "Email article" msgstr "HÃr küldése emailben" -#: include/functions.php:1949 +#: include/functions.php:1900 msgid "Close/collapse article" msgstr "HÃr bezárása" -#: include/functions.php:1951 +#: include/functions.php:1902 #: 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:1903 msgid "Article selection" msgstr "HÃr kijelölés" -#: include/functions.php:1953 +#: include/functions.php:1904 msgid "Select all articles" msgstr "Minden hÃr kijelölése" -#: include/functions.php:1954 +#: include/functions.php:1905 msgid "Select unread" msgstr "Olvasatlan hÃrek kijelölése" -#: include/functions.php:1955 +#: include/functions.php:1906 msgid "Select starred" msgstr "Csillagozott hÃrek kijelölése" -#: include/functions.php:1956 +#: include/functions.php:1907 msgid "Select published" msgstr "Publikált hÃrek kijlölése" -#: include/functions.php:1957 +#: include/functions.php:1908 msgid "Invert selection" msgstr "FordÃtott kijelölés" -#: include/functions.php:1958 +#: include/functions.php:1909 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:1910 +#: classes/pref/feeds.php:521 +#: classes/pref/feeds.php:754 msgid "Feed" msgstr "HÃrcsatorna" -#: include/functions.php:1960 +#: include/functions.php:1911 msgid "Refresh current feed" msgstr "Aktuális hÃrcsatorna frissÃtése" -#: include/functions.php:1961 +#: include/functions.php:1912 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:1913 +#: classes/pref/feeds.php:1275 msgid "Subscribe to feed" msgstr "Feliratkozás hÃrcsatornára" -#: include/functions.php:1963 +#: include/functions.php:1914 #: js/FeedTree.js:135 #: js/PrefFeedTree.js:67 msgid "Edit feed" msgstr "HÃrcsatorna szerkesztése" -#: include/functions.php:1965 +#: include/functions.php:1916 msgid "Reverse headlines" msgstr "CÃmek fordÃtott sorrendben" -#: include/functions.php:1966 +#: include/functions.php:1917 msgid "Debug feed update" msgstr "HÃrcsatorna frissÃtés hibakaresés" -#: include/functions.php:1967 +#: include/functions.php:1918 #: 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:1919 msgid "Un/collapse current category" msgstr "Kategória kinyitás/összecsukás" -#: include/functions.php:1969 +#: include/functions.php:1920 msgid "Toggle combined mode" msgstr "Váltás kombinált módba" -#: include/functions.php:1970 +#: include/functions.php:1921 #, fuzzy msgid "Toggle auto expand in combined mode" msgstr "Váltás kombinált módba" -#: include/functions.php:1971 +#: include/functions.php:1922 msgid "Go to" msgstr "Ugrás ide" -#: include/functions.php:1973 +#: include/functions.php:1924 msgid "Fresh" msgstr "Friss" -#: include/functions.php:1976 +#: include/functions.php:1927 +#: js/tt-rss.js:431 +#: js/tt-rss.js:584 msgid "Tag cloud" msgstr "CÃmkefelhÅ‘" -#: include/functions.php:1978 +#: include/functions.php:1929 msgid "Other" msgstr "Egyéb" -#: include/functions.php:1979 +#: include/functions.php:1930 #: 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:1931 +#: classes/pref/filters.php:654 msgid "Create filter" msgstr "SzűrÅ‘ létrehozása" -#: include/functions.php:1981 +#: include/functions.php:1932 msgid "Un/collapse sidebar" msgstr "Oldalsáv megjelenÃtés/elrejtés" -#: include/functions.php:1982 +#: include/functions.php:1933 msgid "Show help dialog" msgstr "Súgó ablak megjelenÃtése" -#: include/functions.php:2467 +#: include/functions.php:2418 #, php-format msgid "Search results: %s" msgstr "Keresési eredmények: %s" -#: include/functions.php:2958 -#: js/viewfeed.js:2026 +#: include/functions.php:2909 +#: 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:2910 +#: js/viewfeed.js:2013 msgid "Play" msgstr "Lejátszás" -#: include/functions.php:3076 +#: include/functions.php:3027 msgid " - " msgstr "-" -#: include/functions.php:3098 -#: include/functions.php:3392 +#: include/functions.php:3049 +#: include/functions.php:3343 #: classes/rpc.php:408 msgid "no tags" msgstr "nincs cÃmke" -#: include/functions.php:3108 -#: classes/feeds.php:682 +#: include/functions.php:3059 +#: classes/feeds.php:686 msgid "Edit tags for this article" msgstr "CÃmkék hozzáadása a hÃrhez" -#: include/functions.php:3137 -#: classes/feeds.php:638 +#: include/functions.php:3088 +#: classes/feeds.php:642 msgid "Originally from:" msgstr "Eredeti innen:" -#: include/functions.php:3150 -#: classes/feeds.php:651 -#: classes/pref/feeds.php:539 +#: include/functions.php:3101 +#: classes/feeds.php:655 +#: 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:3132 +#: 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/users.php:99 +#: 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:3368 msgid "(edit note)" msgstr "(jegyzet szerkesztése)" -#: include/functions.php:3650 +#: include/functions.php:3601 msgid "unknown type" msgstr "ismeretlen hÃrcsatornatÃpus" -#: include/functions.php:3706 +#: include/functions.php:3657 msgid "Attachments" msgstr "Csatolmányok:" @@ -969,7 +962,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 +1145,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 +1170,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 +1188,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 +1197,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 +1212,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:55 +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:176 +#: 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:1028 +#: classes/feeds.php:1080 +#: classes/feeds.php:1140 +#: classes/pref/users.php:178 +#: 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/pref/users.php:378 +#: classes/handler/public.php:764 +#: classes/pref/users.php:360 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 +1461,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:345 +#: 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:347 +#: 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 +1532,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" @@ -1749,61 +1550,157 @@ msgstr "TovábbÃtás emaiben" msgid "Feed:" msgstr "HÃrcsatorna:" -#: classes/feeds.php:201 -#: classes/feeds.php:827 +#: classes/feeds.php:205 +#: classes/feeds.php:831 msgid "Feed not found." msgstr "HÃrcsatorna nem található" -#: classes/feeds.php:384 +#: classes/feeds.php:388 #, fuzzy, php-format msgid "Imported at %s" msgstr "Importálás" -#: classes/feeds.php:531 +#: classes/feeds.php:535 msgid "mark as read" msgstr "olvasottként jelöl" -#: classes/feeds.php:582 +#: classes/feeds.php:586 msgid "Collapse article" msgstr "HÃr bezárása" -#: classes/feeds.php:728 +#: classes/feeds.php:732 msgid "No unread articles found to display." msgstr "Nincs megjelenÃthetÅ‘ olvasatlan hÃr." -#: classes/feeds.php:731 +#: classes/feeds.php:735 msgid "No updated articles found to display." msgstr "Nincs megjelenÃthetÅ‘ friss hÃr." -#: classes/feeds.php:734 +#: classes/feeds.php:738 msgid "No starred articles found to display." msgstr "Nincs megjelenÃthetÅ‘ csillagozott hÃr." -#: classes/feeds.php:738 +#: classes/feeds.php:742 msgid "No articles found to display. You can assign articles to labels manually (see the Actions menu above) or use a filter." msgstr "" "A jelenlegi cÃmke alá nincs besorolva egy hÃr sem.\n" "CÃmkék alá hÃreket besorolhat manuálisan (lásd a fenti Műveletek menüt) vagy a besoroláshoz használhat SzűrÅ‘ket." -#: classes/feeds.php:740 +#: classes/feeds.php:744 msgid "No articles found to display." msgstr "Nincs megjelenÃthetÅ‘ hÃr." -#: classes/feeds.php:755 -#: classes/feeds.php:920 +#: classes/feeds.php:759 +#: classes/feeds.php:923 #, 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:769 +#: classes/feeds.php:933 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:913 msgid "No feed selected." msgstr "Nincs kiválasztott hÃrcsatorna." +#: classes/feeds.php:966 +#: classes/feeds.php:974 +msgid "Feed or site URL" +msgstr "HÃrcsatorna vagy weboldal URL" + +#: classes/feeds.php:980 +#: 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:988 +msgid "Available feeds" +msgstr "ElérhetÅ‘ hÃrcsatornák" + +#: classes/feeds.php:1000 +#: classes/pref/users.php:139 +#: classes/pref/feeds.php:590 +#: classes/pref/feeds.php:818 +msgid "Authentication" +msgstr "AzonosÃtás" + +#: classes/feeds.php:1004 +#: classes/pref/users.php:402 +#: classes/pref/feeds.php:596 +#: classes/pref/feeds.php:822 +#: classes/pref/feeds.php:1775 +msgid "Login" +msgstr "Belépés" + +#: classes/feeds.php:1007 +#: 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:1017 +msgid "This feed requires authentication." +msgstr "Ez a hÃrcsatorna azonosÃtást igényel." + +#: classes/feeds.php:1022 +#: classes/feeds.php:1078 +#: classes/pref/feeds.php:1796 +msgid "Subscribe" +msgstr "Feliratkozás" + +#: classes/feeds.php:1025 +msgid "More feeds" +msgstr "További hÃrcsatornák" + +#: classes/feeds.php:1048 +#: classes/feeds.php:1139 +#: classes/pref/users.php:332 +#: classes/pref/filters.php:641 +#: classes/pref/feeds.php:1259 +#: js/tt-rss.js:170 +msgid "Search" +msgstr "Keresés" + +#: classes/feeds.php:1052 +msgid "Popular feeds" +msgstr "Népszerű hÃrcsatornák" + +#: classes/feeds.php:1053 +msgid "Feed archive" +msgstr "HÃrcsatorna archÃvum" + +#: classes/feeds.php:1056 +msgid "limit:" +msgstr "határ:" + +#: classes/feeds.php:1079 +#: classes/pref/users.php:358 +#: 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:1090 +msgid "Look for" +msgstr "Keresés" + +#: classes/feeds.php:1098 +msgid "Limit search to:" +msgstr "Keresés korlátozása ezekre:" + +#: classes/feeds.php:1114 +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 +1773,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" @@ -1885,122 +1782,131 @@ msgstr "Hiba történt a dokuementum feldoglozása közben" msgid "Your access level is insufficient to open this tab." msgstr "Hozzáférési szintje elégtelen ehhez a művelethez." -#: classes/pref/users.php:27 -msgid "User details" -msgstr "Felhasználói adatok" - -#: classes/pref/users.php:41 +#: classes/pref/users.php:34 msgid "User not found" msgstr "Felhasználó nem találhat" -#: classes/pref/users.php:60 -#: classes/pref/users.php:422 +#: classes/pref/users.php:53 +#: classes/pref/users.php:404 msgid "Registered" msgstr "Regisztrált" -#: classes/pref/users.php:61 +#: classes/pref/users.php:54 msgid "Last logged in" msgstr "Utolsó belépés" -#: classes/pref/users.php:68 +#: classes/pref/users.php:61 msgid "Subscribed feeds count" msgstr "Olvasott hÃrcsatornák száma" -#: classes/pref/users.php:72 +#: classes/pref/users.php:65 msgid "Subscribed feeds" msgstr "Feliratkozott a következÅ‘ hÃrcsatornákra:" -#: classes/pref/users.php:122 -msgid "User Editor" -msgstr "Felhasználó-szerkesztÅ‘" - -#: classes/pref/users.php:158 +#: classes/pref/users.php:142 msgid "Access level: " msgstr "Hozzáférési szint:" -#: classes/pref/users.php:171 +#: classes/pref/users.php:155 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/users.php:161 +#: classes/pref/feeds.php:610 +#: classes/pref/feeds.php:834 msgid "Options" msgstr "BeállÃtások" -#: classes/pref/users.php:180 +#: classes/pref/users.php:164 msgid "E-mail: " msgstr "E-mail:" -#: classes/pref/users.php:258 +#: classes/pref/users.php:240 #, php-format msgid "Added user <b>%s</b> with password <b>%s</b>" msgstr "A következÅ‘ felhasználó hozzáadva <b>%s</b> ezzel a jelszóval <b>%s</b>" -#: classes/pref/users.php:265 +#: classes/pref/users.php:247 #, php-format msgid "Could not create user <b>%s</b>" msgstr "A következÅ‘ felhasználó létrehozása sikertelen <b>%s</b>" -#: classes/pref/users.php:269 +#: classes/pref/users.php:251 #, php-format msgid "User <b>%s</b> already exists." msgstr "A következÅ‘ felhasználó már létezik <b>%s</b>." -#: classes/pref/users.php:291 +#: classes/pref/users.php:273 #, fuzzy, php-format msgid "Changed password of user <b>%s</b> to <b>%s</b>" msgstr "" "<b>%s</b> felhasználó jelszava megváltoztatva \n" "\t\t\t\t\t erre: <b>%s</b>" -#: classes/pref/users.php:293 +#: classes/pref/users.php:275 #, fuzzy, php-format msgid "Sending new password of user <b>%s</b> to <b>%s</b>" msgstr "" "<b>%s</b> felhasználó jelszava megváltoztatva \n" "\t\t\t\t\t erre: <b>%s</b>" -#: classes/pref/users.php:317 +#: classes/pref/users.php:299 msgid "[tt-rss] Password change notification" msgstr "[tt-rss] ÉrtesÃtés jelszó megváltoztatásáról." -#: classes/pref/users.php:368 +#: classes/pref/users.php:342 +#: 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:350 msgid "Create user" msgstr "Felhasználó létrehozás" -#: classes/pref/users.php:372 +#: classes/pref/users.php:354 msgid "Details" msgstr "Részletek" -#: classes/pref/users.php:374 -#: classes/pref/filters.php:612 +#: classes/pref/users.php:356 +#: classes/pref/filters.php:660 #: plugins/instances/init.php:296 msgid "Edit" msgstr "Szerkesztés" -#: classes/pref/users.php:421 +#: classes/pref/users.php:403 msgid "Access Level" msgstr "Hozzáférési szint" -#: classes/pref/users.php:423 +#: classes/pref/users.php:405 msgid "Last login" msgstr "Utolsó belépés" -#: classes/pref/users.php:444 +#: classes/pref/users.php:426 #: plugins/instances/init.php:337 msgid "Click to edit" msgstr "Kattintson ide a szerkesztéshez" -#: classes/pref/users.php:464 +#: classes/pref/users.php:446 msgid "No users defined." msgstr "Nincs megadva felhasználó." -#: classes/pref/users.php:466 +#: classes/pref/users.php:448 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 +1931,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 +2259,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 +2776,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 +2801,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 +2853,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 +2916,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 +3098,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" @@ -3131,6 +3115,10 @@ msgstr "Felhasználó létrehozása sikertelen, nincs megadva felhasználói né msgid "Adding user..." msgstr "SzűrÅ‘ hozzáadása..." +#: js/prefs.js:94 +msgid "User Editor" +msgstr "Felhasználó-szerkesztÅ‘" + #: js/prefs.js:117 msgid "Edit Filter" msgstr "SzűrÅ‘ szerkesztése" @@ -3154,7 +3142,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." @@ -3244,6 +3232,10 @@ msgstr "VisszaállÃtja akiválasztott felhasználók jelszavakit?" msgid "Resetting password for selected user..." msgstr "VisszaállÃtja akiválasztott felhasználók jelszavakit?" +#: js/prefs.js:585 +msgid "User details" +msgstr "Felhasználói adatok" + #: js/prefs.js:602 msgid "Please select only one filter." msgstr "Kérem csak egy szűrÅ‘t jelöljön meg!" @@ -3265,154 +3257,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 +3425,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 +3482,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 +3697,25 @@ 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 "Refresh" +#~ msgstr "Friss" + +#, 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" diff --git a/locale/it_IT/LC_MESSAGES/messages.mo b/locale/it_IT/LC_MESSAGES/messages.mo Binary files differindex 5998ad7f8..c3b323816 100644 --- a/locale/it_IT/LC_MESSAGES/messages.mo +++ b/locale/it_IT/LC_MESSAGES/messages.mo diff --git a/locale/it_IT/LC_MESSAGES/messages.po b/locale/it_IT/LC_MESSAGES/messages.po index e280d4b0b..f31fd3d35 100644 --- a/locale/it_IT/LC_MESSAGES/messages.po +++ b/locale/it_IT/LC_MESSAGES/messages.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Tiny Tiny RSS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-31 12:47+0400\n" +"POT-Creation-Date: 2013-04-01 19:15+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" @@ -91,7 +91,7 @@ msgid "Weekly" msgstr "Settimanalmente" #: backend.php:101 -#: classes/pref/users.php:139 +#: classes/pref/users.php:123 msgid "User" msgstr "Utente" @@ -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,38 @@ msgstr "Test di sanitizzazione dell'SQL fallito; controllare il database e #: index.php:135 #: index.php:154 -#: index.php:264 -#: prefs.php:102 +#: index.php:273 +#: prefs.php:103 +#: test.php:11 #: 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 +310,13 @@ msgid "All Articles" msgstr "Tutti gli articoli" #: index.php:176 -#: include/functions.php:1974 +#: include/functions.php:1925 #: classes/feeds.php:106 msgid "Starred" msgstr "Con stella" #: index.php:177 -#: include/functions.php:1975 +#: include/functions.php:1926 #: classes/feeds.php:107 msgid "Published" msgstr "Pubblicati" @@ -354,135 +356,128 @@ 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:237 +#: include/functions.php:1915 #: include/localized_schema.php:10 #: classes/feeds.php:111 -#: classes/feeds.php:136 -#: classes/feeds.php:437 +#: classes/feeds.php:441 #: js/FeedTree.js:128 #: js/FeedTree.js:156 #: plugins/digest/digest.js:647 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:1811 +#: include/functions.php:1923 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:214 msgid "Communication problem with server." msgstr "" -#: index.php:220 +#: index.php:222 msgid "New version of Tiny Tiny RSS is available!" msgstr "È disponibile la nuova versione di Tiny Tiny RSS." -#: index.php:225 +#: index.php:227 msgid "Actions..." msgstr "Azioni..." -#: index.php:227 +#: index.php:229 #, fuzzy msgid "Preferences..." msgstr "Preferenze" -#: index.php:228 +#: index.php:230 msgid "Search..." msgstr "Cerca..." -#: index.php:229 +#: index.php:231 msgid "Feed actions:" msgstr "Azioni notiziari:" -#: index.php:230 -#: classes/handler/public.php:555 +#: index.php:232 +#: classes/handler/public.php:556 msgid "Subscribe to feed..." msgstr "Sottoscrivi il notiziario..." -#: index.php:231 +#: index.php:233 msgid "Edit this feed..." msgstr "Modifica questo notiziario..." -#: index.php:232 +#: index.php:234 msgid "Rescore feed" msgstr "Cambia punteggio notiziario" -#: index.php:233 -#: classes/pref/feeds.php:716 -#: classes/pref/feeds.php:1303 +#: index.php:235 +#: classes/pref/feeds.php:717 +#: classes/pref/feeds.php:1304 #: js/PrefFeedTree.js:73 msgid "Unsubscribe" msgstr "Annulla sottoscrizione" -#: index.php:234 +#: index.php:236 msgid "All feeds:" msgstr "Tutti i notiziari:" -#: index.php:236 +#: index.php:238 msgid "(Un)hide read feeds" msgstr "Visualizza/Nascondi notiziari letti" -#: index.php:237 +#: index.php:239 msgid "Other actions:" msgstr "Altre azioni:" -#: index.php:239 +#: index.php:241 msgid "Switch to digest..." msgstr "Passa al sommario..." -#: index.php:241 +#: index.php:243 msgid "Show tag cloud..." msgstr "Mostra nuvola etichette..." -#: index.php:242 -#: include/functions.php:1950 +#: index.php:244 +#: include/functions.php:1901 #, fuzzy msgid "Toggle widescreen mode" msgstr "Inverti con stella" -#: index.php:243 +#: index.php:245 msgid "Select by tags..." msgstr "" -#: index.php:244 +#: index.php:246 msgid "Create label..." msgstr "Crea etichetta..." -#: index.php:245 +#: index.php:247 msgid "Create filter..." msgstr "Crea filtro..." -#: index.php:246 +#: index.php:248 msgid "Keyboard shortcuts help" msgstr "Aiuto scorciatoie da tastiera" -#: index.php:248 +#: index.php:257 #: plugins/digest/digest_body.php:77 #: plugins/mobile/mobile-functions.php:62 #: plugins/mobile/mobile-functions.php:237 @@ -490,41 +485,41 @@ msgid "Logout" msgstr "Esci" #: prefs.php:36 -#: prefs.php:122 -#: include/functions.php:1977 +#: prefs.php:121 +#: include/functions.php:1928 #: 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:1118 +#: include/functions.php:1754 #: 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 +545,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 +584,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:1127 +#: include/functions.php:1655 +#: include/functions.php:1740 +#: include/functions.php:1762 #: classes/opml.php:416 -#: classes/pref/feeds.php:221 +#: classes/pref/feeds.php:222 msgid "Uncategorized" msgstr "Senza categoria" @@ -609,355 +604,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:1116 +#: include/functions.php:1752 #: 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:1604 +#: classes/feeds.php:1101 +#: classes/pref/filters.php:427 msgid "All feeds" msgstr "Tutti i notiziari" -#: include/functions.php:1854 +#: include/functions.php:1805 msgid "Starred articles" msgstr "Articoli con stella" -#: include/functions.php:1856 +#: include/functions.php:1807 msgid "Published articles" msgstr "Articoli pubblicati" -#: include/functions.php:1858 +#: include/functions.php:1809 msgid "Fresh articles" msgstr "Articoli nuovi" -#: include/functions.php:1862 +#: include/functions.php:1813 msgid "Archived articles" msgstr "Articoli archiviati" -#: include/functions.php:1864 +#: include/functions.php:1815 msgid "Recently read" msgstr "" -#: include/functions.php:1927 +#: include/functions.php:1878 msgid "Navigation" msgstr "Navigazione" -#: include/functions.php:1928 +#: include/functions.php:1879 #, fuzzy msgid "Open next feed" msgstr "Su lettura passare al prossimo notiziario" -#: include/functions.php:1929 +#: include/functions.php:1880 msgid "Open previous feed" msgstr "" -#: include/functions.php:1930 +#: include/functions.php:1881 #, fuzzy msgid "Open next article" msgstr "Apri articolo di origine" -#: include/functions.php:1931 +#: include/functions.php:1882 #, fuzzy msgid "Open previous article" msgstr "Apri articolo di origine" -#: include/functions.php:1932 +#: include/functions.php:1883 msgid "Open next article (don't scroll long articles)" msgstr "" -#: include/functions.php:1933 +#: include/functions.php:1884 msgid "Open previous article (don't scroll long articles)" msgstr "" -#: include/functions.php:1934 +#: include/functions.php:1885 msgid "Show search dialog" msgstr "Mostra il dialogo di ricerca" -#: include/functions.php:1935 +#: include/functions.php:1886 #, fuzzy msgid "Article" msgstr "Tutti gli articoli" -#: include/functions.php:1936 +#: include/functions.php:1887 msgid "Toggle starred" msgstr "Inverti con stella" -#: include/functions.php:1937 -#: js/viewfeed.js:1920 +#: include/functions.php:1888 +#: js/viewfeed.js:1908 msgid "Toggle published" msgstr "Inverti pubblicati" -#: include/functions.php:1938 -#: js/viewfeed.js:1898 +#: include/functions.php:1889 +#: js/viewfeed.js:1886 msgid "Toggle unread" msgstr "Inverti non letti" -#: include/functions.php:1939 +#: include/functions.php:1890 msgid "Edit tags" msgstr "Modifica etichette" -#: include/functions.php:1940 +#: include/functions.php:1891 #, fuzzy msgid "Dismiss selected" msgstr "Rimuovi gli articoli selezionati" -#: include/functions.php:1941 +#: include/functions.php:1892 #, fuzzy msgid "Dismiss read" msgstr "Rimuovi articoli letti" -#: include/functions.php:1942 +#: include/functions.php:1893 #, 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:1894 +#: js/viewfeed.js:1927 msgid "Mark below as read" msgstr "" -#: include/functions.php:1944 -#: js/viewfeed.js:1933 +#: include/functions.php:1895 +#: js/viewfeed.js:1921 msgid "Mark above as read" msgstr "" -#: include/functions.php:1945 +#: include/functions.php:1896 #, fuzzy msgid "Scroll down" msgstr "Fatto tutto." -#: include/functions.php:1946 +#: include/functions.php:1897 msgid "Scroll up" msgstr "" -#: include/functions.php:1947 +#: include/functions.php:1898 #, fuzzy msgid "Select article under cursor" msgstr "Seleziona l'articolo sotto il cursore del mouse" -#: include/functions.php:1948 +#: include/functions.php:1899 msgid "Email article" msgstr "" -#: include/functions.php:1949 +#: include/functions.php:1900 #, fuzzy msgid "Close/collapse article" msgstr "Cambio punteggio degli articoli" -#: include/functions.php:1951 +#: include/functions.php:1902 #: plugins/embed_original/init.php:33 #, fuzzy msgid "Toggle embed original" msgstr "Inverti pubblicati" -#: include/functions.php:1952 +#: include/functions.php:1903 #, fuzzy msgid "Article selection" msgstr "Azioni sull'articolo attivo" -#: include/functions.php:1953 +#: include/functions.php:1904 msgid "Select all articles" msgstr "" -#: include/functions.php:1954 +#: include/functions.php:1905 #, fuzzy msgid "Select unread" msgstr "Inverti non letti" -#: include/functions.php:1955 +#: include/functions.php:1906 #, fuzzy msgid "Select starred" msgstr "Imposta con stella" -#: include/functions.php:1956 +#: include/functions.php:1907 #, fuzzy msgid "Select published" msgstr "Articoli pubblicati" -#: include/functions.php:1957 +#: include/functions.php:1908 #, fuzzy msgid "Invert selection" msgstr "Selezione:" -#: include/functions.php:1958 +#: include/functions.php:1909 msgid "Deselect everything" msgstr "" -#: include/functions.php:1959 -#: classes/pref/feeds.php:520 -#: classes/pref/feeds.php:753 +#: include/functions.php:1910 +#: classes/pref/feeds.php:521 +#: classes/pref/feeds.php:754 msgid "Feed" msgstr "Notiziario" -#: include/functions.php:1960 +#: include/functions.php:1911 #, fuzzy msgid "Refresh current feed" msgstr "Aggiorna notiziario attivo" -#: include/functions.php:1961 +#: include/functions.php:1912 #, fuzzy msgid "Un/hide read feeds" msgstr "Visualizza/Nascondi notiziari letti" -#: include/functions.php:1962 -#: classes/pref/feeds.php:1274 +#: include/functions.php:1913 +#: classes/pref/feeds.php:1275 msgid "Subscribe to feed" msgstr "Sottoscrivi il notiziario" -#: include/functions.php:1963 +#: include/functions.php:1914 #: js/FeedTree.js:135 #: js/PrefFeedTree.js:67 msgid "Edit feed" msgstr "Modifica notiziario" -#: include/functions.php:1965 +#: include/functions.php:1916 #, fuzzy msgid "Reverse headlines" msgstr "Invertire l'ordine dei sommari" -#: include/functions.php:1966 +#: include/functions.php:1917 #, fuzzy msgid "Debug feed update" msgstr "Disabilitare aggiornamenti" -#: include/functions.php:1967 +#: include/functions.php:1918 #: js/FeedTree.js:178 msgid "Mark all feeds as read" msgstr "Segna tutti i notiziari come letti" -#: include/functions.php:1968 +#: include/functions.php:1919 #, fuzzy msgid "Un/collapse current category" msgstr "Mettere nella categoria:" -#: include/functions.php:1969 +#: include/functions.php:1920 #, fuzzy msgid "Toggle combined mode" msgstr "Inverti pubblicati" -#: include/functions.php:1970 +#: include/functions.php:1921 #, fuzzy msgid "Toggle auto expand in combined mode" msgstr "Inverti pubblicati" -#: include/functions.php:1971 +#: include/functions.php:1922 #, fuzzy msgid "Go to" msgstr "Vai a..." -#: include/functions.php:1973 +#: include/functions.php:1924 msgid "Fresh" msgstr "" -#: include/functions.php:1976 +#: include/functions.php:1927 +#: js/tt-rss.js:431 +#: js/tt-rss.js:584 msgid "Tag cloud" msgstr "Nuvola etichette" -#: include/functions.php:1978 +#: include/functions.php:1929 #, fuzzy msgid "Other" msgstr "Altri notiziari" -#: include/functions.php:1979 +#: include/functions.php:1930 #: classes/pref/labels.php:281 msgid "Create label" msgstr "Crea etichetta" -#: include/functions.php:1980 -#: classes/pref/filters.php:606 +#: include/functions.php:1931 +#: classes/pref/filters.php:654 msgid "Create filter" msgstr "Crea filtro" -#: include/functions.php:1981 +#: include/functions.php:1932 #, fuzzy msgid "Un/collapse sidebar" msgstr "Contrai la barra laterale" -#: include/functions.php:1982 +#: include/functions.php:1933 #, fuzzy msgid "Show help dialog" msgstr "Mostra il dialogo di ricerca" -#: include/functions.php:2467 +#: include/functions.php:2418 #, php-format msgid "Search results: %s" msgstr "" -#: include/functions.php:2958 -#: js/viewfeed.js:2026 +#: include/functions.php:2909 +#: js/viewfeed.js:2014 msgid "Click to play" msgstr "Fare clic per riprodurre" -#: include/functions.php:2959 -#: js/viewfeed.js:2025 +#: include/functions.php:2910 +#: js/viewfeed.js:2013 msgid "Play" msgstr "Riproduci" -#: include/functions.php:3076 +#: include/functions.php:3027 msgid " - " msgstr " - " -#: include/functions.php:3098 -#: include/functions.php:3392 +#: include/functions.php:3049 +#: include/functions.php:3343 #: classes/rpc.php:408 msgid "no tags" msgstr "nessuna etichetta" -#: include/functions.php:3108 -#: classes/feeds.php:682 +#: include/functions.php:3059 +#: classes/feeds.php:686 msgid "Edit tags for this article" msgstr "Modifica le etichette per questo articolo" -#: include/functions.php:3137 -#: classes/feeds.php:638 +#: include/functions.php:3088 +#: classes/feeds.php:642 msgid "Originally from:" msgstr "Originariamente da:" -#: include/functions.php:3150 -#: classes/feeds.php:651 -#: classes/pref/feeds.php:539 +#: include/functions.php:3101 +#: classes/feeds.php:655 +#: 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:3132 +#: 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/users.php:99 +#: 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:3368 msgid "(edit note)" msgstr "(modifica note)" -#: include/functions.php:3650 +#: include/functions.php:3601 msgid "unknown type" msgstr "tipo sconosciuto" -#: include/functions.php:3706 +#: include/functions.php:3657 #, fuzzy msgid "Attachments" msgstr "Allegati:" @@ -1002,7 +995,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 +1181,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 +1206,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 +1224,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 +1233,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 +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 "Accedi" +#: include/sessions.php:55 +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:176 +#: 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:1028 +#: classes/feeds.php:1080 +#: classes/feeds.php:1140 +#: classes/pref/users.php:178 +#: 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/pref/users.php:378 +#: classes/handler/public.php:764 +#: classes/pref/users.php:360 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'aggiornamento è abilitato nella configurazione, ma il processo del demone non è in esecuzione. Questo impedisce l'aggiornameto di tutti i notiziari. Avviare il processo del demone o contattare il proprietario dell'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'aggiornamento del notiziario. Questo potrebbe indicare un problema come un crash o uno stallo. Controllare il processo del demone o contattare il proprietario dell'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'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 +1504,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:345 +#: 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:347 +#: 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 +1577,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" @@ -1795,60 +1595,157 @@ msgstr "Inoltra per email" msgid "Feed:" msgstr "Notiziario:" -#: classes/feeds.php:201 -#: classes/feeds.php:827 +#: classes/feeds.php:205 +#: classes/feeds.php:831 msgid "Feed not found." msgstr "Notiziario non trovato." -#: classes/feeds.php:384 +#: classes/feeds.php:388 #, fuzzy, php-format msgid "Imported at %s" msgstr "Importa" -#: classes/feeds.php:531 +#: classes/feeds.php:535 msgid "mark as read" msgstr "segna come letto" -#: classes/feeds.php:582 +#: classes/feeds.php:586 #, fuzzy msgid "Collapse article" msgstr "Tutti gli articoli" -#: classes/feeds.php:728 +#: classes/feeds.php:732 msgid "No unread articles found to display." msgstr "Nessun articolo non letto trovato da visualizzare." -#: classes/feeds.php:731 +#: classes/feeds.php:735 msgid "No updated articles found to display." msgstr "Nessun articolo non aggiornato trovato da visualizzare." -#: classes/feeds.php:734 +#: classes/feeds.php:738 msgid "No starred articles found to display." msgstr "Nessun articolo con stella trovato da visualizzare." -#: classes/feeds.php:738 +#: classes/feeds.php:742 msgid "No articles found to display. You can assign articles to labels manually (see the Actions menu above) or use a filter." msgstr "Nessun articolo trovato da visualizzare. Si possono assegnare manualmente gli articoli alle etichette (vedere il menù «Azioni» sopra) o utilizzare un filtro." -#: classes/feeds.php:740 +#: classes/feeds.php:744 msgid "No articles found to display." msgstr "Nessun articolo trovato da visualizzare." -#: classes/feeds.php:755 -#: classes/feeds.php:920 +#: classes/feeds.php:759 +#: classes/feeds.php:923 #, 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:769 +#: classes/feeds.php:933 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:913 msgid "No feed selected." msgstr "Nessun notiziario selezionato." +#: classes/feeds.php:966 +#: classes/feeds.php:974 +#, fuzzy +msgid "Feed or site URL" +msgstr "URL del notiziario" + +#: classes/feeds.php:980 +#: 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:988 +msgid "Available feeds" +msgstr "Notiziari disponibili" + +#: classes/feeds.php:1000 +#: classes/pref/users.php:139 +#: classes/pref/feeds.php:590 +#: classes/pref/feeds.php:818 +msgid "Authentication" +msgstr "Autenticazione" + +#: classes/feeds.php:1004 +#: classes/pref/users.php:402 +#: classes/pref/feeds.php:596 +#: classes/pref/feeds.php:822 +#: classes/pref/feeds.php:1775 +msgid "Login" +msgstr "Accesso" + +#: classes/feeds.php:1007 +#: 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:1017 +msgid "This feed requires authentication." +msgstr "Questo notiziario richiede l'autenticazione" + +#: classes/feeds.php:1022 +#: classes/feeds.php:1078 +#: classes/pref/feeds.php:1796 +msgid "Subscribe" +msgstr "Sottoscrivi" + +#: classes/feeds.php:1025 +msgid "More feeds" +msgstr "Altri notiziari" + +#: classes/feeds.php:1048 +#: classes/feeds.php:1139 +#: classes/pref/users.php:332 +#: classes/pref/filters.php:641 +#: classes/pref/feeds.php:1259 +#: js/tt-rss.js:170 +msgid "Search" +msgstr "Cerca" + +#: classes/feeds.php:1052 +msgid "Popular feeds" +msgstr "Notiziari popolari" + +#: classes/feeds.php:1053 +msgid "Feed archive" +msgstr "Archivio notiziari" + +#: classes/feeds.php:1056 +msgid "limit:" +msgstr "limite:" + +#: classes/feeds.php:1079 +#: classes/pref/users.php:358 +#: 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:1090 +msgid "Look for" +msgstr "Cerca" + +#: classes/feeds.php:1098 +msgid "Limit search to:" +msgstr "Limitare la ricerca a:" + +#: classes/feeds.php:1114 +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 +1819,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'analisi del documento." @@ -1931,118 +1828,127 @@ msgstr "Errore durante l'analisi del documento." msgid "Your access level is insufficient to open this tab." msgstr "Il livello di accesso non è sufficiente per aprire questa scheda." -#: classes/pref/users.php:27 -msgid "User details" -msgstr "Dettagli utente" - -#: classes/pref/users.php:41 +#: classes/pref/users.php:34 msgid "User not found" msgstr "Utente non trovato" -#: classes/pref/users.php:60 -#: classes/pref/users.php:422 +#: classes/pref/users.php:53 +#: classes/pref/users.php:404 msgid "Registered" msgstr "Registrato" -#: classes/pref/users.php:61 +#: classes/pref/users.php:54 msgid "Last logged in" msgstr "Ultimo accesso" -#: classes/pref/users.php:68 +#: classes/pref/users.php:61 msgid "Subscribed feeds count" msgstr "Numero notiziari sottoscritti" -#: classes/pref/users.php:72 +#: classes/pref/users.php:65 msgid "Subscribed feeds" msgstr "Sottoscrivi notiziari" -#: classes/pref/users.php:122 -msgid "User Editor" -msgstr "Editor utente" - -#: classes/pref/users.php:158 +#: classes/pref/users.php:142 msgid "Access level: " msgstr "Livello di accesso: " -#: classes/pref/users.php:171 +#: classes/pref/users.php:155 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/users.php:161 +#: classes/pref/feeds.php:610 +#: classes/pref/feeds.php:834 msgid "Options" msgstr "Opzioni" -#: classes/pref/users.php:180 +#: classes/pref/users.php:164 msgid "E-mail: " msgstr "Email:" -#: classes/pref/users.php:258 +#: classes/pref/users.php:240 #, php-format msgid "Added user <b>%s</b> with password <b>%s</b>" msgstr "Aggiunto l'utente <b>%s</b> con password <b>%s</b>" -#: classes/pref/users.php:265 +#: classes/pref/users.php:247 #, php-format msgid "Could not create user <b>%s</b>" msgstr "Impossibile creare l'utente <b>%s<b>" -#: classes/pref/users.php:269 +#: classes/pref/users.php:251 #, php-format msgid "User <b>%s</b> already exists." msgstr "L'utente <b>%s</b> esiste già ." -#: classes/pref/users.php:291 +#: classes/pref/users.php:273 #, fuzzy, php-format msgid "Changed password of user <b>%s</b> to <b>%s</b>" msgstr "Aggiunto l'utente <b>%s</b> con password <b>%s</b>" -#: classes/pref/users.php:293 +#: classes/pref/users.php:275 #, fuzzy, php-format msgid "Sending new password of user <b>%s</b> to <b>%s</b>" msgstr "Aggiunto l'utente <b>%s</b> con password <b>%s</b>" -#: classes/pref/users.php:317 +#: classes/pref/users.php:299 msgid "[tt-rss] Password change notification" msgstr "[tt-rss] Notifica di cambio password" -#: classes/pref/users.php:368 +#: classes/pref/users.php:342 +#: 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:350 msgid "Create user" msgstr "Crea utente" -#: classes/pref/users.php:372 +#: classes/pref/users.php:354 msgid "Details" msgstr "Dettagli" -#: classes/pref/users.php:374 -#: classes/pref/filters.php:612 +#: classes/pref/users.php:356 +#: classes/pref/filters.php:660 #: plugins/instances/init.php:296 msgid "Edit" msgstr "Modifica" -#: classes/pref/users.php:421 +#: classes/pref/users.php:403 msgid "Access Level" msgstr "Livello di accesso" -#: classes/pref/users.php:423 +#: classes/pref/users.php:405 msgid "Last login" msgstr "Ultimo accesso" -#: classes/pref/users.php:444 +#: classes/pref/users.php:426 #: plugins/instances/init.php:337 msgid "Click to edit" msgstr "Fare clic per modificare" -#: classes/pref/users.php:464 +#: classes/pref/users.php:446 msgid "No users defined." msgstr "Nessun utente definito." -#: classes/pref/users.php:466 +#: classes/pref/users.php:448 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 +1973,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 +2313,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'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'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'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'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'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 +2847,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 +2872,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 +2924,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 +2992,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 +3179,7 @@ msgstr "Modifica categorie" msgid "Remove category" msgstr "Crea categoria" -#: js/PrefFilterTree.js:32 +#: js/PrefFilterTree.js:48 msgid "Inverse" msgstr "Inverso" @@ -3212,6 +3196,10 @@ msgstr "Impossibile creare l'utente: nessun accesso specificato." msgid "Adding user..." msgstr "Crea filtro..." +#: js/prefs.js:94 +msgid "User Editor" +msgstr "Editor utente" + #: js/prefs.js:117 msgid "Edit Filter" msgstr "Modifica filtro" @@ -3236,7 +3224,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." @@ -3326,6 +3314,10 @@ msgstr "Reimpostare la password per l'utente selezionato?" msgid "Resetting password for selected user..." msgstr "Reimpostare la password per l'utente selezionato?" +#: js/prefs.js:585 +msgid "User details" +msgstr "Dettagli utente" + #: js/prefs.js:602 msgid "Please select only one filter." msgstr "Selezionare solo un filtro." @@ -3348,155 +3340,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'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 +3511,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 +3569,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 +3788,21 @@ msgstr "Metti la stella all'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" diff --git a/locale/ja_JP/LC_MESSAGES/messages.mo b/locale/ja_JP/LC_MESSAGES/messages.mo Binary files differindex b1f6e05f8..b3d667292 100644 --- a/locale/ja_JP/LC_MESSAGES/messages.mo +++ b/locale/ja_JP/LC_MESSAGES/messages.mo diff --git a/locale/ja_JP/LC_MESSAGES/messages.po b/locale/ja_JP/LC_MESSAGES/messages.po index 0f6346d05..2c5906664 100644 --- a/locale/ja_JP/LC_MESSAGES/messages.po +++ b/locale/ja_JP/LC_MESSAGES/messages.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: tt-rss unstable\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-31 12:47+0400\n" +"POT-Creation-Date: 2013-04-01 19:15+0400\n" "PO-Revision-Date: 2013-03-25 06:48+0900\n" "Last-Translator: skikuta <kik0220@gmail.com>\n" "Language-Team: \n" @@ -89,7 +89,7 @@ msgid "Weekly" msgstr "毎週" #: backend.php:101 -#: classes/pref/users.php:139 +#: classes/pref/users.php:123 msgid "User" msgstr "ユーザー" @@ -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,38 @@ msgstr "SQLã®ã‚¨ã‚¹ã‚±ãƒ¼ãƒ—処ç†ã®ãƒ†ã‚¹ãƒˆã«å¤±æ•—ã—ã¾ã—ãŸã€‚データ #: index.php:135 #: index.php:154 -#: index.php:264 -#: prefs.php:102 +#: index.php:273 +#: prefs.php:103 +#: test.php:11 #: 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 +304,13 @@ msgid "All Articles" msgstr "ã™ã¹ã¦ã®è¨˜äº‹" #: index.php:176 -#: include/functions.php:1974 +#: include/functions.php:1925 #: classes/feeds.php:106 msgid "Starred" msgstr "ãŠæ°—ã«å…¥ã‚Š" #: index.php:177 -#: include/functions.php:1975 +#: include/functions.php:1926 #: classes/feeds.php:107 msgid "Published" msgstr "公開済ã¿" @@ -349,137 +351,130 @@ 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:237 +#: include/functions.php:1915 #: include/localized_schema.php:10 #: classes/feeds.php:111 -#: classes/feeds.php:136 -#: classes/feeds.php:437 +#: classes/feeds.php:441 #: 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:1811 +#: include/functions.php:1923 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:214 msgid "Communication problem with server." msgstr "サーãƒãƒ¼ã¨ã®é€šä¿¡ã«å•題ãŒç™ºç”Ÿã—ã¾ã—ãŸã€‚" -#: index.php:220 +#: index.php:222 msgid "New version of Tiny Tiny RSS is available!" msgstr "Tiny Tiny RSS ã®æ–°ã—ã„ãƒãƒ¼ã‚¸ãƒ§ãƒ³ãŒåˆ©ç”¨ã§ãã¾ã™!" -#: index.php:225 +#: index.php:227 msgid "Actions..." msgstr "æ“作..." -#: index.php:227 +#: index.php:229 #, fuzzy msgid "Preferences..." msgstr "è¨å®š" -#: index.php:228 +#: index.php:230 msgid "Search..." msgstr "検索..." -#: index.php:229 +#: index.php:231 msgid "Feed actions:" msgstr "フィードæ“作" -#: index.php:230 -#: classes/handler/public.php:555 +#: index.php:232 +#: classes/handler/public.php:556 msgid "Subscribe to feed..." msgstr "フィードを購èªã™ã‚‹..." -#: index.php:231 +#: index.php:233 msgid "Edit this feed..." msgstr "フィードを編集ã™ã‚‹..." -#: index.php:232 +#: index.php:234 msgid "Rescore feed" msgstr "フィードã®ã‚¹ã‚³ã‚¢ã‚’å†è¨ˆç®—ã—ã¦ã„ã¾ã™..." -#: index.php:233 -#: classes/pref/feeds.php:716 -#: classes/pref/feeds.php:1303 +#: index.php:235 +#: classes/pref/feeds.php:717 +#: classes/pref/feeds.php:1304 #: js/PrefFeedTree.js:73 msgid "Unsubscribe" msgstr "è³¼èªã‚’ã‚„ã‚ã‚‹" -#: index.php:234 +#: index.php:236 msgid "All feeds:" msgstr "ã™ã¹ã¦ã®ãƒ•ィード:" -#: index.php:236 +#: index.php:238 msgid "(Un)hide read feeds" msgstr "èªã‚“ã ãƒ•ã‚£ãƒ¼ãƒ‰ã‚’éš ã™/å†è¡¨ç¤ºã™ã‚‹" -#: index.php:237 +#: index.php:239 msgid "Other actions:" msgstr "ãã®ä»–ã®æ“作:" -#: index.php:239 +#: index.php:241 msgid "Switch to digest..." msgstr "ダイジェストã«ç§»è¡Œ..." -#: index.php:241 +#: index.php:243 #, fuzzy msgid "Show tag cloud..." msgstr "タグクラウド" -#: index.php:242 -#: include/functions.php:1950 +#: index.php:244 +#: include/functions.php:1901 #, fuzzy msgid "Toggle widescreen mode" msgstr "カテゴリーã®ä¸¦ã³æ›¿ãˆãƒ¢ãƒ¼ãƒ‰ã®åˆ‡ã‚Šæ›¿ãˆ" -#: index.php:243 +#: index.php:245 msgid "Select by tags..." msgstr "ã‚¿ã‚°ã§é¸æŠž..." -#: index.php:244 +#: index.php:246 msgid "Create label..." msgstr "ラベルを作æˆã™ã‚‹..." -#: index.php:245 +#: index.php:247 msgid "Create filter..." msgstr "フィルターを作æˆã—ã¦ã„ã¾ã™..." -#: index.php:246 +#: index.php:248 #, fuzzy msgid "Keyboard shortcuts help" msgstr "ã‚ーボードショートカット" -#: index.php:248 +#: index.php:257 #: plugins/digest/digest_body.php:77 #: plugins/mobile/mobile-functions.php:62 #: plugins/mobile/mobile-functions.php:237 @@ -487,41 +482,41 @@ msgid "Logout" msgstr "ãƒã‚°ã‚¢ã‚¦ãƒˆ" #: prefs.php:36 -#: prefs.php:122 -#: include/functions.php:1977 +#: prefs.php:121 +#: include/functions.php:1928 #: 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:1118 +#: include/functions.php:1754 #: 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 +542,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 +581,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:1127 +#: include/functions.php:1655 +#: include/functions.php:1740 +#: include/functions.php:1762 #: classes/opml.php:416 -#: classes/pref/feeds.php:221 +#: classes/pref/feeds.php:222 msgid "Uncategorized" msgstr "カテゴリー割り当ã¦ãªã—" @@ -606,366 +601,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:1116 +#: include/functions.php:1752 #: 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:1604 +#: classes/feeds.php:1101 +#: classes/pref/filters.php:427 msgid "All feeds" msgstr "ã™ã¹ã¦ã®ãƒ•ィード" -#: include/functions.php:1854 +#: include/functions.php:1805 msgid "Starred articles" msgstr "ãŠæ°—ã«å…¥ã‚Šã®è¨˜äº‹" -#: include/functions.php:1856 +#: include/functions.php:1807 msgid "Published articles" msgstr "公開済ã¿ã®è¨˜äº‹" -#: include/functions.php:1858 +#: include/functions.php:1809 msgid "Fresh articles" msgstr "æ–°ã—ã„記事" -#: include/functions.php:1862 +#: include/functions.php:1813 #, fuzzy msgid "Archived articles" msgstr "未èªè¨˜äº‹" -#: include/functions.php:1864 +#: include/functions.php:1815 msgid "Recently read" msgstr "最近èªã‚“ã " -#: include/functions.php:1927 +#: include/functions.php:1878 msgid "Navigation" msgstr "ナビゲーション" -#: include/functions.php:1928 +#: include/functions.php:1879 #, fuzzy msgid "Open next feed" msgstr "次ã®ãƒ•ィードを開ã" -#: include/functions.php:1929 +#: include/functions.php:1880 msgid "Open previous feed" msgstr "å‰ã®ãƒ•ィードを開ã" -#: include/functions.php:1930 +#: include/functions.php:1881 #, fuzzy msgid "Open next article" msgstr "次ã®è¨˜äº‹ã‚’é–‹ã" -#: include/functions.php:1931 +#: include/functions.php:1882 #, fuzzy msgid "Open previous article" msgstr "å‰ã®è¨˜äº‹ã‚’é–‹ã" -#: include/functions.php:1932 +#: include/functions.php:1883 msgid "Open next article (don't scroll long articles)" msgstr "次ã®è¨˜äº‹ã‚’é–‹ã(スクãƒãƒ¼ãƒ«ã—ãªã„)" -#: include/functions.php:1933 +#: include/functions.php:1884 msgid "Open previous article (don't scroll long articles)" msgstr "å‰ã®è¨˜äº‹ã‚’é–‹ã(スクãƒãƒ¼ãƒ«ã—ãªã„)" -#: include/functions.php:1934 +#: include/functions.php:1885 msgid "Show search dialog" msgstr "検索ダイアãƒã‚°ã‚’表示ã™ã‚‹" -#: include/functions.php:1935 +#: include/functions.php:1886 #, fuzzy msgid "Article" msgstr "ã™ã¹ã¦ã®è¨˜äº‹" -#: include/functions.php:1936 +#: include/functions.php:1887 msgid "Toggle starred" msgstr "ãŠæ°—ã«å…¥ã‚Šã‚’切り替ãˆã‚‹" -#: include/functions.php:1937 -#: js/viewfeed.js:1920 +#: include/functions.php:1888 +#: js/viewfeed.js:1908 msgid "Toggle published" msgstr "公開を切り替ãˆã‚‹" -#: include/functions.php:1938 -#: js/viewfeed.js:1898 +#: include/functions.php:1889 +#: js/viewfeed.js:1886 msgid "Toggle unread" msgstr "未èªã«åˆ‡ã‚Šæ›¿ãˆã‚‹" -#: include/functions.php:1939 +#: include/functions.php:1890 msgid "Edit tags" msgstr "タグを編集ã™ã‚‹" -#: include/functions.php:1940 +#: include/functions.php:1891 #, fuzzy msgid "Dismiss selected" msgstr "ラベルã‹ã‚‰é¸æŠžã—ãŸè¨˜äº‹ã‚’削除ã—ã¾ã™ã‹?" -#: include/functions.php:1941 +#: include/functions.php:1892 #, fuzzy msgid "Dismiss read" msgstr "公開記事" -#: include/functions.php:1942 +#: include/functions.php:1893 #, fuzzy msgid "Open in new window" msgstr "æ–°ã—ã„ウィンドウã§è¨˜äº‹ã‚’é–‹ã" -#: include/functions.php:1943 -#: js/viewfeed.js:1939 +#: include/functions.php:1894 +#: js/viewfeed.js:1927 #, fuzzy msgid "Mark below as read" msgstr "æ—¢èªã«ã™ã‚‹" -#: include/functions.php:1944 -#: js/viewfeed.js:1933 +#: include/functions.php:1895 +#: js/viewfeed.js:1921 #, fuzzy msgid "Mark above as read" msgstr "æ—¢èªã«ã™ã‚‹" -#: include/functions.php:1945 +#: include/functions.php:1896 #, fuzzy msgid "Scroll down" msgstr "下ã«ã‚¹ã‚¯ãƒãƒ¼ãƒ«" -#: include/functions.php:1946 +#: include/functions.php:1897 msgid "Scroll up" msgstr "上ã«ã‚¹ã‚¯ãƒãƒ¼ãƒ«" -#: include/functions.php:1947 +#: include/functions.php:1898 #, fuzzy msgid "Select article under cursor" msgstr "マウスカーソルã®ä¸‹ã®è¨˜äº‹ã‚’é¸æŠžã™ã‚‹" -#: include/functions.php:1948 +#: include/functions.php:1899 #, fuzzy msgid "Email article" msgstr "ã™ã¹ã¦ã®è¨˜äº‹" -#: include/functions.php:1949 +#: include/functions.php:1900 #, fuzzy msgid "Close/collapse article" msgstr "記事を消去ã™ã‚‹" -#: include/functions.php:1951 +#: include/functions.php:1902 #: plugins/embed_original/init.php:33 #, fuzzy msgid "Toggle embed original" msgstr "カテゴリーã®ä¸¦ã³æ›¿ãˆãƒ¢ãƒ¼ãƒ‰ã®åˆ‡ã‚Šæ›¿ãˆ" -#: include/functions.php:1952 +#: include/functions.php:1903 #, fuzzy msgid "Article selection" msgstr "有効ãªè¨˜äº‹ã®æ“作" -#: include/functions.php:1953 +#: include/functions.php:1904 #, fuzzy msgid "Select all articles" msgstr "記事を消去ã™ã‚‹" -#: include/functions.php:1954 +#: include/functions.php:1905 #, fuzzy msgid "Select unread" msgstr "未èªè¨˜äº‹ã‚’削除ã™ã‚‹" -#: include/functions.php:1955 +#: include/functions.php:1906 #, fuzzy msgid "Select starred" msgstr "ãŠæ°—ã«å…¥ã‚Šã«è¨å®šã™ã‚‹" -#: include/functions.php:1956 +#: include/functions.php:1907 #, fuzzy msgid "Select published" msgstr "未èªè¨˜äº‹ã‚’削除ã™ã‚‹" -#: include/functions.php:1957 +#: include/functions.php:1908 #, fuzzy msgid "Invert selection" msgstr "有効ãªè¨˜äº‹ã®æ“作" -#: include/functions.php:1958 +#: include/functions.php:1909 #, fuzzy msgid "Deselect everything" msgstr "記事を消去ã™ã‚‹" -#: include/functions.php:1959 -#: classes/pref/feeds.php:520 -#: classes/pref/feeds.php:753 +#: include/functions.php:1910 +#: classes/pref/feeds.php:521 +#: classes/pref/feeds.php:754 msgid "Feed" msgstr "フィード" -#: include/functions.php:1960 +#: include/functions.php:1911 #, fuzzy msgid "Refresh current feed" msgstr "有効ãªãƒ•ã‚£ãƒ¼ãƒ‰ã®æ›´æ–°" -#: include/functions.php:1961 +#: include/functions.php:1912 #, fuzzy msgid "Un/hide read feeds" msgstr "èªã‚“ã ãƒ•ã‚£ãƒ¼ãƒ‰ã‚’éš ã™/å†è¡¨ç¤ºã™ã‚‹" -#: include/functions.php:1962 -#: classes/pref/feeds.php:1274 +#: include/functions.php:1913 +#: classes/pref/feeds.php:1275 msgid "Subscribe to feed" msgstr "フィードを購èªã™ã‚‹" -#: include/functions.php:1963 +#: include/functions.php:1914 #: js/FeedTree.js:135 #: js/PrefFeedTree.js:67 msgid "Edit feed" msgstr "フィードを編集ã™ã‚‹" -#: include/functions.php:1965 +#: include/functions.php:1916 #, fuzzy msgid "Reverse headlines" msgstr "ヘッドラインã®é€†é † (å¤ã„ã‚‚ã®ãŒä¸Š)" -#: include/functions.php:1966 +#: include/functions.php:1917 #, fuzzy msgid "Debug feed update" msgstr "ã™ã¹ã¦ã®ãƒ•ィードを更新ã—ã¾ã—ãŸã€‚" -#: include/functions.php:1967 +#: include/functions.php:1918 #: js/FeedTree.js:178 msgid "Mark all feeds as read" msgstr "ã™ã¹ã¦ã®ãƒ•ィードを既èªã«è¨å®šã™ã‚‹" -#: include/functions.php:1968 +#: include/functions.php:1919 #, fuzzy msgid "Un/collapse current category" msgstr "カテゴリーã®é–‹é–‰" -#: include/functions.php:1969 +#: include/functions.php:1920 #, fuzzy msgid "Toggle combined mode" msgstr "カテゴリーã®ä¸¦ã³æ›¿ãˆãƒ¢ãƒ¼ãƒ‰ã®åˆ‡ã‚Šæ›¿ãˆ" -#: include/functions.php:1970 +#: include/functions.php:1921 #, fuzzy msgid "Toggle auto expand in combined mode" msgstr "カテゴリーã®ä¸¦ã³æ›¿ãˆãƒ¢ãƒ¼ãƒ‰ã®åˆ‡ã‚Šæ›¿ãˆ" -#: include/functions.php:1971 +#: include/functions.php:1922 #, fuzzy msgid "Go to" msgstr "移動..." -#: include/functions.php:1973 +#: include/functions.php:1924 #, fuzzy msgid "Fresh" msgstr "å†æç”»" -#: include/functions.php:1976 +#: include/functions.php:1927 +#: js/tt-rss.js:431 +#: js/tt-rss.js:584 msgid "Tag cloud" msgstr "タグクラウド" -#: include/functions.php:1978 +#: include/functions.php:1929 #, fuzzy msgid "Other" msgstr "ãã®ä»–:" -#: include/functions.php:1979 +#: include/functions.php:1930 #: classes/pref/labels.php:281 msgid "Create label" msgstr "ラベルを作æˆã™ã‚‹" -#: include/functions.php:1980 -#: classes/pref/filters.php:606 +#: include/functions.php:1931 +#: classes/pref/filters.php:654 msgid "Create filter" msgstr "フィルターを作æˆã™ã‚‹" -#: include/functions.php:1981 +#: include/functions.php:1932 #, fuzzy msgid "Un/collapse sidebar" msgstr "サイドãƒãƒ¼ã‚’縮å°ã™ã‚‹" -#: include/functions.php:1982 +#: include/functions.php:1933 #, fuzzy msgid "Show help dialog" msgstr "検索ダイアãƒã‚°ã‚’表示ã™ã‚‹" -#: include/functions.php:2467 +#: include/functions.php:2418 #, fuzzy, php-format msgid "Search results: %s" msgstr "æ¤œç´¢çµæžœ" -#: include/functions.php:2958 -#: js/viewfeed.js:2026 +#: include/functions.php:2909 +#: js/viewfeed.js:2014 #, fuzzy msgid "Click to play" msgstr "クリックã§è¡¨ç¤º" -#: include/functions.php:2959 -#: js/viewfeed.js:2025 +#: include/functions.php:2910 +#: js/viewfeed.js:2013 msgid "Play" msgstr "表示" -#: include/functions.php:3076 +#: include/functions.php:3027 msgid " - " msgstr " - " -#: include/functions.php:3098 -#: include/functions.php:3392 +#: include/functions.php:3049 +#: include/functions.php:3343 #: classes/rpc.php:408 msgid "no tags" msgstr "ã‚¿ã‚°ãŒã‚りã¾ã›ã‚“" -#: include/functions.php:3108 -#: classes/feeds.php:682 +#: include/functions.php:3059 +#: classes/feeds.php:686 msgid "Edit tags for this article" msgstr "ã“ã®è¨˜äº‹ã®ã‚¿ã‚°ã‚’編集ã™ã‚‹" -#: include/functions.php:3137 -#: classes/feeds.php:638 +#: include/functions.php:3088 +#: classes/feeds.php:642 #, fuzzy msgid "Originally from:" msgstr "å…ƒã®è¨˜äº‹å†…容を表示ã™ã‚‹" -#: include/functions.php:3150 -#: classes/feeds.php:651 -#: classes/pref/feeds.php:539 +#: include/functions.php:3101 +#: classes/feeds.php:655 +#: 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:3132 +#: 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/users.php:99 +#: 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:3368 #, fuzzy msgid "(edit note)" msgstr "ノートã®ç·¨é›†" -#: include/functions.php:3650 +#: include/functions.php:3601 msgid "unknown type" msgstr "未知ã®ç¨®é¡ž" -#: include/functions.php:3706 +#: include/functions.php:3657 #, fuzzy msgid "Attachments" msgstr "添付:" @@ -1011,7 +1004,7 @@ msgid "Assign tags" msgstr "ã‚¿ã‚°ã®å‰²ã‚Šå½“ã¦" #: include/localized_schema.php:14 -#: js/viewfeed.js:1990 +#: js/viewfeed.js:1978 msgid "Assign label" msgstr "ラベルã®å‰²ã‚Šå½“ã¦" @@ -1199,7 +1192,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 +1220,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 +1238,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 +1248,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 +1264,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:55 +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:176 +#: 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:1028 +#: classes/feeds.php:1080 +#: classes/feeds.php:1140 +#: classes/pref/users.php:178 +#: 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/pref/users.php:378 +#: classes/handler/public.php:764 +#: classes/pref/users.php:360 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 +1527,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:345 +#: 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:347 +#: 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 +1603,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 "標準" @@ -1839,60 +1623,163 @@ msgstr "è¨˜äº‹ã‚’ãŠæ°—ã«å…¥ã‚Šã«ã™ã‚‹" msgid "Feed:" msgstr "フィード:" -#: classes/feeds.php:201 -#: classes/feeds.php:827 +#: classes/feeds.php:205 +#: classes/feeds.php:831 msgid "Feed not found." msgstr "フィードãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“。" -#: classes/feeds.php:384 +#: classes/feeds.php:388 #, fuzzy, php-format msgid "Imported at %s" msgstr "インãƒãƒ¼ãƒˆ" -#: classes/feeds.php:531 +#: classes/feeds.php:535 msgid "mark as read" msgstr "æ—¢èªã«ã™ã‚‹" -#: classes/feeds.php:582 +#: classes/feeds.php:586 #, fuzzy msgid "Collapse article" msgstr "記事を消去ã™ã‚‹" -#: classes/feeds.php:728 +#: classes/feeds.php:732 msgid "No unread articles found to display." msgstr "表示ã™ã‚‹æœªèªè¨˜äº‹ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“ã§ã—ãŸã€‚" -#: classes/feeds.php:731 +#: classes/feeds.php:735 msgid "No updated articles found to display." msgstr "表示ã™ã‚‹æ›´æ–°ã•れãŸè¨˜äº‹ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“ã§ã—ãŸã€‚" -#: classes/feeds.php:734 +#: classes/feeds.php:738 msgid "No starred articles found to display." msgstr "表示ã™ã‚‹ãŠæ°—ã«å…¥ã‚Šã®è¨˜äº‹ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“ã§ã—ãŸã€‚" -#: classes/feeds.php:738 +#: classes/feeds.php:742 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 +#: classes/feeds.php:744 msgid "No articles found to display." msgstr "表示ã™ã‚‹è¨˜äº‹ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“。" -#: classes/feeds.php:755 -#: classes/feeds.php:920 +#: classes/feeds.php:759 +#: classes/feeds.php:923 #, php-format msgid "Feeds last updated at %s" msgstr "" -#: classes/feeds.php:765 -#: classes/feeds.php:930 +#: classes/feeds.php:769 +#: classes/feeds.php:933 msgid "Some feeds have update errors (click for details)" msgstr "ã„ãã¤ã‹ã®ãƒ•ã‚£ãƒ¼ãƒ‰ã®æ›´æ–°ã‚¨ãƒ©ãƒ¼ã§ã™ (詳細ã¯ã‚¯ãƒªãƒƒã‚¯ã—ã¦ãã ã•ã„)" -#: classes/feeds.php:910 +#: classes/feeds.php:913 msgid "No feed selected." msgstr "フィードã¯é¸æŠžã•れã¦ã„ã¾ã›ã‚“。" +#: classes/feeds.php:966 +#: classes/feeds.php:974 +#, fuzzy +msgid "Feed or site URL" +msgstr "フィード" + +#: classes/feeds.php:980 +#: classes/pref/feeds.php:560 +#: classes/pref/feeds.php:782 +#: classes/pref/feeds.php:1761 +msgid "Place in category:" +msgstr "カテゴリーã®å ´æ‰€:" + +#: classes/feeds.php:988 +#, fuzzy +msgid "Available feeds" +msgstr "ã™ã¹ã¦ã®ãƒ•ィード" + +#: classes/feeds.php:1000 +#: classes/pref/users.php:139 +#: classes/pref/feeds.php:590 +#: classes/pref/feeds.php:818 +msgid "Authentication" +msgstr "èªè¨¼" + +#: classes/feeds.php:1004 +#: classes/pref/users.php:402 +#: classes/pref/feeds.php:596 +#: classes/pref/feeds.php:822 +#: classes/pref/feeds.php:1775 +msgid "Login" +msgstr "ãƒã‚°ã‚¤ãƒ³" + +#: classes/feeds.php:1007 +#: 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:1017 +msgid "This feed requires authentication." +msgstr "ã“ã®ãƒ•ィードã¯èªè¨¼ã‚’è¦æ±‚ã—ã¾ã™ã€‚" + +#: classes/feeds.php:1022 +#: classes/feeds.php:1078 +#: classes/pref/feeds.php:1796 +msgid "Subscribe" +msgstr "è³¼èª" + +#: classes/feeds.php:1025 +#, fuzzy +msgid "More feeds" +msgstr "ã•らãªã‚‹ãƒ•ィード" + +#: classes/feeds.php:1048 +#: classes/feeds.php:1139 +#: classes/pref/users.php:332 +#: classes/pref/filters.php:641 +#: classes/pref/feeds.php:1259 +#: js/tt-rss.js:170 +msgid "Search" +msgstr "検索" + +#: classes/feeds.php:1052 +#, fuzzy +msgid "Popular feeds" +msgstr "フィードã®è¡¨ç¤º" + +#: classes/feeds.php:1053 +#, fuzzy +msgid "Feed archive" +msgstr "フィードæ“作" + +#: classes/feeds.php:1056 +#, fuzzy +msgid "limit:" +msgstr "制é™:" + +#: classes/feeds.php:1079 +#: classes/pref/users.php:358 +#: 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:1090 +msgid "Look for" +msgstr "" + +#: classes/feeds.php:1098 +msgid "Limit search to:" +msgstr "対象範囲" + +#: classes/feeds.php:1114 +msgid "This feed" +msgstr "ã“ã®ãƒ•ィード" + #: classes/backend.php:33 msgid "Other interface tips are available in the Tiny Tiny RSS wiki." msgstr "" @@ -1967,7 +1854,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 "ドã‚ュメントã®è§£æžä¸ã®ã‚¨ãƒ©ãƒ¼ã§ã™ã€‚" @@ -1976,123 +1863,133 @@ msgstr "ドã‚ュメントã®è§£æžä¸ã®ã‚¨ãƒ©ãƒ¼ã§ã™ã€‚" 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 +#: classes/pref/users.php:34 msgid "User not found" msgstr "ユーザーãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“" -#: classes/pref/users.php:60 -#: classes/pref/users.php:422 +#: classes/pref/users.php:53 +#: classes/pref/users.php:404 msgid "Registered" msgstr "登録済ã¿" -#: classes/pref/users.php:61 +#: classes/pref/users.php:54 msgid "Last logged in" msgstr "最終ãƒã‚°ã‚¤ãƒ³" -#: classes/pref/users.php:68 +#: classes/pref/users.php:61 msgid "Subscribed feeds count" msgstr "è³¼èªãƒ•ィード数" -#: classes/pref/users.php:72 +#: classes/pref/users.php:65 msgid "Subscribed feeds" msgstr "è³¼èªã—ãŸãƒ•ィード" -#: classes/pref/users.php:122 -msgid "User Editor" -msgstr "ユーザーエディター" - -#: classes/pref/users.php:158 +#: classes/pref/users.php:142 msgid "Access level: " msgstr "アクセスレベル: " -#: classes/pref/users.php:171 +#: classes/pref/users.php:155 msgid "Change password to" msgstr "次ã®ãƒ‘スワードã«å¤‰æ›´ã™ã‚‹:" -#: classes/pref/users.php:177 -#: classes/pref/feeds.php:609 -#: classes/pref/feeds.php:833 +#: classes/pref/users.php:161 +#: classes/pref/feeds.php:610 +#: classes/pref/feeds.php:834 msgid "Options" msgstr "オプション" -#: classes/pref/users.php:180 +#: classes/pref/users.php:164 msgid "E-mail: " msgstr "é›»åメール: " -#: classes/pref/users.php:258 +#: classes/pref/users.php:240 #, 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 +#: classes/pref/users.php:247 #, php-format msgid "Could not create user <b>%s</b>" msgstr "ユーザー <b>%s</b> ã®è¿½åŠ ä¸ã§ã™ã€‚" -#: classes/pref/users.php:269 +#: classes/pref/users.php:251 #, php-format msgid "User <b>%s</b> already exists." msgstr "ユーザー <b>%s</b> ã¯æ—¢ã«å˜åœ¨ã—ã¾ã™ã€‚" -#: classes/pref/users.php:291 +#: classes/pref/users.php:273 #, fuzzy, php-format msgid "Changed password of user <b>%s</b> to <b>%s</b>" msgstr "" "ユーザー <b>%s</b> ã®ãƒ‘スワードを\n" " <b>%s</b>ã«å¤‰æ›´ã—ã¾ã—ãŸ" -#: classes/pref/users.php:293 +#: classes/pref/users.php:275 #, fuzzy, php-format msgid "Sending new password of user <b>%s</b> to <b>%s</b>" msgstr "" "ユーザー <b>%s</b> ã®ãƒ‘スワードを\n" " <b>%s</b>ã«å¤‰æ›´ã—ã¾ã—ãŸ" -#: classes/pref/users.php:317 +#: classes/pref/users.php:299 msgid "[tt-rss] Password change notification" msgstr "[tt-rss] パスワード変更通知" -#: classes/pref/users.php:368 +#: classes/pref/users.php:342 +#: 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:350 msgid "Create user" msgstr "ユーザーã®ä½œæˆ" -#: classes/pref/users.php:372 +#: classes/pref/users.php:354 #, fuzzy msgid "Details" msgstr "毎日" -#: classes/pref/users.php:374 -#: classes/pref/filters.php:612 +#: classes/pref/users.php:356 +#: classes/pref/filters.php:660 #: plugins/instances/init.php:296 msgid "Edit" msgstr "編集" -#: classes/pref/users.php:421 +#: classes/pref/users.php:403 msgid "Access Level" msgstr "アクセスレベル" -#: classes/pref/users.php:423 +#: classes/pref/users.php:405 msgid "Last login" msgstr "最終ãƒã‚°ã‚¤ãƒ³" -#: classes/pref/users.php:444 +#: classes/pref/users.php:426 #: plugins/instances/init.php:337 msgid "Click to edit" msgstr "編集ã™ã‚‹ã«ã¯ã‚¯ãƒªãƒƒã‚¯" -#: classes/pref/users.php:464 +#: classes/pref/users.php:446 msgid "No users defined." msgstr "ユーザーãŒå®šç¾©ã•れã¦ã„ã¾ã›ã‚“。" -#: classes/pref/users.php:466 +#: classes/pref/users.php:448 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 +2017,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 +2370,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 +2935,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 +2961,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 +3018,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 +3087,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 +3287,7 @@ msgstr "カテゴリーã®ç·¨é›†" msgid "Remove category" msgstr "カテゴリーã®ä½œæˆ" -#: js/PrefFilterTree.js:32 +#: js/PrefFilterTree.js:48 #, fuzzy msgid "Inverse" msgstr "å転" @@ -3322,6 +3304,10 @@ msgstr "ユーザーãŒè¿½åŠ ã§ãã¾ã›ã‚“: ãƒã‚°ã‚¤ãƒ³åãŒæŒ‡å®šã•れã¦ã msgid "Adding user..." msgstr "ãƒ¦ãƒ¼ã‚¶ãƒ¼ã‚’è¿½åŠ ã—ã¦ã„ã¾ã™..." +#: js/prefs.js:94 +msgid "User Editor" +msgstr "ユーザーエディター" + #: js/prefs.js:117 #, fuzzy msgid "Edit Filter" @@ -3345,7 +3331,7 @@ msgid "Removing selected labels..." msgstr "é¸æŠžã—ãŸãƒ©ãƒ™ãƒ«ã‚’削除ã—ã¦ã„ã¾ã™..." #: js/prefs.js:295 -#: js/prefs.js:1396 +#: js/prefs.js:1384 msgid "No labels are selected." msgstr "é¸æŠžã•れãŸãƒ©ãƒ™ãƒ«ã¯ã‚りã¾ã›ã‚“。" @@ -3429,6 +3415,10 @@ msgstr "é¸æŠžã—ãŸãƒ¦ãƒ¼ã‚¶ãƒ¼ã®ãƒ‘スワードをリセットã—ã¾ã™ã‹?" msgid "Resetting password for selected user..." msgstr "é¸æŠžã—ãŸãƒ¦ãƒ¼ã‚¶ãƒ¼ã®ãƒ‘スワードをリセットã—ã¦ã„ã¾ã™..." +#: js/prefs.js:585 +msgid "User details" +msgstr "ユーザーã®è©³ç´°" + #: js/prefs.js:602 msgid "Please select only one filter." msgstr "フィルターをã²ã¨ã¤ã ã‘é¸æŠžã—ã¦ãã ã•ã„。" @@ -3452,161 +3442,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 +3618,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 +3677,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 +3913,26 @@ msgstr "è¨˜äº‹ã‚’ãŠæ°—ã«å…¥ã‚Šã«ã™ã‚‹" msgid "Live updating is considered experimental. Backup your tt-rss directory before continuing. Please type 'yes' to continue." msgstr "" +#, fuzzy +#~ msgid "Refresh" +#~ 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 表ç¾ã¨ãƒ©ãƒ™ãƒ«" diff --git a/locale/lv_LV/LC_MESSAGES/messages.mo b/locale/lv_LV/LC_MESSAGES/messages.mo Binary files differindex 473438d9c..46acf94db 100644 --- a/locale/lv_LV/LC_MESSAGES/messages.mo +++ b/locale/lv_LV/LC_MESSAGES/messages.mo diff --git a/locale/lv_LV/LC_MESSAGES/messages.po b/locale/lv_LV/LC_MESSAGES/messages.po index 4814044fa..e4cde5e15 100644 --- a/locale/lv_LV/LC_MESSAGES/messages.po +++ b/locale/lv_LV/LC_MESSAGES/messages.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: 1.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-31 12:47+0400\n" +"POT-Creation-Date: 2013-04-01 19:15+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" @@ -89,7 +89,7 @@ msgid "Weekly" msgstr "Ik nedēļu" #: backend.php:101 -#: classes/pref/users.php:139 +#: classes/pref/users.php:123 msgid "User" msgstr "LietotÄjs" @@ -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,38 @@ 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:273 +#: prefs.php:103 +#: test.php:11 #: 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 +308,13 @@ msgid "All Articles" msgstr "Visus rakstus" #: index.php:176 -#: include/functions.php:1974 +#: include/functions.php:1925 #: classes/feeds.php:106 msgid "Starred" msgstr "Zvaigžņotos" #: index.php:177 -#: include/functions.php:1975 +#: include/functions.php:1926 #: classes/feeds.php:107 msgid "Published" msgstr "PublicÄ“tos" @@ -352,135 +354,128 @@ 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:237 +#: include/functions.php:1915 #: include/localized_schema.php:10 #: classes/feeds.php:111 -#: classes/feeds.php:136 -#: classes/feeds.php:437 +#: classes/feeds.php:441 #: js/FeedTree.js:128 #: js/FeedTree.js:156 #: plugins/digest/digest.js:647 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:1811 +#: include/functions.php:1923 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:214 msgid "Communication problem with server." msgstr "" -#: index.php:220 +#: index.php:222 msgid "New version of Tiny Tiny RSS is available!" msgstr "Ir pieejama jauna Tiny Tiny RSS versija!" -#: index.php:225 +#: index.php:227 msgid "Actions..." msgstr "DarbÄ«bas" -#: index.php:227 +#: index.php:229 #, fuzzy msgid "Preferences..." msgstr "IestatÄ«jumi" -#: index.php:228 +#: index.php:230 msgid "Search..." msgstr "MeklÄ“t" -#: index.php:229 +#: index.php:231 msgid "Feed actions:" msgstr "Barotnes darbÄ«bas" -#: index.php:230 -#: classes/handler/public.php:555 +#: index.php:232 +#: classes/handler/public.php:556 msgid "Subscribe to feed..." msgstr "AbonÄ“t barotni..." -#: index.php:231 +#: index.php:233 msgid "Edit this feed..." msgstr "Rediģēt Å¡o barotni..." -#: index.php:232 +#: index.php:234 msgid "Rescore feed" msgstr "PÄrvÄ“rtÄ“t barotni" -#: index.php:233 -#: classes/pref/feeds.php:716 -#: classes/pref/feeds.php:1303 +#: index.php:235 +#: classes/pref/feeds.php:717 +#: classes/pref/feeds.php:1304 #: js/PrefFeedTree.js:73 msgid "Unsubscribe" msgstr "Atteikties" -#: index.php:234 +#: index.php:236 msgid "All feeds:" msgstr "Visas barotnes:" -#: index.php:236 +#: index.php:238 msgid "(Un)hide read feeds" msgstr "(Ne)rÄdÄ«t lasÄ«tÄs barotnes" -#: index.php:237 +#: index.php:239 msgid "Other actions:" msgstr "Citas darbÄ«bas:" -#: index.php:239 +#: index.php:241 msgid "Switch to digest..." msgstr "PÄrslÄ“gties uz Ä«ssavilkumu..." -#: index.php:241 +#: index.php:243 msgid "Show tag cloud..." msgstr "RadÄ«t birku mÄkoni..." -#: index.php:242 -#: include/functions.php:1950 +#: index.php:244 +#: include/functions.php:1901 #, fuzzy msgid "Toggle widescreen mode" msgstr "PÄrslÄ“gt zvaigžņoÅ¡anu" -#: index.php:243 +#: index.php:245 msgid "Select by tags..." msgstr "AtlasÄ«t pÄ“c iezÄ«mÄ“m..." -#: index.php:244 +#: index.php:246 msgid "Create label..." msgstr "Izveidot iezÄ«mi" -#: index.php:245 +#: index.php:247 msgid "Create filter..." msgstr "Izveidot filtru..." -#: index.php:246 +#: index.php:248 msgid "Keyboard shortcuts help" msgstr "IsinÄjumtaustiņu palÄ«dzÄ«ba" -#: index.php:248 +#: index.php:257 #: plugins/digest/digest_body.php:77 #: plugins/mobile/mobile-functions.php:62 #: plugins/mobile/mobile-functions.php:237 @@ -488,41 +483,41 @@ msgid "Logout" msgstr "Atteikties" #: prefs.php:36 -#: prefs.php:122 -#: include/functions.php:1977 +#: prefs.php:121 +#: include/functions.php:1928 #: 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:1118 +#: include/functions.php:1754 #: 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 +543,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 +581,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:1127 +#: include/functions.php:1655 +#: include/functions.php:1740 +#: include/functions.php:1762 #: classes/opml.php:416 -#: classes/pref/feeds.php:221 +#: classes/pref/feeds.php:222 msgid "Uncategorized" msgstr "NekategorizÄ“ts" @@ -606,356 +601,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:1116 +#: include/functions.php:1752 #: 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:1604 +#: classes/feeds.php:1101 +#: classes/pref/filters.php:427 msgid "All feeds" msgstr "Visas barotnes" -#: include/functions.php:1854 +#: include/functions.php:1805 msgid "Starred articles" msgstr "Zvaigžņotie raksti" -#: include/functions.php:1856 +#: include/functions.php:1807 msgid "Published articles" msgstr "PublicÄ“tie raksti" -#: include/functions.php:1858 +#: include/functions.php:1809 msgid "Fresh articles" msgstr "JaunÄkie raksti" -#: include/functions.php:1862 +#: include/functions.php:1813 msgid "Archived articles" msgstr "ArhivÄ“tie raksti" -#: include/functions.php:1864 +#: include/functions.php:1815 msgid "Recently read" msgstr "Nesen lasÄ«tie raksti" -#: include/functions.php:1927 +#: include/functions.php:1878 msgid "Navigation" msgstr "NavigÄcija" -#: include/functions.php:1928 +#: include/functions.php:1879 #, fuzzy msgid "Open next feed" msgstr "PÄ“c noÄ·erÅ¡anas rÄdÄ«t nÄkamo barotni" -#: include/functions.php:1929 +#: include/functions.php:1880 msgid "Open previous feed" msgstr "" -#: include/functions.php:1930 +#: include/functions.php:1881 #, fuzzy msgid "Open next article" msgstr "AtvÄ“rt sÄkotnÄ“jo rakstu" -#: include/functions.php:1931 +#: include/functions.php:1882 #, fuzzy msgid "Open previous article" msgstr "AtvÄ“rt sÄkotnÄ“jo rakstu" -#: include/functions.php:1932 +#: include/functions.php:1883 msgid "Open next article (don't scroll long articles)" msgstr "" -#: include/functions.php:1933 +#: include/functions.php:1884 msgid "Open previous article (don't scroll long articles)" msgstr "" -#: include/functions.php:1934 +#: include/functions.php:1885 msgid "Show search dialog" msgstr "RÄdÄ«t meklēšanas logu" -#: include/functions.php:1935 +#: include/functions.php:1886 #, fuzzy msgid "Article" msgstr "Visus rakstus" -#: include/functions.php:1936 +#: include/functions.php:1887 msgid "Toggle starred" msgstr "PÄrslÄ“gt zvaigžņoÅ¡anu" -#: include/functions.php:1937 -#: js/viewfeed.js:1920 +#: include/functions.php:1888 +#: js/viewfeed.js:1908 msgid "Toggle published" msgstr "PÄrslÄ“gt publicēšanu" -#: include/functions.php:1938 -#: js/viewfeed.js:1898 +#: include/functions.php:1889 +#: js/viewfeed.js:1886 msgid "Toggle unread" msgstr "PÄrslÄ“gt nelasÄ«tu" -#: include/functions.php:1939 +#: include/functions.php:1890 msgid "Edit tags" msgstr "Rediģēt iezÄ«mes" -#: include/functions.php:1940 +#: include/functions.php:1891 #, fuzzy msgid "Dismiss selected" msgstr "Atmest atlasÄ«tos rakstus" -#: include/functions.php:1941 +#: include/functions.php:1892 #, fuzzy msgid "Dismiss read" msgstr "Atmest lasÄ«tos rakstus" -#: include/functions.php:1942 +#: include/functions.php:1893 #, fuzzy msgid "Open in new window" msgstr "AtvÄ“rt rakstu jaunÄ logÄ" -#: include/functions.php:1943 -#: js/viewfeed.js:1939 +#: include/functions.php:1894 +#: 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:1895 +#: 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:1896 #, fuzzy msgid "Scroll down" msgstr "Viss izdarÄ«ts." -#: include/functions.php:1946 +#: include/functions.php:1897 msgid "Scroll up" msgstr "" -#: include/functions.php:1947 +#: include/functions.php:1898 #, fuzzy msgid "Select article under cursor" msgstr "IezÄ«mÄ“t rakstu zem peles kursora" -#: include/functions.php:1948 +#: include/functions.php:1899 msgid "Email article" msgstr "NosÅ«tÄ«t rakstu uz e-pastu" -#: include/functions.php:1949 +#: include/functions.php:1900 #, fuzzy msgid "Close/collapse article" msgstr "AizvÄ“rt rakstu" -#: include/functions.php:1951 +#: include/functions.php:1902 #: plugins/embed_original/init.php:33 #, fuzzy msgid "Toggle embed original" msgstr "PÄrslÄ“gt publicēšanu" -#: include/functions.php:1952 +#: include/functions.php:1903 #, fuzzy msgid "Article selection" msgstr "Apgriezt rakstu iezÄ«mēšanu" -#: include/functions.php:1953 +#: include/functions.php:1904 msgid "Select all articles" msgstr "IezÄ«mÄ“t visus rakstus" -#: include/functions.php:1954 +#: include/functions.php:1905 #, fuzzy msgid "Select unread" msgstr "IezÄ«mÄ“t nelasÄ«tos rakstus" -#: include/functions.php:1955 +#: include/functions.php:1906 #, fuzzy msgid "Select starred" msgstr "Uzlikt zvaigzni" -#: include/functions.php:1956 +#: include/functions.php:1907 #, fuzzy msgid "Select published" msgstr "IezÄ«mÄ“t publicÄ“tos rakstus" -#: include/functions.php:1957 +#: include/functions.php:1908 #, fuzzy msgid "Invert selection" msgstr "Apgriezt rakstu iezÄ«mēšanu" -#: include/functions.php:1958 +#: include/functions.php:1909 #, 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:1910 +#: classes/pref/feeds.php:521 +#: classes/pref/feeds.php:754 msgid "Feed" msgstr "Barotne" -#: include/functions.php:1960 +#: include/functions.php:1911 #, fuzzy msgid "Refresh current feed" msgstr "Atjaunot aktÄ«vo barotni" -#: include/functions.php:1961 +#: include/functions.php:1912 #, 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:1913 +#: classes/pref/feeds.php:1275 msgid "Subscribe to feed" msgstr "AbonÄ“t barotni" -#: include/functions.php:1963 +#: include/functions.php:1914 #: js/FeedTree.js:135 #: js/PrefFeedTree.js:67 msgid "Edit feed" msgstr "Rediģēt barotni" -#: include/functions.php:1965 +#: include/functions.php:1916 #, fuzzy msgid "Reverse headlines" msgstr "Apgriezt virsrakstu secÄ«bu" -#: include/functions.php:1966 +#: include/functions.php:1917 #, fuzzy msgid "Debug feed update" msgstr "AtslÄ“gt atjaunojumus" -#: include/functions.php:1967 +#: include/functions.php:1918 #: 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:1919 #, fuzzy msgid "Un/collapse current category" msgstr "Ievietot kategorijÄ:" -#: include/functions.php:1969 +#: include/functions.php:1920 #, fuzzy msgid "Toggle combined mode" msgstr "PÄrslÄ“gt publicēšanu" -#: include/functions.php:1970 +#: include/functions.php:1921 #, fuzzy msgid "Toggle auto expand in combined mode" msgstr "PÄrslÄ“gt publicēšanu" -#: include/functions.php:1971 +#: include/functions.php:1922 #, fuzzy msgid "Go to" msgstr "Doties uz..." -#: include/functions.php:1973 +#: include/functions.php:1924 msgid "Fresh" msgstr "" -#: include/functions.php:1976 +#: include/functions.php:1927 +#: 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:1929 #, fuzzy msgid "Other" msgstr "Citas barotnes" -#: include/functions.php:1979 +#: include/functions.php:1930 #: classes/pref/labels.php:281 msgid "Create label" msgstr "Izveidot etiÄ·eti" -#: include/functions.php:1980 -#: classes/pref/filters.php:606 +#: include/functions.php:1931 +#: classes/pref/filters.php:654 msgid "Create filter" msgstr "Izveidot filtru" -#: include/functions.php:1981 +#: include/functions.php:1932 #, fuzzy msgid "Un/collapse sidebar" msgstr "Sakļaut sÄnjoslu" -#: include/functions.php:1982 +#: include/functions.php:1933 #, fuzzy msgid "Show help dialog" msgstr "RÄdÄ«t meklēšanas logu" -#: include/functions.php:2467 +#: include/functions.php:2418 #, php-format msgid "Search results: %s" msgstr "Meklēšanas rezultÄti: %s" -#: include/functions.php:2958 -#: js/viewfeed.js:2026 +#: include/functions.php:2909 +#: 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:2910 +#: js/viewfeed.js:2013 msgid "Play" msgstr "Atskaņot" -#: include/functions.php:3076 +#: include/functions.php:3027 msgid " - " msgstr "–" -#: include/functions.php:3098 -#: include/functions.php:3392 +#: include/functions.php:3049 +#: include/functions.php:3343 #: classes/rpc.php:408 msgid "no tags" msgstr "nav iezÄ«mju" -#: include/functions.php:3108 -#: classes/feeds.php:682 +#: include/functions.php:3059 +#: classes/feeds.php:686 msgid "Edit tags for this article" msgstr "Rediģēt šī raksta iezÄ«mes" -#: include/functions.php:3137 -#: classes/feeds.php:638 +#: include/functions.php:3088 +#: classes/feeds.php:642 msgid "Originally from:" msgstr "SÄkotnÄ“jais no:" -#: include/functions.php:3150 -#: classes/feeds.php:651 -#: classes/pref/feeds.php:539 +#: include/functions.php:3101 +#: classes/feeds.php:655 +#: 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:3132 +#: 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/users.php:99 +#: 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:3368 msgid "(edit note)" msgstr "(rediģēt piezÄ«mi)" -#: include/functions.php:3650 +#: include/functions.php:3601 msgid "unknown type" msgstr "nezinÄms tips" -#: include/functions.php:3706 +#: include/functions.php:3657 msgid "Attachments" msgstr "Pielikumi" @@ -999,7 +992,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 +1176,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 +1201,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 +1219,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 +1228,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 +1243,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:55 +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:176 +#: 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:1028 +#: classes/feeds.php:1080 +#: classes/feeds.php:1140 +#: classes/pref/users.php:178 +#: 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/pref/users.php:378 +#: classes/handler/public.php:764 +#: classes/pref/users.php:360 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 +1492,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:345 +#: 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:347 +#: 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 +1564,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" @@ -1781,60 +1582,156 @@ msgstr "PÄrsÅ«tÄ«t e-pastÄ" msgid "Feed:" msgstr "Barotne:" -#: classes/feeds.php:201 -#: classes/feeds.php:827 +#: classes/feeds.php:205 +#: classes/feeds.php:831 msgid "Feed not found." msgstr "Barotne netika atrasta." -#: classes/feeds.php:384 +#: classes/feeds.php:388 #, fuzzy, php-format msgid "Imported at %s" msgstr "Imports" -#: classes/feeds.php:531 +#: classes/feeds.php:535 msgid "mark as read" msgstr "iezÄ«mÄ“t kÄ lasÄ«tu" -#: classes/feeds.php:582 +#: classes/feeds.php:586 #, fuzzy msgid "Collapse article" msgstr "AizvÄ“rt rakstu" -#: classes/feeds.php:728 +#: classes/feeds.php:732 msgid "No unread articles found to display." msgstr "Nav neizlasÄ«tu rakstu, ko rÄdÄ«t." -#: classes/feeds.php:731 +#: classes/feeds.php:735 msgid "No updated articles found to display." msgstr "Nav atjaunotu rakstu, ko rÄdÄ«t." -#: classes/feeds.php:734 +#: classes/feeds.php:738 msgid "No starred articles found to display." msgstr "Nav zvaigžņotu rakstu, ko rÄdÄ«t." -#: classes/feeds.php:738 +#: classes/feeds.php:742 msgid "No articles found to display. You can assign articles to labels manually (see the Actions menu above) or use a filter." msgstr "Netika atrasti parÄdÄmi raksti. JÅ«s varat pievienot rakstus etiÄ·etÄ“m manuÄli (skatiet darbÄ«bu izvÄ“lni), vai arÄ« ar filtru." -#: classes/feeds.php:740 +#: classes/feeds.php:744 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:759 +#: classes/feeds.php:923 #, 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:769 +#: classes/feeds.php:933 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:913 msgid "No feed selected." msgstr "Nav izvÄ“lÄ“ta barotne." +#: classes/feeds.php:966 +#: classes/feeds.php:974 +msgid "Feed or site URL" +msgstr "Barotnes vai vietnes URL" + +#: classes/feeds.php:980 +#: 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:988 +msgid "Available feeds" +msgstr "PieejamÄs barotnes" + +#: classes/feeds.php:1000 +#: classes/pref/users.php:139 +#: classes/pref/feeds.php:590 +#: classes/pref/feeds.php:818 +msgid "Authentication" +msgstr "AutentifikÄcija" + +#: classes/feeds.php:1004 +#: classes/pref/users.php:402 +#: classes/pref/feeds.php:596 +#: classes/pref/feeds.php:822 +#: classes/pref/feeds.php:1775 +msgid "Login" +msgstr "PieteikÅ¡anÄs" + +#: classes/feeds.php:1007 +#: 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:1017 +msgid "This feed requires authentication." +msgstr "Å im laukam ir nepiecieÅ¡ams autentificÄ“ties." + +#: classes/feeds.php:1022 +#: classes/feeds.php:1078 +#: classes/pref/feeds.php:1796 +msgid "Subscribe" +msgstr "PasÅ«tÄ«t" + +#: classes/feeds.php:1025 +msgid "More feeds" +msgstr "VairÄk barotnes" + +#: classes/feeds.php:1048 +#: classes/feeds.php:1139 +#: classes/pref/users.php:332 +#: classes/pref/filters.php:641 +#: classes/pref/feeds.php:1259 +#: js/tt-rss.js:170 +msgid "Search" +msgstr "MeklÄ“t" + +#: classes/feeds.php:1052 +msgid "Popular feeds" +msgstr "PopulÄrÄs barotnes" + +#: classes/feeds.php:1053 +msgid "Feed archive" +msgstr "Barotņu arhÄ«vs" + +#: classes/feeds.php:1056 +msgid "limit:" +msgstr "ierobežojumi:" + +#: classes/feeds.php:1079 +#: classes/pref/users.php:358 +#: 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:1090 +msgid "Look for" +msgstr "MeklÄ“t" + +#: classes/feeds.php:1098 +msgid "Limit search to:" +msgstr "Ierobežot meklēšanu:" + +#: classes/feeds.php:1114 +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 +1804,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." @@ -1916,122 +1813,131 @@ msgstr "Dokumenta apstrÄdes kļūda." msgid "Your access level is insufficient to open this tab." msgstr "Jums nav pietiekamas pieejas tiesÄ«bas, lai atvÄ“rtu Å¡o cilni." -#: classes/pref/users.php:27 -msgid "User details" -msgstr "LietotÄja detaļas" - -#: classes/pref/users.php:41 +#: classes/pref/users.php:34 msgid "User not found" msgstr "LietotÄjs netika atrasts" -#: classes/pref/users.php:60 -#: classes/pref/users.php:422 +#: classes/pref/users.php:53 +#: classes/pref/users.php:404 msgid "Registered" msgstr "ReÄ£istrÄ“ts" -#: classes/pref/users.php:61 +#: classes/pref/users.php:54 msgid "Last logged in" msgstr "PÄ“dÄ“jo reizi pieteicies" -#: classes/pref/users.php:68 +#: classes/pref/users.php:61 msgid "Subscribed feeds count" msgstr "PasÅ«tÄ«to barotņu skaits" -#: classes/pref/users.php:72 +#: classes/pref/users.php:65 msgid "Subscribed feeds" msgstr "PasÅ«tÄ«tÄs barotnes" -#: classes/pref/users.php:122 -msgid "User Editor" -msgstr "LietotÄja redaktors" - -#: classes/pref/users.php:158 +#: classes/pref/users.php:142 msgid "Access level: " msgstr "Pieejas lÄ«menis:" -#: classes/pref/users.php:171 +#: classes/pref/users.php:155 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/users.php:161 +#: classes/pref/feeds.php:610 +#: classes/pref/feeds.php:834 msgid "Options" msgstr "IespÄ“jas" -#: classes/pref/users.php:180 +#: classes/pref/users.php:164 msgid "E-mail: " msgstr "E-pasts:" -#: classes/pref/users.php:258 +#: classes/pref/users.php:240 #, php-format msgid "Added user <b>%s</b> with password <b>%s</b>" msgstr "Pievienoja lietotÄju <b>%s</b> ar paroli <b>%s</b>" -#: classes/pref/users.php:265 +#: classes/pref/users.php:247 #, php-format msgid "Could not create user <b>%s</b>" msgstr "NeizdevÄs izveidot lietotÄju <b>%s</b>" -#: classes/pref/users.php:269 +#: classes/pref/users.php:251 #, php-format msgid "User <b>%s</b> already exists." msgstr "LietotÄjs <b>%s</b> jau pastÄv." -#: classes/pref/users.php:291 +#: classes/pref/users.php:273 #, fuzzy, php-format msgid "Changed password of user <b>%s</b> to <b>%s</b>" msgstr "" "NomainÄ«ja lietotÄja <b>%s</b> paroli\n" "\t\t\t\t uz <b>%s</b>" -#: classes/pref/users.php:293 +#: classes/pref/users.php:275 #, fuzzy, php-format msgid "Sending new password of user <b>%s</b> to <b>%s</b>" msgstr "" "NomainÄ«ja lietotÄja <b>%s</b> paroli\n" "\t\t\t\t uz <b>%s</b>" -#: classes/pref/users.php:317 +#: classes/pref/users.php:299 msgid "[tt-rss] Password change notification" msgstr "[tt-rss] paroles maiņas paziņojums" -#: classes/pref/users.php:368 +#: classes/pref/users.php:342 +#: 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:350 msgid "Create user" msgstr "Izveidot lietotÄju" -#: classes/pref/users.php:372 +#: classes/pref/users.php:354 msgid "Details" msgstr "Detaļas" -#: classes/pref/users.php:374 -#: classes/pref/filters.php:612 +#: classes/pref/users.php:356 +#: classes/pref/filters.php:660 #: plugins/instances/init.php:296 msgid "Edit" msgstr "Rediģēt" -#: classes/pref/users.php:421 +#: classes/pref/users.php:403 msgid "Access Level" msgstr "Pieejas lÄ«menis" -#: classes/pref/users.php:423 +#: classes/pref/users.php:405 msgid "Last login" msgstr "PÄ“dÄ“jÄ pieteikÅ¡anÄs" -#: classes/pref/users.php:444 +#: classes/pref/users.php:426 #: plugins/instances/init.php:337 msgid "Click to edit" msgstr "Klikšķiniet, lai rediģētu" -#: classes/pref/users.php:464 +#: classes/pref/users.php:446 msgid "No users defined." msgstr "Nav definÄ“ti lietotÄji." -#: classes/pref/users.php:466 +#: classes/pref/users.php:448 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 +1962,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 +2292,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 +2812,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 +2837,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 +2889,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 +2952,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 +3134,7 @@ msgstr "Rediģēt kategoriju" msgid "Remove category" msgstr "DzÄ“st kategoriju" -#: js/PrefFilterTree.js:32 +#: js/PrefFilterTree.js:48 msgid "Inverse" msgstr "Apgriezt" @@ -3167,6 +3151,10 @@ msgstr "NeizdevÄs izveidot lietotÄju: netika norÄdÄ«ts pieteikÅ¡anÄs vÄrds. msgid "Adding user..." msgstr "Pievieno filtru..." +#: js/prefs.js:94 +msgid "User Editor" +msgstr "LietotÄja redaktors" + #: js/prefs.js:117 msgid "Edit Filter" msgstr "Rediģēt filtru" @@ -3190,7 +3178,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." @@ -3280,6 +3268,10 @@ msgstr "AtstatÄ«t izvÄ“lÄ“tÄ lietotÄja paroli?" msgid "Resetting password for selected user..." msgstr "AtstatÄ«t izvÄ“lÄ“tÄ lietotÄja paroli?" +#: js/prefs.js:585 +msgid "User details" +msgstr "LietotÄja detaļas" + #: js/prefs.js:602 msgid "Please select only one filter." msgstr "LÅ«dzu izvÄ“lieties tikai vienu filtru." @@ -3301,154 +3293,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 +3462,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 +3519,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 +3747,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" diff --git a/locale/nb_NO/LC_MESSAGES/messages.mo b/locale/nb_NO/LC_MESSAGES/messages.mo Binary files differindex 291d31d54..a935f991d 100644 --- a/locale/nb_NO/LC_MESSAGES/messages.mo +++ b/locale/nb_NO/LC_MESSAGES/messages.mo diff --git a/locale/nb_NO/LC_MESSAGES/messages.po b/locale/nb_NO/LC_MESSAGES/messages.po index d7442a3df..6cff1278c 100644 --- a/locale/nb_NO/LC_MESSAGES/messages.po +++ b/locale/nb_NO/LC_MESSAGES/messages.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tiny Tiny RSS 1.3.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-31 12:47+0400\n" +"POT-Creation-Date: 2013-04-01 19:15+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" @@ -89,7 +89,7 @@ msgid "Weekly" msgstr "Ukentlig" #: backend.php:101 -#: classes/pref/users.php:139 +#: classes/pref/users.php:123 msgid "User" msgstr "Bruker" @@ -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,38 @@ 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:273 +#: prefs.php:103 +#: test.php:11 #: 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 +310,13 @@ msgid "All Articles" msgstr "Alle artikler" #: index.php:176 -#: include/functions.php:1974 +#: include/functions.php:1925 #: classes/feeds.php:106 msgid "Starred" msgstr "Favoritter" #: index.php:177 -#: include/functions.php:1975 +#: include/functions.php:1926 #: classes/feeds.php:107 msgid "Published" msgstr "Publisert" @@ -355,137 +357,130 @@ 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:237 +#: include/functions.php:1915 #: include/localized_schema.php:10 #: classes/feeds.php:111 -#: classes/feeds.php:136 -#: classes/feeds.php:437 +#: classes/feeds.php:441 #: js/FeedTree.js:128 #: js/FeedTree.js:156 #: plugins/digest/digest.js:647 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:1811 +#: include/functions.php:1923 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:214 msgid "Communication problem with server." msgstr "" -#: index.php:220 +#: index.php:222 msgid "New version of Tiny Tiny RSS is available!" msgstr "Ny versjon av Tiny Tiny Rss er tilgjengelig!" -#: index.php:225 +#: index.php:227 msgid "Actions..." msgstr "Handlinger..." -#: index.php:227 +#: index.php:229 #, fuzzy msgid "Preferences..." msgstr "Innstillinger" -#: index.php:228 +#: index.php:230 msgid "Search..." msgstr "Søk..." -#: index.php:229 +#: index.php:231 msgid "Feed actions:" msgstr "Nyhetsstrømshandlinger:" -#: index.php:230 -#: classes/handler/public.php:555 +#: index.php:232 +#: classes/handler/public.php:556 msgid "Subscribe to feed..." msgstr "Abonner pÃ¥ nyhetsstrøm..." -#: index.php:231 +#: index.php:233 msgid "Edit this feed..." msgstr "Rediger nyhetsstrømmen..." -#: index.php:232 +#: index.php:234 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:235 +#: classes/pref/feeds.php:717 +#: classes/pref/feeds.php:1304 #: js/PrefFeedTree.js:73 msgid "Unsubscribe" msgstr "Avabonner" -#: index.php:234 +#: index.php:236 msgid "All feeds:" msgstr "Alle nyhetsstrømmer:" -#: index.php:236 +#: index.php:238 msgid "(Un)hide read feeds" msgstr "Skjul/vis leste nyhetsstrømmer" -#: index.php:237 +#: index.php:239 msgid "Other actions:" msgstr "Andre handlinger:" -#: index.php:239 +#: index.php:241 msgid "Switch to digest..." msgstr "" -#: index.php:241 +#: index.php:243 #, fuzzy msgid "Show tag cloud..." msgstr "Tag-sky" -#: index.php:242 -#: include/functions.php:1950 +#: index.php:244 +#: include/functions.php:1901 #, fuzzy msgid "Toggle widescreen mode" msgstr "Tillatt endringer i kategorirekkefølgen?" -#: index.php:243 +#: index.php:245 msgid "Select by tags..." msgstr "" -#: index.php:244 +#: index.php:246 msgid "Create label..." msgstr "Lag merkelapp..." -#: index.php:245 +#: index.php:247 msgid "Create filter..." msgstr "Lag filter..." -#: index.php:246 +#: index.php:248 #, fuzzy msgid "Keyboard shortcuts help" msgstr "Tastatursnarveier" -#: index.php:248 +#: index.php:257 #: plugins/digest/digest_body.php:77 #: plugins/mobile/mobile-functions.php:62 #: plugins/mobile/mobile-functions.php:237 @@ -493,41 +488,41 @@ msgid "Logout" msgstr "Logg ut" #: prefs.php:36 -#: prefs.php:122 -#: include/functions.php:1977 +#: prefs.php:121 +#: include/functions.php:1928 #: 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:1118 +#: include/functions.php:1754 #: 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 +548,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 +587,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:1127 +#: include/functions.php:1655 +#: include/functions.php:1740 +#: include/functions.php:1762 #: classes/opml.php:416 -#: classes/pref/feeds.php:221 +#: classes/pref/feeds.php:222 msgid "Uncategorized" msgstr "Ukategorisert" @@ -612,366 +607,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:1116 +#: include/functions.php:1752 #: 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:1604 +#: classes/feeds.php:1101 +#: classes/pref/filters.php:427 msgid "All feeds" msgstr "Alle Nyhetsstrømmer" -#: include/functions.php:1854 +#: include/functions.php:1805 msgid "Starred articles" msgstr "Favorittartikler" -#: include/functions.php:1856 +#: include/functions.php:1807 msgid "Published articles" msgstr "Publiserte artikler" -#: include/functions.php:1858 +#: include/functions.php:1809 msgid "Fresh articles" msgstr "Ferske artikler" -#: include/functions.php:1862 +#: include/functions.php:1813 #, fuzzy msgid "Archived articles" msgstr "Lagrede artikler" -#: include/functions.php:1864 +#: include/functions.php:1815 msgid "Recently read" msgstr "" -#: include/functions.php:1927 +#: include/functions.php:1878 msgid "Navigation" msgstr "Navigasjon" -#: include/functions.php:1928 +#: include/functions.php:1879 #, fuzzy msgid "Open next feed" msgstr "Generert nyhetsstrøm" -#: include/functions.php:1929 +#: include/functions.php:1880 msgid "Open previous feed" msgstr "" -#: include/functions.php:1930 +#: include/functions.php:1881 #, fuzzy msgid "Open next article" msgstr "Vis opprinnelig artikkelinnhold" -#: include/functions.php:1931 +#: include/functions.php:1882 #, fuzzy msgid "Open previous article" msgstr "Vis opprinnelig artikkelinnhold" -#: include/functions.php:1932 +#: include/functions.php:1883 msgid "Open next article (don't scroll long articles)" msgstr "" -#: include/functions.php:1933 +#: include/functions.php:1884 msgid "Open previous article (don't scroll long articles)" msgstr "" -#: include/functions.php:1934 +#: include/functions.php:1885 msgid "Show search dialog" msgstr "Vis søkevinduet" -#: include/functions.php:1935 +#: include/functions.php:1886 #, fuzzy msgid "Article" msgstr "Alle artikler" -#: include/functions.php:1936 +#: include/functions.php:1887 msgid "Toggle starred" msgstr "Sett som favoritt" -#: include/functions.php:1937 -#: js/viewfeed.js:1920 +#: include/functions.php:1888 +#: js/viewfeed.js:1908 msgid "Toggle published" msgstr "Sett som publisert" -#: include/functions.php:1938 -#: js/viewfeed.js:1898 +#: include/functions.php:1889 +#: js/viewfeed.js:1886 msgid "Toggle unread" msgstr "Sett som ulest" -#: include/functions.php:1939 +#: include/functions.php:1890 msgid "Edit tags" msgstr "Endre stikkord" -#: include/functions.php:1940 +#: include/functions.php:1891 #, fuzzy msgid "Dismiss selected" msgstr "Fjerne merkede artikler fra merkelappen?" -#: include/functions.php:1941 +#: include/functions.php:1892 #, fuzzy msgid "Dismiss read" msgstr "Publiser artiklen" -#: include/functions.php:1942 +#: include/functions.php:1893 #, fuzzy msgid "Open in new window" msgstr "Ã…pne artikkel i nytt nettleservindu" -#: include/functions.php:1943 -#: js/viewfeed.js:1939 +#: include/functions.php:1894 +#: 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:1895 +#: js/viewfeed.js:1921 #, fuzzy msgid "Mark above as read" msgstr "Marker som lest" -#: include/functions.php:1945 +#: include/functions.php:1896 #, fuzzy msgid "Scroll down" msgstr "Alt ferdig." -#: include/functions.php:1946 +#: include/functions.php:1897 msgid "Scroll up" msgstr "" -#: include/functions.php:1947 +#: include/functions.php:1898 #, fuzzy msgid "Select article under cursor" msgstr "Velg artikkelen under musepekeren" -#: include/functions.php:1948 +#: include/functions.php:1899 #, fuzzy msgid "Email article" msgstr "Alle artikler" -#: include/functions.php:1949 +#: include/functions.php:1900 #, fuzzy msgid "Close/collapse article" msgstr "Fjern artikler" -#: include/functions.php:1951 +#: include/functions.php:1902 #: plugins/embed_original/init.php:33 #, fuzzy msgid "Toggle embed original" msgstr "Tillatt endringer i kategorirekkefølgen?" -#: include/functions.php:1952 +#: include/functions.php:1903 #, fuzzy msgid "Article selection" msgstr "Handlinger for aktive artikler" -#: include/functions.php:1953 +#: include/functions.php:1904 #, fuzzy msgid "Select all articles" msgstr "Fjern artikler" -#: include/functions.php:1954 +#: include/functions.php:1905 #, fuzzy msgid "Select unread" msgstr "Slett uleste artikler" -#: include/functions.php:1955 +#: include/functions.php:1906 #, fuzzy msgid "Select starred" msgstr "Sett som favorittartikkel" -#: include/functions.php:1956 +#: include/functions.php:1907 #, fuzzy msgid "Select published" msgstr "Slett uleste artikler" -#: include/functions.php:1957 +#: include/functions.php:1908 #, fuzzy msgid "Invert selection" msgstr "Handlinger for aktive artikler" -#: include/functions.php:1958 +#: include/functions.php:1909 #, fuzzy msgid "Deselect everything" msgstr "Fjern artikler" -#: include/functions.php:1959 -#: classes/pref/feeds.php:520 -#: classes/pref/feeds.php:753 +#: include/functions.php:1910 +#: classes/pref/feeds.php:521 +#: classes/pref/feeds.php:754 msgid "Feed" msgstr "Nyhetsstrøm" -#: include/functions.php:1960 +#: include/functions.php:1911 #, fuzzy msgid "Refresh current feed" msgstr "Oppdater aktive nyhetsstrømmer" -#: include/functions.php:1961 +#: include/functions.php:1912 #, fuzzy msgid "Un/hide read feeds" msgstr "Skjul/vis leste nyhetsstrømmer" -#: include/functions.php:1962 -#: classes/pref/feeds.php:1274 +#: include/functions.php:1913 +#: classes/pref/feeds.php:1275 msgid "Subscribe to feed" msgstr "Abonner pÃ¥ nyhetsstrøm" -#: include/functions.php:1963 +#: include/functions.php:1914 #: js/FeedTree.js:135 #: js/PrefFeedTree.js:67 msgid "Edit feed" msgstr "Rediger nyhetsstrømmen" -#: include/functions.php:1965 +#: include/functions.php:1916 #, fuzzy msgid "Reverse headlines" msgstr "Motsatt titteloversikt (eldste først)" -#: include/functions.php:1966 +#: include/functions.php:1917 #, fuzzy msgid "Debug feed update" msgstr "Alle nyhetsstrømmer er oppdatert" -#: include/functions.php:1967 +#: include/functions.php:1918 #: js/FeedTree.js:178 msgid "Mark all feeds as read" msgstr "Marker alle nyhetsstrømmer som lest" -#: include/functions.php:1968 +#: include/functions.php:1919 #, fuzzy msgid "Un/collapse current category" msgstr "Velg for Ã¥ slÃ¥ sammen kategorien" -#: include/functions.php:1969 +#: include/functions.php:1920 #, fuzzy msgid "Toggle combined mode" msgstr "Tillatt endringer i kategorirekkefølgen?" -#: include/functions.php:1970 +#: include/functions.php:1921 #, fuzzy msgid "Toggle auto expand in combined mode" msgstr "Tillatt endringer i kategorirekkefølgen?" -#: include/functions.php:1971 +#: include/functions.php:1922 #, fuzzy msgid "Go to" msgstr "GÃ¥ til..." -#: include/functions.php:1973 +#: include/functions.php:1924 #, fuzzy msgid "Fresh" msgstr "Oppdater" -#: include/functions.php:1976 +#: include/functions.php:1927 +#: js/tt-rss.js:431 +#: js/tt-rss.js:584 msgid "Tag cloud" msgstr "Tag-sky" -#: include/functions.php:1978 +#: include/functions.php:1929 #, fuzzy msgid "Other" msgstr "Andre:" -#: include/functions.php:1979 +#: include/functions.php:1930 #: classes/pref/labels.php:281 msgid "Create label" msgstr "Lag merkelapp" -#: include/functions.php:1980 -#: classes/pref/filters.php:606 +#: include/functions.php:1931 +#: classes/pref/filters.php:654 msgid "Create filter" msgstr "Lag filter" -#: include/functions.php:1981 +#: include/functions.php:1932 #, fuzzy msgid "Un/collapse sidebar" msgstr "Skjul nyhetskanalsslisten" -#: include/functions.php:1982 +#: include/functions.php:1933 #, fuzzy msgid "Show help dialog" msgstr "Vis søkevinduet" -#: include/functions.php:2467 +#: include/functions.php:2418 #, fuzzy, php-format msgid "Search results: %s" msgstr "Søkeresultat" -#: include/functions.php:2958 -#: js/viewfeed.js:2026 +#: include/functions.php:2909 +#: js/viewfeed.js:2014 #, fuzzy msgid "Click to play" msgstr "Trykk for Ã¥ endre" -#: include/functions.php:2959 -#: js/viewfeed.js:2025 +#: include/functions.php:2910 +#: js/viewfeed.js:2013 msgid "Play" msgstr "" -#: include/functions.php:3076 +#: include/functions.php:3027 msgid " - " msgstr "-" -#: include/functions.php:3098 -#: include/functions.php:3392 +#: include/functions.php:3049 +#: include/functions.php:3343 #: classes/rpc.php:408 msgid "no tags" msgstr "Ingen stikkord" -#: include/functions.php:3108 -#: classes/feeds.php:682 +#: include/functions.php:3059 +#: classes/feeds.php:686 msgid "Edit tags for this article" msgstr "Rediger stikkordene for denne artikkelen" -#: include/functions.php:3137 -#: classes/feeds.php:638 +#: include/functions.php:3088 +#: classes/feeds.php:642 #, fuzzy msgid "Originally from:" msgstr "Vis opprinnelig artikkelinnhold" -#: include/functions.php:3150 -#: classes/feeds.php:651 -#: classes/pref/feeds.php:539 +#: include/functions.php:3101 +#: classes/feeds.php:655 +#: 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:3132 +#: 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/users.php:99 +#: 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:3368 #, fuzzy msgid "(edit note)" msgstr "Rediger notat" -#: include/functions.php:3650 +#: include/functions.php:3601 msgid "unknown type" msgstr "Ukjent type" -#: include/functions.php:3706 +#: include/functions.php:3657 #, fuzzy msgid "Attachments" msgstr "Vedlegg:" @@ -1017,7 +1010,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 +1199,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 +1227,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 +1245,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 +1255,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 +1271,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:55 +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:176 +#: 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:1028 +#: classes/feeds.php:1080 +#: classes/feeds.php:1140 +#: classes/pref/users.php:178 +#: 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/pref/users.php:378 +#: classes/handler/public.php:764 +#: classes/pref/users.php:360 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 +1533,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:345 +#: 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:347 +#: 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 +1609,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" @@ -1846,60 +1629,163 @@ msgstr "Marker artikkel som favoritt" msgid "Feed:" msgstr "Nyhetsstrøm:" -#: classes/feeds.php:201 -#: classes/feeds.php:827 +#: classes/feeds.php:205 +#: classes/feeds.php:831 msgid "Feed not found." msgstr "Nyhetsstrømmen ble ikke funnet" -#: classes/feeds.php:384 +#: classes/feeds.php:388 #, fuzzy, php-format msgid "Imported at %s" msgstr "Importer" -#: classes/feeds.php:531 +#: classes/feeds.php:535 msgid "mark as read" msgstr "marker som lest" -#: classes/feeds.php:582 +#: classes/feeds.php:586 #, fuzzy msgid "Collapse article" msgstr "Fjern artikler" -#: classes/feeds.php:728 +#: classes/feeds.php:732 msgid "No unread articles found to display." msgstr "Ingen uleste artikler funnet som kunne vises" -#: classes/feeds.php:731 +#: classes/feeds.php:735 msgid "No updated articles found to display." msgstr "Ingen oppdaterte artikler funnet som kunne vises" -#: classes/feeds.php:734 +#: classes/feeds.php:738 msgid "No starred articles found to display." msgstr "Ingen markerte artikler som kan vises" -#: classes/feeds.php:738 +#: classes/feeds.php:742 msgid "No articles found to display. You can assign articles to labels manually (see the Actions menu above) or use a filter." msgstr "Ingen artikler ble funnet. Du kan gi artikler merkelapper manuelt (se aksjon-menyen ovenfor) eller bruke et filter." -#: classes/feeds.php:740 +#: classes/feeds.php:744 msgid "No articles found to display." msgstr "Ingen artikler funnet som kan vises" -#: classes/feeds.php:755 -#: classes/feeds.php:920 +#: classes/feeds.php:759 +#: classes/feeds.php:923 #, fuzzy, php-format msgid "Feeds last updated at %s" msgstr "Oppdateringsfeil" -#: classes/feeds.php:765 -#: classes/feeds.php:930 +#: classes/feeds.php:769 +#: classes/feeds.php:933 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:913 msgid "No feed selected." msgstr "Ingen valgt nyhetsstrøm" +#: classes/feeds.php:966 +#: classes/feeds.php:974 +#, fuzzy +msgid "Feed or site URL" +msgstr "Nyhetsstrøm" + +#: classes/feeds.php:980 +#: 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:988 +#, fuzzy +msgid "Available feeds" +msgstr "Alle Nyhetsstrømmer" + +#: classes/feeds.php:1000 +#: classes/pref/users.php:139 +#: classes/pref/feeds.php:590 +#: classes/pref/feeds.php:818 +msgid "Authentication" +msgstr "Autentifisering" + +#: classes/feeds.php:1004 +#: classes/pref/users.php:402 +#: classes/pref/feeds.php:596 +#: classes/pref/feeds.php:822 +#: classes/pref/feeds.php:1775 +msgid "Login" +msgstr "Logg inn" + +#: classes/feeds.php:1007 +#: 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:1017 +msgid "This feed requires authentication." +msgstr "Denne nyhetsstrømmen krever autentifisering" + +#: classes/feeds.php:1022 +#: classes/feeds.php:1078 +#: classes/pref/feeds.php:1796 +msgid "Subscribe" +msgstr "Abonner" + +#: classes/feeds.php:1025 +#, fuzzy +msgid "More feeds" +msgstr "Flere nyhetsstrømmer" + +#: classes/feeds.php:1048 +#: classes/feeds.php:1139 +#: classes/pref/users.php:332 +#: classes/pref/filters.php:641 +#: classes/pref/feeds.php:1259 +#: js/tt-rss.js:170 +msgid "Search" +msgstr "Søk" + +#: classes/feeds.php:1052 +#, fuzzy +msgid "Popular feeds" +msgstr "Vis nyhetsstrømmer" + +#: classes/feeds.php:1053 +#, fuzzy +msgid "Feed archive" +msgstr "Nyhetsstrømshandlinger" + +#: classes/feeds.php:1056 +#, fuzzy +msgid "limit:" +msgstr "Antall:" + +#: classes/feeds.php:1079 +#: classes/pref/users.php:358 +#: 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:1090 +msgid "Look for" +msgstr "" + +#: classes/feeds.php:1098 +msgid "Limit search to:" +msgstr "Begrens søket til:" + +#: classes/feeds.php:1114 +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 +1860,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" @@ -1983,123 +1869,133 @@ msgstr "Feil under behandling av dokumentet" msgid "Your access level is insufficient to open this tab." msgstr "AdgangsnivÃ¥et ditt er for lavt for Ã¥ Ã¥pne denne siden." -#: classes/pref/users.php:27 -msgid "User details" -msgstr "Brukerdetaljer" - -#: classes/pref/users.php:41 +#: classes/pref/users.php:34 msgid "User not found" msgstr "Brukeren ble ikke funnet" -#: classes/pref/users.php:60 -#: classes/pref/users.php:422 +#: classes/pref/users.php:53 +#: classes/pref/users.php:404 msgid "Registered" msgstr "Registrert" -#: classes/pref/users.php:61 +#: classes/pref/users.php:54 msgid "Last logged in" msgstr "Sist innlogget" -#: classes/pref/users.php:68 +#: classes/pref/users.php:61 msgid "Subscribed feeds count" msgstr "Antall nyhetsstrømmer som abonneres pÃ¥" -#: classes/pref/users.php:72 +#: classes/pref/users.php:65 msgid "Subscribed feeds" msgstr "Nyhetsstrømmer som abonneres pÃ¥" -#: classes/pref/users.php:122 -msgid "User Editor" -msgstr "Brukeradministrering" - -#: classes/pref/users.php:158 +#: classes/pref/users.php:142 msgid "Access level: " msgstr "TilgangsnivÃ¥:" -#: classes/pref/users.php:171 +#: classes/pref/users.php:155 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/users.php:161 +#: classes/pref/feeds.php:610 +#: classes/pref/feeds.php:834 msgid "Options" msgstr "Alternativer:" -#: classes/pref/users.php:180 +#: classes/pref/users.php:164 msgid "E-mail: " msgstr "E-post: " -#: classes/pref/users.php:258 +#: classes/pref/users.php:240 #, php-format msgid "Added user <b>%s</b> with password <b>%s</b>" msgstr "La til bruker <b>%s</b> med passordet <b>%s</b>" -#: classes/pref/users.php:265 +#: classes/pref/users.php:247 #, php-format msgid "Could not create user <b>%s</b>" msgstr "Kunne ikke lage brukeren <b>%s</b>" -#: classes/pref/users.php:269 +#: classes/pref/users.php:251 #, php-format msgid "User <b>%s</b> already exists." msgstr "Brukeren <b>%s</b> finnes allerede." -#: classes/pref/users.php:291 +#: classes/pref/users.php:273 #, fuzzy, php-format msgid "Changed password of user <b>%s</b> to <b>%s</b>" msgstr "" "Byttet passord forbruker <b>%s</b>\n" "\t\t\t\t\t til <b>%s</b>" -#: classes/pref/users.php:293 +#: classes/pref/users.php:275 #, fuzzy, php-format msgid "Sending new password of user <b>%s</b> to <b>%s</b>" msgstr "" "Byttet passord forbruker <b>%s</b>\n" "\t\t\t\t\t til <b>%s</b>" -#: classes/pref/users.php:317 +#: classes/pref/users.php:299 msgid "[tt-rss] Password change notification" msgstr "[tt-rss] Varsel om endring av passord" -#: classes/pref/users.php:368 +#: classes/pref/users.php:342 +#: 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:350 msgid "Create user" msgstr "Lag bruker" -#: classes/pref/users.php:372 +#: classes/pref/users.php:354 #, fuzzy msgid "Details" msgstr "Daglig" -#: classes/pref/users.php:374 -#: classes/pref/filters.php:612 +#: classes/pref/users.php:356 +#: classes/pref/filters.php:660 #: plugins/instances/init.php:296 msgid "Edit" msgstr "Rediger" -#: classes/pref/users.php:421 +#: classes/pref/users.php:403 msgid "Access Level" msgstr "TilgangsnivÃ¥" -#: classes/pref/users.php:423 +#: classes/pref/users.php:405 msgid "Last login" msgstr "Siste innlogging" -#: classes/pref/users.php:444 +#: classes/pref/users.php:426 #: plugins/instances/init.php:337 msgid "Click to edit" msgstr "Trykk for Ã¥ endre" -#: classes/pref/users.php:464 +#: classes/pref/users.php:446 msgid "No users defined." msgstr "Ingen brukere er valgt" -#: classes/pref/users.php:466 +#: classes/pref/users.php:448 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 +2023,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 +2375,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 +2945,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 +2971,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 +3028,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 +3097,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 +3296,7 @@ msgstr "Rediger kategorier" msgid "Remove category" msgstr "Lag kategori" -#: js/PrefFilterTree.js:32 +#: js/PrefFilterTree.js:48 #, fuzzy msgid "Inverse" msgstr "(Motsatt)" @@ -3331,6 +3313,10 @@ msgstr "Kan ikke legge til bruker: brukernavn mangler." msgid "Adding user..." msgstr "Legger til bruker.." +#: js/prefs.js:94 +msgid "User Editor" +msgstr "Brukeradministrering" + #: js/prefs.js:117 #, fuzzy msgid "Edit Filter" @@ -3354,7 +3340,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" @@ -3438,6 +3424,10 @@ msgstr "Nullstill passordet til utvalgte bruker?" msgid "Resetting password for selected user..." msgstr "Nullstiller passordet for utvalgte bruker..." +#: js/prefs.js:585 +msgid "User details" +msgstr "Brukerdetaljer" + #: js/prefs.js:602 msgid "Please select only one filter." msgstr "Vennligst velg kun et filter" @@ -3461,162 +3451,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 +3628,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 +3686,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 +3922,26 @@ 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 "Refresh" +#~ msgstr "Oppdater" + +#, 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" diff --git a/locale/nl_NL/LC_MESSAGES/messages.mo b/locale/nl_NL/LC_MESSAGES/messages.mo Binary files differindex 9b77b490a..9e00b7eeb 100644 --- a/locale/nl_NL/LC_MESSAGES/messages.mo +++ b/locale/nl_NL/LC_MESSAGES/messages.mo diff --git a/locale/nl_NL/LC_MESSAGES/messages.po b/locale/nl_NL/LC_MESSAGES/messages.po index b1d47ac09..93444ec71 100644 --- a/locale/nl_NL/LC_MESSAGES/messages.po +++ b/locale/nl_NL/LC_MESSAGES/messages.po @@ -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 19:15+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" @@ -94,7 +94,7 @@ msgid "Weekly" msgstr "Wekelijks" #: backend.php:101 -#: classes/pref/users.php:139 +#: classes/pref/users.php:123 msgid "User" msgstr "Gebruiker" @@ -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,38 @@ 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:273 +#: prefs.php:103 +#: test.php:11 #: 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 +313,13 @@ msgid "All Articles" msgstr "Alle artikelen" #: index.php:176 -#: include/functions.php:1974 +#: include/functions.php:1925 #: classes/feeds.php:106 msgid "Starred" msgstr "Met ster" #: index.php:177 -#: include/functions.php:1975 +#: include/functions.php:1926 #: classes/feeds.php:107 msgid "Published" msgstr "Gepubliceerd" @@ -357,134 +359,127 @@ 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:237 +#: include/functions.php:1915 #: include/localized_schema.php:10 #: classes/feeds.php:111 -#: classes/feeds.php:136 -#: classes/feeds.php:437 +#: classes/feeds.php:441 #: js/FeedTree.js:128 #: js/FeedTree.js:156 #: plugins/digest/digest.js:647 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:1811 +#: include/functions.php:1923 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:214 msgid "Communication problem with server." msgstr "communicatieprobleem met de server." -#: index.php:220 +#: index.php:222 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:227 msgid "Actions..." msgstr "Acties..." -#: index.php:227 +#: index.php:229 msgid "Preferences..." msgstr "Voorkeuren…" -#: index.php:228 +#: index.php:230 msgid "Search..." msgstr "zoeken..." -#: index.php:229 +#: index.php:231 msgid "Feed actions:" msgstr "Feed acties:" -#: index.php:230 -#: classes/handler/public.php:555 +#: index.php:232 +#: classes/handler/public.php:556 msgid "Subscribe to feed..." msgstr "Abonneren op feed..." -#: index.php:231 +#: index.php:233 msgid "Edit this feed..." msgstr "Bewerk deze feed..." -#: index.php:232 +#: index.php:234 msgid "Rescore feed" msgstr "Feed opnieuw score geven" -#: index.php:233 -#: classes/pref/feeds.php:716 -#: classes/pref/feeds.php:1303 +#: index.php:235 +#: classes/pref/feeds.php:717 +#: classes/pref/feeds.php:1304 #: js/PrefFeedTree.js:73 msgid "Unsubscribe" msgstr "Abonnement opzeggen" -#: index.php:234 +#: index.php:236 msgid "All feeds:" msgstr "Alle feeds:" -#: index.php:236 +#: index.php:238 msgid "(Un)hide read feeds" msgstr "Toon/Verberg gelezen feeds" -#: index.php:237 +#: index.php:239 msgid "Other actions:" msgstr "andere acties:" -#: index.php:239 +#: index.php:241 msgid "Switch to digest..." msgstr "Omschakelen naar samenvatting…" -#: index.php:241 +#: index.php:243 msgid "Show tag cloud..." msgstr "Toon tagwolk..." -#: index.php:242 -#: include/functions.php:1950 +#: index.php:244 +#: include/functions.php:1901 msgid "Toggle widescreen mode" msgstr "Wisselen breedbeeld modus" -#: index.php:243 +#: index.php:245 msgid "Select by tags..." msgstr "Selectie met tags..." -#: index.php:244 +#: index.php:246 msgid "Create label..." msgstr "Aanmaken label…" -#: index.php:245 +#: index.php:247 msgid "Create filter..." msgstr "Aanmaken filter…" -#: index.php:246 +#: index.php:248 msgid "Keyboard shortcuts help" msgstr "Hulp bij sneltoetscombinaties" -#: index.php:248 +#: index.php:257 #: plugins/digest/digest_body.php:77 #: plugins/mobile/mobile-functions.php:62 #: plugins/mobile/mobile-functions.php:237 @@ -492,41 +487,41 @@ msgid "Logout" msgstr "Afmelden" #: prefs.php:36 -#: prefs.php:122 -#: include/functions.php:1977 +#: prefs.php:121 +#: include/functions.php:1928 #: 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:1118 +#: include/functions.php:1754 #: 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 +547,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 +585,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:1127 +#: include/functions.php:1655 +#: include/functions.php:1740 +#: include/functions.php:1762 #: classes/opml.php:416 -#: classes/pref/feeds.php:221 +#: classes/pref/feeds.php:222 msgid "Uncategorized" msgstr "Ongecategoriseerd" @@ -610,329 +605,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:1116 +#: include/functions.php:1752 #: 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:1604 +#: classes/feeds.php:1101 +#: classes/pref/filters.php:427 msgid "All feeds" msgstr "Alle feeds" -#: include/functions.php:1854 +#: include/functions.php:1805 msgid "Starred articles" msgstr "Artikelen met ster" -#: include/functions.php:1856 +#: include/functions.php:1807 msgid "Published articles" msgstr "Gepubliceerde artikelen" -#: include/functions.php:1858 +#: include/functions.php:1809 msgid "Fresh articles" msgstr "Nieuwe artikelen" -#: include/functions.php:1862 +#: include/functions.php:1813 msgid "Archived articles" msgstr "Gearchiveerde artikelen" -#: include/functions.php:1864 +#: include/functions.php:1815 msgid "Recently read" msgstr "Recent gelezen" -#: include/functions.php:1927 +#: include/functions.php:1878 msgid "Navigation" msgstr "Navigatie" -#: include/functions.php:1928 +#: include/functions.php:1879 msgid "Open next feed" msgstr "Open volgende feed" -#: include/functions.php:1929 +#: include/functions.php:1880 msgid "Open previous feed" msgstr "Open voorgaande feed" -#: include/functions.php:1930 +#: include/functions.php:1881 msgid "Open next article" msgstr "Open volgende artikel" -#: include/functions.php:1931 +#: include/functions.php:1882 msgid "Open previous article" msgstr "Open voorgaand artikel" -#: include/functions.php:1932 +#: include/functions.php:1883 msgid "Open next article (don't scroll long articles)" msgstr "Open volgend artikel (lange artikelen niet scrollen)" -#: include/functions.php:1933 +#: include/functions.php:1884 msgid "Open previous article (don't scroll long articles)" msgstr "Open vorig artikel (lange artikelen niet scrollen)" -#: include/functions.php:1934 +#: include/functions.php:1885 msgid "Show search dialog" msgstr "toon zoekdialoogvenster" -#: include/functions.php:1935 +#: include/functions.php:1886 msgid "Article" msgstr "Artikel" -#: include/functions.php:1936 +#: include/functions.php:1887 msgid "Toggle starred" msgstr "In/uitschakelen sterren" -#: include/functions.php:1937 -#: js/viewfeed.js:1920 +#: include/functions.php:1888 +#: js/viewfeed.js:1908 msgid "Toggle published" msgstr "In/uitschakelen gepubliceerd" -#: include/functions.php:1938 -#: js/viewfeed.js:1898 +#: include/functions.php:1889 +#: js/viewfeed.js:1886 msgid "Toggle unread" msgstr "In/uitschakelen gelezen" -#: include/functions.php:1939 +#: include/functions.php:1890 msgid "Edit tags" msgstr "Bewerk tags" -#: include/functions.php:1940 +#: include/functions.php:1891 msgid "Dismiss selected" msgstr "Geselecteerde negeren" -#: include/functions.php:1941 +#: include/functions.php:1892 msgid "Dismiss read" msgstr "Gelezene negeren" -#: include/functions.php:1942 +#: include/functions.php:1893 msgid "Open in new window" msgstr "open in nieuw venster" -#: include/functions.php:1943 -#: js/viewfeed.js:1939 +#: include/functions.php:1894 +#: 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:1895 +#: js/viewfeed.js:1921 msgid "Mark above as read" msgstr "hierboven markeren als gelezen" -#: include/functions.php:1945 +#: include/functions.php:1896 msgid "Scroll down" msgstr "Omlaag scrollen" -#: include/functions.php:1946 +#: include/functions.php:1897 msgid "Scroll up" msgstr "Omhoog scrollen" -#: include/functions.php:1947 +#: include/functions.php:1898 msgid "Select article under cursor" msgstr "Selecteer artikel onder de cursor" -#: include/functions.php:1948 +#: include/functions.php:1899 msgid "Email article" msgstr "E-mail artikel" -#: include/functions.php:1949 +#: include/functions.php:1900 msgid "Close/collapse article" msgstr "Sluiten/inklappen artikel" -#: include/functions.php:1951 +#: include/functions.php:1902 #: plugins/embed_original/init.php:33 msgid "Toggle embed original" msgstr "In/uitschakelen origineel insluiten" -#: include/functions.php:1952 +#: include/functions.php:1903 msgid "Article selection" msgstr "Artikelselectie" -#: include/functions.php:1953 +#: include/functions.php:1904 msgid "Select all articles" msgstr "Selecteer alle artikelen" -#: include/functions.php:1954 +#: include/functions.php:1905 msgid "Select unread" msgstr "Selecteer ongelezen" -#: include/functions.php:1955 +#: include/functions.php:1906 msgid "Select starred" msgstr "Selecteer met ster" -#: include/functions.php:1956 +#: include/functions.php:1907 msgid "Select published" msgstr "Selecteer gepubliceerde" -#: include/functions.php:1957 +#: include/functions.php:1908 msgid "Invert selection" msgstr "Omdraaien selectie" -#: include/functions.php:1958 +#: include/functions.php:1909 msgid "Deselect everything" msgstr "Deselecteer alles" -#: include/functions.php:1959 -#: classes/pref/feeds.php:520 -#: classes/pref/feeds.php:753 +#: include/functions.php:1910 +#: classes/pref/feeds.php:521 +#: classes/pref/feeds.php:754 msgid "Feed" msgstr "Feed" -#: include/functions.php:1960 +#: include/functions.php:1911 msgid "Refresh current feed" msgstr "Ververs huidige feed" -#: include/functions.php:1961 +#: include/functions.php:1912 msgid "Un/hide read feeds" msgstr "Toon/Verberg gelezen feeds" -#: include/functions.php:1962 -#: classes/pref/feeds.php:1274 +#: include/functions.php:1913 +#: classes/pref/feeds.php:1275 msgid "Subscribe to feed" msgstr "Abonneer op feed" -#: include/functions.php:1963 +#: include/functions.php:1914 #: js/FeedTree.js:135 #: js/PrefFeedTree.js:67 msgid "Edit feed" msgstr "Bewerk feed" -#: include/functions.php:1965 +#: include/functions.php:1916 msgid "Reverse headlines" msgstr "Draai kopteksten om" -#: include/functions.php:1966 +#: include/functions.php:1917 msgid "Debug feed update" msgstr "Debug feed update" -#: include/functions.php:1967 +#: include/functions.php:1918 #: js/FeedTree.js:178 msgid "Mark all feeds as read" msgstr "Markeer alle feeds als gelezen" -#: include/functions.php:1968 +#: include/functions.php:1919 msgid "Un/collapse current category" msgstr "Uit/Inklappen huidige categorie" -#: include/functions.php:1969 +#: include/functions.php:1920 msgid "Toggle combined mode" msgstr "In/uitschakelen gecombineerde modus" -#: include/functions.php:1970 +#: include/functions.php:1921 #, fuzzy msgid "Toggle auto expand in combined mode" msgstr "In/uitschakelen gecombineerde modus" -#: include/functions.php:1971 +#: include/functions.php:1922 msgid "Go to" msgstr "Ga naar" -#: include/functions.php:1973 +#: include/functions.php:1924 msgid "Fresh" msgstr "Nieuw" -#: include/functions.php:1976 +#: include/functions.php:1927 +#: js/tt-rss.js:431 +#: js/tt-rss.js:584 msgid "Tag cloud" msgstr "Tag wolk" -#: include/functions.php:1978 +#: include/functions.php:1929 msgid "Other" msgstr "Andere" -#: include/functions.php:1979 +#: include/functions.php:1930 #: classes/pref/labels.php:281 msgid "Create label" msgstr "Aanmaken label" -#: include/functions.php:1980 -#: classes/pref/filters.php:606 +#: include/functions.php:1931 +#: classes/pref/filters.php:654 msgid "Create filter" msgstr "Aanmaken filter" -#: include/functions.php:1981 +#: include/functions.php:1932 msgid "Un/collapse sidebar" msgstr "Uit/Inklappen zijbalk" -#: include/functions.php:1982 +#: include/functions.php:1933 msgid "Show help dialog" msgstr "Toon helpdialoogvenster" -#: include/functions.php:2467 +#: include/functions.php:2418 #, php-format msgid "Search results: %s" msgstr "zoekresultaten: %s" -#: include/functions.php:2958 -#: js/viewfeed.js:2026 +#: include/functions.php:2909 +#: 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:2910 +#: js/viewfeed.js:2013 msgid "Play" msgstr "Afspelen" -#: include/functions.php:3076 +#: include/functions.php:3027 msgid " - " msgstr " - " -#: include/functions.php:3098 -#: include/functions.php:3392 +#: include/functions.php:3049 +#: include/functions.php:3343 #: classes/rpc.php:408 msgid "no tags" msgstr "geen tags" -#: include/functions.php:3108 -#: classes/feeds.php:682 +#: include/functions.php:3059 +#: classes/feeds.php:686 msgid "Edit tags for this article" msgstr "Bewerk tags voor dit artikel" -#: include/functions.php:3137 -#: classes/feeds.php:638 +#: include/functions.php:3088 +#: classes/feeds.php:642 msgid "Originally from:" msgstr "Oorspronkelijk uit:" -#: include/functions.php:3150 -#: classes/feeds.php:651 -#: classes/pref/feeds.php:539 +#: include/functions.php:3101 +#: classes/feeds.php:655 +#: 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:3132 +#: 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/users.php:99 +#: 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:3368 msgid "(edit note)" msgstr "(bewerk notitie)" -#: include/functions.php:3650 +#: include/functions.php:3601 msgid "unknown type" msgstr "Onbekend type" -#: include/functions.php:3706 +#: include/functions.php:3657 msgid "Attachments" msgstr "Bijlagen" @@ -976,7 +969,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 +1152,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 +1178,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 +1196,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 +1205,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 +1220,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:55 +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:176 +#: 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:1028 +#: classes/feeds.php:1080 +#: classes/feeds.php:1140 +#: classes/pref/users.php:178 +#: 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/pref/users.php:378 +#: classes/handler/public.php:764 +#: classes/pref/users.php:360 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 +1469,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:345 +#: 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:347 +#: 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 +1540,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" @@ -1757,59 +1558,155 @@ msgstr "doorsturen per e-mail" msgid "Feed:" msgstr "Feed:" -#: classes/feeds.php:201 -#: classes/feeds.php:827 +#: classes/feeds.php:205 +#: classes/feeds.php:831 msgid "Feed not found." msgstr "Feed niet gevonden." -#: classes/feeds.php:384 +#: classes/feeds.php:388 #, fuzzy, php-format msgid "Imported at %s" msgstr "Importeren" -#: classes/feeds.php:531 +#: classes/feeds.php:535 msgid "mark as read" msgstr "Markeer als gelezen" -#: classes/feeds.php:582 +#: classes/feeds.php:586 msgid "Collapse article" msgstr "Artikel inklappen" -#: classes/feeds.php:728 +#: classes/feeds.php:732 msgid "No unread articles found to display." msgstr "Er zijn geen ongelezen artikelen gevonden om weer te geven." -#: classes/feeds.php:731 +#: classes/feeds.php:735 msgid "No updated articles found to display." msgstr "Geen bijgewerkte artikelen gevonden om weer te geven." -#: classes/feeds.php:734 +#: classes/feeds.php:738 msgid "No starred articles found to display." msgstr "Er zijn geen artikelen met ster gevonden om weer te geven." -#: classes/feeds.php:738 +#: classes/feeds.php:742 msgid "No articles found to display. You can assign articles to labels manually (see the Actions menu above) or use a filter." msgstr "Geen artikelen gevonden voor weergave. U kunt artikelen handmatig aan labels toekennen (zie het Actie menu hierboven) of een filter gebruiken." -#: classes/feeds.php:740 +#: classes/feeds.php:744 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:759 +#: classes/feeds.php:923 #, 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:769 +#: classes/feeds.php:933 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:913 msgid "No feed selected." msgstr "Geen feeds geselecteerd." +#: classes/feeds.php:966 +#: classes/feeds.php:974 +msgid "Feed or site URL" +msgstr "Feed of website URL" + +#: classes/feeds.php:980 +#: 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:988 +msgid "Available feeds" +msgstr "Beschikbare feeds" + +#: classes/feeds.php:1000 +#: classes/pref/users.php:139 +#: classes/pref/feeds.php:590 +#: classes/pref/feeds.php:818 +msgid "Authentication" +msgstr "Authenticatie" + +#: classes/feeds.php:1004 +#: classes/pref/users.php:402 +#: classes/pref/feeds.php:596 +#: classes/pref/feeds.php:822 +#: classes/pref/feeds.php:1775 +msgid "Login" +msgstr "LoginID" + +#: classes/feeds.php:1007 +#: 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:1017 +msgid "This feed requires authentication." +msgstr "Deze feed vereist authenticatie." + +#: classes/feeds.php:1022 +#: classes/feeds.php:1078 +#: classes/pref/feeds.php:1796 +msgid "Subscribe" +msgstr "Abonneren" + +#: classes/feeds.php:1025 +msgid "More feeds" +msgstr "Meer feeds" + +#: classes/feeds.php:1048 +#: classes/feeds.php:1139 +#: classes/pref/users.php:332 +#: classes/pref/filters.php:641 +#: classes/pref/feeds.php:1259 +#: js/tt-rss.js:170 +msgid "Search" +msgstr "Zoeken" + +#: classes/feeds.php:1052 +msgid "Popular feeds" +msgstr "Populaire feeds" + +#: classes/feeds.php:1053 +msgid "Feed archive" +msgstr "Feed archief" + +#: classes/feeds.php:1056 +msgid "limit:" +msgstr "Beperking:" + +#: classes/feeds.php:1079 +#: classes/pref/users.php:358 +#: 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:1090 +msgid "Look for" +msgstr "Zoek naar" + +#: classes/feeds.php:1098 +msgid "Limit search to:" +msgstr "Beperk zoeken naar:" + +#: classes/feeds.php:1114 +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 +1779,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." @@ -1891,122 +1788,131 @@ msgstr "Fout bij het parseren van het document." msgid "Your access level is insufficient to open this tab." msgstr "Uw toegangsniveau is niet toereikend om deze tab te openen." -#: classes/pref/users.php:27 -msgid "User details" -msgstr "Gebruiker's details" - -#: classes/pref/users.php:41 +#: classes/pref/users.php:34 msgid "User not found" msgstr "Gebruiker niet gevonden" -#: classes/pref/users.php:60 -#: classes/pref/users.php:422 +#: classes/pref/users.php:53 +#: classes/pref/users.php:404 msgid "Registered" msgstr "Geregistreerd" -#: classes/pref/users.php:61 +#: classes/pref/users.php:54 msgid "Last logged in" msgstr "Laatst ingelogd" -#: classes/pref/users.php:68 +#: classes/pref/users.php:61 msgid "Subscribed feeds count" msgstr "Aantal geabonneerde feeds" -#: classes/pref/users.php:72 +#: classes/pref/users.php:65 msgid "Subscribed feeds" msgstr "Geabonneerde feeds" -#: classes/pref/users.php:122 -msgid "User Editor" -msgstr "Gebruiker's Editor" - -#: classes/pref/users.php:158 +#: classes/pref/users.php:142 msgid "Access level: " msgstr "Toegangsniveau:" -#: classes/pref/users.php:171 +#: classes/pref/users.php:155 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/users.php:161 +#: classes/pref/feeds.php:610 +#: classes/pref/feeds.php:834 msgid "Options" msgstr "Opties" -#: classes/pref/users.php:180 +#: classes/pref/users.php:164 msgid "E-mail: " msgstr "E-mail: " -#: classes/pref/users.php:258 +#: classes/pref/users.php:240 #, php-format msgid "Added user <b>%s</b> with password <b>%s</b>" msgstr "Gebruiker <b>%s</b> toegevoegd met wachtwoord <b>%s</b>" -#: classes/pref/users.php:265 +#: classes/pref/users.php:247 #, php-format msgid "Could not create user <b>%s</b>" msgstr "Kon gebruiker <b>%s</b> niet aanmaken" -#: classes/pref/users.php:269 +#: classes/pref/users.php:251 #, php-format msgid "User <b>%s</b> already exists." msgstr "Gebruiker <b>%s</b> bestaat al." -#: classes/pref/users.php:291 +#: classes/pref/users.php:273 #, fuzzy, php-format msgid "Changed password of user <b>%s</b> to <b>%s</b>" msgstr "" "Wijzig wachtwoord van gebruiker<b>%s</b>\n" "\t\t\t\t naar <b>%s</b>" -#: classes/pref/users.php:293 +#: classes/pref/users.php:275 #, fuzzy, php-format msgid "Sending new password of user <b>%s</b> to <b>%s</b>" msgstr "" "Wijzig wachtwoord van gebruiker<b>%s</b>\n" "\t\t\t\t naar <b>%s</b>" -#: classes/pref/users.php:317 +#: classes/pref/users.php:299 msgid "[tt-rss] Password change notification" msgstr "[tt-rss] Melding verandering van wachtwoord" -#: classes/pref/users.php:368 +#: classes/pref/users.php:342 +#: 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:350 msgid "Create user" msgstr "Gebruiker aanmaken" -#: classes/pref/users.php:372 +#: classes/pref/users.php:354 msgid "Details" msgstr "Details" -#: classes/pref/users.php:374 -#: classes/pref/filters.php:612 +#: classes/pref/users.php:356 +#: classes/pref/filters.php:660 #: plugins/instances/init.php:296 msgid "Edit" msgstr "Bewerken" -#: classes/pref/users.php:421 +#: classes/pref/users.php:403 msgid "Access Level" msgstr "Toegangsniveau" -#: classes/pref/users.php:423 +#: classes/pref/users.php:405 msgid "Last login" msgstr "Laatste loginID" -#: classes/pref/users.php:444 +#: classes/pref/users.php:426 #: plugins/instances/init.php:337 msgid "Click to edit" msgstr "Klik voor bewerken" -#: classes/pref/users.php:464 +#: classes/pref/users.php:446 msgid "No users defined." msgstr "Geen gebruikers gedefinieerd." -#: classes/pref/users.php:466 +#: classes/pref/users.php:448 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 +1937,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 +2265,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 +2782,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 +2807,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 +2859,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 +2922,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 +3104,7 @@ msgstr "Bewerk categorie" msgid "Remove category" msgstr "Categorie verwijderen" -#: js/PrefFilterTree.js:32 +#: js/PrefFilterTree.js:48 msgid "Inverse" msgstr "Omgekeerd" @@ -3137,6 +3121,10 @@ msgstr "Kan geen gebruiker aanmaken: geen loginID gespecificeerd." msgid "Adding user..." msgstr "filter toevoegen..." +#: js/prefs.js:94 +msgid "User Editor" +msgstr "Gebruiker's Editor" + #: js/prefs.js:117 msgid "Edit Filter" msgstr "Bewerk filter" @@ -3160,7 +3148,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." @@ -3250,6 +3238,10 @@ msgstr "Wachtwoord van geselecteerde gebruiker opnieuw instellen?" msgid "Resetting password for selected user..." msgstr "Wachtwoord van geselecteerde gebruiker opnieuw instellen?" +#: js/prefs.js:585 +msgid "User details" +msgstr "Gebruiker's details" + #: js/prefs.js:602 msgid "Please select only one filter." msgstr "Selecteer aub slecht één filter." @@ -3271,154 +3263,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 +3431,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 +3488,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 +3703,25 @@ 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 "Refresh" +#~ msgstr "Nieuw" + +#, 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" diff --git a/locale/pl_PL/LC_MESSAGES/messages.mo b/locale/pl_PL/LC_MESSAGES/messages.mo Binary files differindex bb36dae74..5b0b29b9d 100644 --- a/locale/pl_PL/LC_MESSAGES/messages.mo +++ b/locale/pl_PL/LC_MESSAGES/messages.mo diff --git a/locale/pl_PL/LC_MESSAGES/messages.po b/locale/pl_PL/LC_MESSAGES/messages.po index 5fe71b30c..87c63a462 100644 --- a/locale/pl_PL/LC_MESSAGES/messages.po +++ b/locale/pl_PL/LC_MESSAGES/messages.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Tiny Tiny RSS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-31 12:47+0400\n" +"POT-Creation-Date: 2013-04-01 19:15+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" @@ -92,7 +92,7 @@ msgid "Weekly" msgstr "Cotygodniowo" #: backend.php:101 -#: classes/pref/users.php:139 +#: classes/pref/users.php:123 msgid "User" msgstr "Użytkownik" @@ -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,38 @@ 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:273 +#: prefs.php:103 +#: test.php:11 #: 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 +304,13 @@ msgid "All Articles" msgstr "Wszystkie artykuÅ‚y" #: index.php:176 -#: include/functions.php:1974 +#: include/functions.php:1925 #: classes/feeds.php:106 msgid "Starred" msgstr "Oznaczone gwiazdkÄ…" #: index.php:177 -#: include/functions.php:1975 +#: include/functions.php:1926 #: classes/feeds.php:107 msgid "Published" msgstr "Opublikowane" @@ -348,133 +350,126 @@ 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:237 +#: include/functions.php:1915 #: include/localized_schema.php:10 #: classes/feeds.php:111 -#: classes/feeds.php:136 -#: classes/feeds.php:437 +#: classes/feeds.php:441 #: js/FeedTree.js:128 #: js/FeedTree.js:156 #: plugins/digest/digest.js:647 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:1811 +#: include/functions.php:1923 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:214 msgid "Communication problem with server." msgstr "Problem w komunikacji z serwerem." -#: index.php:220 +#: index.php:222 msgid "New version of Tiny Tiny RSS is available!" msgstr "DostÄ™pna jest nowa wersja Tiny Tiny RSS!" -#: index.php:225 +#: index.php:227 msgid "Actions..." msgstr "DziaÅ‚ania..." -#: index.php:227 +#: index.php:229 msgid "Preferences..." msgstr "Ustawienia..." -#: index.php:228 +#: index.php:230 msgid "Search..." msgstr "Szukaj..." -#: index.php:229 +#: index.php:231 msgid "Feed actions:" msgstr "DziaÅ‚ania dla kanałów:" -#: index.php:230 -#: classes/handler/public.php:555 +#: index.php:232 +#: classes/handler/public.php:556 msgid "Subscribe to feed..." msgstr "Prenumeruj kanaÅ‚..." -#: index.php:231 +#: index.php:233 msgid "Edit this feed..." msgstr "Edytuj ten kanaÅ‚..." -#: index.php:232 +#: index.php:234 msgid "Rescore feed" msgstr "Przelicz punktacjÄ™ kanaÅ‚u" -#: index.php:233 -#: classes/pref/feeds.php:716 -#: classes/pref/feeds.php:1303 +#: index.php:235 +#: classes/pref/feeds.php:717 +#: classes/pref/feeds.php:1304 #: js/PrefFeedTree.js:73 msgid "Unsubscribe" msgstr "Wypisz siÄ™" -#: index.php:234 +#: index.php:236 msgid "All feeds:" msgstr "Wszystkie kanaÅ‚y:" -#: index.php:236 +#: index.php:238 msgid "(Un)hide read feeds" msgstr "Pokaż/Ukryj przeczytane kanaÅ‚y" -#: index.php:237 +#: index.php:239 msgid "Other actions:" msgstr "Inne dziaÅ‚ania:" -#: index.php:239 +#: index.php:241 msgid "Switch to digest..." msgstr "Przełącz na przeglÄ…d..." -#: index.php:241 +#: index.php:243 msgid "Show tag cloud..." msgstr "Pokaż chmurÄ™ tagów..." -#: index.php:242 -#: include/functions.php:1950 +#: index.php:244 +#: include/functions.php:1901 msgid "Toggle widescreen mode" msgstr "Przełącz tryb szerokoekranowy" -#: index.php:243 +#: index.php:245 msgid "Select by tags..." msgstr "Wybierz używajÄ…c tagów..." -#: index.php:244 +#: index.php:246 msgid "Create label..." msgstr "Utwórz etykietÄ™..." -#: index.php:245 +#: index.php:247 msgid "Create filter..." msgstr "Utwórz filtr..." -#: index.php:246 +#: index.php:248 msgid "Keyboard shortcuts help" msgstr "O skrótach klawiszowych" -#: index.php:248 +#: index.php:257 #: plugins/digest/digest_body.php:77 #: plugins/mobile/mobile-functions.php:62 #: plugins/mobile/mobile-functions.php:237 @@ -482,41 +477,41 @@ msgid "Logout" msgstr "Wyloguj" #: prefs.php:36 -#: prefs.php:122 -#: include/functions.php:1977 +#: prefs.php:121 +#: include/functions.php:1928 #: 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:1118 +#: include/functions.php:1754 #: 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 +537,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 +575,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:1127 +#: include/functions.php:1655 +#: include/functions.php:1740 +#: include/functions.php:1762 #: classes/opml.php:416 -#: classes/pref/feeds.php:221 +#: classes/pref/feeds.php:222 msgid "Uncategorized" msgstr "Bez kategorii" @@ -601,329 +596,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:1116 +#: include/functions.php:1752 #: 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:1604 +#: classes/feeds.php:1101 +#: classes/pref/filters.php:427 msgid "All feeds" msgstr "Wszystkie kanaÅ‚y" -#: include/functions.php:1854 +#: include/functions.php:1805 msgid "Starred articles" msgstr "ArtykuÅ‚y oznaczone gwiazdkÄ…" -#: include/functions.php:1856 +#: include/functions.php:1807 msgid "Published articles" msgstr "Opublikowane artykuÅ‚y" -#: include/functions.php:1858 +#: include/functions.php:1809 msgid "Fresh articles" msgstr "Åšwieże artykuÅ‚y" -#: include/functions.php:1862 +#: include/functions.php:1813 msgid "Archived articles" msgstr "Zarchiwizowane artykuÅ‚y" -#: include/functions.php:1864 +#: include/functions.php:1815 msgid "Recently read" msgstr "Ostatnio czytane" -#: include/functions.php:1927 +#: include/functions.php:1878 msgid "Navigation" msgstr "Nawigacja" -#: include/functions.php:1928 +#: include/functions.php:1879 msgid "Open next feed" msgstr "Przejdź do nastÄ™pnego kanaÅ‚u" -#: include/functions.php:1929 +#: include/functions.php:1880 msgid "Open previous feed" msgstr "Otwórz poprzedni kanaÅ‚" -#: include/functions.php:1930 +#: include/functions.php:1881 msgid "Open next article" msgstr "Otwórz nastÄ™pny artykuÅ‚" -#: include/functions.php:1931 +#: include/functions.php:1882 msgid "Open previous article" msgstr "Otwórz poprzedni artykuÅ‚" -#: include/functions.php:1932 +#: include/functions.php:1883 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:1884 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:1885 msgid "Show search dialog" msgstr "Otwórz okno wyszukiwania" -#: include/functions.php:1935 +#: include/functions.php:1886 msgid "Article" msgstr "ArtykuÅ‚" -#: include/functions.php:1936 +#: include/functions.php:1887 msgid "Toggle starred" msgstr "Przełącz oznaczenie gwiazdkÄ…" -#: include/functions.php:1937 -#: js/viewfeed.js:1920 +#: include/functions.php:1888 +#: js/viewfeed.js:1908 msgid "Toggle published" msgstr "Przełącz flagÄ™ publikacji" -#: include/functions.php:1938 -#: js/viewfeed.js:1898 +#: include/functions.php:1889 +#: js/viewfeed.js:1886 msgid "Toggle unread" msgstr "Przełącz flagÄ™ \"przeczytano\"" -#: include/functions.php:1939 +#: include/functions.php:1890 msgid "Edit tags" msgstr "Edytuj tagi" -#: include/functions.php:1940 +#: include/functions.php:1891 msgid "Dismiss selected" msgstr "Odrzuć wybrane" -#: include/functions.php:1941 +#: include/functions.php:1892 msgid "Dismiss read" msgstr "Odrzuć przeczytane" -#: include/functions.php:1942 +#: include/functions.php:1893 msgid "Open in new window" msgstr "Otwórz w nowym oknie" -#: include/functions.php:1943 -#: js/viewfeed.js:1939 +#: include/functions.php:1894 +#: 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:1895 +#: js/viewfeed.js:1921 msgid "Mark above as read" msgstr "Oznacz powyższe jako przeczytane" -#: include/functions.php:1945 +#: include/functions.php:1896 msgid "Scroll down" msgstr "PrzewiÅ„ w dół" -#: include/functions.php:1946 +#: include/functions.php:1897 msgid "Scroll up" msgstr "PrzewiÅ„ do góry" -#: include/functions.php:1947 +#: include/functions.php:1898 msgid "Select article under cursor" msgstr "Wybierz artykuÅ‚ pod kursorem" -#: include/functions.php:1948 +#: include/functions.php:1899 msgid "Email article" msgstr "PrzeÅ›lij artykuÅ‚ emailem" -#: include/functions.php:1949 +#: include/functions.php:1900 msgid "Close/collapse article" msgstr "Zamknij/zwiÅ„ artykuÅ‚" -#: include/functions.php:1951 +#: include/functions.php:1902 #: plugins/embed_original/init.php:33 msgid "Toggle embed original" msgstr "Przełącza flagÄ™ \"wbuduj oryginalny artykuÅ‚\"" -#: include/functions.php:1952 +#: include/functions.php:1903 msgid "Article selection" msgstr "Wybór artykułów" -#: include/functions.php:1953 +#: include/functions.php:1904 msgid "Select all articles" msgstr "Wybierz wszystkie artykuÅ‚y" -#: include/functions.php:1954 +#: include/functions.php:1905 msgid "Select unread" msgstr "Wybierz nieprzeczytane" -#: include/functions.php:1955 +#: include/functions.php:1906 msgid "Select starred" msgstr "Wybierz oznaczone gwiazdkÄ…" -#: include/functions.php:1956 +#: include/functions.php:1907 msgid "Select published" msgstr "Wybierz opublikowane" -#: include/functions.php:1957 +#: include/functions.php:1908 msgid "Invert selection" msgstr "Odwróć zaznaczenie" -#: include/functions.php:1958 +#: include/functions.php:1909 msgid "Deselect everything" msgstr "Odznacz wszystko" -#: include/functions.php:1959 -#: classes/pref/feeds.php:520 -#: classes/pref/feeds.php:753 +#: include/functions.php:1910 +#: classes/pref/feeds.php:521 +#: classes/pref/feeds.php:754 msgid "Feed" msgstr "KanaÅ‚" -#: include/functions.php:1960 +#: include/functions.php:1911 msgid "Refresh current feed" msgstr "OdÅ›wież bieżący kanaÅ‚" -#: include/functions.php:1961 +#: include/functions.php:1912 msgid "Un/hide read feeds" msgstr "Pokaż/Ukryj przeczytane kanaÅ‚y" -#: include/functions.php:1962 -#: classes/pref/feeds.php:1274 +#: include/functions.php:1913 +#: classes/pref/feeds.php:1275 msgid "Subscribe to feed" msgstr "Prenumeruj kanaÅ‚" -#: include/functions.php:1963 +#: include/functions.php:1914 #: js/FeedTree.js:135 #: js/PrefFeedTree.js:67 msgid "Edit feed" msgstr "Edytuj kanaÅ‚" -#: include/functions.php:1965 +#: include/functions.php:1916 msgid "Reverse headlines" msgstr "Odwróć kolejność nagłówków" -#: include/functions.php:1966 +#: include/functions.php:1917 msgid "Debug feed update" msgstr "Testuj aktualizacjÄ™ kanałów" -#: include/functions.php:1967 +#: include/functions.php:1918 #: js/FeedTree.js:178 msgid "Mark all feeds as read" msgstr "Oznacz wszystkie kanaÅ‚y jako przeczytane" -#: include/functions.php:1968 +#: include/functions.php:1919 msgid "Un/collapse current category" msgstr "ZwiÅ„/rozwiÅ„ bieżącÄ… kategoriÄ™" -#: include/functions.php:1969 +#: include/functions.php:1920 msgid "Toggle combined mode" msgstr "Przełącz tryb scalony" -#: include/functions.php:1970 +#: include/functions.php:1921 #, fuzzy msgid "Toggle auto expand in combined mode" msgstr "Przełącz tryb scalony" -#: include/functions.php:1971 +#: include/functions.php:1922 msgid "Go to" msgstr "Idź do" -#: include/functions.php:1973 +#: include/functions.php:1924 msgid "Fresh" msgstr "Åšwieży" -#: include/functions.php:1976 +#: include/functions.php:1927 +#: js/tt-rss.js:431 +#: js/tt-rss.js:584 msgid "Tag cloud" msgstr "Chmura tagów" -#: include/functions.php:1978 +#: include/functions.php:1929 msgid "Other" msgstr "Inne" -#: include/functions.php:1979 +#: include/functions.php:1930 #: classes/pref/labels.php:281 msgid "Create label" msgstr "Utwórz etykietÄ™" -#: include/functions.php:1980 -#: classes/pref/filters.php:606 +#: include/functions.php:1931 +#: classes/pref/filters.php:654 msgid "Create filter" msgstr "Utwórz filtr" -#: include/functions.php:1981 +#: include/functions.php:1932 msgid "Un/collapse sidebar" msgstr "Zwin/rozwiÅ„ pasek boczny" -#: include/functions.php:1982 +#: include/functions.php:1933 msgid "Show help dialog" msgstr "Otwórz okno pomocy" -#: include/functions.php:2467 +#: include/functions.php:2418 #, php-format msgid "Search results: %s" msgstr "Wyniki wyszukiwania: %s" -#: include/functions.php:2958 -#: js/viewfeed.js:2026 +#: include/functions.php:2909 +#: js/viewfeed.js:2014 msgid "Click to play" msgstr "WciÅ›nij aby odtworzyć" -#: include/functions.php:2959 -#: js/viewfeed.js:2025 +#: include/functions.php:2910 +#: js/viewfeed.js:2013 msgid "Play" msgstr "Odtwórz" -#: include/functions.php:3076 +#: include/functions.php:3027 msgid " - " msgstr " - " -#: include/functions.php:3098 -#: include/functions.php:3392 +#: include/functions.php:3049 +#: include/functions.php:3343 #: classes/rpc.php:408 msgid "no tags" msgstr "brak tagów" -#: include/functions.php:3108 -#: classes/feeds.php:682 +#: include/functions.php:3059 +#: classes/feeds.php:686 msgid "Edit tags for this article" msgstr "Edytuj tagi dla tego artykuÅ‚u" -#: include/functions.php:3137 -#: classes/feeds.php:638 +#: include/functions.php:3088 +#: classes/feeds.php:642 msgid "Originally from:" msgstr "OryginaÅ‚ pochodzi z:" -#: include/functions.php:3150 -#: classes/feeds.php:651 -#: classes/pref/feeds.php:539 +#: include/functions.php:3101 +#: classes/feeds.php:655 +#: 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:3132 +#: 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/users.php:99 +#: 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:3368 msgid "(edit note)" msgstr "(edytuj notatkÄ™)" -#: include/functions.php:3650 +#: include/functions.php:3601 msgid "unknown type" msgstr "nieznany typ" -#: include/functions.php:3706 +#: include/functions.php:3657 msgid "Attachments" msgstr "Załączniki" @@ -967,7 +960,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 +1143,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 +1168,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 +1185,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 +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 "DomyÅ›lny profil" @@ -1216,476 +1209,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:55 +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:176 +#: 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:1028 +#: classes/feeds.php:1080 +#: classes/feeds.php:1140 +#: classes/pref/users.php:178 +#: 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/pref/users.php:378 +#: classes/handler/public.php:764 +#: classes/pref/users.php:360 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 +1457,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:345 +#: 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:347 +#: 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 +1528,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Å„" @@ -1745,59 +1546,155 @@ msgstr "Przekaż za pomocÄ… emaila" msgid "Feed:" msgstr "KanaÅ‚:" -#: classes/feeds.php:201 -#: classes/feeds.php:827 +#: classes/feeds.php:205 +#: classes/feeds.php:831 msgid "Feed not found." msgstr "KanaÅ‚ nie zostaÅ‚ odnaleziony." -#: classes/feeds.php:384 +#: classes/feeds.php:388 #, fuzzy, php-format msgid "Imported at %s" msgstr "Importuj" -#: classes/feeds.php:531 +#: classes/feeds.php:535 msgid "mark as read" msgstr "oznacz jako przeczytane" -#: classes/feeds.php:582 +#: classes/feeds.php:586 msgid "Collapse article" msgstr "ZwiÅ„ artykuÅ‚" -#: classes/feeds.php:728 +#: classes/feeds.php:732 msgid "No unread articles found to display." msgstr "Nie znaleziono nieprzeczytanych artykułów." -#: classes/feeds.php:731 +#: classes/feeds.php:735 msgid "No updated articles found to display." msgstr "Nie znaleziono uaktualnionych artykułów." -#: classes/feeds.php:734 +#: classes/feeds.php:738 msgid "No starred articles found to display." msgstr "Nie znaleziono artykułów oznaczonych gwiazdkÄ…." -#: classes/feeds.php:738 +#: classes/feeds.php:742 msgid "No articles found to display. You can assign articles to labels manually (see the Actions menu above) or use a filter." msgstr "Nie znaleziono artykułów. Możesz rÄ™cznie przypisać artykuÅ‚y do etykiet (zobacz menu Akcje powyżej) lub wykorzystać do tego celu filtry." -#: classes/feeds.php:740 +#: classes/feeds.php:744 msgid "No articles found to display." msgstr "Nie znaleziono artykułów." -#: classes/feeds.php:755 -#: classes/feeds.php:920 +#: classes/feeds.php:759 +#: classes/feeds.php:923 #, 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:769 +#: classes/feeds.php:933 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:913 msgid "No feed selected." msgstr "Nie wybrano kanaÅ‚u." +#: classes/feeds.php:966 +#: classes/feeds.php:974 +msgid "Feed or site URL" +msgstr "Adres kanaÅ‚u lub strony" + +#: classes/feeds.php:980 +#: 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:988 +msgid "Available feeds" +msgstr "DostÄ™pne kanaÅ‚y" + +#: classes/feeds.php:1000 +#: classes/pref/users.php:139 +#: classes/pref/feeds.php:590 +#: classes/pref/feeds.php:818 +msgid "Authentication" +msgstr "Uwierzytelnianie" + +#: classes/feeds.php:1004 +#: classes/pref/users.php:402 +#: classes/pref/feeds.php:596 +#: classes/pref/feeds.php:822 +#: classes/pref/feeds.php:1775 +msgid "Login" +msgstr "Nazwa użytkownika" + +#: classes/feeds.php:1007 +#: 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:1017 +msgid "This feed requires authentication." +msgstr "Ten kanaÅ‚ wymaga uwierzytelniania." + +#: classes/feeds.php:1022 +#: classes/feeds.php:1078 +#: classes/pref/feeds.php:1796 +msgid "Subscribe" +msgstr "Prenumeruj" + +#: classes/feeds.php:1025 +msgid "More feeds" +msgstr "WiÄ™cej kanałów" + +#: classes/feeds.php:1048 +#: classes/feeds.php:1139 +#: classes/pref/users.php:332 +#: classes/pref/filters.php:641 +#: classes/pref/feeds.php:1259 +#: js/tt-rss.js:170 +msgid "Search" +msgstr "Szukaj" + +#: classes/feeds.php:1052 +msgid "Popular feeds" +msgstr "Popularne kanaÅ‚y" + +#: classes/feeds.php:1053 +msgid "Feed archive" +msgstr "Archiwum kanaÅ‚u" + +#: classes/feeds.php:1056 +msgid "limit:" +msgstr "limit:" + +#: classes/feeds.php:1079 +#: classes/pref/users.php:358 +#: 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:1090 +msgid "Look for" +msgstr "Szukaj napisu" + +#: classes/feeds.php:1098 +msgid "Limit search to:" +msgstr "Ogranicz wyszukiwanie do:" + +#: classes/feeds.php:1114 +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 +1767,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." @@ -1879,118 +1776,127 @@ msgstr "Błąd przetwarzania dokumentu." msgid "Your access level is insufficient to open this tab." msgstr "Twój poziom uprawnieÅ„ jest niewystarczajÄ…cy aby otworzyć tÄ™ zakÅ‚adkÄ™." -#: classes/pref/users.php:27 -msgid "User details" -msgstr "Szczegóły użytkownika" - -#: classes/pref/users.php:41 +#: classes/pref/users.php:34 msgid "User not found" msgstr "Użytkownik nie zostaÅ‚ odnaleziony" -#: classes/pref/users.php:60 -#: classes/pref/users.php:422 +#: classes/pref/users.php:53 +#: classes/pref/users.php:404 msgid "Registered" msgstr "Zarejestrowany" -#: classes/pref/users.php:61 +#: classes/pref/users.php:54 msgid "Last logged in" msgstr "Ostatnio zalogowany" -#: classes/pref/users.php:68 +#: classes/pref/users.php:61 msgid "Subscribed feeds count" msgstr "Ilość prenumerowanych kanałów" -#: classes/pref/users.php:72 +#: classes/pref/users.php:65 msgid "Subscribed feeds" msgstr "Prenumerowane kanaÅ‚y" -#: classes/pref/users.php:122 -msgid "User Editor" -msgstr "Edytor użytkowników" - -#: classes/pref/users.php:158 +#: classes/pref/users.php:142 msgid "Access level: " msgstr "Poziom dostÄ™pu: " -#: classes/pref/users.php:171 +#: classes/pref/users.php:155 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/users.php:161 +#: classes/pref/feeds.php:610 +#: classes/pref/feeds.php:834 msgid "Options" msgstr "Opcje" -#: classes/pref/users.php:180 +#: classes/pref/users.php:164 msgid "E-mail: " msgstr "E-mail: " -#: classes/pref/users.php:258 +#: classes/pref/users.php:240 #, php-format msgid "Added user <b>%s</b> with password <b>%s</b>" msgstr "Dodano użytkownika <b>%s</b> używajÄ…cego hasÅ‚a <b>%s</b>" -#: classes/pref/users.php:265 +#: classes/pref/users.php:247 #, php-format msgid "Could not create user <b>%s</b>" msgstr "Nie udaÅ‚o siÄ™ utworzyć użytkownika <b>%s</b>" -#: classes/pref/users.php:269 +#: classes/pref/users.php:251 #, php-format msgid "User <b>%s</b> already exists." msgstr "Użytkownik <b>%s</b> już istnieje." -#: classes/pref/users.php:291 +#: classes/pref/users.php:273 #, php-format msgid "Changed password of user <b>%s</b> to <b>%s</b>" msgstr "Zmieniono hasÅ‚o użytkownika <b>%s</b> na <b>%s</b>" -#: classes/pref/users.php:293 +#: classes/pref/users.php:275 #, php-format msgid "Sending new password of user <b>%s</b> to <b>%s</b>" msgstr "WysyÅ‚am nowe hasÅ‚o dla użytkownika <b>%s</b> na adres <b>%s</b>" -#: classes/pref/users.php:317 +#: classes/pref/users.php:299 msgid "[tt-rss] Password change notification" msgstr "[tt-rss] Informacja o zmianie hasÅ‚a" -#: classes/pref/users.php:368 +#: classes/pref/users.php:342 +#: 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:350 msgid "Create user" msgstr "Utwórz użytkownika" -#: classes/pref/users.php:372 +#: classes/pref/users.php:354 msgid "Details" msgstr "Szczegóły" -#: classes/pref/users.php:374 -#: classes/pref/filters.php:612 +#: classes/pref/users.php:356 +#: classes/pref/filters.php:660 #: plugins/instances/init.php:296 msgid "Edit" msgstr "Edytuj" -#: classes/pref/users.php:421 +#: classes/pref/users.php:403 msgid "Access Level" msgstr "Poziom dostÄ™pu" -#: classes/pref/users.php:423 +#: classes/pref/users.php:405 msgid "Last login" msgstr "Ostatnie logowanie" -#: classes/pref/users.php:444 +#: classes/pref/users.php:426 #: plugins/instances/init.php:337 msgid "Click to edit" msgstr "Kliknij aby edytować" -#: classes/pref/users.php:464 +#: classes/pref/users.php:446 msgid "No users defined." msgstr "Nie zdefiniowano żadnego użytkownika." -#: classes/pref/users.php:466 +#: classes/pref/users.php:448 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 +1921,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 +2250,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 +2764,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 +2789,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 +2841,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 +2904,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 +3080,7 @@ msgstr "Edytuj kategoriÄ™" msgid "Remove category" msgstr "UsuÅ„ kategoriÄ™" -#: js/PrefFilterTree.js:32 +#: js/PrefFilterTree.js:48 msgid "Inverse" msgstr "Odwróć" @@ -3113,6 +3096,10 @@ msgstr "Nie stworzono użytkownika: nie wprowadzono nazwy użytkownika." msgid "Adding user..." msgstr "Dodawanie użytkownika..." +#: js/prefs.js:94 +msgid "User Editor" +msgstr "Edytor użytkowników" + #: js/prefs.js:117 msgid "Edit Filter" msgstr "Edytuj filtr" @@ -3134,7 +3121,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." @@ -3217,6 +3204,10 @@ msgstr "Zresetować hasÅ‚o wybranego użytkownika?" msgid "Resetting password for selected user..." msgstr "Resetowanie hasÅ‚a wybranego użytkownika..." +#: js/prefs.js:585 +msgid "User details" +msgstr "Szczegóły użytkownika" + #: js/prefs.js:602 msgid "Please select only one filter." msgstr "Wybierz tylko jeden filtr." @@ -3237,144 +3228,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 +3385,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 +3441,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 +3653,25 @@ 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ć." +#, fuzzy +#~ msgid "Refresh" +#~ msgstr "Åšwieży" + +#~ 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." diff --git a/locale/pt_BR/LC_MESSAGES/messages.mo b/locale/pt_BR/LC_MESSAGES/messages.mo Binary files differindex cc8c7a5f4..1f30d9855 100644 --- a/locale/pt_BR/LC_MESSAGES/messages.mo +++ b/locale/pt_BR/LC_MESSAGES/messages.mo diff --git a/locale/pt_BR/LC_MESSAGES/messages.po b/locale/pt_BR/LC_MESSAGES/messages.po index 4c79965f5..4b0f652bd 100644 --- a/locale/pt_BR/LC_MESSAGES/messages.po +++ b/locale/pt_BR/LC_MESSAGES/messages.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: tt-rss 1.2.14.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-31 12:47+0400\n" +"POT-Creation-Date: 2013-04-01 19:15+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" @@ -91,7 +91,7 @@ msgid "Weekly" msgstr "Semanalmente" #: backend.php:101 -#: classes/pref/users.php:139 +#: classes/pref/users.php:123 msgid "User" msgstr "Usuário" @@ -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,38 @@ msgstr "" #: index.php:135 #: index.php:154 -#: index.php:264 -#: prefs.php:102 +#: index.php:273 +#: prefs.php:103 +#: test.php:11 #: 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 +307,13 @@ msgid "All Articles" msgstr "" #: index.php:176 -#: include/functions.php:1974 +#: include/functions.php:1925 #: classes/feeds.php:106 msgid "Starred" msgstr "Favoritos" #: index.php:177 -#: include/functions.php:1975 +#: include/functions.php:1926 #: classes/feeds.php:107 msgid "Published" msgstr "Publicado" @@ -352,144 +354,137 @@ 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:237 +#: include/functions.php:1915 #: include/localized_schema.php:10 #: classes/feeds.php:111 -#: classes/feeds.php:136 -#: classes/feeds.php:437 +#: classes/feeds.php:441 #: js/FeedTree.js:128 #: js/FeedTree.js:156 #: plugins/digest/digest.js:647 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:1811 +#: include/functions.php:1923 #, 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:214 msgid "Communication problem with server." msgstr "" -#: index.php:220 +#: index.php:222 msgid "New version of Tiny Tiny RSS is available!" msgstr "" -#: index.php:225 +#: index.php:227 msgid "Actions..." msgstr "Ações..." -#: index.php:227 +#: index.php:229 #, fuzzy msgid "Preferences..." msgstr "Preferências" -#: index.php:228 +#: index.php:230 msgid "Search..." msgstr "" -#: index.php:229 +#: index.php:231 msgid "Feed actions:" msgstr "Ações do Feed:" -#: index.php:230 -#: classes/handler/public.php:555 +#: index.php:232 +#: classes/handler/public.php:556 #, fuzzy msgid "Subscribe to feed..." msgstr "Removendo o Feed..." -#: index.php:231 +#: index.php:233 #, fuzzy msgid "Edit this feed..." msgstr "Editar" -#: index.php:232 +#: index.php:234 #, fuzzy msgid "Rescore feed" msgstr "Removendo o Feed..." -#: index.php:233 -#: classes/pref/feeds.php:716 -#: classes/pref/feeds.php:1303 +#: index.php:235 +#: classes/pref/feeds.php:717 +#: classes/pref/feeds.php:1304 #: js/PrefFeedTree.js:73 msgid "Unsubscribe" msgstr "" -#: index.php:234 +#: index.php:236 msgid "All feeds:" msgstr "Todos os Feeds:" -#: index.php:236 +#: index.php:238 msgid "(Un)hide read feeds" msgstr "" -#: index.php:237 +#: index.php:239 msgid "Other actions:" msgstr "Outras ações:" -#: index.php:239 +#: index.php:241 msgid "Switch to digest..." msgstr "" -#: index.php:241 +#: index.php:243 #, fuzzy msgid "Show tag cloud..." msgstr "núvem de tags" -#: index.php:242 -#: include/functions.php:1950 +#: index.php:244 +#: include/functions.php:1901 #, fuzzy msgid "Toggle widescreen mode" msgstr "Remover as categorias selecionadas?" -#: index.php:243 +#: index.php:245 msgid "Select by tags..." msgstr "" -#: index.php:244 +#: index.php:246 #, fuzzy msgid "Create label..." msgstr "Criar um usuário" -#: index.php:245 +#: index.php:247 #, fuzzy msgid "Create filter..." msgstr "Criar um usuário" -#: index.php:246 +#: index.php:248 #, fuzzy msgid "Keyboard shortcuts help" msgstr " Criar filtro" -#: index.php:248 +#: index.php:257 #: plugins/digest/digest_body.php:77 #: plugins/mobile/mobile-functions.php:62 #: plugins/mobile/mobile-functions.php:237 @@ -497,44 +492,44 @@ msgid "Logout" msgstr "Sair" #: prefs.php:36 -#: prefs.php:122 -#: include/functions.php:1977 +#: prefs.php:121 +#: include/functions.php:1928 #: classes/pref/prefs.php:377 msgid "Preferences" msgstr "Preferências" -#: prefs.php:113 +#: prefs.php:112 #, fuzzy msgid "Keyboard shortcuts" msgstr " 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:1118 +#: include/functions.php:1754 #: 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 +556,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 +596,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:1127 +#: include/functions.php:1655 +#: include/functions.php:1740 +#: include/functions.php:1762 #: classes/opml.php:416 -#: classes/pref/feeds.php:221 +#: classes/pref/feeds.php:222 msgid "Uncategorized" msgstr "Não Categorizado" @@ -622,370 +617,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:1116 +#: include/functions.php:1752 #: 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:1604 +#: classes/feeds.php:1101 +#: classes/pref/filters.php:427 msgid "All feeds" msgstr "Todos os feeds" -#: include/functions.php:1854 +#: include/functions.php:1805 msgid "Starred articles" msgstr "" -#: include/functions.php:1856 +#: include/functions.php:1807 msgid "Published articles" msgstr "" -#: include/functions.php:1858 +#: include/functions.php:1809 msgid "Fresh articles" msgstr "" -#: include/functions.php:1862 +#: include/functions.php:1813 #, fuzzy msgid "Archived articles" msgstr "Favoritos" -#: include/functions.php:1864 +#: include/functions.php:1815 msgid "Recently read" msgstr "" -#: include/functions.php:1927 +#: include/functions.php:1878 #, fuzzy msgid "Navigation" msgstr "Salvar configuração" -#: include/functions.php:1928 +#: include/functions.php:1879 msgid "Open next feed" msgstr "" -#: include/functions.php:1929 +#: include/functions.php:1880 msgid "Open previous feed" msgstr "" -#: include/functions.php:1930 +#: include/functions.php:1881 #, fuzzy msgid "Open next article" msgstr "Favoritos" -#: include/functions.php:1931 +#: include/functions.php:1882 #, fuzzy msgid "Open previous article" msgstr "Favoritos" -#: include/functions.php:1932 +#: include/functions.php:1883 msgid "Open next article (don't scroll long articles)" msgstr "" -#: include/functions.php:1933 +#: include/functions.php:1884 msgid "Open previous article (don't scroll long articles)" msgstr "" -#: include/functions.php:1934 +#: include/functions.php:1885 #, fuzzy msgid "Show search dialog" msgstr "Favoritos" -#: include/functions.php:1935 +#: include/functions.php:1886 #, fuzzy msgid "Article" msgstr "Feed não encontrado." -#: include/functions.php:1936 +#: include/functions.php:1887 #, fuzzy msgid "Toggle starred" msgstr "Marcar como favorito" -#: include/functions.php:1937 -#: js/viewfeed.js:1920 +#: include/functions.php:1888 +#: js/viewfeed.js:1908 #, fuzzy msgid "Toggle published" msgstr "Publicado" -#: include/functions.php:1938 -#: js/viewfeed.js:1898 +#: include/functions.php:1889 +#: js/viewfeed.js:1886 msgid "Toggle unread" msgstr "" -#: include/functions.php:1939 +#: include/functions.php:1890 #, fuzzy msgid "Edit tags" msgstr "Editar Tags" -#: include/functions.php:1940 +#: include/functions.php:1891 #, fuzzy msgid "Dismiss selected" msgstr "Remover os filtros selecionados?" -#: include/functions.php:1941 +#: include/functions.php:1892 #, fuzzy msgid "Dismiss read" msgstr "Favoritos" -#: include/functions.php:1942 +#: include/functions.php:1893 msgid "Open in new window" msgstr "" -#: include/functions.php:1943 -#: js/viewfeed.js:1939 +#: include/functions.php:1894 +#: 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:1895 +#: js/viewfeed.js:1921 #, fuzzy msgid "Mark above as read" msgstr "Marcar como lido" -#: include/functions.php:1945 +#: include/functions.php:1896 msgid "Scroll down" msgstr "" -#: include/functions.php:1946 +#: include/functions.php:1897 msgid "Scroll up" msgstr "" -#: include/functions.php:1947 +#: include/functions.php:1898 #, fuzzy msgid "Select article under cursor" msgstr "Favoritos" -#: include/functions.php:1948 +#: include/functions.php:1899 #, fuzzy msgid "Email article" msgstr "Favoritos" -#: include/functions.php:1949 +#: include/functions.php:1900 #, fuzzy msgid "Close/collapse article" msgstr "Favoritos" -#: include/functions.php:1951 +#: include/functions.php:1902 #: plugins/embed_original/init.php:33 #, fuzzy msgid "Toggle embed original" msgstr "Remover as categorias selecionadas?" -#: include/functions.php:1952 +#: include/functions.php:1903 #, fuzzy msgid "Article selection" msgstr "Favoritos" -#: include/functions.php:1953 +#: include/functions.php:1904 #, fuzzy msgid "Select all articles" msgstr "Favoritos" -#: include/functions.php:1954 +#: include/functions.php:1905 #, fuzzy msgid "Select unread" msgstr "Favoritos" -#: include/functions.php:1955 +#: include/functions.php:1906 #, fuzzy msgid "Select starred" msgstr "Marcar como favorito" -#: include/functions.php:1956 +#: include/functions.php:1907 #, fuzzy msgid "Select published" msgstr "Favoritos" -#: include/functions.php:1957 +#: include/functions.php:1908 #, fuzzy msgid "Invert selection" msgstr "Favoritos" -#: include/functions.php:1958 +#: include/functions.php:1909 #, fuzzy msgid "Deselect everything" msgstr "Favoritos" -#: include/functions.php:1959 -#: classes/pref/feeds.php:520 -#: classes/pref/feeds.php:753 +#: include/functions.php:1910 +#: classes/pref/feeds.php:521 +#: classes/pref/feeds.php:754 msgid "Feed" msgstr "Feed" -#: include/functions.php:1960 +#: include/functions.php:1911 #, fuzzy msgid "Refresh current feed" msgstr "Favoritos" -#: include/functions.php:1961 +#: include/functions.php:1912 #, fuzzy msgid "Un/hide read feeds" msgstr "Favoritos" -#: include/functions.php:1962 -#: classes/pref/feeds.php:1274 +#: include/functions.php:1913 +#: classes/pref/feeds.php:1275 msgid "Subscribe to feed" msgstr "" -#: include/functions.php:1963 +#: include/functions.php:1914 #: js/FeedTree.js:135 #: js/PrefFeedTree.js:67 #, fuzzy msgid "Edit feed" msgstr "Editar" -#: include/functions.php:1965 +#: include/functions.php:1916 #, fuzzy msgid "Reverse headlines" msgstr "Remover as categorias selecionadas?" -#: include/functions.php:1966 +#: include/functions.php:1917 #, fuzzy msgid "Debug feed update" msgstr "Desabilitar updates" -#: include/functions.php:1967 +#: include/functions.php:1918 #: 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:1919 #, fuzzy msgid "Un/collapse current category" msgstr "Salvando categoria..." -#: include/functions.php:1969 +#: include/functions.php:1920 #, fuzzy msgid "Toggle combined mode" msgstr "Remover as categorias selecionadas?" -#: include/functions.php:1970 +#: include/functions.php:1921 #, fuzzy msgid "Toggle auto expand in combined mode" msgstr "Remover as categorias selecionadas?" -#: include/functions.php:1971 +#: include/functions.php:1922 msgid "Go to" msgstr "" -#: include/functions.php:1973 +#: include/functions.php:1924 msgid "Fresh" msgstr "" -#: include/functions.php:1976 +#: include/functions.php:1927 +#: 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:1929 #, fuzzy msgid "Other" msgstr "Onde:" -#: include/functions.php:1979 +#: include/functions.php:1930 #: classes/pref/labels.php:281 msgid "Create label" msgstr "" -#: include/functions.php:1980 -#: classes/pref/filters.php:606 +#: include/functions.php:1931 +#: classes/pref/filters.php:654 msgid "Create filter" msgstr "" -#: include/functions.php:1981 +#: include/functions.php:1932 #, fuzzy msgid "Un/collapse sidebar" msgstr "Todos os feeds" -#: include/functions.php:1982 +#: include/functions.php:1933 #, fuzzy msgid "Show help dialog" msgstr "Favoritos" -#: include/functions.php:2467 +#: include/functions.php:2418 #, php-format msgid "Search results: %s" msgstr "" -#: include/functions.php:2958 -#: js/viewfeed.js:2026 +#: include/functions.php:2909 +#: js/viewfeed.js:2014 #, fuzzy msgid "Click to play" msgstr "Favoritos" -#: include/functions.php:2959 -#: js/viewfeed.js:2025 +#: include/functions.php:2910 +#: js/viewfeed.js:2013 msgid "Play" msgstr "" -#: include/functions.php:3076 +#: include/functions.php:3027 #, fuzzy msgid " - " msgstr " - por " -#: include/functions.php:3098 -#: include/functions.php:3392 +#: include/functions.php:3049 +#: include/functions.php:3343 #: classes/rpc.php:408 msgid "no tags" msgstr "sem tags" -#: include/functions.php:3108 -#: classes/feeds.php:682 +#: include/functions.php:3059 +#: classes/feeds.php:686 #, fuzzy msgid "Edit tags for this article" msgstr "Favoritos" -#: include/functions.php:3137 -#: classes/feeds.php:638 +#: include/functions.php:3088 +#: classes/feeds.php:642 #, fuzzy msgid "Originally from:" msgstr "Favoritos" -#: include/functions.php:3150 -#: classes/feeds.php:651 -#: classes/pref/feeds.php:539 +#: include/functions.php:3101 +#: classes/feeds.php:655 +#: 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:3132 +#: 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/users.php:99 +#: 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:3368 msgid "(edit note)" msgstr "" -#: include/functions.php:3650 +#: include/functions.php:3601 #, fuzzy msgid "unknown type" msgstr "Erro desconhecido" -#: include/functions.php:3706 +#: include/functions.php:3657 #, fuzzy msgid "Attachments" msgstr "Conteúdo" @@ -1033,7 +1026,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 +1213,7 @@ msgid "User timezone" msgstr "" #: include/localized_schema.php:61 -#: js/prefs.js:1719 +#: js/prefs.js:1725 msgid "Customize stylesheet" msgstr "" @@ -1246,14 +1239,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 +1257,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 +1267,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 +1283,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:55 +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:176 +#: 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:1028 +#: classes/feeds.php:1080 +#: classes/feeds.php:1140 +#: classes/pref/users.php:178 +#: 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/pref/users.php:378 +#: classes/handler/public.php:764 +#: classes/pref/users.php:360 #, 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 +1543,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:345 +#: 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:347 +#: 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 +1621,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" @@ -1858,65 +1641,169 @@ msgstr "Favoritos" msgid "Feed:" msgstr "Feed:" -#: classes/feeds.php:201 -#: classes/feeds.php:827 +#: classes/feeds.php:205 +#: classes/feeds.php:831 msgid "Feed not found." msgstr "Feed não encontrado." -#: classes/feeds.php:384 +#: classes/feeds.php:388 #, fuzzy, php-format msgid "Imported at %s" msgstr "Importar" -#: classes/feeds.php:531 +#: classes/feeds.php:535 #, fuzzy msgid "mark as read" msgstr "Marcar como lido" -#: classes/feeds.php:582 +#: classes/feeds.php:586 #, fuzzy msgid "Collapse article" msgstr "Favoritos" -#: classes/feeds.php:728 +#: classes/feeds.php:732 #, fuzzy msgid "No unread articles found to display." msgstr "Sem Feeds para exibir." -#: classes/feeds.php:731 +#: classes/feeds.php:735 #, fuzzy msgid "No updated articles found to display." msgstr "Sem Feeds para exibir." -#: classes/feeds.php:734 +#: classes/feeds.php:738 #, fuzzy msgid "No starred articles found to display." msgstr "Sem Feeds para exibir." -#: classes/feeds.php:738 +#: classes/feeds.php:742 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 +#: classes/feeds.php:744 #, fuzzy msgid "No articles found to display." msgstr "Sem Feeds para exibir." -#: classes/feeds.php:755 -#: classes/feeds.php:920 +#: classes/feeds.php:759 +#: classes/feeds.php:923 #, fuzzy, php-format msgid "Feeds last updated at %s" msgstr "Atualizar" -#: classes/feeds.php:765 -#: classes/feeds.php:930 +#: classes/feeds.php:769 +#: classes/feeds.php:933 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:913 msgid "No feed selected." msgstr "Nenhum feed foi selecionado." +#: classes/feeds.php:966 +#: classes/feeds.php:974 +#, fuzzy +msgid "Feed or site URL" +msgstr "Feed" + +#: classes/feeds.php:980 +#: 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:988 +#, fuzzy +msgid "Available feeds" +msgstr "Todos os feeds" + +#: classes/feeds.php:1000 +#: classes/pref/users.php:139 +#: classes/pref/feeds.php:590 +#: classes/pref/feeds.php:818 +msgid "Authentication" +msgstr "" + +#: classes/feeds.php:1004 +#: classes/pref/users.php:402 +#: classes/pref/feeds.php:596 +#: classes/pref/feeds.php:822 +#: classes/pref/feeds.php:1775 +msgid "Login" +msgstr "Login" + +#: classes/feeds.php:1007 +#: 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:1017 +msgid "This feed requires authentication." +msgstr "Este feed requer autenticação." + +#: classes/feeds.php:1022 +#: classes/feeds.php:1078 +#: classes/pref/feeds.php:1796 +msgid "Subscribe" +msgstr "" + +#: classes/feeds.php:1025 +#, fuzzy +msgid "More feeds" +msgstr "Removendo o Feed..." + +#: classes/feeds.php:1048 +#: classes/feeds.php:1139 +#: classes/pref/users.php:332 +#: classes/pref/filters.php:641 +#: classes/pref/feeds.php:1259 +#: js/tt-rss.js:170 +msgid "Search" +msgstr "" + +#: classes/feeds.php:1052 +#, fuzzy +msgid "Popular feeds" +msgstr "Todos os feeds" + +#: classes/feeds.php:1053 +#, fuzzy +msgid "Feed archive" +msgstr "Ações do Feed:" + +#: classes/feeds.php:1056 +#, fuzzy +msgid "limit:" +msgstr "Limite:" + +#: classes/feeds.php:1079 +#: classes/pref/users.php:358 +#: 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:1090 +msgid "Look for" +msgstr "" + +#: classes/feeds.php:1098 +msgid "Limit search to:" +msgstr "" + +#: classes/feeds.php:1114 +msgid "This feed" +msgstr "" + #: classes/backend.php:33 msgid "Other interface tips are available in the Tiny Tiny RSS wiki." msgstr "" @@ -1992,7 +1879,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 "" @@ -2002,136 +1889,145 @@ msgstr "" msgid "Your access level is insufficient to open this tab." msgstr "Seu nÃvel de acesso é insuficiente para executar esse script." -#: classes/pref/users.php:27 -msgid "User details" -msgstr "Detalhes do usuário" - -#: classes/pref/users.php:41 +#: classes/pref/users.php:34 #, fuzzy msgid "User not found" msgstr "Feed não encontrado." -#: classes/pref/users.php:60 -#: classes/pref/users.php:422 +#: classes/pref/users.php:53 +#: classes/pref/users.php:404 #, fuzzy msgid "Registered" msgstr "Remover as categorias selecionadas?" -#: classes/pref/users.php:61 +#: classes/pref/users.php:54 #, fuzzy msgid "Last logged in" msgstr "Último Login" -#: classes/pref/users.php:68 +#: classes/pref/users.php:61 #, fuzzy msgid "Subscribed feeds count" msgstr "Removendo o Feed..." -#: classes/pref/users.php:72 +#: classes/pref/users.php:65 #, fuzzy msgid "Subscribed feeds" msgstr "Removendo o Feed..." -#: classes/pref/users.php:122 -#, fuzzy -msgid "User Editor" -msgstr "Editor de usuário" - -#: classes/pref/users.php:158 +#: classes/pref/users.php:142 #, fuzzy msgid "Access level: " msgstr "NÃvel de acesso:" -#: classes/pref/users.php:171 +#: classes/pref/users.php:155 #, fuzzy msgid "Change password to" msgstr "Mudar senha" -#: classes/pref/users.php:177 -#: classes/pref/feeds.php:609 -#: classes/pref/feeds.php:833 +#: classes/pref/users.php:161 +#: classes/pref/feeds.php:610 +#: classes/pref/feeds.php:834 #, fuzzy msgid "Options" msgstr "Opções:" -#: classes/pref/users.php:180 +#: classes/pref/users.php:164 #, fuzzy msgid "E-mail: " msgstr "E-mail:" -#: classes/pref/users.php:258 +#: classes/pref/users.php:240 #, php-format msgid "Added user <b>%s</b> with password <b>%s</b>" msgstr "Adicionado usuário <b>%s</b> com senha <b>%s</b>" -#: classes/pref/users.php:265 +#: classes/pref/users.php:247 #, php-format msgid "Could not create user <b>%s</b>" msgstr "Não pode criar o usuário <b>%s</b>" -#: classes/pref/users.php:269 +#: classes/pref/users.php:251 #, php-format msgid "User <b>%s</b> already exists." msgstr "O usuário <b>%s</b> já existe." -#: classes/pref/users.php:291 +#: classes/pref/users.php:273 #, fuzzy, php-format msgid "Changed password of user <b>%s</b> to <b>%s</b>" msgstr "" "Alterada a senha do usuário <b>%s</b>\n" "\t\t\t\t\t para <b>%s</b>" -#: classes/pref/users.php:293 +#: classes/pref/users.php:275 #, fuzzy, php-format msgid "Sending new password of user <b>%s</b> to <b>%s</b>" msgstr "" "Alterada a senha do usuário <b>%s</b>\n" "\t\t\t\t\t para <b>%s</b>" -#: classes/pref/users.php:317 +#: classes/pref/users.php:299 msgid "[tt-rss] Password change notification" msgstr "" -#: classes/pref/users.php:368 +#: classes/pref/users.php:342 +#: 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:350 msgid "Create user" msgstr "Criar um usuário" -#: classes/pref/users.php:372 +#: classes/pref/users.php:354 #, fuzzy msgid "Details" msgstr "Diariamente" -#: classes/pref/users.php:374 -#: classes/pref/filters.php:612 +#: classes/pref/users.php:356 +#: classes/pref/filters.php:660 #: plugins/instances/init.php:296 msgid "Edit" msgstr "Editar" -#: classes/pref/users.php:421 +#: classes/pref/users.php:403 msgid "Access Level" msgstr "NÃvel de acesso" -#: classes/pref/users.php:423 +#: classes/pref/users.php:405 msgid "Last login" msgstr "Último Login" -#: classes/pref/users.php:444 +#: classes/pref/users.php:426 #: plugins/instances/init.php:337 #, fuzzy msgid "Click to edit" msgstr "Favoritos" -#: classes/pref/users.php:464 +#: classes/pref/users.php:446 #, fuzzy msgid "No users defined." msgstr "Nenhum usuário foi selecionado." -#: classes/pref/users.php:466 +#: classes/pref/users.php:448 #, fuzzy 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 +2055,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 +2412,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 +2971,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 +2997,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 +3054,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 +3123,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 +3324,7 @@ msgstr "Editar categorias" msgid "Remove category" msgstr "Criar categoria" -#: js/PrefFilterTree.js:32 +#: js/PrefFilterTree.js:48 #, fuzzy msgid "Inverse" msgstr "(Inverso)" @@ -3360,6 +3342,11 @@ msgstr "" msgid "Adding user..." msgstr "Adicionando o usuário…" +#: js/prefs.js:94 +#, fuzzy +msgid "User Editor" +msgstr "Editor de usuário" + #: js/prefs.js:117 #, fuzzy msgid "Edit Filter" @@ -3386,7 +3373,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." @@ -3477,6 +3464,10 @@ msgstr "Removendo usuários selecionados…" msgid "Resetting password for selected user..." msgstr "Removendo usuários selecionados…" +#: js/prefs.js:585 +msgid "User details" +msgstr "Detalhes do usuário" + #: js/prefs.js:602 msgid "Please select only one filter." msgstr "Por favor selecione somente um filtro." @@ -3501,165 +3492,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 +3673,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 +3736,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." @@ -3987,6 +3977,20 @@ msgid "Live updating is considered experimental. Backup your tt-rss directory be 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 Binary files differindex ed9d60227..134d397cd 100644 --- a/locale/ru_RU/LC_MESSAGES/messages.mo +++ b/locale/ru_RU/LC_MESSAGES/messages.mo diff --git a/locale/ru_RU/LC_MESSAGES/messages.po b/locale/ru_RU/LC_MESSAGES/messages.po index 0e47859a1..caf6217a4 100644 --- a/locale/ru_RU/LC_MESSAGES/messages.po +++ b/locale/ru_RU/LC_MESSAGES/messages.po @@ -6,20 +6,18 @@ #
msgid "" msgstr "" -"Project-Id-Version: 1.0\n" +"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 19:15+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" +"Language: ru\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" +"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" +"X-Generator: Lokalize 1.5\n" #: backend.php:71 msgid "Use default" @@ -94,7 +92,7 @@ msgid "Weekly" msgstr "Раз в неделю" #: backend.php:101 -#: classes/pref/users.php:139 +#: classes/pref/users.php:123 msgid "User" msgstr "Пользователь" @@ -141,9 +139,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" @@ -255,36 +253,38 @@ msgstr "неудавшийÑÑ Ñ‚ÐµÑÑ‚ ÑÐºÑ€Ð°Ð½Ð¸Ñ€Ð¾Ð²Ð°Ð½Ð¸Ñ SQL, пров #: index.php:135 #: index.php:154 -#: index.php:264 -#: prefs.php:102 +#: index.php:273 +#: prefs.php:103 +#: test.php:11 #: 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..." @@ -307,13 +307,13 @@ msgid "All Articles" msgstr "Ð’Ñе Ñтатьи" #: index.php:176 -#: include/functions.php:1974 +#: include/functions.php:1925 #: classes/feeds.php:106 msgid "Starred" msgstr "Отмеченные" #: index.php:177 -#: include/functions.php:1975 +#: include/functions.php:1926 #: classes/feeds.php:107 msgid "Published" msgstr "Опубликован" @@ -353,135 +353,128 @@ 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:237 +#: include/functions.php:1915 #: include/localized_schema.php:10 #: classes/feeds.php:111 -#: classes/feeds.php:136 -#: classes/feeds.php:437 +#: classes/feeds.php:441 #: 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:1811 +#: include/functions.php:1923 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:214 msgid "Communication problem with server." msgstr "" -#: index.php:220 +#: index.php:222 msgid "New version of Tiny Tiny RSS is available!" msgstr "ДоÑÑ‚ÑƒÐ¿Ð½Ð°Ñ Ð½Ð¾Ð²Ð°Ñ Ð²ÐµÑ€ÑÐ¸Ñ Tiny Tiny RSS!" -#: index.php:225 +#: index.php:227 msgid "Actions..." msgstr "ДейÑтвиÑ..." -#: index.php:227 +#: index.php:229 #, fuzzy msgid "Preferences..." msgstr "ÐаÑтройки" -#: index.php:228 +#: index.php:230 msgid "Search..." msgstr "ПоиÑк..." -#: index.php:229 +#: index.php:231 msgid "Feed actions:" msgstr "ДейÑÑ‚Ð²Ð¸Ñ Ð½Ð°Ð´ каналами:" -#: index.php:230 -#: classes/handler/public.php:555 +#: index.php:232 +#: classes/handler/public.php:556 msgid "Subscribe to feed..." msgstr "ПодпиÑатьÑÑ Ð½Ð° канал..." -#: index.php:231 +#: index.php:233 msgid "Edit this feed..." msgstr "Редактировать канал..." -#: index.php:232 +#: index.php:234 msgid "Rescore feed" msgstr "Заново оценить канал" -#: index.php:233 -#: classes/pref/feeds.php:716 -#: classes/pref/feeds.php:1303 +#: index.php:235 +#: classes/pref/feeds.php:717 +#: classes/pref/feeds.php:1304 #: js/PrefFeedTree.js:73 msgid "Unsubscribe" msgstr "ОтпиÑатьÑÑ" -#: index.php:234 +#: index.php:236 msgid "All feeds:" msgstr "Ð’Ñе каналы:" -#: index.php:236 +#: index.php:238 msgid "(Un)hide read feeds" msgstr "Показать/Ñкрыть прочитанные" -#: index.php:237 +#: index.php:239 msgid "Other actions:" msgstr "Другие дейÑтвиÑ:" -#: index.php:239 +#: index.php:241 msgid "Switch to digest..." msgstr "Перейти в дайджеÑÑ‚..." -#: index.php:241 +#: index.php:243 msgid "Show tag cloud..." msgstr "Показать облако тегов..." -#: index.php:242 -#: include/functions.php:1950 +#: index.php:244 +#: include/functions.php:1901 #, fuzzy msgid "Toggle widescreen mode" msgstr "Переключить изменение режима категории" -#: index.php:243 +#: index.php:245 msgid "Select by tags..." msgstr "Выбрать по тегам..." -#: index.php:244 +#: index.php:246 msgid "Create label..." msgstr "Создать метку..." -#: index.php:245 +#: index.php:247 msgid "Create filter..." msgstr "Создать фильтр..." -#: index.php:246 +#: index.php:248 msgid "Keyboard shortcuts help" msgstr "ГорÑчие клавиши" -#: index.php:248 +#: index.php:257 #: plugins/digest/digest_body.php:77 #: plugins/mobile/mobile-functions.php:62 #: plugins/mobile/mobile-functions.php:237 @@ -489,41 +482,41 @@ msgid "Logout" msgstr "Выход" #: prefs.php:36 -#: prefs.php:122 -#: include/functions.php:1977 +#: prefs.php:121 +#: include/functions.php:1928 #: 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:1118 +#: include/functions.php:1754 #: classes/pref/labels.php:90 #: plugins/mobile/mobile-functions.php:198 msgid "Labels" msgstr "Метки" -#: prefs.php:135 +#: prefs.php:134 msgid "Users" msgstr "Пользователи" @@ -549,12 +542,12 @@ msgid "Check availability" msgstr "Проверить доÑтупноÑть" #: 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 "Сколько будет, два Ð¿Ð»ÑŽÑ Ð´Ð²Ð°:" @@ -588,12 +581,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:1127 +#: include/functions.php:1655 +#: include/functions.php:1740 +#: include/functions.php:1762 #: classes/opml.php:416 -#: classes/pref/feeds.php:221 +#: classes/pref/feeds.php:222 msgid "Uncategorized" msgstr "Ðет категории" @@ -609,359 +602,357 @@ msgstr[2] "Отмеченные" 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:1116 +#: include/functions.php:1752 #: 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:1604 +#: classes/feeds.php:1101 +#: classes/pref/filters.php:427 msgid "All feeds" msgstr "Ð’Ñе каналы" -#: include/functions.php:1854 +#: include/functions.php:1805 msgid "Starred articles" msgstr "Отмеченные" -#: include/functions.php:1856 +#: include/functions.php:1807 msgid "Published articles" msgstr "Опубликованные" -#: include/functions.php:1858 +#: include/functions.php:1809 msgid "Fresh articles" msgstr "Свежие" -#: include/functions.php:1862 +#: include/functions.php:1813 msgid "Archived articles" msgstr "Ðрхив Ñтатей" -#: include/functions.php:1864 +#: include/functions.php:1815 msgid "Recently read" msgstr "" -#: include/functions.php:1927 +#: include/functions.php:1878 msgid "Navigation" msgstr "ÐавигациÑ" -#: include/functions.php:1928 +#: include/functions.php:1879 #, fuzzy msgid "Open next feed" msgstr "Генерировать канал" -#: include/functions.php:1929 +#: include/functions.php:1880 msgid "Open previous feed" msgstr "" -#: include/functions.php:1930 +#: include/functions.php:1881 #, fuzzy msgid "Open next article" msgstr "Показать оригинальное Ñодержимое Ñтатьи" -#: include/functions.php:1931 +#: include/functions.php:1882 #, fuzzy msgid "Open previous article" msgstr "Показать оригинальное Ñодержимое Ñтатьи" -#: include/functions.php:1932 +#: include/functions.php:1883 msgid "Open next article (don't scroll long articles)" msgstr "" -#: include/functions.php:1933 +#: include/functions.php:1884 msgid "Open previous article (don't scroll long articles)" msgstr "" -#: include/functions.php:1934 +#: include/functions.php:1885 msgid "Show search dialog" msgstr "Показать диалог поиÑка" -#: include/functions.php:1935 +#: include/functions.php:1886 #, fuzzy msgid "Article" msgstr "Ð’Ñе Ñтатьи" -#: include/functions.php:1936 +#: include/functions.php:1887 msgid "Toggle starred" msgstr "Изм. отмеченное" -#: include/functions.php:1937 -#: js/viewfeed.js:1920 +#: include/functions.php:1888 +#: js/viewfeed.js:1908 msgid "Toggle published" msgstr "Отметить / ÑнÑть отметку" -#: include/functions.php:1938 -#: js/viewfeed.js:1898 +#: include/functions.php:1889 +#: js/viewfeed.js:1886 msgid "Toggle unread" msgstr "Прочитано / не прочитано" -#: include/functions.php:1939 +#: include/functions.php:1890 msgid "Edit tags" msgstr "Редактировать теги" -#: include/functions.php:1940 +#: include/functions.php:1891 #, fuzzy msgid "Dismiss selected" msgstr "Скрыть выбранные Ñтатьи" -#: include/functions.php:1941 +#: include/functions.php:1892 #, fuzzy msgid "Dismiss read" msgstr "Опубликовать" -#: include/functions.php:1942 +#: include/functions.php:1893 #, fuzzy msgid "Open in new window" msgstr "Открыть Ñтатью в новом окне" -#: include/functions.php:1943 -#: js/viewfeed.js:1939 +#: include/functions.php:1894 +#: js/viewfeed.js:1927 msgid "Mark below as read" msgstr "Отметить Ñтатьи ниже как прочитанные" -#: include/functions.php:1944 -#: js/viewfeed.js:1933 +#: include/functions.php:1895 +#: js/viewfeed.js:1921 msgid "Mark above as read" msgstr "Отметить Ñтатьи выше как прочитанные" -#: include/functions.php:1945 +#: include/functions.php:1896 #, fuzzy msgid "Scroll down" msgstr "Ð’ÑÑ‘ выполнено." -#: include/functions.php:1946 +#: include/functions.php:1897 msgid "Scroll up" msgstr "" -#: include/functions.php:1947 +#: include/functions.php:1898 #, fuzzy msgid "Select article under cursor" msgstr "Выбрать Ñтатью под курÑором мыши" -#: include/functions.php:1948 +#: include/functions.php:1899 msgid "Email article" msgstr "Отправить по почте" -#: include/functions.php:1949 +#: include/functions.php:1900 #, fuzzy msgid "Close/collapse article" msgstr "Закрыть Ñтатью" -#: include/functions.php:1951 +#: include/functions.php:1902 #: plugins/embed_original/init.php:33 #, fuzzy msgid "Toggle embed original" msgstr "Переключить изменение режима категории" -#: include/functions.php:1952 +#: include/functions.php:1903 #, fuzzy msgid "Article selection" msgstr "Инвертировать выделение" -#: include/functions.php:1953 +#: include/functions.php:1904 msgid "Select all articles" msgstr "Выбрать вÑе Ñтатьи" -#: include/functions.php:1954 +#: include/functions.php:1905 #, fuzzy msgid "Select unread" msgstr "Выбрать непрочитанные Ñтатьи" -#: include/functions.php:1955 +#: include/functions.php:1906 #, fuzzy msgid "Select starred" msgstr "Отметить" -#: include/functions.php:1956 +#: include/functions.php:1907 #, fuzzy msgid "Select published" msgstr "Выбрать непрочитанные Ñтатьи" -#: include/functions.php:1957 +#: include/functions.php:1908 #, fuzzy msgid "Invert selection" msgstr "Инвертировать выделение" -#: include/functions.php:1958 +#: include/functions.php:1909 #, fuzzy msgid "Deselect everything" msgstr "ОчиÑтить выделение Ñтатей" -#: include/functions.php:1959 -#: classes/pref/feeds.php:520 -#: classes/pref/feeds.php:753 +#: include/functions.php:1910 +#: classes/pref/feeds.php:521 +#: classes/pref/feeds.php:754 msgid "Feed" msgstr "Канал" -#: include/functions.php:1960 +#: include/functions.php:1911 #, fuzzy msgid "Refresh current feed" msgstr "Обновить активный канал" -#: include/functions.php:1961 +#: include/functions.php:1912 #, fuzzy msgid "Un/hide read feeds" msgstr "Показать/Ñкрыть прочитанные" -#: include/functions.php:1962 -#: classes/pref/feeds.php:1274 +#: include/functions.php:1913 +#: classes/pref/feeds.php:1275 msgid "Subscribe to feed" msgstr "ПодпиÑатьÑÑ Ð½Ð° канал" -#: include/functions.php:1963 +#: include/functions.php:1914 #: js/FeedTree.js:135 #: js/PrefFeedTree.js:67 msgid "Edit feed" msgstr "Редактировать канал" -#: include/functions.php:1965 +#: include/functions.php:1916 #, fuzzy msgid "Reverse headlines" msgstr "Обратный порÑдок заголовков" -#: include/functions.php:1966 +#: include/functions.php:1917 #, fuzzy msgid "Debug feed update" msgstr "Ð’Ñе каналы обновлены." -#: include/functions.php:1967 +#: include/functions.php:1918 #: js/FeedTree.js:178 msgid "Mark all feeds as read" msgstr "Отметить вÑе каналы как прочитанные" -#: include/functions.php:1968 +#: include/functions.php:1919 #, fuzzy msgid "Un/collapse current category" msgstr "Щёлкните, чтобы развернуть категорию" -#: include/functions.php:1969 +#: include/functions.php:1920 #, fuzzy msgid "Toggle combined mode" msgstr "Переключить изменение режима категории" -#: include/functions.php:1970 +#: include/functions.php:1921 #, fuzzy msgid "Toggle auto expand in combined mode" msgstr "Переключить изменение режима категории" -#: include/functions.php:1971 +#: include/functions.php:1922 #, fuzzy msgid "Go to" msgstr "Перейти к.." -#: include/functions.php:1973 +#: include/functions.php:1924 #, fuzzy msgid "Fresh" msgstr "Обновить" -#: include/functions.php:1976 +#: include/functions.php:1927 +#: js/tt-rss.js:431 +#: js/tt-rss.js:584 msgid "Tag cloud" msgstr "Облако тегов" -#: include/functions.php:1978 +#: include/functions.php:1929 #, fuzzy msgid "Other" msgstr "Другой:" -#: include/functions.php:1979 +#: include/functions.php:1930 #: classes/pref/labels.php:281 msgid "Create label" msgstr "Создать метку" -#: include/functions.php:1980 -#: classes/pref/filters.php:606 +#: include/functions.php:1931 +#: classes/pref/filters.php:654 msgid "Create filter" msgstr "Создать фильтр" -#: include/functions.php:1981 +#: include/functions.php:1932 #, fuzzy msgid "Un/collapse sidebar" msgstr "Развернуть боковую панель" -#: include/functions.php:1982 +#: include/functions.php:1933 #, fuzzy msgid "Show help dialog" msgstr "Показать диалог поиÑка" -#: include/functions.php:2467 +#: include/functions.php:2418 #, fuzzy, php-format msgid "Search results: %s" msgstr "Результаты поиÑка" -#: include/functions.php:2958 -#: js/viewfeed.js:2026 +#: include/functions.php:2909 +#: js/viewfeed.js:2014 msgid "Click to play" msgstr "Щёлкните Ð´Ð»Ñ Ð¿Ñ€Ð¾Ð¸Ð³Ñ€Ñ‹Ð²Ð°Ð½Ð¸Ñ" -#: include/functions.php:2959 -#: js/viewfeed.js:2025 +#: include/functions.php:2910 +#: js/viewfeed.js:2013 msgid "Play" msgstr "Играть" -#: include/functions.php:3076 +#: include/functions.php:3027 msgid " - " msgstr " - " -#: include/functions.php:3098 -#: include/functions.php:3392 +#: include/functions.php:3049 +#: include/functions.php:3343 #: classes/rpc.php:408 msgid "no tags" msgstr "нет тегов" -#: include/functions.php:3108 -#: classes/feeds.php:682 +#: include/functions.php:3059 +#: classes/feeds.php:686 msgid "Edit tags for this article" msgstr "Редактировать теги Ñтатьи" -#: include/functions.php:3137 -#: classes/feeds.php:638 +#: include/functions.php:3088 +#: classes/feeds.php:642 msgid "Originally from:" msgstr "Оригинал:" -#: include/functions.php:3150 -#: classes/feeds.php:651 -#: classes/pref/feeds.php:539 +#: include/functions.php:3101 +#: classes/feeds.php:655 +#: 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:3132 +#: 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/users.php:99 +#: 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:3368 #, fuzzy msgid "(edit note)" msgstr "править заметку" -#: include/functions.php:3650 +#: include/functions.php:3601 msgid "unknown type" msgstr "неизвеÑтный тип" -#: include/functions.php:3706 +#: include/functions.php:3657 #, fuzzy msgid "Attachments" msgstr "ВложениÑ:" @@ -1006,7 +997,7 @@ msgid "Assign tags" msgstr "Применить теги" #: include/localized_schema.php:14 -#: js/viewfeed.js:1990 +#: js/viewfeed.js:1978 msgid "Assign label" msgstr "Применить метку" @@ -1193,7 +1184,7 @@ msgid "User timezone" msgstr "ЧаÑовой поÑÑ" #: include/localized_schema.php:61 -#: js/prefs.js:1719 +#: js/prefs.js:1725 msgid "Customize stylesheet" msgstr "Изменить пользовательÑкие Ñтили" @@ -1219,14 +1210,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 "Пароль:" @@ -1237,7 +1228,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 "Язык:" @@ -1246,9 +1237,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 "Профиль по умолчанию" @@ -1261,500 +1252,260 @@ 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:55 +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:176 +#: 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:1028 +#: classes/feeds.php:1080 +#: classes/feeds.php:1140 +#: classes/pref/users.php:178 +#: 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/pref/users.php:378 +#: classes/handler/public.php:764 +#: classes/pref/users.php:360 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 -#, 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 +#: classes/dlg.php:48 msgid "Your Public OPML URL is:" msgstr "СÑылка на ваш опубликованный OPML:" -#: 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 "" "Демон обновлений разрешён в вашей конфигурации, но процеÑÑ Ð´ÐµÐ¼Ð¾Ð½Ð° не запущен. Он необходим Ð´Ð»Ñ Ð¾Ð±Ð½Ð¾Ð²Ð»ÐµÐ½Ð¸Ñ Ð²Ñех каналов.\n" "ПожалуйÑта, запуÑтите демон обновлений или Ñообщите админиÑтратору." -#: 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 "" "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 +#: 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 #, fuzzy 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 "" -#: 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 "" - -#: 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 "ПоÑетить официальный Ñайт" @@ -1763,14 +1514,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:345 +#: 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:347 +#: 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..." @@ -1798,10 +1587,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 "Удалить" @@ -1816,60 +1605,160 @@ msgstr "Отправить по почте" msgid "Feed:" msgstr "Канал:" -#: classes/feeds.php:201 -#: classes/feeds.php:827 +#: classes/feeds.php:205 +#: classes/feeds.php:831 msgid "Feed not found." msgstr "Канал не найден." -#: classes/feeds.php:384 +#: classes/feeds.php:388 #, fuzzy, php-format msgid "Imported at %s" msgstr "Импортировать" -#: classes/feeds.php:531 +#: classes/feeds.php:535 msgid "mark as read" msgstr "Отметить как прочитанные" -#: classes/feeds.php:582 +#: classes/feeds.php:586 #, fuzzy msgid "Collapse article" msgstr "Закрыть Ñтатью" -#: classes/feeds.php:728 +#: classes/feeds.php:732 msgid "No unread articles found to display." msgstr "Ðе найдено не прочитанных Ñтатей" -#: classes/feeds.php:731 +#: classes/feeds.php:735 msgid "No updated articles found to display." msgstr "Ðе найдено не прочитанных Ñтатей." -#: classes/feeds.php:734 +#: classes/feeds.php:738 msgid "No starred articles found to display." msgstr "Ðе найдено отмеченных Ñтатей" -#: classes/feeds.php:738 +#: classes/feeds.php:742 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 +#: classes/feeds.php:744 msgid "No articles found to display." msgstr "Статей не найдено." -#: classes/feeds.php:755 -#: classes/feeds.php:920 +#: classes/feeds.php:759 +#: classes/feeds.php:923 #, php-format msgid "Feeds last updated at %s" msgstr "ПоÑледнее обновление в %s" -#: classes/feeds.php:765 -#: classes/feeds.php:930 +#: classes/feeds.php:769 +#: classes/feeds.php:933 msgid "Some feeds have update errors (click for details)" msgstr "Ðекоторые каналы не могут быть обновлены (щёлкните Ð´Ð»Ñ Ð¿Ð¾Ð´Ñ€Ð¾Ð±Ð½Ð¾Ñтей)" -#: classes/feeds.php:910 +#: classes/feeds.php:913 msgid "No feed selected." msgstr "Канал не выбран." +#: classes/feeds.php:966 +#: classes/feeds.php:974 +#, fuzzy +msgid "Feed or site URL" +msgstr "Канал" + +#: classes/feeds.php:980 +#: classes/pref/feeds.php:560 +#: classes/pref/feeds.php:782 +#: classes/pref/feeds.php:1761 +msgid "Place in category:" +msgstr "ПомеÑтить в категорию:" + +#: classes/feeds.php:988 +msgid "Available feeds" +msgstr "ДоÑтупные каналы" + +#: classes/feeds.php:1000 +#: classes/pref/users.php:139 +#: classes/pref/feeds.php:590 +#: classes/pref/feeds.php:818 +msgid "Authentication" +msgstr "ÐвторизациÑ" + +#: classes/feeds.php:1004 +#: classes/pref/users.php:402 +#: classes/pref/feeds.php:596 +#: classes/pref/feeds.php:822 +#: classes/pref/feeds.php:1775 +msgid "Login" +msgstr "Пользователь:" + +#: classes/feeds.php:1007 +#: 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:1017 +msgid "This feed requires authentication." +msgstr "Ðтот канал требует авторизации." + +#: classes/feeds.php:1022 +#: classes/feeds.php:1078 +#: classes/pref/feeds.php:1796 +msgid "Subscribe" +msgstr "ПодпиÑатьÑÑ" + +#: classes/feeds.php:1025 +msgid "More feeds" +msgstr "Другие каналы" + +#: classes/feeds.php:1048 +#: classes/feeds.php:1139 +#: classes/pref/users.php:332 +#: classes/pref/filters.php:641 +#: classes/pref/feeds.php:1259 +#: js/tt-rss.js:170 +msgid "Search" +msgstr "ПоиÑк" + +#: classes/feeds.php:1052 +#, fuzzy +msgid "Popular feeds" +msgstr "показать каналы" + +#: classes/feeds.php:1053 +#, fuzzy +msgid "Feed archive" +msgstr "ДейÑÑ‚Ð²Ð¸Ñ Ð½Ð°Ð´ каналом:" + +#: classes/feeds.php:1056 +#, fuzzy +msgid "limit:" +msgstr "Сколько:" + +#: classes/feeds.php:1079 +#: classes/pref/users.php:358 +#: 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:1090 +msgid "Look for" +msgstr "" + +#: classes/feeds.php:1098 +msgid "Limit search to:" +msgstr "Ограничить поиÑк:" + +#: classes/feeds.php:1114 +msgid "This feed" +msgstr "Ðтот канал" + #: classes/backend.php:33 msgid "Other interface tips are available in the Tiny Tiny RSS wiki." msgstr "" @@ -1943,7 +1832,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 "Ошибка при разборе документа." @@ -1952,118 +1841,127 @@ msgstr "Ошибка при разборе документа." 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 +#: classes/pref/users.php:34 msgid "User not found" msgstr "Пользователь не найден" -#: classes/pref/users.php:60 -#: classes/pref/users.php:422 +#: classes/pref/users.php:53 +#: classes/pref/users.php:404 msgid "Registered" msgstr "ЗарегиÑтрирован" -#: classes/pref/users.php:61 +#: classes/pref/users.php:54 msgid "Last logged in" msgstr "ПоÑледний вход" -#: classes/pref/users.php:68 +#: classes/pref/users.php:61 msgid "Subscribed feeds count" msgstr "КоличеÑтво подпиÑанных каналов" -#: classes/pref/users.php:72 +#: classes/pref/users.php:65 msgid "Subscribed feeds" msgstr "ПодпиÑан на каналы" -#: classes/pref/users.php:122 -msgid "User Editor" -msgstr "Редактор пользователей" - -#: classes/pref/users.php:158 +#: classes/pref/users.php:142 msgid "Access level: " msgstr "Уровень доÑтупа:" -#: classes/pref/users.php:171 +#: classes/pref/users.php:155 msgid "Change password to" msgstr "Изменить пароль на" -#: classes/pref/users.php:177 -#: classes/pref/feeds.php:609 -#: classes/pref/feeds.php:833 +#: classes/pref/users.php:161 +#: classes/pref/feeds.php:610 +#: classes/pref/feeds.php:834 msgid "Options" msgstr "Опции:" -#: classes/pref/users.php:180 +#: classes/pref/users.php:164 msgid "E-mail: " msgstr "E-mail: " -#: classes/pref/users.php:258 +#: classes/pref/users.php:240 #, 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 +#: classes/pref/users.php:247 #, php-format msgid "Could not create user <b>%s</b>" msgstr "Ðе могу добавить Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ <b>%s</b>" -#: classes/pref/users.php:269 +#: classes/pref/users.php:251 #, php-format msgid "User <b>%s</b> already exists." msgstr "Пользователь <b>%s</b> уже ÑущеÑтвует." -#: classes/pref/users.php:291 +#: classes/pref/users.php:273 #, 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 +#: classes/pref/users.php:275 #, 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 +#: classes/pref/users.php:299 msgid "[tt-rss] Password change notification" msgstr "[tt-rss] Уведомление о Ñмене паролÑ" -#: classes/pref/users.php:368 +#: classes/pref/users.php:342 +#: 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:350 msgid "Create user" msgstr "Добавить пользователÑ" -#: classes/pref/users.php:372 +#: classes/pref/users.php:354 msgid "Details" msgstr "Подробнее" -#: classes/pref/users.php:374 -#: classes/pref/filters.php:612 +#: classes/pref/users.php:356 +#: classes/pref/filters.php:660 #: plugins/instances/init.php:296 msgid "Edit" msgstr "Редактировать" -#: classes/pref/users.php:421 +#: classes/pref/users.php:403 msgid "Access Level" msgstr "Уровень доÑтупа:" -#: classes/pref/users.php:423 +#: classes/pref/users.php:405 msgid "Last login" msgstr "ПоÑледний вход" -#: classes/pref/users.php:444 +#: classes/pref/users.php:426 #: plugins/instances/init.php:337 msgid "Click to edit" msgstr "Щёлкните Ð´Ð»Ñ Ñ€ÐµÐ´Ð°ÐºÑ‚Ð¸Ñ€Ð¾Ð²Ð°Ð½Ð¸Ñ" -#: classes/pref/users.php:464 +#: classes/pref/users.php:446 msgid "No users defined." msgstr "Пользователи не определены." -#: classes/pref/users.php:466 +#: classes/pref/users.php:448 msgid "No matching users found." msgstr "ПодходÑщих пользователей не найдено." #: classes/pref/labels.php:22 +#: classes/pref/filters.php:268 +#: classes/pref/filters.php:725 msgid "Caption" msgstr "Заголовок" @@ -2088,128 +1986,138 @@ 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 +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 #, 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 "Старый пароль не может быть пуÑтым." @@ -2423,254 +2331,282 @@ 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 +msgid "Create profile" +msgstr "Создать профиль" + +#: classes/pref/prefs.php:942 +#: classes/pref/prefs.php:972 +#, fuzzy +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 каналов)" -msgstr[1] "(%d каналов)" -msgstr[2] "(%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 "" -#: 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 "Включить в e-mail дайджеÑÑ‚" -#: 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 "ПереподпиÑатьÑÑ Ð½Ð° PUSH обновлениÑ" -#: 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 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 #, fuzzy 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 #, 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 "Только главный профиль наÑтроек будет ÑкÑпортирован в OPML." -#: 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 #, fuzzy msgid "Filename:" msgstr "Полное имÑ" -#: classes/pref/feeds.php:1390 +#: classes/pref/feeds.php:1391 #, fuzzy msgid "Include settings" msgstr "Включить в e-mail дайджеÑÑ‚" -#: 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 #, 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 +#: 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" + +#: classes/pref/feeds.php:1404 #, fuzzy msgid "Display published OPML URL" msgstr "ÐŸÑƒÐ±Ð»Ð¸Ñ‡Ð½Ð°Ñ ÑÑылка на OPML" -#: 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 "Ðтот Ñайт Ñ Tiny Tiny RSS можно иÑпользовать в Firefox как агрегатор RSS. Ð”Ð»Ñ Ñтого щёлкните по ÑÑылке ниже." -#: classes/pref/feeds.php:1422 +#: classes/pref/feeds.php:1423 msgid "Click here to register this site as a feed reader." msgstr "Щёлкните здеÑÑŒ Ð´Ð»Ñ Ñ€ÐµÐ³Ð¸Ñтрации Ñайта в роли RSS агрегатора" -#: 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 "Опубликованные Ñтатьи ÑкÑпортируетÑÑ Ð² качеÑтве общего RSS канала и могут быть подпиÑаны кем-либо ещё, кто знает URL, указанный ниже." -#: 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 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 +#, fuzzy +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." @@ -2946,24 +2882,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 "" @@ -2971,6 +2907,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 "URL инÑталлÑции" + +#: 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" @@ -2993,6 +2964,10 @@ msgstr "" msgid "Stored feeds" msgstr "Больше каналов" +#: plugins/instances/init.php:437 +msgid "Create link" +msgstr "Создать ÑÑылку" + #: plugins/share/init.php:27 #, fuzzy msgid "Share by URL" @@ -3057,188 +3032,192 @@ 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 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 "Помощь" @@ -3252,7 +3231,7 @@ msgstr "Редактировать категории" msgid "Remove category" msgstr "Создать категорию" -#: js/PrefFilterTree.js:32 +#: js/PrefFilterTree.js:48 #, fuzzy msgid "Inverse" msgstr "(Инвертирован)" @@ -3269,6 +3248,10 @@ msgstr "Ðе могу добавить пользователÑ: не указа msgid "Adding user..." msgstr "Пользователь добавлÑетÑÑ..." +#: js/prefs.js:94 +msgid "User Editor" +msgstr "Редактор пользователей" + #: js/prefs.js:117 #, fuzzy msgid "Edit Filter" @@ -3292,7 +3275,7 @@ msgid "Removing selected labels..." msgstr "Выбранные метки удалÑÑŽÑ‚ÑÑ..." #: js/prefs.js:295 -#: js/prefs.js:1396 +#: js/prefs.js:1384 msgid "No labels are selected." msgstr "Ðет выбранных меток." @@ -3376,6 +3359,10 @@ msgstr "СброÑить пароль выбранного пользоватеРmsgid "Resetting password for selected user..." msgstr "Пароль Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ ÑбраÑываетÑÑ..." +#: js/prefs.js:585 +msgid "User details" +msgstr "Подробнее..." + #: js/prefs.js:602 msgid "Please select only one filter." msgstr "ПожалуйÑта выберите только один фильтр." @@ -3399,155 +3386,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 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 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 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 "" -#: 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 "" @@ -3569,28 +3556,32 @@ 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 msgid "Rescoring articles..." msgstr "Переоценка Ñтатей..." -#: js/tt-rss.js:911 +#: js/tt-rss.js:907 #, fuzzy msgid "New version available!" msgstr "ДоÑÑ‚ÑƒÐ¿Ð½Ð°Ñ Ð½Ð¾Ð²Ð°Ñ Ð²ÐµÑ€ÑÐ¸Ñ Tiny Tiny RSS!" @@ -3623,20 +3614,16 @@ 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?" @@ -3644,7 +3631,7 @@ msgstr[0] "Отметить %d выбранные Ñтатьи в %s как пр msgstr[1] "Отметить %d выбранные Ñтатьи в %s как прочитанные?" msgstr[2] "Отметить %d выбранные Ñтатьи в %s как прочитанные?" -#: js/viewfeed.js:978 +#: js/viewfeed.js:961 #, fuzzy msgid "Delete %d selected article?" msgid_plural "Delete %d selected articles?" @@ -3652,7 +3639,7 @@ msgstr[0] "Удалить %d выбранных Ñтатей?" msgstr[1] "Удалить %d выбранных Ñтатей?" msgstr[2] "Удалить %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?" @@ -3660,7 +3647,7 @@ msgstr[0] "Ðрхивировать %d выбранных Ñтатей в %s?" msgstr[1] "Ðрхивировать %d выбранных Ñтатей в %s?" msgstr[2] "Ðрхивировать %d выбранных Ñтатей в %s?" -#: js/viewfeed.js:1023 +#: js/viewfeed.js:1006 #, fuzzy msgid "Move %d archived article back?" msgid_plural "Move %d archived articles back?" @@ -3668,11 +3655,11 @@ msgstr[0] "ПеремеÑтить %d архивированных Ñтатей Ð msgstr[1] "ПеремеÑтить %d архивированных Ñтатей назад?" msgstr[2] "ПеремеÑтить %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?" @@ -3680,23 +3667,23 @@ msgstr[0] "Отметить %d выбранные Ñтатьи в %s как пр msgstr[1] "Отметить %d выбранные Ñтатьи в %s как прочитанные?" msgstr[2] "Отметить %d выбранные Ñтатьи в %s как прочитанные?" -#: 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 #, fuzzy msgid "Mark %d article as read?" msgid_plural "Mark %d articles as read?" @@ -3704,43 +3691,43 @@ msgstr[0] "Отметить %d Ñтатью(ей) как прочитанные? msgstr[1] "Отметить %d Ñтатью(ей) как прочитанные?" msgstr[2] "Отметить %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 "показать теги" -#: 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 "ПожалуйÑта, укажите заметку Ð´Ð»Ñ Ñтатьи:" -#: 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 "Ð’Ñе Ñтатьи" @@ -3863,6 +3850,27 @@ msgstr "РаÑшарить Ñтатью по ÑÑылке" msgid "Live updating is considered experimental. Backup your tt-rss directory before continuing. Please type 'yes' to continue." msgstr "" +#, fuzzy +#~ msgid "Refresh" +#~ msgstr "Обновить" + +#, fuzzy +#~ msgid "(%d feed)" +#~ msgid_plural "(%d feeds)" +#~ msgstr[0] "(%d каналов)" +#~ msgstr[1] "(%d каналов)" +#~ msgstr[2] "(%d каналов)" + +#~ msgid "Notice" +#~ msgstr "Сообщение" + +#, fuzzy +#~ msgid "Tag Cloud" +#~ msgstr "Облако тегов" + +#~ msgid "Mark all visible articles in %s as read?" +#~ msgstr "Отметить вÑе видимые Ñтатьи в %s как прочитанные?" + #~ msgid "Date" #~ msgstr "Дата" @@ -4896,9 +4904,6 @@ msgstr "" #~ msgid "SQL Expression" #~ msgstr "SQL выражение" -#~ msgid "[No caption]" -#~ msgstr "[Ðет заголовка]" - #~ msgid "Labels and SQL Expressions" #~ msgstr "Метки и SQL выражениÑ" diff --git a/locale/zh_CN/LC_MESSAGES/messages.mo b/locale/zh_CN/LC_MESSAGES/messages.mo Binary files differindex 2db432db4..e70eae4c9 100644 --- a/locale/zh_CN/LC_MESSAGES/messages.mo +++ b/locale/zh_CN/LC_MESSAGES/messages.mo diff --git a/locale/zh_CN/LC_MESSAGES/messages.po b/locale/zh_CN/LC_MESSAGES/messages.po index 680e1d360..e12fdce8a 100644 --- a/locale/zh_CN/LC_MESSAGES/messages.po +++ b/locale/zh_CN/LC_MESSAGES/messages.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Tiny Tiny RSS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-31 12:47+0400\n" +"POT-Creation-Date: 2013-04-01 19:15+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" @@ -91,7 +91,7 @@ msgid "Weekly" msgstr "æ¯å‘¨" #: backend.php:101 -#: classes/pref/users.php:139 +#: classes/pref/users.php:123 msgid "User" msgstr "用户" @@ -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,38 @@ msgstr "SQL 脱出测试失败,请检查您的数æ®åº“å’Œ PHP 设置。" #: index.php:135 #: index.php:154 -#: index.php:264 -#: prefs.php:102 +#: index.php:273 +#: prefs.php:103 +#: test.php:11 #: 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 +307,13 @@ msgid "All Articles" msgstr "å…¨éƒ¨æ–‡ç« " #: index.php:176 -#: include/functions.php:1974 +#: include/functions.php:1925 #: classes/feeds.php:106 msgid "Starred" msgstr "åŠ æ˜Ÿæ ‡çš„" #: index.php:177 -#: include/functions.php:1975 +#: include/functions.php:1926 #: classes/feeds.php:107 msgid "Published" msgstr "å·²å‘布" @@ -351,135 +353,128 @@ 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:237 +#: include/functions.php:1915 #: include/localized_schema.php:10 #: classes/feeds.php:111 -#: classes/feeds.php:136 -#: classes/feeds.php:437 +#: classes/feeds.php:441 #: 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:1811 +#: include/functions.php:1923 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:214 msgid "Communication problem with server." msgstr "" -#: index.php:220 +#: index.php:222 msgid "New version of Tiny Tiny RSS is available!" msgstr "Tiny Tiny RSS 有新版本啦ï¼" -#: index.php:225 +#: index.php:227 msgid "Actions..." msgstr "动作" -#: index.php:227 +#: index.php:229 #, fuzzy msgid "Preferences..." msgstr "å好设置" -#: index.php:228 +#: index.php:230 msgid "Search..." msgstr "æœç´¢" -#: index.php:229 +#: index.php:231 msgid "Feed actions:" msgstr "ä¿¡æ¯æºæ“作:" -#: index.php:230 -#: classes/handler/public.php:555 +#: index.php:232 +#: classes/handler/public.php:556 msgid "Subscribe to feed..." msgstr "è®¢é˜…ä¿¡æ¯æº" -#: index.php:231 +#: index.php:233 msgid "Edit this feed..." msgstr "ç¼–è¾‘ä¿¡æ¯æº" -#: index.php:232 +#: index.php:234 msgid "Rescore feed" msgstr "ä¸ºä¿¡æ¯æºé‡æ–°è¯„分" -#: index.php:233 -#: classes/pref/feeds.php:716 -#: classes/pref/feeds.php:1303 +#: index.php:235 +#: classes/pref/feeds.php:717 +#: classes/pref/feeds.php:1304 #: js/PrefFeedTree.js:73 msgid "Unsubscribe" msgstr "å–æ¶ˆè®¢é˜…" -#: index.php:234 +#: index.php:236 msgid "All feeds:" msgstr "å…¨éƒ¨ä¿¡æ¯æºï¼š" -#: index.php:236 +#: index.php:238 msgid "(Un)hide read feeds" msgstr "éšè—(显示)已读信æ¯" -#: index.php:237 +#: index.php:239 msgid "Other actions:" msgstr "å…¶ä»–æ“作:" -#: index.php:239 +#: index.php:241 msgid "Switch to digest..." msgstr "切æ¢è‡³æ‘˜è¦æ¨¡å¼" -#: index.php:241 +#: index.php:243 msgid "Show tag cloud..." msgstr "æ˜¾ç¤ºæ ‡ç¾äº‘" -#: index.php:242 -#: include/functions.php:1950 +#: index.php:244 +#: include/functions.php:1901 #, fuzzy msgid "Toggle widescreen mode" msgstr "é”å®šåŠ æ˜Ÿæ ‡çš„é¡¹" -#: index.php:243 +#: index.php:245 msgid "Select by tags..." msgstr "é€šè¿‡è‡ªå®šä¹‰æ ‡ç¾é€‰æ‹©" -#: index.php:244 +#: index.php:246 msgid "Create label..." msgstr "åˆ›å»ºé¢„å®šä¹‰æ ‡ç¾" -#: index.php:245 +#: index.php:247 msgid "Create filter..." msgstr "创建过滤器" -#: index.php:246 +#: index.php:248 msgid "Keyboard shortcuts help" msgstr "å¿«æ·é”®å¸®åŠ©" -#: index.php:248 +#: index.php:257 #: plugins/digest/digest_body.php:77 #: plugins/mobile/mobile-functions.php:62 #: plugins/mobile/mobile-functions.php:237 @@ -487,41 +482,41 @@ msgid "Logout" msgstr "注销" #: prefs.php:36 -#: prefs.php:122 -#: include/functions.php:1977 +#: prefs.php:121 +#: include/functions.php:1928 #: 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:1118 +#: include/functions.php:1754 #: 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 +542,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 +581,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:1127 +#: include/functions.php:1655 +#: include/functions.php:1740 +#: include/functions.php:1762 #: classes/opml.php:416 -#: classes/pref/feeds.php:221 +#: classes/pref/feeds.php:222 msgid "Uncategorized" msgstr "未分类" @@ -605,356 +600,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:1116 +#: include/functions.php:1752 #: 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:1604 +#: classes/feeds.php:1101 +#: classes/pref/filters.php:427 msgid "All feeds" msgstr "å…¨éƒ¨ä¿¡æ¯æº" -#: include/functions.php:1854 +#: include/functions.php:1805 msgid "Starred articles" msgstr "åŠ æ˜Ÿæ ‡æ–‡ç« " -#: include/functions.php:1856 +#: include/functions.php:1807 msgid "Published articles" msgstr "å·²å‘å¸ƒæ–‡ç« " -#: include/functions.php:1858 +#: include/functions.php:1809 msgid "Fresh articles" msgstr "æœ€æ–°æ›´æ–°çš„æ–‡ç« " -#: include/functions.php:1862 +#: include/functions.php:1813 msgid "Archived articles" msgstr "å˜æ¡£çš„æ–‡ç« " -#: include/functions.php:1864 +#: include/functions.php:1815 msgid "Recently read" msgstr "" -#: include/functions.php:1927 +#: include/functions.php:1878 msgid "Navigation" msgstr "导航" -#: include/functions.php:1928 +#: include/functions.php:1879 #, fuzzy msgid "Open next feed" msgstr "è‡ªåŠ¨æ˜¾ç¤ºä¸‹ä¸€ä¸ªä¿¡æ¯æº" -#: include/functions.php:1929 +#: include/functions.php:1880 msgid "Open previous feed" msgstr "" -#: include/functions.php:1930 +#: include/functions.php:1881 #, fuzzy msgid "Open next article" msgstr "打开原文" -#: include/functions.php:1931 +#: include/functions.php:1882 #, fuzzy msgid "Open previous article" msgstr "打开原文" -#: include/functions.php:1932 +#: include/functions.php:1883 msgid "Open next article (don't scroll long articles)" msgstr "" -#: include/functions.php:1933 +#: include/functions.php:1884 msgid "Open previous article (don't scroll long articles)" msgstr "" -#: include/functions.php:1934 +#: include/functions.php:1885 msgid "Show search dialog" msgstr "显示æœç´¢å¯¹è¯æ¡†" -#: include/functions.php:1935 +#: include/functions.php:1886 #, fuzzy msgid "Article" msgstr "å…¨éƒ¨æ–‡ç« " -#: include/functions.php:1936 +#: include/functions.php:1887 msgid "Toggle starred" msgstr "é”å®šåŠ æ˜Ÿæ ‡çš„é¡¹" -#: include/functions.php:1937 -#: js/viewfeed.js:1920 +#: include/functions.php:1888 +#: js/viewfeed.js:1908 msgid "Toggle published" msgstr "é”定å‘布的项" -#: include/functions.php:1938 -#: js/viewfeed.js:1898 +#: include/functions.php:1889 +#: js/viewfeed.js:1886 msgid "Toggle unread" msgstr "é”定未读项" -#: include/functions.php:1939 +#: include/functions.php:1890 msgid "Edit tags" msgstr "ç¼–è¾‘è‡ªå®šä¹‰æ ‡ç¾" -#: include/functions.php:1940 +#: include/functions.php:1891 #, fuzzy msgid "Dismiss selected" msgstr "ä¸å†æ˜¾ç¤ºæ‰€é€‰çš„æ–‡ç« " -#: include/functions.php:1941 +#: include/functions.php:1892 #, fuzzy msgid "Dismiss read" msgstr "ä¸å†æ˜¾ç¤ºå·²è¯»æ–‡ç« " -#: include/functions.php:1942 +#: include/functions.php:1893 #, fuzzy msgid "Open in new window" msgstr "åœ¨æ–°çª—å£æ‰“å¼€æ–‡ç« " -#: include/functions.php:1943 -#: js/viewfeed.js:1939 +#: include/functions.php:1894 +#: js/viewfeed.js:1927 msgid "Mark below as read" msgstr "" -#: include/functions.php:1944 -#: js/viewfeed.js:1933 +#: include/functions.php:1895 +#: js/viewfeed.js:1921 msgid "Mark above as read" msgstr "" -#: include/functions.php:1945 +#: include/functions.php:1896 #, fuzzy msgid "Scroll down" msgstr "全部完æˆã€‚" -#: include/functions.php:1946 +#: include/functions.php:1897 msgid "Scroll up" msgstr "" -#: include/functions.php:1947 +#: include/functions.php:1898 #, fuzzy msgid "Select article under cursor" msgstr "é€‰æ‹©é¼ æ ‡æŒ‡å‘çš„æ–‡ç« " -#: include/functions.php:1948 +#: include/functions.php:1899 msgid "Email article" msgstr "通过邮件å‘逿–‡ç« " -#: include/functions.php:1949 +#: include/functions.php:1900 #, fuzzy msgid "Close/collapse article" msgstr "é€‰æ‹©æ‰€æœ‰æ–‡ç« " -#: include/functions.php:1951 +#: include/functions.php:1902 #: plugins/embed_original/init.php:33 #, fuzzy msgid "Toggle embed original" msgstr "é”定å‘布的项" -#: include/functions.php:1952 +#: include/functions.php:1903 #, fuzzy msgid "Article selection" msgstr "åé€‰æ–‡ç« " -#: include/functions.php:1953 +#: include/functions.php:1904 msgid "Select all articles" msgstr "é€‰æ‹©æ‰€æœ‰æ–‡ç« " -#: include/functions.php:1954 +#: include/functions.php:1905 #, fuzzy msgid "Select unread" msgstr "é€‰æ‹©æœªè¯»æ–‡ç« " -#: include/functions.php:1955 +#: include/functions.php:1906 #, fuzzy msgid "Select starred" msgstr "åŠ æ˜Ÿæ ‡" -#: include/functions.php:1956 +#: include/functions.php:1907 #, fuzzy msgid "Select published" msgstr "é€‰æ‹©æœªè¯»æ–‡ç« " -#: include/functions.php:1957 +#: include/functions.php:1908 #, fuzzy msgid "Invert selection" msgstr "åé€‰æ–‡ç« " -#: include/functions.php:1958 +#: include/functions.php:1909 #, fuzzy msgid "Deselect everything" msgstr "å–æ¶ˆé€‰æ‹©æ‰€æœ‰æ–‡ç« " -#: include/functions.php:1959 -#: classes/pref/feeds.php:520 -#: classes/pref/feeds.php:753 +#: include/functions.php:1910 +#: classes/pref/feeds.php:521 +#: classes/pref/feeds.php:754 msgid "Feed" msgstr "ä¿¡æ¯æº" -#: include/functions.php:1960 +#: include/functions.php:1911 #, fuzzy msgid "Refresh current feed" msgstr "åˆ·æ–°æ´»åŠ¨çš„ä¿¡æ¯æº" -#: include/functions.php:1961 +#: include/functions.php:1912 #, fuzzy msgid "Un/hide read feeds" msgstr "éšè—(显示)已读信æ¯" -#: include/functions.php:1962 -#: classes/pref/feeds.php:1274 +#: include/functions.php:1913 +#: classes/pref/feeds.php:1275 msgid "Subscribe to feed" msgstr "è®¢é˜…ä¿¡æ¯æº" -#: include/functions.php:1963 +#: include/functions.php:1914 #: js/FeedTree.js:135 #: js/PrefFeedTree.js:67 msgid "Edit feed" msgstr "ç¼–è¾‘ä¿¡æ¯æº" -#: include/functions.php:1965 +#: include/functions.php:1916 #, fuzzy msgid "Reverse headlines" msgstr "å呿ޒåº" -#: include/functions.php:1966 +#: include/functions.php:1917 #, fuzzy msgid "Debug feed update" msgstr "ç¦ç”¨æ›´æ–°" -#: include/functions.php:1967 +#: include/functions.php:1918 #: js/FeedTree.js:178 msgid "Mark all feeds as read" msgstr "æ ‡è®°æ‰€æœ‰ä¿¡æ¯æºä¸ºå·²è¯»" -#: include/functions.php:1968 +#: include/functions.php:1919 #, fuzzy msgid "Un/collapse current category" msgstr "åŠ å…¥åˆ°ç±»åˆ«ï¼š" -#: include/functions.php:1969 +#: include/functions.php:1920 #, fuzzy msgid "Toggle combined mode" msgstr "é”定å‘布的项" -#: include/functions.php:1970 +#: include/functions.php:1921 #, fuzzy msgid "Toggle auto expand in combined mode" msgstr "é”定å‘布的项" -#: include/functions.php:1971 +#: include/functions.php:1922 #, fuzzy msgid "Go to" msgstr "跳转至……" -#: include/functions.php:1973 +#: include/functions.php:1924 msgid "Fresh" msgstr "" -#: include/functions.php:1976 +#: include/functions.php:1927 +#: js/tt-rss.js:431 +#: js/tt-rss.js:584 msgid "Tag cloud" msgstr "æ ‡ç¾äº‘" -#: include/functions.php:1978 +#: include/functions.php:1929 #, fuzzy msgid "Other" msgstr "å…¶ä»–ä¿¡æ¯æº" -#: include/functions.php:1979 +#: include/functions.php:1930 #: classes/pref/labels.php:281 msgid "Create label" msgstr "åˆ›å»ºé¢„å®šä¹‰æ ‡ç¾" -#: include/functions.php:1980 -#: classes/pref/filters.php:606 +#: include/functions.php:1931 +#: classes/pref/filters.php:654 msgid "Create filter" msgstr "创建过滤器" -#: include/functions.php:1981 +#: include/functions.php:1932 #, fuzzy msgid "Un/collapse sidebar" msgstr "折å ä¾§è¾¹æ " -#: include/functions.php:1982 +#: include/functions.php:1933 #, fuzzy msgid "Show help dialog" msgstr "显示æœç´¢å¯¹è¯æ¡†" -#: include/functions.php:2467 +#: include/functions.php:2418 #, php-format msgid "Search results: %s" msgstr "" -#: include/functions.php:2958 -#: js/viewfeed.js:2026 +#: include/functions.php:2909 +#: js/viewfeed.js:2014 msgid "Click to play" msgstr "ç‚¹å‡»æ’æ”¾" -#: include/functions.php:2959 -#: js/viewfeed.js:2025 +#: include/functions.php:2910 +#: js/viewfeed.js:2013 msgid "Play" msgstr "æ’æ”¾" -#: include/functions.php:3076 +#: include/functions.php:3027 msgid " - " msgstr " - " -#: include/functions.php:3098 -#: include/functions.php:3392 +#: include/functions.php:3049 +#: include/functions.php:3343 #: classes/rpc.php:408 msgid "no tags" msgstr "æ— æ ‡ç¾" -#: include/functions.php:3108 -#: classes/feeds.php:682 +#: include/functions.php:3059 +#: classes/feeds.php:686 msgid "Edit tags for this article" msgstr "ä¸ºæœ¬æ–‡ç¼–è¾‘è‡ªå®šä¹‰æ ‡ç¾" -#: include/functions.php:3137 -#: classes/feeds.php:638 +#: include/functions.php:3088 +#: classes/feeds.php:642 msgid "Originally from:" msgstr "æ¥æºï¼š" -#: include/functions.php:3150 -#: classes/feeds.php:651 -#: classes/pref/feeds.php:539 +#: include/functions.php:3101 +#: classes/feeds.php:655 +#: 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:3132 +#: 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/users.php:99 +#: 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:3368 msgid "(edit note)" msgstr "(编辑注记)" -#: include/functions.php:3650 +#: include/functions.php:3601 msgid "unknown type" msgstr "未知类型" -#: include/functions.php:3706 +#: include/functions.php:3657 #, fuzzy msgid "Attachments" msgstr "附件:" @@ -999,7 +992,7 @@ msgid "Assign tags" msgstr "æ·»åŠ è‡ªå®šä¹‰æ ‡ç¾" #: include/localized_schema.php:14 -#: js/viewfeed.js:1990 +#: js/viewfeed.js:1978 msgid "Assign label" msgstr "æ·»åŠ é¢„å®šä¹‰æ ‡ç¾" @@ -1185,7 +1178,7 @@ msgid "User timezone" msgstr "用户所在时区" #: include/localized_schema.php:61 -#: js/prefs.js:1719 +#: js/prefs.js:1725 msgid "Customize stylesheet" msgstr "è‡ªå®šä¹‰æ ·å¼" @@ -1210,14 +1203,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 +1221,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 +1230,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 +1245,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:55 +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:176 +#: 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:1028 +#: classes/feeds.php:1080 +#: classes/feeds.php:1140 +#: classes/pref/users.php:178 +#: 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/pref/users.php:378 +#: classes/handler/public.php:764 +#: classes/pref/users.php:360 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 +1501,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:345 +#: 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:347 +#: 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 +1574,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 "åˆ é™¤" @@ -1792,60 +1592,157 @@ msgstr "通过邮件转å‘" msgid "Feed:" msgstr "ä¿¡æ¯æºï¼š" -#: classes/feeds.php:201 -#: classes/feeds.php:827 +#: classes/feeds.php:205 +#: classes/feeds.php:831 msgid "Feed not found." msgstr "找ä¸åˆ°ä¿¡æ¯æºã€‚" -#: classes/feeds.php:384 +#: classes/feeds.php:388 #, fuzzy, php-format msgid "Imported at %s" msgstr "导入" -#: classes/feeds.php:531 +#: classes/feeds.php:535 msgid "mark as read" msgstr "æ ‡è®°ä¸ºå·²è¯»" -#: classes/feeds.php:582 +#: classes/feeds.php:586 #, fuzzy msgid "Collapse article" msgstr "å…¨éƒ¨æ–‡ç« " -#: classes/feeds.php:728 +#: classes/feeds.php:732 msgid "No unread articles found to display." msgstr "æ²¡æœ‰æœªè¯»æ–‡ç« ã€‚" -#: classes/feeds.php:731 +#: classes/feeds.php:735 msgid "No updated articles found to display." msgstr "æ²¡æœ‰æœ€æ–°æ›´æ–°çš„æ–‡ç« ã€‚" -#: classes/feeds.php:734 +#: classes/feeds.php:738 msgid "No starred articles found to display." msgstr "æ²¡æœ‰åŠ æ˜Ÿæ ‡çš„æ–‡ç« ã€‚" -#: classes/feeds.php:738 +#: classes/feeds.php:742 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 +#: classes/feeds.php:744 msgid "No articles found to display." msgstr "æš‚æ—¶æ²¡æœ‰æ–‡ç« ã€‚" -#: classes/feeds.php:755 -#: classes/feeds.php:920 +#: classes/feeds.php:759 +#: classes/feeds.php:923 #, php-format msgid "Feeds last updated at %s" msgstr "ä¸Šæ¬¡ä¿¡æ¯æºæ›´æ–°æ—¶é—´ï¼š%s" -#: classes/feeds.php:765 -#: classes/feeds.php:930 +#: classes/feeds.php:769 +#: classes/feeds.php:933 msgid "Some feeds have update errors (click for details)" msgstr "éƒ¨åˆ†ä¿¡æ¯æºæ›´æ–°é”™è¯¯ï¼ˆç‚¹å‡»äº†è§£è¯¦æƒ…)" -#: classes/feeds.php:910 +#: classes/feeds.php:913 msgid "No feed selected." msgstr "没有选ä¸çš„ä¿¡æ¯æºã€‚" +#: classes/feeds.php:966 +#: classes/feeds.php:974 +#, fuzzy +msgid "Feed or site URL" +msgstr "ä¿¡æ¯æº URL" + +#: classes/feeds.php:980 +#: classes/pref/feeds.php:560 +#: classes/pref/feeds.php:782 +#: classes/pref/feeds.php:1761 +msgid "Place in category:" +msgstr "åŠ å…¥åˆ°ç±»åˆ«ï¼š" + +#: classes/feeds.php:988 +msgid "Available feeds" +msgstr "å¯ç”¨çš„ä¿¡æ¯æº" + +#: classes/feeds.php:1000 +#: classes/pref/users.php:139 +#: classes/pref/feeds.php:590 +#: classes/pref/feeds.php:818 +msgid "Authentication" +msgstr "登录密ç " + +#: classes/feeds.php:1004 +#: classes/pref/users.php:402 +#: classes/pref/feeds.php:596 +#: classes/pref/feeds.php:822 +#: classes/pref/feeds.php:1775 +msgid "Login" +msgstr "登陆" + +#: classes/feeds.php:1007 +#: 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:1017 +msgid "This feed requires authentication." +msgstr "è¿™ä¸ªä¿¡æ¯æºéœ€è¦è®¤è¯" + +#: classes/feeds.php:1022 +#: classes/feeds.php:1078 +#: classes/pref/feeds.php:1796 +msgid "Subscribe" +msgstr "订阅" + +#: classes/feeds.php:1025 +msgid "More feeds" +msgstr "æ›´å¤šä¿¡æ¯æº" + +#: classes/feeds.php:1048 +#: classes/feeds.php:1139 +#: classes/pref/users.php:332 +#: classes/pref/filters.php:641 +#: classes/pref/feeds.php:1259 +#: js/tt-rss.js:170 +msgid "Search" +msgstr "æœç´¢" + +#: classes/feeds.php:1052 +msgid "Popular feeds" +msgstr "æœ€å—æ¬¢è¿Žçš„ä¿¡æ¯æº" + +#: classes/feeds.php:1053 +msgid "Feed archive" +msgstr "ä¿¡æ¯æºå˜æ¡£" + +#: classes/feeds.php:1056 +msgid "limit:" +msgstr "é™åˆ¶ï¼š" + +#: classes/feeds.php:1079 +#: classes/pref/users.php:358 +#: 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:1090 +msgid "Look for" +msgstr "查找" + +#: classes/feeds.php:1098 +msgid "Limit search to:" +msgstr "é™åˆ¶æœç´¢æ¡ä»¶ï¼š" + +#: classes/feeds.php:1114 +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 +1816,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 "è§£æžæ–‡æ¡£æ—¶å‘生错误。" @@ -1928,118 +1825,127 @@ msgstr "è§£æžæ–‡æ¡£æ—¶å‘生错误。" 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 +#: classes/pref/users.php:34 msgid "User not found" msgstr "未找到用户" -#: classes/pref/users.php:60 -#: classes/pref/users.php:422 +#: classes/pref/users.php:53 +#: classes/pref/users.php:404 msgid "Registered" msgstr "注册时间" -#: classes/pref/users.php:61 +#: classes/pref/users.php:54 msgid "Last logged in" msgstr "上次登录" -#: classes/pref/users.php:68 +#: classes/pref/users.php:61 msgid "Subscribed feeds count" msgstr "è®¢é˜…çš„ä¿¡æ¯æºæ•°é‡" -#: classes/pref/users.php:72 +#: classes/pref/users.php:65 msgid "Subscribed feeds" msgstr "è®¢é˜…çš„ä¿¡æ¯æº" -#: classes/pref/users.php:122 -msgid "User Editor" -msgstr "编辑用户信æ¯" - -#: classes/pref/users.php:158 +#: classes/pref/users.php:142 msgid "Access level: " msgstr "访问级别:" -#: classes/pref/users.php:171 +#: classes/pref/users.php:155 msgid "Change password to" msgstr "更改密ç 为:" -#: classes/pref/users.php:177 -#: classes/pref/feeds.php:609 -#: classes/pref/feeds.php:833 +#: classes/pref/users.php:161 +#: classes/pref/feeds.php:610 +#: classes/pref/feeds.php:834 msgid "Options" msgstr "选项" -#: classes/pref/users.php:180 +#: classes/pref/users.php:164 msgid "E-mail: " msgstr "电å邮件:" -#: classes/pref/users.php:258 +#: classes/pref/users.php:240 #, 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 +#: classes/pref/users.php:247 #, php-format msgid "Could not create user <b>%s</b>" msgstr "æ— æ³•åˆ›å»ºç”¨æˆ· <b>%s</b> " -#: classes/pref/users.php:269 +#: classes/pref/users.php:251 #, php-format msgid "User <b>%s</b> already exists." msgstr "用户 <b>%s</b> å·²å˜åœ¨ã€‚" -#: classes/pref/users.php:291 +#: classes/pref/users.php:273 #, 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 +#: classes/pref/users.php:275 #, 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 +#: classes/pref/users.php:299 msgid "[tt-rss] Password change notification" msgstr "[tt-rss] å¯†ç æ›´æ¢æé†’" -#: classes/pref/users.php:368 +#: classes/pref/users.php:342 +#: 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:350 msgid "Create user" msgstr "创建用户" -#: classes/pref/users.php:372 +#: classes/pref/users.php:354 msgid "Details" msgstr "详细" -#: classes/pref/users.php:374 -#: classes/pref/filters.php:612 +#: classes/pref/users.php:356 +#: classes/pref/filters.php:660 #: plugins/instances/init.php:296 msgid "Edit" msgstr "编辑" -#: classes/pref/users.php:421 +#: classes/pref/users.php:403 msgid "Access Level" msgstr "访问级别" -#: classes/pref/users.php:423 +#: classes/pref/users.php:405 msgid "Last login" msgstr "最åŽç™»é™†" -#: classes/pref/users.php:444 +#: classes/pref/users.php:426 #: plugins/instances/init.php:337 msgid "Click to edit" msgstr "点击进行编辑" -#: classes/pref/users.php:464 +#: classes/pref/users.php:446 msgid "No users defined." msgstr "没有定义用户。" -#: classes/pref/users.php:466 +#: classes/pref/users.php:448 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 +1970,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 +2310,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 +2836,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 +2861,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 +2913,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 +2980,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 +3167,7 @@ msgstr "编辑类别" msgid "Remove category" msgstr "创建类别" -#: js/PrefFilterTree.js:32 +#: js/PrefFilterTree.js:48 msgid "Inverse" msgstr "å选" @@ -3199,6 +3184,10 @@ msgstr "æ— æ³•åˆ›å»ºç”¨æˆ·ï¼šæ²¡æœ‰æŒ‡å®šç™»å½•å。" msgid "Adding user..." msgstr "创建过滤器" +#: js/prefs.js:94 +msgid "User Editor" +msgstr "编辑用户信æ¯" + #: js/prefs.js:117 msgid "Edit Filter" msgstr "编辑过滤器" @@ -3223,7 +3212,7 @@ msgid "Removing selected labels..." msgstr "移除选ä¸çš„é¢„å®šä¹‰æ ‡ç¾ï¼Ÿ" #: js/prefs.js:295 -#: js/prefs.js:1396 +#: js/prefs.js:1384 msgid "No labels are selected." msgstr "æ²¡æœ‰é€‰æ‹©ä»»ä½•é¢„å®šä¹‰æ ‡ç¾ã€‚" @@ -3313,6 +3302,10 @@ msgstr "é‡ç½®é€‰å®šç”¨æˆ·çš„密ç ?" msgid "Resetting password for selected user..." msgstr "é‡ç½®é€‰å®šç”¨æˆ·çš„密ç ?" +#: js/prefs.js:585 +msgid "User details" +msgstr "用户详细资料" + #: js/prefs.js:602 msgid "Please select only one filter." msgstr "请仅选择一个过滤器。" @@ -3335,155 +3328,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 +3499,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 +3557,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 +3766,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 "日期" diff --git a/messages.pot b/messages.pot index 9b1bf7421..42ff184bc 100644 --- a/messages.pot +++ b/messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-31 12:47+0400\n" +"POT-Creation-Date: 2013-04-01 19:15+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" @@ -82,7 +82,7 @@ msgstr "" msgid "Weekly" msgstr "" -#: backend.php:101 classes/pref/users.php:139 +#: backend.php:101 classes/pref/users.php:123 msgid "User" msgstr "" @@ -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:273 prefs.php:103 test.php:11 #: 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:1925 classes/feeds.php:106 msgid "Starred" msgstr "" -#: index.php:177 include/functions.php:1975 classes/feeds.php:107 +#: index.php:177 include/functions.php:1926 classes/feeds.php:107 msgid "Published" msgstr "" @@ -313,152 +313,147 @@ 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:237 include/functions.php:1915 +#: include/localized_schema.php:10 classes/feeds.php:111 classes/feeds.php:441 +#: 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:1811 include/functions.php:1923 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:214 msgid "Communication problem with server." msgstr "" -#: index.php:220 +#: index.php:222 msgid "New version of Tiny Tiny RSS is available!" msgstr "" -#: index.php:225 +#: index.php:227 msgid "Actions..." msgstr "" -#: index.php:227 +#: index.php:229 msgid "Preferences..." msgstr "" -#: index.php:228 +#: index.php:230 msgid "Search..." msgstr "" -#: index.php:229 +#: index.php:231 msgid "Feed actions:" msgstr "" -#: index.php:230 classes/handler/public.php:555 +#: index.php:232 classes/handler/public.php:556 msgid "Subscribe to feed..." msgstr "" -#: index.php:231 +#: index.php:233 msgid "Edit this feed..." msgstr "" -#: index.php:232 +#: index.php:234 msgid "Rescore feed" msgstr "" -#: index.php:233 classes/pref/feeds.php:716 classes/pref/feeds.php:1303 +#: index.php:235 classes/pref/feeds.php:717 classes/pref/feeds.php:1304 #: js/PrefFeedTree.js:73 msgid "Unsubscribe" msgstr "" -#: index.php:234 +#: index.php:236 msgid "All feeds:" msgstr "" -#: index.php:236 +#: index.php:238 msgid "(Un)hide read feeds" msgstr "" -#: index.php:237 +#: index.php:239 msgid "Other actions:" msgstr "" -#: index.php:239 +#: index.php:241 msgid "Switch to digest..." msgstr "" -#: index.php:241 +#: index.php:243 msgid "Show tag cloud..." msgstr "" -#: index.php:242 include/functions.php:1950 +#: index.php:244 include/functions.php:1901 msgid "Toggle widescreen mode" msgstr "" -#: index.php:243 +#: index.php:245 msgid "Select by tags..." msgstr "" -#: index.php:244 +#: index.php:246 msgid "Create label..." msgstr "" -#: index.php:245 +#: index.php:247 msgid "Create filter..." msgstr "" -#: index.php:246 +#: index.php:248 msgid "Keyboard shortcuts help" msgstr "" -#: index.php:248 plugins/digest/digest_body.php:77 +#: index.php:257 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:1928 #: 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:1118 include/functions.php:1754 #: 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 +480,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 +516,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:1127 +#: include/functions.php:1655 include/functions.php:1740 +#: include/functions.php:1762 classes/opml.php:416 classes/pref/feeds.php:222 msgid "Uncategorized" msgstr "" @@ -538,293 +533,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:1116 include/functions.php:1752 #: 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:1604 classes/feeds.php:1101 +#: classes/pref/filters.php:427 msgid "All feeds" msgstr "" -#: include/functions.php:1854 +#: include/functions.php:1805 msgid "Starred articles" msgstr "" -#: include/functions.php:1856 +#: include/functions.php:1807 msgid "Published articles" msgstr "" -#: include/functions.php:1858 +#: include/functions.php:1809 msgid "Fresh articles" msgstr "" -#: include/functions.php:1862 +#: include/functions.php:1813 msgid "Archived articles" msgstr "" -#: include/functions.php:1864 +#: include/functions.php:1815 msgid "Recently read" msgstr "" -#: include/functions.php:1927 +#: include/functions.php:1878 msgid "Navigation" msgstr "" -#: include/functions.php:1928 +#: include/functions.php:1879 msgid "Open next feed" msgstr "" -#: include/functions.php:1929 +#: include/functions.php:1880 msgid "Open previous feed" msgstr "" -#: include/functions.php:1930 +#: include/functions.php:1881 msgid "Open next article" msgstr "" -#: include/functions.php:1931 +#: include/functions.php:1882 msgid "Open previous article" msgstr "" -#: include/functions.php:1932 +#: include/functions.php:1883 msgid "Open next article (don't scroll long articles)" msgstr "" -#: include/functions.php:1933 +#: include/functions.php:1884 msgid "Open previous article (don't scroll long articles)" msgstr "" -#: include/functions.php:1934 +#: include/functions.php:1885 msgid "Show search dialog" msgstr "" -#: include/functions.php:1935 +#: include/functions.php:1886 msgid "Article" msgstr "" -#: include/functions.php:1936 +#: include/functions.php:1887 msgid "Toggle starred" msgstr "" -#: include/functions.php:1937 js/viewfeed.js:1920 +#: include/functions.php:1888 js/viewfeed.js:1908 msgid "Toggle published" msgstr "" -#: include/functions.php:1938 js/viewfeed.js:1898 +#: include/functions.php:1889 js/viewfeed.js:1886 msgid "Toggle unread" msgstr "" -#: include/functions.php:1939 +#: include/functions.php:1890 msgid "Edit tags" msgstr "" -#: include/functions.php:1940 +#: include/functions.php:1891 msgid "Dismiss selected" msgstr "" -#: include/functions.php:1941 +#: include/functions.php:1892 msgid "Dismiss read" msgstr "" -#: include/functions.php:1942 +#: include/functions.php:1893 msgid "Open in new window" msgstr "" -#: include/functions.php:1943 js/viewfeed.js:1939 +#: include/functions.php:1894 js/viewfeed.js:1927 msgid "Mark below as read" msgstr "" -#: include/functions.php:1944 js/viewfeed.js:1933 +#: include/functions.php:1895 js/viewfeed.js:1921 msgid "Mark above as read" msgstr "" -#: include/functions.php:1945 +#: include/functions.php:1896 msgid "Scroll down" msgstr "" -#: include/functions.php:1946 +#: include/functions.php:1897 msgid "Scroll up" msgstr "" -#: include/functions.php:1947 +#: include/functions.php:1898 msgid "Select article under cursor" msgstr "" -#: include/functions.php:1948 +#: include/functions.php:1899 msgid "Email article" msgstr "" -#: include/functions.php:1949 +#: include/functions.php:1900 msgid "Close/collapse article" msgstr "" -#: include/functions.php:1951 plugins/embed_original/init.php:33 +#: include/functions.php:1902 plugins/embed_original/init.php:33 msgid "Toggle embed original" msgstr "" -#: include/functions.php:1952 +#: include/functions.php:1903 msgid "Article selection" msgstr "" -#: include/functions.php:1953 +#: include/functions.php:1904 msgid "Select all articles" msgstr "" -#: include/functions.php:1954 +#: include/functions.php:1905 msgid "Select unread" msgstr "" -#: include/functions.php:1955 +#: include/functions.php:1906 msgid "Select starred" msgstr "" -#: include/functions.php:1956 +#: include/functions.php:1907 msgid "Select published" msgstr "" -#: include/functions.php:1957 +#: include/functions.php:1908 msgid "Invert selection" msgstr "" -#: include/functions.php:1958 +#: include/functions.php:1909 msgid "Deselect everything" msgstr "" -#: include/functions.php:1959 classes/pref/feeds.php:520 -#: classes/pref/feeds.php:753 +#: include/functions.php:1910 classes/pref/feeds.php:521 +#: classes/pref/feeds.php:754 msgid "Feed" msgstr "" -#: include/functions.php:1960 +#: include/functions.php:1911 msgid "Refresh current feed" msgstr "" -#: include/functions.php:1961 +#: include/functions.php:1912 msgid "Un/hide read feeds" msgstr "" -#: include/functions.php:1962 classes/pref/feeds.php:1274 +#: include/functions.php:1913 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:1914 js/FeedTree.js:135 js/PrefFeedTree.js:67 msgid "Edit feed" msgstr "" -#: include/functions.php:1965 +#: include/functions.php:1916 msgid "Reverse headlines" msgstr "" -#: include/functions.php:1966 +#: include/functions.php:1917 msgid "Debug feed update" msgstr "" -#: include/functions.php:1967 js/FeedTree.js:178 +#: include/functions.php:1918 js/FeedTree.js:178 msgid "Mark all feeds as read" msgstr "" -#: include/functions.php:1968 +#: include/functions.php:1919 msgid "Un/collapse current category" msgstr "" -#: include/functions.php:1969 +#: include/functions.php:1920 msgid "Toggle combined mode" msgstr "" -#: include/functions.php:1970 +#: include/functions.php:1921 msgid "Toggle auto expand in combined mode" msgstr "" -#: include/functions.php:1971 +#: include/functions.php:1922 msgid "Go to" msgstr "" -#: include/functions.php:1973 +#: include/functions.php:1924 msgid "Fresh" msgstr "" -#: include/functions.php:1976 +#: include/functions.php:1927 js/tt-rss.js:431 js/tt-rss.js:584 msgid "Tag cloud" msgstr "" -#: include/functions.php:1978 +#: include/functions.php:1929 msgid "Other" msgstr "" -#: include/functions.php:1979 classes/pref/labels.php:281 +#: include/functions.php:1930 classes/pref/labels.php:281 msgid "Create label" msgstr "" -#: include/functions.php:1980 classes/pref/filters.php:606 +#: include/functions.php:1931 classes/pref/filters.php:654 msgid "Create filter" msgstr "" -#: include/functions.php:1981 +#: include/functions.php:1932 msgid "Un/collapse sidebar" msgstr "" -#: include/functions.php:1982 +#: include/functions.php:1933 msgid "Show help dialog" msgstr "" -#: include/functions.php:2467 +#: include/functions.php:2418 #, php-format msgid "Search results: %s" msgstr "" -#: include/functions.php:2958 js/viewfeed.js:2026 +#: include/functions.php:2909 js/viewfeed.js:2014 msgid "Click to play" msgstr "" -#: include/functions.php:2959 js/viewfeed.js:2025 +#: include/functions.php:2910 js/viewfeed.js:2013 msgid "Play" msgstr "" -#: include/functions.php:3076 +#: include/functions.php:3027 msgid " - " msgstr "" -#: include/functions.php:3098 include/functions.php:3392 classes/rpc.php:408 +#: include/functions.php:3049 include/functions.php:3343 classes/rpc.php:408 msgid "no tags" msgstr "" -#: include/functions.php:3108 classes/feeds.php:682 +#: include/functions.php:3059 classes/feeds.php:686 msgid "Edit tags for this article" msgstr "" -#: include/functions.php:3137 classes/feeds.php:638 +#: include/functions.php:3088 classes/feeds.php:642 msgid "Originally from:" msgstr "" -#: include/functions.php:3150 classes/feeds.php:651 classes/pref/feeds.php:539 +#: include/functions.php:3101 classes/feeds.php:655 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:3132 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:99 +#: 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:3368 msgid "(edit note)" msgstr "" -#: include/functions.php:3650 +#: include/functions.php:3601 msgid "unknown type" msgstr "" -#: include/functions.php:3706 +#: include/functions.php:3657 msgid "Attachments" msgstr "" @@ -865,7 +858,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 +1052,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 +1076,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 +1090,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 +1098,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 +1111,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:55 +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:176 +#: 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:1028 +#: classes/feeds.php:1080 classes/feeds.php:1140 classes/pref/users.php:178 +#: 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:360 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 +1338,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:345 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:347 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 +1392,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 "" @@ -1575,58 +1407,136 @@ msgstr "" msgid "Feed:" msgstr "" -#: classes/feeds.php:201 classes/feeds.php:827 +#: classes/feeds.php:205 classes/feeds.php:831 msgid "Feed not found." msgstr "" -#: classes/feeds.php:384 +#: classes/feeds.php:388 #, php-format msgid "Imported at %s" msgstr "" -#: classes/feeds.php:531 +#: classes/feeds.php:535 msgid "mark as read" msgstr "" -#: classes/feeds.php:582 +#: classes/feeds.php:586 msgid "Collapse article" msgstr "" -#: classes/feeds.php:728 +#: classes/feeds.php:732 msgid "No unread articles found to display." msgstr "" -#: classes/feeds.php:731 +#: classes/feeds.php:735 msgid "No updated articles found to display." msgstr "" -#: classes/feeds.php:734 +#: classes/feeds.php:738 msgid "No starred articles found to display." msgstr "" -#: classes/feeds.php:738 +#: classes/feeds.php:742 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 +#: classes/feeds.php:744 msgid "No articles found to display." msgstr "" -#: classes/feeds.php:755 classes/feeds.php:920 +#: classes/feeds.php:759 classes/feeds.php:923 #, php-format msgid "Feeds last updated at %s" msgstr "" -#: classes/feeds.php:765 classes/feeds.php:930 +#: classes/feeds.php:769 classes/feeds.php:933 msgid "Some feeds have update errors (click for details)" msgstr "" -#: classes/feeds.php:910 +#: classes/feeds.php:913 msgid "No feed selected." msgstr "" +#: classes/feeds.php:966 classes/feeds.php:974 +msgid "Feed or site URL" +msgstr "" + +#: classes/feeds.php:980 classes/pref/feeds.php:560 classes/pref/feeds.php:782 +#: classes/pref/feeds.php:1761 +msgid "Place in category:" +msgstr "" + +#: classes/feeds.php:988 +msgid "Available feeds" +msgstr "" + +#: classes/feeds.php:1000 classes/pref/users.php:139 +#: classes/pref/feeds.php:590 classes/pref/feeds.php:818 +msgid "Authentication" +msgstr "" + +#: classes/feeds.php:1004 classes/pref/users.php:402 +#: classes/pref/feeds.php:596 classes/pref/feeds.php:822 +#: classes/pref/feeds.php:1775 +msgid "Login" +msgstr "" + +#: classes/feeds.php:1007 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:1017 +msgid "This feed requires authentication." +msgstr "" + +#: classes/feeds.php:1022 classes/feeds.php:1078 classes/pref/feeds.php:1796 +msgid "Subscribe" +msgstr "" + +#: classes/feeds.php:1025 +msgid "More feeds" +msgstr "" + +#: classes/feeds.php:1048 classes/feeds.php:1139 classes/pref/users.php:332 +#: classes/pref/filters.php:641 classes/pref/feeds.php:1259 js/tt-rss.js:170 +msgid "Search" +msgstr "" + +#: classes/feeds.php:1052 +msgid "Popular feeds" +msgstr "" + +#: classes/feeds.php:1053 +msgid "Feed archive" +msgstr "" + +#: classes/feeds.php:1056 +msgid "limit:" +msgstr "" + +#: classes/feeds.php:1079 classes/pref/users.php:358 +#: 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:1090 +msgid "Look for" +msgstr "" + +#: classes/feeds.php:1098 +msgid "Limit search to:" +msgstr "" + +#: classes/feeds.php:1114 +msgid "This feed" +msgstr "" + #: classes/backend.php:33 msgid "Other interface tips are available in the Tiny Tiny RSS wiki." msgstr "" @@ -1697,7 +1607,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 "" @@ -1705,114 +1615,116 @@ msgstr "" 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 +#: classes/pref/users.php:34 msgid "User not found" msgstr "" -#: classes/pref/users.php:60 classes/pref/users.php:422 +#: classes/pref/users.php:53 classes/pref/users.php:404 msgid "Registered" msgstr "" -#: classes/pref/users.php:61 +#: classes/pref/users.php:54 msgid "Last logged in" msgstr "" -#: classes/pref/users.php:68 +#: classes/pref/users.php:61 msgid "Subscribed feeds count" msgstr "" -#: classes/pref/users.php:72 +#: classes/pref/users.php:65 msgid "Subscribed feeds" msgstr "" -#: classes/pref/users.php:122 -msgid "User Editor" -msgstr "" - -#: classes/pref/users.php:158 +#: classes/pref/users.php:142 msgid "Access level: " msgstr "" -#: classes/pref/users.php:171 +#: classes/pref/users.php:155 msgid "Change password to" msgstr "" -#: classes/pref/users.php:177 classes/pref/feeds.php:609 -#: classes/pref/feeds.php:833 +#: classes/pref/users.php:161 classes/pref/feeds.php:610 +#: classes/pref/feeds.php:834 msgid "Options" msgstr "" -#: classes/pref/users.php:180 +#: classes/pref/users.php:164 msgid "E-mail: " msgstr "" -#: classes/pref/users.php:258 +#: classes/pref/users.php:240 #, php-format msgid "Added user <b>%s</b> with password <b>%s</b>" msgstr "" -#: classes/pref/users.php:265 +#: classes/pref/users.php:247 #, php-format msgid "Could not create user <b>%s</b>" msgstr "" -#: classes/pref/users.php:269 +#: classes/pref/users.php:251 #, php-format msgid "User <b>%s</b> already exists." msgstr "" -#: classes/pref/users.php:291 +#: classes/pref/users.php:273 #, php-format msgid "Changed password of user <b>%s</b> to <b>%s</b>" msgstr "" -#: classes/pref/users.php:293 +#: classes/pref/users.php:275 #, php-format msgid "Sending new password of user <b>%s</b> to <b>%s</b>" msgstr "" -#: classes/pref/users.php:317 +#: classes/pref/users.php:299 msgid "[tt-rss] Password change notification" msgstr "" -#: classes/pref/users.php:368 +#: classes/pref/users.php:342 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:350 msgid "Create user" msgstr "" -#: classes/pref/users.php:372 +#: classes/pref/users.php:354 msgid "Details" msgstr "" -#: classes/pref/users.php:374 classes/pref/filters.php:612 +#: classes/pref/users.php:356 classes/pref/filters.php:660 #: plugins/instances/init.php:296 msgid "Edit" msgstr "" -#: classes/pref/users.php:421 +#: classes/pref/users.php:403 msgid "Access Level" msgstr "" -#: classes/pref/users.php:423 +#: classes/pref/users.php:405 msgid "Last login" msgstr "" -#: classes/pref/users.php:444 plugins/instances/init.php:337 +#: classes/pref/users.php:426 plugins/instances/init.php:337 msgid "Click to edit" msgstr "" -#: classes/pref/users.php:464 +#: classes/pref/users.php:446 msgid "No users defined." msgstr "" -#: classes/pref/users.php:466 +#: classes/pref/users.php:448 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 +1749,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 +2063,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/feeds.php:526 +#: 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: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 +2575,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 +2600,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 +2648,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 +2709,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 +2875,7 @@ msgstr "" msgid "Remove category" msgstr "" -#: js/PrefFilterTree.js:32 +#: js/PrefFilterTree.js:48 msgid "Inverse" msgstr "" @@ -2905,6 +2891,10 @@ msgstr "" msgid "Adding user..." msgstr "" +#: js/prefs.js:94 +msgid "User Editor" +msgstr "" + #: js/prefs.js:117 msgid "Edit Filter" msgstr "" @@ -2925,7 +2915,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 "" @@ -3003,6 +2993,10 @@ msgstr "" msgid "Resetting password for selected user..." msgstr "" +#: js/prefs.js:585 +msgid "User details" +msgstr "" + #: js/prefs.js:602 msgid "Please select only one filter." msgstr "" @@ -3023,142 +3017,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 +3172,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 +3220,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 "" diff --git a/plugins/instances/init.php b/plugins/instances/init.php index 6e8d43e9b..6a7f7003a 100644 --- a/plugins/instances/init.php +++ b/plugins/instances/init.php @@ -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; + } } ?> diff --git a/plugins/instances/instances.js b/plugins/instances/instances.js index 83213896d..4a60692b3 100644 --- a/plugins/instances/instances.js +++ b/plugins/instances/instances.js @@ -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(); @@ -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 { @@ -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(); ?> @@ -107,8 +108,6 @@ </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> diff --git a/schema/ttrss_schema_mysql.sql b/schema/ttrss_schema_mysql.sql index dce3921d5..76dabe95b 100644 --- a/schema/ttrss_schema_mysql.sql +++ b/schema/ttrss_schema_mysql.sql @@ -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, diff --git a/schema/ttrss_schema_pgsql.sql b/schema/ttrss_schema_pgsql.sql index 8ef7f0805..2a171de4c 100644 --- a/schema/ttrss_schema_pgsql.sql +++ b/schema/ttrss_schema_pgsql.sql @@ -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 index 000000000..a6f0b200b --- /dev/null +++ b/schema/versions/mysql/112.sql @@ -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 index 000000000..3c0d00563 --- /dev/null +++ b/schema/versions/mysql/113.sql @@ -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 index 000000000..fd7ce5d2b --- /dev/null +++ b/schema/versions/mysql/114.sql @@ -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 index 000000000..a9d90d6d4 --- /dev/null +++ b/schema/versions/pgsql/112.sql @@ -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 index 000000000..3c0d00563 --- /dev/null +++ b/schema/versions/pgsql/113.sql @@ -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 index 000000000..d317ea794 --- /dev/null +++ b/schema/versions/pgsql/114.sql @@ -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; diff --git a/tt-rss.css b/tt-rss.css index bdfeee3a3..c6bc77dc3 100644 --- a/tt-rss.css +++ b/tt-rss.css @@ -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; } @@ -969,6 +972,7 @@ div.postHeader span.author { body#ttrssZoom { margin-left : auto; margin-right : auto; + padding : 2em; max-width : 800px; background : #f0f0f0; } @@ -979,11 +983,10 @@ body#ttrssZoom div.postContent p { body#ttrssZoom div.postReply { border : 1px solid #ccc; - margin : 20px; 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; } diff --git a/update_daemon2.php b/update_daemon2.php index fa64b302d..2fbdd8b8c 100755 --- a/update_daemon2.php +++ b/update_daemon2.php @@ -120,7 +120,7 @@ $longopts = array("log:", "tasks:", - "interval", + "interval:", "quiet", "help"); @@ -142,14 +142,14 @@ 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; } @@ -176,7 +176,9 @@ // 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); @@ -193,6 +195,19 @@ 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(); |