diff options
61 files changed, 6905 insertions, 7220 deletions
diff --git a/cache/.htaccess b/cache/.htaccess index 93169e4eb..93169e4eb 100644..100755 --- a/cache/.htaccess +++ b/cache/.htaccess diff --git a/cache/images/.empty b/cache/images/.empty index e69de29bb..e69de29bb 100644..100755 --- a/cache/images/.empty +++ b/cache/images/.empty diff --git a/cache/js/.empty b/cache/js/.empty index e69de29bb..e69de29bb 100644..100755 --- a/cache/js/.empty +++ b/cache/js/.empty diff --git a/cache/simplepie/.empty b/cache/simplepie/.empty index e69de29bb..e69de29bb 100644..100755 --- a/cache/simplepie/.empty +++ b/cache/simplepie/.empty diff --git a/classes/dbupdater.php b/classes/dbupdater.php new file mode 100644 index 000000000..a9a713273 --- /dev/null +++ b/classes/dbupdater.php @@ -0,0 +1,65 @@ +<?php +class DbUpdater { + + private $link; + private $db_type; + private $need_version; + + function __construct($link, $db_type, $need_version) { + $this->link = $link; + $this->db_type = $db_type; + $this->need_version = (int) $need_version; + } + + function getSchemaVersion() { + $result = db_query($this->link, "SELECT schema_version FROM ttrss_version"); + return (int) db_fetch_result($result, 0, "schema_version"); + } + + function isUpdateRequired() { + return $this->getSchemaVersion() < $this->need_version; + } + + function getSchemaLines($version) { + $filename = "schema/versions/".$this->db_type."/$version.sql"; + + if (file_exists($filename)) { + return explode(";", preg_replace("/[\r\n]/", "", file_get_contents($filename))); + } else { + return false; + } + } + + function performUpdateTo($version) { + if ($this->getSchemaVersion() == $version - 1) { + + $lines = $this->getSchemaLines($version); + + if (is_array($lines)) { + + db_query($this->link, "BEGIN"); + + foreach ($lines as $line) { + if (strpos($line, "--") !== 0 && $line) { + db_query($this->link, $line); + } + } + + $db_version = $this->getSchemaVersion(); + + if ($db_version == $version) { + db_query($this->link, "COMMIT"); + return true; + } else { + db_query($this->link, "ROLLBACK"); + return false; + } + } else { + return true; + } + } else { + return false; + } + } + +} ?> diff --git a/classes/feeds.php b/classes/feeds.php index 778850fc4..1d0bb5293 100644 --- a/classes/feeds.php +++ b/classes/feeds.php @@ -866,12 +866,15 @@ class Feeds extends Handler_Protected { $override_order = false; switch ($order_by) { - case "date_reverse": - $override_order = "date_entered, updated"; - break; - case "feed_dates": - $override_order = "updated DESC"; - break; + case "title": + $override_order = "ttrss_entries.title"; + break; + case "date_reverse": + $override_order = "date_entered, updated"; + break; + case "feed_dates": + $override_order = "updated DESC"; + break; } if ($_REQUEST["debug"]) $timing_info = print_checkpoint("04", $timing_info); diff --git a/classes/handler/public.php b/classes/handler/public.php index b8a32cd27..e95f118bb 100644 --- a/classes/handler/public.php +++ b/classes/handler/public.php @@ -837,5 +837,117 @@ class Handler_Public extends Handler { } + function dbupdate() { + if (!SINGLE_USER_MODE && $_SESSION["access_level"] < 10) { + $_SESSION["login_error_msg"] = __("Your access level is insufficient to run this script."); + render_login_form($link); + exit; + } + + ?><html> + <head> + <title>Database Updater</title> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> + <link rel="stylesheet" type="text/css" href="utility.css"/> + </head> + <style type="text/css"> + span.ok { color : #009000; font-weight : bold; } + span.err { color : #ff0000; font-weight : bold; } + </style> + <body> + <script type='text/javascript'> + function confirmOP() { + return confirm("Update the database?"); + } + </script> + + <div class="floatingLogo"><img src="images/logo_small.png"></div> + + <h1><?php echo __("Database Updater") ?></h1> + + <div class="content"> + + <?php + @$op = $_REQUEST["subop"]; + $updater = new DbUpdater($this->link, DB_TYPE, SCHEMA_VERSION); + + if ($op == "performupdate") { + if ($updater->isUpdateRequired()) { + + print "<h2>Performing updates</h2>"; + + print "<h3>Updating to schema version " . SCHEMA_VERSION . "</h3>"; + + print "<ul>"; + + for ($i = $updater->getSchemaVersion() + 1; $i <= SCHEMA_VERSION; $i++) { + print "<li>Performing update up to version $i..."; + + $result = $updater->performUpdateTo($i); + + if (!$result) { + print "<span class='err'>FAILED!</span></li></ul>"; + + print_warning("One of the updates failed. Either retry the process or perform updates manually."); + print "<p><form method=\"GET\" action=\"index.php\"> + <input type=\"submit\" value=\"".__("Return to Tiny Tiny RSS")."\"> + </form>"; + + break; + } else { + print "<span class='ok'>OK!</span></li>"; + } + } + + print "</ul>"; + + print_notice("Your Tiny Tiny RSS database is now updated to the latest version."); + + print "<p><form method=\"GET\" action=\"index.php\"> + <input type=\"submit\" value=\"".__("Return to Tiny Tiny RSS")."\"> + </form>"; + + } else { + print "<h2>Your database is up to date.</h2>"; + + print "<p><form method=\"GET\" action=\"index.php\"> + <input type=\"submit\" value=\"".__("Return to Tiny Tiny RSS")."\"> + </form>"; + } + } else { + if ($updater->isUpdateRequired()) { + + print "<h2>Database update required</h2>"; + + print "<h3>"; + printf("Your Tiny Tiny RSS database needs update to the latest version: %d to %d.", + $updater->getSchemaVersion(), SCHEMA_VERSION); + print "</h3>"; + + print_warning("Please backup your database before proceeding."); + + print "<form method='POST'> + <input type='hidden' name='subop' value='performupdate'> + <input type='submit' onclick='return confirmOP()' value='".__("Perform updates")."'> + </form>"; + + } else { + + print "<h2>" . "Tiny Tiny RSS database is up to date." . "</h2>"; + + print "<p><form method=\"GET\" action=\"index.php\"> + <input type=\"submit\" value=\"".__("Return to Tiny Tiny RSS")."\"> + </form>"; + + } + } + ?> + + </div> + </body> + </html> + <?php + } + } ?> diff --git a/classes/pref/feeds.php b/classes/pref/feeds.php index 7fb64623e..68535562f 100644 --- a/classes/pref/feeds.php +++ b/classes/pref/feeds.php @@ -1800,12 +1800,12 @@ class Pref_Feeds extends Handler_Protected { function batchAddFeeds() { $cat_id = db_escape_string($this->link, $_REQUEST['cat']); - $feeds = explode("\n", db_escape_string($this->link, $_REQUEST['feeds'])); + $feeds = explode("\n", $_REQUEST['feeds']); $login = db_escape_string($this->link, $_REQUEST['login']); $pass = db_escape_string($this->link, $_REQUEST['pass']); foreach ($feeds as $feed) { - $feed = trim($feed); + $feed = db_escape_string($this->link, trim($feed)); if (validate_feed_url($feed)) { diff --git a/classes/pref/prefs.php b/classes/pref/prefs.php index 730d556a5..445d0aadb 100644 --- a/classes/pref/prefs.php +++ b/classes/pref/prefs.php @@ -180,6 +180,8 @@ class Pref_Prefs extends Handler_Protected { WHERE $profile_qpart AND owner_uid = ".$_SESSION["uid"]); initialize_user_prefs($this->link, $_SESSION["uid"], $_SESSION["profile"]); + + echo __("Your preferences are now set to default values."); } function index() { diff --git a/db-updater.php b/db-updater.php deleted file mode 100644 index 272611063..000000000 --- a/db-updater.php +++ /dev/null @@ -1,190 +0,0 @@ -<?php - set_include_path(dirname(__FILE__) ."/include" . PATH_SEPARATOR . - get_include_path()); - - require_once "functions.php"; - require_once "sessions.php"; - require_once "sanity_check.php"; - require_once "config.php"; - require_once "db.php"; - - $link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME); - - if (!init_connection($link)) return; - login_sequence($link); - - $owner_uid = $_SESSION["uid"]; - - if (!SINGLE_USER_MODE && $_SESSION["access_level"] < 10) { - $_SESSION["login_error_msg"] = __("Your access level is insufficient to run this script."); - render_login_form($link); - exit; - } - - -?> - -<html> -<head> -<title>Database Updater</title> -<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> -<link rel="stylesheet" type="text/css" href="utility.css"> -</head> - -<body> - -<script type='text/javascript'> -function confirmOP() { - return confirm(__("Update the database?")); -} -</script> - -<div class="floatingLogo"><img src="images/logo_small.png"></div> - -<h1><?php echo __("Database Updater") ?></h1> - -<div class="content"> - -<?php - function getline($fp, $delim) { - $result = ""; - while(!feof($fp)) { - $tmp = fgetc($fp); - - if($tmp == $delim) { - return $result; - } - $result .= $tmp; - } - return $result; - } - - $op = $_POST["op"]; - - $result = db_query($link, "SELECT schema_version FROM ttrss_version"); - $version = db_fetch_result($result, 0, "schema_version"); - - $update_files = glob("schema/versions/".DB_TYPE."/*sql"); - $update_versions = array(); - - foreach ($update_files as $f) { - $m = array(); - preg_match_all("/schema\/versions\/".DB_TYPE."\/(\d*)\.sql/", $f, $m, - PREG_PATTERN_ORDER); - - if ($m[1][0]) { - $update_versions[$m[1][0]] = $f; - } - } - - ksort($update_versions, SORT_NUMERIC); - - $latest_version = max(array_keys($update_versions)); - - if ($version == $latest_version) { - - if ($version != SCHEMA_VERSION) { - print_error(__("Could not update database")); - - print "<p>" . - __("Could not find necessary schema file, need version:") . - " " . SCHEMA_VERSION . __(", found: ") . $latest_version . "</p>"; - - } else { - print_notice(__("Tiny Tiny RSS database is up to date.")); - print "<form method=\"GET\" action=\"index.php\"> - <input type=\"submit\" value=\"".__("Return to Tiny Tiny RSS")."\"> - </form>"; - } - - } else if ($version <= $latest_version && !$op) { - - print_warning(__("Please backup your database before proceeding.")); - - print "<p>" . T_sprintf("Your Tiny Tiny RSS database needs update to the latest version (<b>%d</b> to <b>%d</b>).", $version, $latest_version) . "</p>"; - - /* print "<p>Available incremental updates:"; - - foreach (array_keys($update_versions) as $v) { - if ($v > $version) { - print " <a href='$update_versions[$v]'>$v</a>"; - } - } */ - - print "</p>"; - - print "<form method='POST'> - <input type='hidden' name='op' value='do'> - <input type='submit' onclick='return confirmOP()' value='".__("Perform updates")."'> - </form>"; - - } else if ($op == "do") { - - print "<p>".__("Performing updates...")."</p>"; - - $num_updates = 0; - - foreach (array_keys($update_versions) as $v) { - if ($v == $version + 1) { - print "<p>".T_sprintf("Updating to version %d...", $v)."</p>"; - db_query($link, "BEGIN"); - $fp = fopen($update_versions[$v], "r"); - if ($fp) { - while (!feof($fp)) { - $query = trim(getline($fp, ";")); - if ($query != "") { - print "<p class='query'>$query</p>"; - db_query($link, $query); - } - } - } - fclose($fp); - db_query($link, "COMMIT"); - - print "<p>".__("Checking version... "); - - $result = db_query($link, "SELECT schema_version FROM ttrss_version"); - $version = db_fetch_result($result, 0, "schema_version"); - - if ($version == $v) { - print __("OK!"); - } else { - print "<b>".__("ERROR!")."</b>"; - return; - } - - $num_updates++; - } - } - - print "<p>".sprintf(ngettext("Finished. Performed <b>%d</b> update up to schema version <b>%d</b>.", - "Finished. Performed <b>%d</b> updates up to schema version <b>%d</b>.", $num_updates), $num_updates, $version)."</p>"; - - print "<form method=\"GET\" action=\"backend.php\"> - <input type=\"hidden\" name=\"op\" value=\"logout\"> - <input type=\"submit\" value=\"".__("Return to Tiny Tiny RSS")."\"> - </form>"; - - } else if ($version >= $latest_version) { - - print_error(__("Your database schema is from a newer version of Tiny Tiny RSS.")); - - print "<p>" . T_sprintf("Found schema version: <b>%d</b>, required: <b>%d</b>.", $version, $latest_version) . "</p>"; - - print "<p>" . __("Schema upgrade impossible. Please update Tiny Tiny RSS files to the newer version and continue.") . "</p>"; - - print "<form method=\"GET\" action=\"backend.php\"> - <input type=\"hidden\" name=\"op\" value=\"logout\"> - <input type=\"submit\" value=\"".__("Return to Tiny Tiny RSS")."\"> - </form>"; - - - } - -?> - -</div> - -</body> -</html> - diff --git a/feed-icons/.empty b/feed-icons/.empty index e69de29bb..e69de29bb 100644..100755 --- a/feed-icons/.empty +++ b/feed-icons/.empty diff --git a/include/functions.php b/include/functions.php index 6f5db9a5f..dc67b028a 100644 --- a/include/functions.php +++ b/include/functions.php @@ -2700,14 +2700,16 @@ } - $allowed_elements = array('a', 'address', 'audio', 'article', - 'b', 'big', 'blockquote', 'body', 'br', 'cite', 'center', - 'code', 'dd', 'del', 'details', 'div', 'dl', 'font', - 'dt', 'em', 'footer', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6', - 'header', 'html', 'i', 'img', 'ins', 'kbd', - 'li', 'nav', 'noscript', 'ol', 'p', 'pre', 'q', 's','small', + $allowed_elements = array('a', 'address', 'audio', 'article', 'aside', + 'b', 'bdi', 'bdo', 'big', 'blockquote', 'body', 'br', + 'caption', 'cite', 'center', 'code', 'col', 'colgroup', + 'data', 'dd', 'del', 'details', 'div', 'dl', 'font', + 'dt', 'em', 'footer', 'figure', 'figcaption', + 'h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'header', 'html', 'i', + 'img', 'ins', 'kbd', 'li', 'main', 'mark', 'nav', 'noscript', + 'ol', 'p', 'pre', 'q', 'ruby', 'rp', 'rt', 's', 'samp', 'small', 'source', 'span', 'strike', 'strong', 'sub', 'summary', - 'sup', 'table', 'tbody', 'td', 'tfoot', 'th', 'thead', + 'sup', 'table', 'tbody', 'td', 'tfoot', 'th', 'thead', 'time', 'tr', 'track', 'tt', 'u', 'ul', 'var', 'wbr', 'video' ); if ($_SESSION['hasSandbox']) $allowed_elements[] = 'iframe'; @@ -185,6 +185,7 @@ <option selected="selected" value="default"><?php echo __('Default') ?></option> <option value="feed_dates"><?php echo __('Newest first') ?></option> <option value="date_reverse"><?php echo __('Oldest first') ?></option> + <option value="title"><?php echo __('Title') ?></option> </select> <div dojoType="dijit.form.ComboButton" onclick="catchupCurrentFeed()"> diff --git a/js/FeedTree.js b/js/FeedTree.js index 620efdbf6..bb50d6fbb 100644 --- a/js/FeedTree.js +++ b/js/FeedTree.js @@ -259,12 +259,12 @@ dojo.declare("fox.FeedTree", dijit.Tree, { if (String(root.items[i].id) == test_id) { this.expandParentNodes(feed, is_cat, parents); } else { - this.findNodeParentsAndExpandThem(feed, is_cat, root.items[i], parents); + this.findNodeParentsAndExpandThem(feed, is_cat, root.items[i], parents.slice(0)); } } } else { if (String(root.id) == test_id) { - this.expandParentNodes(feed, is_cat, parents); + this.expandParentNodes(feed, is_cat, parents.slice(0)); } } } diff --git a/js/feedlist.js b/js/feedlist.js index 3154a2887..f4e07517e 100644 --- a/js/feedlist.js +++ b/js/feedlist.js @@ -132,6 +132,8 @@ function viewfeed(feed, method, is_cat, offset, background, infscroll_req) { console.log(query); + setActiveFeedId(feed, is_cat); + new Ajax.Request("backend.php", { parameters: query, onComplete: function(transport) { diff --git a/js/functions.js b/js/functions.js index 4e4d03557..82cfa9054 100644 --- a/js/functions.js +++ b/js/functions.js @@ -508,7 +508,7 @@ function fatalError(code, msg, ext_info) { if (code == 6) { window.location.href = "index.php"; } else if (code == 5) { - window.location.href = "db-updater.php"; + window.location.href = "public.php?op=dbupdate"; } else { if (msg == "") msg = "Unknown error"; diff --git a/js/prefs.js b/js/prefs.js index b4ecd2584..b1decede5 100644 --- a/js/prefs.js +++ b/js/prefs.js @@ -975,13 +975,8 @@ function validatePrefsReset() { new Ajax.Request("backend.php", { parameters: query, onComplete: function(transport) { - var msg = transport.responseText; - if (msg.match("PREFS_THEME_CHANGED")) { - window.location.reload(); - } else { - notify_info(msg); - selectTab(); - } + updatePrefsList(); + notify_info(transport.responseText); } }); } diff --git a/js/viewfeed.js b/js/viewfeed.js index 7813ab7ef..76f9bbaee 100644 --- a/js/viewfeed.js +++ b/js/viewfeed.js @@ -49,7 +49,8 @@ function headlines_callback2(transport, offset, background, infscroll_req) { return; } - setActiveFeedId(feed_id, is_cat); + if (feed_id != getActiveFeedId() || is_cat != activeFeedIsCat()) + return; /* dijit.getEnclosingWidget( document.forms["main_toolbar_form"].update).attr('disabled', diff --git a/locale/ca_CA/LC_MESSAGES/messages.mo b/locale/ca_CA/LC_MESSAGES/messages.mo Binary files differindex 2211587fe..e94c94545 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 0f4dd2cc1..0c07d34ec 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-04-04 09:06+0400\n" +"POT-Creation-Date: 2013-04-04 21:31+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" @@ -102,101 +102,6 @@ msgstr "Súper usuari" msgid "Administrator" msgstr "Administrador" -#: db-updater.php:19 -msgid "Your access level is insufficient to run this script." -msgstr "No teniu prou permisos per a executar aquest script." - -#: db-updater.php:44 -msgid "Database Updater" -msgstr "Eina d'actualització de la base de dades" - -#: db-updater.php:87 -msgid "Could not update database" -msgstr "No s'ha pogut actualitzar la base de dades" - -#: db-updater.php:90 -msgid "Could not find necessary schema file, need version:" -msgstr "No s'ha pogut trobar el fitxer d'esquema necessari, es necessita la versió:" - -#: db-updater.php:91 -msgid ", found: " -msgstr ", trobats:" - -#: db-updater.php:94 -msgid "Tiny Tiny RSS database is up to date." -msgstr "La base de dades de Tiny Tiny RSS està actualitzada." - -#: 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:648 -#: classes/handler/public.php:736 -#: classes/handler/public.php:818 -msgid "Return to Tiny Tiny RSS" -msgstr "Torna a Tiny Tiny RSS" - -#: db-updater.php:102 -msgid "Please backup your database before proceeding." -msgstr "Si us plau feu una còpia de seguretat de la base de dades abans de continuar." - -#: 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 dades de Tiny Tiny RSS s'ha d'actualitzar ( de la versió <b>%d</b> a la <b>%d</b>)." - -#: db-updater.php:118 -msgid "Perform updates" -msgstr "Aplica les actualitzacions" - -#: db-updater.php:123 -msgid "Performing updates..." -msgstr "S'estan realitzant les actualitzacions..." - -#: db-updater.php:129 -#, php-format -msgid "Updating to version %d..." -msgstr "S'està actualitzant a la versió %d..." - -#: db-updater.php:144 -msgid "Checking version... " -msgstr "S'està comprovant la versió..." - -#: db-updater.php:150 -msgid "OK!" -msgstr "D'acord!" - -#: db-updater.php:152 -msgid "ERROR!" -msgstr "Error!" - -#: db-updater.php:160 -#, fuzzy, php-format -msgid "Finished. Performed <b>%d</b> update up to schema version <b>%d</b>." -msgid_plural "Finished. Performed <b>%d</b> updates up to schema version <b>%d</b>." -msgstr[0] "Fet. S'ha actualitzat l'esquema de la versió <b>%d</b> a <b>%d</b>." -msgstr[1] "Fet. S'ha actualitzat l'esquema de la versió <b>%d</b> a <b>%d</b>." - -#: db-updater.php:170 -msgid "Your database schema is from a newer version of Tiny Tiny RSS." -msgstr "" - -#: db-updater.php:172 -#, php-format -msgid "Found schema version: <b>%d</b>, required: <b>%d</b>." -msgstr "" - -#: db-updater.php:174 -msgid "Schema upgrade impossible. Please update Tiny Tiny RSS files to the newer version and continue." -msgstr "" - #: errors.php:9 msgid "This program requires XmlHttpRequest to function properly. Your browser doesn't seem to support it." msgstr "Aquest programa necessita XmlHttpRequest per funcionar correctament. Sembla que el vostre navegador no n'és compatible." @@ -252,7 +157,7 @@ msgstr "Ha fallat la sortida de prova de SQL, reviseu la base configuració de l #: index.php:135 #: index.php:152 -#: index.php:276 +#: index.php:277 #: prefs.php:103 #: classes/backend.php:5 #: classes/pref/labels.php:296 @@ -260,7 +165,7 @@ msgstr "Ha fallat la sortida de prova de SQL, reviseu la base configuració de l #: classes/pref/feeds.php:1331 #: plugins/digest/digest_body.php:63 #: js/feedlist.js:128 -#: js/feedlist.js:436 +#: js/feedlist.js:438 #: js/functions.js:420 #: js/functions.js:758 #: js/functions.js:1194 @@ -281,8 +186,8 @@ msgstr "Ha fallat la sortida de prova de SQL, reviseu la base configuració de l #: js/prefs.js:1814 #: js/tt-rss.js:475 #: js/tt-rss.js:492 -#: js/viewfeed.js:772 -#: js/viewfeed.js:1200 +#: js/viewfeed.js:775 +#: js/viewfeed.js:1201 #: plugins/import_export/import_export.js:17 #: plugins/updater/updater.js:17 msgid "Loading, please wait..." @@ -306,13 +211,13 @@ msgid "All Articles" msgstr "Tots els articles" #: index.php:174 -#: include/functions.php:1953 +#: include/functions.php:1955 #: classes/feeds.php:106 msgid "Starred" msgstr "Marcats" #: index.php:175 -#: include/functions.php:1954 +#: include/functions.php:1956 #: classes/feeds.php:107 msgid "Published" msgstr "Publicats" @@ -353,9 +258,13 @@ msgstr "" msgid "Oldest first" msgstr "" -#: index.php:191 -#: index.php:240 -#: include/functions.php:1943 +#: index.php:188 +msgid "Title" +msgstr "TÃtol" + +#: index.php:192 +#: index.php:241 +#: include/functions.php:1945 #: classes/feeds.php:111 #: classes/feeds.php:441 #: js/FeedTree.js:128 @@ -364,108 +273,108 @@ msgstr "" msgid "Mark as read" msgstr "Marca'l com a llegit" -#: index.php:194 +#: index.php:195 msgid "Older than one day" msgstr "" -#: index.php:197 +#: index.php:198 msgid "Older than one week" msgstr "" -#: index.php:200 +#: index.php:201 msgid "Older than two weeks" msgstr "" -#: index.php:217 +#: index.php:218 msgid "Communication problem with server." msgstr "" -#: index.php:225 +#: index.php:226 msgid "New version of Tiny Tiny RSS is available!" msgstr "Hi ha una nova versió de Tiny Tiny RSS!" -#: index.php:230 +#: index.php:231 msgid "Actions..." msgstr "Accions..." -#: index.php:232 +#: index.php:233 #, fuzzy msgid "Preferences..." msgstr "Preferències" -#: index.php:233 +#: index.php:234 msgid "Search..." msgstr "Cerca..." -#: index.php:234 +#: index.php:235 msgid "Feed actions:" msgstr "Accions sobre els canals:" -#: index.php:235 +#: index.php:236 #: classes/handler/public.php:578 msgid "Subscribe to feed..." msgstr "Subscriviu-vos al canal" -#: index.php:236 +#: index.php:237 msgid "Edit this feed..." msgstr "Edita aquest canal..." -#: index.php:237 +#: index.php:238 msgid "Rescore feed" msgstr "Canvia la puntuació del canal" -#: index.php:238 +#: index.php:239 #: classes/pref/feeds.php:717 #: classes/pref/feeds.php:1283 #: js/PrefFeedTree.js:73 msgid "Unsubscribe" msgstr "Dóna't de baixa" -#: index.php:239 +#: index.php:240 msgid "All feeds:" msgstr "Tots els canals" -#: index.php:241 +#: index.php:242 msgid "(Un)hide read feeds" msgstr "Mostra/amaga els canals llegits" -#: index.php:242 +#: index.php:243 msgid "Other actions:" msgstr "Altres accions:" -#: index.php:244 +#: index.php:245 msgid "Switch to digest..." msgstr "" -#: index.php:246 +#: index.php:247 #, fuzzy msgid "Show tag cloud..." msgstr "Núvol d'etiquetes" -#: index.php:247 -#: include/functions.php:1929 +#: index.php:248 +#: include/functions.php:1931 #, fuzzy msgid "Toggle widescreen mode" msgstr "Canvia al mode de reordenació de categories" -#: index.php:248 +#: index.php:249 msgid "Select by tags..." msgstr "" -#: index.php:249 +#: index.php:250 msgid "Create label..." msgstr "Crea una etiqueta" -#: index.php:250 +#: index.php:251 msgid "Create filter..." msgstr "Crea un filtre..." -#: index.php:251 +#: index.php:252 #, fuzzy msgid "Keyboard shortcuts help" msgstr "Dreceres de teclat" -#: index.php:260 +#: index.php:261 #: plugins/digest/digest_body.php:77 #: plugins/mobile/mobile-functions.php:62 #: plugins/mobile/mobile-functions.php:237 @@ -474,8 +383,8 @@ msgstr "Surt" #: prefs.php:36 #: prefs.php:121 -#: include/functions.php:1956 -#: classes/pref/prefs.php:428 +#: include/functions.php:1958 +#: classes/pref/prefs.php:444 msgid "Preferences" msgstr "Preferències" @@ -500,8 +409,8 @@ msgid "Filters" msgstr "Filtres" #: prefs.php:130 -#: include/functions.php:1146 -#: include/functions.php:1782 +#: include/functions.php:1148 +#: include/functions.php:1784 #: classes/pref/labels.php:90 #: plugins/mobile/mobile-functions.php:198 msgid "Labels" @@ -520,6 +429,24 @@ msgstr "Creeu un compte nou" msgid "New user registrations are administratively disabled." msgstr "L'administrador ha deshabilitat els registres de nous usuaris." +#: 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:648 +#: classes/handler/public.php:736 +#: classes/handler/public.php:818 +#: classes/handler/public.php:893 +#: classes/handler/public.php:907 +#: classes/handler/public.php:914 +#: classes/handler/public.php:939 +msgid "Return to Tiny Tiny RSS" +msgstr "Torna a Tiny Tiny RSS" + #: 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 "La vostra contrasenya temporal s'enviarà a l'adreça electrònica especificada. Els comptes en els quals no s'hagi entrat almenys un cop s'eliminaran passades 24 hores des de l'enviament de la contrasenya." @@ -566,16 +493,16 @@ msgstr "S'ha creat el compte." msgid "New user registrations are currently closed." msgstr "Actualment no es permet el registre de nous usuaris." -#: update.php:55 +#: update.php:56 #, fuzzy 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:1155 -#: include/functions.php:1683 -#: include/functions.php:1768 -#: include/functions.php:1790 +#: include/functions.php:1157 +#: include/functions.php:1685 +#: include/functions.php:1770 +#: include/functions.php:1792 #: classes/opml.php:416 #: classes/pref/feeds.php:222 msgid "Uncategorized" @@ -592,337 +519,337 @@ msgstr[1] "Articles marcats" msgid "No feeds found." msgstr "No s'ha trobat cap canal." -#: include/functions.php:1144 -#: include/functions.php:1780 +#: include/functions.php:1146 +#: include/functions.php:1782 #: plugins/mobile/mobile-functions.php:171 msgid "Special" msgstr "Especial" -#: include/functions.php:1632 -#: classes/feeds.php:1101 +#: include/functions.php:1634 +#: classes/feeds.php:1104 #: classes/pref/filters.php:427 msgid "All feeds" msgstr "Tots els canals" -#: include/functions.php:1833 +#: include/functions.php:1835 msgid "Starred articles" msgstr "Articles marcats" -#: include/functions.php:1835 +#: include/functions.php:1837 msgid "Published articles" msgstr "Articles publicats" -#: include/functions.php:1837 +#: include/functions.php:1839 msgid "Fresh articles" msgstr "Articles nous" -#: include/functions.php:1839 -#: include/functions.php:1951 +#: include/functions.php:1841 +#: include/functions.php:1953 msgid "All articles" msgstr "Tots els articles" -#: include/functions.php:1841 +#: include/functions.php:1843 #, fuzzy msgid "Archived articles" msgstr "Articles mémorisés" -#: include/functions.php:1843 +#: include/functions.php:1845 msgid "Recently read" msgstr "" -#: include/functions.php:1906 +#: include/functions.php:1908 msgid "Navigation" msgstr "Navegació" -#: include/functions.php:1907 +#: include/functions.php:1909 #, fuzzy msgid "Open next feed" msgstr "Canals generats" -#: include/functions.php:1908 +#: include/functions.php:1910 msgid "Open previous feed" msgstr "" -#: include/functions.php:1909 +#: include/functions.php:1911 #, fuzzy msgid "Open next article" msgstr "Mostra el contingut original de l'article" -#: include/functions.php:1910 +#: include/functions.php:1912 #, fuzzy msgid "Open previous article" msgstr "Mostra el contingut original de l'article" -#: include/functions.php:1911 +#: include/functions.php:1913 msgid "Open next article (don't scroll long articles)" msgstr "" -#: include/functions.php:1912 +#: include/functions.php:1914 msgid "Open previous article (don't scroll long articles)" msgstr "" -#: include/functions.php:1913 +#: include/functions.php:1915 msgid "Show search dialog" msgstr "Mostra el dià leg de cerca" -#: include/functions.php:1914 +#: include/functions.php:1916 #, fuzzy msgid "Article" msgstr "Tots els articles" -#: include/functions.php:1915 +#: include/functions.php:1917 msgid "Toggle starred" msgstr "Commuta els marcats" -#: include/functions.php:1916 -#: js/viewfeed.js:1863 +#: include/functions.php:1918 +#: js/viewfeed.js:1872 msgid "Toggle published" msgstr "Commuta els publicats" -#: include/functions.php:1917 -#: js/viewfeed.js:1841 +#: include/functions.php:1919 +#: js/viewfeed.js:1850 msgid "Toggle unread" msgstr "Commuta els no llegits" -#: include/functions.php:1918 +#: include/functions.php:1920 msgid "Edit tags" msgstr "Edita les etiquetes" -#: include/functions.php:1919 +#: include/functions.php:1921 #, fuzzy msgid "Dismiss selected" msgstr "Esteu segur que voleu eliminar els articles seleccionats de l'etiqueta?" -#: include/functions.php:1920 +#: include/functions.php:1922 #, fuzzy msgid "Dismiss read" msgstr "Publica l'article" -#: include/functions.php:1921 +#: include/functions.php:1923 #, fuzzy msgid "Open in new window" msgstr "Obre l'article en una finestra nova" -#: include/functions.php:1922 -#: js/viewfeed.js:1882 +#: include/functions.php:1924 +#: js/viewfeed.js:1891 #, fuzzy msgid "Mark below as read" msgstr "Marca'l com a llegit" -#: include/functions.php:1923 -#: js/viewfeed.js:1876 +#: include/functions.php:1925 +#: js/viewfeed.js:1885 #, fuzzy msgid "Mark above as read" msgstr "Marca'l com a llegit" -#: include/functions.php:1924 +#: include/functions.php:1926 #, fuzzy msgid "Scroll down" msgstr "Fet!" -#: include/functions.php:1925 +#: include/functions.php:1927 msgid "Scroll up" msgstr "" -#: include/functions.php:1926 +#: include/functions.php:1928 #, fuzzy msgid "Select article under cursor" msgstr "Seleccioneu un article mitjançant el ratolÃ." -#: include/functions.php:1927 +#: include/functions.php:1929 #, fuzzy msgid "Email article" msgstr "Tots els articles" -#: include/functions.php:1928 +#: include/functions.php:1930 #, fuzzy msgid "Close/collapse article" msgstr "Buida els articles" -#: include/functions.php:1930 +#: include/functions.php:1932 #: plugins/embed_original/init.php:33 #, fuzzy msgid "Toggle embed original" msgstr "Canvia al mode de reordenació de categories" -#: include/functions.php:1931 +#: include/functions.php:1933 #, fuzzy msgid "Article selection" msgstr "Accions actives de l'article" -#: include/functions.php:1932 +#: include/functions.php:1934 #, fuzzy msgid "Select all articles" msgstr "Buida els articles" -#: include/functions.php:1933 +#: include/functions.php:1935 #, fuzzy msgid "Select unread" msgstr "Purga els articles per llegir" -#: include/functions.php:1934 +#: include/functions.php:1936 #, fuzzy msgid "Select starred" msgstr "Marca'l com a destacat" -#: include/functions.php:1935 +#: include/functions.php:1937 #, fuzzy msgid "Select published" msgstr "Purga els articles per llegir" -#: include/functions.php:1936 +#: include/functions.php:1938 #, fuzzy msgid "Invert selection" msgstr "Accions actives de l'article" -#: include/functions.php:1937 +#: include/functions.php:1939 #, fuzzy msgid "Deselect everything" msgstr "Buida els articles" -#: include/functions.php:1938 +#: include/functions.php:1940 #: classes/pref/feeds.php:521 #: classes/pref/feeds.php:754 msgid "Feed" msgstr "Canal" -#: include/functions.php:1939 +#: include/functions.php:1941 #, fuzzy msgid "Refresh current feed" msgstr "Actualitza els canals actius" -#: include/functions.php:1940 +#: include/functions.php:1942 #, fuzzy msgid "Un/hide read feeds" msgstr "Mostra/amaga els canals llegits" -#: include/functions.php:1941 +#: include/functions.php:1943 #: classes/pref/feeds.php:1275 msgid "Subscribe to feed" msgstr "Subscriu-te al canal" -#: include/functions.php:1942 +#: include/functions.php:1944 #: js/FeedTree.js:135 #: js/PrefFeedTree.js:67 msgid "Edit feed" msgstr "Edita el canal" -#: include/functions.php:1944 +#: include/functions.php:1946 #, fuzzy msgid "Reverse headlines" msgstr "Inverteix l'ordre de les capçaleres (les més antigues les primeres)" -#: include/functions.php:1945 +#: include/functions.php:1947 #, fuzzy msgid "Debug feed update" msgstr "S'ha acabat l'actualització dels canals." -#: include/functions.php:1946 +#: include/functions.php:1948 #: js/FeedTree.js:178 msgid "Mark all feeds as read" msgstr "Marca tots els canals com a llegits" -#: include/functions.php:1947 +#: include/functions.php:1949 #, fuzzy msgid "Un/collapse current category" msgstr "Clica-hi per a reduir la categoria" -#: include/functions.php:1948 +#: include/functions.php:1950 #, fuzzy msgid "Toggle combined mode" msgstr "Canvia al mode de reordenació de categories" -#: include/functions.php:1949 +#: include/functions.php:1951 #, fuzzy msgid "Toggle auto expand in combined mode" msgstr "Canvia al mode de reordenació de categories" -#: include/functions.php:1950 +#: include/functions.php:1952 #, fuzzy msgid "Go to" msgstr "Vés a..." -#: include/functions.php:1952 +#: include/functions.php:1954 #, fuzzy msgid "Fresh" msgstr "Actualitza" -#: include/functions.php:1955 +#: include/functions.php:1957 #: js/tt-rss.js:431 #: js/tt-rss.js:584 msgid "Tag cloud" msgstr "Núvol d'etiquetes" -#: include/functions.php:1957 +#: include/functions.php:1959 #, fuzzy msgid "Other" msgstr "Altres:" -#: include/functions.php:1958 +#: include/functions.php:1960 #: classes/pref/labels.php:281 msgid "Create label" msgstr "Crea una etiqueta" -#: include/functions.php:1959 +#: include/functions.php:1961 #: classes/pref/filters.php:654 msgid "Create filter" msgstr "Crea un filtre" -#: include/functions.php:1960 +#: include/functions.php:1962 #, fuzzy msgid "Un/collapse sidebar" msgstr "Redueix la barra lateral" -#: include/functions.php:1961 +#: include/functions.php:1963 #, fuzzy msgid "Show help dialog" msgstr "Mostra el dià leg de cerca" -#: include/functions.php:2446 +#: include/functions.php:2471 #, fuzzy, php-format msgid "Search results: %s" msgstr "Resultats de la cerca" -#: include/functions.php:2937 -#: js/viewfeed.js:1969 +#: include/functions.php:2962 +#: js/viewfeed.js:1978 #, fuzzy msgid "Click to play" msgstr "Feu clic per editar" -#: include/functions.php:2938 -#: js/viewfeed.js:1968 +#: include/functions.php:2963 +#: js/viewfeed.js:1977 msgid "Play" msgstr "" -#: include/functions.php:3055 +#: include/functions.php:3080 msgid " - " msgstr " - " -#: include/functions.php:3077 -#: include/functions.php:3371 +#: include/functions.php:3102 +#: include/functions.php:3396 #: classes/article.php:281 msgid "no tags" msgstr "sense etiqueta" -#: include/functions.php:3087 +#: include/functions.php:3112 #: classes/feeds.php:686 msgid "Edit tags for this article" msgstr "Edita les etiquetes d'aquest article" -#: include/functions.php:3116 +#: include/functions.php:3141 #: classes/feeds.php:642 #, fuzzy msgid "Originally from:" msgstr "Mostra el contingut original de l'article" -#: include/functions.php:3129 +#: include/functions.php:3154 #: classes/feeds.php:655 #: classes/pref/feeds.php:540 #, fuzzy msgid "Feed URL" msgstr "Canal" -#: include/functions.php:3160 +#: include/functions.php:3185 #: classes/dlg.php:37 #: classes/dlg.php:60 #: classes/dlg.php:93 @@ -934,7 +861,7 @@ msgstr "Canal" #: classes/backend.php:105 #: classes/pref/users.php:99 #: classes/pref/filters.php:147 -#: classes/pref/prefs.php:1059 +#: classes/pref/prefs.php:1105 #: classes/pref/feeds.php:1588 #: classes/pref/feeds.php:1660 #: plugins/import_export/init.php:406 @@ -945,16 +872,16 @@ msgstr "Canal" msgid "Close this window" msgstr "Tanca la finestra" -#: include/functions.php:3396 +#: include/functions.php:3421 #, fuzzy msgid "(edit note)" msgstr "edita la nota" -#: include/functions.php:3631 +#: include/functions.php:3656 msgid "unknown type" msgstr "tipus desconegut" -#: include/functions.php:3687 +#: include/functions.php:3712 #, fuzzy msgid "Attachments" msgstr "Adjuncions:" @@ -979,6 +906,7 @@ msgstr "El nom d'usuari o la contrasenya és incorrecte" #: include/login_form.php:201 #: classes/handler/public.php:489 +#: classes/pref/prefs.php:552 msgid "Language:" msgstr "Idioma:" @@ -990,7 +918,7 @@ msgstr "Fitxer:" #: include/login_form.php:213 #: classes/handler/public.php:233 #: classes/rpc.php:64 -#: classes/pref/prefs.php:995 +#: classes/pref/prefs.php:1041 #, fuzzy msgid "Default profile" msgstr "Nombre maximal d'articles par défaut" @@ -1009,7 +937,7 @@ msgstr "" msgid "Log in" msgstr "Registreu-vos" -#: include/sessions.php:58 +#: include/sessions.php:62 msgid "Session failed to validate (incorrect IP)" msgstr "No s'ha pogut validar la sessió (IP incorrecta)" @@ -1026,7 +954,7 @@ msgstr "Etiquetes per aquest article (separades per comes):" #: classes/pref/users.php:176 #: classes/pref/labels.php:79 #: classes/pref/filters.php:405 -#: classes/pref/prefs.php:941 +#: classes/pref/prefs.php:987 #: classes/pref/feeds.php:733 #: classes/pref/feeds.php:881 #: plugins/nsfw/init.php:86 @@ -1038,16 +966,16 @@ msgstr "Desa" #: classes/article.php:206 #: classes/handler/public.php:460 #: classes/handler/public.php:502 -#: classes/feeds.php:1028 -#: classes/feeds.php:1080 -#: classes/feeds.php:1140 +#: classes/feeds.php:1031 +#: classes/feeds.php:1083 +#: classes/feeds.php:1143 #: 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:943 +#: classes/pref/prefs.php:989 #: classes/pref/feeds.php:734 #: classes/pref/feeds.php:884 #: classes/pref/feeds.php:1797 @@ -1179,6 +1107,18 @@ msgstr "Vés enrere" msgid "Sorry, login and email combination not found." msgstr "" +#: classes/handler/public.php:842 +msgid "Your access level is insufficient to run this script." +msgstr "No teniu prou permisos per a executar aquest script." + +#: classes/handler/public.php:866 +msgid "Database Updater" +msgstr "Eina d'actualització de la base de dades" + +#: classes/handler/public.php:931 +msgid "Perform updates" +msgstr "Aplica les actualitzacions" + #: 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 "" @@ -1285,7 +1225,7 @@ msgstr "Selecciona:" #: classes/pref/filters.php:648 #: classes/pref/filters.php:737 #: classes/pref/filters.php:764 -#: classes/pref/prefs.php:955 +#: classes/pref/prefs.php:1001 #: classes/pref/feeds.php:1266 #: classes/pref/feeds.php:1536 #: classes/pref/feeds.php:1606 @@ -1305,7 +1245,7 @@ msgstr "Inverteix" #: classes/pref/filters.php:650 #: classes/pref/filters.php:739 #: classes/pref/filters.php:766 -#: classes/pref/prefs.php:957 +#: classes/pref/prefs.php:1003 #: classes/pref/feeds.php:1268 #: classes/pref/feeds.php:1538 #: classes/pref/feeds.php:1608 @@ -1403,46 +1343,46 @@ msgid "No articles found to display." msgstr "No s'han trobat articles per a mostrar." #: classes/feeds.php:759 -#: classes/feeds.php:923 +#: classes/feeds.php:926 #, fuzzy, php-format msgid "Feeds last updated at %s" msgstr "Erreurs de mise à jour" #: classes/feeds.php:769 -#: classes/feeds.php:933 +#: classes/feeds.php:936 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:913 +#: classes/feeds.php:916 msgid "No feed selected." msgstr "No heu seleccionat cap canal." -#: classes/feeds.php:966 -#: classes/feeds.php:974 +#: classes/feeds.php:969 +#: classes/feeds.php:977 #, fuzzy msgid "Feed or site URL" msgstr "Canal" -#: classes/feeds.php:980 +#: classes/feeds.php:983 #: 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 +#: classes/feeds.php:991 #, fuzzy msgid "Available feeds" msgstr "Tots els canals" -#: classes/feeds.php:1000 +#: classes/feeds.php:1003 #: classes/pref/users.php:139 #: classes/pref/feeds.php:590 #: classes/pref/feeds.php:818 msgid "Authentication" msgstr "Autenticació" -#: classes/feeds.php:1004 +#: classes/feeds.php:1007 #: classes/pref/users.php:402 #: classes/pref/feeds.php:596 #: classes/pref/feeds.php:822 @@ -1450,8 +1390,8 @@ msgstr "Autenticació" msgid "Login" msgstr "Entra" -#: classes/feeds.php:1007 -#: classes/pref/prefs.php:253 +#: classes/feeds.php:1010 +#: classes/pref/prefs.php:269 #: classes/pref/feeds.php:602 #: classes/pref/feeds.php:828 #: classes/pref/feeds.php:1778 @@ -1459,23 +1399,23 @@ msgstr "Entra" msgid "Password" msgstr "Contrasenya:" -#: classes/feeds.php:1017 +#: classes/feeds.php:1020 msgid "This feed requires authentication." msgstr "Aquest canal requereix autenticació." -#: classes/feeds.php:1022 -#: classes/feeds.php:1078 +#: classes/feeds.php:1025 +#: classes/feeds.php:1081 #: classes/pref/feeds.php:1796 msgid "Subscribe" msgstr "Subscriu-t'hi" -#: classes/feeds.php:1025 +#: classes/feeds.php:1028 #, fuzzy msgid "More feeds" msgstr "Més canals" -#: classes/feeds.php:1048 -#: classes/feeds.php:1139 +#: classes/feeds.php:1051 +#: classes/feeds.php:1142 #: classes/pref/users.php:332 #: classes/pref/filters.php:641 #: classes/pref/feeds.php:1259 @@ -1483,22 +1423,22 @@ msgstr "Més canals" msgid "Search" msgstr "Cerca" -#: classes/feeds.php:1052 +#: classes/feeds.php:1055 #, fuzzy msgid "Popular feeds" msgstr "mostra els canals" -#: classes/feeds.php:1053 +#: classes/feeds.php:1056 #, fuzzy msgid "Feed archive" msgstr "Accions dels canals" -#: classes/feeds.php:1056 +#: classes/feeds.php:1059 #, fuzzy msgid "limit:" msgstr "LÃmit:" -#: classes/feeds.php:1079 +#: classes/feeds.php:1082 #: classes/pref/users.php:358 #: classes/pref/labels.php:284 #: classes/pref/filters.php:398 @@ -1508,15 +1448,15 @@ msgstr "LÃmit:" msgid "Remove" msgstr "Suprimeix" -#: classes/feeds.php:1090 +#: classes/feeds.php:1093 msgid "Look for" msgstr "Mirar-ho per" -#: classes/feeds.php:1098 +#: classes/feeds.php:1101 msgid "Limit search to:" msgstr "Limita la cerca a:" -#: classes/feeds.php:1114 +#: classes/feeds.php:1117 msgid "This feed" msgstr "Aquest canal" @@ -1682,7 +1622,7 @@ msgstr "[tt-rss] Notificació de canvi de contrasenya" #: classes/pref/filters.php:645 #: classes/pref/filters.php:734 #: classes/pref/filters.php:761 -#: classes/pref/prefs.php:952 +#: classes/pref/prefs.php:998 #: classes/pref/feeds.php:1263 #: classes/pref/feeds.php:1533 #: classes/pref/feeds.php:1603 @@ -2124,231 +2064,236 @@ msgstr "Les contrasenyes no coincideixen." msgid "Function not supported by authentication module." msgstr "" -#: classes/pref/prefs.php:120 +#: classes/pref/prefs.php:135 msgid "The configuration was saved." msgstr "S'ha desat la configuració" -#: classes/pref/prefs.php:134 +#: classes/pref/prefs.php:150 #, php-format msgid "Unknown option: %s" msgstr "Es desconeix l'opció %s" -#: classes/pref/prefs.php:148 +#: classes/pref/prefs.php:164 #, fuzzy msgid "Your personal data has been saved." msgstr "S'ha modificat la contrasenya." -#: classes/pref/prefs.php:188 +#: classes/pref/prefs.php:204 #, fuzzy msgid "Personal data / Authentication" msgstr "Autenticació" -#: classes/pref/prefs.php:208 +#: classes/pref/prefs.php:224 msgid "Personal data" msgstr "Dades personals" -#: classes/pref/prefs.php:218 +#: classes/pref/prefs.php:234 msgid "Full name" msgstr "" -#: classes/pref/prefs.php:222 +#: classes/pref/prefs.php:238 msgid "E-mail" msgstr "Adreça electrònica" -#: classes/pref/prefs.php:228 +#: classes/pref/prefs.php:244 msgid "Access level" msgstr "Nivell d'accés" -#: classes/pref/prefs.php:238 +#: classes/pref/prefs.php:254 #, fuzzy msgid "Save data" msgstr "Desa" -#: classes/pref/prefs.php:260 +#: classes/pref/prefs.php:276 #, fuzzy msgid "Your password is at default value, please change it." msgstr "" "La contrasenya actual és la predeterminada,\n" "\t\t\t\t\t\t penseu en modificar-la." -#: classes/pref/prefs.php:287 +#: classes/pref/prefs.php:303 msgid "Changing your current password will disable OTP." msgstr "" -#: classes/pref/prefs.php:292 +#: classes/pref/prefs.php:308 msgid "Old password" msgstr "Contrasenya antiga" -#: classes/pref/prefs.php:295 +#: classes/pref/prefs.php:311 msgid "New password" msgstr "Nova contrasenya" -#: classes/pref/prefs.php:300 +#: classes/pref/prefs.php:316 msgid "Confirm password" msgstr "Confirmeu la contrasenya" -#: classes/pref/prefs.php:310 +#: classes/pref/prefs.php:326 msgid "Change password" msgstr "Canvia la contrasenya" -#: classes/pref/prefs.php:316 +#: classes/pref/prefs.php:332 msgid "One time passwords / Authenticator" msgstr "" -#: classes/pref/prefs.php:320 +#: classes/pref/prefs.php:336 msgid "One time passwords are currently enabled. Enter your current password below to disable." msgstr "" -#: classes/pref/prefs.php:345 -#: classes/pref/prefs.php:396 +#: classes/pref/prefs.php:361 +#: classes/pref/prefs.php:412 #, fuzzy msgid "Enter your password" msgstr "El nom d'usuari o la contrasenya és incorrecte" -#: classes/pref/prefs.php:356 +#: classes/pref/prefs.php:372 #, fuzzy msgid "Disable OTP" msgstr "(Desactivat)" -#: classes/pref/prefs.php:362 +#: classes/pref/prefs.php:378 msgid "You will need a compatible Authenticator to use this. Changing your password would automatically disable OTP." msgstr "" -#: classes/pref/prefs.php:364 +#: classes/pref/prefs.php:380 msgid "Scan the following code by the Authenticator application:" msgstr "" -#: classes/pref/prefs.php:405 +#: classes/pref/prefs.php:421 msgid "I have scanned the code and would like to enable OTP" msgstr "" -#: classes/pref/prefs.php:413 +#: classes/pref/prefs.php:429 #, fuzzy msgid "Enable OTP" msgstr "Activat" -#: classes/pref/prefs.php:451 +#: classes/pref/prefs.php:475 msgid "Some preferences are only available in default profile." msgstr "" -#: classes/pref/prefs.php:545 +#: classes/pref/prefs.php:585 #, fuzzy msgid "Customize" msgstr "URL de la fulla d'estils personalitzada." -#: classes/pref/prefs.php:605 +#: classes/pref/prefs.php:645 #, fuzzy msgid "Register" msgstr "Registrat" -#: classes/pref/prefs.php:609 +#: classes/pref/prefs.php:649 msgid "Clear" msgstr "" -#: classes/pref/prefs.php:615 +#: classes/pref/prefs.php:655 #, php-format msgid "Current server time: %s (UTC)" msgstr "" -#: classes/pref/prefs.php:648 +#: classes/pref/prefs.php:688 msgid "Save configuration" msgstr "Desa la configuració" -#: classes/pref/prefs.php:651 +#: classes/pref/prefs.php:692 +#, fuzzy +msgid "Save and exit preferences" +msgstr "Surt de les preferències" + +#: classes/pref/prefs.php:697 #, fuzzy msgid "Manage profiles" msgstr "Crea un filtre" -#: classes/pref/prefs.php:654 +#: classes/pref/prefs.php:700 msgid "Reset to defaults" msgstr "Torna als parà metres per defecte" -#: classes/pref/prefs.php:678 -#: classes/pref/prefs.php:680 +#: classes/pref/prefs.php:724 +#: classes/pref/prefs.php:726 msgid "Plugins" msgstr "" -#: classes/pref/prefs.php:682 +#: classes/pref/prefs.php:728 msgid "You will need to reload Tiny Tiny RSS for plugin changes to take effect." msgstr "" -#: classes/pref/prefs.php:684 +#: classes/pref/prefs.php:730 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:710 +#: classes/pref/prefs.php:756 msgid "System plugins" msgstr "" -#: classes/pref/prefs.php:714 -#: classes/pref/prefs.php:768 +#: classes/pref/prefs.php:760 +#: classes/pref/prefs.php:814 msgid "Plugin" msgstr "" -#: classes/pref/prefs.php:715 -#: classes/pref/prefs.php:769 +#: classes/pref/prefs.php:761 +#: classes/pref/prefs.php:815 #, fuzzy msgid "Description" msgstr "description" -#: classes/pref/prefs.php:716 -#: classes/pref/prefs.php:770 +#: classes/pref/prefs.php:762 +#: classes/pref/prefs.php:816 msgid "Version" msgstr "" -#: classes/pref/prefs.php:717 -#: classes/pref/prefs.php:771 +#: classes/pref/prefs.php:763 +#: classes/pref/prefs.php:817 msgid "Author" msgstr "" -#: classes/pref/prefs.php:746 -#: classes/pref/prefs.php:803 +#: classes/pref/prefs.php:792 +#: classes/pref/prefs.php:849 msgid "more info" msgstr "" -#: classes/pref/prefs.php:755 -#: classes/pref/prefs.php:812 +#: classes/pref/prefs.php:801 +#: classes/pref/prefs.php:858 #, fuzzy msgid "Clear data" msgstr "Esborra les dades del canal" -#: classes/pref/prefs.php:764 +#: classes/pref/prefs.php:810 msgid "User plugins" msgstr "" -#: classes/pref/prefs.php:827 +#: classes/pref/prefs.php:873 #, fuzzy msgid "Enable selected plugins" msgstr "Habilita les icones dels canals." -#: classes/pref/prefs.php:882 -#: classes/pref/prefs.php:900 +#: classes/pref/prefs.php:928 +#: classes/pref/prefs.php:946 #, fuzzy msgid "Incorrect password" msgstr "El nom d'usuari o la contrasenya és incorrecte" -#: classes/pref/prefs.php:926 +#: classes/pref/prefs.php:972 #, 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:966 +#: classes/pref/prefs.php:1012 #, fuzzy msgid "Create profile" msgstr "Crea un filtre" -#: classes/pref/prefs.php:989 -#: classes/pref/prefs.php:1019 +#: classes/pref/prefs.php:1035 +#: classes/pref/prefs.php:1065 #, fuzzy msgid "(active)" msgstr "Adaptatiu" -#: classes/pref/prefs.php:1053 +#: classes/pref/prefs.php:1099 #, fuzzy msgid "Remove selected profiles" msgstr "Esteu segur que voleu suprimir els filtres seleccionats?" -#: classes/pref/prefs.php:1055 +#: classes/pref/prefs.php:1101 #, fuzzy msgid "Activate profile" msgstr "Esteu segur que voleu suprimir els filtres seleccionats?" @@ -2905,15 +2850,15 @@ msgstr "" msgid "The document has incorrect format." msgstr "" -#: plugins/googlereaderimport/init.php:326 +#: plugins/googlereaderimport/init.php:328 msgid "Import starred or shared items from Google Reader" msgstr "" -#: plugins/googlereaderimport/init.php:330 +#: plugins/googlereaderimport/init.php:332 msgid "Paste your starred.json or shared.json into the form below." msgstr "" -#: plugins/googlereaderimport/init.php:344 +#: plugins/googlereaderimport/init.php:346 msgid "Import my Starred items" msgstr "" @@ -3019,23 +2964,23 @@ msgstr "Última actualització:" msgid "Start update" msgstr "Última actualització:" -#: js/feedlist.js:392 -#: js/feedlist.js:420 +#: js/feedlist.js:394 +#: js/feedlist.js:422 #: plugins/digest/digest.js:26 msgid "Mark all articles in %s as read?" msgstr "Esteu segur que voleu marcar tots els articles de %s com a llegits?" -#: js/feedlist.js:411 +#: js/feedlist.js:413 #, fuzzy msgid "Mark all articles in %s older than 1 day as read?" msgstr "Esteu segur que voleu marcar tots els articles de %s com a llegits?" -#: js/feedlist.js:414 +#: js/feedlist.js:416 #, fuzzy msgid "Mark all articles in %s older than 1 week as read?" msgstr "Esteu segur que voleu marcar tots els articles de %s com a llegits?" -#: js/feedlist.js:417 +#: js/feedlist.js:419 #, fuzzy msgid "Mark all articles in %s older than 2 weeks as read?" msgstr "Esteu segur que voleu marcar tots els articles de %s com a llegits?" @@ -3600,157 +3545,157 @@ msgstr "S'estan canviant la puntuació dels articles" msgid "New version available!" msgstr "Hi ha una nova versió de Tiny Tiny RSS!" -#: js/viewfeed.js:104 +#: js/viewfeed.js:106 #, fuzzy msgid "Cancel search" msgstr "Cancel·la" -#: js/viewfeed.js:438 +#: js/viewfeed.js:441 #: plugins/digest/digest.js:258 #: plugins/digest/digest.js:714 msgid "Unstar article" msgstr "Treu la marca de l'article" -#: js/viewfeed.js:443 +#: js/viewfeed.js:446 #: plugins/digest/digest.js:260 #: plugins/digest/digest.js:718 msgid "Star article" msgstr "Marca l'article" -#: js/viewfeed.js:476 +#: js/viewfeed.js:479 #: plugins/digest/digest.js:263 #: plugins/digest/digest.js:749 msgid "Unpublish article" msgstr "Deixa de publicar l'article" -#: js/viewfeed.js:481 +#: js/viewfeed.js:484 #: plugins/digest/digest.js:265 #: plugins/digest/digest.js:754 msgid "Publish article" msgstr "Publica l'article" -#: js/viewfeed.js:677 -#: js/viewfeed.js:705 -#: js/viewfeed.js:732 -#: js/viewfeed.js:795 -#: js/viewfeed.js:829 -#: js/viewfeed.js:949 -#: js/viewfeed.js:992 -#: js/viewfeed.js:1045 -#: js/viewfeed.js:2051 +#: js/viewfeed.js:680 +#: js/viewfeed.js:708 +#: js/viewfeed.js:735 +#: js/viewfeed.js:798 +#: js/viewfeed.js:832 +#: js/viewfeed.js:952 +#: js/viewfeed.js:995 +#: js/viewfeed.js:1048 +#: js/viewfeed.js:2060 #: 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:957 +#: js/viewfeed.js:960 #, 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:959 +#: js/viewfeed.js:962 #, 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:1001 +#: js/viewfeed.js:1004 #, 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:1004 +#: js/viewfeed.js:1007 #, 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:1006 +#: js/viewfeed.js:1009 msgid "Please note that unstarred articles might get purged on next feed update." msgstr "" -#: js/viewfeed.js:1051 +#: js/viewfeed.js:1054 #, 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:1075 +#: js/viewfeed.js:1078 #, fuzzy msgid "Edit article Tags" msgstr "Edita les etiquetes" -#: js/viewfeed.js:1081 +#: js/viewfeed.js:1084 msgid "Saving article tags..." msgstr "S'estan desant les etiquetes de l'article" -#: js/viewfeed.js:1278 +#: js/viewfeed.js:1287 msgid "No article is selected." msgstr "No hi ha cap article seleccionat." -#: js/viewfeed.js:1313 +#: js/viewfeed.js:1322 msgid "No articles found to mark" msgstr "No s'han trobat articles per a marcar." -#: js/viewfeed.js:1315 +#: js/viewfeed.js:1324 #, 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:1827 +#: js/viewfeed.js:1836 #, fuzzy msgid "Open original article" msgstr "Mostra el contingut original de l'article" -#: js/viewfeed.js:1833 +#: js/viewfeed.js:1842 #, fuzzy msgid "Display article URL" msgstr "afficher les étiquettes" -#: js/viewfeed.js:1852 +#: js/viewfeed.js:1861 #, fuzzy msgid "Toggle marked" msgstr "Commuta els marcats" -#: js/viewfeed.js:1933 +#: js/viewfeed.js:1942 msgid "Assign label" msgstr "Assigna-li l'etiqueta" -#: js/viewfeed.js:1938 +#: js/viewfeed.js:1947 #, fuzzy msgid "Remove label" msgstr "Esteu segur que voleu suprimir les etiquetes seleccionades?" -#: js/viewfeed.js:1962 +#: js/viewfeed.js:1971 #, fuzzy msgid "Playing..." msgstr "S'està carregant la llista de canals..." -#: js/viewfeed.js:1963 +#: js/viewfeed.js:1972 #, fuzzy msgid "Click to pause" msgstr "Feu clic per editar" -#: js/viewfeed.js:2020 +#: js/viewfeed.js:2029 #, fuzzy msgid "Please enter new score for selected articles:" msgstr "Si us plau, escriviu una nota per aquest article:" -#: js/viewfeed.js:2062 +#: js/viewfeed.js:2071 #, fuzzy msgid "Please enter new score for this article:" msgstr "Si us plau, escriviu una nota per aquest article:" -#: js/viewfeed.js:2095 +#: js/viewfeed.js:2104 #, fuzzy msgid "Article URL:" msgstr "Tots els articles" @@ -3874,6 +3819,45 @@ msgstr "Marca l'article" msgid "Live updating is considered experimental. Backup your tt-rss directory before continuing. Please type 'yes' to continue." msgstr "" +#~ msgid "Could not update database" +#~ msgstr "No s'ha pogut actualitzar la base de dades" + +#~ msgid "Could not find necessary schema file, need version:" +#~ msgstr "No s'ha pogut trobar el fitxer d'esquema necessari, es necessita la versió:" + +#~ msgid ", found: " +#~ msgstr ", trobats:" + +#~ msgid "Tiny Tiny RSS database is up to date." +#~ msgstr "La base de dades de Tiny Tiny RSS està actualitzada." + +#~ msgid "Please backup your database before proceeding." +#~ msgstr "Si us plau feu una còpia de seguretat de la base de dades abans de continuar." + +#~ msgid "Your Tiny Tiny RSS database needs update to the latest version (<b>%d</b> to <b>%d</b>)." +#~ msgstr "La base de dades de Tiny Tiny RSS s'ha d'actualitzar ( de la versió <b>%d</b> a la <b>%d</b>)." + +#~ msgid "Performing updates..." +#~ msgstr "S'estan realitzant les actualitzacions..." + +#~ msgid "Updating to version %d..." +#~ msgstr "S'està actualitzant a la versió %d..." + +#~ msgid "Checking version... " +#~ msgstr "S'està comprovant la versió..." + +#~ msgid "OK!" +#~ msgstr "D'acord!" + +#~ msgid "ERROR!" +#~ msgstr "Error!" + +#, fuzzy +#~ 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] "Fet. S'ha actualitzat l'esquema de la versió <b>%d</b> a <b>%d</b>." +#~ msgstr[1] "Fet. S'ha actualitzat l'esquema de la versió <b>%d</b> a <b>%d</b>." + #~ msgid "Mark feed as read" #~ msgstr "Marca el canal com a llegit" @@ -3884,9 +3868,6 @@ msgstr "" #~ msgid "When this option is enabled, headlines in Special feeds and Labels are grouped by feeds" #~ msgstr "Quan aquesta habiliteu aquesta opció, s'agruparan les capçaleres i etiquetes per canals." -#~ msgid "Title" -#~ msgstr "TÃtol" - #~ msgid "Title or Content" #~ msgstr "TÃtol o contingut" diff --git a/locale/cs_CZ/LC_MESSAGES/messages.mo b/locale/cs_CZ/LC_MESSAGES/messages.mo Binary files differindex b14c8b04c..20c11c375 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 9c038a8c8..fb3b52a6e 100644 --- a/locale/cs_CZ/LC_MESSAGES/messages.po +++ b/locale/cs_CZ/LC_MESSAGES/messages.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-04-04 09:06+0400\n" +"POT-Creation-Date: 2013-04-04 21:31+0400\n" "PO-Revision-Date: 2013-04-03 11:03+0200\n" "Last-Translator: Tomáš Chvátal <tomas.chvatal@gmail.com>\n" "Language-Team: Czech <kde-i18n-doc@kde.org>\n" @@ -103,102 +103,6 @@ msgstr "Uživatel s rozÅ¡ÃÅ™enými pravomocemi" msgid "Administrator" msgstr "Administrátor" -#: db-updater.php:19 -msgid "Your access level is insufficient to run this script." -msgstr "VaÅ¡e pÅ™Ãstupová práva nejsou dostateÄná pro spuÅ¡tÄ›nà skriptu." - -#: db-updater.php:44 -msgid "Database Updater" -msgstr "AktualizaÄnà nástroj databáze" - -#: db-updater.php:87 -msgid "Could not update database" -msgstr "Nelze aktualizovat databázi" - -#: db-updater.php:90 -msgid "Could not find necessary schema file, need version:" -msgstr "Nelze nalézt potÅ™ebný soubor schématu, požadovaná verze:" - -#: db-updater.php:91 -msgid ", found: " -msgstr ", nalezeno: " - -#: db-updater.php:94 -msgid "Tiny Tiny RSS database is up to date." -msgstr "Databáze Tiny Tiny RSS je aktuálnÃ." - -#: 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:648 -#: classes/handler/public.php:736 -#: classes/handler/public.php:818 -msgid "Return to Tiny Tiny RSS" -msgstr "ZpÄ›t do Tiny Tiny RSS" - -#: db-updater.php:102 -msgid "Please backup your database before proceeding." -msgstr "PÅ™ed pokraÄovánÃm prosÃm zazálohujte databázi." - -#: 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 "VaÅ¡e databáze Tiny Tiny RSS potÅ™ebuje aktualizaci na poslednà verzi (<b>%d</b> na <b>%d</b>)." - -#: db-updater.php:118 -msgid "Perform updates" -msgstr "Provést aktualizace" - -#: db-updater.php:123 -msgid "Performing updates..." -msgstr "ProvádÃm aktualizace..." - -#: db-updater.php:129 -#, php-format -msgid "Updating to version %d..." -msgstr "Aktualizuji na verzi %d..." - -#: db-updater.php:144 -msgid "Checking version... " -msgstr "Kontroluji verzi... " - -#: db-updater.php:150 -msgid "OK!" -msgstr "OK" - -#: db-updater.php:152 -msgid "ERROR!" -msgstr "CHYBA" - -#: 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] "DokonÄeno. Provedena <b>%d</b> aktualizace na schéma verze <b>%d</b>." -msgstr[1] "DokonÄeno. Provedeny <b>%d</b> aktualizace na schéma verze <b>%d</b>." -msgstr[2] "DokonÄeno. Provedeno <b>%d</b> aktualizacà na schéma verze <b>%d</b>." - -#: db-updater.php:170 -msgid "Your database schema is from a newer version of Tiny Tiny RSS." -msgstr "Schéma vašà databáze je z novÄ›jšà verze Tiny Tiny RSS." - -#: db-updater.php:172 -#, php-format -msgid "Found schema version: <b>%d</b>, required: <b>%d</b>." -msgstr "Nalezeno schéma verze: <b>%d</b>, vyžadováno: <b>%d</b>." - -#: db-updater.php:174 -msgid "Schema upgrade impossible. Please update Tiny Tiny RSS files to the newer version and continue." -msgstr "Aktualizace schématu nenà možná. Aktualizujte Tiny Tiny RSS na novÄ›jšà verzi a pokraÄujte." - #: errors.php:9 msgid "This program requires XmlHttpRequest to function properly. Your browser doesn't seem to support it." msgstr "Program vyžaduje pro správnou funkci XmlHttpRequest. Váš prohlÞeÄ ji zÅ™ejmÄ› nepodporuje." @@ -249,7 +153,7 @@ msgstr "Test ochrany proti podvratným SQL dotazům (SQL Injection) selhal, zkon #: index.php:135 #: index.php:152 -#: index.php:276 +#: index.php:277 #: prefs.php:103 #: classes/backend.php:5 #: classes/pref/labels.php:296 @@ -257,7 +161,7 @@ msgstr "Test ochrany proti podvratným SQL dotazům (SQL Injection) selhal, zkon #: classes/pref/feeds.php:1331 #: plugins/digest/digest_body.php:63 #: js/feedlist.js:128 -#: js/feedlist.js:436 +#: js/feedlist.js:438 #: js/functions.js:420 #: js/functions.js:758 #: js/functions.js:1194 @@ -278,8 +182,8 @@ msgstr "Test ochrany proti podvratným SQL dotazům (SQL Injection) selhal, zkon #: js/prefs.js:1814 #: js/tt-rss.js:475 #: js/tt-rss.js:492 -#: js/viewfeed.js:772 -#: js/viewfeed.js:1200 +#: js/viewfeed.js:775 +#: js/viewfeed.js:1201 #: plugins/import_export/import_export.js:17 #: plugins/updater/updater.js:17 msgid "Loading, please wait..." @@ -302,13 +206,13 @@ msgid "All Articles" msgstr "VÅ¡echny Älánky" #: index.php:174 -#: include/functions.php:1953 +#: include/functions.php:1955 #: classes/feeds.php:106 msgid "Starred" msgstr "S hvÄ›zdiÄkou" #: index.php:175 -#: include/functions.php:1954 +#: include/functions.php:1956 #: classes/feeds.php:107 msgid "Published" msgstr "Publikováno" @@ -347,9 +251,13 @@ msgstr "Nejprve nejnovÄ›jÅ¡Ã" msgid "Oldest first" msgstr "Nejprve nejstarÅ¡Ã" -#: index.php:191 -#: index.php:240 -#: include/functions.php:1943 +#: index.php:188 +msgid "Title" +msgstr "Název" + +#: index.php:192 +#: index.php:241 +#: include/functions.php:1945 #: classes/feeds.php:111 #: classes/feeds.php:441 #: js/FeedTree.js:128 @@ -358,104 +266,104 @@ msgstr "Nejprve nejstarÅ¡Ã" msgid "Mark as read" msgstr "OznaÄit jako pÅ™eÄtené" -#: index.php:194 +#: index.php:195 msgid "Older than one day" msgstr "Staršà než jeden den" -#: index.php:197 +#: index.php:198 msgid "Older than one week" msgstr "Staršà než jeden týden" -#: index.php:200 +#: index.php:201 msgid "Older than two weeks" msgstr "Staršà než dva týdny" -#: index.php:217 +#: index.php:218 msgid "Communication problem with server." msgstr "Chyba pÅ™i komunikaci se serverem." -#: index.php:225 +#: index.php:226 msgid "New version of Tiny Tiny RSS is available!" msgstr "Je dostupná nová verze Tiny Tiny RSS." -#: index.php:230 +#: index.php:231 msgid "Actions..." msgstr "ÄŒinnosti..." -#: index.php:232 +#: index.php:233 msgid "Preferences..." msgstr "NastavenÃ..." -#: index.php:233 +#: index.php:234 msgid "Search..." msgstr "Hledat..." -#: index.php:234 +#: index.php:235 msgid "Feed actions:" msgstr "ÄŒinnosti kanálů:" -#: index.php:235 +#: index.php:236 #: classes/handler/public.php:578 msgid "Subscribe to feed..." msgstr "PÅ™ihlásit se k odbÄ›ru..." -#: index.php:236 +#: index.php:237 msgid "Edit this feed..." msgstr "Upravit kanál..." -#: index.php:237 +#: index.php:238 msgid "Rescore feed" msgstr "PÅ™ehodnotit kanál" -#: index.php:238 +#: index.php:239 #: classes/pref/feeds.php:717 #: classes/pref/feeds.php:1283 #: js/PrefFeedTree.js:73 msgid "Unsubscribe" msgstr "ZruÅ¡it odbÄ›r" -#: index.php:239 +#: index.php:240 msgid "All feeds:" msgstr "VÅ¡echny kanály:" -#: index.php:241 +#: index.php:242 msgid "(Un)hide read feeds" msgstr "Zobrazit/Skrýt pÅ™eÄtené kanály" -#: index.php:242 +#: index.php:243 msgid "Other actions:" msgstr "Ostatnà Äinnosti:" -#: index.php:244 +#: index.php:245 msgid "Switch to digest..." msgstr "PÅ™epnout na souhrn..." -#: index.php:246 +#: index.php:247 msgid "Show tag cloud..." msgstr "Zobrazit seznam znaÄek..." -#: index.php:247 -#: include/functions.php:1929 +#: index.php:248 +#: include/functions.php:1931 msgid "Toggle widescreen mode" msgstr "PÅ™epnout Å¡irokoúhlý režim" -#: index.php:248 +#: index.php:249 msgid "Select by tags..." msgstr "Vybrat podle znaÄek..." -#: index.php:249 +#: index.php:250 msgid "Create label..." msgstr "VytvoÅ™it Å¡tÃtek..." -#: index.php:250 +#: index.php:251 msgid "Create filter..." msgstr "VytvoÅ™it filtr..." -#: index.php:251 +#: index.php:252 msgid "Keyboard shortcuts help" msgstr "NápovÄ›da ke klávesovým zkratkám" -#: index.php:260 +#: index.php:261 #: plugins/digest/digest_body.php:77 #: plugins/mobile/mobile-functions.php:62 #: plugins/mobile/mobile-functions.php:237 @@ -464,8 +372,8 @@ msgstr "Odhlásit se" #: prefs.php:36 #: prefs.php:121 -#: include/functions.php:1956 -#: classes/pref/prefs.php:428 +#: include/functions.php:1958 +#: classes/pref/prefs.php:444 msgid "Preferences" msgstr "NastavenÃ" @@ -490,8 +398,8 @@ msgid "Filters" msgstr "Filtry" #: prefs.php:130 -#: include/functions.php:1146 -#: include/functions.php:1782 +#: include/functions.php:1148 +#: include/functions.php:1784 #: classes/pref/labels.php:90 #: plugins/mobile/mobile-functions.php:198 msgid "Labels" @@ -510,6 +418,24 @@ msgstr "VytvoÅ™it nový úÄet" msgid "New user registrations are administratively disabled." msgstr "Registrace nových uživatelů jsou zakázány správcem." +#: 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:648 +#: classes/handler/public.php:736 +#: classes/handler/public.php:818 +#: classes/handler/public.php:893 +#: classes/handler/public.php:907 +#: classes/handler/public.php:914 +#: classes/handler/public.php:939 +msgid "Return to Tiny Tiny RSS" +msgstr "ZpÄ›t do Tiny Tiny RSS" + #: 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 "VaÅ¡e doÄasné heslo bude odesláno na zadaný e-mail. ÚÄet, který se do 24 hodin od odeslánà doÄasného hesla nepÅ™ihlásÃ, bude smazán." @@ -556,15 +482,15 @@ msgstr "ÚÄet byl úspěšnÄ› vytvoÅ™en." msgid "New user registrations are currently closed." msgstr "Registrace nových uživatelů nynà nejsou povoleny." -#: update.php:55 +#: update.php:56 msgid "Tiny Tiny RSS data update script." msgstr "Skript aktualizace dat Tiny Tiny RSS." #: include/digest.php:109 -#: include/functions.php:1155 -#: include/functions.php:1683 -#: include/functions.php:1768 -#: include/functions.php:1790 +#: include/functions.php:1157 +#: include/functions.php:1685 +#: include/functions.php:1770 +#: include/functions.php:1792 #: classes/opml.php:416 #: classes/pref/feeds.php:222 msgid "Uncategorized" @@ -582,300 +508,300 @@ msgstr[2] "%d archivovaných Älánků" msgid "No feeds found." msgstr "Nenalezeny žádné kanály." -#: include/functions.php:1144 -#: include/functions.php:1780 +#: include/functions.php:1146 +#: include/functions.php:1782 #: plugins/mobile/mobile-functions.php:171 msgid "Special" msgstr "SpeciálnÃ" -#: include/functions.php:1632 -#: classes/feeds.php:1101 +#: include/functions.php:1634 +#: classes/feeds.php:1104 #: classes/pref/filters.php:427 msgid "All feeds" msgstr "VÅ¡echny kanály" -#: include/functions.php:1833 +#: include/functions.php:1835 msgid "Starred articles" msgstr "ÄŒlánky s hvÄ›zdiÄkou" -#: include/functions.php:1835 +#: include/functions.php:1837 msgid "Published articles" msgstr "Publikované Älánky" -#: include/functions.php:1837 +#: include/functions.php:1839 msgid "Fresh articles" msgstr "Nové Älánky" -#: include/functions.php:1839 -#: include/functions.php:1951 +#: include/functions.php:1841 +#: include/functions.php:1953 msgid "All articles" msgstr "VÅ¡echny Älánky" -#: include/functions.php:1841 +#: include/functions.php:1843 msgid "Archived articles" msgstr "Archivované Älánky" -#: include/functions.php:1843 +#: include/functions.php:1845 msgid "Recently read" msgstr "Nedávno pÅ™eÄtené" -#: include/functions.php:1906 +#: include/functions.php:1908 msgid "Navigation" msgstr "Navigace" -#: include/functions.php:1907 +#: include/functions.php:1909 msgid "Open next feed" msgstr "OtevÅ™Ãt následujÃcà kanál" -#: include/functions.php:1908 +#: include/functions.php:1910 msgid "Open previous feed" msgstr "OtevÅ™Ãt pÅ™edchozà kanál" -#: include/functions.php:1909 +#: include/functions.php:1911 msgid "Open next article" msgstr "OtevÅ™Ãt následujÃcà Älánek" -#: include/functions.php:1910 +#: include/functions.php:1912 msgid "Open previous article" msgstr "OtevÅ™Ãt pÅ™edchozà Älánek" -#: include/functions.php:1911 +#: include/functions.php:1913 msgid "Open next article (don't scroll long articles)" msgstr "OtevÅ™Ãt následujÃcà Älánek (neposouvat dlouhé Älánky)" -#: include/functions.php:1912 +#: include/functions.php:1914 msgid "Open previous article (don't scroll long articles)" msgstr "OtevÅ™Ãt pÅ™edchozà Älánek (neposouvat dlouhé Älánky)" -#: include/functions.php:1913 +#: include/functions.php:1915 msgid "Show search dialog" msgstr "Zobrazit dialog hledánÃ" -#: include/functions.php:1914 +#: include/functions.php:1916 msgid "Article" msgstr "ÄŒlánek" -#: include/functions.php:1915 +#: include/functions.php:1917 msgid "Toggle starred" msgstr "PÅ™epnout hvÄ›zdiÄku" -#: include/functions.php:1916 -#: js/viewfeed.js:1863 +#: include/functions.php:1918 +#: js/viewfeed.js:1872 msgid "Toggle published" msgstr "PÅ™epnout publikováno" -#: include/functions.php:1917 -#: js/viewfeed.js:1841 +#: include/functions.php:1919 +#: js/viewfeed.js:1850 msgid "Toggle unread" msgstr "PÅ™epnout pÅ™eÄteno" -#: include/functions.php:1918 +#: include/functions.php:1920 msgid "Edit tags" msgstr "Upravit znaÄky" -#: include/functions.php:1919 +#: include/functions.php:1921 msgid "Dismiss selected" msgstr "" -#: include/functions.php:1920 +#: include/functions.php:1922 msgid "Dismiss read" msgstr "" -#: include/functions.php:1921 +#: include/functions.php:1923 msgid "Open in new window" msgstr "OtevÅ™Ãt v novém oknÄ›" -#: include/functions.php:1922 -#: js/viewfeed.js:1882 +#: include/functions.php:1924 +#: js/viewfeed.js:1891 msgid "Mark below as read" msgstr "OznaÄit nÞe jako pÅ™eÄtené" -#: include/functions.php:1923 -#: js/viewfeed.js:1876 +#: include/functions.php:1925 +#: js/viewfeed.js:1885 msgid "Mark above as read" msgstr "OznaÄit výše jako pÅ™eÄtené" -#: include/functions.php:1924 +#: include/functions.php:1926 msgid "Scroll down" msgstr "Posunout dolů" -#: include/functions.php:1925 +#: include/functions.php:1927 msgid "Scroll up" msgstr "Posunout nahoru" -#: include/functions.php:1926 +#: include/functions.php:1928 msgid "Select article under cursor" msgstr "Vybrat Älánek pod kurzorem" -#: include/functions.php:1927 +#: include/functions.php:1929 msgid "Email article" msgstr "Odeslat Älánek e-mailem" -#: include/functions.php:1928 +#: include/functions.php:1930 msgid "Close/collapse article" msgstr "ZavÅ™Ãt/sbalit Älánek" -#: include/functions.php:1930 +#: include/functions.php:1932 #: plugins/embed_original/init.php:33 msgid "Toggle embed original" msgstr "PÅ™epnout vložený originál" -#: include/functions.php:1931 +#: include/functions.php:1933 msgid "Article selection" msgstr "VýbÄ›r Älánků" -#: include/functions.php:1932 +#: include/functions.php:1934 msgid "Select all articles" msgstr "Vybrat vÅ¡echny Älánky" -#: include/functions.php:1933 +#: include/functions.php:1935 msgid "Select unread" msgstr "Vybrat nepÅ™eÄtené" -#: include/functions.php:1934 +#: include/functions.php:1936 msgid "Select starred" msgstr "Vybrat s hvÄ›zdiÄkou" -#: include/functions.php:1935 +#: include/functions.php:1937 msgid "Select published" msgstr "Vybrat publikované" -#: include/functions.php:1936 +#: include/functions.php:1938 msgid "Invert selection" msgstr "Obrátit výbÄ›r" -#: include/functions.php:1937 +#: include/functions.php:1939 msgid "Deselect everything" msgstr "ZruÅ¡it výbÄ›r" -#: include/functions.php:1938 +#: include/functions.php:1940 #: classes/pref/feeds.php:521 #: classes/pref/feeds.php:754 msgid "Feed" msgstr "Kanál" -#: include/functions.php:1939 +#: include/functions.php:1941 msgid "Refresh current feed" msgstr "Obnovit souÄasný kanál" -#: include/functions.php:1940 +#: include/functions.php:1942 msgid "Un/hide read feeds" msgstr "Zobrazit/Skrýt pÅ™eÄtené kanály" -#: include/functions.php:1941 +#: include/functions.php:1943 #: classes/pref/feeds.php:1275 msgid "Subscribe to feed" msgstr "PÅ™ihlásit se k odbÄ›ru" -#: include/functions.php:1942 +#: include/functions.php:1944 #: js/FeedTree.js:135 #: js/PrefFeedTree.js:67 msgid "Edit feed" msgstr "Upravit kanál" -#: include/functions.php:1944 +#: include/functions.php:1946 msgid "Reverse headlines" msgstr "Obrácené Å™azenà nadpisů " -#: include/functions.php:1945 +#: include/functions.php:1947 msgid "Debug feed update" msgstr "Ladit aktualizaci kanálů" -#: include/functions.php:1946 +#: include/functions.php:1948 #: js/FeedTree.js:178 msgid "Mark all feeds as read" msgstr "OznaÄit vÅ¡echny kanály za pÅ™eÄtené" -#: include/functions.php:1947 +#: include/functions.php:1949 msgid "Un/collapse current category" msgstr "Rozbalit/sbalit aktuálnà kategorii" -#: include/functions.php:1948 +#: include/functions.php:1950 msgid "Toggle combined mode" msgstr "PÅ™epnout kombinovaný režim" -#: include/functions.php:1949 +#: include/functions.php:1951 msgid "Toggle auto expand in combined mode" msgstr "PÅ™epnout automatické rozbalenà kombinovaném režimu" -#: include/functions.php:1950 +#: include/functions.php:1952 msgid "Go to" msgstr "PÅ™ejÃt na" -#: include/functions.php:1952 +#: include/functions.php:1954 msgid "Fresh" msgstr "Nové" -#: include/functions.php:1955 +#: include/functions.php:1957 #: js/tt-rss.js:431 #: js/tt-rss.js:584 msgid "Tag cloud" msgstr "Seznam znaÄek" -#: include/functions.php:1957 +#: include/functions.php:1959 msgid "Other" msgstr "OstatnÃ" -#: include/functions.php:1958 +#: include/functions.php:1960 #: classes/pref/labels.php:281 msgid "Create label" msgstr "VytvoÅ™it Å¡tÃtek" -#: include/functions.php:1959 +#: include/functions.php:1961 #: classes/pref/filters.php:654 msgid "Create filter" msgstr "VytvoÅ™it filtr" -#: include/functions.php:1960 +#: include/functions.php:1962 msgid "Un/collapse sidebar" msgstr "Rozbalit/sbalit postrannà liÅ¡tu" -#: include/functions.php:1961 +#: include/functions.php:1963 msgid "Show help dialog" msgstr "Zobrazit nápovÄ›du" -#: include/functions.php:2446 +#: include/functions.php:2471 #, php-format msgid "Search results: %s" msgstr "Výsledky hledánÃ: %s" -#: include/functions.php:2937 -#: js/viewfeed.js:1969 +#: include/functions.php:2962 +#: js/viewfeed.js:1978 msgid "Click to play" msgstr "KliknÄ›te pro pÅ™ehránÃ" -#: include/functions.php:2938 -#: js/viewfeed.js:1968 +#: include/functions.php:2963 +#: js/viewfeed.js:1977 msgid "Play" msgstr "PÅ™ehrát" -#: include/functions.php:3055 +#: include/functions.php:3080 msgid " - " msgstr " - " -#: include/functions.php:3077 -#: include/functions.php:3371 +#: include/functions.php:3102 +#: include/functions.php:3396 #: classes/article.php:281 msgid "no tags" msgstr "žádné znaÄky" -#: include/functions.php:3087 +#: include/functions.php:3112 #: classes/feeds.php:686 msgid "Edit tags for this article" msgstr "Upravit znaÄky pro Älánek" -#: include/functions.php:3116 +#: include/functions.php:3141 #: classes/feeds.php:642 msgid "Originally from:" msgstr "PůvodnÄ› z:" -#: include/functions.php:3129 +#: include/functions.php:3154 #: classes/feeds.php:655 #: classes/pref/feeds.php:540 msgid "Feed URL" msgstr "URL kanálu" -#: include/functions.php:3160 +#: include/functions.php:3185 #: classes/dlg.php:37 #: classes/dlg.php:60 #: classes/dlg.php:93 @@ -887,7 +813,7 @@ msgstr "URL kanálu" #: classes/backend.php:105 #: classes/pref/users.php:99 #: classes/pref/filters.php:147 -#: classes/pref/prefs.php:1059 +#: classes/pref/prefs.php:1105 #: classes/pref/feeds.php:1588 #: classes/pref/feeds.php:1660 #: plugins/import_export/init.php:406 @@ -898,15 +824,15 @@ msgstr "URL kanálu" msgid "Close this window" msgstr "ZavÅ™Ãt toto okno" -#: include/functions.php:3396 +#: include/functions.php:3421 msgid "(edit note)" msgstr "(upravit poznámku)" -#: include/functions.php:3631 +#: include/functions.php:3656 msgid "unknown type" msgstr "neznámý typ" -#: include/functions.php:3687 +#: include/functions.php:3712 msgid "Attachments" msgstr "PÅ™Ãlohy" @@ -929,6 +855,7 @@ msgstr "ZapomnÄ›l jsem heslo" #: include/login_form.php:201 #: classes/handler/public.php:489 +#: classes/pref/prefs.php:552 msgid "Language:" msgstr "Jazyk:" @@ -939,7 +866,7 @@ msgstr "Profil:" #: include/login_form.php:213 #: classes/handler/public.php:233 #: classes/rpc.php:64 -#: classes/pref/prefs.php:995 +#: classes/pref/prefs.php:1041 msgid "Default profile" msgstr "Výchozà profil" @@ -957,7 +884,7 @@ msgstr "Zapamatovat" msgid "Log in" msgstr "PÅ™ihlásit" -#: include/sessions.php:58 +#: include/sessions.php:62 msgid "Session failed to validate (incorrect IP)" msgstr "NezdaÅ™ilo se ověřit sezenà (neplatné IP)" @@ -973,7 +900,7 @@ msgstr "ZnaÄky Älánku (oddÄ›lené Äárkami):" #: classes/pref/users.php:176 #: classes/pref/labels.php:79 #: classes/pref/filters.php:405 -#: classes/pref/prefs.php:941 +#: classes/pref/prefs.php:987 #: classes/pref/feeds.php:733 #: classes/pref/feeds.php:881 #: plugins/nsfw/init.php:86 @@ -985,16 +912,16 @@ msgstr "Uložit" #: classes/article.php:206 #: classes/handler/public.php:460 #: classes/handler/public.php:502 -#: classes/feeds.php:1028 -#: classes/feeds.php:1080 -#: classes/feeds.php:1140 +#: classes/feeds.php:1031 +#: classes/feeds.php:1083 +#: classes/feeds.php:1143 #: 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:943 +#: classes/pref/prefs.php:989 #: classes/pref/feeds.php:734 #: classes/pref/feeds.php:884 #: classes/pref/feeds.php:1797 @@ -1118,6 +1045,18 @@ msgstr "JÃt zpÄ›t" msgid "Sorry, login and email combination not found." msgstr "Lituji, kombinace e-mailové adresy a pÅ™ihlaÅ¡ovacÃho jména nenalezena." +#: classes/handler/public.php:842 +msgid "Your access level is insufficient to run this script." +msgstr "VaÅ¡e pÅ™Ãstupová práva nejsou dostateÄná pro spuÅ¡tÄ›nà skriptu." + +#: classes/handler/public.php:866 +msgid "Database Updater" +msgstr "AktualizaÄnà nástroj databáze" + +#: classes/handler/public.php:931 +msgid "Perform updates" +msgstr "Provést aktualizace" + #: 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 "Pokud jste importovali Å¡tÃtky, Äi filtry, budete možná muset znovu naÄÃst nastavenà pro zobrazenà nových dat." @@ -1217,7 +1156,7 @@ msgstr "Vybrat:" #: classes/pref/filters.php:648 #: classes/pref/filters.php:737 #: classes/pref/filters.php:764 -#: classes/pref/prefs.php:955 +#: classes/pref/prefs.php:1001 #: classes/pref/feeds.php:1266 #: classes/pref/feeds.php:1536 #: classes/pref/feeds.php:1606 @@ -1237,7 +1176,7 @@ msgstr "Invertovat" #: classes/pref/filters.php:650 #: classes/pref/filters.php:739 #: classes/pref/filters.php:766 -#: classes/pref/prefs.php:957 +#: classes/pref/prefs.php:1003 #: classes/pref/feeds.php:1268 #: classes/pref/feeds.php:1538 #: classes/pref/feeds.php:1608 @@ -1327,44 +1266,44 @@ msgid "No articles found to display." msgstr "Nenalezeny žádné Älánky ke zobrazenÃ." #: classes/feeds.php:759 -#: classes/feeds.php:923 +#: classes/feeds.php:926 #, php-format msgid "Feeds last updated at %s" msgstr "Kanál naposledy aktualizován v %s" #: classes/feeds.php:769 -#: classes/feeds.php:933 +#: classes/feeds.php:936 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:913 +#: classes/feeds.php:916 msgid "No feed selected." msgstr "Nenà vybrán žádný kanál." -#: classes/feeds.php:966 -#: classes/feeds.php:974 +#: classes/feeds.php:969 +#: classes/feeds.php:977 msgid "Feed or site URL" msgstr "Kanál nebo URL stránky" -#: classes/feeds.php:980 +#: classes/feeds.php:983 #: classes/pref/feeds.php:560 #: classes/pref/feeds.php:782 #: classes/pref/feeds.php:1761 msgid "Place in category:" msgstr "UmÃstit v kategorii:" -#: classes/feeds.php:988 +#: classes/feeds.php:991 msgid "Available feeds" msgstr "Dostupné kanály" -#: classes/feeds.php:1000 +#: classes/feeds.php:1003 #: 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/feeds.php:1007 #: classes/pref/users.php:402 #: classes/pref/feeds.php:596 #: classes/pref/feeds.php:822 @@ -1372,30 +1311,30 @@ msgstr "OvěřenÃ" msgid "Login" msgstr "PÅ™ihlášenÃ" -#: classes/feeds.php:1007 -#: classes/pref/prefs.php:253 +#: classes/feeds.php:1010 +#: classes/pref/prefs.php:269 #: classes/pref/feeds.php:602 #: classes/pref/feeds.php:828 #: classes/pref/feeds.php:1778 msgid "Password" msgstr "Heslo" -#: classes/feeds.php:1017 +#: classes/feeds.php:1020 msgid "This feed requires authentication." msgstr "Tento kanál vyžaduje ověřenÃ." -#: classes/feeds.php:1022 -#: classes/feeds.php:1078 +#: classes/feeds.php:1025 +#: classes/feeds.php:1081 #: classes/pref/feeds.php:1796 msgid "Subscribe" msgstr "OdebÃrat" -#: classes/feeds.php:1025 +#: classes/feeds.php:1028 msgid "More feeds" msgstr "VÃce kanálů" -#: classes/feeds.php:1048 -#: classes/feeds.php:1139 +#: classes/feeds.php:1051 +#: classes/feeds.php:1142 #: classes/pref/users.php:332 #: classes/pref/filters.php:641 #: classes/pref/feeds.php:1259 @@ -1403,19 +1342,19 @@ msgstr "VÃce kanálů" msgid "Search" msgstr "Hledat" -#: classes/feeds.php:1052 +#: classes/feeds.php:1055 msgid "Popular feeds" msgstr "OblÃbené kanály" -#: classes/feeds.php:1053 +#: classes/feeds.php:1056 msgid "Feed archive" msgstr "ArchÃv kanálů" -#: classes/feeds.php:1056 +#: classes/feeds.php:1059 msgid "limit:" msgstr "omezenÃ:" -#: classes/feeds.php:1079 +#: classes/feeds.php:1082 #: classes/pref/users.php:358 #: classes/pref/labels.php:284 #: classes/pref/filters.php:398 @@ -1425,15 +1364,15 @@ msgstr "omezenÃ:" msgid "Remove" msgstr "Odstranit" -#: classes/feeds.php:1090 +#: classes/feeds.php:1093 msgid "Look for" msgstr "Hledat" -#: classes/feeds.php:1098 +#: classes/feeds.php:1101 msgid "Limit search to:" msgstr "Omezit hledánà na:" -#: classes/feeds.php:1114 +#: classes/feeds.php:1117 msgid "This feed" msgstr "Tento kanál" @@ -1593,7 +1532,7 @@ msgstr "[tt-rss] Oznámenà o zmÄ›nÄ› hesla" #: classes/pref/filters.php:645 #: classes/pref/filters.php:734 #: classes/pref/filters.php:761 -#: classes/pref/prefs.php:952 +#: classes/pref/prefs.php:998 #: classes/pref/feeds.php:1263 #: classes/pref/feeds.php:1533 #: classes/pref/feeds.php:1603 @@ -2003,212 +1942,217 @@ msgstr "Zadaná hesla nejsou shodná." msgid "Function not supported by authentication module." msgstr "Funkce nenà podporována modulem ověřenÃ." -#: classes/pref/prefs.php:120 +#: classes/pref/prefs.php:135 msgid "The configuration was saved." msgstr "Nastavenà bylo uloženo." -#: classes/pref/prefs.php:134 +#: classes/pref/prefs.php:150 #, php-format msgid "Unknown option: %s" msgstr "Neznámá možnost: %s" -#: classes/pref/prefs.php:148 +#: classes/pref/prefs.php:164 msgid "Your personal data has been saved." msgstr "VaÅ¡e osobnà data byla uložena." -#: classes/pref/prefs.php:188 +#: classes/pref/prefs.php:204 msgid "Personal data / Authentication" msgstr "Osobnà data / ověřenÃ" -#: classes/pref/prefs.php:208 +#: classes/pref/prefs.php:224 msgid "Personal data" msgstr "Osobnà informace" -#: classes/pref/prefs.php:218 +#: classes/pref/prefs.php:234 msgid "Full name" msgstr "Celé jméno" -#: classes/pref/prefs.php:222 +#: classes/pref/prefs.php:238 msgid "E-mail" msgstr "E-mail" -#: classes/pref/prefs.php:228 +#: classes/pref/prefs.php:244 msgid "Access level" msgstr "Úroveň pÅ™Ãstupu" -#: classes/pref/prefs.php:238 +#: classes/pref/prefs.php:254 msgid "Save data" msgstr "Uložit data" -#: classes/pref/prefs.php:260 +#: classes/pref/prefs.php:276 msgid "Your password is at default value, please change it." msgstr "VaÅ¡e heslo má výchozà hodnotu, změňte jej prosÃm." -#: classes/pref/prefs.php:287 +#: classes/pref/prefs.php:303 msgid "Changing your current password will disable OTP." msgstr "ZmÄ›nÄ›na hesla zakáže heslo na jedno použitÃ." -#: classes/pref/prefs.php:292 +#: classes/pref/prefs.php:308 msgid "Old password" msgstr "Staré heslo" -#: classes/pref/prefs.php:295 +#: classes/pref/prefs.php:311 msgid "New password" msgstr "Nové heslo" -#: classes/pref/prefs.php:300 +#: classes/pref/prefs.php:316 msgid "Confirm password" msgstr "Potvrdit heslo" -#: classes/pref/prefs.php:310 +#: classes/pref/prefs.php:326 msgid "Change password" msgstr "ZmÄ›nit heslo" -#: classes/pref/prefs.php:316 +#: classes/pref/prefs.php:332 msgid "One time passwords / Authenticator" msgstr "Heslo na jedno použità / OvěřenÃ" -#: classes/pref/prefs.php:320 +#: classes/pref/prefs.php:336 msgid "One time passwords are currently enabled. Enter your current password below to disable." msgstr "Hesla na jedno použità jsou povolena. Zadejte své souÄasné heslo pro zakázánÃ." -#: classes/pref/prefs.php:345 -#: classes/pref/prefs.php:396 +#: classes/pref/prefs.php:361 +#: classes/pref/prefs.php:412 msgid "Enter your password" msgstr "Zadejte své heslo" -#: classes/pref/prefs.php:356 +#: classes/pref/prefs.php:372 msgid "Disable OTP" msgstr "Zakázat OTP" -#: classes/pref/prefs.php:362 +#: classes/pref/prefs.php:378 msgid "You will need a compatible Authenticator to use this. Changing your password would automatically disable OTP." msgstr "Pro použità potÅ™ebujete kompatibilnà nástroj ověřenÃ. ZmÄ›nou hesla automaticky zakážete OTP." -#: classes/pref/prefs.php:364 +#: classes/pref/prefs.php:380 msgid "Scan the following code by the Authenticator application:" msgstr "NaÄtÄ›te následujÃcà kód ověřujÃcà aplikacÃ:" -#: classes/pref/prefs.php:405 +#: classes/pref/prefs.php:421 msgid "I have scanned the code and would like to enable OTP" msgstr "NaÄetl jsem kód do aplikace a chtÄ›l bych povolit OTP" -#: classes/pref/prefs.php:413 +#: classes/pref/prefs.php:429 msgid "Enable OTP" msgstr "Povolit OTP" -#: classes/pref/prefs.php:451 +#: classes/pref/prefs.php:475 msgid "Some preferences are only available in default profile." msgstr "NÄ›která nastavenà jsou dostupná pouze ve výchozÃm profilu." -#: classes/pref/prefs.php:545 +#: classes/pref/prefs.php:585 msgid "Customize" msgstr "PÅ™izpůsobit" -#: classes/pref/prefs.php:605 +#: classes/pref/prefs.php:645 msgid "Register" msgstr "Registrovat" -#: classes/pref/prefs.php:609 +#: classes/pref/prefs.php:649 msgid "Clear" msgstr "VyÄistit" -#: classes/pref/prefs.php:615 +#: classes/pref/prefs.php:655 #, php-format msgid "Current server time: %s (UTC)" msgstr "Aktuálnà Äas na serveru: %s (UTC)" -#: classes/pref/prefs.php:648 +#: classes/pref/prefs.php:688 msgid "Save configuration" msgstr "Uložit nastavenÃ" -#: classes/pref/prefs.php:651 +#: classes/pref/prefs.php:692 +#, fuzzy +msgid "Save and exit preferences" +msgstr "Opustit nastavenÃ" + +#: classes/pref/prefs.php:697 msgid "Manage profiles" msgstr "Spravovat profily" -#: classes/pref/prefs.php:654 +#: classes/pref/prefs.php:700 msgid "Reset to defaults" msgstr "Obnovit výchozà hodnoty" -#: classes/pref/prefs.php:678 -#: classes/pref/prefs.php:680 +#: classes/pref/prefs.php:724 +#: classes/pref/prefs.php:726 msgid "Plugins" msgstr "Moduly" -#: classes/pref/prefs.php:682 +#: classes/pref/prefs.php:728 msgid "You will need to reload Tiny Tiny RSS for plugin changes to take effect." msgstr "Pro provedenà zmÄ›n v modulech musÃte znovu naÄÃst Tiny Tiny RSS." -#: classes/pref/prefs.php:684 +#: classes/pref/prefs.php:730 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 "Stáhnout vÃce modulů na <a class=\"visibleLink\" target=\"_blank\" href=\"http://tt-rss.org/forum/viewforum.php?f=22\">foréch</a>, nebo <a target=\"_blank\" class=\"visibleLink\" href=\"http://tt-rss.org/wiki/Plugins\">wiki</a> tt-rss.org." -#: classes/pref/prefs.php:710 +#: classes/pref/prefs.php:756 msgid "System plugins" msgstr "Systémové moduly" -#: classes/pref/prefs.php:714 -#: classes/pref/prefs.php:768 +#: classes/pref/prefs.php:760 +#: classes/pref/prefs.php:814 msgid "Plugin" msgstr "Modul" -#: classes/pref/prefs.php:715 -#: classes/pref/prefs.php:769 +#: classes/pref/prefs.php:761 +#: classes/pref/prefs.php:815 msgid "Description" msgstr "Popis" -#: classes/pref/prefs.php:716 -#: classes/pref/prefs.php:770 +#: classes/pref/prefs.php:762 +#: classes/pref/prefs.php:816 msgid "Version" msgstr "Verze" -#: classes/pref/prefs.php:717 -#: classes/pref/prefs.php:771 +#: classes/pref/prefs.php:763 +#: classes/pref/prefs.php:817 msgid "Author" msgstr "Autor" -#: classes/pref/prefs.php:746 -#: classes/pref/prefs.php:803 +#: classes/pref/prefs.php:792 +#: classes/pref/prefs.php:849 msgid "more info" msgstr "vÃce informacÃ" -#: classes/pref/prefs.php:755 -#: classes/pref/prefs.php:812 +#: classes/pref/prefs.php:801 +#: classes/pref/prefs.php:858 msgid "Clear data" msgstr "Smazat data" -#: classes/pref/prefs.php:764 +#: classes/pref/prefs.php:810 msgid "User plugins" msgstr "Uživatelské moduly" -#: classes/pref/prefs.php:827 +#: classes/pref/prefs.php:873 msgid "Enable selected plugins" msgstr "Povolit vybrané moduly" -#: classes/pref/prefs.php:882 -#: classes/pref/prefs.php:900 +#: classes/pref/prefs.php:928 +#: classes/pref/prefs.php:946 msgid "Incorrect password" msgstr "Å patné heslo" -#: classes/pref/prefs.php:926 +#: classes/pref/prefs.php:972 #, 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 "Můžete zmÄ›nit bary, font a rozvrženà vybraného motivu s vlastnÃm nastavenÃm CSS. <a target=\"_blank\" class=\"visibleLink\" href=\"%s\">Tento soubor</a> vám posloužà jako základ." -#: classes/pref/prefs.php:966 +#: classes/pref/prefs.php:1012 msgid "Create profile" msgstr "VytvoÅ™it profil" -#: classes/pref/prefs.php:989 -#: classes/pref/prefs.php:1019 +#: classes/pref/prefs.php:1035 +#: classes/pref/prefs.php:1065 msgid "(active)" msgstr "(aktivnÃ)" -#: classes/pref/prefs.php:1053 +#: classes/pref/prefs.php:1099 msgid "Remove selected profiles" msgstr "Odstranit vybrané profily" -#: classes/pref/prefs.php:1055 +#: classes/pref/prefs.php:1101 msgid "Activate profile" msgstr "Aktivovat profil" @@ -2713,15 +2657,15 @@ msgstr "VÅ¡e dokonÄeno. %d z %d Älánků importováno." msgid "The document has incorrect format." msgstr "Dokument nemá platný formát." -#: plugins/googlereaderimport/init.php:326 +#: plugins/googlereaderimport/init.php:328 msgid "Import starred or shared items from Google Reader" msgstr "Importovat sdÃlené a nebo s hvÄ›zdiÄkou z Google Readeru" -#: plugins/googlereaderimport/init.php:330 +#: plugins/googlereaderimport/init.php:332 msgid "Paste your starred.json or shared.json into the form below." msgstr "" -#: plugins/googlereaderimport/init.php:344 +#: plugins/googlereaderimport/init.php:346 msgid "Import my Starred items" msgstr "Importovat mé položky s hvÄ›zdiÄkou" @@ -2815,21 +2759,21 @@ msgstr "PÅ™ipraveno k aktualizaci." msgid "Start update" msgstr "Zahájit aktualizaci" -#: js/feedlist.js:392 -#: js/feedlist.js:420 +#: js/feedlist.js:394 +#: js/feedlist.js:422 #: plugins/digest/digest.js:26 msgid "Mark all articles in %s as read?" msgstr "OznaÄit vÅ¡echny Älánky v %s jako pÅ™eÄtené?" -#: js/feedlist.js:411 +#: js/feedlist.js:413 msgid "Mark all articles in %s older than 1 day as read?" msgstr "OznaÄit vÅ¡echny Älánky staršà než 1 den v %s jako pÅ™eÄtené?" -#: js/feedlist.js:414 +#: js/feedlist.js:416 msgid "Mark all articles in %s older than 1 week as read?" msgstr "OznaÄit vÅ¡echny Älánky staršà než 1 týden v %s jako pÅ™eÄtené?" -#: js/feedlist.js:417 +#: js/feedlist.js:419 msgid "Mark all articles in %s older than 2 weeks as read?" msgstr "OznaÄit vÅ¡echny Älánky staršà než 2 týdny v %s jako pÅ™eÄtené?" @@ -3343,147 +3287,147 @@ msgstr "PÅ™ehodnocuji Älánky..." msgid "New version available!" msgstr "Je dostupná nová verze." -#: js/viewfeed.js:104 +#: js/viewfeed.js:106 msgid "Cancel search" msgstr "ZruÅ¡it hledánÃ" -#: js/viewfeed.js:438 +#: js/viewfeed.js:441 #: plugins/digest/digest.js:258 #: plugins/digest/digest.js:714 msgid "Unstar article" msgstr "Odebrat Älánku hvÄ›zdiÄku" -#: js/viewfeed.js:443 +#: js/viewfeed.js:446 #: plugins/digest/digest.js:260 #: plugins/digest/digest.js:718 msgid "Star article" msgstr "PÅ™idat Älánku hvÄ›zdiÄku" -#: js/viewfeed.js:476 +#: js/viewfeed.js:479 #: plugins/digest/digest.js:263 #: plugins/digest/digest.js:749 msgid "Unpublish article" msgstr "ZruÅ¡it publikovánà Älánku" -#: js/viewfeed.js:481 +#: js/viewfeed.js:484 #: plugins/digest/digest.js:265 #: plugins/digest/digest.js:754 msgid "Publish article" msgstr "Publikovat Älánek" -#: js/viewfeed.js:677 -#: js/viewfeed.js:705 -#: js/viewfeed.js:732 -#: js/viewfeed.js:795 -#: js/viewfeed.js:829 -#: js/viewfeed.js:949 -#: js/viewfeed.js:992 -#: js/viewfeed.js:1045 -#: js/viewfeed.js:2051 +#: js/viewfeed.js:680 +#: js/viewfeed.js:708 +#: js/viewfeed.js:735 +#: js/viewfeed.js:798 +#: js/viewfeed.js:832 +#: js/viewfeed.js:952 +#: js/viewfeed.js:995 +#: js/viewfeed.js:1048 +#: js/viewfeed.js:2060 #: 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:957 +#: js/viewfeed.js:960 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:959 +#: js/viewfeed.js:962 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:1001 +#: js/viewfeed.js:1004 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:1004 +#: js/viewfeed.js:1007 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:1006 +#: js/viewfeed.js:1009 msgid "Please note that unstarred articles might get purged on next feed update." msgstr "VezmÄ›te na vÄ›domÃ, že Älánky bez hvÄ›zdiÄky můžou být odstranÄ›ny pÅ™i následujÃcà aktualizaci kanálu." -#: js/viewfeed.js:1051 +#: js/viewfeed.js:1054 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:1075 +#: js/viewfeed.js:1078 msgid "Edit article Tags" msgstr "Upravit znaÄky Älánku" -#: js/viewfeed.js:1081 +#: js/viewfeed.js:1084 msgid "Saving article tags..." msgstr "Ukládám znaÄky Älánku..." -#: js/viewfeed.js:1278 +#: js/viewfeed.js:1287 msgid "No article is selected." msgstr "Nenà vybrán žádný Älánek." -#: js/viewfeed.js:1313 +#: js/viewfeed.js:1322 msgid "No articles found to mark" msgstr "Nenalezeny žádné Älánky k oznaÄenÃ" -#: js/viewfeed.js:1315 +#: js/viewfeed.js:1324 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:1827 +#: js/viewfeed.js:1836 msgid "Open original article" msgstr "OtevÅ™Ãt původnà Älánek" -#: js/viewfeed.js:1833 +#: js/viewfeed.js:1842 msgid "Display article URL" msgstr "Zobrazit URL Älánku" -#: js/viewfeed.js:1852 +#: js/viewfeed.js:1861 msgid "Toggle marked" msgstr "" -#: js/viewfeed.js:1933 +#: js/viewfeed.js:1942 msgid "Assign label" msgstr "PÅ™iÅ™adit Å¡tÃtek" -#: js/viewfeed.js:1938 +#: js/viewfeed.js:1947 msgid "Remove label" msgstr "Odstranit Å¡tÃtek" -#: js/viewfeed.js:1962 +#: js/viewfeed.js:1971 msgid "Playing..." msgstr "PÅ™ehrává se..." -#: js/viewfeed.js:1963 +#: js/viewfeed.js:1972 msgid "Click to pause" msgstr "KliknutÃm pozastavit" -#: js/viewfeed.js:2020 +#: js/viewfeed.js:2029 msgid "Please enter new score for selected articles:" msgstr "Zadejte prosÃm nové hodnocenà vybraných Älánků:" -#: js/viewfeed.js:2062 +#: js/viewfeed.js:2071 msgid "Please enter new score for this article:" msgstr "Zadejte prosÃm nové hodnocenà Älánku:" -#: js/viewfeed.js:2095 +#: js/viewfeed.js:2104 msgid "Article URL:" msgstr "URL Älánku:" @@ -3590,12 +3534,57 @@ 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 "Okamžitá aktualizace je považována za experimentálnÃ. PÅ™ed pokraÄovánÃm zálohujte svůj adresář tt-rss. NapiÅ¡te prosÃm 'yes' pro pokraÄovánÃ." +#~ msgid "Could not update database" +#~ msgstr "Nelze aktualizovat databázi" + +#~ msgid "Could not find necessary schema file, need version:" +#~ msgstr "Nelze nalézt potÅ™ebný soubor schématu, požadovaná verze:" + +#~ msgid ", found: " +#~ msgstr ", nalezeno: " + +#~ msgid "Tiny Tiny RSS database is up to date." +#~ msgstr "Databáze Tiny Tiny RSS je aktuálnÃ." + +#~ msgid "Please backup your database before proceeding." +#~ msgstr "PÅ™ed pokraÄovánÃm prosÃm zazálohujte databázi." + +#~ msgid "Your Tiny Tiny RSS database needs update to the latest version (<b>%d</b> to <b>%d</b>)." +#~ msgstr "VaÅ¡e databáze Tiny Tiny RSS potÅ™ebuje aktualizaci na poslednà verzi (<b>%d</b> na <b>%d</b>)." + +#~ msgid "Performing updates..." +#~ msgstr "ProvádÃm aktualizace..." + +#~ msgid "Updating to version %d..." +#~ msgstr "Aktualizuji na verzi %d..." + +#~ msgid "Checking version... " +#~ msgstr "Kontroluji verzi... " + +#~ msgid "OK!" +#~ msgstr "OK" + +#~ msgid "ERROR!" +#~ msgstr "CHYBA" + +#~ 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] "DokonÄeno. Provedena <b>%d</b> aktualizace na schéma verze <b>%d</b>." +#~ msgstr[1] "DokonÄeno. Provedeny <b>%d</b> aktualizace na schéma verze <b>%d</b>." +#~ msgstr[2] "DokonÄeno. Provedeno <b>%d</b> aktualizacà na schéma verze <b>%d</b>." + +#~ msgid "Your database schema is from a newer version of Tiny Tiny RSS." +#~ msgstr "Schéma vašà databáze je z novÄ›jšà verze Tiny Tiny RSS." + +#~ msgid "Found schema version: <b>%d</b>, required: <b>%d</b>." +#~ msgstr "Nalezeno schéma verze: <b>%d</b>, vyžadováno: <b>%d</b>." + +#~ msgid "Schema upgrade impossible. Please update Tiny Tiny RSS files to the newer version and continue." +#~ msgstr "Aktualizace schématu nenà možná. Aktualizujte Tiny Tiny RSS na novÄ›jšà verzi a pokraÄujte." + #~ msgid "Mark feed as read" #~ msgstr "OznaÄit kanál jako pÅ™eÄtený" -#~ msgid "Title" -#~ msgstr "Název" - #~ msgid "Title or Content" #~ msgstr "Nadpis nebo obsah" diff --git a/locale/de_DE/LC_MESSAGES/messages.mo b/locale/de_DE/LC_MESSAGES/messages.mo Binary files differindex 38f3bde81..d3e308267 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 6615c0e46..f267f233e 100755 --- a/locale/de_DE/LC_MESSAGES/messages.po +++ b/locale/de_DE/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-04-04 09:06+0400\n" -"PO-Revision-Date: 2013-04-03 00:28+0100\n" +"POT-Creation-Date: 2013-04-04 21:31+0400\n" +"PO-Revision-Date: 2013-04-05 00:16+0100\n" "Last-Translator: Heiko Adams <heiko.adams@gmai.com>\n" "Language-Team: \n" "Language: de\n" @@ -55,48 +55,39 @@ msgstr "Nach 3 Monaten" msgid "Default interval" msgstr "Standard-Intervall" -#: backend.php:79 -#: backend.php:89 +#: backend.php:79 backend.php:89 msgid "Disable updates" msgstr "Nie" -#: backend.php:80 -#: backend.php:90 +#: backend.php:80 backend.php:90 msgid "Each 15 minutes" msgstr "Alle 15 Minuten" -#: backend.php:81 -#: backend.php:91 +#: backend.php:81 backend.php:91 msgid "Each 30 minutes" msgstr "Alle 30 Minuten" -#: backend.php:82 -#: backend.php:92 +#: backend.php:82 backend.php:92 msgid "Hourly" msgstr "Stündlich" -#: backend.php:83 -#: backend.php:93 +#: backend.php:83 backend.php:93 msgid "Each 4 hours" msgstr "Alle 4 Stunden" -#: backend.php:84 -#: backend.php:94 +#: backend.php:84 backend.php:94 msgid "Each 12 hours" msgstr "Alle 12 Stunden" -#: backend.php:85 -#: backend.php:95 +#: backend.php:85 backend.php:95 msgid "Daily" msgstr "Täglich" -#: backend.php:86 -#: backend.php:96 +#: backend.php:86 backend.php:96 msgid "Weekly" msgstr "Wöchentlich" -#: backend.php:99 -#: classes/pref/users.php:123 +#: backend.php:99 classes/pref/users.php:123 msgid "User" msgstr "Benutzer" @@ -108,108 +99,21 @@ msgstr "Erfahrener Benutzer" msgid "Administrator" msgstr "Administrator" -#: db-updater.php:19 -msgid "Your access level is insufficient to run this script." -msgstr "Sie haben nicht die benötigten Rechte, um dieses Skript auszuführen." - -#: db-updater.php:44 -msgid "Database Updater" -msgstr "Datenbank-Updater" - -#: db-updater.php:87 -msgid "Could not update database" -msgstr "Konnte die Datenbank nicht aktualisieren" - -#: db-updater.php:90 -msgid "Could not find necessary schema file, need version:" -msgstr "Konnte die notwendige Schema-Datei nicht finden, benötige Version:" - -#: db-updater.php:91 -msgid ", found: " -msgstr ", gefunden: " - -#: db-updater.php:94 -msgid "Tiny Tiny RSS database is up to date." -msgstr "Tiny Tiny RSS Datenbank ist auf dem neusten Stand." - -#: 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:648 -#: classes/handler/public.php:736 -#: classes/handler/public.php:818 -msgid "Return to Tiny Tiny RSS" -msgstr "Zu Tiny Tiny RSS zurückkehren" - -#: db-updater.php:102 -msgid "Please backup your database before proceeding." -msgstr "Bitte sichern Sie Ihre Datenbank bevor Sie fortfahren." - -#: 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 "Ihre Tiny Tiny RSS Datenbank benötigt eine Aktualisierung auf die neuste Version (<b>%d</b> nach <b>%d</b>)." - -#: db-updater.php:118 -msgid "Perform updates" -msgstr "Aktualisierungen durchführen" - -#: db-updater.php:123 -msgid "Performing updates..." -msgstr "Führe Aktualisierungen durch..." - -#: db-updater.php:129 -#, php-format -msgid "Updating to version %d..." -msgstr "Aktualisiere auf Version %d..." - -#: db-updater.php:144 -msgid "Checking version... " -msgstr "Überprüfe Version..." - -#: db-updater.php:150 -msgid "OK!" -msgstr "OK!" - -#: db-updater.php:152 -msgid "ERROR!" -msgstr "FEHLER!" - -#: 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] "Beendet. <b>%d</b> Aktualisierung auf Schema Version <b>%d</b> durchgeführt." -msgstr[1] "Beendet. <b>%d</b> Aktualisierungen auf Schema Version <b>%d</b> durchgeführt." - -#: db-updater.php:170 -msgid "Your database schema is from a newer version of Tiny Tiny RSS." -msgstr "Ihr Datenbankschema stammt von einer neueren Tiny Tiny RSS Version." - -#: db-updater.php:172 -#, php-format -msgid "Found schema version: <b>%d</b>, required: <b>%d</b>." -msgstr "Gefundene Schemaversion: <b>%d</b>, benötigt: <b>%d</b>." - -#: db-updater.php:174 -msgid "Schema upgrade impossible. Please update Tiny Tiny RSS files to the newer version and continue." -msgstr "Aktualisierung des Schemas nicht möglich. Bitte aktualisieren Sie die Tiny Tiny RSS Dateien auf die neuere Version und fahren Sie fort." - #: errors.php:9 -msgid "This program requires XmlHttpRequest to function properly. Your browser doesn't seem to support it." -msgstr "Dieses Programm benötigt XmlHttpRequest um ordnungsgemäß zu funktionieren. Ihr Browser scheint dies nicht zu unterstützen." +msgid "" +"This program requires XmlHttpRequest to function properly. Your browser " +"doesn't seem to support it." +msgstr "" +"Dieses Programm benötigt XmlHttpRequest um ordnungsgemäß zu funktionieren. " +"Ihr Browser scheint dies nicht zu unterstützen." #: errors.php:12 -msgid "This program requires cookies to function properly. Your browser doesn't seem to support them." -msgstr "Dieses Programm benötigt Cookies um ordungsgemäß zu funktionieren. Ihr Browser scheint diese nicht zu unterstützen." +msgid "" +"This program requires cookies to function properly. Your browser doesn't " +"seem to support them." +msgstr "" +"Dieses Programm benötigt Cookies um ordungsgemäß zu funktionieren. Ihr " +"Browser scheint diese nicht zu unterstützen." #: errors.php:15 msgid "Backend sanity check failed." @@ -220,8 +124,12 @@ msgid "Frontend sanity check failed." msgstr "Frontend Sicherheitsprüfung fehlgeschlagen." #: errors.php:19 -msgid "Incorrect database schema version. <a href='db-updater.php'>Please update</a>." -msgstr "Falsche Version des Datenbankschemas. <a href='update.php'>Bitte aktualisieren</a>." +msgid "" +"Incorrect database schema version. <a href='db-updater.php'>Please " +"update</a>." +msgstr "" +"Falsche Version des Datenbankschemas. <a href='update.php'>Bitte " +"aktualisieren</a>." #: errors.php:21 msgid "Request not authorized." @@ -232,60 +140,48 @@ msgid "No operation to perform." msgstr "Keine Funktion ausgewählt." #: errors.php:25 -msgid "Could not display feed: query failed. Please check label match syntax or local configuration." -msgstr "Kann Feed nicht angezeigen: Abfrage fehlgeschlagen. Bitte überprüfen Sie die Label Such-Syntax oder die lokale Konfiguration." +msgid "" +"Could not display feed: query failed. Please check label match syntax or " +"local configuration." +msgstr "" +"Kann Feed nicht angezeigen: Abfrage fehlgeschlagen. Bitte überprüfen Sie die " +"Label Such-Syntax oder die lokale Konfiguration." #: errors.php:27 msgid "Denied. Your access level is insufficient to access this page." -msgstr "Zugriff verweigert. Sie haben nicht die benötigten Rechte um auf diese Seite zuzugreifen." +msgstr "" +"Zugriff verweigert. Sie haben nicht die benötigten Rechte um auf diese Seite " +"zuzugreifen." #: errors.php:29 msgid "Configuration check failed" msgstr "Konfigurationsprüfung fehlgeschlagen" #: errors.php:31 -msgid "Your version of MySQL is not currently supported. Please see official site for more information." -msgstr "Ihre Version von MySQL wird zur Zeit nicht unterstüzt. Für weitere Informationen schauen Sie sich die offiziellen Website an." +msgid "" +"Your version of MySQL is not currently supported. Please see official site " +"for more information." +msgstr "" +"Ihre Version von MySQL wird zur Zeit nicht unterstüzt. Für weitere " +"Informationen schauen Sie sich die offiziellen Website an." #: errors.php:35 msgid "SQL escaping test failed, check your database and PHP configuration" -msgstr "SQL Escaping Test fehlgeschlagen, überprüfen Sie Ihre Datenbank und PHP Konfiguration" - -#: index.php:135 -#: index.php:152 -#: index.php:276 -#: prefs.php:103 -#: classes/backend.php:5 -#: classes/pref/labels.php:296 -#: classes/pref/filters.php:680 -#: classes/pref/feeds.php:1331 -#: plugins/digest/digest_body.php:63 -#: js/feedlist.js:128 -#: js/feedlist.js:436 -#: js/functions.js:420 -#: js/functions.js:758 -#: js/functions.js:1194 -#: js/functions.js:1329 -#: js/functions.js:1641 -#: 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:772 -#: js/viewfeed.js:1200 -#: plugins/import_export/import_export.js:17 -#: plugins/updater/updater.js:17 +msgstr "" +"SQL Escaping Test fehlgeschlagen, überprüfen Sie Ihre Datenbank und PHP " +"Konfiguration" + +#: index.php:135 index.php:152 index.php:277 prefs.php:103 +#: classes/backend.php:5 classes/pref/labels.php:296 +#: classes/pref/filters.php:680 classes/pref/feeds.php:1331 +#: plugins/digest/digest_body.php:63 js/feedlist.js:128 js/feedlist.js:438 +#: js/functions.js:420 js/functions.js:758 js/functions.js:1194 +#: js/functions.js:1329 js/functions.js:1641 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:775 js/viewfeed.js:1201 +#: plugins/import_export/import_export.js:17 plugins/updater/updater.js:17 msgid "Loading, please wait..." msgstr "Ladevorgang, bitte warten..." @@ -305,21 +201,15 @@ msgstr "Adaptiv" msgid "All Articles" msgstr "Alle Artikel" -#: index.php:174 -#: include/functions.php:1953 -#: classes/feeds.php:106 +#: index.php:174 include/functions.php:1955 classes/feeds.php:106 msgid "Starred" msgstr "Markiert" -#: index.php:175 -#: include/functions.php:1954 -#: classes/feeds.php:107 +#: index.php:175 include/functions.php:1956 classes/feeds.php:107 msgid "Published" msgstr "Veröffentlicht" -#: index.php:176 -#: classes/feeds.php:93 -#: classes/feeds.php:105 +#: index.php:176 classes/feeds.php:93 classes/feeds.php:105 msgid "Unread" msgstr "Ungelesen" @@ -351,125 +241,117 @@ msgstr "neueste zuerst" msgid "Oldest first" msgstr "älteste zuerst" -#: index.php:191 -#: index.php:240 -#: include/functions.php:1943 -#: classes/feeds.php:111 -#: classes/feeds.php:441 -#: js/FeedTree.js:128 -#: js/FeedTree.js:156 -#: plugins/digest/digest.js:647 +#: index.php:188 +msgid "Title" +msgstr "Titel" + +#: index.php:192 index.php:241 include/functions.php:1945 +#: 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 "Als gelesen markieren" -#: index.php:194 +#: index.php:195 msgid "Older than one day" msgstr "älter als einen Tag" -#: index.php:197 +#: index.php:198 msgid "Older than one week" msgstr "älter als eine Woche" -#: index.php:200 +#: index.php:201 msgid "Older than two weeks" msgstr "älter als 2 Wochen" -#: index.php:217 +#: index.php:218 msgid "Communication problem with server." msgstr "Kommunikationsfehler mit Server" -#: index.php:225 +#: index.php:226 msgid "New version of Tiny Tiny RSS is available!" msgstr "Neue Version von Tiny Tiny RSS verfügbar!" -#: index.php:230 +#: index.php:231 msgid "Actions..." msgstr "Aktionen..." -#: index.php:232 +#: index.php:233 msgid "Preferences..." msgstr "Einstellungen..." -#: index.php:233 +#: index.php:234 msgid "Search..." msgstr "Suchen..." -#: index.php:234 +#: index.php:235 msgid "Feed actions:" msgstr "Feed-Aktionen:" -#: index.php:235 -#: classes/handler/public.php:578 +#: index.php:236 classes/handler/public.php:578 msgid "Subscribe to feed..." msgstr "Feed abonnieren..." -#: index.php:236 +#: index.php:237 msgid "Edit this feed..." msgstr "Feed bearbeiten..." -#: index.php:237 +#: index.php:238 msgid "Rescore feed" msgstr "Feed neu bewerten" -#: index.php:238 -#: classes/pref/feeds.php:717 -#: classes/pref/feeds.php:1283 +#: index.php:239 classes/pref/feeds.php:717 classes/pref/feeds.php:1283 #: js/PrefFeedTree.js:73 msgid "Unsubscribe" msgstr "Feed abbestellen" -#: index.php:239 +#: index.php:240 msgid "All feeds:" msgstr "Alle Feeds:" -#: index.php:241 +#: index.php:242 msgid "(Un)hide read feeds" msgstr "Gelesene zeigen/verstecken" -#: index.php:242 +#: index.php:243 msgid "Other actions:" msgstr "Andere Aktionen:" -#: index.php:244 +#: index.php:245 msgid "Switch to digest..." msgstr "Zur Zusammenfassung wechseln..." -#: index.php:246 +#: index.php:247 msgid "Show tag cloud..." msgstr "Tagwolke anzeigen..." -#: index.php:247 -#: include/functions.php:1929 +#: index.php:248 include/functions.php:1931 msgid "Toggle widescreen mode" msgstr "Breitbild-Modus umschalten" -#: index.php:248 +#: index.php:249 msgid "Select by tags..." msgstr "Artikel nach Tag filtern.." -#: index.php:249 +#: index.php:250 msgid "Create label..." msgstr "Label erstellen..." -#: index.php:250 +#: index.php:251 msgid "Create filter..." msgstr "Filter erstellen..." -#: index.php:251 +#: index.php:252 msgid "Keyboard shortcuts help" msgstr "Tastaturkürzel..." -#: index.php:260 -#: plugins/digest/digest_body.php:77 +#: index.php:261 plugins/digest/digest_body.php:77 #: plugins/mobile/mobile-functions.php:62 #: plugins/mobile/mobile-functions.php:237 msgid "Logout" msgstr "Abmelden" -#: prefs.php:36 -#: prefs.php:121 -#: include/functions.php:1956 -#: classes/pref/prefs.php:428 +#: prefs.php:36 prefs.php:121 include/functions.php:1958 +#: classes/pref/prefs.php:444 msgid "Preferences" msgstr "Einstellungen" @@ -481,23 +363,17 @@ msgstr "Tastaturkürzel" msgid "Exit preferences" msgstr "Einstellungen verlassen" -#: prefs.php:124 -#: classes/pref/feeds.php:107 -#: classes/pref/feeds.php:1209 +#: prefs.php:124 classes/pref/feeds.php:107 classes/pref/feeds.php:1209 #: classes/pref/feeds.php:1272 msgid "Feeds" msgstr "Feeds" -#: prefs.php:127 -#: classes/pref/filters.php:156 +#: prefs.php:127 classes/pref/filters.php:156 msgid "Filters" msgstr "Filter" -#: prefs.php:130 -#: include/functions.php:1146 -#: include/functions.php:1782 -#: classes/pref/labels.php:90 -#: plugins/mobile/mobile-functions.php:198 +#: prefs.php:130 include/functions.php:1148 include/functions.php:1784 +#: classes/pref/labels.php:90 plugins/mobile/mobile-functions.php:198 msgid "Labels" msgstr "Label" @@ -505,8 +381,7 @@ msgstr "Label" msgid "Users" msgstr "Benutzer" -#: register.php:186 -#: include/login_form.php:238 +#: register.php:186 include/login_form.php:238 msgid "Create new account" msgstr "Neues Konto erstellen" @@ -514,9 +389,24 @@ msgstr "Neues Konto erstellen" msgid "New user registrations are administratively disabled." msgstr "Die Registrierung für neue Benutzer wurde administrativ deaktiviert." +#: 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:648 classes/handler/public.php:736 +#: classes/handler/public.php:818 classes/handler/public.php:893 +#: classes/handler/public.php:907 classes/handler/public.php:914 +#: classes/handler/public.php:939 +msgid "Return to Tiny Tiny RSS" +msgstr "Zu Tiny Tiny RSS zurückkehren" + #: 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 "Ihr vorübergehendes Passwort wird an Ihre angegebene E-Mail-Adresse gesendet. Konten, die nicht innerhalb von 24 Stunden aktiviert wurden, werden gelöscht." +msgid "" +"Your temporary password will be sent to the specified email. Accounts, which " +"were not logged in once, are erased automatically 24 hours after temporary " +"password is sent." +msgstr "" +"Ihr vorübergehendes Passwort wird an Ihre angegebene E-Mail-Adresse " +"gesendet. Konten, die nicht innerhalb von 24 Stunden aktiviert wurden, " +"werden gelöscht." #: register.php:223 msgid "Desired login:" @@ -526,13 +416,11 @@ msgstr "Gewünschter Benutzername:" msgid "Check availability" msgstr "Verfügbarkeit prüfen" -#: register.php:228 -#: classes/handler/public.php:776 +#: register.php:228 classes/handler/public.php:776 msgid "Email:" msgstr "E-Mail:" -#: register.php:231 -#: classes/handler/public.php:781 +#: register.php:231 classes/handler/public.php:781 msgid "How much is two plus two:" msgstr "Wieviel ist zwei plus zwei:" @@ -560,17 +448,13 @@ msgstr "Konto erfolgreich erstellt." msgid "New user registrations are currently closed." msgstr "Registrierung für neue Benutzer ist momentan geschlossen." -#: update.php:55 +#: update.php:56 msgid "Tiny Tiny RSS data update script." msgstr "Skript zum Updaten von Tiny Tiny RSS." -#: include/digest.php:109 -#: include/functions.php:1155 -#: include/functions.php:1683 -#: include/functions.php:1768 -#: include/functions.php:1790 -#: classes/opml.php:416 -#: classes/pref/feeds.php:222 +#: include/digest.php:109 include/functions.php:1157 +#: include/functions.php:1685 include/functions.php:1770 +#: include/functions.php:1792 classes/opml.php:416 classes/pref/feeds.php:222 msgid "Uncategorized" msgstr "Unkategorisiert" @@ -585,343 +469,305 @@ msgstr[1] "%d archivierte Artikel" msgid "No feeds found." msgstr "Keine Feeds gefunden." -#: include/functions.php:1144 -#: include/functions.php:1780 +#: include/functions.php:1146 include/functions.php:1782 #: plugins/mobile/mobile-functions.php:171 msgid "Special" msgstr "Sonderfeeds" -#: include/functions.php:1632 -#: classes/feeds.php:1101 +#: include/functions.php:1634 classes/feeds.php:1104 #: classes/pref/filters.php:427 msgid "All feeds" msgstr "Alle Feeds" -#: include/functions.php:1833 +#: include/functions.php:1835 msgid "Starred articles" msgstr "Markierte Artikel" -#: include/functions.php:1835 +#: include/functions.php:1837 msgid "Published articles" msgstr "Veröffentlichte Artikel" -#: include/functions.php:1837 +#: include/functions.php:1839 msgid "Fresh articles" msgstr "Neue Artikel" -#: include/functions.php:1839 -#: include/functions.php:1951 +#: include/functions.php:1841 include/functions.php:1953 msgid "All articles" msgstr "Alle Artikel" -#: include/functions.php:1841 +#: include/functions.php:1843 msgid "Archived articles" msgstr "Archivierte Artikel" -#: include/functions.php:1843 +#: include/functions.php:1845 msgid "Recently read" msgstr "Kürzlich gelesen" -#: include/functions.php:1906 +#: include/functions.php:1908 msgid "Navigation" msgstr "Navigation" -#: include/functions.php:1907 +#: include/functions.php:1909 msgid "Open next feed" msgstr "Nächsten Feed öffnen" -#: include/functions.php:1908 +#: include/functions.php:1910 msgid "Open previous feed" msgstr "Vorherigen Feed öffnen" -#: include/functions.php:1909 +#: include/functions.php:1911 msgid "Open next article" msgstr "Nächsten Artikel öffnen" -#: include/functions.php:1910 +#: include/functions.php:1912 msgid "Open previous article" msgstr "Vorherigen Artikel öffnen" -#: include/functions.php:1911 +#: include/functions.php:1913 msgid "Open next article (don't scroll long articles)" msgstr "Nächsten Artikel laden (lange Artikel werden nicht gescrollt)" -#: include/functions.php:1912 +#: include/functions.php:1914 msgid "Open previous article (don't scroll long articles)" msgstr "Vorherigen Artikel laden (lange Artikel werden nicht gescrollt)" -#: include/functions.php:1913 +#: include/functions.php:1915 msgid "Show search dialog" msgstr "Suchdialog anzeigen" -#: include/functions.php:1914 +#: include/functions.php:1916 msgid "Article" msgstr "Artikel" -#: include/functions.php:1915 +#: include/functions.php:1917 msgid "Toggle starred" msgstr "Markierung ein-/ausschalten" -#: include/functions.php:1916 -#: js/viewfeed.js:1863 +#: include/functions.php:1918 js/viewfeed.js:1872 msgid "Toggle published" msgstr "Veröffentlichung ein-/ausschalten" -#: include/functions.php:1917 -#: js/viewfeed.js:1841 +#: include/functions.php:1919 js/viewfeed.js:1850 msgid "Toggle unread" msgstr "Gelesen-Status umschalten" -#: include/functions.php:1918 +#: include/functions.php:1920 msgid "Edit tags" msgstr "Tags bearbeiten" -#: include/functions.php:1919 +#: include/functions.php:1921 msgid "Dismiss selected" msgstr "Ausgewählte Artikel verwerfen" -#: include/functions.php:1920 +#: include/functions.php:1922 msgid "Dismiss read" msgstr "gelesene Artikel verwerfen" -#: include/functions.php:1921 +#: include/functions.php:1923 msgid "Open in new window" msgstr "In neuem Fenster öffnen" -#: include/functions.php:1922 -#: js/viewfeed.js:1882 +#: include/functions.php:1924 js/viewfeed.js:1891 msgid "Mark below as read" msgstr "Untere als gelesen markieren" -#: include/functions.php:1923 -#: js/viewfeed.js:1876 +#: include/functions.php:1925 js/viewfeed.js:1885 msgid "Mark above as read" msgstr "Obige als gelesen markieren" -#: include/functions.php:1924 +#: include/functions.php:1926 msgid "Scroll down" msgstr "Nach unten scrollen" -#: include/functions.php:1925 +#: include/functions.php:1927 msgid "Scroll up" msgstr "Nach oben scrollen" -#: include/functions.php:1926 +#: include/functions.php:1928 msgid "Select article under cursor" msgstr "Artikel unter Mauszeiger auswählen" -#: include/functions.php:1927 +#: include/functions.php:1929 msgid "Email article" msgstr "Artikel per E-Mail versenden" -#: include/functions.php:1928 +#: include/functions.php:1930 msgid "Close/collapse article" msgstr "Artikel schließen/verbergen" -#: include/functions.php:1930 -#: plugins/embed_original/init.php:33 +#: include/functions.php:1932 plugins/embed_original/init.php:33 msgid "Toggle embed original" msgstr "\"Original einbetten\" umschalten" -#: include/functions.php:1931 +#: include/functions.php:1933 msgid "Article selection" msgstr "Artikelauswahl" -#: include/functions.php:1932 +#: include/functions.php:1934 msgid "Select all articles" msgstr "Alle Artikel auswählen" -#: include/functions.php:1933 +#: include/functions.php:1935 msgid "Select unread" msgstr "Ungelesene Artikel auswählen" -#: include/functions.php:1934 +#: include/functions.php:1936 msgid "Select starred" msgstr "Markierte Artikel auswählen" -#: include/functions.php:1935 +#: include/functions.php:1937 msgid "Select published" msgstr "Veröffentlichte Artikel auswählen" -#: include/functions.php:1936 +#: include/functions.php:1938 msgid "Invert selection" msgstr "Auswahl umkehren" -#: include/functions.php:1937 +#: include/functions.php:1939 msgid "Deselect everything" msgstr "Auswahl aufheben" -#: include/functions.php:1938 -#: classes/pref/feeds.php:521 +#: include/functions.php:1940 classes/pref/feeds.php:521 #: classes/pref/feeds.php:754 msgid "Feed" msgstr "Feed" -#: include/functions.php:1939 +#: include/functions.php:1941 msgid "Refresh current feed" msgstr "Aktuellen Feed aktualisieren" -#: include/functions.php:1940 +#: include/functions.php:1942 msgid "Un/hide read feeds" msgstr "Gelesene Feeds zeigen/verstecken" -#: include/functions.php:1941 -#: classes/pref/feeds.php:1275 +#: include/functions.php:1943 classes/pref/feeds.php:1275 msgid "Subscribe to feed" msgstr "Feed abonnieren" -#: include/functions.php:1942 -#: js/FeedTree.js:135 -#: js/PrefFeedTree.js:67 +#: include/functions.php:1944 js/FeedTree.js:135 js/PrefFeedTree.js:67 msgid "Edit feed" msgstr "Feed bearbeiten" -#: include/functions.php:1944 +#: include/functions.php:1946 msgid "Reverse headlines" msgstr "Schlagzeilensortierung umkehren" -#: include/functions.php:1945 +#: include/functions.php:1947 msgid "Debug feed update" msgstr "Aktualisierung im Diagnose-Modus durchführen" -#: include/functions.php:1946 -#: js/FeedTree.js:178 +#: include/functions.php:1948 js/FeedTree.js:178 msgid "Mark all feeds as read" msgstr "Alle Feeds als gelesen markieren" -#: include/functions.php:1947 +#: include/functions.php:1949 msgid "Un/collapse current category" msgstr "Aktuelle Kategorie ein-/ausklappen:" -#: include/functions.php:1948 +#: include/functions.php:1950 msgid "Toggle combined mode" msgstr "Kombinierte Feed-Anzeige umschalten" -#: include/functions.php:1949 +#: include/functions.php:1951 msgid "Toggle auto expand in combined mode" msgstr "Kombinierte Feed-Anzeige umschalten" -#: include/functions.php:1950 +#: include/functions.php:1952 msgid "Go to" msgstr "Gehe zu" -#: include/functions.php:1952 +#: include/functions.php:1954 msgid "Fresh" msgstr "Neu" -#: include/functions.php:1955 -#: js/tt-rss.js:431 -#: js/tt-rss.js:584 +#: include/functions.php:1957 js/tt-rss.js:431 js/tt-rss.js:584 msgid "Tag cloud" msgstr "Tagwolke" -#: include/functions.php:1957 +#: include/functions.php:1959 msgid "Other" msgstr "Sonstiges" -#: include/functions.php:1958 -#: classes/pref/labels.php:281 +#: include/functions.php:1960 classes/pref/labels.php:281 msgid "Create label" msgstr "Label erstellen" -#: include/functions.php:1959 -#: classes/pref/filters.php:654 +#: include/functions.php:1961 classes/pref/filters.php:654 msgid "Create filter" msgstr "Filter erstellen" -#: include/functions.php:1960 +#: include/functions.php:1962 msgid "Un/collapse sidebar" msgstr "Seitenleiste ein-/ausklappen" -#: include/functions.php:1961 +#: include/functions.php:1963 msgid "Show help dialog" msgstr "Hilfe anzeigen" -#: include/functions.php:2446 +#: include/functions.php:2471 #, php-format msgid "Search results: %s" msgstr "Suchergebnisse: %s" -#: include/functions.php:2937 -#: js/viewfeed.js:1969 +#: include/functions.php:2962 js/viewfeed.js:1978 msgid "Click to play" msgstr "Zum Abspielen klicken" -#: include/functions.php:2938 -#: js/viewfeed.js:1968 +#: include/functions.php:2963 js/viewfeed.js:1977 msgid "Play" msgstr "Abspielen" -#: include/functions.php:3055 +#: include/functions.php:3080 msgid " - " msgstr " - " -#: include/functions.php:3077 -#: include/functions.php:3371 +#: include/functions.php:3102 include/functions.php:3396 #: classes/article.php:281 msgid "no tags" msgstr "Keine Tags" -#: include/functions.php:3087 -#: classes/feeds.php:686 +#: include/functions.php:3112 classes/feeds.php:686 msgid "Edit tags for this article" msgstr "Tags für diesen Artikel bearbeiten" -#: include/functions.php:3116 -#: classes/feeds.php:642 +#: include/functions.php:3141 classes/feeds.php:642 msgid "Originally from:" msgstr "Original von:" -#: include/functions.php:3129 -#: classes/feeds.php:655 -#: classes/pref/feeds.php:540 +#: include/functions.php:3154 classes/feeds.php:655 classes/pref/feeds.php:540 msgid "Feed URL" msgstr "Feed URL" -#: include/functions.php:3160 -#: 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:1059 -#: classes/pref/feeds.php:1588 -#: classes/pref/feeds.php:1660 -#: plugins/import_export/init.php:406 -#: plugins/import_export/init.php:429 -#: plugins/googlereaderimport/init.php:168 -#: plugins/share/init.php:67 +#: include/functions.php:3185 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:1105 +#: classes/pref/feeds.php:1588 classes/pref/feeds.php:1660 +#: plugins/import_export/init.php:406 plugins/import_export/init.php:429 +#: plugins/googlereaderimport/init.php:168 plugins/share/init.php:67 #: plugins/updater/init.php:361 msgid "Close this window" msgstr "Fenster schließen" -#: include/functions.php:3396 +#: include/functions.php:3421 msgid "(edit note)" msgstr "(Notiz bearbeiten)" -#: include/functions.php:3631 +#: include/functions.php:3656 msgid "unknown type" msgstr "unbekannter Typ" -#: include/functions.php:3687 +#: include/functions.php:3712 msgid "Attachments" msgstr "Anhänge" -#: include/login_form.php:183 -#: classes/handler/public.php:483 -#: classes/handler/public.php:771 -#: plugins/mobile/login_form.php:40 +#: include/login_form.php:183 classes/handler/public.php:483 +#: classes/handler/public.php:771 plugins/mobile/login_form.php:40 msgid "Login:" msgstr "Benutzername:" -#: include/login_form.php:192 -#: classes/handler/public.php:486 +#: include/login_form.php:192 classes/handler/public.php:486 #: plugins/mobile/login_form.php:45 msgid "Password:" msgstr "Passwort:" @@ -930,8 +776,8 @@ msgstr "Passwort:" msgid "I forgot my password" msgstr "Ich habe mein Passwort vergessen" -#: include/login_form.php:201 -#: classes/handler/public.php:489 +#: include/login_form.php:201 classes/handler/public.php:489 +#: classes/pref/prefs.php:552 msgid "Language:" msgstr "Sprache:" @@ -939,10 +785,8 @@ msgstr "Sprache:" msgid "Profile:" msgstr "Profil:" -#: include/login_form.php:213 -#: classes/handler/public.php:233 -#: classes/rpc.php:64 -#: classes/pref/prefs.php:995 +#: include/login_form.php:213 classes/handler/public.php:233 +#: classes/rpc.php:64 classes/pref/prefs.php:1041 msgid "Default profile" msgstr "Standardprofil" @@ -954,13 +798,12 @@ msgstr "Weniger Datenverkehr nutzen" msgid "Remember me" msgstr "Erinnere dich an mich" -#: include/login_form.php:235 -#: classes/handler/public.php:499 +#: include/login_form.php:235 classes/handler/public.php:499 #: plugins/mobile/login_form.php:28 msgid "Log in" msgstr "Anmelden" -#: include/sessions.php:58 +#: include/sessions.php:62 msgid "Session failed to validate (incorrect IP)" msgstr "Sitzung konnte nicht validiert werden (falsche IP)" @@ -972,44 +815,28 @@ msgstr "Artikel nicht gefunden." 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:941 -#: 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 +#: classes/article.php:204 classes/pref/users.php:176 +#: classes/pref/labels.php:79 classes/pref/filters.php:405 +#: classes/pref/prefs.php:987 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:460 -#: classes/handler/public.php:502 -#: 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:943 -#: classes/pref/feeds.php:734 -#: classes/pref/feeds.php:884 -#: classes/pref/feeds.php:1797 -#: plugins/mail/init.php:126 -#: plugins/note/init.php:55 -#: plugins/instances/init.php:251 +#: classes/article.php:206 classes/handler/public.php:460 +#: classes/handler/public.php:502 classes/feeds.php:1031 +#: classes/feeds.php:1083 classes/feeds.php:1143 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:989 +#: classes/pref/feeds.php:734 classes/pref/feeds.php:884 +#: classes/pref/feeds.php:1797 plugins/mail/init.php:126 +#: plugins/note/init.php:55 plugins/instances/init.php:251 #: plugins/instances/init.php:440 msgid "Cancel" msgstr "Abbrechen" -#: classes/handler/public.php:424 -#: plugins/bookmarklets/init.php:38 +#: classes/handler/public.php:424 plugins/bookmarklets/init.php:38 msgid "Share with Tiny Tiny RSS" msgstr "Teilen mit Tiny Tiny RSS" @@ -1017,10 +844,8 @@ msgstr "Teilen mit Tiny Tiny RSS" msgid "Title:" msgstr "Titel:" -#: classes/handler/public.php:434 -#: classes/pref/feeds.php:538 -#: classes/pref/feeds.php:769 -#: plugins/instances/init.php:215 +#: classes/handler/public.php:434 classes/pref/feeds.php:538 +#: classes/pref/feeds.php:769 plugins/instances/init.php:215 #: plugins/instances/init.php:405 msgid "URL:" msgstr "URL:" @@ -1049,48 +874,42 @@ msgstr "Nicht angemeldet" msgid "Incorrect username or password" msgstr "Benutzername oder Passwort falsch" -#: classes/handler/public.php:584 -#: classes/handler/public.php:681 +#: classes/handler/public.php:584 classes/handler/public.php:681 #, php-format msgid "Already subscribed to <b>%s</b>." msgstr "<b>%s</b> bereits abonniert." -#: classes/handler/public.php:587 -#: classes/handler/public.php:672 +#: classes/handler/public.php:587 classes/handler/public.php:672 #, php-format msgid "Subscribed to <b>%s</b>." msgstr "<b>%s</b> abonniert." -#: classes/handler/public.php:590 -#: classes/handler/public.php:675 +#: classes/handler/public.php:590 classes/handler/public.php:675 #, php-format msgid "Could not subscribe to <b>%s</b>." msgstr "Konnte <b>%s</b> nicht abonnieren." -#: classes/handler/public.php:593 -#: classes/handler/public.php:678 +#: classes/handler/public.php:593 classes/handler/public.php:678 #, php-format msgid "No feeds found in <b>%s</b>." msgstr "Keine Feeds in <b>%s</b> gefunden." -#: classes/handler/public.php:596 -#: classes/handler/public.php:684 +#: classes/handler/public.php:596 classes/handler/public.php:684 msgid "Multiple feed URLs found." msgstr "Mehrere Feed-URLs gefunden." -#: classes/handler/public.php:600 -#: classes/handler/public.php:689 +#: classes/handler/public.php:600 classes/handler/public.php:689 #, php-format msgid "Could not subscribe to <b>%s</b>.<br>Can't download the Feed URL." -msgstr "Das Abonnieren von <b>%s</b> ist fehlgeschlagen.<br>Der Feed konnte nicht heruntergeladen werden." +msgstr "" +"Das Abonnieren von <b>%s</b> ist fehlgeschlagen.<br>Der Feed konnte nicht " +"heruntergeladen werden." -#: classes/handler/public.php:618 -#: classes/handler/public.php:707 +#: classes/handler/public.php:618 classes/handler/public.php:707 msgid "Subscribe to selected feed" msgstr "Ausgewählte Feeds abonnieren" -#: classes/handler/public.php:643 -#: classes/handler/public.php:731 +#: classes/handler/public.php:643 classes/handler/public.php:731 msgid "Edit subscription options" msgstr "Abonnementoptionen bearbeiten" @@ -1099,11 +918,14 @@ msgid "Password recovery" msgstr "Passwort-Wiederherstellung" #: classes/handler/public.php:764 -msgid "You will need to provide valid account name and email. New password will be sent on your email address." -msgstr "Sie müssen einen gültigen Benutzernamen und EMail angeben. Das neue Passwort wird an Ihre EMail gesendet." +msgid "" +"You will need to provide valid account name and email. New password will be " +"sent on your email address." +msgstr "" +"Sie müssen einen gültigen Benutzernamen und EMail angeben. Das neue Passwort " +"wird an Ihre EMail gesendet." -#: classes/handler/public.php:786 -#: classes/pref/users.php:360 +#: classes/handler/public.php:786 classes/pref/users.php:360 msgid "Reset password" msgstr "Passwort zurücksetzen" @@ -1111,41 +933,70 @@ msgstr "Passwort zurücksetzen" 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:800 -#: classes/handler/public.php:826 +#: classes/handler/public.php:800 classes/handler/public.php:826 #: plugins/digest/digest_body.php:69 msgid "Go back" msgstr "Zurück" #: classes/handler/public.php:822 msgid "Sorry, login and email combination not found." -msgstr "Entschuldigung, diese Kombination von Benutzername und E-Mail konnte nicht gefunden werden." +msgstr "" +"Entschuldigung, diese Kombination von Benutzername und E-Mail konnte nicht " +"gefunden werden." + +#: classes/handler/public.php:842 +msgid "Your access level is insufficient to run this script." +msgstr "Sie haben nicht die benötigten Rechte, um dieses Skript auszuführen." + +#: classes/handler/public.php:866 +msgid "Database Updater" +msgstr "Datenbank-Updater" + +#: classes/handler/public.php:931 +msgid "Perform updates" +msgstr "Aktualisierungen durchführen" #: 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." +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:48 msgid "Your Public OPML URL is:" msgstr "Ihre öffentliche OPML-URL lautet:" -#: classes/dlg.php:57 -#: classes/dlg.php:214 +#: classes/dlg.php:57 classes/dlg.php:214 msgid "Generate new URL" msgstr "Erzeuge neue 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 "Der Aktualisierungs-Daemon ist in den Einstellungen aktiviert, aber der Daemon Prozess läuft nicht, weshalb keine Feeds aktualisiert werden können. Bitte starten Sie den Prozess des Daemons oder benachrichtigen Sie den Besitzer der Instanz." +msgid "" +"Update daemon is enabled in configuration, but daemon process is not " +"running, which prevents all feeds from updating. Please start the daemon " +"process or contact instance owner." +msgstr "" +"Der Aktualisierungs-Daemon ist in den Einstellungen aktiviert, aber der " +"Daemon Prozess läuft nicht, weshalb keine Feeds aktualisiert werden können. " +"Bitte starten Sie den Prozess des Daemons oder benachrichtigen Sie den " +"Besitzer der Instanz." -#: classes/dlg.php:75 -#: classes/dlg.php:84 +#: classes/dlg.php:75 classes/dlg.php:84 msgid "Last update:" msgstr "Letzte Aktualisierung:" #: 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." +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:166 msgid "Match:" @@ -1171,18 +1022,20 @@ msgstr "Einträge anzeigen" msgid "You can view this feed as RSS using the following URL:" msgstr "Sie finden diesen Feed als RSS unter der folgenden URL:" -#: classes/dlg.php:233 -#: plugins/updater/init.php:331 +#: classes/dlg.php:233 plugins/updater/init.php:331 #, 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: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" +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:245 -#: plugins/updater/init.php:335 +#: classes/dlg.php:245 plugins/updater/init.php:335 msgid "See the release notes" msgstr "Release notes anzeigen" @@ -1192,7 +1045,9 @@ msgstr "Download" #: 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." +msgstr "" +"Das Abrufen von Update-Informationen ist fehlgeschlagen oder es ist bereits " +"die neuste Version installiert." #: classes/feeds.php:68 msgid "Visit the website" @@ -1202,9 +1057,7 @@ 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 +#: classes/feeds.php:84 classes/feeds.php:138 classes/pref/feeds.php:1440 msgid "View as RSS" msgstr "Als RSS anzeigen" @@ -1212,19 +1065,12 @@ msgstr "Als RSS anzeigen" 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:955 -#: classes/pref/feeds.php:1266 -#: classes/pref/feeds.php:1536 -#: classes/pref/feeds.php:1606 -#: plugins/instances/init.php:290 +#: 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:1001 +#: classes/pref/feeds.php:1266 classes/pref/feeds.php:1536 +#: classes/pref/feeds.php:1606 plugins/instances/init.php:290 msgid "All" msgstr "Alle" @@ -1232,19 +1078,12 @@ msgstr "Alle" 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:957 -#: classes/pref/feeds.php:1268 -#: classes/pref/feeds.php:1538 -#: classes/pref/feeds.php:1608 -#: plugins/instances/init.php:292 +#: 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:1003 +#: classes/pref/feeds.php:1268 classes/pref/feeds.php:1538 +#: classes/pref/feeds.php:1608 plugins/instances/init.php:292 msgid "None" msgstr "Keine" @@ -1272,17 +1111,13 @@ msgstr "Archiv" msgid "Move back" msgstr "Zurückgehen" -#: classes/feeds.php:118 -#: classes/pref/filters.php:291 -#: classes/pref/filters.php:339 -#: classes/pref/filters.php:746 +#: 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 "Löschen" -#: classes/feeds.php:125 -#: classes/feeds.php:130 -#: plugins/mailto/init.php:28 +#: classes/feeds.php:125 classes/feeds.php:130 plugins/mailto/init.php:28 #: plugins/mail/init.php:28 msgid "Forward by email" msgstr "Per E-Mail weiterleiten" @@ -1291,8 +1126,7 @@ msgstr "Per E-Mail weiterleiten" msgid "Feed:" msgstr "Feed:" -#: classes/feeds.php:205 -#: classes/feeds.php:831 +#: classes/feeds.php:205 classes/feeds.php:831 msgid "Feed not found." msgstr "Feed nicht gefunden." @@ -1322,121 +1156,106 @@ msgid "No starred articles found to display." msgstr "Keine markierten Artikel zum Anzeigen gefunden." #: classes/feeds.php:742 -msgid "No articles found to display. You can assign articles to labels manually from article header context menu (applies to all selected articles) 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." +msgid "" +"No articles found to display. You can assign articles to labels manually " +"from article header context menu (applies to all selected articles) 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:744 msgid "No articles found to display." msgstr "Keine Artikel zum Anzeigen gefunden." -#: classes/feeds.php:759 -#: classes/feeds.php:923 +#: classes/feeds.php:759 classes/feeds.php:926 #, php-format msgid "Feeds last updated at %s" msgstr "Feeds zuletzt aktualisiert am %s" -#: classes/feeds.php:769 -#: classes/feeds.php:933 +#: classes/feeds.php:769 classes/feeds.php:936 msgid "Some feeds have update errors (click for details)" msgstr "Einige Feeds haben Aktualisierungsfehler (klicken für Details)" -#: classes/feeds.php:913 +#: classes/feeds.php:916 msgid "No feed selected." msgstr "Keinen Feed ausgewählt." -#: classes/feeds.php:966 -#: classes/feeds.php:974 +#: classes/feeds.php:969 classes/feeds.php:977 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/feeds.php:983 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 +#: classes/feeds.php:991 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 +#: classes/feeds.php:1003 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/feeds.php:1007 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:253 -#: classes/pref/feeds.php:602 -#: classes/pref/feeds.php:828 +#: classes/feeds.php:1010 classes/pref/prefs.php:269 +#: classes/pref/feeds.php:602 classes/pref/feeds.php:828 #: classes/pref/feeds.php:1778 msgid "Password" msgstr "Passwort" -#: classes/feeds.php:1017 +#: classes/feeds.php:1020 msgid "This feed requires authentication." msgstr "Dieser Feed erfordert Authentifizierung." -#: classes/feeds.php:1022 -#: classes/feeds.php:1078 -#: classes/pref/feeds.php:1796 +#: classes/feeds.php:1025 classes/feeds.php:1081 classes/pref/feeds.php:1796 msgid "Subscribe" msgstr "Abonnieren" -#: classes/feeds.php:1025 +#: classes/feeds.php:1028 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 +#: classes/feeds.php:1051 classes/feeds.php:1142 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 +#: classes/feeds.php:1055 msgid "Popular feeds" msgstr "Beliebte Feeds" -#: classes/feeds.php:1053 +#: classes/feeds.php:1056 msgid "Feed archive" msgstr "Feed-Archiv" -#: classes/feeds.php:1056 +#: classes/feeds.php:1059 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 +#: classes/feeds.php:1082 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 +#: classes/feeds.php:1093 msgid "Look for" msgstr "Suche nach" -#: classes/feeds.php:1098 +#: classes/feeds.php:1101 msgid "Limit search to:" msgstr "Suche begrenzen auf:" -#: classes/feeds.php:1114 +#: classes/feeds.php:1117 msgid "This feed" msgstr "Diesen Feed" @@ -1460,8 +1279,7 @@ msgstr "Strg" msgid "Help topic not found." msgstr "Hilfethema nicht gefunden." -#: classes/opml.php:28 -#: classes/opml.php:33 +#: classes/opml.php:28 classes/opml.php:33 msgid "OPML Utility" msgstr "OPML Werkzeug" @@ -1511,22 +1329,20 @@ msgstr "Verarbeite Kategorie: %s" msgid "Error: please upload OPML file." msgstr "Fehler: bitte eine OPML-Datei hochladen." -#: classes/opml.php:475 -#: plugins/googlereaderimport/init.php:161 +#: classes/opml.php:475 plugins/googlereaderimport/init.php:161 msgid "Error while parsing document." msgstr "Fehler beim Parsen des Dokuments." -#: classes/pref/users.php:6 -#: plugins/instances/init.php:157 +#: classes/pref/users.php:6 plugins/instances/init.php:157 msgid "Your access level is insufficient to open this tab." -msgstr "Sie haben nicht die benötigten Rechte um diese Registerkarte zu öffnen." +msgstr "" +"Sie haben nicht die benötigten Rechte um diese Registerkarte zu öffnen." #: classes/pref/users.php:34 msgid "User not found" msgstr "Benutzer nicht gefunden" -#: classes/pref/users.php:53 -#: classes/pref/users.php:404 +#: classes/pref/users.php:53 classes/pref/users.php:404 msgid "Registered" msgstr "Registriert" @@ -1550,8 +1366,7 @@ msgstr "Zugriffsberechtigung: " msgid "Change password to" msgstr "Passwort ändern in" -#: classes/pref/users.php:161 -#: classes/pref/feeds.php:610 +#: classes/pref/users.php:161 classes/pref/feeds.php:610 #: classes/pref/feeds.php:834 msgid "Options" msgstr "Optionen" @@ -1589,18 +1404,12 @@ msgstr "Sende das neue Passwort von Benutzer <b>%s</b> an <b>%s</b>" msgid "[tt-rss] Password change notification" msgstr "[tt-rss] Benachrichtigung: Passwort geändert" -#: classes/pref/users.php: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:952 -#: classes/pref/feeds.php:1263 -#: classes/pref/feeds.php:1533 -#: classes/pref/feeds.php:1603 -#: plugins/instances/init.php:287 +#: 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:998 +#: classes/pref/feeds.php:1263 classes/pref/feeds.php:1533 +#: classes/pref/feeds.php:1603 plugins/instances/init.php:287 msgid "Select" msgstr "Auswahl" @@ -1612,8 +1421,7 @@ msgstr "Benutzer anlegen" msgid "Details" msgstr "Details" -#: classes/pref/users.php:356 -#: classes/pref/filters.php:660 +#: classes/pref/users.php:356 classes/pref/filters.php:660 #: plugins/instances/init.php:296 msgid "Edit" msgstr "Bearbeiten" @@ -1626,8 +1434,7 @@ msgstr "Zugriffsberechtigung" msgid "Last login" msgstr "Zuletzt angemeldet" -#: classes/pref/users.php:426 -#: plugins/instances/init.php:337 +#: classes/pref/users.php:426 plugins/instances/init.php:337 msgid "Click to edit" msgstr "Zum Bearbeiten klicken" @@ -1639,8 +1446,7 @@ msgstr "Keine Benutzer definiert." msgid "No matching users found." msgstr "Keine zugehörigen Benutzer gefunden." -#: classes/pref/labels.php:22 -#: classes/pref/filters.php:268 +#: classes/pref/labels.php:22 classes/pref/filters.php:268 #: classes/pref/filters.php:725 msgid "Caption" msgstr "Titel" @@ -1672,47 +1478,44 @@ msgstr "Artikel, die auf diesen Filter passen: " #: 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." +msgstr "" +"Keine kürzlich erschienenen Artikel gefunden, die auf diesen Filter passen." #: 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." +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:274 -#: classes/pref/filters.php:729 +#: classes/pref/filters.php:274 classes/pref/filters.php:729 #: classes/pref/filters.php:844 msgid "Match" msgstr "Kriterien" -#: classes/pref/filters.php:288 -#: classes/pref/filters.php:336 -#: classes/pref/filters.php:743 -#: classes/pref/filters.php:770 +#: 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:322 -#: classes/pref/filters.php:756 +#: classes/pref/filters.php:322 classes/pref/filters.php:756 msgid "Apply actions" msgstr "Aktionen anwenden" -#: classes/pref/filters.php:372 -#: classes/pref/filters.php:785 +#: classes/pref/filters.php:372 classes/pref/filters.php:785 msgid "Enabled" msgstr "Aktiviert" -#: classes/pref/filters.php:381 -#: classes/pref/filters.php:788 +#: 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:390 -#: classes/pref/filters.php:791 +#: classes/pref/filters.php:390 classes/pref/filters.php:791 msgid "Inverse matching" msgstr "Invertierte Übereinstimmung" -#: classes/pref/filters.php:402 -#: classes/pref/filters.php:798 +#: classes/pref/filters.php:402 classes/pref/filters.php:798 msgid "Test" msgstr "Test" @@ -1729,14 +1532,12 @@ msgstr "%s innerhalb %s von %s %s" msgid "Combine" msgstr "Zusammenfügen" -#: classes/pref/filters.php:663 -#: classes/pref/feeds.php:1279 +#: 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 +#: classes/pref/filters.php:671 classes/pref/feeds.php:1318 msgid "Rescore articles" msgstr "Artikel neu bewerten" @@ -1752,8 +1553,7 @@ msgstr "Invertiere reguläre Ausdrücke" msgid "on field" msgstr "in Feld" -#: classes/pref/filters.php:864 -#: js/PrefFilterTree.js:45 +#: classes/pref/filters.php:864 js/PrefFilterTree.js:45 #: plugins/digest/digest.js:242 msgid "in" msgstr "in" @@ -1762,8 +1562,7 @@ msgstr "in" msgid "Save rule" msgstr "Regel speichern" -#: classes/pref/filters.php:877 -#: js/functions.js:1013 +#: classes/pref/filters.php:877 js/functions.js:1013 msgid "Add rule" msgstr "Regel hinzufügen" @@ -1779,8 +1578,7 @@ msgstr "mit Parametern:" msgid "Save action" msgstr "Aktion speichern" -#: classes/pref/filters.php:944 -#: js/functions.js:1039 +#: classes/pref/filters.php:944 js/functions.js:1039 msgid "Add action" msgstr "Aktion hinzufügen" @@ -1817,16 +1615,25 @@ msgid "Blacklisted tags" msgstr "Gesperrte Tags" #: classes/pref/prefs.php:27 -msgid "When auto-detecting tags in articles these tags will not be applied (comma-separated list)." -msgstr "Bei der automatischen Erkennung von Tags in Artikeln werden die folgenden nicht verwendet (durch Komma getrennte Liste)." +msgid "" +"When auto-detecting tags in articles these tags will not be applied (comma-" +"separated list)." +msgstr "" +"Bei der automatischen Erkennung von Tags in Artikeln werden die folgenden " +"nicht verwendet (durch Komma getrennte Liste)." #: classes/pref/prefs.php:28 msgid "Automatically mark articles as read" msgstr "Artikel automatisch als gelesen markieren" #: classes/pref/prefs.php:28 -msgid "This option enables marking articles as read automatically while you scroll article list." -msgstr "Diese Option aktiviert das automatische \"Als gelesen markieren\" im kombinierten Anzeigemodus (ausgenommen ist der Neue-Artikel-Feed), während Sie durch die Artikelliste scrollen." +msgid "" +"This option enables marking articles as read automatically while you scroll " +"article list." +msgstr "" +"Diese Option aktiviert das automatische \"Als gelesen markieren\" im " +"kombinierten Anzeigemodus (ausgenommen ist der Neue-Artikel-Feed), während " +"Sie durch die Artikelliste scrollen." #: classes/pref/prefs.php:29 msgid "Automatically expand articles in combined mode" @@ -1837,8 +1644,12 @@ msgid "Combined feed display" msgstr "Kombinierte Feed-Anzeige" #: classes/pref/prefs.php:30 -msgid "Display expanded list of feed articles, instead of separate displays for headlines and article content" -msgstr "Erweiterte Anzeigeliste für Artikel, anstelle von einzelnen Fenstern für Schlagzeilen und Artikelinhalt" +msgid "" +"Display expanded list of feed articles, instead of separate displays for " +"headlines and article content" +msgstr "" +"Erweiterte Anzeigeliste für Artikel, anstelle von einzelnen Fenstern für " +"Schlagzeilen und Artikelinhalt" #: classes/pref/prefs.php:31 msgid "Confirm marking feed as read" @@ -1861,8 +1672,12 @@ msgid "Enable e-mail digest" msgstr "Aktiviere E-Mail-Zusammenfassung" #: classes/pref/prefs.php:35 -msgid "This option enables sending daily digest of new (and unread) headlines on your configured e-mail address" -msgstr "Diese Option aktiviert das Senden einer täglichen Zusammenfassung über neue (und ungelesene) Schlagzeilen an Ihre angegebene E-Mail-Adresse" +msgid "" +"This option enables sending daily digest of new (and unread) headlines on " +"your configured e-mail address" +msgstr "" +"Diese Option aktiviert das Senden einer täglichen Zusammenfassung über neue " +"(und ungelesene) Schlagzeilen an Ihre angegebene E-Mail-Adresse" #: classes/pref/prefs.php:36 msgid "Try to send digests around specified time" @@ -1909,8 +1724,11 @@ msgid "On catchup show next feed" msgstr "Den nächsten Feed anzeigen" #: classes/pref/prefs.php:44 -msgid "Automatically open next feed with unread articles after marking one as read" -msgstr "Automatisch nächsten Feed mit ungelesenen Artikeln laden, nachdem ein Feed als gelesen markiert wurde" +msgid "" +"Automatically open next feed with unread articles after marking one as read" +msgstr "" +"Automatisch nächsten Feed mit ungelesenen Artikeln laden, nachdem ein Feed " +"als gelesen markiert wurde" #: classes/pref/prefs.php:45 msgid "Purge articles after this number of days (0 - disables)" @@ -1920,8 +1738,7 @@ msgstr "Alte Artikel nach dieser Anzahl an Tagen löschen (0 - deaktivert)" msgid "Purge unread articles" msgstr "Ungelesene Artikel löschen" -#: classes/pref/prefs.php:47 -#: plugins/mobile/prefs.php:60 +#: classes/pref/prefs.php:47 plugins/mobile/prefs.php:60 msgid "Reverse headline order (oldest first)" msgstr "Schlagzeilensortierung umkehren (älteste zuerst)" @@ -1939,7 +1756,9 @@ msgstr "Feeds nach Schlagzeilendatum sortieren" #: classes/pref/prefs.php:50 msgid "Use feed-specified date to sort headlines instead of local import date." -msgstr "Benutze feed-spezifisches Datum statt des lokalen Importdatums um Schlagzeilen zu sortieren." +msgstr "" +"Benutze feed-spezifisches Datum statt des lokalen Importdatums um " +"Schlagzeilen zu sortieren." #: classes/pref/prefs.php:51 msgid "Login with an SSL certificate" @@ -1961,8 +1780,7 @@ msgstr "Unsichere Tags aus Artikeln entfernen" msgid "Strip all but most common HTML tags when reading articles." msgstr "Alle außer den meist verwendeten HTML Tags beim Lesen entfernen." -#: classes/pref/prefs.php:54 -#: js/prefs.js:1725 +#: classes/pref/prefs.php:54 js/prefs.js:1725 msgid "Customize stylesheet" msgstr "Benutzerdefiniertes Stylesheet" @@ -1980,7 +1798,9 @@ msgstr "Schlagzeilen in virtuellen Feeds gruppieren" #: classes/pref/prefs.php:56 msgid "Special feeds, labels, and categories are grouped by originating feeds" -msgstr "Spezial-Feeds, Labels und Kategorien sind nach den ursprünglichen Feeds gruppiert" +msgstr "" +"Spezial-Feeds, Labels und Kategorien sind nach den ursprünglichen Feeds " +"gruppiert" #: classes/pref/prefs.php:57 msgid "Select theme" @@ -2006,212 +1826,233 @@ msgstr "Die eingegebenen Passwörter stimmen nicht überein." msgid "Function not supported by authentication module." msgstr "Funktion vom Authentifizierungsmodul nicht unterstützt." -#: classes/pref/prefs.php:120 +#: classes/pref/prefs.php:135 msgid "The configuration was saved." msgstr "Die Einstellungen wurden gespeichert." -#: classes/pref/prefs.php:134 +#: classes/pref/prefs.php:150 #, php-format msgid "Unknown option: %s" msgstr "Unbekannte Option: %s" -#: classes/pref/prefs.php:148 +#: classes/pref/prefs.php:164 msgid "Your personal data has been saved." msgstr "Ihre persönlichen Daten wurden gespeichert." -#: classes/pref/prefs.php:188 +#: classes/pref/prefs.php:204 msgid "Personal data / Authentication" msgstr "Persönliche Daten / Authentifizierung" -#: classes/pref/prefs.php:208 +#: classes/pref/prefs.php:224 msgid "Personal data" msgstr "Persönliche Daten" -#: classes/pref/prefs.php:218 +#: classes/pref/prefs.php:234 msgid "Full name" msgstr "Vollständiger Name" -#: classes/pref/prefs.php:222 +#: classes/pref/prefs.php:238 msgid "E-mail" msgstr "E-Mail" -#: classes/pref/prefs.php:228 +#: classes/pref/prefs.php:244 msgid "Access level" msgstr "Zugriffsberechtigung" -#: classes/pref/prefs.php:238 +#: classes/pref/prefs.php:254 msgid "Save data" msgstr "Speichern" -#: classes/pref/prefs.php:260 +#: classes/pref/prefs.php:276 msgid "Your password is at default value, please change it." msgstr "Sie nutzen das Standard Passwort, bitte ändern Sie es." -#: classes/pref/prefs.php:287 +#: classes/pref/prefs.php:303 msgid "Changing your current password will disable OTP." msgstr "Das Ändern des aktuellen Passworts deaktiviert Einmalpasswörter." -#: classes/pref/prefs.php:292 +#: classes/pref/prefs.php:308 msgid "Old password" msgstr "Altes Passwort" -#: classes/pref/prefs.php:295 +#: classes/pref/prefs.php:311 msgid "New password" msgstr "Neues Passwort" -#: classes/pref/prefs.php:300 +#: classes/pref/prefs.php:316 msgid "Confirm password" msgstr "Passwort bestätigen" -#: classes/pref/prefs.php:310 +#: classes/pref/prefs.php:326 msgid "Change password" msgstr "Passwort ändern" -#: classes/pref/prefs.php:316 +#: classes/pref/prefs.php:332 msgid "One time passwords / Authenticator" msgstr "Einmalpasswörter (OTP) / Authentifikator" -#: classes/pref/prefs.php:320 -msgid "One time passwords are currently enabled. Enter your current password below to disable." -msgstr "Einmalpasswörter sind aktiviert. Gib dein aktuelles Passwort ein, um diese zu deaktivieren." +#: classes/pref/prefs.php:336 +msgid "" +"One time passwords are currently enabled. Enter your current password below " +"to disable." +msgstr "" +"Einmalpasswörter sind aktiviert. Gib dein aktuelles Passwort ein, um diese " +"zu deaktivieren." -#: classes/pref/prefs.php:345 -#: classes/pref/prefs.php:396 +#: classes/pref/prefs.php:361 classes/pref/prefs.php:412 msgid "Enter your password" msgstr "Geben Sie Ihr Passwort ein" -#: classes/pref/prefs.php:356 +#: classes/pref/prefs.php:372 msgid "Disable OTP" msgstr "Einmalpasswörter ausschalten" -#: classes/pref/prefs.php:362 -msgid "You will need a compatible Authenticator to use this. Changing your password would automatically disable OTP." -msgstr "Sie benötigen einen kompatiblen Authentifikator. Sollten Sie Ihr Passwort ändern, wird diese Funktion automatisch ausgeschaltet." +#: classes/pref/prefs.php:378 +msgid "" +"You will need a compatible Authenticator to use this. Changing your password " +"would automatically disable OTP." +msgstr "" +"Sie benötigen einen kompatiblen Authentifikator. Sollten Sie Ihr Passwort " +"ändern, wird diese Funktion automatisch ausgeschaltet." -#: classes/pref/prefs.php:364 +#: classes/pref/prefs.php:380 msgid "Scan the following code by the Authenticator application:" msgstr "Scannen Sie den folgenden Code mit Ihrem Authentifikator:" -#: classes/pref/prefs.php:405 +#: classes/pref/prefs.php:421 msgid "I have scanned the code and would like to enable OTP" -msgstr "Ich habe den Code gescannt und möchte die Anmeldung mit Einmalpasswörtern jetzt aktivieren" +msgstr "" +"Ich habe den Code gescannt und möchte die Anmeldung mit Einmalpasswörtern " +"jetzt aktivieren" -#: classes/pref/prefs.php:413 +#: classes/pref/prefs.php:429 msgid "Enable OTP" msgstr "Einmalpasswörter einschalten" -#: classes/pref/prefs.php:451 +#: classes/pref/prefs.php:475 msgid "Some preferences are only available in default profile." msgstr "Einige Einstellungen sind nur im Standardprofil verfügbar." -#: classes/pref/prefs.php:545 +#: classes/pref/prefs.php:585 msgid "Customize" msgstr "Anpassen" -#: classes/pref/prefs.php:605 +#: classes/pref/prefs.php:645 msgid "Register" msgstr "Registrieren" -#: classes/pref/prefs.php:609 +#: classes/pref/prefs.php:649 msgid "Clear" msgstr "Löschen" -#: classes/pref/prefs.php:615 +#: classes/pref/prefs.php:655 #, php-format msgid "Current server time: %s (UTC)" msgstr "Aktuelle Serverzeit: %s (UTC)" -#: classes/pref/prefs.php:648 +#: classes/pref/prefs.php:688 msgid "Save configuration" msgstr "Einstellungen speichern" -#: classes/pref/prefs.php:651 +#: classes/pref/prefs.php:692 +msgid "Save and exit preferences" +msgstr "Speichern und Einstellungen verlassen" + +#: classes/pref/prefs.php:697 msgid "Manage profiles" msgstr "Profile verwalten" -#: classes/pref/prefs.php:654 +#: classes/pref/prefs.php:700 msgid "Reset to defaults" msgstr "Auf Standardwerte zurücksetzen" -#: classes/pref/prefs.php:678 -#: classes/pref/prefs.php:680 +#: classes/pref/prefs.php:724 classes/pref/prefs.php:726 msgid "Plugins" msgstr "Plugins" -#: classes/pref/prefs.php:682 -msgid "You will need to reload Tiny Tiny RSS for plugin changes to take effect." -msgstr "Du musst Tiny Tiny RSS neu laden, damit Pluginänderungen angewandt werden." +#: classes/pref/prefs.php:728 +msgid "" +"You will need to reload Tiny Tiny RSS for plugin changes to take effect." +msgstr "" +"Du musst Tiny Tiny RSS neu laden, damit Pluginänderungen angewandt werden." -#: classes/pref/prefs.php:684 -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 "Mehr Plugins im tt-rss.org <a class=\"visibleLink\" target=\"_blank\" href=\"http://tt-rss.org/forum/viewforum.php?f=22\">Forum</a> oder im <a target=\"_blank\" class=\"visibleLink\" href=\"http://tt-rss.org/wiki/Plugins\">Wiki</a>." +#: classes/pref/prefs.php:730 +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 "" +"Mehr Plugins im tt-rss.org <a class=\"visibleLink\" target=\"_blank\" href=" +"\"http://tt-rss.org/forum/viewforum.php?f=22\">Forum</a> oder im <a target=" +"\"_blank\" class=\"visibleLink\" href=\"http://tt-rss.org/wiki/Plugins" +"\">Wiki</a>." -#: classes/pref/prefs.php:710 +#: classes/pref/prefs.php:756 msgid "System plugins" msgstr "System-Plugins" -#: classes/pref/prefs.php:714 -#: classes/pref/prefs.php:768 +#: classes/pref/prefs.php:760 classes/pref/prefs.php:814 msgid "Plugin" msgstr "Plugin" -#: classes/pref/prefs.php:715 -#: classes/pref/prefs.php:769 +#: classes/pref/prefs.php:761 classes/pref/prefs.php:815 msgid "Description" msgstr "Beschreibung" -#: classes/pref/prefs.php:716 -#: classes/pref/prefs.php:770 +#: classes/pref/prefs.php:762 classes/pref/prefs.php:816 msgid "Version" msgstr "Version" -#: classes/pref/prefs.php:717 -#: classes/pref/prefs.php:771 +#: classes/pref/prefs.php:763 classes/pref/prefs.php:817 msgid "Author" msgstr "Autor" -#: classes/pref/prefs.php:746 -#: classes/pref/prefs.php:803 +#: classes/pref/prefs.php:792 classes/pref/prefs.php:849 msgid "more info" msgstr "weitere Informationen" -#: classes/pref/prefs.php:755 -#: classes/pref/prefs.php:812 +#: classes/pref/prefs.php:801 classes/pref/prefs.php:858 msgid "Clear data" msgstr "Daten löschen" -#: classes/pref/prefs.php:764 +#: classes/pref/prefs.php:810 msgid "User plugins" msgstr "Benutzer-Plugins" -#: classes/pref/prefs.php:827 +#: classes/pref/prefs.php:873 msgid "Enable selected plugins" msgstr "Ausgewählte Plugins aktivieren" -#: classes/pref/prefs.php:882 -#: classes/pref/prefs.php:900 +#: classes/pref/prefs.php:928 classes/pref/prefs.php:946 msgid "Incorrect password" msgstr "Falsches Passwort" -#: classes/pref/prefs.php:926 +#: classes/pref/prefs.php:972 #, 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." +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:966 +#: classes/pref/prefs.php:1012 msgid "Create profile" msgstr "Profil erstellen" -#: classes/pref/prefs.php:989 -#: classes/pref/prefs.php:1019 +#: classes/pref/prefs.php:1035 classes/pref/prefs.php:1065 msgid "(active)" msgstr "(aktiv)" -#: classes/pref/prefs.php:1053 +#: classes/pref/prefs.php:1099 msgid "Remove selected profiles" msgstr "Ausgewählte Profile entfernen" -#: classes/pref/prefs.php:1055 +#: classes/pref/prefs.php:1101 msgid "Activate profile" msgstr "Profil aktivieren" @@ -2223,47 +2064,43 @@ msgstr "Ankreuzen um das Feld zu aktivieren" msgid "Feed Title" msgstr "Feed-Titel" -#: classes/pref/feeds.php:568 -#: classes/pref/feeds.php:793 +#: classes/pref/feeds.php:568 classes/pref/feeds.php:793 msgid "Update" msgstr "Aktualisieren" -#: classes/pref/feeds.php:583 -#: classes/pref/feeds.php:809 +#: classes/pref/feeds.php:583 classes/pref/feeds.php:809 msgid "Article purging:" msgstr "Artikel löschen:" #: 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)." +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:622 -#: classes/pref/feeds.php:838 +#: 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:634 -#: classes/pref/feeds.php:844 +#: 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:647 -#: classes/pref/feeds.php:850 +#: 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:660 -#: classes/pref/feeds.php:858 +#: classes/pref/feeds.php:660 classes/pref/feeds.php:858 msgid "Do not embed images" msgstr "Bilder nicht einbetten" -#: classes/pref/feeds.php:673 -#: classes/pref/feeds.php:866 +#: classes/pref/feeds.php:673 classes/pref/feeds.php:866 msgid "Cache images locally" msgstr "Bilder lokal zwischenspeichern" -#: classes/pref/feeds.php:685 -#: classes/pref/feeds.php:872 +#: classes/pref/feeds.php:685 classes/pref/feeds.php:872 msgid "Mark updated articles as unread" msgstr "Aktualisierte Artikel als ungelesen markieren" @@ -2283,8 +2120,7 @@ msgstr "Abonnierte Feeds:" msgid "Resets PubSubHubbub subscription status for push-enabled feeds." msgstr "PubSubHubbub-Abonnementstatus für Push-fähige Feeds zurücksetzen." -#: classes/pref/feeds.php:1112 -#: classes/pref/feeds.php:1165 +#: classes/pref/feeds.php:1112 classes/pref/feeds.php:1165 msgid "All done." msgstr "Fertig." @@ -2300,8 +2136,7 @@ msgstr "Inaktive Feeds" msgid "Edit selected feeds" msgstr "Bearbeite ausgewählte Feeds" -#: classes/pref/feeds.php:1281 -#: js/prefs.js:1770 +#: classes/pref/feeds.php:1281 js/prefs.js:1770 msgid "Batch subscribe" msgstr "Mehrere Feeds abonnieren" @@ -2338,8 +2173,12 @@ 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 "Über OPML können Feeds, Filter, Label und Tiny-Tiny-RSS-Einstellungen importiert und exportiert werden." +msgid "" +"Using OPML you can export and import your feeds, filters, labels and Tiny " +"Tiny RSS settings." +msgstr "" +"Über OPML können Feeds, Filter, Label und Tiny-Tiny-RSS-Einstellungen " +"importiert und exportiert werden." #: classes/pref/feeds.php:1372 msgid "Only main settings profile can be migrated using OPML." @@ -2362,12 +2201,21 @@ msgid "Export OPML" msgstr "OPML exportieren" #: 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." +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: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." +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" @@ -2382,8 +2230,12 @@ msgid "Firefox integration" msgstr "Firefox-Integration" #: 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." +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:1423 msgid "Click here to register this site as a feed reader." @@ -2398,8 +2250,12 @@ msgid "Published articles and generated feeds" msgstr "Veröffentlichte Artikel und erzeugte Feeds" #: 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." +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:1441 msgid "Display URL" @@ -2422,16 +2278,18 @@ msgid "Unshare all articles" msgstr "Alle veröffentlichten Artikel zurückziehen" #: 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):" +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:1566 -#: classes/pref/feeds.php:1636 +#: classes/pref/feeds.php:1566 classes/pref/feeds.php:1636 msgid "Click to edit feed" msgstr "Zum Bearbeiten klicken" -#: classes/pref/feeds.php:1584 -#: classes/pref/feeds.php:1656 +#: classes/pref/feeds.php:1584 classes/pref/feeds.php:1656 msgid "Unsubscribe from selected feeds" msgstr "Ausgewählte Feeds abbestellen" @@ -2441,7 +2299,9 @@ 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)" +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" @@ -2452,8 +2312,12 @@ 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." +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." #: plugins/digest/digest_body.php:74 msgid "Hello," @@ -2467,8 +2331,7 @@ msgstr "Reguläre Version" msgid "Close article" msgstr "Artikel schließen" -#: plugins/nsfw/init.php:32 -#: plugins/nsfw/init.php:43 +#: plugins/nsfw/init.php:32 plugins/nsfw/init.php:43 msgid "Not work safe (click to toggle)" msgstr "NSFW (Klicken zum Anzeigen)" @@ -2501,8 +2364,7 @@ msgstr "Altes Passwort ist falsch." #: 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 "Startseite" @@ -2518,21 +2380,15 @@ msgstr "Reguläre Version öffnen" msgid "Enable categories" msgstr "Feedkategorien aktivieren" -#: 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 "AN" -#: 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 "AUS" @@ -2552,15 +2408,12 @@ msgstr "Gelesene Artikel und Feeds verstecken" msgid "Sort feeds by unread count" msgstr "Feeds nach Anzahl der ungelesenen Artikel sortieren" -#: plugins/mailto/init.php:52 -#: plugins/mailto/init.php:58 -#: plugins/mail/init.php:66 -#: plugins/mail/init.php:72 +#: plugins/mailto/init.php:52 plugins/mailto/init.php:58 +#: plugins/mail/init.php:66 plugins/mail/init.php:72 msgid "[Forwarded]" msgstr "[Weitergeleitet]" -#: plugins/mailto/init.php:52 -#: plugins/mail/init.php:66 +#: plugins/mailto/init.php:52 plugins/mail/init.php:66 msgid "Multiple articles" msgstr "Mehrere Artikel" @@ -2573,8 +2426,11 @@ msgid "Forward selected article(s) by email." msgstr "Markierte(n) Artikel per E-Mail weiterleiten" #: plugins/mailto/init.php:81 -msgid "You should be able to edit the message before sending in your mail client." -msgstr "Sie können die Nachricht bearbeiten, bevor Sie diese mit Ihrem Mailclienten abschicken." +msgid "" +"You should be able to edit the message before sending in your mail client." +msgstr "" +"Sie können die Nachricht bearbeiten, bevor Sie diese mit Ihrem Mailclienten " +"abschicken." #: plugins/mailto/init.php:86 msgid "Close this dialog" @@ -2585,8 +2441,13 @@ msgid "Bookmarklets" msgstr "Lesezeichen" #: plugins/bookmarklets/init.php:24 -msgid "Drag the link below to your browser toolbar, open the feed you're interested in in your browser and click on the link to subscribe to it." -msgstr "Ziehen Sie den folgenden Link in Ihre Browser-Toolbar, öffnen Sie den Feed, an dem Sie interessiert sind, in Ihren Browser und klicken auf den Link, um ihn zu abonnieren." +msgid "" +"Drag the link below to your browser toolbar, open the feed you're interested " +"in in your browser and click on the link to subscribe to it." +msgstr "" +"Ziehen Sie den folgenden Link in Ihre Browser-Toolbar, öffnen Sie den Feed, " +"an dem Sie interessiert sind, in Ihren Browser und klicken auf den Link, um " +"ihn zu abonnieren." #: plugins/bookmarklets/init.php:28 #, php-format @@ -2599,7 +2460,9 @@ msgstr "Abonnieren in Tiny Tiny RSS" #: plugins/bookmarklets/init.php:34 msgid "Use this bookmarklet to publish arbitrary pages using Tiny Tiny RSS" -msgstr "Benutzen Sie dieses Lesezeichen, um beliebige Seiten mit Tiny Tiny RSS zu teilen" +msgstr "" +"Benutzen Sie dieses Lesezeichen, um beliebige Seiten mit Tiny Tiny RSS zu " +"teilen" #: plugins/import_export/init.php:61 msgid "Import and export" @@ -2610,8 +2473,12 @@ msgid "Article archive" msgstr "Artikelarchiv" #: plugins/import_export/init.php:65 -msgid "You can export and import your Starred and Archived articles for safekeeping or when migrating between tt-rss instances." -msgstr "Die markierten und archivierten Artikel können zur Aufbewahrung oder Migration zwischen verschiedenen Tiny Tiny RSS Instanzen exportiert werden." +msgid "" +"You can export and import your Starred and Archived articles for safekeeping " +"or when migrating between tt-rss instances." +msgstr "" +"Die markierten und archivierten Artikel können zur Aufbewahrung oder " +"Migration zwischen verschiedenen Tiny Tiny RSS Instanzen exportiert werden." #: plugins/import_export/init.php:68 msgid "Export my data" @@ -2664,8 +2531,12 @@ msgstr "Bereite Daten vor" #: plugins/import_export/init.php:423 #, php-format -msgid "Could not upload file. You might need to adjust upload_max_filesize in PHP.ini (current value = %s)" -msgstr "Datei konnte nicht hochgeladen werden. Möglicherweise muss upload_max_filesize in der PHP.ini angepasst werden. (Aktueller Wert = %s)" +msgid "" +"Could not upload file. You might need to adjust upload_max_filesize in PHP." +"ini (current value = %s)" +msgstr "" +"Datei konnte nicht hochgeladen werden. Möglicherweise muss " +"upload_max_filesize in der PHP.ini angepasst werden. (Aktueller Wert = %s)" #: plugins/mail/init.php:87 msgid "From:" @@ -2683,8 +2554,7 @@ msgstr "Betreff:" msgid "Send e-mail" msgstr "E-Mail versenden" -#: plugins/note/init.php:28 -#: plugins/note/note.js:11 +#: plugins/note/init.php:28 plugins/note/note.js:11 msgid "Edit article note" msgstr "Artikelnotizen bearbeiten" @@ -2713,15 +2583,15 @@ msgstr "Fertig. %d von %d Artikeln importiert." msgid "The document has incorrect format." msgstr "Das Dokumentenformat ist fehlerhaft" -#: plugins/googlereaderimport/init.php:326 +#: plugins/googlereaderimport/init.php:328 msgid "Import starred or shared items from Google Reader" msgstr "Importiere markierte oder geteilte Einträge aus dem Google Reader" -#: plugins/googlereaderimport/init.php:330 +#: plugins/googlereaderimport/init.php:332 msgid "Paste your starred.json or shared.json into the form below." msgstr "Wählen Sie ihre starred.json oder shared.json aus." -#: plugins/googlereaderimport/init.php:344 +#: plugins/googlereaderimport/init.php:346 msgid "Import my Starred items" msgstr "Importiere meine markierten Einträge" @@ -2729,35 +2599,30 @@ msgstr "Importiere meine markierten Einträge" msgid "Linked" msgstr "Verbunden" -#: plugins/instances/init.php:207 -#: plugins/instances/init.php:399 +#: 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: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 +#: 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: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 +#: 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." +msgstr "" +"Benutzen Sie den selben Zugriffschlüssel für beide verbundenen Instanzen." -#: plugins/instances/init.php:244 -#: plugins/instances/init.php:433 +#: plugins/instances/init.php:244 plugins/instances/init.php:433 msgid "Generate new key" msgstr "Neuen Zugriffsschlüssel erzeugen" @@ -2766,8 +2631,13 @@ msgid "Link instance" msgstr "Instanz verbinden" #: plugins/instances/init.php:307 -msgid "You can connect other instances of Tiny Tiny RSS to this one to share Popular feeds. Link to this instance of Tiny Tiny RSS by using this URL:" -msgstr "Sie können andere Instanzen von Tiny Tiny RSS mit dieser verbinden, um beliebte Feeds zu teilen. Verbinden Sie diese Instanz von Tiny Tiny RSS mit folgender URL:" +msgid "" +"You can connect other instances of Tiny Tiny RSS to this one to share " +"Popular feeds. Link to this instance of Tiny Tiny RSS by using this URL:" +msgstr "" +"Sie können andere Instanzen von Tiny Tiny RSS mit dieser verbinden, um " +"beliebte Feeds zu teilen. Verbinden Sie diese Instanz von Tiny Tiny RSS mit " +"folgender URL:" #: plugins/instances/init.php:317 msgid "Last connected" @@ -2793,8 +2663,7 @@ msgstr "Per URL teilen" msgid "You can share this article by the following unique URL:" msgstr "Sie können diesen Artikel über folgende eindeutige URL teilen:" -#: plugins/updater/init.php:321 -#: plugins/updater/init.php:338 +#: plugins/updater/init.php:321 plugins/updater/init.php:338 #: plugins/updater/updater.js:10 msgid "Update Tiny Tiny RSS" msgstr "Tiny Tiny RSS updaten" @@ -2804,8 +2673,12 @@ msgid "Your Tiny Tiny RSS installation is up to date." msgstr "Tiny Tiny RSS ist auf dem neuesten Stand." #: plugins/updater/init.php:351 -msgid "Do not close this dialog until updating is finished. Backup your tt-rss directory before continuing." -msgstr "Diesen Dialog nicht Schließen, bis das Update abgeschlossen ist. Sichern Sie ihr tt-rss Verzeichnis, bevor Sie fortfahren." +msgid "" +"Do not close this dialog until updating is finished. Backup your tt-rss " +"directory before continuing." +msgstr "" +"Diesen Dialog nicht Schließen, bis das Update abgeschlossen ist. Sichern Sie " +"ihr tt-rss Verzeichnis, bevor Sie fortfahren." #: plugins/updater/init.php:354 msgid "Ready to update." @@ -2815,27 +2688,33 @@ msgstr "Bereit zum Updaten." msgid "Start update" msgstr "Starte update" -#: js/feedlist.js:392 -#: js/feedlist.js:420 -#: plugins/digest/digest.js:26 +#: js/feedlist.js:394 js/feedlist.js:422 plugins/digest/digest.js:26 msgid "Mark all articles in %s as read?" msgstr "Alle Artikel in %s als gelesen markieren?" -#: js/feedlist.js:411 +#: js/feedlist.js:413 msgid "Mark all articles in %s older than 1 day as read?" -msgstr "Alle Artikel in %s, die älter als einen Tag sind, als gelesen markieren?" +msgstr "" +"Alle Artikel in %s, die älter als einen Tag sind, als gelesen markieren?" -#: js/feedlist.js:414 +#: js/feedlist.js:416 msgid "Mark all articles in %s older than 1 week as read?" -msgstr "Alle Artikel in %s, die älter als eine Woche sind, als gelesen markieren?" +msgstr "" +"Alle Artikel in %s, die älter als eine Woche sind, als gelesen markieren?" -#: js/feedlist.js:417 +#: js/feedlist.js:419 msgid "Mark all articles in %s older than 2 weeks as read?" -msgstr "Alle Artikel in %s, die älter als 2 Wochen sind, als gelesen markieren?" +msgstr "" +"Alle Artikel in %s, die älter als 2 Wochen sind, als gelesen markieren?" #: 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 "Sind Sie sicher, dass Sie diesen Fehler an tt-rss.org melden wollen? Der Bericht enthält Ihre Browser-Informationen. Ihre IP-Adresse würde in der Datenbank gespeichert werden." +msgid "" +"Are you sure to report this exception to tt-rss.org? The report will include " +"your browser information. Your IP would be saved in the database." +msgstr "" +"Sind Sie sicher, dass Sie diesen Fehler an tt-rss.org melden wollen? Der " +"Bericht enthält Ihre Browser-Informationen. Ihre IP-Adresse würde in der " +"Datenbank gespeichert werden." #: js/functions.js:214 msgid "close" @@ -2918,15 +2797,18 @@ msgid "Create Filter" msgstr "Filter erstellen" #: js/functions.js:1191 -msgid "Reset subscription? Tiny Tiny RSS will try to subscribe to the notification hub again on next feed update." -msgstr "Abonnement zurücksetzen? Tiny Tiny RSS wird versuchen, sich bei der nächsten Feed-Aktualisierung erneut beim Benachrichtigungs-Hub anzumelden." +msgid "" +"Reset subscription? Tiny Tiny RSS will try to subscribe to the notification " +"hub again on next feed update." +msgstr "" +"Abonnement zurücksetzen? Tiny Tiny RSS wird versuchen, sich bei der nächsten " +"Feed-Aktualisierung erneut beim Benachrichtigungs-Hub anzumelden." #: js/functions.js:1202 msgid "Subscription reset." msgstr "Abonnement zurückgesetzt." -#: js/functions.js:1212 -#: js/tt-rss.js:619 +#: js/functions.js:1212 js/tt-rss.js:619 msgid "Unsubscribe from %s?" msgstr "%s abbestellen?" @@ -2942,14 +2824,11 @@ msgstr "Bitte geben Sie den Kategorietitel ein:" msgid "Generate new syndication address for this feed?" msgstr "Neue Veröffentlichungsadresse für diesen Feed erzeugen?" -#: js/functions.js:1358 -#: js/prefs.js:1222 +#: js/functions.js:1358 js/prefs.js:1222 msgid "Trying to change address..." msgstr "Versuche, die Adresse zu ändern..." -#: js/functions.js:1545 -#: js/tt-rss.js:396 -#: js/tt-rss.js:600 +#: js/functions.js:1545 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." @@ -2957,9 +2836,7 @@ msgstr "Sie können diese Art von Feed nicht bearbeiten." msgid "Edit Feed" msgstr "Feed bearbeiten" -#: js/functions.js:1566 -#: js/prefs.js:194 -#: js/prefs.js:749 +#: js/functions.js:1566 js/prefs.js:194 js/prefs.js:749 msgid "Saving data..." msgstr "Speichere Daten..." @@ -2967,33 +2844,29 @@ msgstr "Speichere Daten..." msgid "More Feeds" msgstr "Weitere Feeds" -#: js/functions.js:1659 -#: js/functions.js:1769 -#: 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/functions.js:1659 js/functions.js:1769 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 "Keine Feeds ausgewählt." #: js/functions.js:1701 -msgid "Remove selected feeds from the archive? Feeds with stored articles will not be removed." -msgstr "Die ausgewählten Feeds aus dem Archiv löschen? Feeds mit gespeicherten Artikeln werden nicht gelöscht" +msgid "" +"Remove selected feeds from the archive? Feeds with stored articles will not " +"be removed." +msgstr "" +"Die ausgewählten Feeds aus dem Archiv löschen? Feeds mit gespeicherten " +"Artikeln werden nicht gelöscht" #: js/functions.js:1740 msgid "Feeds with update errors" msgstr "Feeds mit Aktualisierungsfehlern" -#: js/functions.js:1751 -#: js/prefs.js:1180 +#: js/functions.js:1751 js/prefs.js:1180 msgid "Remove selected feeds?" msgstr "Ausgewählte Feeds entfernen?" -#: js/functions.js:1754 -#: js/prefs.js:1183 +#: js/functions.js:1754 js/prefs.js:1183 msgid "Removing selected feeds..." msgstr "Ausgewählte Feeds werden entfernt..." @@ -3049,23 +2922,23 @@ msgstr "Ausgewählte Label entfernen?" msgid "Removing selected labels..." msgstr "Ausgewählte Label werden entfernt..." -#: js/prefs.js:295 -#: js/prefs.js:1384 +#: js/prefs.js:295 js/prefs.js:1384 msgid "No labels are selected." msgstr "Keine Label ausgewählt." #: js/prefs.js:309 -msgid "Remove selected users? Neither default admin nor your account will be removed." -msgstr "Ausgewählte Benutzer löschen? Weder der Administrator noch Ihr eigenes Konto werden gelöscht." +msgid "" +"Remove selected users? Neither default admin nor your account will be " +"removed." +msgstr "" +"Ausgewählte Benutzer löschen? Weder der Administrator noch Ihr eigenes Konto " +"werden gelöscht." #: js/prefs.js:312 msgid "Removing selected users..." msgstr "Ausgewählte Benutzer werden entfernt..." -#: js/prefs.js:326 -#: js/prefs.js:507 -#: js/prefs.js:528 -#: js/prefs.js:567 +#: js/prefs.js:326 js/prefs.js:507 js/prefs.js:528 js/prefs.js:567 msgid "No users are selected." msgstr "Keine Benutzer ausgewählt." @@ -3077,9 +2950,7 @@ msgstr "Ausgewählte Filter entfernen?" msgid "Removing selected filters..." msgstr "Ausgewählte Filter werden entfernt..." -#: js/prefs.js:359 -#: js/prefs.js:597 -#: js/prefs.js:616 +#: js/prefs.js:359 js/prefs.js:597 js/prefs.js:616 msgid "No filters are selected." msgstr "Keine Filter ausgewählt." @@ -3119,9 +2990,7 @@ msgstr "Feld für Benutzername darf nicht leer sein." msgid "Saving user..." msgstr "Benutzer werden gespeichert..." -#: js/prefs.js:512 -#: js/prefs.js:533 -#: js/prefs.js:572 +#: js/prefs.js:512 js/prefs.js:533 js/prefs.js:572 msgid "Please select only one user." msgstr "Bitte nur einen Benutzer auswählen." @@ -3165,8 +3034,7 @@ msgstr "OPML Import" msgid "Please choose an OPML file first." msgstr "Bitte zuerst eine OPML-Datei auswählen." -#: js/prefs.js:815 -#: 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 "Importiere, bitte warten..." @@ -3176,8 +3044,11 @@ msgid "Reset to defaults?" msgstr "Auf Standardwerte zurücksetzen?" #: 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." +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:1093 msgid "Removing category..." @@ -3225,7 +3096,8 @@ msgstr "Ausgewählte Feed werden neu bewertet..." #: 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." +msgstr "" +"Alle Artikel neu bewerten? Dieser Vorgang kann viel Zeit in Anspruch nehmen." #: js/prefs.js:1353 msgid "Rescoring feeds..." @@ -3240,8 +3112,11 @@ msgid "Settings Profiles" msgstr "Einstellungsprofile" #: 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." +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:1419 msgid "Removing selected profiles..." @@ -3251,13 +3126,11 @@ msgstr "Ausgewählte Profile werden entfernt..." msgid "No profiles are selected." msgstr "Keine Profile ausgewählt." -#: js/prefs.js:1442 -#: js/prefs.js:1495 +#: js/prefs.js:1442 js/prefs.js:1495 msgid "Activate selected profile?" msgstr "Ausgewählte Profile entfernen?" -#: js/prefs.js:1458 -#: js/prefs.js:1511 +#: js/prefs.js:1458 js/prefs.js:1511 msgid "Please choose a profile to activate." msgstr "Bitte ein Profil zum Aktivieren auswählen." @@ -3269,8 +3142,7 @@ msgstr "Profil wird erstellt..." msgid "This will invalidate all previously generated feed URLs. Continue?" msgstr "Alle zuvor erstellten Feed-URLs werden ungültig. Fortfahren?" -#: js/prefs.js:1522 -#: js/prefs.js:1541 +#: js/prefs.js:1522 js/prefs.js:1541 msgid "Clearing URLs..." msgstr "Leere URLs..." @@ -3322,8 +3194,7 @@ msgstr "Artikel nach Tag auswählen" 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:765 +#: js/tt-rss.js:613 js/tt-rss.js:765 msgid "Please select some feed first." msgstr "Bitte erst einen Feed auswählen." @@ -3343,141 +3214,133 @@ msgstr "Artikel werden neu bewertet..." msgid "New version available!" msgstr "Neue Version verfügbar!" -#: js/viewfeed.js:104 +#: js/viewfeed.js:106 msgid "Cancel search" msgstr "Suche abbrechen" -#: js/viewfeed.js:438 -#: plugins/digest/digest.js:258 +#: js/viewfeed.js:441 plugins/digest/digest.js:258 #: plugins/digest/digest.js:714 msgid "Unstar article" msgstr "Artikelmarkierung entfernen" -#: js/viewfeed.js:443 -#: plugins/digest/digest.js:260 +#: js/viewfeed.js:446 plugins/digest/digest.js:260 #: plugins/digest/digest.js:718 msgid "Star article" msgstr "Artikel markieren" -#: js/viewfeed.js:476 -#: plugins/digest/digest.js:263 +#: js/viewfeed.js:479 plugins/digest/digest.js:263 #: plugins/digest/digest.js:749 msgid "Unpublish article" msgstr "Artikelveröffentlichung widerrufen" -#: js/viewfeed.js:481 -#: plugins/digest/digest.js:265 +#: js/viewfeed.js:484 plugins/digest/digest.js:265 #: plugins/digest/digest.js:754 msgid "Publish article" msgstr "Artikel veröffentlichen" -#: js/viewfeed.js:677 -#: js/viewfeed.js:705 -#: js/viewfeed.js:732 -#: js/viewfeed.js:795 -#: js/viewfeed.js:829 -#: js/viewfeed.js:949 -#: js/viewfeed.js:992 -#: js/viewfeed.js:1045 -#: js/viewfeed.js:2051 -#: plugins/mailto/init.js:7 +#: js/viewfeed.js:680 js/viewfeed.js:708 js/viewfeed.js:735 js/viewfeed.js:798 +#: js/viewfeed.js:832 js/viewfeed.js:952 js/viewfeed.js:995 +#: js/viewfeed.js:1048 js/viewfeed.js:2060 plugins/mailto/init.js:7 #: plugins/mail/mail.js:7 msgid "No articles are selected." msgstr "Keine Artikel ausgewählt." -#: js/viewfeed.js:957 +#: js/viewfeed.js:960 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:959 +#: js/viewfeed.js:962 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:1001 +#: js/viewfeed.js:1004 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:1004 +#: js/viewfeed.js:1007 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:1006 -msgid "Please note that unstarred articles might get purged on next feed update." -msgstr "Bitte beachten Sie, das nicht markierte Artikel beim nächsten Update der Feeds gelöscht werden könnten." +#: js/viewfeed.js:1009 +msgid "" +"Please note that unstarred articles might get purged on next feed update." +msgstr "" +"Bitte beachten Sie, das nicht markierte Artikel beim nächsten Update der " +"Feeds gelöscht werden könnten." -#: js/viewfeed.js:1051 +#: js/viewfeed.js:1054 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:1075 +#: js/viewfeed.js:1078 msgid "Edit article Tags" msgstr "Artikel-Tags bearbeiten" -#: js/viewfeed.js:1081 +#: js/viewfeed.js:1084 msgid "Saving article tags..." msgstr "Artikel-Tags werden gespeichert..." -#: js/viewfeed.js:1278 +#: js/viewfeed.js:1287 msgid "No article is selected." msgstr "Kein Artikel ausgewählt." -#: js/viewfeed.js:1313 +#: js/viewfeed.js:1322 msgid "No articles found to mark" msgstr "Keine Artikel zum markieren gefunden" -#: js/viewfeed.js:1315 +#: js/viewfeed.js:1324 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:1827 +#: js/viewfeed.js:1836 msgid "Open original article" msgstr "Originalartikel öffnen" -#: js/viewfeed.js:1833 +#: js/viewfeed.js:1842 msgid "Display article URL" msgstr "Zeige Artikel-URL an" -#: js/viewfeed.js:1852 +#: js/viewfeed.js:1861 msgid "Toggle marked" msgstr "Markierung ein-/ausschalten" -#: js/viewfeed.js:1933 +#: js/viewfeed.js:1942 msgid "Assign label" msgstr "Label zuweisen" -#: js/viewfeed.js:1938 +#: js/viewfeed.js:1947 msgid "Remove label" msgstr "Label entfernen" -#: js/viewfeed.js:1962 +#: js/viewfeed.js:1971 msgid "Playing..." msgstr "Abspielen..." -#: js/viewfeed.js:1963 +#: js/viewfeed.js:1972 msgid "Click to pause" msgstr "Zum Pausieren klicken" -#: js/viewfeed.js:2020 +#: js/viewfeed.js:2029 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:2062 +#: js/viewfeed.js:2071 msgid "Please enter new score for this article:" msgstr "Bitte geben Sie eine neue Bewertung für diesen Artikel ab:" -#: js/viewfeed.js:2095 +#: js/viewfeed.js:2104 msgid "Article URL:" msgstr "Artikel-URL:" @@ -3511,10 +3374,10 @@ msgstr "Mehr laden..." #: plugins/embed_original/init.js:6 msgid "Sorry, your browser does not support sandboxed iframes." -msgstr "Entschuldigung, dein Browser unterstützt keine \"Sandbox\" für iframes." +msgstr "" +"Entschuldigung, dein Browser unterstützt keine \"Sandbox\" für iframes." -#: plugins/mailto/init.js:21 -#: plugins/mail/mail.js:21 +#: plugins/mailto/init.js:21 plugins/mail/mail.js:21 msgid "Forward article by email" msgstr "Artikel via E-Mail weiterleiten" @@ -3523,10 +3386,18 @@ msgid "Export Data" msgstr "Daten exportieren" #: 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] "Fertig, %d Artikel exportiert. <a class='visibleLink' href='%u'>Hier</a> herunterladen." -msgstr[1] "Fertig, %d Artikel exportiert. <a class='visibleLink' href='%u'>Hier</a> herunterladen." +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] "" +"Fertig, %d Artikel exportiert. <a class='visibleLink' href='%u'>Hier</a> " +"herunterladen." +msgstr[1] "" +"Fertig, %d Artikel exportiert. <a class='visibleLink' href='%u'>Hier</a> " +"herunterladen." #: plugins/import_export/import_export.js:93 msgid "Data Import" @@ -3564,8 +3435,7 @@ msgstr "Ausgewählte Instanzen entfernen?" msgid "Removing selected instances..." msgstr "Ausgewählte Instanzen werden entfernt..." -#: plugins/instances/instances.js:139 -#: plugins/instances/instances.js:151 +#: plugins/instances/instances.js:139 plugins/instances/instances.js:151 msgid "No instances are selected." msgstr "Keine Instanzen ausgewählt." @@ -3578,15 +3448,76 @@ msgid "Share article by URL" msgstr "Artikel über URL teilen" #: plugins/updater/updater.js:58 -msgid "Live updating is considered experimental. Backup your tt-rss directory before continuing. Please type 'yes' to continue." -msgstr "Direktes Updaten ist noch experimentell. Sichern Sie Ihr tt-rss Verzeichnis, bevor Sie fortfahren. Schreiben Sie 'yes' zum fortfahren." +msgid "" +"Live updating is considered experimental. Backup your tt-rss directory " +"before continuing. Please type 'yes' to continue." +msgstr "" +"Direktes Updaten ist noch experimentell. Sichern Sie Ihr tt-rss Verzeichnis, " +"bevor Sie fortfahren. Schreiben Sie 'yes' zum fortfahren." + +#~ msgid "Could not update database" +#~ msgstr "Konnte die Datenbank nicht aktualisieren" + +#~ msgid "Could not find necessary schema file, need version:" +#~ msgstr "Konnte die notwendige Schema-Datei nicht finden, benötige Version:" + +#~ msgid ", found: " +#~ msgstr ", gefunden: " + +#~ msgid "Tiny Tiny RSS database is up to date." +#~ msgstr "Tiny Tiny RSS Datenbank ist auf dem neusten Stand." + +#~ msgid "Please backup your database before proceeding." +#~ msgstr "Bitte sichern Sie Ihre Datenbank bevor Sie fortfahren." + +#~ msgid "" +#~ "Your Tiny Tiny RSS database needs update to the latest version (<b>%d</b> " +#~ "to <b>%d</b>)." +#~ msgstr "" +#~ "Ihre Tiny Tiny RSS Datenbank benötigt eine Aktualisierung auf die neuste " +#~ "Version (<b>%d</b> nach <b>%d</b>)." + +#~ msgid "Performing updates..." +#~ msgstr "Führe Aktualisierungen durch..." + +#~ msgid "Updating to version %d..." +#~ msgstr "Aktualisiere auf Version %d..." + +#~ msgid "Checking version... " +#~ msgstr "Überprüfe Version..." + +#~ msgid "OK!" +#~ msgstr "OK!" + +#~ msgid "ERROR!" +#~ msgstr "FEHLER!" + +#~ 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] "" +#~ "Beendet. <b>%d</b> Aktualisierung auf Schema Version <b>%d</b> " +#~ "durchgeführt." +#~ msgstr[1] "" +#~ "Beendet. <b>%d</b> Aktualisierungen auf Schema Version <b>%d</b> " +#~ "durchgeführt." + +#~ msgid "Your database schema is from a newer version of Tiny Tiny RSS." +#~ msgstr "Ihr Datenbankschema stammt von einer neueren Tiny Tiny RSS Version." + +#~ msgid "Found schema version: <b>%d</b>, required: <b>%d</b>." +#~ msgstr "Gefundene Schemaversion: <b>%d</b>, benötigt: <b>%d</b>." + +#~ msgid "" +#~ "Schema upgrade impossible. Please update Tiny Tiny RSS files to the newer " +#~ "version and continue." +#~ msgstr "" +#~ "Aktualisierung des Schemas nicht möglich. Bitte aktualisieren Sie die " +#~ "Tiny Tiny RSS Dateien auf die neuere Version und fahren Sie fort." #~ msgid "Mark feed as read" #~ msgstr "Feed als gelesen markieren" -#~ msgid "Title" -#~ msgstr "Titel" - #~ msgid "Title or Content" #~ msgstr "Titel oder Inhalt" @@ -3611,11 +3542,21 @@ msgstr "Direktes Updaten ist noch experimentell. Sichern Sie Ihr tt-rss Verzeich #~ msgid "Modify score" #~ msgstr "Bewertung ändern" -#~ msgid "This option is useful when you are reading several planet-type aggregators with partially colliding userbase. When disabled, it forces same posts from different feeds to appear only once." -#~ msgstr "Diese Option dient zum Lesen von Feedsammlungen mit teilweise wiederkehrenden Artikeln. Ist diese Option deaktiviert, wird ein Artikel von unterschiedlichen Feedsquellen nur einmal angezeigt." - -#~ msgid "When this option is enabled, headlines in Special feeds and Labels are grouped by feeds" -#~ msgstr "Wenn diese Option aktiviert ist, werden Schlagzeilen in Sonderfeeds und Labels nach Feeds gruppiert" +#~ msgid "" +#~ "This option is useful when you are reading several planet-type " +#~ "aggregators with partially colliding userbase. When disabled, it forces " +#~ "same posts from different feeds to appear only once." +#~ msgstr "" +#~ "Diese Option dient zum Lesen von Feedsammlungen mit teilweise " +#~ "wiederkehrenden Artikeln. Ist diese Option deaktiviert, wird ein Artikel " +#~ "von unterschiedlichen Feedsquellen nur einmal angezeigt." + +#~ msgid "" +#~ "When this option is enabled, headlines in Special feeds and Labels are " +#~ "grouped by feeds" +#~ msgstr "" +#~ "Wenn diese Option aktiviert ist, werden Schlagzeilen in Sonderfeeds und " +#~ "Labels nach Feeds gruppiert" #~ msgid "Enable external API" #~ msgstr "Externe API aktivieren" @@ -3657,7 +3598,9 @@ msgstr "Direktes Updaten ist noch experimentell. Sichern Sie Ihr tt-rss Verzeich #~ msgstr "Fertig." #~ msgid "Enable the options you wish to apply using checkboxes on the right:" -#~ msgstr "Benutzen Sie die Auswahlkästchen auf der rechten Seite um die gewünschen Optionen anzuwenden:" +#~ msgstr "" +#~ "Benutzen Sie die Auswahlkästchen auf der rechten Seite um die gewünschen " +#~ "Optionen anzuwenden:" #~ msgid "New articles available in this feed (click to show)" #~ msgstr "Neue Artikel verfügbar (klicken zum Anzeigen)" @@ -3695,8 +3638,12 @@ msgstr "Direktes Updaten ist noch experimentell. Sichern Sie Ihr tt-rss Verzeich #~ msgid "Back to feeds" #~ msgstr "Zurück zu den Feeds" -#~ msgid "This will clear your stored authentication information for Twitter. Continue?" -#~ msgstr "Dies wird Ihre gespeicherten Authentifizierungsinformationen für Twitter löschen. Fortfahren?" +#~ msgid "" +#~ "This will clear your stored authentication information for Twitter. " +#~ "Continue?" +#~ msgstr "" +#~ "Dies wird Ihre gespeicherten Authentifizierungsinformationen für Twitter " +#~ "löschen. Fortfahren?" #~ msgid "Clearing credentials..." #~ msgstr "Berechtigungen werden gelöscht..." @@ -3795,8 +3742,12 @@ msgstr "Direktes Updaten ist noch experimentell. Sichern Sie Ihr tt-rss Verzeich #~ msgid "Focus search (if present)" #~ msgstr "Fokussierte Suche (wenn gewählt)" -#~ msgid "<b>Note:</b> not all actions may be available, depending on Tiny Tiny RSS configuration and your access level." -#~ msgstr "<b>Anmerkung:</b> Abhängig von Ihren Tiny-Tiny-RSS-Einstellungen und Zugriffsrechten könnten nicht alle Aktionen verfügbar sein." +#~ msgid "" +#~ "<b>Note:</b> not all actions may be available, depending on Tiny Tiny RSS " +#~ "configuration and your access level." +#~ msgstr "" +#~ "<b>Anmerkung:</b> Abhängig von Ihren Tiny-Tiny-RSS-Einstellungen und " +#~ "Zugriffsrechten könnten nicht alle Aktionen verfügbar sein." #~ msgid "Open article in new tab" #~ msgstr "Artikel in neuem Reiter öffnen" @@ -3871,7 +3822,9 @@ msgstr "Direktes Updaten ist noch experimentell. Sichern Sie Ihr tt-rss Verzeich #~ msgstr "Mit Twitter verbinden" #~ msgid "Could not connect to Twitter. Refresh the page or try again later." -#~ msgstr "Konnte nicht zu Twitter verbinden. Aktualisieren Sie die Seite oder versuchen es später erneut." +#~ msgstr "" +#~ "Konnte nicht zu Twitter verbinden. Aktualisieren Sie die Seite oder " +#~ "versuchen es später erneut." #~ msgid "Congratulations! You have successfully registered with Twitter." #~ msgstr "Glückwunsch! Sie haben sich erfolgreich mit Twitter verbunden." @@ -3895,7 +3848,8 @@ msgstr "Direktes Updaten ist noch experimentell. Sichern Sie Ihr tt-rss Verzeich #~ msgstr "Keine Feedkategorien definiert." #~ msgid "<b>Hint:</b> you can drag feeds and categories around." -#~ msgstr "<b>Hinweis</b>: Sie können Feeds und Kategorien mit der Maus herumziehen." +#~ msgstr "" +#~ "<b>Hinweis</b>: Sie können Feeds und Kategorien mit der Maus herumziehen." #~ msgid "Subscribing using bookmarklet" #~ msgstr "Mit Bookmarklet abonnieren" @@ -3903,11 +3857,19 @@ msgstr "Direktes Updaten ist noch experimentell. Sichern Sie Ihr tt-rss Verzeich #~ 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 "Bevor Sie Ihre Twitter-Feeds aktualisieren können, müssen Sie diese Instanz von Tiny Tiny RSS bei Twitter registrieren." +#~ msgid "" +#~ "Before you can update your Twitter feeds, you must register this instance " +#~ "of Tiny Tiny RSS with Twitter.com." +#~ msgstr "" +#~ "Bevor Sie Ihre Twitter-Feeds aktualisieren können, müssen Sie diese " +#~ "Instanz von Tiny Tiny RSS bei Twitter registrieren." -#~ msgid "You have been successfully registered with Twitter.com and should be able to access your Twitter feeds." -#~ msgstr "Sie haben diese Instanz erfolgreich mit Twitter verbunden und sollten nun auf Ihre Twitter-Feeds zugreifen können." +#~ msgid "" +#~ "You have been successfully registered with Twitter.com and should be able " +#~ "to access your Twitter feeds." +#~ msgstr "" +#~ "Sie haben diese Instanz erfolgreich mit Twitter verbunden und sollten nun " +#~ "auf Ihre Twitter-Feeds zugreifen können." #~ msgid "Register with Twitter.com" #~ msgstr "Mit Twitter registrieren" @@ -3924,5 +3886,9 @@ msgstr "Direktes Updaten ist noch experimentell. Sichern Sie Ihr tt-rss Verzeich #~ msgid "Filter Test Results" #~ msgstr "Filtertestergebnis" -#~ msgid "When \"Mark as read\" button is clicked in toolbar, automatically open next feed with unread articles." -#~ msgstr "Beim Klick auf \"Als gelesen markieren\" in der Toolbar, automatisch nächsten Feed mit ungelesenen Artikeln öffnen." +#~ msgid "" +#~ "When \"Mark as read\" button is clicked in toolbar, automatically open " +#~ "next feed with unread articles." +#~ msgstr "" +#~ "Beim Klick auf \"Als gelesen markieren\" in der Toolbar, automatisch " +#~ "nächsten Feed mit ungelesenen Artikeln öffnen." diff --git a/locale/es_ES/LC_MESSAGES/messages.mo b/locale/es_ES/LC_MESSAGES/messages.mo Binary files differindex 34ac525a2..4081424b6 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 b1998c544..1fa839a7d 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-04-04 09:06+0400\n" +"POT-Creation-Date: 2013-04-04 21:31+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" @@ -101,101 +101,6 @@ msgstr "Usuario con poder" msgid "Administrator" msgstr "Administrador" -#: db-updater.php:19 -msgid "Your access level is insufficient to run this script." -msgstr "Su nivel de acceso es insuficiente para ejecutar este programa." - -#: db-updater.php:44 -msgid "Database Updater" -msgstr "Actualizador de la base de datos" - -#: db-updater.php:87 -msgid "Could not update database" -msgstr "No se pudo actualizar la base de datos" - -#: db-updater.php:90 -msgid "Could not find necessary schema file, need version:" -msgstr "No se pudo encontrar el fichero de esquema necesario. Versión necesaria:" - -#: db-updater.php:91 -msgid ", found: " -msgstr ", encontrado:" - -#: db-updater.php:94 -msgid "Tiny Tiny RSS database is up to date." -msgstr "La base de datos de Tiny Tiny RSS está actualizada." - -#: 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:648 -#: classes/handler/public.php:736 -#: classes/handler/public.php:818 -msgid "Return to Tiny Tiny RSS" -msgstr "Volver a Tiny Tiny RSS" - -#: db-updater.php:102 -msgid "Please backup your database before proceeding." -msgstr "Por favor, haga una copia de seguridad de su base de datos antes de continuar." - -#: 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 "Su base de datos Tiny Tiny RSS necesita ser actualizada a la última versión (<b>%d</b> to <b>%d</b>)." - -#: db-updater.php:118 -msgid "Perform updates" -msgstr "Actualizar" - -#: db-updater.php:123 -msgid "Performing updates..." -msgstr "Actualizando..." - -#: db-updater.php:129 -#, php-format -msgid "Updating to version %d..." -msgstr "Actualizando a la versión %d..." - -#: db-updater.php:144 -msgid "Checking version... " -msgstr "Comprobando la versión..." - -#: db-updater.php:150 -msgid "OK!" -msgstr "¡TODO CORRECTO!" - -#: db-updater.php:152 -msgid "ERROR!" -msgstr "¡ERROR!" - -#: db-updater.php:160 -#, fuzzy, php-format -msgid "Finished. Performed <b>%d</b> update up to schema version <b>%d</b>." -msgid_plural "Finished. Performed <b>%d</b> updates up to schema version <b>%d</b>." -msgstr[0] "Tarea terminada. Realizada(s) <b>%d</b> actualización(es) a la versión del esquema <b>%d</b>." -msgstr[1] "Tarea terminada. Realizada(s) <b>%d</b> actualización(es) a la versión del esquema <b>%d</b>." - -#: db-updater.php:170 -msgid "Your database schema is from a newer version of Tiny Tiny RSS." -msgstr "El esquema de su base de datos corresponde a una versión más reciente de Tiny Tiny RSS." - -#: db-updater.php:172 -#, php-format -msgid "Found schema version: <b>%d</b>, required: <b>%d</b>." -msgstr "Versión actual del esquema: <b>%d</b>, requerida: <b>%d</b>." - -#: db-updater.php:174 -msgid "Schema upgrade impossible. Please update Tiny Tiny RSS files to the newer version and continue." -msgstr "Imposible actualizar el esquema. Por favor, actualice Tiny Tiny RSS a la última versión y continúe." - #: errors.php:9 msgid "This program requires XmlHttpRequest to function properly. Your browser doesn't seem to support it." msgstr "Este programa requiere XmlHttpRequest para funcionar apropiadamente. Parece que su navegador no lo soporta." @@ -248,7 +153,7 @@ msgstr "La prueba de escape SQL ha fallado. Por favor, revise la configuración #: index.php:135 #: index.php:152 -#: index.php:276 +#: index.php:277 #: prefs.php:103 #: classes/backend.php:5 #: classes/pref/labels.php:296 @@ -256,7 +161,7 @@ msgstr "La prueba de escape SQL ha fallado. Por favor, revise la configuración #: classes/pref/feeds.php:1331 #: plugins/digest/digest_body.php:63 #: js/feedlist.js:128 -#: js/feedlist.js:436 +#: js/feedlist.js:438 #: js/functions.js:420 #: js/functions.js:758 #: js/functions.js:1194 @@ -277,8 +182,8 @@ msgstr "La prueba de escape SQL ha fallado. Por favor, revise la configuración #: js/prefs.js:1814 #: js/tt-rss.js:475 #: js/tt-rss.js:492 -#: js/viewfeed.js:772 -#: js/viewfeed.js:1200 +#: js/viewfeed.js:775 +#: js/viewfeed.js:1201 #: plugins/import_export/import_export.js:17 #: plugins/updater/updater.js:17 msgid "Loading, please wait..." @@ -301,13 +206,13 @@ msgid "All Articles" msgstr "Todos" #: index.php:174 -#: include/functions.php:1953 +#: include/functions.php:1955 #: classes/feeds.php:106 msgid "Starred" msgstr "Favoritos" #: index.php:175 -#: include/functions.php:1954 +#: include/functions.php:1956 #: classes/feeds.php:107 msgid "Published" msgstr "Publicados" @@ -347,9 +252,13 @@ msgstr "" msgid "Oldest first" msgstr "" -#: index.php:191 -#: index.php:240 -#: include/functions.php:1943 +#: index.php:188 +msgid "Title" +msgstr "TÃtulo" + +#: index.php:192 +#: index.php:241 +#: include/functions.php:1945 #: classes/feeds.php:111 #: classes/feeds.php:441 #: js/FeedTree.js:128 @@ -358,106 +267,106 @@ msgstr "" msgid "Mark as read" msgstr "Marcar como leÃdo" -#: index.php:194 +#: index.php:195 msgid "Older than one day" msgstr "" -#: index.php:197 +#: index.php:198 msgid "Older than one week" msgstr "" -#: index.php:200 +#: index.php:201 msgid "Older than two weeks" msgstr "" -#: index.php:217 +#: index.php:218 msgid "Communication problem with server." msgstr "" -#: index.php:225 +#: index.php:226 msgid "New version of Tiny Tiny RSS is available!" msgstr "¡Nueva versión de Tiny Tiny RSS disponible!" -#: index.php:230 +#: index.php:231 msgid "Actions..." msgstr "Acciones..." -#: index.php:232 +#: index.php:233 #, fuzzy msgid "Preferences..." msgstr "Preferencias" -#: index.php:233 +#: index.php:234 msgid "Search..." msgstr "Buscar..." -#: index.php:234 +#: index.php:235 msgid "Feed actions:" msgstr "Acciones de la fuente:" -#: index.php:235 +#: index.php:236 #: classes/handler/public.php:578 msgid "Subscribe to feed..." msgstr "Suscribirse a una fuente..." -#: index.php:236 +#: index.php:237 msgid "Edit this feed..." msgstr "Editar esta fuente..." -#: index.php:237 +#: index.php:238 msgid "Rescore feed" msgstr "Reiniciar la puntuación" -#: index.php:238 +#: index.php:239 #: classes/pref/feeds.php:717 #: classes/pref/feeds.php:1283 #: js/PrefFeedTree.js:73 msgid "Unsubscribe" msgstr "Cancelar la suscripción" -#: index.php:239 +#: index.php:240 msgid "All feeds:" msgstr "Todas las fuentes:" -#: index.php:241 +#: index.php:242 msgid "(Un)hide read feeds" msgstr "Ocultar/Mostrar fuentes leÃdas" -#: index.php:242 +#: index.php:243 msgid "Other actions:" msgstr "Otras acciones:" -#: index.php:244 +#: index.php:245 msgid "Switch to digest..." msgstr "Modo resumen..." -#: index.php:246 +#: index.php:247 msgid "Show tag cloud..." msgstr "Nube de etiquetas..." -#: index.php:247 -#: include/functions.php:1929 +#: index.php:248 +#: include/functions.php:1931 #, fuzzy msgid "Toggle widescreen mode" msgstr "Cambiar a modo de reordenación de categorÃas" -#: index.php:248 +#: index.php:249 msgid "Select by tags..." msgstr "Seleccionar por etiquetas..." -#: index.php:249 +#: index.php:250 msgid "Create label..." msgstr "Crear marcador..." -#: index.php:250 +#: index.php:251 msgid "Create filter..." msgstr "Crear filtro..." -#: index.php:251 +#: index.php:252 msgid "Keyboard shortcuts help" msgstr "Ayuda para atajos de teclado" -#: index.php:260 +#: index.php:261 #: plugins/digest/digest_body.php:77 #: plugins/mobile/mobile-functions.php:62 #: plugins/mobile/mobile-functions.php:237 @@ -466,8 +375,8 @@ msgstr "Cerrar sesión" #: prefs.php:36 #: prefs.php:121 -#: include/functions.php:1956 -#: classes/pref/prefs.php:428 +#: include/functions.php:1958 +#: classes/pref/prefs.php:444 msgid "Preferences" msgstr "Preferencias" @@ -492,8 +401,8 @@ msgid "Filters" msgstr "Filtros" #: prefs.php:130 -#: include/functions.php:1146 -#: include/functions.php:1782 +#: include/functions.php:1148 +#: include/functions.php:1784 #: classes/pref/labels.php:90 #: plugins/mobile/mobile-functions.php:198 msgid "Labels" @@ -512,6 +421,24 @@ msgstr "Crear nueva cuenta" msgid "New user registrations are administratively disabled." msgstr "El registro de nuevos usuarios ha sido deshabilitado por el administrador." +#: 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:648 +#: classes/handler/public.php:736 +#: classes/handler/public.php:818 +#: classes/handler/public.php:893 +#: classes/handler/public.php:907 +#: classes/handler/public.php:914 +#: classes/handler/public.php:939 +msgid "Return to Tiny Tiny RSS" +msgstr "Volver a Tiny Tiny RSS" + #: 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 "Su contraseña temporal será enviada a la dirección de correo especificada. Las cuentas a las que no se acceda al menos una vez serán borradas automáticamente a las 24 horas de enviar la contraseña temporal." @@ -558,16 +485,16 @@ msgstr "Cuenta creada correctamente." msgid "New user registrations are currently closed." msgstr "El registro de nuevos usuarios está cerrado en estos momentos." -#: update.php:55 +#: update.php:56 #, fuzzy 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:1155 -#: include/functions.php:1683 -#: include/functions.php:1768 -#: include/functions.php:1790 +#: include/functions.php:1157 +#: include/functions.php:1685 +#: include/functions.php:1770 +#: include/functions.php:1792 #: classes/opml.php:416 #: classes/pref/feeds.php:222 msgid "Uncategorized" @@ -584,329 +511,329 @@ msgstr[1] "%d artÃculos archivados" msgid "No feeds found." msgstr "No se han encontrado fuentes." -#: include/functions.php:1144 -#: include/functions.php:1780 +#: include/functions.php:1146 +#: include/functions.php:1782 #: plugins/mobile/mobile-functions.php:171 msgid "Special" msgstr "Especial" -#: include/functions.php:1632 -#: classes/feeds.php:1101 +#: include/functions.php:1634 +#: classes/feeds.php:1104 #: classes/pref/filters.php:427 msgid "All feeds" msgstr "Todas las fuentes" -#: include/functions.php:1833 +#: include/functions.php:1835 msgid "Starred articles" msgstr "Favoritos" -#: include/functions.php:1835 +#: include/functions.php:1837 msgid "Published articles" msgstr "Publicados" -#: include/functions.php:1837 +#: include/functions.php:1839 msgid "Fresh articles" msgstr "Recientes" -#: include/functions.php:1839 -#: include/functions.php:1951 +#: include/functions.php:1841 +#: include/functions.php:1953 msgid "All articles" msgstr "Todos" -#: include/functions.php:1841 +#: include/functions.php:1843 msgid "Archived articles" msgstr "ArtÃculos archivados" -#: include/functions.php:1843 +#: include/functions.php:1845 msgid "Recently read" msgstr "LeÃdos recientemente" -#: include/functions.php:1906 +#: include/functions.php:1908 msgid "Navigation" msgstr "Navegación" -#: include/functions.php:1907 +#: include/functions.php:1909 #, fuzzy msgid "Open next feed" msgstr "Fuente generada" -#: include/functions.php:1908 +#: include/functions.php:1910 msgid "Open previous feed" msgstr "" -#: include/functions.php:1909 +#: include/functions.php:1911 #, fuzzy msgid "Open next article" msgstr "Abrir artÃculo original" -#: include/functions.php:1910 +#: include/functions.php:1912 #, fuzzy msgid "Open previous article" msgstr "Abrir artÃculo original" -#: include/functions.php:1911 +#: include/functions.php:1913 msgid "Open next article (don't scroll long articles)" msgstr "" -#: include/functions.php:1912 +#: include/functions.php:1914 msgid "Open previous article (don't scroll long articles)" msgstr "" -#: include/functions.php:1913 +#: include/functions.php:1915 msgid "Show search dialog" msgstr "Mostrar el diálogo de búsqueda" -#: include/functions.php:1914 +#: include/functions.php:1916 #, fuzzy msgid "Article" msgstr "Todos" -#: include/functions.php:1915 +#: include/functions.php:1917 msgid "Toggle starred" msgstr "Alternar favoritos" -#: include/functions.php:1916 -#: js/viewfeed.js:1863 +#: include/functions.php:1918 +#: js/viewfeed.js:1872 msgid "Toggle published" msgstr "Alternar publicados" -#: include/functions.php:1917 -#: js/viewfeed.js:1841 +#: include/functions.php:1919 +#: js/viewfeed.js:1850 msgid "Toggle unread" msgstr "Alternar no leÃdos" -#: include/functions.php:1918 +#: include/functions.php:1920 msgid "Edit tags" msgstr "Editar etiquetas" -#: include/functions.php:1919 +#: include/functions.php:1921 #, fuzzy msgid "Dismiss selected" msgstr "Descartar artÃculos seleccionados" -#: include/functions.php:1920 +#: include/functions.php:1922 #, fuzzy msgid "Dismiss read" msgstr "Publicar artÃculo" -#: include/functions.php:1921 +#: include/functions.php:1923 #, fuzzy msgid "Open in new window" msgstr "Abrir el artÃculo en una nueva pestaña o ventana" -#: include/functions.php:1922 -#: js/viewfeed.js:1882 +#: include/functions.php:1924 +#: js/viewfeed.js:1891 msgid "Mark below as read" msgstr "Marcar artÃculos posteriores como leÃdos" -#: include/functions.php:1923 -#: js/viewfeed.js:1876 +#: include/functions.php:1925 +#: js/viewfeed.js:1885 msgid "Mark above as read" msgstr "Marcar artÃculos anteriores como leÃdos" -#: include/functions.php:1924 +#: include/functions.php:1926 #, fuzzy msgid "Scroll down" msgstr "Hecho." -#: include/functions.php:1925 +#: include/functions.php:1927 msgid "Scroll up" msgstr "" -#: include/functions.php:1926 +#: include/functions.php:1928 #, fuzzy msgid "Select article under cursor" msgstr "Seleccionar el artÃculo que esté bajo el cursor del ratón" -#: include/functions.php:1927 +#: include/functions.php:1929 msgid "Email article" msgstr "Enviar artÃculo por correo" -#: include/functions.php:1928 +#: include/functions.php:1930 #, fuzzy msgid "Close/collapse article" msgstr "Cerrar artÃculo" -#: include/functions.php:1930 +#: include/functions.php:1932 #: plugins/embed_original/init.php:33 #, fuzzy msgid "Toggle embed original" msgstr "Cambiar a modo de reordenación de categorÃas" -#: include/functions.php:1931 +#: include/functions.php:1933 #, fuzzy msgid "Article selection" msgstr "Invertir selección de artÃculos" -#: include/functions.php:1932 +#: include/functions.php:1934 msgid "Select all articles" msgstr "Seleccionar todos los artÃculos" -#: include/functions.php:1933 +#: include/functions.php:1935 #, fuzzy msgid "Select unread" msgstr "Seleccionar artÃculos sin leer" -#: include/functions.php:1934 +#: include/functions.php:1936 #, fuzzy msgid "Select starred" msgstr "Marcar como favorito" -#: include/functions.php:1935 +#: include/functions.php:1937 #, fuzzy msgid "Select published" msgstr "Seleccionar artÃculos publicados" -#: include/functions.php:1936 +#: include/functions.php:1938 #, fuzzy msgid "Invert selection" msgstr "Invertir selección de artÃculos" -#: include/functions.php:1937 +#: include/functions.php:1939 #, fuzzy msgid "Deselect everything" msgstr "Deseleccionar todos los artÃculos" -#: include/functions.php:1938 +#: include/functions.php:1940 #: classes/pref/feeds.php:521 #: classes/pref/feeds.php:754 msgid "Feed" msgstr "Fuente" -#: include/functions.php:1939 +#: include/functions.php:1941 #, fuzzy msgid "Refresh current feed" msgstr "Actualizar la fuente activa" -#: include/functions.php:1940 +#: include/functions.php:1942 #, fuzzy msgid "Un/hide read feeds" msgstr "Ocultar/Mostrar fuentes leÃdas" -#: include/functions.php:1941 +#: include/functions.php:1943 #: classes/pref/feeds.php:1275 msgid "Subscribe to feed" msgstr "Suscribirse a una fuente" -#: include/functions.php:1942 +#: include/functions.php:1944 #: js/FeedTree.js:135 #: js/PrefFeedTree.js:67 msgid "Edit feed" msgstr "Editar fuente" -#: include/functions.php:1944 +#: include/functions.php:1946 #, fuzzy msgid "Reverse headlines" msgstr "Invertir orden de titulares" -#: include/functions.php:1945 +#: include/functions.php:1947 #, fuzzy msgid "Debug feed update" msgstr "Se han actualizado todas las fuentes." -#: include/functions.php:1946 +#: include/functions.php:1948 #: js/FeedTree.js:178 msgid "Mark all feeds as read" msgstr "Marcar todas las fuentes como leÃdas" -#: include/functions.php:1947 +#: include/functions.php:1949 #, fuzzy msgid "Un/collapse current category" msgstr "Plegar la categorÃa" -#: include/functions.php:1948 +#: include/functions.php:1950 #, fuzzy msgid "Toggle combined mode" msgstr "Cambiar a modo de reordenación de categorÃas" -#: include/functions.php:1949 +#: include/functions.php:1951 #, fuzzy msgid "Toggle auto expand in combined mode" msgstr "Cambiar a modo de reordenación de categorÃas" -#: include/functions.php:1950 +#: include/functions.php:1952 #, fuzzy msgid "Go to" msgstr "Ir a..." -#: include/functions.php:1952 +#: include/functions.php:1954 #, fuzzy msgid "Fresh" msgstr "Refrescar" -#: include/functions.php:1955 +#: include/functions.php:1957 #: js/tt-rss.js:431 #: js/tt-rss.js:584 msgid "Tag cloud" msgstr "Nube de etiquetas" -#: include/functions.php:1957 +#: include/functions.php:1959 #, fuzzy msgid "Other" msgstr "Otro:" -#: include/functions.php:1958 +#: include/functions.php:1960 #: classes/pref/labels.php:281 msgid "Create label" msgstr "Crear marcador" -#: include/functions.php:1959 +#: include/functions.php:1961 #: classes/pref/filters.php:654 msgid "Create filter" msgstr "Crear filtro" -#: include/functions.php:1960 +#: include/functions.php:1962 #, fuzzy msgid "Un/collapse sidebar" msgstr "Colapsar la barra lateral" -#: include/functions.php:1961 +#: include/functions.php:1963 #, fuzzy msgid "Show help dialog" msgstr "Mostrar el diálogo de búsqueda" -#: include/functions.php:2446 +#: include/functions.php:2471 #, php-format msgid "Search results: %s" msgstr "Resultados de búsqueda: %s" -#: include/functions.php:2937 -#: js/viewfeed.js:1969 +#: include/functions.php:2962 +#: js/viewfeed.js:1978 msgid "Click to play" msgstr "Clic para reproducir" -#: include/functions.php:2938 -#: js/viewfeed.js:1968 +#: include/functions.php:2963 +#: js/viewfeed.js:1977 msgid "Play" msgstr "Reproducir" -#: include/functions.php:3055 +#: include/functions.php:3080 msgid " - " msgstr " - " -#: include/functions.php:3077 -#: include/functions.php:3371 +#: include/functions.php:3102 +#: include/functions.php:3396 #: classes/article.php:281 msgid "no tags" msgstr "sin etiquetas" -#: include/functions.php:3087 +#: include/functions.php:3112 #: classes/feeds.php:686 msgid "Edit tags for this article" msgstr "Editar las etiquetas de este artÃculo" -#: include/functions.php:3116 +#: include/functions.php:3141 #: classes/feeds.php:642 msgid "Originally from:" msgstr "Original de:" -#: include/functions.php:3129 +#: include/functions.php:3154 #: classes/feeds.php:655 #: classes/pref/feeds.php:540 msgid "Feed URL" msgstr "URL de la fuente" -#: include/functions.php:3160 +#: include/functions.php:3185 #: classes/dlg.php:37 #: classes/dlg.php:60 #: classes/dlg.php:93 @@ -918,7 +845,7 @@ msgstr "URL de la fuente" #: classes/backend.php:105 #: classes/pref/users.php:99 #: classes/pref/filters.php:147 -#: classes/pref/prefs.php:1059 +#: classes/pref/prefs.php:1105 #: classes/pref/feeds.php:1588 #: classes/pref/feeds.php:1660 #: plugins/import_export/init.php:406 @@ -929,15 +856,15 @@ msgstr "URL de la fuente" msgid "Close this window" msgstr "Cerrar esta ventana" -#: include/functions.php:3396 +#: include/functions.php:3421 msgid "(edit note)" msgstr "(editar nota)" -#: include/functions.php:3631 +#: include/functions.php:3656 msgid "unknown type" msgstr "tipo desconocido" -#: include/functions.php:3687 +#: include/functions.php:3712 msgid "Attachments" msgstr "Adjuntos" @@ -961,6 +888,7 @@ msgstr "Nombre de usuario o contraseña incorrecta" #: include/login_form.php:201 #: classes/handler/public.php:489 +#: classes/pref/prefs.php:552 msgid "Language:" msgstr "Idioma:" @@ -971,7 +899,7 @@ msgstr "Perfil:" #: include/login_form.php:213 #: classes/handler/public.php:233 #: classes/rpc.php:64 -#: classes/pref/prefs.php:995 +#: classes/pref/prefs.php:1041 msgid "Default profile" msgstr "Perfil por defecto" @@ -989,7 +917,7 @@ msgstr "" msgid "Log in" msgstr "Iniciar sesión" -#: include/sessions.php:58 +#: include/sessions.php:62 msgid "Session failed to validate (incorrect IP)" msgstr "No se pudo validar la sesión (IP incorrecta)" @@ -1005,7 +933,7 @@ msgstr "Etiquetas para este artÃculo (separadas por comas):" #: classes/pref/users.php:176 #: classes/pref/labels.php:79 #: classes/pref/filters.php:405 -#: classes/pref/prefs.php:941 +#: classes/pref/prefs.php:987 #: classes/pref/feeds.php:733 #: classes/pref/feeds.php:881 #: plugins/nsfw/init.php:86 @@ -1017,16 +945,16 @@ msgstr "Guardar" #: classes/article.php:206 #: classes/handler/public.php:460 #: classes/handler/public.php:502 -#: classes/feeds.php:1028 -#: classes/feeds.php:1080 -#: classes/feeds.php:1140 +#: classes/feeds.php:1031 +#: classes/feeds.php:1083 +#: classes/feeds.php:1143 #: 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:943 +#: classes/pref/prefs.php:989 #: classes/pref/feeds.php:734 #: classes/pref/feeds.php:884 #: classes/pref/feeds.php:1797 @@ -1159,6 +1087,18 @@ msgstr "Mover a la fuente original" msgid "Sorry, login and email combination not found." msgstr "" +#: classes/handler/public.php:842 +msgid "Your access level is insufficient to run this script." +msgstr "Su nivel de acceso es insuficiente para ejecutar este programa." + +#: classes/handler/public.php:866 +msgid "Database Updater" +msgstr "Actualizador de la base de datos" + +#: classes/handler/public.php:931 +msgid "Perform updates" +msgstr "Actualizar" + #: 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." @@ -1259,7 +1199,7 @@ msgstr "Seleccionar:" #: classes/pref/filters.php:648 #: classes/pref/filters.php:737 #: classes/pref/filters.php:764 -#: classes/pref/prefs.php:955 +#: classes/pref/prefs.php:1001 #: classes/pref/feeds.php:1266 #: classes/pref/feeds.php:1536 #: classes/pref/feeds.php:1606 @@ -1279,7 +1219,7 @@ msgstr "Invertir" #: classes/pref/filters.php:650 #: classes/pref/filters.php:739 #: classes/pref/filters.php:766 -#: classes/pref/prefs.php:957 +#: classes/pref/prefs.php:1003 #: classes/pref/feeds.php:1268 #: classes/pref/feeds.php:1538 #: classes/pref/feeds.php:1608 @@ -1373,45 +1313,45 @@ msgid "No articles found to display." msgstr "No se han encontrado artÃculos que mostrar." #: classes/feeds.php:759 -#: classes/feeds.php:923 +#: classes/feeds.php:926 #, php-format msgid "Feeds last updated at %s" msgstr "Última actualización de las fuentes: %s" #: classes/feeds.php:769 -#: classes/feeds.php:933 +#: classes/feeds.php:936 msgid "Some feeds have update errors (click for details)" msgstr "Error al actualizar algunas fuentes (pulse aquà para obtener los detalles)" -#: classes/feeds.php:913 +#: classes/feeds.php:916 msgid "No feed selected." msgstr "No se ha seleccionado ninguna fuente." -#: classes/feeds.php:966 -#: classes/feeds.php:974 +#: classes/feeds.php:969 +#: classes/feeds.php:977 #, fuzzy msgid "Feed or site URL" msgstr "URL de la fuente" -#: classes/feeds.php:980 +#: classes/feeds.php:983 #: 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 +#: classes/feeds.php:991 msgid "Available feeds" msgstr "Fuentes disponibles" -#: classes/feeds.php:1000 +#: classes/feeds.php:1003 #: 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/feeds.php:1007 #: classes/pref/users.php:402 #: classes/pref/feeds.php:596 #: classes/pref/feeds.php:822 @@ -1419,30 +1359,30 @@ msgstr "Autenticación" msgid "Login" msgstr "Iniciar sesión" -#: classes/feeds.php:1007 -#: classes/pref/prefs.php:253 +#: classes/feeds.php:1010 +#: classes/pref/prefs.php:269 #: classes/pref/feeds.php:602 #: classes/pref/feeds.php:828 #: classes/pref/feeds.php:1778 msgid "Password" msgstr "Contraseña:" -#: classes/feeds.php:1017 +#: classes/feeds.php:1020 msgid "This feed requires authentication." msgstr "Esta fuente requiere autenticación." -#: classes/feeds.php:1022 -#: classes/feeds.php:1078 +#: classes/feeds.php:1025 +#: classes/feeds.php:1081 #: classes/pref/feeds.php:1796 msgid "Subscribe" msgstr "Suscribir" -#: classes/feeds.php:1025 +#: classes/feeds.php:1028 msgid "More feeds" msgstr "Más fuentes" -#: classes/feeds.php:1048 -#: classes/feeds.php:1139 +#: classes/feeds.php:1051 +#: classes/feeds.php:1142 #: classes/pref/users.php:332 #: classes/pref/filters.php:641 #: classes/pref/feeds.php:1259 @@ -1450,19 +1390,19 @@ msgstr "Más fuentes" msgid "Search" msgstr "Buscar" -#: classes/feeds.php:1052 +#: classes/feeds.php:1055 msgid "Popular feeds" msgstr "Fuentes populares" -#: classes/feeds.php:1053 +#: classes/feeds.php:1056 msgid "Feed archive" msgstr "Archivo de fuentes" -#: classes/feeds.php:1056 +#: classes/feeds.php:1059 msgid "limit:" msgstr "lÃmite:" -#: classes/feeds.php:1079 +#: classes/feeds.php:1082 #: classes/pref/users.php:358 #: classes/pref/labels.php:284 #: classes/pref/filters.php:398 @@ -1472,15 +1412,15 @@ msgstr "lÃmite:" msgid "Remove" msgstr "Eliminar" -#: classes/feeds.php:1090 +#: classes/feeds.php:1093 msgid "Look for" msgstr "Buscar" -#: classes/feeds.php:1098 +#: classes/feeds.php:1101 msgid "Limit search to:" msgstr "Limitar la búsqueda a:" -#: classes/feeds.php:1114 +#: classes/feeds.php:1117 msgid "This feed" msgstr "Esta fuente" @@ -1640,7 +1580,7 @@ msgstr "[tt-rss] Notificación de cambio de contraseña" #: classes/pref/filters.php:645 #: classes/pref/filters.php:734 #: classes/pref/filters.php:761 -#: classes/pref/prefs.php:952 +#: classes/pref/prefs.php:998 #: classes/pref/feeds.php:1263 #: classes/pref/feeds.php:1533 #: classes/pref/feeds.php:1603 @@ -2073,226 +2013,231 @@ msgstr "Las contraseñas introducidas no coinciden." msgid "Function not supported by authentication module." msgstr "" -#: classes/pref/prefs.php:120 +#: classes/pref/prefs.php:135 msgid "The configuration was saved." msgstr "La configuración ha sido guardada." -#: classes/pref/prefs.php:134 +#: classes/pref/prefs.php:150 #, php-format msgid "Unknown option: %s" msgstr "Opción desconocida: %s" -#: classes/pref/prefs.php:148 +#: classes/pref/prefs.php:164 #, fuzzy msgid "Your personal data has been saved." msgstr "Se ha programado la actualización de la categorÃa." -#: classes/pref/prefs.php:188 +#: classes/pref/prefs.php:204 #, fuzzy msgid "Personal data / Authentication" msgstr "Autenticación" -#: classes/pref/prefs.php:208 +#: classes/pref/prefs.php:224 msgid "Personal data" msgstr "Datos personales" -#: classes/pref/prefs.php:218 +#: classes/pref/prefs.php:234 msgid "Full name" msgstr "" -#: classes/pref/prefs.php:222 +#: classes/pref/prefs.php:238 msgid "E-mail" msgstr "Correo electrónico" -#: classes/pref/prefs.php:228 +#: classes/pref/prefs.php:244 msgid "Access level" msgstr "Nivel de acceso" -#: classes/pref/prefs.php:238 +#: classes/pref/prefs.php:254 #, fuzzy msgid "Save data" msgstr "Guardar" -#: classes/pref/prefs.php:260 +#: classes/pref/prefs.php:276 #, fuzzy msgid "Your password is at default value, please change it." msgstr "Su contraseña tiene el valor por defecto. Por favor, modifÃquela." -#: classes/pref/prefs.php:287 +#: classes/pref/prefs.php:303 msgid "Changing your current password will disable OTP." msgstr "" -#: classes/pref/prefs.php:292 +#: classes/pref/prefs.php:308 msgid "Old password" msgstr "Antigua contraseña" -#: classes/pref/prefs.php:295 +#: classes/pref/prefs.php:311 msgid "New password" msgstr "Nueva contraseña" -#: classes/pref/prefs.php:300 +#: classes/pref/prefs.php:316 msgid "Confirm password" msgstr "Confirme la nueva contraseña" -#: classes/pref/prefs.php:310 +#: classes/pref/prefs.php:326 msgid "Change password" msgstr "Cambiar contraseña" -#: classes/pref/prefs.php:316 +#: classes/pref/prefs.php:332 msgid "One time passwords / Authenticator" msgstr "" -#: classes/pref/prefs.php:320 +#: classes/pref/prefs.php:336 msgid "One time passwords are currently enabled. Enter your current password below to disable." msgstr "" -#: classes/pref/prefs.php:345 -#: classes/pref/prefs.php:396 +#: classes/pref/prefs.php:361 +#: classes/pref/prefs.php:412 #, fuzzy msgid "Enter your password" msgstr "Nombre de usuario o contraseña incorrecta" -#: classes/pref/prefs.php:356 +#: classes/pref/prefs.php:372 #, fuzzy msgid "Disable OTP" msgstr "(desactivado)" -#: classes/pref/prefs.php:362 +#: classes/pref/prefs.php:378 msgid "You will need a compatible Authenticator to use this. Changing your password would automatically disable OTP." msgstr "" -#: classes/pref/prefs.php:364 +#: classes/pref/prefs.php:380 msgid "Scan the following code by the Authenticator application:" msgstr "" -#: classes/pref/prefs.php:405 +#: classes/pref/prefs.php:421 msgid "I have scanned the code and would like to enable OTP" msgstr "" -#: classes/pref/prefs.php:413 +#: classes/pref/prefs.php:429 #, fuzzy msgid "Enable OTP" msgstr "Habilitado" -#: classes/pref/prefs.php:451 +#: classes/pref/prefs.php:475 msgid "Some preferences are only available in default profile." msgstr "" -#: classes/pref/prefs.php:545 +#: classes/pref/prefs.php:585 #, fuzzy msgid "Customize" msgstr "Personalizar hoja de estilo" -#: classes/pref/prefs.php:605 +#: classes/pref/prefs.php:645 #, fuzzy msgid "Register" msgstr "Registrado" -#: classes/pref/prefs.php:609 +#: classes/pref/prefs.php:649 msgid "Clear" msgstr "" -#: classes/pref/prefs.php:615 +#: classes/pref/prefs.php:655 #, php-format msgid "Current server time: %s (UTC)" msgstr "" -#: classes/pref/prefs.php:648 +#: classes/pref/prefs.php:688 msgid "Save configuration" msgstr "Guardar la configuración" -#: classes/pref/prefs.php:651 +#: classes/pref/prefs.php:692 +#, fuzzy +msgid "Save and exit preferences" +msgstr "Salir de las preferencias" + +#: classes/pref/prefs.php:697 #, fuzzy msgid "Manage profiles" msgstr "Crear perfil" -#: classes/pref/prefs.php:654 +#: classes/pref/prefs.php:700 msgid "Reset to defaults" msgstr "Opciones por defecto" -#: classes/pref/prefs.php:678 -#: classes/pref/prefs.php:680 +#: classes/pref/prefs.php:724 +#: classes/pref/prefs.php:726 msgid "Plugins" msgstr "" -#: classes/pref/prefs.php:682 +#: classes/pref/prefs.php:728 msgid "You will need to reload Tiny Tiny RSS for plugin changes to take effect." msgstr "" -#: classes/pref/prefs.php:684 +#: classes/pref/prefs.php:730 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:710 +#: classes/pref/prefs.php:756 msgid "System plugins" msgstr "" -#: classes/pref/prefs.php:714 -#: classes/pref/prefs.php:768 +#: classes/pref/prefs.php:760 +#: classes/pref/prefs.php:814 msgid "Plugin" msgstr "" -#: classes/pref/prefs.php:715 -#: classes/pref/prefs.php:769 +#: classes/pref/prefs.php:761 +#: classes/pref/prefs.php:815 #, fuzzy msgid "Description" msgstr "Selección" -#: classes/pref/prefs.php:716 -#: classes/pref/prefs.php:770 +#: classes/pref/prefs.php:762 +#: classes/pref/prefs.php:816 msgid "Version" msgstr "" -#: classes/pref/prefs.php:717 -#: classes/pref/prefs.php:771 +#: classes/pref/prefs.php:763 +#: classes/pref/prefs.php:817 msgid "Author" msgstr "" -#: classes/pref/prefs.php:746 -#: classes/pref/prefs.php:803 +#: classes/pref/prefs.php:792 +#: classes/pref/prefs.php:849 msgid "more info" msgstr "" -#: classes/pref/prefs.php:755 -#: classes/pref/prefs.php:812 +#: classes/pref/prefs.php:801 +#: classes/pref/prefs.php:858 #, fuzzy msgid "Clear data" msgstr "Limpiar los datos de la fuente" -#: classes/pref/prefs.php:764 +#: classes/pref/prefs.php:810 msgid "User plugins" msgstr "" -#: classes/pref/prefs.php:827 +#: classes/pref/prefs.php:873 #, fuzzy msgid "Enable selected plugins" msgstr "Habilitar los iconos de la fuente" -#: classes/pref/prefs.php:882 -#: classes/pref/prefs.php:900 +#: classes/pref/prefs.php:928 +#: classes/pref/prefs.php:946 #, fuzzy msgid "Incorrect password" msgstr "Nombre de usuario o contraseña incorrecta" -#: classes/pref/prefs.php:926 +#: classes/pref/prefs.php:972 #, 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:966 +#: classes/pref/prefs.php:1012 msgid "Create profile" msgstr "Crear perfil" -#: classes/pref/prefs.php:989 -#: classes/pref/prefs.php:1019 +#: classes/pref/prefs.php:1035 +#: classes/pref/prefs.php:1065 msgid "(active)" msgstr "(activo)" -#: classes/pref/prefs.php:1053 +#: classes/pref/prefs.php:1099 msgid "Remove selected profiles" msgstr "Borrar los perfiles seleccionados" -#: classes/pref/prefs.php:1055 +#: classes/pref/prefs.php:1101 msgid "Activate profile" msgstr "Activar perfil" @@ -2834,15 +2779,15 @@ msgstr "" msgid "The document has incorrect format." msgstr "" -#: plugins/googlereaderimport/init.php:326 +#: plugins/googlereaderimport/init.php:328 msgid "Import starred or shared items from Google Reader" msgstr "" -#: plugins/googlereaderimport/init.php:330 +#: plugins/googlereaderimport/init.php:332 msgid "Paste your starred.json or shared.json into the form below." msgstr "" -#: plugins/googlereaderimport/init.php:344 +#: plugins/googlereaderimport/init.php:346 msgid "Import my Starred items" msgstr "" @@ -2944,23 +2889,23 @@ msgstr "Última actualización:" msgid "Start update" msgstr "Última actualización:" -#: js/feedlist.js:392 -#: js/feedlist.js:420 +#: js/feedlist.js:394 +#: js/feedlist.js:422 #: plugins/digest/digest.js:26 msgid "Mark all articles in %s as read?" msgstr "¿Marcar todos los artÃculos de %s como leÃdos?" -#: js/feedlist.js:411 +#: js/feedlist.js:413 #, fuzzy msgid "Mark all articles in %s older than 1 day as read?" msgstr "¿Marcar todos los artÃculos de %s como leÃdos?" -#: js/feedlist.js:414 +#: js/feedlist.js:416 #, fuzzy msgid "Mark all articles in %s older than 1 week as read?" msgstr "¿Marcar todos los artÃculos de %s como leÃdos?" -#: js/feedlist.js:417 +#: js/feedlist.js:419 #, fuzzy msgid "Mark all articles in %s older than 2 weeks as read?" msgstr "¿Marcar todos los artÃculos de %s como leÃdos?" @@ -3494,152 +3439,152 @@ msgstr "Reiniciando la puntuación de los artÃculos..." msgid "New version available!" msgstr "¡Nueva versión disponible!" -#: js/viewfeed.js:104 +#: js/viewfeed.js:106 #, fuzzy msgid "Cancel search" msgstr "Cancelar" -#: js/viewfeed.js:438 +#: js/viewfeed.js:441 #: plugins/digest/digest.js:258 #: plugins/digest/digest.js:714 msgid "Unstar article" msgstr "Quitar el artÃculo de los favoritos" -#: js/viewfeed.js:443 +#: js/viewfeed.js:446 #: plugins/digest/digest.js:260 #: plugins/digest/digest.js:718 msgid "Star article" msgstr "Marcar el artÃculo como favorito" -#: js/viewfeed.js:476 +#: js/viewfeed.js:479 #: plugins/digest/digest.js:263 #: plugins/digest/digest.js:749 msgid "Unpublish article" msgstr "Despublicar artÃculo" -#: js/viewfeed.js:481 +#: js/viewfeed.js:484 #: plugins/digest/digest.js:265 #: plugins/digest/digest.js:754 msgid "Publish article" msgstr "Publicar artÃculo" -#: js/viewfeed.js:677 -#: js/viewfeed.js:705 -#: js/viewfeed.js:732 -#: js/viewfeed.js:795 -#: js/viewfeed.js:829 -#: js/viewfeed.js:949 -#: js/viewfeed.js:992 -#: js/viewfeed.js:1045 -#: js/viewfeed.js:2051 +#: js/viewfeed.js:680 +#: js/viewfeed.js:708 +#: js/viewfeed.js:735 +#: js/viewfeed.js:798 +#: js/viewfeed.js:832 +#: js/viewfeed.js:952 +#: js/viewfeed.js:995 +#: js/viewfeed.js:1048 +#: js/viewfeed.js:2060 #: 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:957 +#: js/viewfeed.js:960 #, 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:959 +#: js/viewfeed.js:962 #, 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:1001 +#: js/viewfeed.js:1004 #, 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:1004 +#: js/viewfeed.js:1007 #, 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:1006 +#: js/viewfeed.js:1009 msgid "Please note that unstarred articles might get purged on next feed update." msgstr "" -#: js/viewfeed.js:1051 +#: js/viewfeed.js:1054 #, 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:1075 +#: js/viewfeed.js:1078 msgid "Edit article Tags" msgstr "Editar las etiquetas del artÃculo" -#: js/viewfeed.js:1081 +#: js/viewfeed.js:1084 msgid "Saving article tags..." msgstr "Guardando las etiquetas del artÃculo..." -#: js/viewfeed.js:1278 +#: js/viewfeed.js:1287 msgid "No article is selected." msgstr "No se ha seleccionado ningún artÃculo." -#: js/viewfeed.js:1313 +#: js/viewfeed.js:1322 msgid "No articles found to mark" msgstr "No se han encontrado artÃculos que marcar" -#: js/viewfeed.js:1315 +#: js/viewfeed.js:1324 #, 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:1827 +#: js/viewfeed.js:1836 msgid "Open original article" msgstr "Abrir artÃculo original" -#: js/viewfeed.js:1833 +#: js/viewfeed.js:1842 #, fuzzy msgid "Display article URL" msgstr "Mostrar artÃculos" -#: js/viewfeed.js:1852 +#: js/viewfeed.js:1861 #, fuzzy msgid "Toggle marked" msgstr "Alternar favoritos" -#: js/viewfeed.js:1933 +#: js/viewfeed.js:1942 msgid "Assign label" msgstr "Asignar marcador" -#: js/viewfeed.js:1938 +#: js/viewfeed.js:1947 msgid "Remove label" msgstr "Borrar marcador" -#: js/viewfeed.js:1962 +#: js/viewfeed.js:1971 msgid "Playing..." msgstr "Reproduciendo..." -#: js/viewfeed.js:1963 +#: js/viewfeed.js:1972 msgid "Click to pause" msgstr "Clic para pausar" -#: js/viewfeed.js:2020 +#: js/viewfeed.js:2029 #, fuzzy msgid "Please enter new score for selected articles:" msgstr "Por favor, introduzca una nota para este artÃculo:" -#: js/viewfeed.js:2062 +#: js/viewfeed.js:2071 #, fuzzy msgid "Please enter new score for this article:" msgstr "Por favor, introduzca una nota para este artÃculo:" -#: js/viewfeed.js:2095 +#: js/viewfeed.js:2104 #, fuzzy msgid "Article URL:" msgstr "Todos" @@ -3750,6 +3695,54 @@ 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." +#~ msgid "Could not update database" +#~ msgstr "No se pudo actualizar la base de datos" + +#~ msgid "Could not find necessary schema file, need version:" +#~ msgstr "No se pudo encontrar el fichero de esquema necesario. Versión necesaria:" + +#~ msgid ", found: " +#~ msgstr ", encontrado:" + +#~ msgid "Tiny Tiny RSS database is up to date." +#~ msgstr "La base de datos de Tiny Tiny RSS está actualizada." + +#~ msgid "Please backup your database before proceeding." +#~ msgstr "Por favor, haga una copia de seguridad de su base de datos antes de continuar." + +#~ msgid "Your Tiny Tiny RSS database needs update to the latest version (<b>%d</b> to <b>%d</b>)." +#~ msgstr "Su base de datos Tiny Tiny RSS necesita ser actualizada a la última versión (<b>%d</b> to <b>%d</b>)." + +#~ msgid "Performing updates..." +#~ msgstr "Actualizando..." + +#~ msgid "Updating to version %d..." +#~ msgstr "Actualizando a la versión %d..." + +#~ msgid "Checking version... " +#~ msgstr "Comprobando la versión..." + +#~ msgid "OK!" +#~ msgstr "¡TODO CORRECTO!" + +#~ msgid "ERROR!" +#~ msgstr "¡ERROR!" + +#, fuzzy +#~ 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] "Tarea terminada. Realizada(s) <b>%d</b> actualización(es) a la versión del esquema <b>%d</b>." +#~ msgstr[1] "Tarea terminada. Realizada(s) <b>%d</b> actualización(es) a la versión del esquema <b>%d</b>." + +#~ msgid "Your database schema is from a newer version of Tiny Tiny RSS." +#~ msgstr "El esquema de su base de datos corresponde a una versión más reciente de Tiny Tiny RSS." + +#~ msgid "Found schema version: <b>%d</b>, required: <b>%d</b>." +#~ msgstr "Versión actual del esquema: <b>%d</b>, requerida: <b>%d</b>." + +#~ msgid "Schema upgrade impossible. Please update Tiny Tiny RSS files to the newer version and continue." +#~ msgstr "Imposible actualizar el esquema. Por favor, actualice Tiny Tiny RSS a la última versión y continúe." + #~ msgid "Mark feed as read" #~ msgstr "Marcar fuente como leÃda" @@ -3763,9 +3756,6 @@ msgstr "La actualización en vivo es una caracterÃstica experimental. Haga una #~ msgid "When this option is enabled, headlines in Special feeds and Labels are grouped by feeds" #~ msgstr "Cuando esta opción está habilitada, los titulares en fuentes especiales y marcadores son agrupados por fuentes" -#~ msgid "Title" -#~ msgstr "TÃtulo" - #~ msgid "Title or Content" #~ msgstr "TÃtulo o contenido" diff --git a/locale/fi_FI/LC_MESSAGES/messages.mo b/locale/fi_FI/LC_MESSAGES/messages.mo Binary files differindex 6cbb12746..2d3f318f8 100644 --- a/locale/fi_FI/LC_MESSAGES/messages.mo +++ 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 index a4f4c9bb0..6622a5af7 100644 --- a/locale/fi_FI/LC_MESSAGES/messages.po +++ b/locale/fi_FI/LC_MESSAGES/messages.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: tt-rss 1.7.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-04-04 09:06+0400\n" +"POT-Creation-Date: 2013-04-04 21:31+0400\n" "PO-Revision-Date: 2013-04-01 14:49+0200\n" "Last-Translator: Arto Tolonen <arto.tolonen@iki.fi>\n" "Language-Team: \n" @@ -102,102 +102,6 @@ msgstr "Edistynyt käyttäjä" 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:648 -#: classes/handler/public.php:736 -#: classes/handler/public.php:818 -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 "" @@ -248,7 +152,7 @@ msgstr "" #: index.php:135 #: index.php:152 -#: index.php:276 +#: index.php:277 #: prefs.php:103 #: classes/backend.php:5 #: classes/pref/labels.php:296 @@ -256,7 +160,7 @@ msgstr "" #: classes/pref/feeds.php:1331 #: plugins/digest/digest_body.php:63 #: js/feedlist.js:128 -#: js/feedlist.js:436 +#: js/feedlist.js:438 #: js/functions.js:420 #: js/functions.js:758 #: js/functions.js:1194 @@ -277,8 +181,8 @@ msgstr "" #: js/prefs.js:1814 #: js/tt-rss.js:475 #: js/tt-rss.js:492 -#: js/viewfeed.js:772 -#: js/viewfeed.js:1200 +#: js/viewfeed.js:775 +#: js/viewfeed.js:1201 #: plugins/import_export/import_export.js:17 #: plugins/updater/updater.js:17 msgid "Loading, please wait..." @@ -301,13 +205,13 @@ msgid "All Articles" msgstr "Kaikki artikkelit" #: index.php:174 -#: include/functions.php:1953 +#: include/functions.php:1955 #: classes/feeds.php:106 msgid "Starred" msgstr "Tähti" #: index.php:175 -#: include/functions.php:1954 +#: include/functions.php:1956 #: classes/feeds.php:107 msgid "Published" msgstr "Julkinen" @@ -346,9 +250,13 @@ msgstr "Uusin ensin" msgid "Oldest first" msgstr "Vanhin ensin" -#: index.php:191 -#: index.php:240 -#: include/functions.php:1943 +#: index.php:188 +msgid "Title" +msgstr "Otsikko" + +#: index.php:192 +#: index.php:241 +#: include/functions.php:1945 #: classes/feeds.php:111 #: classes/feeds.php:441 #: js/FeedTree.js:128 @@ -357,104 +265,104 @@ msgstr "Vanhin ensin" msgid "Mark as read" msgstr "Merkitse luetuiksi" -#: index.php:194 +#: index.php:195 msgid "Older than one day" msgstr "1pv vanhemmat" -#: index.php:197 +#: index.php:198 msgid "Older than one week" msgstr "1vk vanhemmat" -#: index.php:200 +#: index.php:201 msgid "Older than two weeks" msgstr "2vk vanhemmat" -#: index.php:217 +#: index.php:218 msgid "Communication problem with server." msgstr "Serveriin ei saada yhteyttä" -#: index.php:225 +#: index.php:226 msgid "New version of Tiny Tiny RSS is available!" msgstr "Uusi versio Tiny Tiny RSS:stä saatavilla!" -#: index.php:230 +#: index.php:231 msgid "Actions..." msgstr "Toiminnot..." -#: index.php:232 +#: index.php:233 msgid "Preferences..." msgstr "Asetukset" -#: index.php:233 +#: index.php:234 msgid "Search..." msgstr "Etsi..." -#: index.php:234 +#: index.php:235 msgid "Feed actions:" msgstr "Syötetoiminnot:" -#: index.php:235 +#: index.php:236 #: classes/handler/public.php:578 msgid "Subscribe to feed..." msgstr "Tilaa syöte..." -#: index.php:236 +#: index.php:237 msgid "Edit this feed..." msgstr "Muokkaa tätä syötettä" -#: index.php:237 +#: index.php:238 msgid "Rescore feed" msgstr "Uudelleenpisteytä syöte" -#: index.php:238 +#: index.php:239 #: classes/pref/feeds.php:717 #: classes/pref/feeds.php:1283 #: js/PrefFeedTree.js:73 msgid "Unsubscribe" msgstr "Peruuta syötetilaus" -#: index.php:239 +#: index.php:240 msgid "All feeds:" msgstr "Kaikki syötteet" -#: index.php:241 +#: index.php:242 msgid "(Un)hide read feeds" msgstr "Piilota/näytä luetut syötteet" -#: index.php:242 +#: index.php:243 msgid "Other actions:" msgstr "Muut toiminnot" -#: index.php:244 +#: index.php:245 msgid "Switch to digest..." msgstr "Vaihda tiivistelmään..." -#: index.php:246 +#: index.php:247 msgid "Show tag cloud..." msgstr "Näytä tagipilvi" -#: index.php:247 -#: include/functions.php:1929 +#: index.php:248 +#: include/functions.php:1931 msgid "Toggle widescreen mode" msgstr "Vaihda näkymä" -#: index.php:248 +#: index.php:249 msgid "Select by tags..." msgstr "Valitse tageilla" -#: index.php:249 +#: index.php:250 msgid "Create label..." msgstr "Luo tunniste..." -#: index.php:250 +#: index.php:251 msgid "Create filter..." msgstr "Luo suodatin..." -#: index.php:251 +#: index.php:252 msgid "Keyboard shortcuts help" msgstr "Näytä pikanäppäimet" -#: index.php:260 +#: index.php:261 #: plugins/digest/digest_body.php:77 #: plugins/mobile/mobile-functions.php:62 #: plugins/mobile/mobile-functions.php:237 @@ -463,8 +371,8 @@ msgstr "Kirjaudu ulos" #: prefs.php:36 #: prefs.php:121 -#: include/functions.php:1956 -#: classes/pref/prefs.php:428 +#: include/functions.php:1958 +#: classes/pref/prefs.php:444 msgid "Preferences" msgstr "Asetukset" @@ -489,8 +397,8 @@ msgid "Filters" msgstr "Suodattimet" #: prefs.php:130 -#: include/functions.php:1146 -#: include/functions.php:1782 +#: include/functions.php:1148 +#: include/functions.php:1784 #: classes/pref/labels.php:90 #: plugins/mobile/mobile-functions.php:198 msgid "Labels" @@ -509,6 +417,24 @@ msgstr "Luo uusi käyttäjätili" msgid "New user registrations are administratively disabled." msgstr "" +#: 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:648 +#: classes/handler/public.php:736 +#: classes/handler/public.php:818 +#: classes/handler/public.php:893 +#: classes/handler/public.php:907 +#: classes/handler/public.php:914 +#: classes/handler/public.php:939 +msgid "Return to Tiny Tiny RSS" +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 "" @@ -555,15 +481,15 @@ msgstr "" msgid "New user registrations are currently closed." msgstr "" -#: update.php:55 +#: update.php:56 msgid "Tiny Tiny RSS data update script." msgstr "" #: include/digest.php:109 -#: include/functions.php:1155 -#: include/functions.php:1683 -#: include/functions.php:1768 -#: include/functions.php:1790 +#: include/functions.php:1157 +#: include/functions.php:1685 +#: include/functions.php:1770 +#: include/functions.php:1792 #: classes/opml.php:416 #: classes/pref/feeds.php:222 msgid "Uncategorized" @@ -580,300 +506,300 @@ msgstr[1] "" msgid "No feeds found." msgstr "Syötteitä ei löytynyt." -#: include/functions.php:1144 -#: include/functions.php:1780 +#: include/functions.php:1146 +#: include/functions.php:1782 #: plugins/mobile/mobile-functions.php:171 msgid "Special" msgstr "Erikoiset" -#: include/functions.php:1632 -#: classes/feeds.php:1101 +#: include/functions.php:1634 +#: classes/feeds.php:1104 #: classes/pref/filters.php:427 msgid "All feeds" msgstr "Kaikki syötteet" -#: include/functions.php:1833 +#: include/functions.php:1835 msgid "Starred articles" msgstr "Tähdellä merkityt syötteet" -#: include/functions.php:1835 +#: include/functions.php:1837 msgid "Published articles" msgstr "Julkiset artikkelit" -#: include/functions.php:1837 +#: include/functions.php:1839 msgid "Fresh articles" msgstr "Tuoreet artikkelit" -#: include/functions.php:1839 -#: include/functions.php:1951 +#: include/functions.php:1841 +#: include/functions.php:1953 msgid "All articles" msgstr "Kaikki artikkelit" -#: include/functions.php:1841 +#: include/functions.php:1843 msgid "Archived articles" msgstr "Arkistoidut artikkelit" -#: include/functions.php:1843 +#: include/functions.php:1845 msgid "Recently read" msgstr "Viimeksi luetut" -#: include/functions.php:1906 +#: include/functions.php:1908 msgid "Navigation" msgstr "Valikko" -#: include/functions.php:1907 +#: include/functions.php:1909 msgid "Open next feed" msgstr "Avaa seuraava syöte" -#: include/functions.php:1908 +#: include/functions.php:1910 msgid "Open previous feed" msgstr "Avaa edellinen syöte" -#: include/functions.php:1909 +#: include/functions.php:1911 msgid "Open next article" msgstr "Avaa seuraava artikkeli" -#: include/functions.php:1910 +#: include/functions.php:1912 msgid "Open previous article" msgstr "Avaa edellinen artikkeli" -#: include/functions.php:1911 +#: include/functions.php:1913 msgid "Open next article (don't scroll long articles)" msgstr "Avaa seuraava artikkeli (älä vieritä pitkiä artikkeleita)" -#: include/functions.php:1912 +#: include/functions.php:1914 msgid "Open previous article (don't scroll long articles)" msgstr "Avaa edellinen artikkeli (älä vieritä pitkiä artikkeleita)" -#: include/functions.php:1913 +#: include/functions.php:1915 msgid "Show search dialog" msgstr "Etsi..." -#: include/functions.php:1914 +#: include/functions.php:1916 msgid "Article" msgstr "Artikkeli" -#: include/functions.php:1915 +#: include/functions.php:1917 msgid "Toggle starred" msgstr "Lisää/Poista tähti" -#: include/functions.php:1916 -#: js/viewfeed.js:1863 +#: include/functions.php:1918 +#: js/viewfeed.js:1872 msgid "Toggle published" msgstr "Vaihda julkinen-tilaa" -#: include/functions.php:1917 -#: js/viewfeed.js:1841 +#: include/functions.php:1919 +#: js/viewfeed.js:1850 msgid "Toggle unread" msgstr "Vaihda luettu/lukematon" -#: include/functions.php:1918 +#: include/functions.php:1920 msgid "Edit tags" msgstr "Muokkaa tageja" -#: include/functions.php:1919 +#: include/functions.php:1921 msgid "Dismiss selected" msgstr "Piilota valittu" -#: include/functions.php:1920 +#: include/functions.php:1922 msgid "Dismiss read" msgstr "Piilota luettu" -#: include/functions.php:1921 +#: include/functions.php:1923 msgid "Open in new window" msgstr "Avaa uudessa ikkunassa" -#: include/functions.php:1922 -#: js/viewfeed.js:1882 +#: include/functions.php:1924 +#: js/viewfeed.js:1891 msgid "Mark below as read" msgstr "Merkitse alla olevat luetuiksi" -#: include/functions.php:1923 -#: js/viewfeed.js:1876 +#: include/functions.php:1925 +#: js/viewfeed.js:1885 msgid "Mark above as read" msgstr "Merkitse yllä olevat luetuiksi" -#: include/functions.php:1924 +#: include/functions.php:1926 msgid "Scroll down" msgstr "Vieritä alas" -#: include/functions.php:1925 +#: include/functions.php:1927 msgid "Scroll up" msgstr "Vieritä ylös" -#: include/functions.php:1926 +#: include/functions.php:1928 msgid "Select article under cursor" msgstr "Valitse kursorin alla oleva artikkeli" -#: include/functions.php:1927 +#: include/functions.php:1929 msgid "Email article" msgstr "Lähetä artikkeli sähköpostilla" -#: include/functions.php:1928 +#: include/functions.php:1930 msgid "Close/collapse article" msgstr "Piilota/näytä artikkeli" -#: include/functions.php:1930 +#: include/functions.php:1932 #: plugins/embed_original/init.php:33 msgid "Toggle embed original" msgstr "Vaihda alkuperäinen liitetty" -#: include/functions.php:1931 +#: include/functions.php:1933 msgid "Article selection" msgstr "Artikkelin valinta" -#: include/functions.php:1932 +#: include/functions.php:1934 msgid "Select all articles" msgstr "Valitse kaikki artikkelit" -#: include/functions.php:1933 +#: include/functions.php:1935 msgid "Select unread" msgstr "Valitse lukematon" -#: include/functions.php:1934 +#: include/functions.php:1936 msgid "Select starred" msgstr "Valitse tähdellä merkityt" -#: include/functions.php:1935 +#: include/functions.php:1937 msgid "Select published" msgstr "Valitse julkaistu" -#: include/functions.php:1936 +#: include/functions.php:1938 msgid "Invert selection" msgstr "Vaihda valittujen tila" -#: include/functions.php:1937 +#: include/functions.php:1939 msgid "Deselect everything" msgstr "Poista valinnat" -#: include/functions.php:1938 +#: include/functions.php:1940 #: classes/pref/feeds.php:521 #: classes/pref/feeds.php:754 msgid "Feed" msgstr "Syöte" -#: include/functions.php:1939 +#: include/functions.php:1941 msgid "Refresh current feed" msgstr "Päivitä tämänhetkinen syöte" -#: include/functions.php:1940 +#: include/functions.php:1942 msgid "Un/hide read feeds" msgstr "Piilota/näytä luetut syötteet" -#: include/functions.php:1941 +#: include/functions.php:1943 #: classes/pref/feeds.php:1275 msgid "Subscribe to feed" msgstr "Tilaa syöte" -#: include/functions.php:1942 +#: include/functions.php:1944 #: js/FeedTree.js:135 #: js/PrefFeedTree.js:67 msgid "Edit feed" msgstr "Muokkaa syötettä" -#: include/functions.php:1944 +#: include/functions.php:1946 msgid "Reverse headlines" msgstr "Käännä otsikot" -#: include/functions.php:1945 +#: include/functions.php:1947 msgid "Debug feed update" msgstr "Syötteen päivitys (Debug)" -#: include/functions.php:1946 +#: include/functions.php:1948 #: js/FeedTree.js:178 msgid "Mark all feeds as read" msgstr "Merkitse kaikki syötteet luetuiksi" -#: include/functions.php:1947 +#: include/functions.php:1949 msgid "Un/collapse current category" msgstr "Piilota/näytä tämänhetkinen kansio" -#: include/functions.php:1948 +#: include/functions.php:1950 msgid "Toggle combined mode" msgstr "Vaihda yhdistety tila" -#: include/functions.php:1949 +#: include/functions.php:1951 msgid "Toggle auto expand in combined mode" msgstr "Vaihda automaattilaajennus tiivistemuodossa" -#: include/functions.php:1950 +#: include/functions.php:1952 msgid "Go to" msgstr "Mene" -#: include/functions.php:1952 +#: include/functions.php:1954 msgid "Fresh" msgstr "Päivitä" -#: include/functions.php:1955 +#: include/functions.php:1957 #: js/tt-rss.js:431 #: js/tt-rss.js:584 msgid "Tag cloud" msgstr "Tagipilvi" -#: include/functions.php:1957 +#: include/functions.php:1959 msgid "Other" msgstr "Muu" -#: include/functions.php:1958 +#: include/functions.php:1960 #: classes/pref/labels.php:281 msgid "Create label" msgstr "Luo tunniste" -#: include/functions.php:1959 +#: include/functions.php:1961 #: classes/pref/filters.php:654 msgid "Create filter" msgstr "Luo suodatin" -#: include/functions.php:1960 +#: include/functions.php:1962 msgid "Un/collapse sidebar" msgstr "Piilota/näytä sivupalkki" -#: include/functions.php:1961 +#: include/functions.php:1963 msgid "Show help dialog" msgstr "Näytä ohjeikkuna" -#: include/functions.php:2446 +#: include/functions.php:2471 #, php-format msgid "Search results: %s" msgstr "Hakutulokset: %s" -#: include/functions.php:2937 -#: js/viewfeed.js:1969 +#: include/functions.php:2962 +#: js/viewfeed.js:1978 msgid "Click to play" msgstr "" -#: include/functions.php:2938 -#: js/viewfeed.js:1968 +#: include/functions.php:2963 +#: js/viewfeed.js:1977 msgid "Play" msgstr "" -#: include/functions.php:3055 +#: include/functions.php:3080 msgid " - " msgstr " - " -#: include/functions.php:3077 -#: include/functions.php:3371 +#: include/functions.php:3102 +#: include/functions.php:3396 #: classes/article.php:281 msgid "no tags" msgstr "ei tageja" -#: include/functions.php:3087 +#: include/functions.php:3112 #: classes/feeds.php:686 msgid "Edit tags for this article" msgstr "Muokkaa tämän artikkelin tageja" -#: include/functions.php:3116 +#: include/functions.php:3141 #: classes/feeds.php:642 msgid "Originally from:" msgstr "" -#: include/functions.php:3129 +#: include/functions.php:3154 #: classes/feeds.php:655 #: classes/pref/feeds.php:540 msgid "Feed URL" msgstr "Syötteen URL" -#: include/functions.php:3160 +#: include/functions.php:3185 #: classes/dlg.php:37 #: classes/dlg.php:60 #: classes/dlg.php:93 @@ -885,7 +811,7 @@ msgstr "Syötteen URL" #: classes/backend.php:105 #: classes/pref/users.php:99 #: classes/pref/filters.php:147 -#: classes/pref/prefs.php:1059 +#: classes/pref/prefs.php:1105 #: classes/pref/feeds.php:1588 #: classes/pref/feeds.php:1660 #: plugins/import_export/init.php:406 @@ -896,15 +822,15 @@ msgstr "Syötteen URL" msgid "Close this window" msgstr "Sulje" -#: include/functions.php:3396 +#: include/functions.php:3421 msgid "(edit note)" msgstr "" -#: include/functions.php:3631 +#: include/functions.php:3656 msgid "unknown type" msgstr "tuntematon tyyppi" -#: include/functions.php:3687 +#: include/functions.php:3712 msgid "Attachments" msgstr "Litteet" @@ -927,6 +853,7 @@ msgstr "Unohdin salasanani" #: include/login_form.php:201 #: classes/handler/public.php:489 +#: classes/pref/prefs.php:552 msgid "Language:" msgstr "Kieli:" @@ -937,7 +864,7 @@ msgstr "Profiili:" #: include/login_form.php:213 #: classes/handler/public.php:233 #: classes/rpc.php:64 -#: classes/pref/prefs.php:995 +#: classes/pref/prefs.php:1041 msgid "Default profile" msgstr "Oletusprofiili" @@ -955,7 +882,7 @@ msgstr "Muista kirjautumiseni" msgid "Log in" msgstr "Kirjaudu sisään" -#: include/sessions.php:58 +#: include/sessions.php:62 msgid "Session failed to validate (incorrect IP)" msgstr "" @@ -971,7 +898,7 @@ msgstr "Tämän syötteen tagit (pilkulla erotettuna)" #: classes/pref/users.php:176 #: classes/pref/labels.php:79 #: classes/pref/filters.php:405 -#: classes/pref/prefs.php:941 +#: classes/pref/prefs.php:987 #: classes/pref/feeds.php:733 #: classes/pref/feeds.php:881 #: plugins/nsfw/init.php:86 @@ -983,16 +910,16 @@ msgstr "Talleta" #: classes/article.php:206 #: classes/handler/public.php:460 #: classes/handler/public.php:502 -#: classes/feeds.php:1028 -#: classes/feeds.php:1080 -#: classes/feeds.php:1140 +#: classes/feeds.php:1031 +#: classes/feeds.php:1083 +#: classes/feeds.php:1143 #: 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:943 +#: classes/pref/prefs.php:989 #: classes/pref/feeds.php:734 #: classes/pref/feeds.php:884 #: classes/pref/feeds.php:1797 @@ -1116,6 +1043,19 @@ msgstr "Takaisin" msgid "Sorry, login and email combination not found." msgstr "Valitettavasti käyttjätunnus/email -yhdistelmää ei löydy." +# Better this way... +#: classes/handler/public.php:842 +msgid "Your access level is insufficient to run this script." +msgstr "Käyttäjäoikeutesi eivät riitä päivitysscriptin suorittamiseen." + +#: classes/handler/public.php:866 +msgid "Database Updater" +msgstr "" + +#: classes/handler/public.php:931 +msgid "Perform updates" +msgstr "" + #: 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 "" @@ -1215,7 +1155,7 @@ msgstr "Valitse" #: classes/pref/filters.php:648 #: classes/pref/filters.php:737 #: classes/pref/filters.php:764 -#: classes/pref/prefs.php:955 +#: classes/pref/prefs.php:1001 #: classes/pref/feeds.php:1266 #: classes/pref/feeds.php:1536 #: classes/pref/feeds.php:1606 @@ -1235,7 +1175,7 @@ msgstr "Käännä" #: classes/pref/filters.php:650 #: classes/pref/filters.php:739 #: classes/pref/filters.php:766 -#: classes/pref/prefs.php:957 +#: classes/pref/prefs.php:1003 #: classes/pref/feeds.php:1268 #: classes/pref/feeds.php:1538 #: classes/pref/feeds.php:1608 @@ -1326,44 +1266,44 @@ msgid "No articles found to display." msgstr "Ei näytettäviä artikkeleita." #: classes/feeds.php:759 -#: classes/feeds.php:923 +#: classes/feeds.php:926 #, php-format msgid "Feeds last updated at %s" msgstr "Syötteet päivitetty viimeksi %s" #: classes/feeds.php:769 -#: classes/feeds.php:933 +#: classes/feeds.php:936 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 +#: classes/feeds.php:916 msgid "No feed selected." msgstr "Yhtään syötettä ei ole valittuna" -#: classes/feeds.php:966 -#: classes/feeds.php:974 +#: classes/feeds.php:969 +#: classes/feeds.php:977 msgid "Feed or site URL" msgstr "Syötteen/sivuston URL" -#: classes/feeds.php:980 +#: classes/feeds.php:983 #: 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 +#: classes/feeds.php:991 msgid "Available feeds" msgstr "Saatavilla olevat syötteet" -#: classes/feeds.php:1000 +#: classes/feeds.php:1003 #: classes/pref/users.php:139 #: classes/pref/feeds.php:590 #: classes/pref/feeds.php:818 msgid "Authentication" msgstr "Tunnistautuminen" -#: classes/feeds.php:1004 +#: classes/feeds.php:1007 #: classes/pref/users.php:402 #: classes/pref/feeds.php:596 #: classes/pref/feeds.php:822 @@ -1371,30 +1311,30 @@ msgstr "Tunnistautuminen" msgid "Login" msgstr "Käyttäjätunnus" -#: classes/feeds.php:1007 -#: classes/pref/prefs.php:253 +#: classes/feeds.php:1010 +#: classes/pref/prefs.php:269 #: classes/pref/feeds.php:602 #: classes/pref/feeds.php:828 #: classes/pref/feeds.php:1778 msgid "Password" msgstr "Salasana" -#: classes/feeds.php:1017 +#: classes/feeds.php:1020 msgid "This feed requires authentication." msgstr "Tämä syöte vaatii kirjautumisen" -#: classes/feeds.php:1022 -#: classes/feeds.php:1078 +#: classes/feeds.php:1025 +#: classes/feeds.php:1081 #: classes/pref/feeds.php:1796 msgid "Subscribe" msgstr "Tilaa" -#: classes/feeds.php:1025 +#: classes/feeds.php:1028 msgid "More feeds" msgstr "Lisää syötteitä" -#: classes/feeds.php:1048 -#: classes/feeds.php:1139 +#: classes/feeds.php:1051 +#: classes/feeds.php:1142 #: classes/pref/users.php:332 #: classes/pref/filters.php:641 #: classes/pref/feeds.php:1259 @@ -1402,19 +1342,19 @@ msgstr "Lisää syötteitä" msgid "Search" msgstr "Etsi" -#: classes/feeds.php:1052 +#: classes/feeds.php:1055 msgid "Popular feeds" msgstr "Suositut syötteet" -#: classes/feeds.php:1053 +#: classes/feeds.php:1056 msgid "Feed archive" msgstr "Syötearkisto" -#: classes/feeds.php:1056 +#: classes/feeds.php:1059 msgid "limit:" msgstr "raja:" -#: classes/feeds.php:1079 +#: classes/feeds.php:1082 #: classes/pref/users.php:358 #: classes/pref/labels.php:284 #: classes/pref/filters.php:398 @@ -1424,15 +1364,15 @@ msgstr "raja:" msgid "Remove" msgstr "Poista" -#: classes/feeds.php:1090 +#: classes/feeds.php:1093 msgid "Look for" msgstr "Etsi" -#: classes/feeds.php:1098 +#: classes/feeds.php:1101 msgid "Limit search to:" msgstr "Rajaa haku" -#: classes/feeds.php:1114 +#: classes/feeds.php:1117 msgid "This feed" msgstr "Tämä syöte" @@ -1592,7 +1532,7 @@ msgstr "" #: classes/pref/filters.php:645 #: classes/pref/filters.php:734 #: classes/pref/filters.php:761 -#: classes/pref/prefs.php:952 +#: classes/pref/prefs.php:998 #: classes/pref/feeds.php:1263 #: classes/pref/feeds.php:1533 #: classes/pref/feeds.php:1603 @@ -2008,212 +1948,217 @@ msgstr "Syötetyt salasanat eivät täsmää" msgid "Function not supported by authentication module." msgstr "" -#: classes/pref/prefs.php:120 +#: classes/pref/prefs.php:135 msgid "The configuration was saved." msgstr "Konfiguraatio tallennettu." -#: classes/pref/prefs.php:134 +#: classes/pref/prefs.php:150 #, php-format msgid "Unknown option: %s" msgstr "Tuntematon valinta: %s" -#: classes/pref/prefs.php:148 +#: classes/pref/prefs.php:164 msgid "Your personal data has been saved." msgstr "Sinun tiedot on tallennettu" -#: classes/pref/prefs.php:188 +#: classes/pref/prefs.php:204 msgid "Personal data / Authentication" msgstr "Omat tiedot / Tunnistautuminen" -#: classes/pref/prefs.php:208 +#: classes/pref/prefs.php:224 msgid "Personal data" msgstr "Omat tiedot" -#: classes/pref/prefs.php:218 +#: classes/pref/prefs.php:234 msgid "Full name" msgstr "Koko nimi" -#: classes/pref/prefs.php:222 +#: classes/pref/prefs.php:238 msgid "E-mail" msgstr "Email" -#: classes/pref/prefs.php:228 +#: classes/pref/prefs.php:244 msgid "Access level" msgstr "Käyttäjäoikeudet" -#: classes/pref/prefs.php:238 +#: classes/pref/prefs.php:254 msgid "Save data" msgstr "Talleta tiedot" -#: classes/pref/prefs.php:260 +#: classes/pref/prefs.php:276 msgid "Your password is at default value, please change it." msgstr "Käytät vieläkin oletussalasanaa, kannattaa vaihtaa." -#: classes/pref/prefs.php:287 +#: classes/pref/prefs.php:303 msgid "Changing your current password will disable OTP." msgstr "Salasanan vaihtaminen poistaa kertakäyttösalasanatunnistautumisen käytöstä." -#: classes/pref/prefs.php:292 +#: classes/pref/prefs.php:308 msgid "Old password" msgstr "Vanha salasana" -#: classes/pref/prefs.php:295 +#: classes/pref/prefs.php:311 msgid "New password" msgstr "Uusi salasana" -#: classes/pref/prefs.php:300 +#: classes/pref/prefs.php:316 msgid "Confirm password" msgstr "Vahvista salasana" -#: classes/pref/prefs.php:310 +#: classes/pref/prefs.php:326 msgid "Change password" msgstr "Vaihda salasana" -#: classes/pref/prefs.php:316 +#: classes/pref/prefs.php:332 msgid "One time passwords / Authenticator" msgstr "" -#: classes/pref/prefs.php:320 +#: classes/pref/prefs.php:336 msgid "One time passwords are currently enabled. Enter your current password below to disable." msgstr "" -#: classes/pref/prefs.php:345 -#: classes/pref/prefs.php:396 +#: classes/pref/prefs.php:361 +#: classes/pref/prefs.php:412 msgid "Enter your password" msgstr "Syötä salasanasi" -#: classes/pref/prefs.php:356 +#: classes/pref/prefs.php:372 msgid "Disable OTP" msgstr "Poista OTP käytöstä" -#: classes/pref/prefs.php:362 +#: classes/pref/prefs.php:378 msgid "You will need a compatible Authenticator to use this. Changing your password would automatically disable OTP." msgstr "" -#: classes/pref/prefs.php:364 +#: classes/pref/prefs.php:380 msgid "Scan the following code by the Authenticator application:" msgstr "" -#: classes/pref/prefs.php:405 +#: classes/pref/prefs.php:421 msgid "I have scanned the code and would like to enable OTP" msgstr "" -#: classes/pref/prefs.php:413 +#: classes/pref/prefs.php:429 msgid "Enable OTP" msgstr "Aktivoi kertakäyttösalasana" -#: classes/pref/prefs.php:451 +#: classes/pref/prefs.php:475 msgid "Some preferences are only available in default profile." msgstr "" -#: classes/pref/prefs.php:545 +#: classes/pref/prefs.php:585 msgid "Customize" msgstr "Muokkaa" -#: classes/pref/prefs.php:605 +#: classes/pref/prefs.php:645 msgid "Register" msgstr "Rekisteröi" -#: classes/pref/prefs.php:609 +#: classes/pref/prefs.php:649 msgid "Clear" msgstr "Tyhjennä" -#: classes/pref/prefs.php:615 +#: classes/pref/prefs.php:655 #, php-format msgid "Current server time: %s (UTC)" msgstr "Serverin aika: %s (UTC)" -#: classes/pref/prefs.php:648 +#: classes/pref/prefs.php:688 msgid "Save configuration" msgstr "Talleta asetukset" -#: classes/pref/prefs.php:651 +#: classes/pref/prefs.php:692 +#, fuzzy +msgid "Save and exit preferences" +msgstr "Poistu asetuksista" + +#: classes/pref/prefs.php:697 msgid "Manage profiles" msgstr "Hallitse profiileita" -#: classes/pref/prefs.php:654 +#: classes/pref/prefs.php:700 msgid "Reset to defaults" msgstr "Palauta oletusarvot" -#: classes/pref/prefs.php:678 -#: classes/pref/prefs.php:680 +#: classes/pref/prefs.php:724 +#: classes/pref/prefs.php:726 msgid "Plugins" msgstr "Lisäosat" -#: classes/pref/prefs.php:682 +#: classes/pref/prefs.php:728 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:684 +#: classes/pref/prefs.php:730 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:710 +#: classes/pref/prefs.php:756 msgid "System plugins" msgstr "Järjetelmän lisäosat" -#: classes/pref/prefs.php:714 -#: classes/pref/prefs.php:768 +#: classes/pref/prefs.php:760 +#: classes/pref/prefs.php:814 msgid "Plugin" msgstr "Lisäosa" -#: classes/pref/prefs.php:715 -#: classes/pref/prefs.php:769 +#: classes/pref/prefs.php:761 +#: classes/pref/prefs.php:815 msgid "Description" msgstr "Kuvaus" -#: classes/pref/prefs.php:716 -#: classes/pref/prefs.php:770 +#: classes/pref/prefs.php:762 +#: classes/pref/prefs.php:816 msgid "Version" msgstr "Versio" -#: classes/pref/prefs.php:717 -#: classes/pref/prefs.php:771 +#: classes/pref/prefs.php:763 +#: classes/pref/prefs.php:817 msgid "Author" msgstr "Tekijä" -#: classes/pref/prefs.php:746 -#: classes/pref/prefs.php:803 +#: classes/pref/prefs.php:792 +#: classes/pref/prefs.php:849 msgid "more info" msgstr "lisätietoja" -#: classes/pref/prefs.php:755 -#: classes/pref/prefs.php:812 +#: classes/pref/prefs.php:801 +#: classes/pref/prefs.php:858 msgid "Clear data" msgstr "Tyhjennä tiedot" -#: classes/pref/prefs.php:764 +#: classes/pref/prefs.php:810 msgid "User plugins" msgstr "Käyttäjän lisäosat" -#: classes/pref/prefs.php:827 +#: classes/pref/prefs.php:873 msgid "Enable selected plugins" msgstr "Aktivoi valitut lisäosat" -#: classes/pref/prefs.php:882 -#: classes/pref/prefs.php:900 +#: classes/pref/prefs.php:928 +#: classes/pref/prefs.php:946 msgid "Incorrect password" msgstr "Väärä salasana" -#: classes/pref/prefs.php:926 +#: classes/pref/prefs.php:972 #, 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:966 +#: classes/pref/prefs.php:1012 msgid "Create profile" msgstr "Luo profiili" -#: classes/pref/prefs.php:989 -#: classes/pref/prefs.php:1019 +#: classes/pref/prefs.php:1035 +#: classes/pref/prefs.php:1065 msgid "(active)" msgstr "(aktiivinen)" -#: classes/pref/prefs.php:1053 +#: classes/pref/prefs.php:1099 msgid "Remove selected profiles" msgstr "Poista valitut profiilit" -#: classes/pref/prefs.php:1055 +#: classes/pref/prefs.php:1101 msgid "Activate profile" msgstr "Aktivoi profiili" @@ -2715,15 +2660,15 @@ msgstr "" msgid "The document has incorrect format." msgstr "" -#: plugins/googlereaderimport/init.php:326 +#: plugins/googlereaderimport/init.php:328 msgid "Import starred or shared items from Google Reader" msgstr "" -#: plugins/googlereaderimport/init.php:330 +#: plugins/googlereaderimport/init.php:332 msgid "Paste your starred.json or shared.json into the form below." msgstr "" -#: plugins/googlereaderimport/init.php:344 +#: plugins/googlereaderimport/init.php:346 msgid "Import my Starred items" msgstr "" @@ -2817,21 +2762,21 @@ msgstr "" msgid "Start update" msgstr "" -#: js/feedlist.js:392 -#: js/feedlist.js:420 +#: js/feedlist.js:394 +#: js/feedlist.js:422 #: 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:411 +#: js/feedlist.js:413 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:414 +#: js/feedlist.js:416 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:417 +#: js/feedlist.js:419 msgid "Mark all articles in %s older than 2 weeks as read?" msgstr "Merkitäänkö kaikki 2 viikkoa vanhemmat artikkelit syötteessä %s luetuiksi?" @@ -3345,141 +3290,141 @@ msgstr "Uudelleenpisteytetään artikkelit..." msgid "New version available!" msgstr "Uusi versio saatavilla!" -#: js/viewfeed.js:104 +#: js/viewfeed.js:106 msgid "Cancel search" msgstr "Peruuta haku" -#: js/viewfeed.js:438 +#: js/viewfeed.js:441 #: plugins/digest/digest.js:258 #: plugins/digest/digest.js:714 msgid "Unstar article" msgstr "Poista tähti artikkelista" -#: js/viewfeed.js:443 +#: js/viewfeed.js:446 #: plugins/digest/digest.js:260 #: plugins/digest/digest.js:718 msgid "Star article" msgstr "Merkitse artikkeli tähdellä" -#: js/viewfeed.js:476 +#: js/viewfeed.js:479 #: plugins/digest/digest.js:263 #: plugins/digest/digest.js:749 msgid "Unpublish article" msgstr "Aseta artikkeli yksityiseksi" -#: js/viewfeed.js:481 +#: js/viewfeed.js:484 #: plugins/digest/digest.js:265 #: plugins/digest/digest.js:754 msgid "Publish article" msgstr "Julkista artikkeli" -#: js/viewfeed.js:677 -#: js/viewfeed.js:705 -#: js/viewfeed.js:732 -#: js/viewfeed.js:795 -#: js/viewfeed.js:829 -#: js/viewfeed.js:949 -#: js/viewfeed.js:992 -#: js/viewfeed.js:1045 -#: js/viewfeed.js:2051 +#: js/viewfeed.js:680 +#: js/viewfeed.js:708 +#: js/viewfeed.js:735 +#: js/viewfeed.js:798 +#: js/viewfeed.js:832 +#: js/viewfeed.js:952 +#: js/viewfeed.js:995 +#: js/viewfeed.js:1048 +#: js/viewfeed.js:2060 #: 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:957 +#: js/viewfeed.js:960 msgid "Delete %d selected article in %s?" msgid_plural "Delete %d selected articles in %s?" msgstr[0] "" msgstr[1] "" -#: js/viewfeed.js:959 +#: js/viewfeed.js:962 msgid "Delete %d selected article?" msgid_plural "Delete %d selected articles?" msgstr[0] "" msgstr[1] "" -#: js/viewfeed.js:1001 +#: js/viewfeed.js:1004 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:1004 +#: js/viewfeed.js:1007 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:1006 +#: js/viewfeed.js:1009 msgid "Please note that unstarred articles might get purged on next feed update." msgstr "" -#: js/viewfeed.js:1051 +#: js/viewfeed.js:1054 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:1075 +#: js/viewfeed.js:1078 msgid "Edit article Tags" msgstr "Muokkaa artikkelin tageja" -#: js/viewfeed.js:1081 +#: js/viewfeed.js:1084 msgid "Saving article tags..." msgstr "Talletetaan artikkelin tagit..." -#: js/viewfeed.js:1278 +#: js/viewfeed.js:1287 msgid "No article is selected." msgstr "Yhtään artikkelia ei ole valittuna." -#: js/viewfeed.js:1313 +#: js/viewfeed.js:1322 msgid "No articles found to mark" msgstr "Artikkeleita ei ole merkittäväksi" -#: js/viewfeed.js:1315 +#: js/viewfeed.js:1324 msgid "Mark %d article as read?" msgid_plural "Mark %d articles as read?" msgstr[0] "" msgstr[1] "" -#: js/viewfeed.js:1827 +#: js/viewfeed.js:1836 msgid "Open original article" msgstr "Avaa alkuperäinen artikkeli" -#: js/viewfeed.js:1833 +#: js/viewfeed.js:1842 msgid "Display article URL" msgstr "Näytä artikkelin URL" -#: js/viewfeed.js:1852 +#: js/viewfeed.js:1861 msgid "Toggle marked" msgstr "Käännä valitun merkintä" -#: js/viewfeed.js:1933 +#: js/viewfeed.js:1942 msgid "Assign label" msgstr "Liitä tunniste" -#: js/viewfeed.js:1938 +#: js/viewfeed.js:1947 msgid "Remove label" msgstr "Poista tunniste" -#: js/viewfeed.js:1962 +#: js/viewfeed.js:1971 msgid "Playing..." msgstr "" -#: js/viewfeed.js:1963 +#: js/viewfeed.js:1972 msgid "Click to pause" msgstr "" -#: js/viewfeed.js:2020 +#: js/viewfeed.js:2029 msgid "Please enter new score for selected articles:" msgstr "Anna uusi pistemäärä valituille artikkeleille:" -#: js/viewfeed.js:2062 +#: js/viewfeed.js:2071 msgid "Please enter new score for this article:" msgstr "Anna uusi pistemäärä tälle artikkelille:" -#: js/viewfeed.js:2095 +#: js/viewfeed.js:2104 msgid "Article URL:" msgstr "Artikkelin URL:" @@ -3583,6 +3528,18 @@ msgstr "" msgid "Live updating is considered experimental. Backup your tt-rss directory before continuing. Please type 'yes' to continue." msgstr "" +#~ msgid "Could not update database" +#~ msgstr "Tietokannan päivitys epäonnistui" + +#~ msgid "Checking version... " +#~ msgstr "Tarkistetaan versio..." + +#~ msgid "OK!" +#~ msgstr "OK!" + +#~ msgid "ERROR!" +#~ msgstr "VIRHE!" + #~ msgid "Mark feed as read" #~ msgstr "Merkitse syöte luetuksi" @@ -3596,9 +3553,6 @@ msgstr "" #~ 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" -#~ msgid "Title" -#~ msgstr "Otsikko" - #~ msgid "Title or Content" #~ msgstr "Otsikko tai sisältö" diff --git a/locale/fr_FR/LC_MESSAGES/messages.mo b/locale/fr_FR/LC_MESSAGES/messages.mo Binary files differindex 08ae50965..866402f6e 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 b7c37d481..a10304e37 100644 --- a/locale/fr_FR/LC_MESSAGES/messages.po +++ b/locale/fr_FR/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-04-04 09:06+0400\n" +"POT-Creation-Date: 2013-04-04 21:31+0400\n" "PO-Revision-Date: 2013-04-03 08:43+0100\n" "Last-Translator: Raphael Rochet <raphael@rri.fr>\n" "Language-Team: French\n" @@ -107,101 +107,6 @@ msgstr "Utilisateur avancé" msgid "Administrator" msgstr "Administrateur" -#: db-updater.php:19 -msgid "Your access level is insufficient to run this script." -msgstr "Vous n'avez pas les permissions nécessaires pour exécuter ce script." - -#: db-updater.php:44 -msgid "Database Updater" -msgstr "Outil de mise à jour de la base de données" - -#: db-updater.php:87 -msgid "Could not update database" -msgstr "Impossible de mettre la base de données à jour" - -#: db-updater.php:90 -msgid "Could not find necessary schema file, need version:" -msgstr "Impossible de trouver le fichier de schéma, version requise :" - -#: db-updater.php:91 -msgid ", found: " -msgstr ", trouvée : " - -#: db-updater.php:94 -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:648 -#: classes/handler/public.php:736 -#: classes/handler/public.php:818 -msgid "Return to Tiny Tiny RSS" -msgstr "Revenir à Tiny Tiny RSS" - -#: db-updater.php:102 -msgid "Please backup your database before proceeding." -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>)." - -#: db-updater.php:118 -msgid "Perform updates" -msgstr "Exécuter les mises à jour" - -#: db-updater.php:123 -msgid "Performing updates..." -msgstr "Exécution des mises à jour..." - -#: db-updater.php:129 -#, php-format -msgid "Updating to version %d..." -msgstr "Passage à la version %d..." - -#: db-updater.php:144 -msgid "Checking version... " -msgstr "Vérification de la version... " - -#: db-updater.php:150 -msgid "OK!" -msgstr "OK !" - -#: db-updater.php:152 -msgid "ERROR!" -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>." - -#: 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." - -#: db-updater.php:172 -#, php-format -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." - #: 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é." @@ -252,7 +157,7 @@ msgstr "Le test d'échappement SQL a échoué, veuillez vérifier votre configur #: index.php:135 #: index.php:152 -#: index.php:276 +#: index.php:277 #: prefs.php:103 #: classes/backend.php:5 #: classes/pref/labels.php:296 @@ -260,7 +165,7 @@ msgstr "Le test d'échappement SQL a échoué, veuillez vérifier votre configur #: classes/pref/feeds.php:1331 #: plugins/digest/digest_body.php:63 #: js/feedlist.js:128 -#: js/feedlist.js:436 +#: js/feedlist.js:438 #: js/functions.js:420 #: js/functions.js:758 #: js/functions.js:1194 @@ -281,8 +186,8 @@ msgstr "Le test d'échappement SQL a échoué, veuillez vérifier votre configur #: js/prefs.js:1814 #: js/tt-rss.js:475 #: js/tt-rss.js:492 -#: js/viewfeed.js:772 -#: js/viewfeed.js:1200 +#: js/viewfeed.js:775 +#: js/viewfeed.js:1201 #: plugins/import_export/import_export.js:17 #: plugins/updater/updater.js:17 msgid "Loading, please wait..." @@ -305,13 +210,13 @@ msgid "All Articles" msgstr "Tous les articles" #: index.php:174 -#: include/functions.php:1953 +#: include/functions.php:1955 #: classes/feeds.php:106 msgid "Starred" msgstr "Remarquables" #: index.php:175 -#: include/functions.php:1954 +#: include/functions.php:1956 #: classes/feeds.php:107 msgid "Published" msgstr "Publiés" @@ -350,9 +255,13 @@ msgstr "Les plus récents en premier" msgid "Oldest first" msgstr "Les plus anciens en premier" -#: index.php:191 -#: index.php:240 -#: include/functions.php:1943 +#: index.php:188 +msgid "Title" +msgstr "Titre" + +#: index.php:192 +#: index.php:241 +#: include/functions.php:1945 #: classes/feeds.php:111 #: classes/feeds.php:441 #: js/FeedTree.js:128 @@ -361,104 +270,104 @@ msgstr "Les plus anciens en premier" msgid "Mark as read" msgstr "Marquer comme lu" -#: index.php:194 +#: index.php:195 msgid "Older than one day" msgstr "Âgé d'au moins un jour" -#: index.php:197 +#: index.php:198 msgid "Older than one week" msgstr "Âgé d'au moins une semaine" -#: index.php:200 +#: index.php:201 msgid "Older than two weeks" msgstr "Âgé d'au moins deux semaines" -#: index.php:217 +#: index.php:218 msgid "Communication problem with server." msgstr "Un problème de communication avec le serveur est survenu." -#: index.php:225 +#: index.php:226 msgid "New version of Tiny Tiny RSS is available!" msgstr "Une nouvelle version de Tiny Tiny RSS est disponible !" -#: index.php:230 +#: index.php:231 msgid "Actions..." msgstr "Actions..." -#: index.php:232 +#: index.php:233 msgid "Preferences..." msgstr "Configuration..." -#: index.php:233 +#: index.php:234 msgid "Search..." msgstr "Rechercher..." -#: index.php:234 +#: index.php:235 msgid "Feed actions:" msgstr "Actions sur ce flux :" -#: index.php:235 +#: index.php:236 #: classes/handler/public.php:578 msgid "Subscribe to feed..." msgstr "S'abonner au flux..." -#: index.php:236 +#: index.php:237 msgid "Edit this feed..." msgstr "Modifier ce flux..." -#: index.php:237 +#: index.php:238 msgid "Rescore feed" msgstr "Recalculer le score du flux" -#: index.php:238 +#: index.php:239 #: classes/pref/feeds.php:717 #: classes/pref/feeds.php:1283 #: js/PrefFeedTree.js:73 msgid "Unsubscribe" msgstr "Se désabonner" -#: index.php:239 +#: index.php:240 msgid "All feeds:" msgstr "Tous les flux :" -#: index.php:241 +#: index.php:242 msgid "(Un)hide read feeds" msgstr "Masquer/afficher les flux lus" -#: index.php:242 +#: index.php:243 msgid "Other actions:" msgstr "Autres actions :" -#: index.php:244 +#: index.php:245 msgid "Switch to digest..." msgstr "Basculer en mode résumé..." -#: index.php:246 +#: index.php:247 msgid "Show tag cloud..." msgstr "Afficher le nuage de tags..." -#: index.php:247 -#: include/functions.php:1929 +#: index.php:248 +#: include/functions.php:1931 msgid "Toggle widescreen mode" msgstr "Basculer le mode écran large" -#: index.php:248 +#: index.php:249 msgid "Select by tags..." msgstr "Sélectionner par tags..." -#: index.php:249 +#: index.php:250 msgid "Create label..." msgstr "Créer une étiquette..." -#: index.php:250 +#: index.php:251 msgid "Create filter..." msgstr "Créer un filtre..." -#: index.php:251 +#: index.php:252 msgid "Keyboard shortcuts help" msgstr "Aide sur les raccourcis clavier" -#: index.php:260 +#: index.php:261 #: plugins/digest/digest_body.php:77 #: plugins/mobile/mobile-functions.php:62 #: plugins/mobile/mobile-functions.php:237 @@ -467,8 +376,8 @@ msgstr "Déconnexion" #: prefs.php:36 #: prefs.php:121 -#: include/functions.php:1956 -#: classes/pref/prefs.php:428 +#: include/functions.php:1958 +#: classes/pref/prefs.php:444 msgid "Preferences" msgstr "Configuration" @@ -493,8 +402,8 @@ msgid "Filters" msgstr "Filtres" #: prefs.php:130 -#: include/functions.php:1146 -#: include/functions.php:1782 +#: include/functions.php:1148 +#: include/functions.php:1784 #: classes/pref/labels.php:90 #: plugins/mobile/mobile-functions.php:198 msgid "Labels" @@ -513,6 +422,24 @@ msgstr "Créer un nouveau compte" msgid "New user registrations are administratively disabled." msgstr "L'inscription de nouveaux utilisateurs est désactivée par l'administrateur." +#: 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:648 +#: classes/handler/public.php:736 +#: classes/handler/public.php:818 +#: classes/handler/public.php:893 +#: classes/handler/public.php:907 +#: classes/handler/public.php:914 +#: classes/handler/public.php:939 +msgid "Return to Tiny Tiny RSS" +msgstr "Revenir à Tiny Tiny RSS" + #: 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." @@ -559,15 +486,15 @@ msgstr "Compte créé avec succès." msgid "New user registrations are currently closed." msgstr "L'inscription de nouveaux utilisateurs est actuellement fermée." -#: update.php:55 +#: update.php:56 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:1155 -#: include/functions.php:1683 -#: include/functions.php:1768 -#: include/functions.php:1790 +#: include/functions.php:1157 +#: include/functions.php:1685 +#: include/functions.php:1770 +#: include/functions.php:1792 #: classes/opml.php:416 #: classes/pref/feeds.php:222 msgid "Uncategorized" @@ -584,300 +511,300 @@ msgstr[1] "%d articles archivés" msgid "No feeds found." msgstr "Aucun flux trouvé." -#: include/functions.php:1144 -#: include/functions.php:1780 +#: include/functions.php:1146 +#: include/functions.php:1782 #: plugins/mobile/mobile-functions.php:171 msgid "Special" msgstr "Spécial" -#: include/functions.php:1632 -#: classes/feeds.php:1101 +#: include/functions.php:1634 +#: classes/feeds.php:1104 #: classes/pref/filters.php:427 msgid "All feeds" msgstr "Tous les flux" -#: include/functions.php:1833 +#: include/functions.php:1835 msgid "Starred articles" msgstr "Articles remarquables" -#: include/functions.php:1835 +#: include/functions.php:1837 msgid "Published articles" msgstr "Articles publiés" -#: include/functions.php:1837 +#: include/functions.php:1839 msgid "Fresh articles" msgstr "Nouveaux articles" -#: include/functions.php:1839 -#: include/functions.php:1951 +#: include/functions.php:1841 +#: include/functions.php:1953 msgid "All articles" msgstr "Tous les articles" -#: include/functions.php:1841 +#: include/functions.php:1843 msgid "Archived articles" msgstr "Articles archivés" -#: include/functions.php:1843 +#: include/functions.php:1845 msgid "Recently read" msgstr "Lus récemment" -#: include/functions.php:1906 +#: include/functions.php:1908 msgid "Navigation" msgstr "Navigation" -#: include/functions.php:1907 +#: include/functions.php:1909 msgid "Open next feed" msgstr "Ouvrir le flux suivant" -#: include/functions.php:1908 +#: include/functions.php:1910 msgid "Open previous feed" msgstr "Ouvrir le flux précédent" -#: include/functions.php:1909 +#: include/functions.php:1911 msgid "Open next article" msgstr "Ouvrir l'article suivant" -#: include/functions.php:1910 +#: include/functions.php:1912 msgid "Open previous article" msgstr "Ouvrir l'article précédent" -#: include/functions.php:1911 +#: include/functions.php:1913 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:1912 +#: include/functions.php:1914 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:1913 +#: include/functions.php:1915 msgid "Show search dialog" msgstr "Afficher la fenêtre de recherche" -#: include/functions.php:1914 +#: include/functions.php:1916 msgid "Article" msgstr "Article" -#: include/functions.php:1915 +#: include/functions.php:1917 msgid "Toggle starred" msgstr "Marquer comme (non) remarquable" -#: include/functions.php:1916 -#: js/viewfeed.js:1863 +#: include/functions.php:1918 +#: js/viewfeed.js:1872 msgid "Toggle published" msgstr "Marquer comme (non) publié" -#: include/functions.php:1917 -#: js/viewfeed.js:1841 +#: include/functions.php:1919 +#: js/viewfeed.js:1850 msgid "Toggle unread" msgstr "Marquer comme (non) lu" -#: include/functions.php:1918 +#: include/functions.php:1920 msgid "Edit tags" msgstr "Modifier les tags" -#: include/functions.php:1919 +#: include/functions.php:1921 msgid "Dismiss selected" msgstr "Ecarter la sélection" -#: include/functions.php:1920 +#: include/functions.php:1922 msgid "Dismiss read" msgstr "Ecarter les articles lus" -#: include/functions.php:1921 +#: include/functions.php:1923 msgid "Open in new window" msgstr "Ouvrir dans une nouvelle fenêtre" -#: include/functions.php:1922 -#: js/viewfeed.js:1882 +#: include/functions.php:1924 +#: js/viewfeed.js:1891 msgid "Mark below as read" msgstr "Marquer les articles en-dessous comme lus" -#: include/functions.php:1923 -#: js/viewfeed.js:1876 +#: include/functions.php:1925 +#: js/viewfeed.js:1885 msgid "Mark above as read" msgstr "Marquer les articles au-dessus comme lus" -#: include/functions.php:1924 +#: include/functions.php:1926 msgid "Scroll down" msgstr "Défiler vers le bas" -#: include/functions.php:1925 +#: include/functions.php:1927 msgid "Scroll up" msgstr "Défiler vers le haut" -#: include/functions.php:1926 +#: include/functions.php:1928 msgid "Select article under cursor" msgstr "Sélectionner l'article sous le curseur" -#: include/functions.php:1927 +#: include/functions.php:1929 msgid "Email article" msgstr "Envoyer l'article par mail" -#: include/functions.php:1928 +#: include/functions.php:1930 msgid "Close/collapse article" msgstr "Contracter l'article" -#: include/functions.php:1930 +#: include/functions.php:1932 #: plugins/embed_original/init.php:33 msgid "Toggle embed original" msgstr "Basculer l'intégration de l'article original" -#: include/functions.php:1931 +#: include/functions.php:1933 msgid "Article selection" msgstr "Sélection d'article" -#: include/functions.php:1932 +#: include/functions.php:1934 msgid "Select all articles" msgstr "Sélectionner tous les articles" -#: include/functions.php:1933 +#: include/functions.php:1935 msgid "Select unread" msgstr "Sélectionner les articles non-lus" -#: include/functions.php:1934 +#: include/functions.php:1936 msgid "Select starred" msgstr "Sélectionner les articles remarquables" -#: include/functions.php:1935 +#: include/functions.php:1937 msgid "Select published" msgstr "Sélectionner les articles publiés" -#: include/functions.php:1936 +#: include/functions.php:1938 msgid "Invert selection" msgstr "Inverser la sélection" -#: include/functions.php:1937 +#: include/functions.php:1939 msgid "Deselect everything" msgstr "Tout désélectionner" -#: include/functions.php:1938 +#: include/functions.php:1940 #: classes/pref/feeds.php:521 #: classes/pref/feeds.php:754 msgid "Feed" msgstr "Flux" -#: include/functions.php:1939 +#: include/functions.php:1941 msgid "Refresh current feed" msgstr "Actualiser le flux actif" -#: include/functions.php:1940 +#: include/functions.php:1942 msgid "Un/hide read feeds" msgstr "Masquer/afficher les flux lus" -#: include/functions.php:1941 +#: include/functions.php:1943 #: classes/pref/feeds.php:1275 msgid "Subscribe to feed" msgstr "S'abonner au flux" -#: include/functions.php:1942 +#: include/functions.php:1944 #: js/FeedTree.js:135 #: js/PrefFeedTree.js:67 msgid "Edit feed" msgstr "Modifier le flux" -#: include/functions.php:1944 +#: include/functions.php:1946 msgid "Reverse headlines" msgstr "Inverser l'ordre des en-têtes" -#: include/functions.php:1945 +#: include/functions.php:1947 msgid "Debug feed update" msgstr "Déboguer les mises à jour" -#: include/functions.php:1946 +#: include/functions.php:1948 #: js/FeedTree.js:178 msgid "Mark all feeds as read" msgstr "Marquer tous les flux comme lus" -#: include/functions.php:1947 +#: include/functions.php:1949 msgid "Un/collapse current category" msgstr "Étendre/contracter la catégorie" -#: include/functions.php:1948 +#: include/functions.php:1950 msgid "Toggle combined mode" msgstr "Basculer le mode combiné" -#: include/functions.php:1949 +#: include/functions.php:1951 msgid "Toggle auto expand in combined mode" msgstr "Basculer le développement automatique en mode combiné" -#: include/functions.php:1950 +#: include/functions.php:1952 msgid "Go to" msgstr "Aller à " -#: include/functions.php:1952 +#: include/functions.php:1954 msgid "Fresh" msgstr "Nouveaux" -#: include/functions.php:1955 +#: include/functions.php:1957 #: js/tt-rss.js:431 #: js/tt-rss.js:584 msgid "Tag cloud" msgstr "Nuage de tags" -#: include/functions.php:1957 +#: include/functions.php:1959 msgid "Other" msgstr "Autre" -#: include/functions.php:1958 +#: include/functions.php:1960 #: classes/pref/labels.php:281 msgid "Create label" msgstr "Créer une étiquette" -#: include/functions.php:1959 +#: include/functions.php:1961 #: classes/pref/filters.php:654 msgid "Create filter" msgstr "Créer un filtre" -#: include/functions.php:1960 +#: include/functions.php:1962 msgid "Un/collapse sidebar" msgstr "Ouvrir/fermer la barre latérale" -#: include/functions.php:1961 +#: include/functions.php:1963 msgid "Show help dialog" msgstr "Afficher la fenêtre d'aide" -#: include/functions.php:2446 +#: include/functions.php:2471 #, php-format msgid "Search results: %s" msgstr "Résultats de recherche: %s" -#: include/functions.php:2937 -#: js/viewfeed.js:1969 +#: include/functions.php:2962 +#: js/viewfeed.js:1978 msgid "Click to play" msgstr "Cliquez pour lancer la lecture" -#: include/functions.php:2938 -#: js/viewfeed.js:1968 +#: include/functions.php:2963 +#: js/viewfeed.js:1977 msgid "Play" msgstr "Lecture" -#: include/functions.php:3055 +#: include/functions.php:3080 msgid " - " msgstr " - " -#: include/functions.php:3077 -#: include/functions.php:3371 +#: include/functions.php:3102 +#: include/functions.php:3396 #: classes/article.php:281 msgid "no tags" msgstr "aucun tag" -#: include/functions.php:3087 +#: include/functions.php:3112 #: classes/feeds.php:686 msgid "Edit tags for this article" msgstr "Modifier les tags pour cet article" -#: include/functions.php:3116 +#: include/functions.php:3141 #: classes/feeds.php:642 msgid "Originally from:" msgstr "Origine :" -#: include/functions.php:3129 +#: include/functions.php:3154 #: classes/feeds.php:655 #: classes/pref/feeds.php:540 msgid "Feed URL" msgstr "URL du flux" -#: include/functions.php:3160 +#: include/functions.php:3185 #: classes/dlg.php:37 #: classes/dlg.php:60 #: classes/dlg.php:93 @@ -889,7 +816,7 @@ msgstr "URL du flux" #: classes/backend.php:105 #: classes/pref/users.php:99 #: classes/pref/filters.php:147 -#: classes/pref/prefs.php:1059 +#: classes/pref/prefs.php:1105 #: classes/pref/feeds.php:1588 #: classes/pref/feeds.php:1660 #: plugins/import_export/init.php:406 @@ -900,15 +827,15 @@ msgstr "URL du flux" msgid "Close this window" msgstr "Fermer cette fenêtre" -#: include/functions.php:3396 +#: include/functions.php:3421 msgid "(edit note)" msgstr "(modifier l'annotation)" -#: include/functions.php:3631 +#: include/functions.php:3656 msgid "unknown type" msgstr "type inconnu" -#: include/functions.php:3687 +#: include/functions.php:3712 msgid "Attachments" msgstr "Fichier attaché" @@ -931,6 +858,7 @@ msgstr "J'ai oublié mon mot de passe" #: include/login_form.php:201 #: classes/handler/public.php:489 +#: classes/pref/prefs.php:552 msgid "Language:" msgstr "Langue :" @@ -941,7 +869,7 @@ msgstr "Profil :" #: include/login_form.php:213 #: classes/handler/public.php:233 #: classes/rpc.php:64 -#: classes/pref/prefs.php:995 +#: classes/pref/prefs.php:1041 msgid "Default profile" msgstr "Profil par défaut" @@ -959,7 +887,7 @@ msgstr "Se souvenir de moi" msgid "Log in" msgstr "Se connecter" -#: include/sessions.php:58 +#: include/sessions.php:62 msgid "Session failed to validate (incorrect IP)" msgstr "Echec de la validation de la session (adresse IP incorrecte)" @@ -975,7 +903,7 @@ msgstr "Tags pour cet article (séparés par des virgules) :" #: classes/pref/users.php:176 #: classes/pref/labels.php:79 #: classes/pref/filters.php:405 -#: classes/pref/prefs.php:941 +#: classes/pref/prefs.php:987 #: classes/pref/feeds.php:733 #: classes/pref/feeds.php:881 #: plugins/nsfw/init.php:86 @@ -987,16 +915,16 @@ msgstr "Enregistrer" #: classes/article.php:206 #: classes/handler/public.php:460 #: classes/handler/public.php:502 -#: classes/feeds.php:1028 -#: classes/feeds.php:1080 -#: classes/feeds.php:1140 +#: classes/feeds.php:1031 +#: classes/feeds.php:1083 +#: classes/feeds.php:1143 #: 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:943 +#: classes/pref/prefs.php:989 #: classes/pref/feeds.php:734 #: classes/pref/feeds.php:884 #: classes/pref/feeds.php:1797 @@ -1120,6 +1048,18 @@ msgstr "Revenir" msgid "Sorry, login and email combination not found." msgstr "Désolé, ce couple identifiant et mail n'a pas été trouvé." +#: classes/handler/public.php:842 +msgid "Your access level is insufficient to run this script." +msgstr "Vous n'avez pas les permissions nécessaires pour exécuter ce script." + +#: classes/handler/public.php:866 +msgid "Database Updater" +msgstr "Outil de mise à jour de la base de données" + +#: classes/handler/public.php:931 +msgid "Perform updates" +msgstr "Exécuter les mises à jour" + #: 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." @@ -1219,7 +1159,7 @@ msgstr "Sélectionner :" #: classes/pref/filters.php:648 #: classes/pref/filters.php:737 #: classes/pref/filters.php:764 -#: classes/pref/prefs.php:955 +#: classes/pref/prefs.php:1001 #: classes/pref/feeds.php:1266 #: classes/pref/feeds.php:1536 #: classes/pref/feeds.php:1606 @@ -1239,7 +1179,7 @@ msgstr "Inverse" #: classes/pref/filters.php:650 #: classes/pref/filters.php:739 #: classes/pref/filters.php:766 -#: classes/pref/prefs.php:957 +#: classes/pref/prefs.php:1003 #: classes/pref/feeds.php:1268 #: classes/pref/feeds.php:1538 #: classes/pref/feeds.php:1608 @@ -1329,44 +1269,44 @@ msgid "No articles found to display." msgstr "Aucun article à afficher." #: classes/feeds.php:759 -#: classes/feeds.php:923 +#: classes/feeds.php:926 #, php-format msgid "Feeds last updated at %s" msgstr "Flux mis à jour à %s" #: classes/feeds.php:769 -#: classes/feeds.php:933 +#: classes/feeds.php:936 msgid "Some feeds have update errors (click for details)" msgstr "Des erreurs sont survenues pendant la mise à jour de certains flux (cliquer ici pour les détails)" -#: classes/feeds.php:913 +#: classes/feeds.php:916 msgid "No feed selected." msgstr "Aucun flux sélectionné." -#: classes/feeds.php:966 -#: classes/feeds.php:974 +#: classes/feeds.php:969 +#: classes/feeds.php:977 msgid "Feed or site URL" msgstr "URL du flux" -#: classes/feeds.php:980 +#: classes/feeds.php:983 #: 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 +#: classes/feeds.php:991 msgid "Available feeds" msgstr "Flux disponibles" -#: classes/feeds.php:1000 +#: classes/feeds.php:1003 #: classes/pref/users.php:139 #: classes/pref/feeds.php:590 #: classes/pref/feeds.php:818 msgid "Authentication" msgstr "Identification" -#: classes/feeds.php:1004 +#: classes/feeds.php:1007 #: classes/pref/users.php:402 #: classes/pref/feeds.php:596 #: classes/pref/feeds.php:822 @@ -1374,30 +1314,30 @@ msgstr "Identification" msgid "Login" msgstr "Se connecter" -#: classes/feeds.php:1007 -#: classes/pref/prefs.php:253 +#: classes/feeds.php:1010 +#: classes/pref/prefs.php:269 #: 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 +#: classes/feeds.php:1020 msgid "This feed requires authentication." msgstr "Ce flux nécessite une identification." -#: classes/feeds.php:1022 -#: classes/feeds.php:1078 +#: classes/feeds.php:1025 +#: classes/feeds.php:1081 #: classes/pref/feeds.php:1796 msgid "Subscribe" msgstr "S'abonner" -#: classes/feeds.php:1025 +#: classes/feeds.php:1028 msgid "More feeds" msgstr "D'autres flux" -#: classes/feeds.php:1048 -#: classes/feeds.php:1139 +#: classes/feeds.php:1051 +#: classes/feeds.php:1142 #: classes/pref/users.php:332 #: classes/pref/filters.php:641 #: classes/pref/feeds.php:1259 @@ -1405,19 +1345,19 @@ msgstr "D'autres flux" msgid "Search" msgstr "Rechercher" -#: classes/feeds.php:1052 +#: classes/feeds.php:1055 msgid "Popular feeds" msgstr "Flux populaires" -#: classes/feeds.php:1053 +#: classes/feeds.php:1056 msgid "Feed archive" msgstr "Archive du flux" -#: classes/feeds.php:1056 +#: classes/feeds.php:1059 msgid "limit:" msgstr "limite :" -#: classes/feeds.php:1079 +#: classes/feeds.php:1082 #: classes/pref/users.php:358 #: classes/pref/labels.php:284 #: classes/pref/filters.php:398 @@ -1427,15 +1367,15 @@ msgstr "limite :" msgid "Remove" msgstr "Supprimer" -#: classes/feeds.php:1090 +#: classes/feeds.php:1093 msgid "Look for" msgstr "Rechercher" -#: classes/feeds.php:1098 +#: classes/feeds.php:1101 msgid "Limit search to:" msgstr "Restreindre la recherche à :" -#: classes/feeds.php:1114 +#: classes/feeds.php:1117 msgid "This feed" msgstr "Ce flux" @@ -1595,7 +1535,7 @@ msgstr "[tt-rss] Notification de changement de mot passe" #: classes/pref/filters.php:645 #: classes/pref/filters.php:734 #: classes/pref/filters.php:761 -#: classes/pref/prefs.php:952 +#: classes/pref/prefs.php:998 #: classes/pref/feeds.php:1263 #: classes/pref/feeds.php:1533 #: classes/pref/feeds.php:1603 @@ -1726,7 +1666,7 @@ msgstr "%s sur %s dans %s %s" #: classes/pref/filters.php:657 msgid "Combine" -msgstr "Comhiner" +msgstr "Combiner" #: classes/pref/filters.php:663 #: classes/pref/feeds.php:1279 @@ -2005,212 +1945,217 @@ msgstr "Les mots de passe saisie ne sont pas identiques." msgid "Function not supported by authentication module." msgstr "Fonction non supportée par le module d'identification." -#: classes/pref/prefs.php:120 +#: classes/pref/prefs.php:135 msgid "The configuration was saved." msgstr "La configuration a été enregistrée." -#: classes/pref/prefs.php:134 +#: classes/pref/prefs.php:150 #, php-format msgid "Unknown option: %s" msgstr "Option inconnue : %s" -#: classes/pref/prefs.php:148 +#: classes/pref/prefs.php:164 msgid "Your personal data has been saved." msgstr "Vos données personnelles ont été sauvegardées." -#: classes/pref/prefs.php:188 +#: classes/pref/prefs.php:204 msgid "Personal data / Authentication" msgstr "Données personnelles / Authentification" -#: classes/pref/prefs.php:208 +#: classes/pref/prefs.php:224 msgid "Personal data" msgstr "Données personelles" -#: classes/pref/prefs.php:218 +#: classes/pref/prefs.php:234 msgid "Full name" msgstr "Nom complet" -#: classes/pref/prefs.php:222 +#: classes/pref/prefs.php:238 msgid "E-mail" msgstr "Adresse électronique" -#: classes/pref/prefs.php:228 +#: classes/pref/prefs.php:244 msgid "Access level" msgstr "Permissions" -#: classes/pref/prefs.php:238 +#: classes/pref/prefs.php:254 msgid "Save data" msgstr "Enregistrer les données" -#: classes/pref/prefs.php:260 +#: classes/pref/prefs.php:276 msgid "Your password is at default value, please change it." msgstr "Votre mot de passe est celui par défaut, veuillez le modifier." -#: classes/pref/prefs.php:287 +#: classes/pref/prefs.php:303 msgid "Changing your current password will disable OTP." msgstr "Changer votre mot de passe actuel désactivera les mots de passe à usage unique." -#: classes/pref/prefs.php:292 +#: classes/pref/prefs.php:308 msgid "Old password" msgstr "Ancien mot de passe" -#: classes/pref/prefs.php:295 +#: classes/pref/prefs.php:311 msgid "New password" msgstr "Nouveau mot de passe" -#: classes/pref/prefs.php:300 +#: classes/pref/prefs.php:316 msgid "Confirm password" msgstr "Confirmation du mot de passe" -#: classes/pref/prefs.php:310 +#: classes/pref/prefs.php:326 msgid "Change password" msgstr "Modifier le mot de passe" -#: classes/pref/prefs.php:316 +#: classes/pref/prefs.php:332 msgid "One time passwords / Authenticator" msgstr "Mots de passe à usage unique / Identificateur" -#: classes/pref/prefs.php:320 +#: classes/pref/prefs.php:336 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:345 -#: classes/pref/prefs.php:396 +#: classes/pref/prefs.php:361 +#: classes/pref/prefs.php:412 msgid "Enter your password" msgstr "Entrez votre mot de passe" -#: classes/pref/prefs.php:356 +#: classes/pref/prefs.php:372 msgid "Disable OTP" msgstr "Désactiver les mots de passe à usage unique" -#: classes/pref/prefs.php:362 +#: classes/pref/prefs.php:378 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:364 +#: classes/pref/prefs.php:380 msgid "Scan the following code by the Authenticator application:" msgstr "Scanner le code suivant avec l'application identificateur :" -#: classes/pref/prefs.php:405 +#: classes/pref/prefs.php:421 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" -#: classes/pref/prefs.php:413 +#: classes/pref/prefs.php:429 msgid "Enable OTP" msgstr "Activer les mots de passe à usage unique" -#: classes/pref/prefs.php:451 +#: classes/pref/prefs.php:475 msgid "Some preferences are only available in default profile." msgstr "Certaines options ne ne disponibles que dans le profil par défaut." -#: classes/pref/prefs.php:545 +#: classes/pref/prefs.php:585 msgid "Customize" msgstr "Personnaliser" -#: classes/pref/prefs.php:605 +#: classes/pref/prefs.php:645 msgid "Register" msgstr "S'inscrire" -#: classes/pref/prefs.php:609 +#: classes/pref/prefs.php:649 msgid "Clear" msgstr "Effacer" -#: classes/pref/prefs.php:615 +#: classes/pref/prefs.php:655 #, php-format msgid "Current server time: %s (UTC)" msgstr "Heure du serveur : %s (GMT)" -#: classes/pref/prefs.php:648 +#: classes/pref/prefs.php:688 msgid "Save configuration" msgstr "Enregistrer la configuration" -#: classes/pref/prefs.php:651 +#: classes/pref/prefs.php:692 +#, fuzzy +msgid "Save and exit preferences" +msgstr "Quitter la configuration" + +#: classes/pref/prefs.php:697 msgid "Manage profiles" msgstr "Gérer les profils" -#: classes/pref/prefs.php:654 +#: classes/pref/prefs.php:700 msgid "Reset to defaults" msgstr "Revenir aux valeurs par défaut" -#: classes/pref/prefs.php:678 -#: classes/pref/prefs.php:680 +#: classes/pref/prefs.php:724 +#: classes/pref/prefs.php:726 msgid "Plugins" msgstr "Plugins" -#: classes/pref/prefs.php:682 +#: classes/pref/prefs.php:728 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:684 +#: classes/pref/prefs.php:730 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:710 +#: classes/pref/prefs.php:756 msgid "System plugins" msgstr "Plugins systèmes" -#: classes/pref/prefs.php:714 -#: classes/pref/prefs.php:768 +#: classes/pref/prefs.php:760 +#: classes/pref/prefs.php:814 msgid "Plugin" msgstr "Plugin" -#: classes/pref/prefs.php:715 -#: classes/pref/prefs.php:769 +#: classes/pref/prefs.php:761 +#: classes/pref/prefs.php:815 msgid "Description" msgstr "Description" -#: classes/pref/prefs.php:716 -#: classes/pref/prefs.php:770 +#: classes/pref/prefs.php:762 +#: classes/pref/prefs.php:816 msgid "Version" msgstr "Version" -#: classes/pref/prefs.php:717 -#: classes/pref/prefs.php:771 +#: classes/pref/prefs.php:763 +#: classes/pref/prefs.php:817 msgid "Author" msgstr "Auteur" -#: classes/pref/prefs.php:746 -#: classes/pref/prefs.php:803 +#: classes/pref/prefs.php:792 +#: classes/pref/prefs.php:849 msgid "more info" msgstr "plus d'info" -#: classes/pref/prefs.php:755 -#: classes/pref/prefs.php:812 +#: classes/pref/prefs.php:801 +#: classes/pref/prefs.php:858 msgid "Clear data" msgstr "Purger les données" -#: classes/pref/prefs.php:764 +#: classes/pref/prefs.php:810 msgid "User plugins" msgstr "Plugins utilisateur" -#: classes/pref/prefs.php:827 +#: classes/pref/prefs.php:873 msgid "Enable selected plugins" msgstr "Activer les plugins sélectionnés" -#: classes/pref/prefs.php:882 -#: classes/pref/prefs.php:900 +#: classes/pref/prefs.php:928 +#: classes/pref/prefs.php:946 msgid "Incorrect password" msgstr "Mot de passe incorrect" -#: classes/pref/prefs.php:926 +#: classes/pref/prefs.php:972 #, 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:966 +#: classes/pref/prefs.php:1012 msgid "Create profile" msgstr "Création d'un profil" -#: classes/pref/prefs.php:989 -#: classes/pref/prefs.php:1019 +#: classes/pref/prefs.php:1035 +#: classes/pref/prefs.php:1065 msgid "(active)" msgstr "(actif)" -#: classes/pref/prefs.php:1053 +#: classes/pref/prefs.php:1099 msgid "Remove selected profiles" msgstr "Supprimer les profils sélectionnés" -#: classes/pref/prefs.php:1055 +#: classes/pref/prefs.php:1101 msgid "Activate profile" msgstr "Activer le profil" @@ -2712,15 +2657,15 @@ msgstr "Terminé. %d articles sur %d importés." msgid "The document has incorrect format." msgstr "Le format du document n'est pas correct." -#: plugins/googlereaderimport/init.php:326 +#: plugins/googlereaderimport/init.php:328 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:330 +#: plugins/googlereaderimport/init.php:332 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." -#: plugins/googlereaderimport/init.php:344 +#: plugins/googlereaderimport/init.php:346 msgid "Import my Starred items" msgstr "Importer mes éléments partagés" @@ -2814,21 +2759,21 @@ msgstr "Prêt à mettre à jour." msgid "Start update" msgstr "Commencer la mise à jour" -#: js/feedlist.js:392 -#: js/feedlist.js:420 +#: js/feedlist.js:394 +#: js/feedlist.js:422 #: plugins/digest/digest.js:26 msgid "Mark all articles in %s as read?" msgstr "Marquer tous les articles de %s comme lus ?" -#: js/feedlist.js:411 +#: js/feedlist.js:413 msgid "Mark all articles in %s older than 1 day as read?" msgstr "Marquer tous les articles de %s âgés d'au moins 1 jour comme lus ?" -#: js/feedlist.js:414 +#: js/feedlist.js:416 msgid "Mark all articles in %s older than 1 week as read?" msgstr "Marquer tous les articles de %s âgés d'au moins 1 semaine comme lus ?" -#: js/feedlist.js:417 +#: js/feedlist.js:419 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 ?" @@ -3342,142 +3287,142 @@ msgstr "Recalcul des scores des articles..." msgid "New version available!" msgstr "Une nouvelle version est disponible !" -#: js/viewfeed.js:104 +#: js/viewfeed.js:106 msgid "Cancel search" msgstr "Annuler la recherche" -#: js/viewfeed.js:438 +#: js/viewfeed.js:441 #: plugins/digest/digest.js:258 #: plugins/digest/digest.js:714 msgid "Unstar article" msgstr "Ne plus marquer comme remarquable" -#: js/viewfeed.js:443 +#: js/viewfeed.js:446 #: plugins/digest/digest.js:260 #: plugins/digest/digest.js:718 msgid "Star article" msgstr "Marquer comme remarquable" -#: js/viewfeed.js:476 +#: js/viewfeed.js:479 #: plugins/digest/digest.js:263 #: plugins/digest/digest.js:749 msgid "Unpublish article" msgstr "Ne plus publier l'article" -#: js/viewfeed.js:481 +#: js/viewfeed.js:484 #: plugins/digest/digest.js:265 #: plugins/digest/digest.js:754 msgid "Publish article" msgstr "Publier l'article" -#: js/viewfeed.js:677 -#: js/viewfeed.js:705 -#: js/viewfeed.js:732 -#: js/viewfeed.js:795 -#: js/viewfeed.js:829 -#: js/viewfeed.js:949 -#: js/viewfeed.js:992 -#: js/viewfeed.js:1045 -#: js/viewfeed.js:2051 +#: js/viewfeed.js:680 +#: js/viewfeed.js:708 +#: js/viewfeed.js:735 +#: js/viewfeed.js:798 +#: js/viewfeed.js:832 +#: js/viewfeed.js:952 +#: js/viewfeed.js:995 +#: js/viewfeed.js:1048 +#: js/viewfeed.js:2060 #: plugins/mailto/init.js:7 #: plugins/mail/mail.js:7 msgid "No articles are selected." msgstr "Aucun article sélectionné." -#: js/viewfeed.js:957 +#: js/viewfeed.js:960 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:959 +#: js/viewfeed.js:962 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:1001 +#: js/viewfeed.js:1004 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:1004 +#: js/viewfeed.js:1007 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:1006 +#: js/viewfeed.js:1009 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:1051 +#: js/viewfeed.js:1054 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:1075 +#: js/viewfeed.js:1078 msgid "Edit article Tags" msgstr "Modifier les tags de l'article" -#: js/viewfeed.js:1081 +#: js/viewfeed.js:1084 msgid "Saving article tags..." msgstr "Sauvegarde des tags de l'article..." -#: js/viewfeed.js:1278 +#: js/viewfeed.js:1287 msgid "No article is selected." msgstr "Aucun article sélectionné." -#: js/viewfeed.js:1313 +#: js/viewfeed.js:1322 msgid "No articles found to mark" msgstr "Aucun article à marquer" -#: js/viewfeed.js:1315 +#: js/viewfeed.js:1324 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:1827 +#: js/viewfeed.js:1836 msgid "Open original article" msgstr "Ouvrir l'article original" -#: js/viewfeed.js:1833 +#: js/viewfeed.js:1842 msgid "Display article URL" msgstr "Afficher l'URL" # Same as 'starred" ? -#: js/viewfeed.js:1852 +#: js/viewfeed.js:1861 msgid "Toggle marked" msgstr "Marquer comme (non) remarquable" -#: js/viewfeed.js:1933 +#: js/viewfeed.js:1942 msgid "Assign label" msgstr "Assigner l'étiquette" -#: js/viewfeed.js:1938 +#: js/viewfeed.js:1947 msgid "Remove label" msgstr "Supprimer l'étiquette" -#: js/viewfeed.js:1962 +#: js/viewfeed.js:1971 msgid "Playing..." msgstr "Lecture..." -#: js/viewfeed.js:1963 +#: js/viewfeed.js:1972 msgid "Click to pause" msgstr "Cliquez pour mettre en pause" -#: js/viewfeed.js:2020 +#: js/viewfeed.js:2029 msgid "Please enter new score for selected articles:" msgstr "Nouveau score des articles sélectionnés :" -#: js/viewfeed.js:2062 +#: js/viewfeed.js:2071 msgid "Please enter new score for this article:" msgstr "Nouveau score pour cet article :" -#: js/viewfeed.js:2095 +#: js/viewfeed.js:2104 msgid "Article URL:" msgstr "URL de l'article :" @@ -3581,6 +3526,53 @@ msgstr "Partager l'article par URL" 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 "Could not update database" +#~ msgstr "Impossible de mettre la base de données à jour" + +#~ msgid "Could not find necessary schema file, need version:" +#~ msgstr "Impossible de trouver le fichier de schéma, version requise :" + +#~ msgid ", found: " +#~ msgstr ", trouvée : " + +#~ msgid "Tiny Tiny RSS database is up to date." +#~ msgstr "La base de données de Tiny Tiny RSS est à jour." + +#~ msgid "Please backup your database before proceeding." +#~ msgstr "Merci de sauvegardez votre base de données avant de poursuivre." + +#~ 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 "Performing updates..." +#~ msgstr "Exécution des mises à jour..." + +#~ msgid "Updating to version %d..." +#~ msgstr "Passage à la version %d..." + +#~ msgid "Checking version... " +#~ msgstr "Vérification de la version... " + +#~ msgid "OK!" +#~ msgstr "OK !" + +#~ msgid "ERROR!" +#~ msgstr "ERREUR !" + +#~ 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 "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." + +#~ 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>." + +#~ 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 "Mark feed as read" #~ msgstr "Marquer le flux comme lu" @@ -3594,9 +3586,6 @@ msgstr "La mise à jour en direct est expérimentale. Veuillez sauvegarder votre #~ 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 "Title" -#~ msgstr "Titre" - #~ msgid "Title or Content" #~ msgstr "Titre ou contenu" diff --git a/locale/hu_HU/LC_MESSAGES/messages.mo b/locale/hu_HU/LC_MESSAGES/messages.mo Binary files differindex 92914a366..d4b3ab7e7 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 771f4a8d4..51efcf0c2 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-04-04 09:06+0400\n" +"POT-Creation-Date: 2013-04-04 21:31+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" @@ -102,101 +102,6 @@ msgstr "Kiemelt felhasználó" msgid "Administrator" msgstr "Adminisztrátor" -#: db-updater.php:19 -msgid "Your access level is insufficient to run this script." -msgstr "A hozzáférési szinted nem elég magasa script futtatásához" - -#: db-updater.php:44 -msgid "Database Updater" -msgstr "Adatbázis-frissÃtÅ‘" - -#: db-updater.php:87 -msgid "Could not update database" -msgstr "Adatbázis frissÃtése sikertelen" - -#: db-updater.php:90 -msgid "Could not find necessary schema file, need version:" -msgstr "Nem található a szükséges séma fájl, a szükséges verzió:" - -#: db-updater.php:91 -msgid ", found: " -msgstr ", találat:" - -#: db-updater.php:94 -msgid "Tiny Tiny RSS database is up to date." -msgstr "A Tiny Tiny RSS adatbázis friss." - -#: 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:648 -#: classes/handler/public.php:736 -#: classes/handler/public.php:818 -msgid "Return to Tiny Tiny RSS" -msgstr "Vissza az RSS-olvasóhoz" - -#: db-updater.php:102 -msgid "Please backup your database before proceeding." -msgstr "A továbbhaladás elÅ‘tt készÃtsen biztosági másolatot adatbázisáról." - -#: 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 "A Tiny Tiny RSS adatbázisát frissÃteni kell a legújabb verzióra (<b>%d</b> to <b>%d</b>)." - -#: db-updater.php:118 -msgid "Perform updates" -msgstr "FrissÃtések végrehajtása" - -#: db-updater.php:123 -msgid "Performing updates..." -msgstr "FrissÃtések folyamatban..." - -#: db-updater.php:129 -#, php-format -msgid "Updating to version %d..." -msgstr "FrissÃtés %d verzióra..." - -#: db-updater.php:144 -msgid "Checking version... " -msgstr "Verzió ellenÅ‘rzése" - -#: db-updater.php:150 -msgid "OK!" -msgstr "OK!" - -#: db-updater.php:152 -msgid "ERROR!" -msgstr "HIBA!" - -#: db-updater.php:160 -#, fuzzy, php-format -msgid "Finished. Performed <b>%d</b> update up to schema version <b>%d</b>." -msgid_plural "Finished. Performed <b>%d</b> updates up to schema version <b>%d</b>." -msgstr[0] "Elkészült. <b>%d</b> frissÃtés a <b>%d</b> verziójú sémára." -msgstr[1] "Elkészült. <b>%d</b> frissÃtés a <b>%d</b> verziójú sémára." - -#: db-updater.php:170 -msgid "Your database schema is from a newer version of Tiny Tiny RSS." -msgstr "Az adatbázis séma egy újabb Tiny Tiny RSS-bÅ‘l származik." - -#: db-updater.php:172 -#, php-format -msgid "Found schema version: <b>%d</b>, required: <b>%d</b>." -msgstr "A talált séma verziója: <b>%d</b>, a szükséges: <b>%d</b>." - -#: db-updater.php:174 -msgid "Schema upgrade impossible. Please update Tiny Tiny RSS files to the newer version and continue." -msgstr "A séma frissÃtése nem lehetséges. A folytatáshoz frissÃtse a Tiny Tiny RSS fájljait egy újabb verzióra." - #: errors.php:9 msgid "This program requires XmlHttpRequest to function properly. Your browser doesn't seem to support it." msgstr "A program működéséhez XmlHttpRequest szükséges, úgy tűnik az Ön böngészÅ‘je ezt nem támogatja." @@ -251,7 +156,7 @@ msgstr "SQL eszképelési teszt sikertelen, ellenÅ‘rizze az adatbázis és a PHP #: index.php:135 #: index.php:152 -#: index.php:276 +#: index.php:277 #: prefs.php:103 #: classes/backend.php:5 #: classes/pref/labels.php:296 @@ -259,7 +164,7 @@ msgstr "SQL eszképelési teszt sikertelen, ellenÅ‘rizze az adatbázis és a PHP #: classes/pref/feeds.php:1331 #: plugins/digest/digest_body.php:63 #: js/feedlist.js:128 -#: js/feedlist.js:436 +#: js/feedlist.js:438 #: js/functions.js:420 #: js/functions.js:758 #: js/functions.js:1194 @@ -280,8 +185,8 @@ msgstr "SQL eszképelési teszt sikertelen, ellenÅ‘rizze az adatbázis és a PHP #: js/prefs.js:1814 #: js/tt-rss.js:475 #: js/tt-rss.js:492 -#: js/viewfeed.js:772 -#: js/viewfeed.js:1200 +#: js/viewfeed.js:775 +#: js/viewfeed.js:1201 #: plugins/import_export/import_export.js:17 #: plugins/updater/updater.js:17 msgid "Loading, please wait..." @@ -304,13 +209,13 @@ msgid "All Articles" msgstr "Minden hÃr" #: index.php:174 -#: include/functions.php:1953 +#: include/functions.php:1955 #: classes/feeds.php:106 msgid "Starred" msgstr "Csillagozott" #: index.php:175 -#: include/functions.php:1954 +#: include/functions.php:1956 #: classes/feeds.php:107 msgid "Published" msgstr "Publikált" @@ -350,9 +255,13 @@ msgstr "" msgid "Oldest first" msgstr "" -#: index.php:191 -#: index.php:240 -#: include/functions.php:1943 +#: index.php:188 +msgid "Title" +msgstr "CÃm" + +#: index.php:192 +#: index.php:241 +#: include/functions.php:1945 #: classes/feeds.php:111 #: classes/feeds.php:441 #: js/FeedTree.js:128 @@ -361,104 +270,104 @@ msgstr "" msgid "Mark as read" msgstr "Megjelölés olvasottként" -#: index.php:194 +#: index.php:195 msgid "Older than one day" msgstr "" -#: index.php:197 +#: index.php:198 msgid "Older than one week" msgstr "" -#: index.php:200 +#: index.php:201 msgid "Older than two weeks" msgstr "" -#: index.php:217 +#: index.php:218 msgid "Communication problem with server." msgstr "Kommunikációs probléma a szerverrel" -#: index.php:225 +#: index.php:226 msgid "New version of Tiny Tiny RSS is available!" msgstr "A Tiny Tiny RSS-nek elérhetÅ‘ egy újabb verziója!" -#: index.php:230 +#: index.php:231 msgid "Actions..." msgstr "Műveletek" -#: index.php:232 +#: index.php:233 msgid "Preferences..." msgstr "BeállÃtások..." -#: index.php:233 +#: index.php:234 msgid "Search..." msgstr "Keresés..." -#: index.php:234 +#: index.php:235 msgid "Feed actions:" msgstr "Műveletek hÃrcsatornákkal:" -#: index.php:235 +#: index.php:236 #: classes/handler/public.php:578 msgid "Subscribe to feed..." msgstr "Feliratkozás hÃrcsatornára..." -#: index.php:236 +#: index.php:237 msgid "Edit this feed..." msgstr "HÃrcsatorna szerkesztése..." -#: index.php:237 +#: index.php:238 msgid "Rescore feed" msgstr "HÃrcsatorna újrapontozása" -#: index.php:238 +#: index.php:239 #: classes/pref/feeds.php:717 #: classes/pref/feeds.php:1283 #: js/PrefFeedTree.js:73 msgid "Unsubscribe" msgstr "Leiratkozás" -#: index.php:239 +#: index.php:240 msgid "All feeds:" msgstr "Az összes hÃrcsatorna:" -#: index.php:241 +#: index.php:242 msgid "(Un)hide read feeds" msgstr "Olvasottak rejtése/mutatása" -#: index.php:242 +#: index.php:243 msgid "Other actions:" msgstr "Egyéb műveletek:" -#: index.php:244 +#: index.php:245 msgid "Switch to digest..." msgstr "Váltás áttekintÅ‘ módba..." -#: index.php:246 +#: index.php:247 msgid "Show tag cloud..." msgstr "CÃmkefelhÅ‘ megjelenÃtése..." -#: index.php:247 -#: include/functions.php:1929 +#: index.php:248 +#: include/functions.php:1931 msgid "Toggle widescreen mode" msgstr "Szélesvásznú mód váltása" -#: index.php:248 +#: index.php:249 msgid "Select by tags..." msgstr "Kijelölés cÃmkék alapján" -#: index.php:249 +#: index.php:250 msgid "Create label..." msgstr "Új cÃmke létrehozása..." -#: index.php:250 +#: index.php:251 msgid "Create filter..." msgstr "SzűrÅ‘ létrehozása..." -#: index.php:251 +#: index.php:252 msgid "Keyboard shortcuts help" msgstr "Billentyűparancsok súgója" -#: index.php:260 +#: index.php:261 #: plugins/digest/digest_body.php:77 #: plugins/mobile/mobile-functions.php:62 #: plugins/mobile/mobile-functions.php:237 @@ -467,8 +376,8 @@ msgstr "Kijelentkezés" #: prefs.php:36 #: prefs.php:121 -#: include/functions.php:1956 -#: classes/pref/prefs.php:428 +#: include/functions.php:1958 +#: classes/pref/prefs.php:444 msgid "Preferences" msgstr "BeállÃtások" @@ -493,8 +402,8 @@ msgid "Filters" msgstr "SzűrÅ‘k" #: prefs.php:130 -#: include/functions.php:1146 -#: include/functions.php:1782 +#: include/functions.php:1148 +#: include/functions.php:1784 #: classes/pref/labels.php:90 #: plugins/mobile/mobile-functions.php:198 msgid "Labels" @@ -513,6 +422,24 @@ msgstr "Új felhasználói fiók létrehozása" msgid "New user registrations are administratively disabled." msgstr "Új felhasználók regisztrációja adminisztrátor által letilva." +#: 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:648 +#: classes/handler/public.php:736 +#: classes/handler/public.php:818 +#: classes/handler/public.php:893 +#: classes/handler/public.php:907 +#: classes/handler/public.php:914 +#: classes/handler/public.php:939 +msgid "Return to Tiny Tiny RSS" +msgstr "Vissza az RSS-olvasóhoz" + #: 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 "Ideiglenes jelszavát elküdljük a megadott e-mail cÃmre. Azok a felhasználói fiókok, amelyekbe az ideiglenes jelszó kipostázásától számÃtott 24 órán belül nem lépnek be, automatikusan törlÅ‘dnek." @@ -559,15 +486,15 @@ msgstr "Felhasználói fiók sikeresen létrehozva" msgid "New user registrations are currently closed." msgstr "Új felhasználók regisztrációja jelenleg nem engedélyezett." -#: update.php:55 +#: update.php:56 msgid "Tiny Tiny RSS data update script." msgstr "A Tiny Tiny RSS adatbázis frissÃtÅ‘ szkript." #: include/digest.php:109 -#: include/functions.php:1155 -#: include/functions.php:1683 -#: include/functions.php:1768 -#: include/functions.php:1790 +#: include/functions.php:1157 +#: include/functions.php:1685 +#: include/functions.php:1770 +#: include/functions.php:1792 #: classes/opml.php:416 #: classes/pref/feeds.php:222 msgid "Uncategorized" @@ -584,303 +511,303 @@ msgstr[1] "%d archivált hÃr" msgid "No feeds found." msgstr "Nem található hÃrcsatorna." -#: include/functions.php:1144 -#: include/functions.php:1780 +#: include/functions.php:1146 +#: include/functions.php:1782 #: plugins/mobile/mobile-functions.php:171 msgid "Special" msgstr "Kiemelt" -#: include/functions.php:1632 -#: classes/feeds.php:1101 +#: include/functions.php:1634 +#: classes/feeds.php:1104 #: classes/pref/filters.php:427 msgid "All feeds" msgstr "Összes hÃrcsatorna" -#: include/functions.php:1833 +#: include/functions.php:1835 msgid "Starred articles" msgstr "Csillagozott hÃrek" -#: include/functions.php:1835 +#: include/functions.php:1837 msgid "Published articles" msgstr "Publikált hÃrek" -#: include/functions.php:1837 +#: include/functions.php:1839 msgid "Fresh articles" msgstr "Friss hÃrek" -#: include/functions.php:1839 -#: include/functions.php:1951 +#: include/functions.php:1841 +#: include/functions.php:1953 msgid "All articles" msgstr "Az összes hÃr" -#: include/functions.php:1841 +#: include/functions.php:1843 msgid "Archived articles" msgstr "Archivált hÃrek" -#: include/functions.php:1843 +#: include/functions.php:1845 msgid "Recently read" msgstr "Legutóbb olvasott" -#: include/functions.php:1906 +#: include/functions.php:1908 msgid "Navigation" msgstr "Navigáció" -#: include/functions.php:1907 +#: include/functions.php:1909 msgid "Open next feed" msgstr "KövetkezÅ‘ hÃrcsatorna megnyitása" -#: include/functions.php:1908 +#: include/functions.php:1910 msgid "Open previous feed" msgstr "ElÅ‘zÅ‘ hÃrcsatorna megnyitása" -#: include/functions.php:1909 +#: include/functions.php:1911 msgid "Open next article" msgstr "KövetkezÅ‘ hÃr megnyitása" -#: include/functions.php:1910 +#: include/functions.php:1912 msgid "Open previous article" msgstr "ElÅ‘zÅ‘ hÃr megjelenÃtése" -#: include/functions.php:1911 +#: include/functions.php:1913 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:1912 +#: include/functions.php:1914 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:1913 +#: include/functions.php:1915 msgid "Show search dialog" msgstr "KeresÅ‘mezÅ‘ megjelenÃtése" -#: include/functions.php:1914 +#: include/functions.php:1916 msgid "Article" msgstr "HÃr" -#: include/functions.php:1915 +#: include/functions.php:1917 msgid "Toggle starred" msgstr "Csillagoz" -#: include/functions.php:1916 -#: js/viewfeed.js:1863 +#: include/functions.php:1918 +#: js/viewfeed.js:1872 msgid "Toggle published" msgstr "Publikált" -#: include/functions.php:1917 -#: js/viewfeed.js:1841 +#: include/functions.php:1919 +#: js/viewfeed.js:1850 msgid "Toggle unread" msgstr "Olvasatlannak jelöl" -#: include/functions.php:1918 +#: include/functions.php:1920 msgid "Edit tags" msgstr "CÃmkék szerkesztése" -#: include/functions.php:1919 +#: include/functions.php:1921 #, fuzzy msgid "Dismiss selected" msgstr "EltávolÃtja a kijelölt hÃreket a cÃmke alól?" -#: include/functions.php:1920 +#: include/functions.php:1922 #, fuzzy msgid "Dismiss read" msgstr "Látható olvasott hÃrek elrejtése" -#: include/functions.php:1921 +#: include/functions.php:1923 msgid "Open in new window" msgstr "Megnyitás új ablakban" -#: include/functions.php:1922 -#: js/viewfeed.js:1882 +#: include/functions.php:1924 +#: js/viewfeed.js:1891 msgid "Mark below as read" msgstr "Olvasottnak jel ez alatt" -#: include/functions.php:1923 -#: js/viewfeed.js:1876 +#: include/functions.php:1925 +#: js/viewfeed.js:1885 msgid "Mark above as read" msgstr "Olvasottnak jel ez fölött" -#: include/functions.php:1924 +#: include/functions.php:1926 msgid "Scroll down" msgstr "LegördÃtés" -#: include/functions.php:1925 +#: include/functions.php:1927 msgid "Scroll up" msgstr "FelgördÃtés" -#: include/functions.php:1926 +#: include/functions.php:1928 msgid "Select article under cursor" msgstr "Az kurzor alatti hÃr kiválasztása" -#: include/functions.php:1927 +#: include/functions.php:1929 msgid "Email article" msgstr "HÃr küldése emailben" -#: include/functions.php:1928 +#: include/functions.php:1930 msgid "Close/collapse article" msgstr "HÃr bezárása" -#: include/functions.php:1930 +#: include/functions.php:1932 #: plugins/embed_original/init.php:33 msgid "Toggle embed original" msgstr "Eredeti megjelenÃtésének váltása" -#: include/functions.php:1931 +#: include/functions.php:1933 msgid "Article selection" msgstr "HÃr kijelölés" -#: include/functions.php:1932 +#: include/functions.php:1934 msgid "Select all articles" msgstr "Minden hÃr kijelölése" -#: include/functions.php:1933 +#: include/functions.php:1935 msgid "Select unread" msgstr "Olvasatlan hÃrek kijelölése" -#: include/functions.php:1934 +#: include/functions.php:1936 msgid "Select starred" msgstr "Csillagozott hÃrek kijelölése" -#: include/functions.php:1935 +#: include/functions.php:1937 msgid "Select published" msgstr "Publikált hÃrek kijlölése" -#: include/functions.php:1936 +#: include/functions.php:1938 msgid "Invert selection" msgstr "FordÃtott kijelölés" -#: include/functions.php:1937 +#: include/functions.php:1939 msgid "Deselect everything" msgstr "Kijelölés eltávolÃtása" -#: include/functions.php:1938 +#: include/functions.php:1940 #: classes/pref/feeds.php:521 #: classes/pref/feeds.php:754 msgid "Feed" msgstr "HÃrcsatorna" -#: include/functions.php:1939 +#: include/functions.php:1941 msgid "Refresh current feed" msgstr "Aktuális hÃrcsatorna frissÃtése" -#: include/functions.php:1940 +#: include/functions.php:1942 msgid "Un/hide read feeds" msgstr "Olvasott hÃrcsatornák rejtése/mutatása" -#: include/functions.php:1941 +#: include/functions.php:1943 #: classes/pref/feeds.php:1275 msgid "Subscribe to feed" msgstr "Feliratkozás hÃrcsatornára" -#: include/functions.php:1942 +#: include/functions.php:1944 #: js/FeedTree.js:135 #: js/PrefFeedTree.js:67 msgid "Edit feed" msgstr "HÃrcsatorna szerkesztése" -#: include/functions.php:1944 +#: include/functions.php:1946 msgid "Reverse headlines" msgstr "CÃmek fordÃtott sorrendben" -#: include/functions.php:1945 +#: include/functions.php:1947 msgid "Debug feed update" msgstr "HÃrcsatorna frissÃtés hibakaresés" -#: include/functions.php:1946 +#: include/functions.php:1948 #: js/FeedTree.js:178 msgid "Mark all feeds as read" msgstr "Minden hÃrcsatornát olvasottként jelöl" -#: include/functions.php:1947 +#: include/functions.php:1949 msgid "Un/collapse current category" msgstr "Kategória kinyitás/összecsukás" -#: include/functions.php:1948 +#: include/functions.php:1950 msgid "Toggle combined mode" msgstr "Váltás kombinált módba" -#: include/functions.php:1949 +#: include/functions.php:1951 #, fuzzy msgid "Toggle auto expand in combined mode" msgstr "Váltás kombinált módba" -#: include/functions.php:1950 +#: include/functions.php:1952 msgid "Go to" msgstr "Ugrás ide" -#: include/functions.php:1952 +#: include/functions.php:1954 msgid "Fresh" msgstr "Friss" -#: include/functions.php:1955 +#: include/functions.php:1957 #: js/tt-rss.js:431 #: js/tt-rss.js:584 msgid "Tag cloud" msgstr "CÃmkefelhÅ‘" -#: include/functions.php:1957 +#: include/functions.php:1959 msgid "Other" msgstr "Egyéb" -#: include/functions.php:1958 +#: include/functions.php:1960 #: classes/pref/labels.php:281 msgid "Create label" msgstr "CÃmke létrehozása" -#: include/functions.php:1959 +#: include/functions.php:1961 #: classes/pref/filters.php:654 msgid "Create filter" msgstr "SzűrÅ‘ létrehozása" -#: include/functions.php:1960 +#: include/functions.php:1962 msgid "Un/collapse sidebar" msgstr "Oldalsáv megjelenÃtés/elrejtés" -#: include/functions.php:1961 +#: include/functions.php:1963 msgid "Show help dialog" msgstr "Súgó ablak megjelenÃtése" -#: include/functions.php:2446 +#: include/functions.php:2471 #, php-format msgid "Search results: %s" msgstr "Keresési eredmények: %s" -#: include/functions.php:2937 -#: js/viewfeed.js:1969 +#: include/functions.php:2962 +#: js/viewfeed.js:1978 msgid "Click to play" msgstr "Kattintson a lejátszáshoz" -#: include/functions.php:2938 -#: js/viewfeed.js:1968 +#: include/functions.php:2963 +#: js/viewfeed.js:1977 msgid "Play" msgstr "Lejátszás" -#: include/functions.php:3055 +#: include/functions.php:3080 msgid " - " msgstr "-" -#: include/functions.php:3077 -#: include/functions.php:3371 +#: include/functions.php:3102 +#: include/functions.php:3396 #: classes/article.php:281 msgid "no tags" msgstr "nincs cÃmke" -#: include/functions.php:3087 +#: include/functions.php:3112 #: classes/feeds.php:686 msgid "Edit tags for this article" msgstr "CÃmkék hozzáadása a hÃrhez" -#: include/functions.php:3116 +#: include/functions.php:3141 #: classes/feeds.php:642 msgid "Originally from:" msgstr "Eredeti innen:" -#: include/functions.php:3129 +#: include/functions.php:3154 #: classes/feeds.php:655 #: classes/pref/feeds.php:540 msgid "Feed URL" msgstr "HÃrcsatorna URL" -#: include/functions.php:3160 +#: include/functions.php:3185 #: classes/dlg.php:37 #: classes/dlg.php:60 #: classes/dlg.php:93 @@ -892,7 +819,7 @@ msgstr "HÃrcsatorna URL" #: classes/backend.php:105 #: classes/pref/users.php:99 #: classes/pref/filters.php:147 -#: classes/pref/prefs.php:1059 +#: classes/pref/prefs.php:1105 #: classes/pref/feeds.php:1588 #: classes/pref/feeds.php:1660 #: plugins/import_export/init.php:406 @@ -903,15 +830,15 @@ msgstr "HÃrcsatorna URL" msgid "Close this window" msgstr "Ablak bezárása" -#: include/functions.php:3396 +#: include/functions.php:3421 msgid "(edit note)" msgstr "(jegyzet szerkesztése)" -#: include/functions.php:3631 +#: include/functions.php:3656 msgid "unknown type" msgstr "ismeretlen hÃrcsatornatÃpus" -#: include/functions.php:3687 +#: include/functions.php:3712 msgid "Attachments" msgstr "Csatolmányok:" @@ -935,6 +862,7 @@ msgstr "Érvénytelen jelszó" #: include/login_form.php:201 #: classes/handler/public.php:489 +#: classes/pref/prefs.php:552 msgid "Language:" msgstr "Nyelv:" @@ -945,7 +873,7 @@ msgstr "Profil:" #: include/login_form.php:213 #: classes/handler/public.php:233 #: classes/rpc.php:64 -#: classes/pref/prefs.php:995 +#: classes/pref/prefs.php:1041 msgid "Default profile" msgstr "Alapértelmezett profil" @@ -963,7 +891,7 @@ msgstr "" msgid "Log in" msgstr "Belépés" -#: include/sessions.php:58 +#: include/sessions.php:62 msgid "Session failed to validate (incorrect IP)" msgstr "Nem sikerült érvényesÃteni a munkamenetet (érvénytelen IP)" @@ -979,7 +907,7 @@ msgstr "A hÃr cÃmkéi (vesszÅ‘kkel elválasztva):" #: classes/pref/users.php:176 #: classes/pref/labels.php:79 #: classes/pref/filters.php:405 -#: classes/pref/prefs.php:941 +#: classes/pref/prefs.php:987 #: classes/pref/feeds.php:733 #: classes/pref/feeds.php:881 #: plugins/nsfw/init.php:86 @@ -991,16 +919,16 @@ msgstr "Mentés" #: classes/article.php:206 #: classes/handler/public.php:460 #: classes/handler/public.php:502 -#: classes/feeds.php:1028 -#: classes/feeds.php:1080 -#: classes/feeds.php:1140 +#: classes/feeds.php:1031 +#: classes/feeds.php:1083 +#: classes/feeds.php:1143 #: 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:943 +#: classes/pref/prefs.php:989 #: classes/pref/feeds.php:734 #: classes/pref/feeds.php:884 #: classes/pref/feeds.php:1797 @@ -1126,6 +1054,18 @@ msgstr "Visszalépés" msgid "Sorry, login and email combination not found." msgstr "" +#: classes/handler/public.php:842 +msgid "Your access level is insufficient to run this script." +msgstr "A hozzáférési szinted nem elég magasa script futtatásához" + +#: classes/handler/public.php:866 +msgid "Database Updater" +msgstr "Adatbázis-frissÃtÅ‘" + +#: classes/handler/public.php:931 +msgid "Perform updates" +msgstr "FrissÃtések végrehajtása" + #: 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." @@ -1225,7 +1165,7 @@ msgstr "Kiválasztás:" #: classes/pref/filters.php:648 #: classes/pref/filters.php:737 #: classes/pref/filters.php:764 -#: classes/pref/prefs.php:955 +#: classes/pref/prefs.php:1001 #: classes/pref/feeds.php:1266 #: classes/pref/feeds.php:1536 #: classes/pref/feeds.php:1606 @@ -1245,7 +1185,7 @@ msgstr "FordÃtott" #: classes/pref/filters.php:650 #: classes/pref/filters.php:739 #: classes/pref/filters.php:766 -#: classes/pref/prefs.php:957 +#: classes/pref/prefs.php:1003 #: classes/pref/feeds.php:1268 #: classes/pref/feeds.php:1538 #: classes/pref/feeds.php:1608 @@ -1338,44 +1278,44 @@ msgid "No articles found to display." msgstr "Nincs megjelenÃthetÅ‘ hÃr." #: classes/feeds.php:759 -#: classes/feeds.php:923 +#: classes/feeds.php:926 #, php-format msgid "Feeds last updated at %s" msgstr "HÃrcsatornák utolsó frissÃtése: %s" #: classes/feeds.php:769 -#: classes/feeds.php:933 +#: classes/feeds.php:936 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:913 +#: classes/feeds.php:916 msgid "No feed selected." msgstr "Nincs kiválasztott hÃrcsatorna." -#: classes/feeds.php:966 -#: classes/feeds.php:974 +#: classes/feeds.php:969 +#: classes/feeds.php:977 msgid "Feed or site URL" msgstr "HÃrcsatorna vagy weboldal URL" -#: classes/feeds.php:980 +#: classes/feeds.php:983 #: 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 +#: classes/feeds.php:991 msgid "Available feeds" msgstr "ElérhetÅ‘ hÃrcsatornák" -#: classes/feeds.php:1000 +#: classes/feeds.php:1003 #: 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/feeds.php:1007 #: classes/pref/users.php:402 #: classes/pref/feeds.php:596 #: classes/pref/feeds.php:822 @@ -1383,30 +1323,30 @@ msgstr "AzonosÃtás" msgid "Login" msgstr "Belépés" -#: classes/feeds.php:1007 -#: classes/pref/prefs.php:253 +#: classes/feeds.php:1010 +#: classes/pref/prefs.php:269 #: classes/pref/feeds.php:602 #: classes/pref/feeds.php:828 #: classes/pref/feeds.php:1778 msgid "Password" msgstr "Jelszó" -#: classes/feeds.php:1017 +#: classes/feeds.php:1020 msgid "This feed requires authentication." msgstr "Ez a hÃrcsatorna azonosÃtást igényel." -#: classes/feeds.php:1022 -#: classes/feeds.php:1078 +#: classes/feeds.php:1025 +#: classes/feeds.php:1081 #: classes/pref/feeds.php:1796 msgid "Subscribe" msgstr "Feliratkozás" -#: classes/feeds.php:1025 +#: classes/feeds.php:1028 msgid "More feeds" msgstr "További hÃrcsatornák" -#: classes/feeds.php:1048 -#: classes/feeds.php:1139 +#: classes/feeds.php:1051 +#: classes/feeds.php:1142 #: classes/pref/users.php:332 #: classes/pref/filters.php:641 #: classes/pref/feeds.php:1259 @@ -1414,19 +1354,19 @@ msgstr "További hÃrcsatornák" msgid "Search" msgstr "Keresés" -#: classes/feeds.php:1052 +#: classes/feeds.php:1055 msgid "Popular feeds" msgstr "Népszerű hÃrcsatornák" -#: classes/feeds.php:1053 +#: classes/feeds.php:1056 msgid "Feed archive" msgstr "HÃrcsatorna archÃvum" -#: classes/feeds.php:1056 +#: classes/feeds.php:1059 msgid "limit:" msgstr "határ:" -#: classes/feeds.php:1079 +#: classes/feeds.php:1082 #: classes/pref/users.php:358 #: classes/pref/labels.php:284 #: classes/pref/filters.php:398 @@ -1436,15 +1376,15 @@ msgstr "határ:" msgid "Remove" msgstr "EltávolÃt" -#: classes/feeds.php:1090 +#: classes/feeds.php:1093 msgid "Look for" msgstr "Keresés" -#: classes/feeds.php:1098 +#: classes/feeds.php:1101 msgid "Limit search to:" msgstr "Keresés korlátozása ezekre:" -#: classes/feeds.php:1114 +#: classes/feeds.php:1117 msgid "This feed" msgstr "Ez a hÃrcsatorna" @@ -1608,7 +1548,7 @@ msgstr "[tt-rss] ÉrtesÃtés jelszó megváltoztatásáról." #: classes/pref/filters.php:645 #: classes/pref/filters.php:734 #: classes/pref/filters.php:761 -#: classes/pref/prefs.php:952 +#: classes/pref/prefs.php:998 #: classes/pref/feeds.php:1263 #: classes/pref/feeds.php:1533 #: classes/pref/feeds.php:1603 @@ -2027,212 +1967,217 @@ msgstr "A megadott jelszavak nem egyeznek." msgid "Function not supported by authentication module." msgstr "A hitelesÃtési modul nem támogatja ezt a funkciót." -#: classes/pref/prefs.php:120 +#: classes/pref/prefs.php:135 msgid "The configuration was saved." msgstr "BeállÃtások elmentve." -#: classes/pref/prefs.php:134 +#: classes/pref/prefs.php:150 #, php-format msgid "Unknown option: %s" msgstr "Ismeretlen beállÃtás: %s" -#: classes/pref/prefs.php:148 +#: classes/pref/prefs.php:164 msgid "Your personal data has been saved." msgstr "A személyes adatai el lettek mentve." -#: classes/pref/prefs.php:188 +#: classes/pref/prefs.php:204 msgid "Personal data / Authentication" msgstr "Személyes adatok / AzonosÃtás" -#: classes/pref/prefs.php:208 +#: classes/pref/prefs.php:224 msgid "Personal data" msgstr "Személyes adatok" -#: classes/pref/prefs.php:218 +#: classes/pref/prefs.php:234 msgid "Full name" msgstr "Teljes név" -#: classes/pref/prefs.php:222 +#: classes/pref/prefs.php:238 msgid "E-mail" msgstr "E-mail" -#: classes/pref/prefs.php:228 +#: classes/pref/prefs.php:244 msgid "Access level" msgstr "Hozzáférési szint" -#: classes/pref/prefs.php:238 +#: classes/pref/prefs.php:254 msgid "Save data" msgstr "Adatok mentése" -#: classes/pref/prefs.php:260 +#: classes/pref/prefs.php:276 msgid "Your password is at default value, please change it." msgstr "A jelszava még az alapértelmezett, kérem változtassa meg." -#: classes/pref/prefs.php:287 +#: classes/pref/prefs.php:303 msgid "Changing your current password will disable OTP." msgstr "" -#: classes/pref/prefs.php:292 +#: classes/pref/prefs.php:308 msgid "Old password" msgstr "Régi jelszó" -#: classes/pref/prefs.php:295 +#: classes/pref/prefs.php:311 msgid "New password" msgstr "Új jelszó" -#: classes/pref/prefs.php:300 +#: classes/pref/prefs.php:316 msgid "Confirm password" msgstr "Jelszó még egyszer" -#: classes/pref/prefs.php:310 +#: classes/pref/prefs.php:326 msgid "Change password" msgstr "Jelszó megváltoztatása" -#: classes/pref/prefs.php:316 +#: classes/pref/prefs.php:332 msgid "One time passwords / Authenticator" msgstr "Egyszer használatos jelszavak / HitelesÃtÅ‘" -#: classes/pref/prefs.php:320 +#: classes/pref/prefs.php:336 msgid "One time passwords are currently enabled. Enter your current password below to disable." msgstr "" -#: classes/pref/prefs.php:345 -#: classes/pref/prefs.php:396 +#: classes/pref/prefs.php:361 +#: classes/pref/prefs.php:412 msgid "Enter your password" msgstr "Adja meg a jelszavát" -#: classes/pref/prefs.php:356 +#: classes/pref/prefs.php:372 msgid "Disable OTP" msgstr "OTP letiltása" -#: classes/pref/prefs.php:362 +#: classes/pref/prefs.php:378 msgid "You will need a compatible Authenticator to use this. Changing your password would automatically disable OTP." msgstr "Ennek a használatához egy kompatibilis HitelesÃtÅ‘re van szükség. A jelszó módosÃtása automatikusan letiltja az OTP-t." -#: classes/pref/prefs.php:364 +#: classes/pref/prefs.php:380 msgid "Scan the following code by the Authenticator application:" msgstr "Szkennelje be a következÅ‘ kódot a HitelesÃtÅ‘ alkalmazással:" -#: classes/pref/prefs.php:405 +#: classes/pref/prefs.php:421 msgid "I have scanned the code and would like to enable OTP" msgstr "Beszkenneltem a kódot és be szeretném kapcsolni az OTP-t" -#: classes/pref/prefs.php:413 +#: classes/pref/prefs.php:429 msgid "Enable OTP" msgstr "OTP engedélyezése" -#: classes/pref/prefs.php:451 +#: classes/pref/prefs.php:475 msgid "Some preferences are only available in default profile." msgstr "" -#: classes/pref/prefs.php:545 +#: classes/pref/prefs.php:585 msgid "Customize" msgstr "Testreszabás" -#: classes/pref/prefs.php:605 +#: classes/pref/prefs.php:645 msgid "Register" msgstr "Regisztráció" -#: classes/pref/prefs.php:609 +#: classes/pref/prefs.php:649 msgid "Clear" msgstr "Töröl" -#: classes/pref/prefs.php:615 +#: classes/pref/prefs.php:655 #, php-format msgid "Current server time: %s (UTC)" msgstr "Aktuális szerveridÅ‘: %s (UTC)" -#: classes/pref/prefs.php:648 +#: classes/pref/prefs.php:688 msgid "Save configuration" msgstr "BeállÃtások mentése" -#: classes/pref/prefs.php:651 +#: classes/pref/prefs.php:692 +#, fuzzy +msgid "Save and exit preferences" +msgstr "Kilépés a beállÃtásokból" + +#: classes/pref/prefs.php:697 msgid "Manage profiles" msgstr "Profilok kezelése" -#: classes/pref/prefs.php:654 +#: classes/pref/prefs.php:700 msgid "Reset to defaults" msgstr "Alapértelmezett beállÃtások" -#: classes/pref/prefs.php:678 -#: classes/pref/prefs.php:680 +#: classes/pref/prefs.php:724 +#: classes/pref/prefs.php:726 msgid "Plugins" msgstr "BeépülÅ‘k" -#: classes/pref/prefs.php:682 +#: classes/pref/prefs.php:728 msgid "You will need to reload Tiny Tiny RSS for plugin changes to take effect." msgstr "" -#: classes/pref/prefs.php:684 +#: classes/pref/prefs.php:730 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:710 +#: classes/pref/prefs.php:756 msgid "System plugins" msgstr "Rendszer beépülÅ‘k" -#: classes/pref/prefs.php:714 -#: classes/pref/prefs.php:768 +#: classes/pref/prefs.php:760 +#: classes/pref/prefs.php:814 msgid "Plugin" msgstr "BeépülÅ‘" -#: classes/pref/prefs.php:715 -#: classes/pref/prefs.php:769 +#: classes/pref/prefs.php:761 +#: classes/pref/prefs.php:815 msgid "Description" msgstr "LeÃrás" -#: classes/pref/prefs.php:716 -#: classes/pref/prefs.php:770 +#: classes/pref/prefs.php:762 +#: classes/pref/prefs.php:816 msgid "Version" msgstr "Verzió" -#: classes/pref/prefs.php:717 -#: classes/pref/prefs.php:771 +#: classes/pref/prefs.php:763 +#: classes/pref/prefs.php:817 msgid "Author" msgstr "SzerzÅ‘" -#: classes/pref/prefs.php:746 -#: classes/pref/prefs.php:803 +#: classes/pref/prefs.php:792 +#: classes/pref/prefs.php:849 msgid "more info" msgstr "" -#: classes/pref/prefs.php:755 -#: classes/pref/prefs.php:812 +#: classes/pref/prefs.php:801 +#: classes/pref/prefs.php:858 msgid "Clear data" msgstr "Adatok törlése" -#: classes/pref/prefs.php:764 +#: classes/pref/prefs.php:810 msgid "User plugins" msgstr "Felhasználói beépülÅ‘k" -#: classes/pref/prefs.php:827 +#: classes/pref/prefs.php:873 msgid "Enable selected plugins" msgstr "Kiválasztott beépülÅ‘k engedélyezése" -#: classes/pref/prefs.php:882 -#: classes/pref/prefs.php:900 +#: classes/pref/prefs.php:928 +#: classes/pref/prefs.php:946 msgid "Incorrect password" msgstr "Érvénytelen jelszó" -#: classes/pref/prefs.php:926 +#: classes/pref/prefs.php:972 #, 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:966 +#: classes/pref/prefs.php:1012 msgid "Create profile" msgstr "Profil létrehozás" -#: classes/pref/prefs.php:989 -#: classes/pref/prefs.php:1019 +#: classes/pref/prefs.php:1035 +#: classes/pref/prefs.php:1065 msgid "(active)" msgstr "(aktÃv)" -#: classes/pref/prefs.php:1053 +#: classes/pref/prefs.php:1099 msgid "Remove selected profiles" msgstr "EltávolÃtja a kiválasztott profilokat?" -#: classes/pref/prefs.php:1055 +#: classes/pref/prefs.php:1101 msgid "Activate profile" msgstr "Profil aktiválás" @@ -2740,15 +2685,15 @@ msgstr "" msgid "The document has incorrect format." msgstr "" -#: plugins/googlereaderimport/init.php:326 +#: plugins/googlereaderimport/init.php:328 msgid "Import starred or shared items from Google Reader" msgstr "" -#: plugins/googlereaderimport/init.php:330 +#: plugins/googlereaderimport/init.php:332 msgid "Paste your starred.json or shared.json into the form below." msgstr "" -#: plugins/googlereaderimport/init.php:344 +#: plugins/googlereaderimport/init.php:346 msgid "Import my Starred items" msgstr "" @@ -2842,23 +2787,23 @@ msgstr "FrissÃtésre kész." msgid "Start update" msgstr "FrissÃtés indtása" -#: js/feedlist.js:392 -#: js/feedlist.js:420 +#: js/feedlist.js:394 +#: js/feedlist.js:422 #: plugins/digest/digest.js:26 msgid "Mark all articles in %s as read?" msgstr "Minden hÃrt megjelöl olvasottként itt: %s?" -#: js/feedlist.js:411 +#: js/feedlist.js:413 #, fuzzy msgid "Mark all articles in %s older than 1 day as read?" msgstr "Minden hÃrt megjelöl olvasottként itt: %s?" -#: js/feedlist.js:414 +#: js/feedlist.js:416 #, fuzzy msgid "Mark all articles in %s older than 1 week as read?" msgstr "Minden hÃrt megjelöl olvasottként itt: %s?" -#: js/feedlist.js:417 +#: js/feedlist.js:419 #, fuzzy msgid "Mark all articles in %s older than 2 weeks as read?" msgstr "Minden hÃrt megjelöl olvasottként itt: %s?" @@ -3402,149 +3347,149 @@ msgstr "HÃrek újrapontszámozása" msgid "New version available!" msgstr "Új verzió érhetÅ‘ el." -#: js/viewfeed.js:104 +#: js/viewfeed.js:106 msgid "Cancel search" msgstr "Keresés megszakÃtása" -#: js/viewfeed.js:438 +#: js/viewfeed.js:441 #: plugins/digest/digest.js:258 #: plugins/digest/digest.js:714 msgid "Unstar article" msgstr "Csillagot levesz a hÃrrÅ‘l" -#: js/viewfeed.js:443 +#: js/viewfeed.js:446 #: plugins/digest/digest.js:260 #: plugins/digest/digest.js:718 msgid "Star article" msgstr "HÃr csillagozása" -#: js/viewfeed.js:476 +#: js/viewfeed.js:479 #: plugins/digest/digest.js:263 #: plugins/digest/digest.js:749 msgid "Unpublish article" msgstr "Publikálás visszavonása" -#: js/viewfeed.js:481 +#: js/viewfeed.js:484 #: plugins/digest/digest.js:265 #: plugins/digest/digest.js:754 msgid "Publish article" msgstr "HÃr publikálása" -#: js/viewfeed.js:677 -#: js/viewfeed.js:705 -#: js/viewfeed.js:732 -#: js/viewfeed.js:795 -#: js/viewfeed.js:829 -#: js/viewfeed.js:949 -#: js/viewfeed.js:992 -#: js/viewfeed.js:1045 -#: js/viewfeed.js:2051 +#: js/viewfeed.js:680 +#: js/viewfeed.js:708 +#: js/viewfeed.js:735 +#: js/viewfeed.js:798 +#: js/viewfeed.js:832 +#: js/viewfeed.js:952 +#: js/viewfeed.js:995 +#: js/viewfeed.js:1048 +#: js/viewfeed.js:2060 #: plugins/mailto/init.js:7 #: plugins/mail/mail.js:7 msgid "No articles are selected." msgstr "Nincsen kiválasztott hÃr." -#: js/viewfeed.js:957 +#: js/viewfeed.js:960 #, 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:959 +#: js/viewfeed.js:962 #, 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:1001 +#: js/viewfeed.js:1004 #, 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:1004 +#: js/viewfeed.js:1007 #, 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:1006 +#: js/viewfeed.js:1009 msgid "Please note that unstarred articles might get purged on next feed update." msgstr "" -#: js/viewfeed.js:1051 +#: js/viewfeed.js:1054 #, 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:1075 +#: js/viewfeed.js:1078 msgid "Edit article Tags" msgstr "HÃr cÃmkéinek szerkesztése" -#: js/viewfeed.js:1081 +#: js/viewfeed.js:1084 #, fuzzy msgid "Saving article tags..." msgstr "HÃr cÃmkéinek szerkesztése" -#: js/viewfeed.js:1278 +#: js/viewfeed.js:1287 msgid "No article is selected." msgstr "Nincs kiválasztott hÃr." -#: js/viewfeed.js:1313 +#: js/viewfeed.js:1322 msgid "No articles found to mark" msgstr "Nincs megjelölendÅ‘ hÃr." -#: js/viewfeed.js:1315 +#: js/viewfeed.js:1324 #, 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:1827 +#: js/viewfeed.js:1836 msgid "Open original article" msgstr "Eredeti hÃr megjelenÃtése" -#: js/viewfeed.js:1833 +#: js/viewfeed.js:1842 msgid "Display article URL" msgstr "URL megjelenÃtése" -#: js/viewfeed.js:1852 +#: js/viewfeed.js:1861 #, fuzzy msgid "Toggle marked" msgstr "Csillagoz" -#: js/viewfeed.js:1933 +#: js/viewfeed.js:1942 msgid "Assign label" msgstr "CÃmke hozzáadása" -#: js/viewfeed.js:1938 +#: js/viewfeed.js:1947 msgid "Remove label" msgstr "CÃmke eltávolÃtás" -#: js/viewfeed.js:1962 +#: js/viewfeed.js:1971 msgid "Playing..." msgstr "Lejátszás..." -#: js/viewfeed.js:1963 +#: js/viewfeed.js:1972 msgid "Click to pause" msgstr "Kattintson a megállÃtáshoz" -#: js/viewfeed.js:2020 +#: js/viewfeed.js:2029 msgid "Please enter new score for selected articles:" msgstr "Adjon meg egy új pontszámot a kijelölt hÃrekhez:" -#: js/viewfeed.js:2062 +#: js/viewfeed.js:2071 msgid "Please enter new score for this article:" msgstr "Adjon meg egy új pontszámot a hÃrhez:" -#: js/viewfeed.js:2095 +#: js/viewfeed.js:2104 msgid "Article URL:" msgstr "HÃr URL:" @@ -3654,6 +3599,54 @@ 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." +#~ msgid "Could not update database" +#~ msgstr "Adatbázis frissÃtése sikertelen" + +#~ msgid "Could not find necessary schema file, need version:" +#~ msgstr "Nem található a szükséges séma fájl, a szükséges verzió:" + +#~ msgid ", found: " +#~ msgstr ", találat:" + +#~ msgid "Tiny Tiny RSS database is up to date." +#~ msgstr "A Tiny Tiny RSS adatbázis friss." + +#~ msgid "Please backup your database before proceeding." +#~ msgstr "A továbbhaladás elÅ‘tt készÃtsen biztosági másolatot adatbázisáról." + +#~ msgid "Your Tiny Tiny RSS database needs update to the latest version (<b>%d</b> to <b>%d</b>)." +#~ msgstr "A Tiny Tiny RSS adatbázisát frissÃteni kell a legújabb verzióra (<b>%d</b> to <b>%d</b>)." + +#~ msgid "Performing updates..." +#~ msgstr "FrissÃtések folyamatban..." + +#~ msgid "Updating to version %d..." +#~ msgstr "FrissÃtés %d verzióra..." + +#~ msgid "Checking version... " +#~ msgstr "Verzió ellenÅ‘rzése" + +#~ msgid "OK!" +#~ msgstr "OK!" + +#~ msgid "ERROR!" +#~ msgstr "HIBA!" + +#, fuzzy +#~ 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] "Elkészült. <b>%d</b> frissÃtés a <b>%d</b> verziójú sémára." +#~ msgstr[1] "Elkészült. <b>%d</b> frissÃtés a <b>%d</b> verziójú sémára." + +#~ msgid "Your database schema is from a newer version of Tiny Tiny RSS." +#~ msgstr "Az adatbázis séma egy újabb Tiny Tiny RSS-bÅ‘l származik." + +#~ msgid "Found schema version: <b>%d</b>, required: <b>%d</b>." +#~ msgstr "A talált séma verziója: <b>%d</b>, a szükséges: <b>%d</b>." + +#~ msgid "Schema upgrade impossible. Please update Tiny Tiny RSS files to the newer version and continue." +#~ msgstr "A séma frissÃtése nem lehetséges. A folytatáshoz frissÃtse a Tiny Tiny RSS fájljait egy újabb verzióra." + #~ msgid "Mark feed as read" #~ msgstr "HÃrcsatorna megjelölése olvasottként" @@ -3667,9 +3660,6 @@ msgstr "Az élÅ‘ frissÃtés még kisérleti fázisban van. A folytatás elÅ‘tt #~ msgid "When this option is enabled, headlines in Special feeds and Labels are grouped by feeds" #~ msgstr "Ha ezt a beállÃtást engedélyezi, a Kiemelt hÃrcsatornákban és a CÃmkékben szereplÅ‘ cÃmeket a program hÃrcsatornák alapján csoportosÃtja." -#~ msgid "Title" -#~ msgstr "CÃm" - #~ msgid "Title or Content" #~ msgstr "CÃm vagy tartalom" diff --git a/locale/it_IT/LC_MESSAGES/messages.mo b/locale/it_IT/LC_MESSAGES/messages.mo Binary files differindex dbaa822d0..334ac5619 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 f141787ff..ea8f50b91 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-04-04 09:06+0400\n" +"POT-Creation-Date: 2013-04-04 21:31+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" @@ -103,105 +103,6 @@ msgstr "Utente con più autorizzazioni" msgid "Administrator" msgstr "Amministratore" -#: db-updater.php:19 -msgid "Your access level is insufficient to run this script." -msgstr "Il livello di accesso non è sufficiente per eseguire questo script." - -#: db-updater.php:44 -msgid "Database Updater" -msgstr "Aggiornatore database" - -#: db-updater.php:87 -msgid "Could not update database" -msgstr "Impossibile aggiornare il database" - -#: db-updater.php:90 -msgid "Could not find necessary schema file, need version:" -msgstr "Impossibile trovare il file schema necessario; serve la versione:" - -#: db-updater.php:91 -msgid ", found: " -msgstr ", trovato: " - -#: db-updater.php:94 -msgid "Tiny Tiny RSS database is up to date." -msgstr "Il database di Tiny Tiny RSS è aggiornato." - -#: 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:648 -#: classes/handler/public.php:736 -#: classes/handler/public.php:818 -msgid "Return to Tiny Tiny RSS" -msgstr "Ritorna a Tiny Tiny RSS" - -#: db-updater.php:102 -msgid "Please backup your database before proceeding." -msgstr "Fare il backup del database prima di procedere." - -#: 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 "Il database di Tiny Tiny RSS deve essere aggiornato all'ultima versione (<b>%d</b> a <b>%d</b>)." - -#: db-updater.php:118 -msgid "Perform updates" -msgstr "Effettuare gli aggiornamenti" - -#: db-updater.php:123 -msgid "Performing updates..." -msgstr "Esecuzione aggiornamenti..." - -#: db-updater.php:129 -#, php-format -msgid "Updating to version %d..." -msgstr "Aggiornamento alla versione %d..." - -#: db-updater.php:144 -msgid "Checking version... " -msgstr "Controllo della versione..." - -#: db-updater.php:150 -msgid "OK!" -msgstr "OK" - -#: db-updater.php:152 -msgid "ERROR!" -msgstr "ERRORE" - -#: db-updater.php:160 -#, fuzzy, php-format -msgid "Finished. Performed <b>%d</b> update up to schema version <b>%d</b>." -msgid_plural "Finished. Performed <b>%d</b> updates up to schema version <b>%d</b>." -msgstr[0] "" -"Fine. Eseguito/i <b>%d</b> aggiornamento/i fino\n" -"\t\t\tallo schema versione <b>%d</b>." -msgstr[1] "" -"Fine. Eseguito/i <b>%d</b> aggiornamento/i fino\n" -"\t\t\tallo schema versione <b>%d</b>." - -#: db-updater.php:170 -msgid "Your database schema is from a newer version of Tiny Tiny RSS." -msgstr "Lo schema del database è di una versione più recente di Tiny Tiny RSS." - -#: db-updater.php:172 -#, php-format -msgid "Found schema version: <b>%d</b>, required: <b>%d</b>." -msgstr "Versione dello schema trovata: <b>%d</b>, richiesta: <b>%d</b>." - -#: db-updater.php:174 -msgid "Schema upgrade impossible. Please update Tiny Tiny RSS files to the newer version and continue." -msgstr "Impossibile aggiornare lo schema. Aggiornare i file di Tiny Tiny RSS a una nuova versione e continuare." - #: errors.php:9 msgid "This program requires XmlHttpRequest to function properly. Your browser doesn't seem to support it." msgstr "Questo programma richiede XmlHttpRequest per funzionare correttamente. Il browser sembra non supportarla." @@ -256,7 +157,7 @@ msgstr "Test di sanitizzazione dell'SQL fallito; controllare il database e #: index.php:135 #: index.php:152 -#: index.php:276 +#: index.php:277 #: prefs.php:103 #: classes/backend.php:5 #: classes/pref/labels.php:296 @@ -264,7 +165,7 @@ msgstr "Test di sanitizzazione dell'SQL fallito; controllare il database e #: classes/pref/feeds.php:1331 #: plugins/digest/digest_body.php:63 #: js/feedlist.js:128 -#: js/feedlist.js:436 +#: js/feedlist.js:438 #: js/functions.js:420 #: js/functions.js:758 #: js/functions.js:1194 @@ -285,8 +186,8 @@ msgstr "Test di sanitizzazione dell'SQL fallito; controllare il database e #: js/prefs.js:1814 #: js/tt-rss.js:475 #: js/tt-rss.js:492 -#: js/viewfeed.js:772 -#: js/viewfeed.js:1200 +#: js/viewfeed.js:775 +#: js/viewfeed.js:1201 #: plugins/import_export/import_export.js:17 #: plugins/updater/updater.js:17 msgid "Loading, please wait..." @@ -309,13 +210,13 @@ msgid "All Articles" msgstr "Tutti gli articoli" #: index.php:174 -#: include/functions.php:1953 +#: include/functions.php:1955 #: classes/feeds.php:106 msgid "Starred" msgstr "Con stella" #: index.php:175 -#: include/functions.php:1954 +#: include/functions.php:1956 #: classes/feeds.php:107 msgid "Published" msgstr "Pubblicati" @@ -355,9 +256,13 @@ msgstr "" msgid "Oldest first" msgstr "" -#: index.php:191 -#: index.php:240 -#: include/functions.php:1943 +#: index.php:188 +msgid "Title" +msgstr "Titolo" + +#: index.php:192 +#: index.php:241 +#: include/functions.php:1945 #: classes/feeds.php:111 #: classes/feeds.php:441 #: js/FeedTree.js:128 @@ -366,106 +271,106 @@ msgstr "" msgid "Mark as read" msgstr "Segna come letto" -#: index.php:194 +#: index.php:195 msgid "Older than one day" msgstr "" -#: index.php:197 +#: index.php:198 msgid "Older than one week" msgstr "" -#: index.php:200 +#: index.php:201 msgid "Older than two weeks" msgstr "" -#: index.php:217 +#: index.php:218 msgid "Communication problem with server." msgstr "" -#: index.php:225 +#: index.php:226 msgid "New version of Tiny Tiny RSS is available!" msgstr "È disponibile la nuova versione di Tiny Tiny RSS." -#: index.php:230 +#: index.php:231 msgid "Actions..." msgstr "Azioni..." -#: index.php:232 +#: index.php:233 #, fuzzy msgid "Preferences..." msgstr "Preferenze" -#: index.php:233 +#: index.php:234 msgid "Search..." msgstr "Cerca..." -#: index.php:234 +#: index.php:235 msgid "Feed actions:" msgstr "Azioni notiziari:" -#: index.php:235 +#: index.php:236 #: classes/handler/public.php:578 msgid "Subscribe to feed..." msgstr "Sottoscrivi il notiziario..." -#: index.php:236 +#: index.php:237 msgid "Edit this feed..." msgstr "Modifica questo notiziario..." -#: index.php:237 +#: index.php:238 msgid "Rescore feed" msgstr "Cambia punteggio notiziario" -#: index.php:238 +#: index.php:239 #: classes/pref/feeds.php:717 #: classes/pref/feeds.php:1283 #: js/PrefFeedTree.js:73 msgid "Unsubscribe" msgstr "Annulla sottoscrizione" -#: index.php:239 +#: index.php:240 msgid "All feeds:" msgstr "Tutti i notiziari:" -#: index.php:241 +#: index.php:242 msgid "(Un)hide read feeds" msgstr "Visualizza/Nascondi notiziari letti" -#: index.php:242 +#: index.php:243 msgid "Other actions:" msgstr "Altre azioni:" -#: index.php:244 +#: index.php:245 msgid "Switch to digest..." msgstr "Passa al sommario..." -#: index.php:246 +#: index.php:247 msgid "Show tag cloud..." msgstr "Mostra nuvola etichette..." -#: index.php:247 -#: include/functions.php:1929 +#: index.php:248 +#: include/functions.php:1931 #, fuzzy msgid "Toggle widescreen mode" msgstr "Inverti con stella" -#: index.php:248 +#: index.php:249 msgid "Select by tags..." msgstr "" -#: index.php:249 +#: index.php:250 msgid "Create label..." msgstr "Crea etichetta..." -#: index.php:250 +#: index.php:251 msgid "Create filter..." msgstr "Crea filtro..." -#: index.php:251 +#: index.php:252 msgid "Keyboard shortcuts help" msgstr "Aiuto scorciatoie da tastiera" -#: index.php:260 +#: index.php:261 #: plugins/digest/digest_body.php:77 #: plugins/mobile/mobile-functions.php:62 #: plugins/mobile/mobile-functions.php:237 @@ -474,8 +379,8 @@ msgstr "Esci" #: prefs.php:36 #: prefs.php:121 -#: include/functions.php:1956 -#: classes/pref/prefs.php:428 +#: include/functions.php:1958 +#: classes/pref/prefs.php:444 msgid "Preferences" msgstr "Preferenze" @@ -500,8 +405,8 @@ msgid "Filters" msgstr "Filtri" #: prefs.php:130 -#: include/functions.php:1146 -#: include/functions.php:1782 +#: include/functions.php:1148 +#: include/functions.php:1784 #: classes/pref/labels.php:90 #: plugins/mobile/mobile-functions.php:198 msgid "Labels" @@ -520,6 +425,24 @@ msgstr "Crea un nuovo utente" msgid "New user registrations are administratively disabled." msgstr "La registrazione di nuovi utenti è disabilitata dall'amministratore." +#: 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:648 +#: classes/handler/public.php:736 +#: classes/handler/public.php:818 +#: classes/handler/public.php:893 +#: classes/handler/public.php:907 +#: classes/handler/public.php:914 +#: classes/handler/public.php:939 +msgid "Return to Tiny Tiny RSS" +msgstr "Ritorna a Tiny Tiny RSS" + #: 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 "La password temporanea verrà inviata all'email speficiata. Utenti, che non eseguono l'accesso almeno una volta, vengono cancellati automaticamente 24 ore dopo che la password temporanea è stata inviata." @@ -566,16 +489,16 @@ msgstr "Utente creato con successo." msgid "New user registrations are currently closed." msgstr "La registrazione di nuovi utenti è attualmente chiusa." -#: update.php:55 +#: update.php:56 #, fuzzy msgid "Tiny Tiny RSS data update script." msgstr "Il database di Tiny Tiny RSS è aggiornato." #: include/digest.php:109 -#: include/functions.php:1155 -#: include/functions.php:1683 -#: include/functions.php:1768 -#: include/functions.php:1790 +#: include/functions.php:1157 +#: include/functions.php:1685 +#: include/functions.php:1770 +#: include/functions.php:1792 #: classes/opml.php:416 #: classes/pref/feeds.php:222 msgid "Uncategorized" @@ -592,327 +515,327 @@ msgstr[1] "%d articoli archiviati" msgid "No feeds found." msgstr "Nessun notiziario trovato." -#: include/functions.php:1144 -#: include/functions.php:1780 +#: include/functions.php:1146 +#: include/functions.php:1782 #: plugins/mobile/mobile-functions.php:171 msgid "Special" msgstr "Speciale" -#: include/functions.php:1632 -#: classes/feeds.php:1101 +#: include/functions.php:1634 +#: classes/feeds.php:1104 #: classes/pref/filters.php:427 msgid "All feeds" msgstr "Tutti i notiziari" -#: include/functions.php:1833 +#: include/functions.php:1835 msgid "Starred articles" msgstr "Articoli con stella" -#: include/functions.php:1835 +#: include/functions.php:1837 msgid "Published articles" msgstr "Articoli pubblicati" -#: include/functions.php:1837 +#: include/functions.php:1839 msgid "Fresh articles" msgstr "Articoli nuovi" -#: include/functions.php:1839 -#: include/functions.php:1951 +#: include/functions.php:1841 +#: include/functions.php:1953 msgid "All articles" msgstr "Tutti gli articoli" -#: include/functions.php:1841 +#: include/functions.php:1843 msgid "Archived articles" msgstr "Articoli archiviati" -#: include/functions.php:1843 +#: include/functions.php:1845 msgid "Recently read" msgstr "" -#: include/functions.php:1906 +#: include/functions.php:1908 msgid "Navigation" msgstr "Navigazione" -#: include/functions.php:1907 +#: include/functions.php:1909 #, fuzzy msgid "Open next feed" msgstr "Su lettura passare al prossimo notiziario" -#: include/functions.php:1908 +#: include/functions.php:1910 msgid "Open previous feed" msgstr "" -#: include/functions.php:1909 +#: include/functions.php:1911 #, fuzzy msgid "Open next article" msgstr "Apri articolo di origine" -#: include/functions.php:1910 +#: include/functions.php:1912 #, fuzzy msgid "Open previous article" msgstr "Apri articolo di origine" -#: include/functions.php:1911 +#: include/functions.php:1913 msgid "Open next article (don't scroll long articles)" msgstr "" -#: include/functions.php:1912 +#: include/functions.php:1914 msgid "Open previous article (don't scroll long articles)" msgstr "" -#: include/functions.php:1913 +#: include/functions.php:1915 msgid "Show search dialog" msgstr "Mostra il dialogo di ricerca" -#: include/functions.php:1914 +#: include/functions.php:1916 #, fuzzy msgid "Article" msgstr "Tutti gli articoli" -#: include/functions.php:1915 +#: include/functions.php:1917 msgid "Toggle starred" msgstr "Inverti con stella" -#: include/functions.php:1916 -#: js/viewfeed.js:1863 +#: include/functions.php:1918 +#: js/viewfeed.js:1872 msgid "Toggle published" msgstr "Inverti pubblicati" -#: include/functions.php:1917 -#: js/viewfeed.js:1841 +#: include/functions.php:1919 +#: js/viewfeed.js:1850 msgid "Toggle unread" msgstr "Inverti non letti" -#: include/functions.php:1918 +#: include/functions.php:1920 msgid "Edit tags" msgstr "Modifica etichette" -#: include/functions.php:1919 +#: include/functions.php:1921 #, fuzzy msgid "Dismiss selected" msgstr "Rimuovi gli articoli selezionati" -#: include/functions.php:1920 +#: include/functions.php:1922 #, fuzzy msgid "Dismiss read" msgstr "Rimuovi articoli letti" -#: include/functions.php:1921 +#: include/functions.php:1923 #, fuzzy msgid "Open in new window" msgstr "Aprire gli articoli in una nuova finestra" -#: include/functions.php:1922 -#: js/viewfeed.js:1882 +#: include/functions.php:1924 +#: js/viewfeed.js:1891 msgid "Mark below as read" msgstr "" -#: include/functions.php:1923 -#: js/viewfeed.js:1876 +#: include/functions.php:1925 +#: js/viewfeed.js:1885 msgid "Mark above as read" msgstr "" -#: include/functions.php:1924 +#: include/functions.php:1926 #, fuzzy msgid "Scroll down" msgstr "Fatto tutto." -#: include/functions.php:1925 +#: include/functions.php:1927 msgid "Scroll up" msgstr "" -#: include/functions.php:1926 +#: include/functions.php:1928 #, fuzzy msgid "Select article under cursor" msgstr "Seleziona l'articolo sotto il cursore del mouse" -#: include/functions.php:1927 +#: include/functions.php:1929 msgid "Email article" msgstr "" -#: include/functions.php:1928 +#: include/functions.php:1930 #, fuzzy msgid "Close/collapse article" msgstr "Cambio punteggio degli articoli" -#: include/functions.php:1930 +#: include/functions.php:1932 #: plugins/embed_original/init.php:33 #, fuzzy msgid "Toggle embed original" msgstr "Inverti pubblicati" -#: include/functions.php:1931 +#: include/functions.php:1933 #, fuzzy msgid "Article selection" msgstr "Azioni sull'articolo attivo" -#: include/functions.php:1932 +#: include/functions.php:1934 msgid "Select all articles" msgstr "" -#: include/functions.php:1933 +#: include/functions.php:1935 #, fuzzy msgid "Select unread" msgstr "Inverti non letti" -#: include/functions.php:1934 +#: include/functions.php:1936 #, fuzzy msgid "Select starred" msgstr "Imposta con stella" -#: include/functions.php:1935 +#: include/functions.php:1937 #, fuzzy msgid "Select published" msgstr "Articoli pubblicati" -#: include/functions.php:1936 +#: include/functions.php:1938 #, fuzzy msgid "Invert selection" msgstr "Selezione:" -#: include/functions.php:1937 +#: include/functions.php:1939 msgid "Deselect everything" msgstr "" -#: include/functions.php:1938 +#: include/functions.php:1940 #: classes/pref/feeds.php:521 #: classes/pref/feeds.php:754 msgid "Feed" msgstr "Notiziario" -#: include/functions.php:1939 +#: include/functions.php:1941 #, fuzzy msgid "Refresh current feed" msgstr "Aggiorna notiziario attivo" -#: include/functions.php:1940 +#: include/functions.php:1942 #, fuzzy msgid "Un/hide read feeds" msgstr "Visualizza/Nascondi notiziari letti" -#: include/functions.php:1941 +#: include/functions.php:1943 #: classes/pref/feeds.php:1275 msgid "Subscribe to feed" msgstr "Sottoscrivi il notiziario" -#: include/functions.php:1942 +#: include/functions.php:1944 #: js/FeedTree.js:135 #: js/PrefFeedTree.js:67 msgid "Edit feed" msgstr "Modifica notiziario" -#: include/functions.php:1944 +#: include/functions.php:1946 #, fuzzy msgid "Reverse headlines" msgstr "Invertire l'ordine dei sommari" -#: include/functions.php:1945 +#: include/functions.php:1947 #, fuzzy msgid "Debug feed update" msgstr "Disabilitare aggiornamenti" -#: include/functions.php:1946 +#: include/functions.php:1948 #: js/FeedTree.js:178 msgid "Mark all feeds as read" msgstr "Segna tutti i notiziari come letti" -#: include/functions.php:1947 +#: include/functions.php:1949 #, fuzzy msgid "Un/collapse current category" msgstr "Mettere nella categoria:" -#: include/functions.php:1948 +#: include/functions.php:1950 #, fuzzy msgid "Toggle combined mode" msgstr "Inverti pubblicati" -#: include/functions.php:1949 +#: include/functions.php:1951 #, fuzzy msgid "Toggle auto expand in combined mode" msgstr "Inverti pubblicati" -#: include/functions.php:1950 +#: include/functions.php:1952 #, fuzzy msgid "Go to" msgstr "Vai a..." -#: include/functions.php:1952 +#: include/functions.php:1954 msgid "Fresh" msgstr "" -#: include/functions.php:1955 +#: include/functions.php:1957 #: js/tt-rss.js:431 #: js/tt-rss.js:584 msgid "Tag cloud" msgstr "Nuvola etichette" -#: include/functions.php:1957 +#: include/functions.php:1959 #, fuzzy msgid "Other" msgstr "Altri notiziari" -#: include/functions.php:1958 +#: include/functions.php:1960 #: classes/pref/labels.php:281 msgid "Create label" msgstr "Crea etichetta" -#: include/functions.php:1959 +#: include/functions.php:1961 #: classes/pref/filters.php:654 msgid "Create filter" msgstr "Crea filtro" -#: include/functions.php:1960 +#: include/functions.php:1962 #, fuzzy msgid "Un/collapse sidebar" msgstr "Contrai la barra laterale" -#: include/functions.php:1961 +#: include/functions.php:1963 #, fuzzy msgid "Show help dialog" msgstr "Mostra il dialogo di ricerca" -#: include/functions.php:2446 +#: include/functions.php:2471 #, php-format msgid "Search results: %s" msgstr "" -#: include/functions.php:2937 -#: js/viewfeed.js:1969 +#: include/functions.php:2962 +#: js/viewfeed.js:1978 msgid "Click to play" msgstr "Fare clic per riprodurre" -#: include/functions.php:2938 -#: js/viewfeed.js:1968 +#: include/functions.php:2963 +#: js/viewfeed.js:1977 msgid "Play" msgstr "Riproduci" -#: include/functions.php:3055 +#: include/functions.php:3080 msgid " - " msgstr " - " -#: include/functions.php:3077 -#: include/functions.php:3371 +#: include/functions.php:3102 +#: include/functions.php:3396 #: classes/article.php:281 msgid "no tags" msgstr "nessuna etichetta" -#: include/functions.php:3087 +#: include/functions.php:3112 #: classes/feeds.php:686 msgid "Edit tags for this article" msgstr "Modifica le etichette per questo articolo" -#: include/functions.php:3116 +#: include/functions.php:3141 #: classes/feeds.php:642 msgid "Originally from:" msgstr "Originariamente da:" -#: include/functions.php:3129 +#: include/functions.php:3154 #: classes/feeds.php:655 #: classes/pref/feeds.php:540 msgid "Feed URL" msgstr "URL del notiziario" -#: include/functions.php:3160 +#: include/functions.php:3185 #: classes/dlg.php:37 #: classes/dlg.php:60 #: classes/dlg.php:93 @@ -924,7 +847,7 @@ msgstr "URL del notiziario" #: classes/backend.php:105 #: classes/pref/users.php:99 #: classes/pref/filters.php:147 -#: classes/pref/prefs.php:1059 +#: classes/pref/prefs.php:1105 #: classes/pref/feeds.php:1588 #: classes/pref/feeds.php:1660 #: plugins/import_export/init.php:406 @@ -935,15 +858,15 @@ msgstr "URL del notiziario" msgid "Close this window" msgstr "Chiudi questa finestra" -#: include/functions.php:3396 +#: include/functions.php:3421 msgid "(edit note)" msgstr "(modifica note)" -#: include/functions.php:3631 +#: include/functions.php:3656 msgid "unknown type" msgstr "tipo sconosciuto" -#: include/functions.php:3687 +#: include/functions.php:3712 #, fuzzy msgid "Attachments" msgstr "Allegati:" @@ -968,6 +891,7 @@ msgstr "Nome utente o password sbagliati" #: include/login_form.php:201 #: classes/handler/public.php:489 +#: classes/pref/prefs.php:552 msgid "Language:" msgstr "Lingua:" @@ -978,7 +902,7 @@ msgstr "Profilo:" #: include/login_form.php:213 #: classes/handler/public.php:233 #: classes/rpc.php:64 -#: classes/pref/prefs.php:995 +#: classes/pref/prefs.php:1041 msgid "Default profile" msgstr "Profilo predefinito" @@ -996,7 +920,7 @@ msgstr "" msgid "Log in" msgstr "Accedi" -#: include/sessions.php:58 +#: include/sessions.php:62 msgid "Session failed to validate (incorrect IP)" msgstr "La validazione della sessione è fallita (IP non corretto)" @@ -1012,7 +936,7 @@ msgstr "Etichette per questo articolo (separate da virgole):" #: classes/pref/users.php:176 #: classes/pref/labels.php:79 #: classes/pref/filters.php:405 -#: classes/pref/prefs.php:941 +#: classes/pref/prefs.php:987 #: classes/pref/feeds.php:733 #: classes/pref/feeds.php:881 #: plugins/nsfw/init.php:86 @@ -1024,16 +948,16 @@ msgstr "Salva" #: classes/article.php:206 #: classes/handler/public.php:460 #: classes/handler/public.php:502 -#: classes/feeds.php:1028 -#: classes/feeds.php:1080 -#: classes/feeds.php:1140 +#: classes/feeds.php:1031 +#: classes/feeds.php:1083 +#: classes/feeds.php:1143 #: 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:943 +#: classes/pref/prefs.php:989 #: classes/pref/feeds.php:734 #: classes/pref/feeds.php:884 #: classes/pref/feeds.php:1797 @@ -1165,6 +1089,18 @@ msgstr "Sposta indietro" msgid "Sorry, login and email combination not found." msgstr "" +#: classes/handler/public.php:842 +msgid "Your access level is insufficient to run this script." +msgstr "Il livello di accesso non è sufficiente per eseguire questo script." + +#: classes/handler/public.php:866 +msgid "Database Updater" +msgstr "Aggiornatore database" + +#: classes/handler/public.php:931 +msgid "Perform updates" +msgstr "Effettuare gli aggiornamenti" + #: 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 "" @@ -1265,7 +1201,7 @@ msgstr "Seleziona:" #: classes/pref/filters.php:648 #: classes/pref/filters.php:737 #: classes/pref/filters.php:764 -#: classes/pref/prefs.php:955 +#: classes/pref/prefs.php:1001 #: classes/pref/feeds.php:1266 #: classes/pref/feeds.php:1536 #: classes/pref/feeds.php:1606 @@ -1285,7 +1221,7 @@ msgstr "Inverti" #: classes/pref/filters.php:650 #: classes/pref/filters.php:739 #: classes/pref/filters.php:766 -#: classes/pref/prefs.php:957 +#: classes/pref/prefs.php:1003 #: classes/pref/feeds.php:1268 #: classes/pref/feeds.php:1538 #: classes/pref/feeds.php:1608 @@ -1379,45 +1315,45 @@ msgid "No articles found to display." msgstr "Nessun articolo trovato da visualizzare." #: classes/feeds.php:759 -#: classes/feeds.php:923 +#: classes/feeds.php:926 #, php-format msgid "Feeds last updated at %s" msgstr "Ultimo aggiornamento notiziari alle %s" #: classes/feeds.php:769 -#: classes/feeds.php:933 +#: classes/feeds.php:936 msgid "Some feeds have update errors (click for details)" msgstr "Qualche notiziario ha degli errori di aggiornamento (fare clic per dettagli)" -#: classes/feeds.php:913 +#: classes/feeds.php:916 msgid "No feed selected." msgstr "Nessun notiziario selezionato." -#: classes/feeds.php:966 -#: classes/feeds.php:974 +#: classes/feeds.php:969 +#: classes/feeds.php:977 #, fuzzy msgid "Feed or site URL" msgstr "URL del notiziario" -#: classes/feeds.php:980 +#: classes/feeds.php:983 #: 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 +#: classes/feeds.php:991 msgid "Available feeds" msgstr "Notiziari disponibili" -#: classes/feeds.php:1000 +#: classes/feeds.php:1003 #: classes/pref/users.php:139 #: classes/pref/feeds.php:590 #: classes/pref/feeds.php:818 msgid "Authentication" msgstr "Autenticazione" -#: classes/feeds.php:1004 +#: classes/feeds.php:1007 #: classes/pref/users.php:402 #: classes/pref/feeds.php:596 #: classes/pref/feeds.php:822 @@ -1425,30 +1361,30 @@ msgstr "Autenticazione" msgid "Login" msgstr "Accesso" -#: classes/feeds.php:1007 -#: classes/pref/prefs.php:253 +#: classes/feeds.php:1010 +#: classes/pref/prefs.php:269 #: classes/pref/feeds.php:602 #: classes/pref/feeds.php:828 #: classes/pref/feeds.php:1778 msgid "Password" msgstr "Password" -#: classes/feeds.php:1017 +#: classes/feeds.php:1020 msgid "This feed requires authentication." msgstr "Questo notiziario richiede l'autenticazione" -#: classes/feeds.php:1022 -#: classes/feeds.php:1078 +#: classes/feeds.php:1025 +#: classes/feeds.php:1081 #: classes/pref/feeds.php:1796 msgid "Subscribe" msgstr "Sottoscrivi" -#: classes/feeds.php:1025 +#: classes/feeds.php:1028 msgid "More feeds" msgstr "Altri notiziari" -#: classes/feeds.php:1048 -#: classes/feeds.php:1139 +#: classes/feeds.php:1051 +#: classes/feeds.php:1142 #: classes/pref/users.php:332 #: classes/pref/filters.php:641 #: classes/pref/feeds.php:1259 @@ -1456,19 +1392,19 @@ msgstr "Altri notiziari" msgid "Search" msgstr "Cerca" -#: classes/feeds.php:1052 +#: classes/feeds.php:1055 msgid "Popular feeds" msgstr "Notiziari popolari" -#: classes/feeds.php:1053 +#: classes/feeds.php:1056 msgid "Feed archive" msgstr "Archivio notiziari" -#: classes/feeds.php:1056 +#: classes/feeds.php:1059 msgid "limit:" msgstr "limite:" -#: classes/feeds.php:1079 +#: classes/feeds.php:1082 #: classes/pref/users.php:358 #: classes/pref/labels.php:284 #: classes/pref/filters.php:398 @@ -1478,15 +1414,15 @@ msgstr "limite:" msgid "Remove" msgstr "Rimuovi" -#: classes/feeds.php:1090 +#: classes/feeds.php:1093 msgid "Look for" msgstr "Cerca" -#: classes/feeds.php:1098 +#: classes/feeds.php:1101 msgid "Limit search to:" msgstr "Limitare la ricerca a:" -#: classes/feeds.php:1114 +#: classes/feeds.php:1117 msgid "This feed" msgstr "Questo notiziario" @@ -1647,7 +1583,7 @@ msgstr "[tt-rss] Notifica di cambio password" #: classes/pref/filters.php:645 #: classes/pref/filters.php:734 #: classes/pref/filters.php:761 -#: classes/pref/prefs.php:952 +#: classes/pref/prefs.php:998 #: classes/pref/feeds.php:1263 #: classes/pref/feeds.php:1533 #: classes/pref/feeds.php:1603 @@ -2074,219 +2010,224 @@ msgstr "Le password inserite non corrispondono." msgid "Function not supported by authentication module." msgstr "" -#: classes/pref/prefs.php:120 +#: classes/pref/prefs.php:135 msgid "The configuration was saved." msgstr "La configurazione è stata salvata." -#: classes/pref/prefs.php:134 +#: classes/pref/prefs.php:150 #, php-format msgid "Unknown option: %s" msgstr "Opzione sconosciuta: %s" -#: classes/pref/prefs.php:148 +#: classes/pref/prefs.php:164 msgid "Your personal data has been saved." msgstr "I dati personali sono stati salvati." -#: classes/pref/prefs.php:188 +#: classes/pref/prefs.php:204 #, fuzzy msgid "Personal data / Authentication" msgstr "Autenticazione" -#: classes/pref/prefs.php:208 +#: classes/pref/prefs.php:224 msgid "Personal data" msgstr "" -#: classes/pref/prefs.php:218 +#: classes/pref/prefs.php:234 msgid "Full name" msgstr "Nome completo" -#: classes/pref/prefs.php:222 +#: classes/pref/prefs.php:238 msgid "E-mail" msgstr "Email" -#: classes/pref/prefs.php:228 +#: classes/pref/prefs.php:244 msgid "Access level" msgstr "Livello di accesso" -#: classes/pref/prefs.php:238 +#: classes/pref/prefs.php:254 msgid "Save data" msgstr "Salva dati" -#: classes/pref/prefs.php:260 +#: classes/pref/prefs.php:276 msgid "Your password is at default value, please change it." msgstr "La password è impostata al valore predefinito: cambiarla." -#: classes/pref/prefs.php:287 +#: classes/pref/prefs.php:303 msgid "Changing your current password will disable OTP." msgstr "" -#: classes/pref/prefs.php:292 +#: classes/pref/prefs.php:308 msgid "Old password" msgstr "Vecchia password" -#: classes/pref/prefs.php:295 +#: classes/pref/prefs.php:311 msgid "New password" msgstr "Nuova password" -#: classes/pref/prefs.php:300 +#: classes/pref/prefs.php:316 msgid "Confirm password" msgstr "Conferma password" -#: classes/pref/prefs.php:310 +#: classes/pref/prefs.php:326 msgid "Change password" msgstr "Cambia password" -#: classes/pref/prefs.php:316 +#: classes/pref/prefs.php:332 msgid "One time passwords / Authenticator" msgstr "" -#: classes/pref/prefs.php:320 +#: classes/pref/prefs.php:336 msgid "One time passwords are currently enabled. Enter your current password below to disable." msgstr "" -#: classes/pref/prefs.php:345 -#: classes/pref/prefs.php:396 +#: classes/pref/prefs.php:361 +#: classes/pref/prefs.php:412 #, fuzzy msgid "Enter your password" msgstr "Nome utente o password sbagliati" -#: classes/pref/prefs.php:356 +#: classes/pref/prefs.php:372 #, fuzzy msgid "Disable OTP" msgstr "Disabilitare aggiornamenti" -#: classes/pref/prefs.php:362 +#: classes/pref/prefs.php:378 msgid "You will need a compatible Authenticator to use this. Changing your password would automatically disable OTP." msgstr "" -#: classes/pref/prefs.php:364 +#: classes/pref/prefs.php:380 msgid "Scan the following code by the Authenticator application:" msgstr "" -#: classes/pref/prefs.php:405 +#: classes/pref/prefs.php:421 msgid "I have scanned the code and would like to enable OTP" msgstr "" -#: classes/pref/prefs.php:413 +#: classes/pref/prefs.php:429 #, fuzzy msgid "Enable OTP" msgstr "Abilitato" -#: classes/pref/prefs.php:451 +#: classes/pref/prefs.php:475 msgid "Some preferences are only available in default profile." msgstr "" -#: classes/pref/prefs.php:545 +#: classes/pref/prefs.php:585 msgid "Customize" msgstr "Personalizza" -#: classes/pref/prefs.php:605 +#: classes/pref/prefs.php:645 msgid "Register" msgstr "Registro" -#: classes/pref/prefs.php:609 +#: classes/pref/prefs.php:649 msgid "Clear" msgstr "Pulisci" -#: classes/pref/prefs.php:615 +#: classes/pref/prefs.php:655 #, php-format msgid "Current server time: %s (UTC)" msgstr "" -#: classes/pref/prefs.php:648 +#: classes/pref/prefs.php:688 msgid "Save configuration" msgstr "Salva configurazione" -#: classes/pref/prefs.php:651 +#: classes/pref/prefs.php:692 +#, fuzzy +msgid "Save and exit preferences" +msgstr "Esci dalle preferenze" + +#: classes/pref/prefs.php:697 msgid "Manage profiles" msgstr "Gestisci profili" -#: classes/pref/prefs.php:654 +#: classes/pref/prefs.php:700 msgid "Reset to defaults" msgstr "Reimposta ai valori predefiniti" -#: classes/pref/prefs.php:678 -#: classes/pref/prefs.php:680 +#: classes/pref/prefs.php:724 +#: classes/pref/prefs.php:726 msgid "Plugins" msgstr "" -#: classes/pref/prefs.php:682 +#: classes/pref/prefs.php:728 msgid "You will need to reload Tiny Tiny RSS for plugin changes to take effect." msgstr "" -#: classes/pref/prefs.php:684 +#: classes/pref/prefs.php:730 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:710 +#: classes/pref/prefs.php:756 msgid "System plugins" msgstr "" -#: classes/pref/prefs.php:714 -#: classes/pref/prefs.php:768 +#: classes/pref/prefs.php:760 +#: classes/pref/prefs.php:814 msgid "Plugin" msgstr "" -#: classes/pref/prefs.php:715 -#: classes/pref/prefs.php:769 +#: classes/pref/prefs.php:761 +#: classes/pref/prefs.php:815 msgid "Description" msgstr "" -#: classes/pref/prefs.php:716 -#: classes/pref/prefs.php:770 +#: classes/pref/prefs.php:762 +#: classes/pref/prefs.php:816 msgid "Version" msgstr "" -#: classes/pref/prefs.php:717 -#: classes/pref/prefs.php:771 +#: classes/pref/prefs.php:763 +#: classes/pref/prefs.php:817 msgid "Author" msgstr "" -#: classes/pref/prefs.php:746 -#: classes/pref/prefs.php:803 +#: classes/pref/prefs.php:792 +#: classes/pref/prefs.php:849 msgid "more info" msgstr "" -#: classes/pref/prefs.php:755 -#: classes/pref/prefs.php:812 +#: classes/pref/prefs.php:801 +#: classes/pref/prefs.php:858 #, fuzzy msgid "Clear data" msgstr "Pulisci i dati del notiziario" -#: classes/pref/prefs.php:764 +#: classes/pref/prefs.php:810 msgid "User plugins" msgstr "" -#: classes/pref/prefs.php:827 +#: classes/pref/prefs.php:873 #, fuzzy msgid "Enable selected plugins" msgstr "Abilitare le categorie dei notiziari" -#: classes/pref/prefs.php:882 -#: classes/pref/prefs.php:900 +#: classes/pref/prefs.php:928 +#: classes/pref/prefs.php:946 #, fuzzy msgid "Incorrect password" msgstr "Nome utente o password sbagliati" -#: classes/pref/prefs.php:926 +#: classes/pref/prefs.php:972 #, 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:966 +#: classes/pref/prefs.php:1012 msgid "Create profile" msgstr "Crea profilo" -#: classes/pref/prefs.php:989 -#: classes/pref/prefs.php:1019 +#: classes/pref/prefs.php:1035 +#: classes/pref/prefs.php:1065 msgid "(active)" msgstr "(attivo)" -#: classes/pref/prefs.php:1053 +#: classes/pref/prefs.php:1099 msgid "Remove selected profiles" msgstr "Rimuovi i profili selezionati" -#: classes/pref/prefs.php:1055 +#: classes/pref/prefs.php:1101 msgid "Activate profile" msgstr "Attiva profilo" @@ -2811,15 +2752,15 @@ msgstr "" msgid "The document has incorrect format." msgstr "" -#: plugins/googlereaderimport/init.php:326 +#: plugins/googlereaderimport/init.php:328 msgid "Import starred or shared items from Google Reader" msgstr "" -#: plugins/googlereaderimport/init.php:330 +#: plugins/googlereaderimport/init.php:332 msgid "Paste your starred.json or shared.json into the form below." msgstr "" -#: plugins/googlereaderimport/init.php:344 +#: plugins/googlereaderimport/init.php:346 msgid "Import my Starred items" msgstr "" @@ -2918,23 +2859,23 @@ msgstr "Ultimo aggiornamento:" msgid "Start update" msgstr "Ultimo aggiornamento:" -#: js/feedlist.js:392 -#: js/feedlist.js:420 +#: js/feedlist.js:394 +#: js/feedlist.js:422 #: plugins/digest/digest.js:26 msgid "Mark all articles in %s as read?" msgstr "Segnare tutti gli articoli in «%s» come letti?" -#: js/feedlist.js:411 +#: js/feedlist.js:413 #, fuzzy msgid "Mark all articles in %s older than 1 day as read?" msgstr "Segnare tutti gli articoli in «%s» come letti?" -#: js/feedlist.js:414 +#: js/feedlist.js:416 #, fuzzy msgid "Mark all articles in %s older than 1 week as read?" msgstr "Segnare tutti gli articoli in «%s» come letti?" -#: js/feedlist.js:417 +#: js/feedlist.js:419 #, fuzzy msgid "Mark all articles in %s older than 2 weeks as read?" msgstr "Segnare tutti gli articoli in «%s» come letti?" @@ -3488,153 +3429,153 @@ msgstr "Cambio punteggio degli articoli" msgid "New version available!" msgstr "Nuova versione disponibile." -#: js/viewfeed.js:104 +#: js/viewfeed.js:106 #, fuzzy msgid "Cancel search" msgstr "Annulla" -#: js/viewfeed.js:438 +#: js/viewfeed.js:441 #: plugins/digest/digest.js:258 #: plugins/digest/digest.js:714 msgid "Unstar article" msgstr "Togli la stella all'articolo" -#: js/viewfeed.js:443 +#: js/viewfeed.js:446 #: plugins/digest/digest.js:260 #: plugins/digest/digest.js:718 msgid "Star article" msgstr "Metti la stella all'articolo" -#: js/viewfeed.js:476 +#: js/viewfeed.js:479 #: plugins/digest/digest.js:263 #: plugins/digest/digest.js:749 msgid "Unpublish article" msgstr "Non pubblicare articolo" -#: js/viewfeed.js:481 +#: js/viewfeed.js:484 #: plugins/digest/digest.js:265 #: plugins/digest/digest.js:754 msgid "Publish article" msgstr "Pubblica articolo" -#: js/viewfeed.js:677 -#: js/viewfeed.js:705 -#: js/viewfeed.js:732 -#: js/viewfeed.js:795 -#: js/viewfeed.js:829 -#: js/viewfeed.js:949 -#: js/viewfeed.js:992 -#: js/viewfeed.js:1045 -#: js/viewfeed.js:2051 +#: js/viewfeed.js:680 +#: js/viewfeed.js:708 +#: js/viewfeed.js:735 +#: js/viewfeed.js:798 +#: js/viewfeed.js:832 +#: js/viewfeed.js:952 +#: js/viewfeed.js:995 +#: js/viewfeed.js:1048 +#: js/viewfeed.js:2060 #: plugins/mailto/init.js:7 #: plugins/mail/mail.js:7 msgid "No articles are selected." msgstr "Nessun articolo selezionato." -#: js/viewfeed.js:957 +#: js/viewfeed.js:960 #, 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:959 +#: js/viewfeed.js:962 #, 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:1001 +#: js/viewfeed.js:1004 #, 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:1004 +#: js/viewfeed.js:1007 #, 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:1006 +#: js/viewfeed.js:1009 msgid "Please note that unstarred articles might get purged on next feed update." msgstr "" -#: js/viewfeed.js:1051 +#: js/viewfeed.js:1054 #, 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:1075 +#: js/viewfeed.js:1078 msgid "Edit article Tags" msgstr "Modifica etichette articolo" -#: js/viewfeed.js:1081 +#: js/viewfeed.js:1084 #, fuzzy msgid "Saving article tags..." msgstr "Modifica etichette articolo" -#: js/viewfeed.js:1278 +#: js/viewfeed.js:1287 msgid "No article is selected." msgstr "Nessun articolo selezionato." -#: js/viewfeed.js:1313 +#: js/viewfeed.js:1322 msgid "No articles found to mark" msgstr "Nessun articolo trovato da segnare" -#: js/viewfeed.js:1315 +#: js/viewfeed.js:1324 #, 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:1827 +#: js/viewfeed.js:1836 msgid "Open original article" msgstr "Apri articolo di origine" -#: js/viewfeed.js:1833 +#: js/viewfeed.js:1842 #, fuzzy msgid "Display article URL" msgstr "Visualizza URL" -#: js/viewfeed.js:1852 +#: js/viewfeed.js:1861 #, fuzzy msgid "Toggle marked" msgstr "Inverti con stella" -#: js/viewfeed.js:1933 +#: js/viewfeed.js:1942 msgid "Assign label" msgstr "Assegna etichetta" -#: js/viewfeed.js:1938 +#: js/viewfeed.js:1947 msgid "Remove label" msgstr "Rimuovi etichetta" -#: js/viewfeed.js:1962 +#: js/viewfeed.js:1971 msgid "Playing..." msgstr "In riproduzione..." -#: js/viewfeed.js:1963 +#: js/viewfeed.js:1972 msgid "Click to pause" msgstr "Fare clic per mettere in pausa" -#: js/viewfeed.js:2020 +#: js/viewfeed.js:2029 #, fuzzy msgid "Please enter new score for selected articles:" msgstr "Eliminare i %d articoli selezionati?" -#: js/viewfeed.js:2062 +#: js/viewfeed.js:2071 #, fuzzy msgid "Please enter new score for this article:" msgstr "Inserire il titolo della categoria:" -#: js/viewfeed.js:2095 +#: js/viewfeed.js:2104 #, fuzzy msgid "Article URL:" msgstr "Tutti gli articoli" @@ -3745,6 +3686,58 @@ 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 "" +#~ msgid "Could not update database" +#~ msgstr "Impossibile aggiornare il database" + +#~ msgid "Could not find necessary schema file, need version:" +#~ msgstr "Impossibile trovare il file schema necessario; serve la versione:" + +#~ msgid ", found: " +#~ msgstr ", trovato: " + +#~ msgid "Tiny Tiny RSS database is up to date." +#~ msgstr "Il database di Tiny Tiny RSS è aggiornato." + +#~ msgid "Please backup your database before proceeding." +#~ msgstr "Fare il backup del database prima di procedere." + +#~ msgid "Your Tiny Tiny RSS database needs update to the latest version (<b>%d</b> to <b>%d</b>)." +#~ msgstr "Il database di Tiny Tiny RSS deve essere aggiornato all'ultima versione (<b>%d</b> a <b>%d</b>)." + +#~ msgid "Performing updates..." +#~ msgstr "Esecuzione aggiornamenti..." + +#~ msgid "Updating to version %d..." +#~ msgstr "Aggiornamento alla versione %d..." + +#~ msgid "Checking version... " +#~ msgstr "Controllo della versione..." + +#~ msgid "OK!" +#~ msgstr "OK" + +#~ msgid "ERROR!" +#~ msgstr "ERRORE" + +#, fuzzy +#~ 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] "" +#~ "Fine. Eseguito/i <b>%d</b> aggiornamento/i fino\n" +#~ "\t\t\tallo schema versione <b>%d</b>." +#~ msgstr[1] "" +#~ "Fine. Eseguito/i <b>%d</b> aggiornamento/i fino\n" +#~ "\t\t\tallo schema versione <b>%d</b>." + +#~ msgid "Your database schema is from a newer version of Tiny Tiny RSS." +#~ msgstr "Lo schema del database è di una versione più recente di Tiny Tiny RSS." + +#~ msgid "Found schema version: <b>%d</b>, required: <b>%d</b>." +#~ msgstr "Versione dello schema trovata: <b>%d</b>, richiesta: <b>%d</b>." + +#~ msgid "Schema upgrade impossible. Please update Tiny Tiny RSS files to the newer version and continue." +#~ msgstr "Impossibile aggiornare lo schema. Aggiornare i file di Tiny Tiny RSS a una nuova versione e continuare." + #~ msgid "Mark feed as read" #~ msgstr "Segna notiziario come letto" @@ -3758,9 +3751,6 @@ msgstr "" #~ msgid "When this option is enabled, headlines in Special feeds and Labels are grouped by feeds" #~ msgstr "Quando questa opzione è abilitata, i sommari nei notiziari speciali e nelle etichette vengono raggruppati per notiziario" -#~ msgid "Title" -#~ msgstr "Titolo" - #~ msgid "Title or Content" #~ msgstr "Titolo o contenuto" diff --git a/locale/ja_JP/LC_MESSAGES/messages.mo b/locale/ja_JP/LC_MESSAGES/messages.mo Binary files differindex a5366af6c..fdfbc5ba8 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 6e6da7b37..0f62e7064 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-04-04 09:06+0400\n" +"POT-Creation-Date: 2013-04-04 21:31+0400\n" "PO-Revision-Date: 2013-03-25 06:48+0900\n" "Last-Translator: skikuta <kik0220@gmail.com>\n" "Language-Team: \n" @@ -101,101 +101,6 @@ msgstr "パワーユーザー" msgid "Administrator" msgstr "管ç†è€…" -#: db-updater.php:19 -msgid "Your access level is insufficient to run this script." -msgstr "ã“ã®ã‚¹ã‚¯ãƒªãƒ—トを実行ã™ã‚‹ã«ã¯ã‚¢ã‚¯ã‚»ã‚¹ãƒ¬ãƒ™ãƒ«ãŒä¸å分ã§ã™ã€‚" - -#: db-updater.php:44 -msgid "Database Updater" -msgstr "データベースアップデーター" - -#: db-updater.php:87 -msgid "Could not update database" -msgstr "データベースを更新ã§ãã¾ã›ã‚“" - -#: db-updater.php:90 -msgid "Could not find necessary schema file, need version:" -msgstr "å¿…è¦ãªã‚¹ã‚ーマファイルを見ã¤ã‘られã¾ã›ã‚“ã§ã—ãŸã€‚次ã®ãƒãƒ¼ã‚¸ãƒ§ãƒ³ãŒå¿…è¦ã§ã™:" - -#: db-updater.php:91 -msgid ", found: " -msgstr ", 以下ãŒè¦‹ã¤ã‹ã‚Šã¾ã—ãŸ: " - -#: db-updater.php:94 -msgid "Tiny Tiny RSS database is up to date." -msgstr "Tiny Tiny RSS ã®ãƒ‡ãƒ¼ã‚¿ãƒ™ãƒ¼ã‚¹ã‚’æ›´æ–°ã—ã¾ã—ãŸã€‚" - -#: db-updater.php:96 -#: db-updater.php:165 -#: db-updater.php:178 -#: register.php:196 -#: register.php:241 -#: register.php:254 -#: register.php:269 -#: register.php:288 -#: register.php:336 -#: register.php:346 -#: register.php:358 -#: classes/handler/public.php:648 -#: classes/handler/public.php:736 -#: classes/handler/public.php:818 -msgid "Return to Tiny Tiny RSS" -msgstr "Tiny Tiny RSS ã«æˆ»ã‚‹" - -#: db-updater.php:102 -msgid "Please backup your database before proceeding." -msgstr "実行å‰ã«ãƒ‡ãƒ¼ã‚¿ãƒ™ãƒ¼ã‚¹ã®ãƒãƒƒã‚¯ã‚¢ãƒƒãƒ—ã‚’ã—ã¦ãã ã•ã„。" - -#: db-updater.php:104 -#, php-format -msgid "Your Tiny Tiny RSS database needs update to the latest version (<b>%d</b> to <b>%d</b>)." -msgstr "Tiny Tiny RSS ã¯æœ€æ–°ã®ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã«æ›´æ–°ã™ã‚‹å¿…è¦ãŒã‚りã¾ã™ (<b>%d</b> ã‹ã‚‰ <b>%d</b>)。" - -#: db-updater.php:118 -msgid "Perform updates" -msgstr "æ›´æ–°ã®å®Ÿè¡Œ" - -#: db-updater.php:123 -msgid "Performing updates..." -msgstr "更新を実行ã—ã¦ã„ã¾ã™..." - -#: db-updater.php:129 -#, php-format -msgid "Updating to version %d..." -msgstr "ãƒãƒ¼ã‚¸ãƒ§ãƒ³ %d を確èªã—ã¦ã„ã¾ã™..." - -#: db-updater.php:144 -msgid "Checking version... " -msgstr "ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã‚’確èªã—ã¦ã„ã¾ã™..." - -#: db-updater.php:150 -msgid "OK!" -msgstr "OK!" - -#: db-updater.php:152 -msgid "ERROR!" -msgstr "エラー!" - -#: db-updater.php:160 -#, fuzzy, php-format -msgid "Finished. Performed <b>%d</b> update up to schema version <b>%d</b>." -msgid_plural "Finished. Performed <b>%d</b> updates up to schema version <b>%d</b>." -msgstr[0] "完了ã—ã¾ã—ãŸã€‚<b>%d</b> 個ã®ãƒ†ãƒ¼ãƒ–ルをスã‚ーマーãƒãƒ¼ã‚¸ãƒ§ãƒ³<b>%d</b> ã«æ›´æ–°ã—ã¾ã—ãŸã€‚" -msgstr[1] "完了ã—ã¾ã—ãŸã€‚<b>%d</b> 個ã®ãƒ†ãƒ¼ãƒ–ルをスã‚ーマーãƒãƒ¼ã‚¸ãƒ§ãƒ³<b>%d</b> ã«æ›´æ–°ã—ã¾ã—ãŸã€‚" - -#: db-updater.php:170 -msgid "Your database schema is from a newer version of Tiny Tiny RSS." -msgstr "Databaseスã‚ーマã¯ã€Tiny Tiny RSSã®æ–°ã—ã„ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã‹ã‚‰ã®ã‚‚ã®ã§ã™ã€‚" - -#: db-updater.php:172 -#, php-format -msgid "Found schema version: <b>%d</b>, required: <b>%d</b>." -msgstr "スã‚ーマãƒãƒ¼ã‚¸ãƒ§ãƒ³ãŒ: <b>%d</b>, ã§ã—ãŸã€‚ 以下ãŒå¿…è¦ã§ã™: <b>%d</b>." - -#: db-updater.php:174 -msgid "Schema upgrade impossible. Please update Tiny Tiny RSS files to the newer version and continue." -msgstr "スã‚ーマアップグレードãŒã§ãã¾ã›ã‚“。Tiny Tiny RSSã‚’æ–°ã—ã„ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã«æ›´æ–°ã—ã¦ã‹ã‚‰ç¶šã‘ã¦ãã ã•ã„。" - #: errors.php:9 msgid "This program requires XmlHttpRequest to function properly. Your browser doesn't seem to support it." msgstr "ã“ã®ãƒ—ãƒã‚°ãƒ©ãƒ 㯠XmlHttpRequest ãŒæ£ã—ãæ©Ÿèƒ½ã™ã‚‹ã“ã¨ã‚’è¦æ±‚ã—ã¾ã™ã€‚ã‚ãªãŸã®ãƒ–ラウザーã¯ãれをサãƒãƒ¼ãƒˆã—ã¦ã„ãªã„よã†ã«è¦‹ãˆã¾ã™ã€‚" @@ -249,7 +154,7 @@ msgstr "SQLã®ã‚¨ã‚¹ã‚±ãƒ¼ãƒ—処ç†ã®ãƒ†ã‚¹ãƒˆã«å¤±æ•—ã—ã¾ã—ãŸã€‚データ #: index.php:135 #: index.php:152 -#: index.php:276 +#: index.php:277 #: prefs.php:103 #: classes/backend.php:5 #: classes/pref/labels.php:296 @@ -257,7 +162,7 @@ msgstr "SQLã®ã‚¨ã‚¹ã‚±ãƒ¼ãƒ—処ç†ã®ãƒ†ã‚¹ãƒˆã«å¤±æ•—ã—ã¾ã—ãŸã€‚データ #: classes/pref/feeds.php:1331 #: plugins/digest/digest_body.php:63 #: js/feedlist.js:128 -#: js/feedlist.js:436 +#: js/feedlist.js:438 #: js/functions.js:420 #: js/functions.js:758 #: js/functions.js:1194 @@ -278,8 +183,8 @@ msgstr "SQLã®ã‚¨ã‚¹ã‚±ãƒ¼ãƒ—処ç†ã®ãƒ†ã‚¹ãƒˆã«å¤±æ•—ã—ã¾ã—ãŸã€‚データ #: js/prefs.js:1814 #: js/tt-rss.js:475 #: js/tt-rss.js:492 -#: js/viewfeed.js:772 -#: js/viewfeed.js:1200 +#: js/viewfeed.js:775 +#: js/viewfeed.js:1201 #: plugins/import_export/import_export.js:17 #: plugins/updater/updater.js:17 msgid "Loading, please wait..." @@ -303,13 +208,13 @@ msgid "All Articles" msgstr "ã™ã¹ã¦ã®è¨˜äº‹" #: index.php:174 -#: include/functions.php:1953 +#: include/functions.php:1955 #: classes/feeds.php:106 msgid "Starred" msgstr "ãŠæ°—ã«å…¥ã‚Š" #: index.php:175 -#: include/functions.php:1954 +#: include/functions.php:1956 #: classes/feeds.php:107 msgid "Published" msgstr "公開済ã¿" @@ -350,9 +255,13 @@ msgstr "" msgid "Oldest first" msgstr "" -#: index.php:191 -#: index.php:240 -#: include/functions.php:1943 +#: index.php:188 +msgid "Title" +msgstr "題å" + +#: index.php:192 +#: index.php:241 +#: include/functions.php:1945 #: classes/feeds.php:111 #: classes/feeds.php:441 #: js/FeedTree.js:128 @@ -361,108 +270,108 @@ msgstr "" msgid "Mark as read" msgstr "æ—¢èªã«ã™ã‚‹" -#: index.php:194 +#: index.php:195 msgid "Older than one day" msgstr "" -#: index.php:197 +#: index.php:198 msgid "Older than one week" msgstr "" -#: index.php:200 +#: index.php:201 msgid "Older than two weeks" msgstr "" -#: index.php:217 +#: index.php:218 msgid "Communication problem with server." msgstr "サーãƒãƒ¼ã¨ã®é€šä¿¡ã«å•題ãŒç™ºç”Ÿã—ã¾ã—ãŸã€‚" -#: index.php:225 +#: index.php:226 msgid "New version of Tiny Tiny RSS is available!" msgstr "Tiny Tiny RSS ã®æ–°ã—ã„ãƒãƒ¼ã‚¸ãƒ§ãƒ³ãŒåˆ©ç”¨ã§ãã¾ã™!" -#: index.php:230 +#: index.php:231 msgid "Actions..." msgstr "æ“作..." -#: index.php:232 +#: index.php:233 #, fuzzy msgid "Preferences..." msgstr "è¨å®š" -#: index.php:233 +#: index.php:234 msgid "Search..." msgstr "検索..." -#: index.php:234 +#: index.php:235 msgid "Feed actions:" msgstr "フィードæ“作" -#: index.php:235 +#: index.php:236 #: classes/handler/public.php:578 msgid "Subscribe to feed..." msgstr "フィードを購èªã™ã‚‹..." -#: index.php:236 +#: index.php:237 msgid "Edit this feed..." msgstr "フィードを編集ã™ã‚‹..." -#: index.php:237 +#: index.php:238 msgid "Rescore feed" msgstr "フィードã®ã‚¹ã‚³ã‚¢ã‚’å†è¨ˆç®—ã—ã¦ã„ã¾ã™..." -#: index.php:238 +#: index.php:239 #: classes/pref/feeds.php:717 #: classes/pref/feeds.php:1283 #: js/PrefFeedTree.js:73 msgid "Unsubscribe" msgstr "è³¼èªã‚’ã‚„ã‚ã‚‹" -#: index.php:239 +#: index.php:240 msgid "All feeds:" msgstr "ã™ã¹ã¦ã®ãƒ•ィード:" -#: index.php:241 +#: index.php:242 msgid "(Un)hide read feeds" msgstr "èªã‚“ã ãƒ•ã‚£ãƒ¼ãƒ‰ã‚’éš ã™/å†è¡¨ç¤ºã™ã‚‹" -#: index.php:242 +#: index.php:243 msgid "Other actions:" msgstr "ãã®ä»–ã®æ“作:" -#: index.php:244 +#: index.php:245 msgid "Switch to digest..." msgstr "ダイジェストã«ç§»è¡Œ..." -#: index.php:246 +#: index.php:247 #, fuzzy msgid "Show tag cloud..." msgstr "タグクラウド" -#: index.php:247 -#: include/functions.php:1929 +#: index.php:248 +#: include/functions.php:1931 #, fuzzy msgid "Toggle widescreen mode" msgstr "カテゴリーã®ä¸¦ã³æ›¿ãˆãƒ¢ãƒ¼ãƒ‰ã®åˆ‡ã‚Šæ›¿ãˆ" -#: index.php:248 +#: index.php:249 msgid "Select by tags..." msgstr "ã‚¿ã‚°ã§é¸æŠž..." -#: index.php:249 +#: index.php:250 msgid "Create label..." msgstr "ラベルを作æˆã™ã‚‹..." -#: index.php:250 +#: index.php:251 msgid "Create filter..." msgstr "フィルターを作æˆã—ã¦ã„ã¾ã™..." -#: index.php:251 +#: index.php:252 #, fuzzy msgid "Keyboard shortcuts help" msgstr "ã‚ーボードショートカット" -#: index.php:260 +#: index.php:261 #: plugins/digest/digest_body.php:77 #: plugins/mobile/mobile-functions.php:62 #: plugins/mobile/mobile-functions.php:237 @@ -471,8 +380,8 @@ msgstr "ãƒã‚°ã‚¢ã‚¦ãƒˆ" #: prefs.php:36 #: prefs.php:121 -#: include/functions.php:1956 -#: classes/pref/prefs.php:428 +#: include/functions.php:1958 +#: classes/pref/prefs.php:444 msgid "Preferences" msgstr "è¨å®š" @@ -497,8 +406,8 @@ msgid "Filters" msgstr "フィルター" #: prefs.php:130 -#: include/functions.php:1146 -#: include/functions.php:1782 +#: include/functions.php:1148 +#: include/functions.php:1784 #: classes/pref/labels.php:90 #: plugins/mobile/mobile-functions.php:198 msgid "Labels" @@ -517,6 +426,24 @@ msgstr "æ–°è¦ã‚¢ã‚«ã‚¦ãƒ³ãƒˆã®ä½œæˆ" msgid "New user registrations are administratively disabled." msgstr "æ–°è¦ãƒ¦ãƒ¼ã‚¶ãƒ¼ã®ç™»éŒ²ã¯ç®¡ç†è€…ã«ã‚ˆã£ã¦ç„¡åйã«ãªã£ã¦ã„ã¾ã™ã€‚" +#: 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:648 +#: classes/handler/public.php:736 +#: classes/handler/public.php:818 +#: classes/handler/public.php:893 +#: classes/handler/public.php:907 +#: classes/handler/public.php:914 +#: classes/handler/public.php:939 +msgid "Return to Tiny Tiny RSS" +msgstr "Tiny Tiny RSS ã«æˆ»ã‚‹" + #: 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 "一時的ãªãƒ‘スワードをメールã§é€ã‚Šã¾ã—ãŸã€‚ã“ã®ã‚¢ã‚«ã‚¦ãƒ³ãƒˆï¼ˆä¸€åº¦ã ã‘ãƒã‚°ã‚¤ãƒ³å‡ºæ¥ã¾ã™ã€‚)ã¯24時間後ã«å‰Šé™¤ã•れã¾ã™ã€‚" @@ -563,16 +490,16 @@ msgstr "アカウントã®ä½œæˆã«æˆåŠŸã—ã¾ã—ãŸã€‚" msgid "New user registrations are currently closed." msgstr "æ–°è¦ãƒ¦ãƒ¼ã‚¶ãƒ¼ã®ç™»éŒ²ã¯ç¾åœ¨è¡Œã£ã¦ã„ã¾ã›ã‚“。" -#: update.php:55 +#: update.php:56 #, fuzzy msgid "Tiny Tiny RSS data update script." msgstr "Tiny Tiny RSS ã®ãƒ‡ãƒ¼ã‚¿ãƒ™ãƒ¼ã‚¹ã‚’æ›´æ–°ã—ã¾ã—ãŸã€‚" #: include/digest.php:109 -#: include/functions.php:1155 -#: include/functions.php:1683 -#: include/functions.php:1768 -#: include/functions.php:1790 +#: include/functions.php:1157 +#: include/functions.php:1685 +#: include/functions.php:1770 +#: include/functions.php:1792 #: classes/opml.php:416 #: classes/pref/feeds.php:222 msgid "Uncategorized" @@ -589,337 +516,337 @@ msgstr[1] "ãŠæ°—ã«å…¥ã‚Šã®è¨˜äº‹" msgid "No feeds found." msgstr "フィードãŒã‚りã¾ã›ã‚“。" -#: include/functions.php:1144 -#: include/functions.php:1780 +#: include/functions.php:1146 +#: include/functions.php:1782 #: plugins/mobile/mobile-functions.php:171 msgid "Special" msgstr "特別" -#: include/functions.php:1632 -#: classes/feeds.php:1101 +#: include/functions.php:1634 +#: classes/feeds.php:1104 #: classes/pref/filters.php:427 msgid "All feeds" msgstr "ã™ã¹ã¦ã®ãƒ•ィード" -#: include/functions.php:1833 +#: include/functions.php:1835 msgid "Starred articles" msgstr "ãŠæ°—ã«å…¥ã‚Šã®è¨˜äº‹" -#: include/functions.php:1835 +#: include/functions.php:1837 msgid "Published articles" msgstr "公開済ã¿ã®è¨˜äº‹" -#: include/functions.php:1837 +#: include/functions.php:1839 msgid "Fresh articles" msgstr "æ–°ã—ã„記事" -#: include/functions.php:1839 -#: include/functions.php:1951 +#: include/functions.php:1841 +#: include/functions.php:1953 msgid "All articles" msgstr "ã™ã¹ã¦ã®è¨˜äº‹" -#: include/functions.php:1841 +#: include/functions.php:1843 #, fuzzy msgid "Archived articles" msgstr "未èªè¨˜äº‹" -#: include/functions.php:1843 +#: include/functions.php:1845 msgid "Recently read" msgstr "最近èªã‚“ã " -#: include/functions.php:1906 +#: include/functions.php:1908 msgid "Navigation" msgstr "ナビゲーション" -#: include/functions.php:1907 +#: include/functions.php:1909 #, fuzzy msgid "Open next feed" msgstr "次ã®ãƒ•ィードを開ã" -#: include/functions.php:1908 +#: include/functions.php:1910 msgid "Open previous feed" msgstr "å‰ã®ãƒ•ィードを開ã" -#: include/functions.php:1909 +#: include/functions.php:1911 #, fuzzy msgid "Open next article" msgstr "次ã®è¨˜äº‹ã‚’é–‹ã" -#: include/functions.php:1910 +#: include/functions.php:1912 #, fuzzy msgid "Open previous article" msgstr "å‰ã®è¨˜äº‹ã‚’é–‹ã" -#: include/functions.php:1911 +#: include/functions.php:1913 msgid "Open next article (don't scroll long articles)" msgstr "次ã®è¨˜äº‹ã‚’é–‹ã(スクãƒãƒ¼ãƒ«ã—ãªã„)" -#: include/functions.php:1912 +#: include/functions.php:1914 msgid "Open previous article (don't scroll long articles)" msgstr "å‰ã®è¨˜äº‹ã‚’é–‹ã(スクãƒãƒ¼ãƒ«ã—ãªã„)" -#: include/functions.php:1913 +#: include/functions.php:1915 msgid "Show search dialog" msgstr "検索ダイアãƒã‚°ã‚’表示ã™ã‚‹" -#: include/functions.php:1914 +#: include/functions.php:1916 #, fuzzy msgid "Article" msgstr "ã™ã¹ã¦ã®è¨˜äº‹" -#: include/functions.php:1915 +#: include/functions.php:1917 msgid "Toggle starred" msgstr "ãŠæ°—ã«å…¥ã‚Šã‚’切り替ãˆã‚‹" -#: include/functions.php:1916 -#: js/viewfeed.js:1863 +#: include/functions.php:1918 +#: js/viewfeed.js:1872 msgid "Toggle published" msgstr "公開を切り替ãˆã‚‹" -#: include/functions.php:1917 -#: js/viewfeed.js:1841 +#: include/functions.php:1919 +#: js/viewfeed.js:1850 msgid "Toggle unread" msgstr "未èªã«åˆ‡ã‚Šæ›¿ãˆã‚‹" -#: include/functions.php:1918 +#: include/functions.php:1920 msgid "Edit tags" msgstr "タグを編集ã™ã‚‹" -#: include/functions.php:1919 +#: include/functions.php:1921 #, fuzzy msgid "Dismiss selected" msgstr "ラベルã‹ã‚‰é¸æŠžã—ãŸè¨˜äº‹ã‚’削除ã—ã¾ã™ã‹?" -#: include/functions.php:1920 +#: include/functions.php:1922 #, fuzzy msgid "Dismiss read" msgstr "公開記事" -#: include/functions.php:1921 +#: include/functions.php:1923 #, fuzzy msgid "Open in new window" msgstr "æ–°ã—ã„ウィンドウã§è¨˜äº‹ã‚’é–‹ã" -#: include/functions.php:1922 -#: js/viewfeed.js:1882 +#: include/functions.php:1924 +#: js/viewfeed.js:1891 #, fuzzy msgid "Mark below as read" msgstr "æ—¢èªã«ã™ã‚‹" -#: include/functions.php:1923 -#: js/viewfeed.js:1876 +#: include/functions.php:1925 +#: js/viewfeed.js:1885 #, fuzzy msgid "Mark above as read" msgstr "æ—¢èªã«ã™ã‚‹" -#: include/functions.php:1924 +#: include/functions.php:1926 #, fuzzy msgid "Scroll down" msgstr "下ã«ã‚¹ã‚¯ãƒãƒ¼ãƒ«" -#: include/functions.php:1925 +#: include/functions.php:1927 msgid "Scroll up" msgstr "上ã«ã‚¹ã‚¯ãƒãƒ¼ãƒ«" -#: include/functions.php:1926 +#: include/functions.php:1928 #, fuzzy msgid "Select article under cursor" msgstr "マウスカーソルã®ä¸‹ã®è¨˜äº‹ã‚’é¸æŠžã™ã‚‹" -#: include/functions.php:1927 +#: include/functions.php:1929 #, fuzzy msgid "Email article" msgstr "ã™ã¹ã¦ã®è¨˜äº‹" -#: include/functions.php:1928 +#: include/functions.php:1930 #, fuzzy msgid "Close/collapse article" msgstr "記事を消去ã™ã‚‹" -#: include/functions.php:1930 +#: include/functions.php:1932 #: plugins/embed_original/init.php:33 #, fuzzy msgid "Toggle embed original" msgstr "カテゴリーã®ä¸¦ã³æ›¿ãˆãƒ¢ãƒ¼ãƒ‰ã®åˆ‡ã‚Šæ›¿ãˆ" -#: include/functions.php:1931 +#: include/functions.php:1933 #, fuzzy msgid "Article selection" msgstr "有効ãªè¨˜äº‹ã®æ“作" -#: include/functions.php:1932 +#: include/functions.php:1934 #, fuzzy msgid "Select all articles" msgstr "記事を消去ã™ã‚‹" -#: include/functions.php:1933 +#: include/functions.php:1935 #, fuzzy msgid "Select unread" msgstr "未èªè¨˜äº‹ã‚’削除ã™ã‚‹" -#: include/functions.php:1934 +#: include/functions.php:1936 #, fuzzy msgid "Select starred" msgstr "ãŠæ°—ã«å…¥ã‚Šã«è¨å®šã™ã‚‹" -#: include/functions.php:1935 +#: include/functions.php:1937 #, fuzzy msgid "Select published" msgstr "未èªè¨˜äº‹ã‚’削除ã™ã‚‹" -#: include/functions.php:1936 +#: include/functions.php:1938 #, fuzzy msgid "Invert selection" msgstr "有効ãªè¨˜äº‹ã®æ“作" -#: include/functions.php:1937 +#: include/functions.php:1939 #, fuzzy msgid "Deselect everything" msgstr "記事を消去ã™ã‚‹" -#: include/functions.php:1938 +#: include/functions.php:1940 #: classes/pref/feeds.php:521 #: classes/pref/feeds.php:754 msgid "Feed" msgstr "フィード" -#: include/functions.php:1939 +#: include/functions.php:1941 #, fuzzy msgid "Refresh current feed" msgstr "有効ãªãƒ•ã‚£ãƒ¼ãƒ‰ã®æ›´æ–°" -#: include/functions.php:1940 +#: include/functions.php:1942 #, fuzzy msgid "Un/hide read feeds" msgstr "èªã‚“ã ãƒ•ã‚£ãƒ¼ãƒ‰ã‚’éš ã™/å†è¡¨ç¤ºã™ã‚‹" -#: include/functions.php:1941 +#: include/functions.php:1943 #: classes/pref/feeds.php:1275 msgid "Subscribe to feed" msgstr "フィードを購èªã™ã‚‹" -#: include/functions.php:1942 +#: include/functions.php:1944 #: js/FeedTree.js:135 #: js/PrefFeedTree.js:67 msgid "Edit feed" msgstr "フィードを編集ã™ã‚‹" -#: include/functions.php:1944 +#: include/functions.php:1946 #, fuzzy msgid "Reverse headlines" msgstr "ヘッドラインã®é€†é † (å¤ã„ã‚‚ã®ãŒä¸Š)" -#: include/functions.php:1945 +#: include/functions.php:1947 #, fuzzy msgid "Debug feed update" msgstr "ã™ã¹ã¦ã®ãƒ•ィードを更新ã—ã¾ã—ãŸã€‚" -#: include/functions.php:1946 +#: include/functions.php:1948 #: js/FeedTree.js:178 msgid "Mark all feeds as read" msgstr "ã™ã¹ã¦ã®ãƒ•ィードを既èªã«è¨å®šã™ã‚‹" -#: include/functions.php:1947 +#: include/functions.php:1949 #, fuzzy msgid "Un/collapse current category" msgstr "カテゴリーã®é–‹é–‰" -#: include/functions.php:1948 +#: include/functions.php:1950 #, fuzzy msgid "Toggle combined mode" msgstr "カテゴリーã®ä¸¦ã³æ›¿ãˆãƒ¢ãƒ¼ãƒ‰ã®åˆ‡ã‚Šæ›¿ãˆ" -#: include/functions.php:1949 +#: include/functions.php:1951 #, fuzzy msgid "Toggle auto expand in combined mode" msgstr "カテゴリーã®ä¸¦ã³æ›¿ãˆãƒ¢ãƒ¼ãƒ‰ã®åˆ‡ã‚Šæ›¿ãˆ" -#: include/functions.php:1950 +#: include/functions.php:1952 #, fuzzy msgid "Go to" msgstr "移動..." -#: include/functions.php:1952 +#: include/functions.php:1954 #, fuzzy msgid "Fresh" msgstr "å†æç”»" -#: include/functions.php:1955 +#: include/functions.php:1957 #: js/tt-rss.js:431 #: js/tt-rss.js:584 msgid "Tag cloud" msgstr "タグクラウド" -#: include/functions.php:1957 +#: include/functions.php:1959 #, fuzzy msgid "Other" msgstr "ãã®ä»–:" -#: include/functions.php:1958 +#: include/functions.php:1960 #: classes/pref/labels.php:281 msgid "Create label" msgstr "ラベルを作æˆã™ã‚‹" -#: include/functions.php:1959 +#: include/functions.php:1961 #: classes/pref/filters.php:654 msgid "Create filter" msgstr "フィルターを作æˆã™ã‚‹" -#: include/functions.php:1960 +#: include/functions.php:1962 #, fuzzy msgid "Un/collapse sidebar" msgstr "サイドãƒãƒ¼ã‚’縮å°ã™ã‚‹" -#: include/functions.php:1961 +#: include/functions.php:1963 #, fuzzy msgid "Show help dialog" msgstr "検索ダイアãƒã‚°ã‚’表示ã™ã‚‹" -#: include/functions.php:2446 +#: include/functions.php:2471 #, fuzzy, php-format msgid "Search results: %s" msgstr "æ¤œç´¢çµæžœ" -#: include/functions.php:2937 -#: js/viewfeed.js:1969 +#: include/functions.php:2962 +#: js/viewfeed.js:1978 #, fuzzy msgid "Click to play" msgstr "クリックã§è¡¨ç¤º" -#: include/functions.php:2938 -#: js/viewfeed.js:1968 +#: include/functions.php:2963 +#: js/viewfeed.js:1977 msgid "Play" msgstr "表示" -#: include/functions.php:3055 +#: include/functions.php:3080 msgid " - " msgstr " - " -#: include/functions.php:3077 -#: include/functions.php:3371 +#: include/functions.php:3102 +#: include/functions.php:3396 #: classes/article.php:281 msgid "no tags" msgstr "ã‚¿ã‚°ãŒã‚りã¾ã›ã‚“" -#: include/functions.php:3087 +#: include/functions.php:3112 #: classes/feeds.php:686 msgid "Edit tags for this article" msgstr "ã“ã®è¨˜äº‹ã®ã‚¿ã‚°ã‚’編集ã™ã‚‹" -#: include/functions.php:3116 +#: include/functions.php:3141 #: classes/feeds.php:642 #, fuzzy msgid "Originally from:" msgstr "å…ƒã®è¨˜äº‹å†…容を表示ã™ã‚‹" -#: include/functions.php:3129 +#: include/functions.php:3154 #: classes/feeds.php:655 #: classes/pref/feeds.php:540 #, fuzzy msgid "Feed URL" msgstr "フィード" -#: include/functions.php:3160 +#: include/functions.php:3185 #: classes/dlg.php:37 #: classes/dlg.php:60 #: classes/dlg.php:93 @@ -931,7 +858,7 @@ msgstr "フィード" #: classes/backend.php:105 #: classes/pref/users.php:99 #: classes/pref/filters.php:147 -#: classes/pref/prefs.php:1059 +#: classes/pref/prefs.php:1105 #: classes/pref/feeds.php:1588 #: classes/pref/feeds.php:1660 #: plugins/import_export/init.php:406 @@ -942,16 +869,16 @@ msgstr "フィード" msgid "Close this window" msgstr "ã“ã®ã‚¦ã‚£ãƒ³ãƒ‰ã‚¦ã‚’é–‰ã˜ã‚‹" -#: include/functions.php:3396 +#: include/functions.php:3421 #, fuzzy msgid "(edit note)" msgstr "ノートã®ç·¨é›†" -#: include/functions.php:3631 +#: include/functions.php:3656 msgid "unknown type" msgstr "未知ã®ç¨®é¡ž" -#: include/functions.php:3687 +#: include/functions.php:3712 #, fuzzy msgid "Attachments" msgstr "添付:" @@ -976,6 +903,7 @@ msgstr "ユーザーåã‹ãƒ‘ã‚¹ãƒ¯ãƒ¼ãƒ‰ãŒæ£ã—ãã‚りã¾ã›ã‚“" #: include/login_form.php:201 #: classes/handler/public.php:489 +#: classes/pref/prefs.php:552 msgid "Language:" msgstr "言語:" @@ -987,7 +915,7 @@ msgstr "ファイル:" #: include/login_form.php:213 #: classes/handler/public.php:233 #: classes/rpc.php:64 -#: classes/pref/prefs.php:995 +#: classes/pref/prefs.php:1041 #, fuzzy msgid "Default profile" msgstr "標準ã®è¨˜äº‹åˆ¶é™" @@ -1006,7 +934,7 @@ msgstr "" msgid "Log in" msgstr "ãƒã‚°ã‚¤ãƒ³" -#: include/sessions.php:58 +#: include/sessions.php:62 msgid "Session failed to validate (incorrect IP)" msgstr "ã‚»ãƒƒã‚·ãƒ§ãƒ³ã®æ¤œæŸ»ã«å¤±æ•—ã—ã¾ã—㟠(IP ãŒæ£ã—ããªã„)" @@ -1023,7 +951,7 @@ msgstr "ã“ã®è¨˜äº‹ã®ã‚¿ã‚° (カンマã§åŒºåˆ‡ã‚Šã¾ã™):" #: classes/pref/users.php:176 #: classes/pref/labels.php:79 #: classes/pref/filters.php:405 -#: classes/pref/prefs.php:941 +#: classes/pref/prefs.php:987 #: classes/pref/feeds.php:733 #: classes/pref/feeds.php:881 #: plugins/nsfw/init.php:86 @@ -1035,16 +963,16 @@ msgstr "ä¿å˜" #: classes/article.php:206 #: classes/handler/public.php:460 #: classes/handler/public.php:502 -#: classes/feeds.php:1028 -#: classes/feeds.php:1080 -#: classes/feeds.php:1140 +#: classes/feeds.php:1031 +#: classes/feeds.php:1083 +#: classes/feeds.php:1143 #: 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:943 +#: classes/pref/prefs.php:989 #: classes/pref/feeds.php:734 #: classes/pref/feeds.php:884 #: classes/pref/feeds.php:1797 @@ -1176,6 +1104,18 @@ msgstr "戻る" msgid "Sorry, login and email combination not found." msgstr "ãƒã‚°ã‚¤ãƒ³åã¨ãƒ¡ãƒ¼ãƒ«ã‚¢ãƒ‰ãƒ¬ã‚¹ã®çµ„ã¿åˆã‚ã›ãŒçµ„ã¿åˆã‚ã›ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“ã§ã—ãŸ" +#: classes/handler/public.php:842 +msgid "Your access level is insufficient to run this script." +msgstr "ã“ã®ã‚¹ã‚¯ãƒªãƒ—トを実行ã™ã‚‹ã«ã¯ã‚¢ã‚¯ã‚»ã‚¹ãƒ¬ãƒ™ãƒ«ãŒä¸å分ã§ã™ã€‚" + +#: classes/handler/public.php:866 +msgid "Database Updater" +msgstr "データベースアップデーター" + +#: classes/handler/public.php:931 +msgid "Perform updates" +msgstr "æ›´æ–°ã®å®Ÿè¡Œ" + #: 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 "" @@ -1283,7 +1223,7 @@ msgstr "é¸æŠž:" #: classes/pref/filters.php:648 #: classes/pref/filters.php:737 #: classes/pref/filters.php:764 -#: classes/pref/prefs.php:955 +#: classes/pref/prefs.php:1001 #: classes/pref/feeds.php:1266 #: classes/pref/feeds.php:1536 #: classes/pref/feeds.php:1606 @@ -1303,7 +1243,7 @@ msgstr "å転" #: classes/pref/filters.php:650 #: classes/pref/filters.php:739 #: classes/pref/filters.php:766 -#: classes/pref/prefs.php:957 +#: classes/pref/prefs.php:1003 #: classes/pref/feeds.php:1268 #: classes/pref/feeds.php:1538 #: classes/pref/feeds.php:1608 @@ -1401,46 +1341,46 @@ msgid "No articles found to display." msgstr "表示ã™ã‚‹è¨˜äº‹ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“。" #: classes/feeds.php:759 -#: classes/feeds.php:923 +#: classes/feeds.php:926 #, php-format msgid "Feeds last updated at %s" msgstr "" #: classes/feeds.php:769 -#: classes/feeds.php:933 +#: classes/feeds.php:936 msgid "Some feeds have update errors (click for details)" msgstr "ã„ãã¤ã‹ã®ãƒ•ã‚£ãƒ¼ãƒ‰ã®æ›´æ–°ã‚¨ãƒ©ãƒ¼ã§ã™ (詳細ã¯ã‚¯ãƒªãƒƒã‚¯ã—ã¦ãã ã•ã„)" -#: classes/feeds.php:913 +#: classes/feeds.php:916 msgid "No feed selected." msgstr "フィードã¯é¸æŠžã•れã¦ã„ã¾ã›ã‚“。" -#: classes/feeds.php:966 -#: classes/feeds.php:974 +#: classes/feeds.php:969 +#: classes/feeds.php:977 #, fuzzy msgid "Feed or site URL" msgstr "フィード" -#: classes/feeds.php:980 +#: classes/feeds.php:983 #: classes/pref/feeds.php:560 #: classes/pref/feeds.php:782 #: classes/pref/feeds.php:1761 msgid "Place in category:" msgstr "カテゴリーã®å ´æ‰€:" -#: classes/feeds.php:988 +#: classes/feeds.php:991 #, fuzzy msgid "Available feeds" msgstr "ã™ã¹ã¦ã®ãƒ•ィード" -#: classes/feeds.php:1000 +#: classes/feeds.php:1003 #: classes/pref/users.php:139 #: classes/pref/feeds.php:590 #: classes/pref/feeds.php:818 msgid "Authentication" msgstr "èªè¨¼" -#: classes/feeds.php:1004 +#: classes/feeds.php:1007 #: classes/pref/users.php:402 #: classes/pref/feeds.php:596 #: classes/pref/feeds.php:822 @@ -1448,8 +1388,8 @@ msgstr "èªè¨¼" msgid "Login" msgstr "ãƒã‚°ã‚¤ãƒ³" -#: classes/feeds.php:1007 -#: classes/pref/prefs.php:253 +#: classes/feeds.php:1010 +#: classes/pref/prefs.php:269 #: classes/pref/feeds.php:602 #: classes/pref/feeds.php:828 #: classes/pref/feeds.php:1778 @@ -1457,23 +1397,23 @@ msgstr "ãƒã‚°ã‚¤ãƒ³" msgid "Password" msgstr "パスワード:" -#: classes/feeds.php:1017 +#: classes/feeds.php:1020 msgid "This feed requires authentication." msgstr "ã“ã®ãƒ•ィードã¯èªè¨¼ã‚’è¦æ±‚ã—ã¾ã™ã€‚" -#: classes/feeds.php:1022 -#: classes/feeds.php:1078 +#: classes/feeds.php:1025 +#: classes/feeds.php:1081 #: classes/pref/feeds.php:1796 msgid "Subscribe" msgstr "è³¼èª" -#: classes/feeds.php:1025 +#: classes/feeds.php:1028 #, fuzzy msgid "More feeds" msgstr "ã•らãªã‚‹ãƒ•ィード" -#: classes/feeds.php:1048 -#: classes/feeds.php:1139 +#: classes/feeds.php:1051 +#: classes/feeds.php:1142 #: classes/pref/users.php:332 #: classes/pref/filters.php:641 #: classes/pref/feeds.php:1259 @@ -1481,22 +1421,22 @@ msgstr "ã•らãªã‚‹ãƒ•ィード" msgid "Search" msgstr "検索" -#: classes/feeds.php:1052 +#: classes/feeds.php:1055 #, fuzzy msgid "Popular feeds" msgstr "フィードã®è¡¨ç¤º" -#: classes/feeds.php:1053 +#: classes/feeds.php:1056 #, fuzzy msgid "Feed archive" msgstr "フィードæ“作" -#: classes/feeds.php:1056 +#: classes/feeds.php:1059 #, fuzzy msgid "limit:" msgstr "制é™:" -#: classes/feeds.php:1079 +#: classes/feeds.php:1082 #: classes/pref/users.php:358 #: classes/pref/labels.php:284 #: classes/pref/filters.php:398 @@ -1506,15 +1446,15 @@ msgstr "制é™:" msgid "Remove" msgstr "削除" -#: classes/feeds.php:1090 +#: classes/feeds.php:1093 msgid "Look for" msgstr "" -#: classes/feeds.php:1098 +#: classes/feeds.php:1101 msgid "Limit search to:" msgstr "対象範囲" -#: classes/feeds.php:1114 +#: classes/feeds.php:1117 msgid "This feed" msgstr "ã“ã®ãƒ•ィード" @@ -1680,7 +1620,7 @@ msgstr "[tt-rss] パスワード変更通知" #: classes/pref/filters.php:645 #: classes/pref/filters.php:734 #: classes/pref/filters.php:761 -#: classes/pref/prefs.php:952 +#: classes/pref/prefs.php:998 #: classes/pref/feeds.php:1263 #: classes/pref/feeds.php:1533 #: classes/pref/feeds.php:1603 @@ -2119,230 +2059,235 @@ msgstr "パスワードãŒä¸€è‡´ã—ã¾ã›ã‚“。" msgid "Function not supported by authentication module." msgstr "" -#: classes/pref/prefs.php:120 +#: classes/pref/prefs.php:135 msgid "The configuration was saved." msgstr "è¨å®šã‚’ä¿å˜ã—ã¾ã—ãŸã€‚" -#: classes/pref/prefs.php:134 +#: classes/pref/prefs.php:150 #, php-format msgid "Unknown option: %s" msgstr "䏿˜Žãªã‚ªãƒ—ション: %s" -#: classes/pref/prefs.php:148 +#: classes/pref/prefs.php:164 #, fuzzy msgid "Your personal data has been saved." msgstr "パスワードを変更ã—ã¾ã—ãŸã€‚" -#: classes/pref/prefs.php:188 +#: classes/pref/prefs.php:204 #, fuzzy msgid "Personal data / Authentication" msgstr "èªè¨¼" -#: classes/pref/prefs.php:208 +#: classes/pref/prefs.php:224 msgid "Personal data" msgstr "個人データ" -#: classes/pref/prefs.php:218 +#: classes/pref/prefs.php:234 msgid "Full name" msgstr "" -#: classes/pref/prefs.php:222 +#: classes/pref/prefs.php:238 msgid "E-mail" msgstr "é›»åメール" -#: classes/pref/prefs.php:228 +#: classes/pref/prefs.php:244 msgid "Access level" msgstr "アクセスレベル" -#: classes/pref/prefs.php:238 +#: classes/pref/prefs.php:254 #, fuzzy msgid "Save data" msgstr "ä¿å˜" -#: classes/pref/prefs.php:260 +#: classes/pref/prefs.php:276 #, fuzzy msgid "Your password is at default value, please change it." msgstr "" "ãƒ‘ã‚¹ãƒ¯ãƒ¼ãƒ‰ãŒæ¨™æº–ã®ã¾ã¾ã§ã™ã€‚\n" " 変更ã—ã¦ãã ã•ã„。" -#: classes/pref/prefs.php:287 +#: classes/pref/prefs.php:303 msgid "Changing your current password will disable OTP." msgstr "" -#: classes/pref/prefs.php:292 +#: classes/pref/prefs.php:308 msgid "Old password" msgstr "ç¾åœ¨ã®ãƒ‘スワード" -#: classes/pref/prefs.php:295 +#: classes/pref/prefs.php:311 msgid "New password" msgstr "æ–°ã—ã„パスワード" -#: classes/pref/prefs.php:300 +#: classes/pref/prefs.php:316 msgid "Confirm password" msgstr "æ–°ã—ã„パスワード(確èª)" -#: classes/pref/prefs.php:310 +#: classes/pref/prefs.php:326 msgid "Change password" msgstr "パスワードを変更ã™ã‚‹" -#: classes/pref/prefs.php:316 +#: classes/pref/prefs.php:332 msgid "One time passwords / Authenticator" msgstr "" -#: classes/pref/prefs.php:320 +#: classes/pref/prefs.php:336 msgid "One time passwords are currently enabled. Enter your current password below to disable." msgstr "" -#: classes/pref/prefs.php:345 -#: classes/pref/prefs.php:396 +#: classes/pref/prefs.php:361 +#: classes/pref/prefs.php:412 #, fuzzy msgid "Enter your password" msgstr "ユーザーåã‹ãƒ‘ã‚¹ãƒ¯ãƒ¼ãƒ‰ãŒæ£ã—ãã‚りã¾ã›ã‚“" -#: classes/pref/prefs.php:356 +#: classes/pref/prefs.php:372 #, fuzzy msgid "Disable OTP" msgstr "(無効ã§ã™)" -#: classes/pref/prefs.php:362 +#: classes/pref/prefs.php:378 msgid "You will need a compatible Authenticator to use this. Changing your password would automatically disable OTP." msgstr "" -#: classes/pref/prefs.php:364 +#: classes/pref/prefs.php:380 msgid "Scan the following code by the Authenticator application:" msgstr "" -#: classes/pref/prefs.php:405 +#: classes/pref/prefs.php:421 msgid "I have scanned the code and would like to enable OTP" msgstr "" -#: classes/pref/prefs.php:413 +#: classes/pref/prefs.php:429 #, fuzzy msgid "Enable OTP" msgstr "有効ã«ã™ã‚‹" -#: classes/pref/prefs.php:451 +#: classes/pref/prefs.php:475 msgid "Some preferences are only available in default profile." msgstr "" -#: classes/pref/prefs.php:545 +#: classes/pref/prefs.php:585 #, fuzzy msgid "Customize" msgstr "ユーザースタイルシート㮠URL" -#: classes/pref/prefs.php:605 +#: classes/pref/prefs.php:645 #, fuzzy msgid "Register" msgstr "登録済ã¿" -#: classes/pref/prefs.php:609 +#: classes/pref/prefs.php:649 msgid "Clear" msgstr "" -#: classes/pref/prefs.php:615 +#: classes/pref/prefs.php:655 #, php-format msgid "Current server time: %s (UTC)" msgstr "" -#: classes/pref/prefs.php:648 +#: classes/pref/prefs.php:688 msgid "Save configuration" msgstr "è¨å®šã‚’ä¿å˜ã™ã‚‹" -#: classes/pref/prefs.php:651 +#: classes/pref/prefs.php:692 +#, fuzzy +msgid "Save and exit preferences" +msgstr "è¨å®šã‚’終了ã™ã‚‹" + +#: classes/pref/prefs.php:697 #, fuzzy msgid "Manage profiles" msgstr "フィルターを作æˆã™ã‚‹" -#: classes/pref/prefs.php:654 +#: classes/pref/prefs.php:700 msgid "Reset to defaults" msgstr "æ¨™æº–ã«æˆ»ã™" -#: classes/pref/prefs.php:678 -#: classes/pref/prefs.php:680 +#: classes/pref/prefs.php:724 +#: classes/pref/prefs.php:726 msgid "Plugins" msgstr "" -#: classes/pref/prefs.php:682 +#: classes/pref/prefs.php:728 msgid "You will need to reload Tiny Tiny RSS for plugin changes to take effect." msgstr "" -#: classes/pref/prefs.php:684 +#: classes/pref/prefs.php:730 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:710 +#: classes/pref/prefs.php:756 msgid "System plugins" msgstr "" -#: classes/pref/prefs.php:714 -#: classes/pref/prefs.php:768 +#: classes/pref/prefs.php:760 +#: classes/pref/prefs.php:814 msgid "Plugin" msgstr "" -#: classes/pref/prefs.php:715 -#: classes/pref/prefs.php:769 +#: classes/pref/prefs.php:761 +#: classes/pref/prefs.php:815 #, fuzzy msgid "Description" msgstr "説明" -#: classes/pref/prefs.php:716 -#: classes/pref/prefs.php:770 +#: classes/pref/prefs.php:762 +#: classes/pref/prefs.php:816 msgid "Version" msgstr "" -#: classes/pref/prefs.php:717 -#: classes/pref/prefs.php:771 +#: classes/pref/prefs.php:763 +#: classes/pref/prefs.php:817 msgid "Author" msgstr "" -#: classes/pref/prefs.php:746 -#: classes/pref/prefs.php:803 +#: classes/pref/prefs.php:792 +#: classes/pref/prefs.php:849 msgid "more info" msgstr "" -#: classes/pref/prefs.php:755 -#: classes/pref/prefs.php:812 +#: classes/pref/prefs.php:801 +#: classes/pref/prefs.php:858 #, fuzzy msgid "Clear data" msgstr "ãƒ•ã‚£ãƒ¼ãƒ‰ãƒ‡ãƒ¼ã‚¿ã®æ¶ˆåŽ»" -#: classes/pref/prefs.php:764 +#: classes/pref/prefs.php:810 msgid "User plugins" msgstr "" -#: classes/pref/prefs.php:827 +#: classes/pref/prefs.php:873 #, fuzzy msgid "Enable selected plugins" msgstr "フィードアイコンを有効ã«ã™ã‚‹" -#: classes/pref/prefs.php:882 -#: classes/pref/prefs.php:900 +#: classes/pref/prefs.php:928 +#: classes/pref/prefs.php:946 #, fuzzy msgid "Incorrect password" msgstr "ユーザーåã‹ãƒ‘ã‚¹ãƒ¯ãƒ¼ãƒ‰ãŒæ£ã—ãã‚りã¾ã›ã‚“" -#: classes/pref/prefs.php:926 +#: classes/pref/prefs.php:972 #, 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:966 +#: classes/pref/prefs.php:1012 #, fuzzy msgid "Create profile" msgstr "フィルターを作æˆã™ã‚‹" -#: classes/pref/prefs.php:989 -#: classes/pref/prefs.php:1019 +#: classes/pref/prefs.php:1035 +#: classes/pref/prefs.php:1065 msgid "(active)" msgstr "(有効)" -#: classes/pref/prefs.php:1053 +#: classes/pref/prefs.php:1099 #, fuzzy msgid "Remove selected profiles" msgstr "é¸æŠžã•れãŸãƒ—ãƒãƒ•ァイルを削除ã—ã¾ã™ã‹?" -#: classes/pref/prefs.php:1055 +#: classes/pref/prefs.php:1101 #, fuzzy msgid "Activate profile" msgstr "プãƒãƒ•ァイルを有効ã«ã™ã‚‹" @@ -2896,15 +2841,15 @@ msgstr "" msgid "The document has incorrect format." msgstr "" -#: plugins/googlereaderimport/init.php:326 +#: plugins/googlereaderimport/init.php:328 msgid "Import starred or shared items from Google Reader" msgstr "" -#: plugins/googlereaderimport/init.php:330 +#: plugins/googlereaderimport/init.php:332 msgid "Paste your starred.json or shared.json into the form below." msgstr "" -#: plugins/googlereaderimport/init.php:344 +#: plugins/googlereaderimport/init.php:346 msgid "Import my Starred items" msgstr "" @@ -3010,23 +2955,23 @@ msgstr "最終更新:" msgid "Start update" msgstr "最終更新:" -#: js/feedlist.js:392 -#: js/feedlist.js:420 +#: js/feedlist.js:394 +#: js/feedlist.js:422 #: plugins/digest/digest.js:26 msgid "Mark all articles in %s as read?" msgstr "「%sã€ã®ã™ã¹ã¦ã®è¨˜äº‹ã‚’æ—¢èªã«è¨å®šã—ã¾ã™ã‹?" -#: js/feedlist.js:411 +#: js/feedlist.js:413 #, fuzzy msgid "Mark all articles in %s older than 1 day as read?" msgstr "「%sã€ã®ã™ã¹ã¦ã®è¨˜äº‹ã‚’æ—¢èªã«è¨å®šã—ã¾ã™ã‹?" -#: js/feedlist.js:414 +#: js/feedlist.js:416 #, fuzzy msgid "Mark all articles in %s older than 1 week as read?" msgstr "「%sã€ã®ã™ã¹ã¦ã®è¨˜äº‹ã‚’æ—¢èªã«è¨å®šã—ã¾ã™ã‹?" -#: js/feedlist.js:417 +#: js/feedlist.js:419 #, fuzzy msgid "Mark all articles in %s older than 2 weeks as read?" msgstr "「%sã€ã®ã™ã¹ã¦ã®è¨˜äº‹ã‚’æ—¢èªã«è¨å®šã—ã¾ã™ã‹?" @@ -3591,157 +3536,157 @@ msgstr "記事ã®ã‚¹ã‚³ã‚¢ã‚’å†è¨ˆç®—ã—ã¦ã„ã¾ã™..." msgid "New version available!" msgstr "Tiny Tiny RSS ã®æ–°ã—ã„ãƒãƒ¼ã‚¸ãƒ§ãƒ³ãŒåˆ©ç”¨ã§ãã¾ã™!" -#: js/viewfeed.js:104 +#: js/viewfeed.js:106 #, fuzzy msgid "Cancel search" msgstr "å–り消ã—" -#: js/viewfeed.js:438 +#: js/viewfeed.js:441 #: plugins/digest/digest.js:258 #: plugins/digest/digest.js:714 msgid "Unstar article" msgstr "記事ã®ãŠæ°—ã«å…¥ã‚Šã‚’解除ã™ã‚‹" -#: js/viewfeed.js:443 +#: js/viewfeed.js:446 #: plugins/digest/digest.js:260 #: plugins/digest/digest.js:718 msgid "Star article" msgstr "è¨˜äº‹ã‚’ãŠæ°—ã«å…¥ã‚Šã«ã™ã‚‹" -#: js/viewfeed.js:476 +#: js/viewfeed.js:479 #: plugins/digest/digest.js:263 #: plugins/digest/digest.js:749 msgid "Unpublish article" msgstr "éžå…¬é–‹è¨˜äº‹" -#: js/viewfeed.js:481 +#: js/viewfeed.js:484 #: plugins/digest/digest.js:265 #: plugins/digest/digest.js:754 msgid "Publish article" msgstr "公開記事" -#: js/viewfeed.js:677 -#: js/viewfeed.js:705 -#: js/viewfeed.js:732 -#: js/viewfeed.js:795 -#: js/viewfeed.js:829 -#: js/viewfeed.js:949 -#: js/viewfeed.js:992 -#: js/viewfeed.js:1045 -#: js/viewfeed.js:2051 +#: js/viewfeed.js:680 +#: js/viewfeed.js:708 +#: js/viewfeed.js:735 +#: js/viewfeed.js:798 +#: js/viewfeed.js:832 +#: js/viewfeed.js:952 +#: js/viewfeed.js:995 +#: js/viewfeed.js:1048 +#: js/viewfeed.js:2060 #: plugins/mailto/init.js:7 #: plugins/mail/mail.js:7 msgid "No articles are selected." msgstr "記事ã¯é¸æŠžã•れã¦ã„ã¾ã›ã‚“。" -#: js/viewfeed.js:957 +#: js/viewfeed.js:960 #, 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:959 +#: js/viewfeed.js:962 #, fuzzy msgid "Delete %d selected article?" msgid_plural "Delete %d selected articles?" msgstr[0] "ラベルã‹ã‚‰é¸æŠžã—ãŸè¨˜äº‹ã‚’削除ã—ã¾ã™ã‹?" msgstr[1] "ラベルã‹ã‚‰é¸æŠžã—ãŸè¨˜äº‹ã‚’削除ã—ã¾ã™ã‹?" -#: js/viewfeed.js:1001 +#: js/viewfeed.js:1004 #, 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:1004 +#: js/viewfeed.js:1007 #, fuzzy msgid "Move %d archived article back?" msgid_plural "Move %d archived articles back?" msgstr[0] "ãŠæ°—ã«å…¥ã‚Šã®è¨˜äº‹" msgstr[1] "ãŠæ°—ã«å…¥ã‚Šã®è¨˜äº‹" -#: js/viewfeed.js:1006 +#: js/viewfeed.js:1009 msgid "Please note that unstarred articles might get purged on next feed update." msgstr "" -#: js/viewfeed.js:1051 +#: js/viewfeed.js:1054 #, 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:1075 +#: js/viewfeed.js:1078 #, fuzzy msgid "Edit article Tags" msgstr "タグを編集ã™ã‚‹" -#: js/viewfeed.js:1081 +#: js/viewfeed.js:1084 msgid "Saving article tags..." msgstr "記事ã®ã‚¿ã‚°ã‚’ä¿å˜ã—ã¦ã„ã¾ã™..." -#: js/viewfeed.js:1278 +#: js/viewfeed.js:1287 msgid "No article is selected." msgstr "é¸æŠžã•れãŸè¨˜äº‹ã¯ã‚りã¾ã›ã‚“。" -#: js/viewfeed.js:1313 +#: js/viewfeed.js:1322 msgid "No articles found to mark" msgstr "マークã—ãŸè¨˜äº‹ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“" -#: js/viewfeed.js:1315 +#: js/viewfeed.js:1324 #, fuzzy msgid "Mark %d article as read?" msgid_plural "Mark %d articles as read?" msgstr[0] "%d ä»¶ã®ãƒžãƒ¼ã‚¯ã—ãŸè¨˜äº‹ã‚’æ—¢èªã¨ã—ã¦è¨å®šã—ã¾ã™ã‹?" msgstr[1] "%d ä»¶ã®ãƒžãƒ¼ã‚¯ã—ãŸè¨˜äº‹ã‚’æ—¢èªã¨ã—ã¦è¨å®šã—ã¾ã™ã‹?" -#: js/viewfeed.js:1827 +#: js/viewfeed.js:1836 #, fuzzy msgid "Open original article" msgstr "å…ƒã®è¨˜äº‹å†…容を表示ã™ã‚‹" -#: js/viewfeed.js:1833 +#: js/viewfeed.js:1842 #, fuzzy msgid "Display article URL" msgstr "ã‚¿ã‚°ã®è¡¨ç¤º" -#: js/viewfeed.js:1852 +#: js/viewfeed.js:1861 #, fuzzy msgid "Toggle marked" msgstr "ãŠæ°—ã«å…¥ã‚Šã‚’切り替ãˆã‚‹" -#: js/viewfeed.js:1933 +#: js/viewfeed.js:1942 msgid "Assign label" msgstr "ラベルã®å‰²ã‚Šå½“ã¦" -#: js/viewfeed.js:1938 +#: js/viewfeed.js:1947 #, fuzzy msgid "Remove label" msgstr "é¸æŠžã—ãŸãƒ©ãƒ™ãƒ«ã‚’削除ã—ã¾ã™ã‹?" -#: js/viewfeed.js:1962 +#: js/viewfeed.js:1971 #, fuzzy msgid "Playing..." msgstr "フィード一覧をèªã¿è¾¼ã‚“ã§ã„ã¾ã™..." -#: js/viewfeed.js:1963 +#: js/viewfeed.js:1972 #, fuzzy msgid "Click to pause" msgstr "編集ã™ã‚‹ã«ã¯ã‚¯ãƒªãƒƒã‚¯" -#: js/viewfeed.js:2020 +#: js/viewfeed.js:2029 #, fuzzy msgid "Please enter new score for selected articles:" msgstr "ã“ã®ã‚¢ãƒ¼ãƒ†ã‚£ã‚¯ãƒ«ã®ãƒŽãƒ¼ãƒˆã‚’入力ã—ã¦ãã ã•ã„:" -#: js/viewfeed.js:2062 +#: js/viewfeed.js:2071 #, fuzzy msgid "Please enter new score for this article:" msgstr "ã“ã®ã‚¢ãƒ¼ãƒ†ã‚£ã‚¯ãƒ«ã®ãƒŽãƒ¼ãƒˆã‚’入力ã—ã¦ãã ã•ã„:" -#: js/viewfeed.js:2095 +#: js/viewfeed.js:2104 #, fuzzy msgid "Article URL:" msgstr "ã™ã¹ã¦ã®è¨˜äº‹" @@ -3865,6 +3810,54 @@ msgstr "è¨˜äº‹ã‚’ãŠæ°—ã«å…¥ã‚Šã«ã™ã‚‹" msgid "Live updating is considered experimental. Backup your tt-rss directory before continuing. Please type 'yes' to continue." msgstr "" +#~ msgid "Could not update database" +#~ msgstr "データベースを更新ã§ãã¾ã›ã‚“" + +#~ msgid "Could not find necessary schema file, need version:" +#~ msgstr "å¿…è¦ãªã‚¹ã‚ーマファイルを見ã¤ã‘られã¾ã›ã‚“ã§ã—ãŸã€‚次ã®ãƒãƒ¼ã‚¸ãƒ§ãƒ³ãŒå¿…è¦ã§ã™:" + +#~ msgid ", found: " +#~ msgstr ", 以下ãŒè¦‹ã¤ã‹ã‚Šã¾ã—ãŸ: " + +#~ msgid "Tiny Tiny RSS database is up to date." +#~ msgstr "Tiny Tiny RSS ã®ãƒ‡ãƒ¼ã‚¿ãƒ™ãƒ¼ã‚¹ã‚’æ›´æ–°ã—ã¾ã—ãŸã€‚" + +#~ msgid "Please backup your database before proceeding." +#~ msgstr "実行å‰ã«ãƒ‡ãƒ¼ã‚¿ãƒ™ãƒ¼ã‚¹ã®ãƒãƒƒã‚¯ã‚¢ãƒƒãƒ—ã‚’ã—ã¦ãã ã•ã„。" + +#~ msgid "Your Tiny Tiny RSS database needs update to the latest version (<b>%d</b> to <b>%d</b>)." +#~ msgstr "Tiny Tiny RSS ã¯æœ€æ–°ã®ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã«æ›´æ–°ã™ã‚‹å¿…è¦ãŒã‚りã¾ã™ (<b>%d</b> ã‹ã‚‰ <b>%d</b>)。" + +#~ msgid "Performing updates..." +#~ msgstr "更新を実行ã—ã¦ã„ã¾ã™..." + +#~ msgid "Updating to version %d..." +#~ msgstr "ãƒãƒ¼ã‚¸ãƒ§ãƒ³ %d を確èªã—ã¦ã„ã¾ã™..." + +#~ msgid "Checking version... " +#~ msgstr "ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã‚’確èªã—ã¦ã„ã¾ã™..." + +#~ msgid "OK!" +#~ msgstr "OK!" + +#~ msgid "ERROR!" +#~ msgstr "エラー!" + +#, fuzzy +#~ msgid "Finished. Performed <b>%d</b> update up to schema version <b>%d</b>." +#~ msgid_plural "Finished. Performed <b>%d</b> updates up to schema version <b>%d</b>." +#~ msgstr[0] "完了ã—ã¾ã—ãŸã€‚<b>%d</b> 個ã®ãƒ†ãƒ¼ãƒ–ルをスã‚ーマーãƒãƒ¼ã‚¸ãƒ§ãƒ³<b>%d</b> ã«æ›´æ–°ã—ã¾ã—ãŸã€‚" +#~ msgstr[1] "完了ã—ã¾ã—ãŸã€‚<b>%d</b> 個ã®ãƒ†ãƒ¼ãƒ–ルをスã‚ーマーãƒãƒ¼ã‚¸ãƒ§ãƒ³<b>%d</b> ã«æ›´æ–°ã—ã¾ã—ãŸã€‚" + +#~ msgid "Your database schema is from a newer version of Tiny Tiny RSS." +#~ msgstr "Databaseスã‚ーマã¯ã€Tiny Tiny RSSã®æ–°ã—ã„ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã‹ã‚‰ã®ã‚‚ã®ã§ã™ã€‚" + +#~ msgid "Found schema version: <b>%d</b>, required: <b>%d</b>." +#~ msgstr "スã‚ーマãƒãƒ¼ã‚¸ãƒ§ãƒ³ãŒ: <b>%d</b>, ã§ã—ãŸã€‚ 以下ãŒå¿…è¦ã§ã™: <b>%d</b>." + +#~ msgid "Schema upgrade impossible. Please update Tiny Tiny RSS files to the newer version and continue." +#~ msgstr "スã‚ーマアップグレードãŒã§ãã¾ã›ã‚“。Tiny Tiny RSSã‚’æ–°ã—ã„ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã«æ›´æ–°ã—ã¦ã‹ã‚‰ç¶šã‘ã¦ãã ã•ã„。" + #~ msgid "Mark feed as read" #~ msgstr "マークã—ãŸãƒ•ィードを既èªã«ã™ã‚‹" @@ -3872,9 +3865,6 @@ msgstr "" #~ msgid "Default feed update interval" #~ msgstr "æ›´æ–°ã®é–“éš”" -#~ msgid "Title" -#~ msgstr "題å" - #~ msgid "Title or Content" #~ msgstr "題åã‹å†…容" diff --git a/locale/lv_LV/LC_MESSAGES/messages.mo b/locale/lv_LV/LC_MESSAGES/messages.mo Binary files differindex 44587cfc7..ea640f18c 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 2f2440df2..d0a13bdb9 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-04-04 09:06+0400\n" +"POT-Creation-Date: 2013-04-04 21:31+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" @@ -101,105 +101,6 @@ msgstr "SuperlietotÄjs" msgid "Administrator" msgstr "Administrators" -#: db-updater.php:19 -msgid "Your access level is insufficient to run this script." -msgstr "Jums nav nepiecieÅ¡amo skripta palaiÅ¡anas tiesÄ«bu. " - -#: db-updater.php:44 -msgid "Database Updater" -msgstr "Datu bÄzes atjaunotÄjs" - -#: db-updater.php:87 -msgid "Could not update database" -msgstr "NeizdevÄs atjaunot datu bÄzi" - -#: db-updater.php:90 -msgid "Could not find necessary schema file, need version:" -msgstr "NeizdevÄs atrast nepiecieÅ¡amo shÄ“mas failu, nepiecieÅ¡ama versija:" - -#: db-updater.php:91 -msgid ", found: " -msgstr ", atradu:" - -#: db-updater.php:94 -msgid "Tiny Tiny RSS database is up to date." -msgstr "Tiny Tiny RSS datubÄze ir aktuÄla." - -#: 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:648 -#: classes/handler/public.php:736 -#: classes/handler/public.php:818 -msgid "Return to Tiny Tiny RSS" -msgstr "Atgriezties uz Tiny Tiny RSS" - -#: db-updater.php:102 -msgid "Please backup your database before proceeding." -msgstr "LÅ«dzu pirms turpinÄÅ¡anas atjaunojiet datu bÄzi." - -#: 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 "JÅ«su Tiny Tiny RSS datubÄzi ir nepiecieÅ¡ams atjaunot uz jaunÄko versiju (no <b>%d</b> uz <b>%d</b>)." - -#: db-updater.php:118 -msgid "Perform updates" -msgstr "IzpildÄ«t atjaunojumus" - -#: db-updater.php:123 -msgid "Performing updates..." -msgstr "Izpildu atjaunojumus..." - -#: db-updater.php:129 -#, php-format -msgid "Updating to version %d..." -msgstr "Atjaunoju uz versiju %d..." - -#: db-updater.php:144 -msgid "Checking version... " -msgstr "PÄrbaudu versiju..." - -#: db-updater.php:150 -msgid "OK!" -msgstr "KÄrtÄ«bÄ!" - -#: db-updater.php:152 -msgid "ERROR!" -msgstr "Kļūda!" - -#: db-updater.php:160 -#, fuzzy, php-format -msgid "Finished. Performed <b>%d</b> update up to schema version <b>%d</b>." -msgid_plural "Finished. Performed <b>%d</b> updates up to schema version <b>%d</b>." -msgstr[0] "" -"Pabeigts. IzpildÄ«ju <b>%d</b> shÄ“mas atjaunojumu(s)\n" -"\t\t\tversija <b>%d</b>." -msgstr[1] "" -"Pabeigts. IzpildÄ«ju <b>%d</b> shÄ“mas atjaunojumu(s)\n" -"\t\t\tversija <b>%d</b>." - -#: db-updater.php:170 -msgid "Your database schema is from a newer version of Tiny Tiny RSS." -msgstr "JÅ«su datu bÄzes shÄ“ma ir no jaunÄkas Tiny Tiny RSS versijas." - -#: db-updater.php:172 -#, php-format -msgid "Found schema version: <b>%d</b>, required: <b>%d</b>." -msgstr "Atradu shÄ“mu ar versiju: <b>%d</b>, nepiecieÅ¡ama: <b>%d</b>." - -#: db-updater.php:174 -msgid "Schema upgrade impossible. Please update Tiny Tiny RSS files to the newer version and continue." -msgstr "Nav iespÄ“jams veikt shÄ“mas atjaunoÅ¡anu. LÅ«dzu, pirms turpiniet, atjaunojiet Tiny Tiny RSS failus uz jaunÄku versiju." - #: errors.php:9 msgid "This program requires XmlHttpRequest to function properly. Your browser doesn't seem to support it." msgstr "Lai šī programma strÄdÄtu pareizi, ir nepiecieÅ¡ams XmlHttpRequest atbalsts. Å Ä·iet, ka jÅ«su pÄrlÅ«kprogramma to neatbalsta." @@ -254,7 +155,7 @@ msgstr "NeizdevÄs SQL izņēmumu tests, pÄrbaudiet jÅ«su datu bÄzes un PHP ie #: index.php:135 #: index.php:152 -#: index.php:276 +#: index.php:277 #: prefs.php:103 #: classes/backend.php:5 #: classes/pref/labels.php:296 @@ -262,7 +163,7 @@ msgstr "NeizdevÄs SQL izņēmumu tests, pÄrbaudiet jÅ«su datu bÄzes un PHP ie #: classes/pref/feeds.php:1331 #: plugins/digest/digest_body.php:63 #: js/feedlist.js:128 -#: js/feedlist.js:436 +#: js/feedlist.js:438 #: js/functions.js:420 #: js/functions.js:758 #: js/functions.js:1194 @@ -283,8 +184,8 @@ msgstr "NeizdevÄs SQL izņēmumu tests, pÄrbaudiet jÅ«su datu bÄzes un PHP ie #: js/prefs.js:1814 #: js/tt-rss.js:475 #: js/tt-rss.js:492 -#: js/viewfeed.js:772 -#: js/viewfeed.js:1200 +#: js/viewfeed.js:775 +#: js/viewfeed.js:1201 #: plugins/import_export/import_export.js:17 #: plugins/updater/updater.js:17 msgid "Loading, please wait..." @@ -307,13 +208,13 @@ msgid "All Articles" msgstr "Visus rakstus" #: index.php:174 -#: include/functions.php:1953 +#: include/functions.php:1955 #: classes/feeds.php:106 msgid "Starred" msgstr "Zvaigžņotos" #: index.php:175 -#: include/functions.php:1954 +#: include/functions.php:1956 #: classes/feeds.php:107 msgid "Published" msgstr "PublicÄ“tos" @@ -353,9 +254,13 @@ msgstr "" msgid "Oldest first" msgstr "" -#: index.php:191 -#: index.php:240 -#: include/functions.php:1943 +#: index.php:188 +msgid "Title" +msgstr "Virsraksts" + +#: index.php:192 +#: index.php:241 +#: include/functions.php:1945 #: classes/feeds.php:111 #: classes/feeds.php:441 #: js/FeedTree.js:128 @@ -364,106 +269,106 @@ msgstr "" msgid "Mark as read" msgstr "AtzÄ«mÄ“t kÄ lasÄ«tu" -#: index.php:194 +#: index.php:195 msgid "Older than one day" msgstr "" -#: index.php:197 +#: index.php:198 msgid "Older than one week" msgstr "" -#: index.php:200 +#: index.php:201 msgid "Older than two weeks" msgstr "" -#: index.php:217 +#: index.php:218 msgid "Communication problem with server." msgstr "" -#: index.php:225 +#: index.php:226 msgid "New version of Tiny Tiny RSS is available!" msgstr "Ir pieejama jauna Tiny Tiny RSS versija!" -#: index.php:230 +#: index.php:231 msgid "Actions..." msgstr "DarbÄ«bas" -#: index.php:232 +#: index.php:233 #, fuzzy msgid "Preferences..." msgstr "IestatÄ«jumi" -#: index.php:233 +#: index.php:234 msgid "Search..." msgstr "MeklÄ“t" -#: index.php:234 +#: index.php:235 msgid "Feed actions:" msgstr "Barotnes darbÄ«bas" -#: index.php:235 +#: index.php:236 #: classes/handler/public.php:578 msgid "Subscribe to feed..." msgstr "AbonÄ“t barotni..." -#: index.php:236 +#: index.php:237 msgid "Edit this feed..." msgstr "Rediģēt Å¡o barotni..." -#: index.php:237 +#: index.php:238 msgid "Rescore feed" msgstr "PÄrvÄ“rtÄ“t barotni" -#: index.php:238 +#: index.php:239 #: classes/pref/feeds.php:717 #: classes/pref/feeds.php:1283 #: js/PrefFeedTree.js:73 msgid "Unsubscribe" msgstr "Atteikties" -#: index.php:239 +#: index.php:240 msgid "All feeds:" msgstr "Visas barotnes:" -#: index.php:241 +#: index.php:242 msgid "(Un)hide read feeds" msgstr "(Ne)rÄdÄ«t lasÄ«tÄs barotnes" -#: index.php:242 +#: index.php:243 msgid "Other actions:" msgstr "Citas darbÄ«bas:" -#: index.php:244 +#: index.php:245 msgid "Switch to digest..." msgstr "PÄrslÄ“gties uz Ä«ssavilkumu..." -#: index.php:246 +#: index.php:247 msgid "Show tag cloud..." msgstr "RadÄ«t birku mÄkoni..." -#: index.php:247 -#: include/functions.php:1929 +#: index.php:248 +#: include/functions.php:1931 #, fuzzy msgid "Toggle widescreen mode" msgstr "PÄrslÄ“gt zvaigžņoÅ¡anu" -#: index.php:248 +#: index.php:249 msgid "Select by tags..." msgstr "AtlasÄ«t pÄ“c iezÄ«mÄ“m..." -#: index.php:249 +#: index.php:250 msgid "Create label..." msgstr "Izveidot iezÄ«mi" -#: index.php:250 +#: index.php:251 msgid "Create filter..." msgstr "Izveidot filtru..." -#: index.php:251 +#: index.php:252 msgid "Keyboard shortcuts help" msgstr "IsinÄjumtaustiņu palÄ«dzÄ«ba" -#: index.php:260 +#: index.php:261 #: plugins/digest/digest_body.php:77 #: plugins/mobile/mobile-functions.php:62 #: plugins/mobile/mobile-functions.php:237 @@ -472,8 +377,8 @@ msgstr "Atteikties" #: prefs.php:36 #: prefs.php:121 -#: include/functions.php:1956 -#: classes/pref/prefs.php:428 +#: include/functions.php:1958 +#: classes/pref/prefs.php:444 msgid "Preferences" msgstr "IestatÄ«jumi" @@ -498,8 +403,8 @@ msgid "Filters" msgstr "Filtri" #: prefs.php:130 -#: include/functions.php:1146 -#: include/functions.php:1782 +#: include/functions.php:1148 +#: include/functions.php:1784 #: classes/pref/labels.php:90 #: plugins/mobile/mobile-functions.php:198 msgid "Labels" @@ -518,6 +423,24 @@ msgstr "Izveidot jaunu kontu" msgid "New user registrations are administratively disabled." msgstr "Jaunu lietotÄju reÄ£istrēšana ir administratÄ«vi atcelta." +#: 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:648 +#: classes/handler/public.php:736 +#: classes/handler/public.php:818 +#: classes/handler/public.php:893 +#: classes/handler/public.php:907 +#: classes/handler/public.php:914 +#: classes/handler/public.php:939 +msgid "Return to Tiny Tiny RSS" +msgstr "Atgriezties uz Tiny Tiny RSS" + #: 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 "JÅ«su Ä«slaicÄ«gÄ parole tiks nosÅ«tÄ«ta uz norÄdÄ«to e-pastu. Konti, kuros ne neviens nav pieteicies, tiek automÄtiski izdzÄ“sti 24 stundu laikÄ pÄ“c Ä«slaicÄ«gÄs paroles nosÅ«tīšanas." @@ -564,15 +487,15 @@ msgstr "Konts ir veiksmÄ«gi izveidots." msgid "New user registrations are currently closed." msgstr "Jaunu lietotÄju reÄ£istrÄcija Å¡obrÄ«d ir slÄ“gta." -#: update.php:55 +#: update.php:56 msgid "Tiny Tiny RSS data update script." msgstr "Tiny Tiny RSS datu atjaunoÅ¡anas skripts." #: include/digest.php:109 -#: include/functions.php:1155 -#: include/functions.php:1683 -#: include/functions.php:1768 -#: include/functions.php:1790 +#: include/functions.php:1157 +#: include/functions.php:1685 +#: include/functions.php:1770 +#: include/functions.php:1792 #: classes/opml.php:416 #: classes/pref/feeds.php:222 msgid "Uncategorized" @@ -589,328 +512,328 @@ msgstr[1] "%d arhivÄ“ti raksti" msgid "No feeds found." msgstr "Neatradu barotnes." -#: include/functions.php:1144 -#: include/functions.php:1780 +#: include/functions.php:1146 +#: include/functions.php:1782 #: plugins/mobile/mobile-functions.php:171 msgid "Special" msgstr "ĪpaÅ¡i" -#: include/functions.php:1632 -#: classes/feeds.php:1101 +#: include/functions.php:1634 +#: classes/feeds.php:1104 #: classes/pref/filters.php:427 msgid "All feeds" msgstr "Visas barotnes" -#: include/functions.php:1833 +#: include/functions.php:1835 msgid "Starred articles" msgstr "Zvaigžņotie raksti" -#: include/functions.php:1835 +#: include/functions.php:1837 msgid "Published articles" msgstr "PublicÄ“tie raksti" -#: include/functions.php:1837 +#: include/functions.php:1839 msgid "Fresh articles" msgstr "JaunÄkie raksti" -#: include/functions.php:1839 -#: include/functions.php:1951 +#: include/functions.php:1841 +#: include/functions.php:1953 msgid "All articles" msgstr "Visi raksti" -#: include/functions.php:1841 +#: include/functions.php:1843 msgid "Archived articles" msgstr "ArhivÄ“tie raksti" -#: include/functions.php:1843 +#: include/functions.php:1845 msgid "Recently read" msgstr "Nesen lasÄ«tie raksti" -#: include/functions.php:1906 +#: include/functions.php:1908 msgid "Navigation" msgstr "NavigÄcija" -#: include/functions.php:1907 +#: include/functions.php:1909 #, fuzzy msgid "Open next feed" msgstr "PÄ“c noÄ·erÅ¡anas rÄdÄ«t nÄkamo barotni" -#: include/functions.php:1908 +#: include/functions.php:1910 msgid "Open previous feed" msgstr "" -#: include/functions.php:1909 +#: include/functions.php:1911 #, fuzzy msgid "Open next article" msgstr "AtvÄ“rt sÄkotnÄ“jo rakstu" -#: include/functions.php:1910 +#: include/functions.php:1912 #, fuzzy msgid "Open previous article" msgstr "AtvÄ“rt sÄkotnÄ“jo rakstu" -#: include/functions.php:1911 +#: include/functions.php:1913 msgid "Open next article (don't scroll long articles)" msgstr "" -#: include/functions.php:1912 +#: include/functions.php:1914 msgid "Open previous article (don't scroll long articles)" msgstr "" -#: include/functions.php:1913 +#: include/functions.php:1915 msgid "Show search dialog" msgstr "RÄdÄ«t meklēšanas logu" -#: include/functions.php:1914 +#: include/functions.php:1916 #, fuzzy msgid "Article" msgstr "Visus rakstus" -#: include/functions.php:1915 +#: include/functions.php:1917 msgid "Toggle starred" msgstr "PÄrslÄ“gt zvaigžņoÅ¡anu" -#: include/functions.php:1916 -#: js/viewfeed.js:1863 +#: include/functions.php:1918 +#: js/viewfeed.js:1872 msgid "Toggle published" msgstr "PÄrslÄ“gt publicēšanu" -#: include/functions.php:1917 -#: js/viewfeed.js:1841 +#: include/functions.php:1919 +#: js/viewfeed.js:1850 msgid "Toggle unread" msgstr "PÄrslÄ“gt nelasÄ«tu" -#: include/functions.php:1918 +#: include/functions.php:1920 msgid "Edit tags" msgstr "Rediģēt iezÄ«mes" -#: include/functions.php:1919 +#: include/functions.php:1921 #, fuzzy msgid "Dismiss selected" msgstr "Atmest atlasÄ«tos rakstus" -#: include/functions.php:1920 +#: include/functions.php:1922 #, fuzzy msgid "Dismiss read" msgstr "Atmest lasÄ«tos rakstus" -#: include/functions.php:1921 +#: include/functions.php:1923 #, fuzzy msgid "Open in new window" msgstr "AtvÄ“rt rakstu jaunÄ logÄ" -#: include/functions.php:1922 -#: js/viewfeed.js:1882 +#: include/functions.php:1924 +#: js/viewfeed.js:1891 msgid "Mark below as read" msgstr "IezÄ«mÄ“t lejup kÄ lasÄ«tus" -#: include/functions.php:1923 -#: js/viewfeed.js:1876 +#: include/functions.php:1925 +#: js/viewfeed.js:1885 msgid "Mark above as read" msgstr "IezÄ«mÄ“t augÅ¡up kÄ lasÄ«tus" -#: include/functions.php:1924 +#: include/functions.php:1926 #, fuzzy msgid "Scroll down" msgstr "Viss izdarÄ«ts." -#: include/functions.php:1925 +#: include/functions.php:1927 msgid "Scroll up" msgstr "" -#: include/functions.php:1926 +#: include/functions.php:1928 #, fuzzy msgid "Select article under cursor" msgstr "IezÄ«mÄ“t rakstu zem peles kursora" -#: include/functions.php:1927 +#: include/functions.php:1929 msgid "Email article" msgstr "NosÅ«tÄ«t rakstu uz e-pastu" -#: include/functions.php:1928 +#: include/functions.php:1930 #, fuzzy msgid "Close/collapse article" msgstr "AizvÄ“rt rakstu" -#: include/functions.php:1930 +#: include/functions.php:1932 #: plugins/embed_original/init.php:33 #, fuzzy msgid "Toggle embed original" msgstr "PÄrslÄ“gt publicēšanu" -#: include/functions.php:1931 +#: include/functions.php:1933 #, fuzzy msgid "Article selection" msgstr "Apgriezt rakstu iezÄ«mēšanu" -#: include/functions.php:1932 +#: include/functions.php:1934 msgid "Select all articles" msgstr "IezÄ«mÄ“t visus rakstus" -#: include/functions.php:1933 +#: include/functions.php:1935 #, fuzzy msgid "Select unread" msgstr "IezÄ«mÄ“t nelasÄ«tos rakstus" -#: include/functions.php:1934 +#: include/functions.php:1936 #, fuzzy msgid "Select starred" msgstr "Uzlikt zvaigzni" -#: include/functions.php:1935 +#: include/functions.php:1937 #, fuzzy msgid "Select published" msgstr "IezÄ«mÄ“t publicÄ“tos rakstus" -#: include/functions.php:1936 +#: include/functions.php:1938 #, fuzzy msgid "Invert selection" msgstr "Apgriezt rakstu iezÄ«mēšanu" -#: include/functions.php:1937 +#: include/functions.php:1939 #, fuzzy msgid "Deselect everything" msgstr "NeatzÄ«mÄ“t rakstus" -#: include/functions.php:1938 +#: include/functions.php:1940 #: classes/pref/feeds.php:521 #: classes/pref/feeds.php:754 msgid "Feed" msgstr "Barotne" -#: include/functions.php:1939 +#: include/functions.php:1941 #, fuzzy msgid "Refresh current feed" msgstr "Atjaunot aktÄ«vo barotni" -#: include/functions.php:1940 +#: include/functions.php:1942 #, fuzzy msgid "Un/hide read feeds" msgstr "(Ne)rÄdÄ«t lasÄ«tÄs barotnes" -#: include/functions.php:1941 +#: include/functions.php:1943 #: classes/pref/feeds.php:1275 msgid "Subscribe to feed" msgstr "AbonÄ“t barotni" -#: include/functions.php:1942 +#: include/functions.php:1944 #: js/FeedTree.js:135 #: js/PrefFeedTree.js:67 msgid "Edit feed" msgstr "Rediģēt barotni" -#: include/functions.php:1944 +#: include/functions.php:1946 #, fuzzy msgid "Reverse headlines" msgstr "Apgriezt virsrakstu secÄ«bu" -#: include/functions.php:1945 +#: include/functions.php:1947 #, fuzzy msgid "Debug feed update" msgstr "AtslÄ“gt atjaunojumus" -#: include/functions.php:1946 +#: include/functions.php:1948 #: js/FeedTree.js:178 msgid "Mark all feeds as read" msgstr "AtzÄ«mÄ“t visas barotnes kÄ lasÄ«tas" -#: include/functions.php:1947 +#: include/functions.php:1949 #, fuzzy msgid "Un/collapse current category" msgstr "Ievietot kategorijÄ:" -#: include/functions.php:1948 +#: include/functions.php:1950 #, fuzzy msgid "Toggle combined mode" msgstr "PÄrslÄ“gt publicēšanu" -#: include/functions.php:1949 +#: include/functions.php:1951 #, fuzzy msgid "Toggle auto expand in combined mode" msgstr "PÄrslÄ“gt publicēšanu" -#: include/functions.php:1950 +#: include/functions.php:1952 #, fuzzy msgid "Go to" msgstr "Doties uz..." -#: include/functions.php:1952 +#: include/functions.php:1954 msgid "Fresh" msgstr "" -#: include/functions.php:1955 +#: include/functions.php:1957 #: js/tt-rss.js:431 #: js/tt-rss.js:584 msgid "Tag cloud" msgstr "IezÄ«mju mÄkonis" -#: include/functions.php:1957 +#: include/functions.php:1959 #, fuzzy msgid "Other" msgstr "Citas barotnes" -#: include/functions.php:1958 +#: include/functions.php:1960 #: classes/pref/labels.php:281 msgid "Create label" msgstr "Izveidot etiÄ·eti" -#: include/functions.php:1959 +#: include/functions.php:1961 #: classes/pref/filters.php:654 msgid "Create filter" msgstr "Izveidot filtru" -#: include/functions.php:1960 +#: include/functions.php:1962 #, fuzzy msgid "Un/collapse sidebar" msgstr "Sakļaut sÄnjoslu" -#: include/functions.php:1961 +#: include/functions.php:1963 #, fuzzy msgid "Show help dialog" msgstr "RÄdÄ«t meklēšanas logu" -#: include/functions.php:2446 +#: include/functions.php:2471 #, php-format msgid "Search results: %s" msgstr "Meklēšanas rezultÄti: %s" -#: include/functions.php:2937 -#: js/viewfeed.js:1969 +#: include/functions.php:2962 +#: js/viewfeed.js:1978 msgid "Click to play" msgstr "Klikšķiniet, lai atskaņotu" -#: include/functions.php:2938 -#: js/viewfeed.js:1968 +#: include/functions.php:2963 +#: js/viewfeed.js:1977 msgid "Play" msgstr "Atskaņot" -#: include/functions.php:3055 +#: include/functions.php:3080 msgid " - " msgstr "–" -#: include/functions.php:3077 -#: include/functions.php:3371 +#: include/functions.php:3102 +#: include/functions.php:3396 #: classes/article.php:281 msgid "no tags" msgstr "nav iezÄ«mju" -#: include/functions.php:3087 +#: include/functions.php:3112 #: classes/feeds.php:686 msgid "Edit tags for this article" msgstr "Rediģēt šī raksta iezÄ«mes" -#: include/functions.php:3116 +#: include/functions.php:3141 #: classes/feeds.php:642 msgid "Originally from:" msgstr "SÄkotnÄ“jais no:" -#: include/functions.php:3129 +#: include/functions.php:3154 #: classes/feeds.php:655 #: classes/pref/feeds.php:540 msgid "Feed URL" msgstr "Barotnes URL" -#: include/functions.php:3160 +#: include/functions.php:3185 #: classes/dlg.php:37 #: classes/dlg.php:60 #: classes/dlg.php:93 @@ -922,7 +845,7 @@ msgstr "Barotnes URL" #: classes/backend.php:105 #: classes/pref/users.php:99 #: classes/pref/filters.php:147 -#: classes/pref/prefs.php:1059 +#: classes/pref/prefs.php:1105 #: classes/pref/feeds.php:1588 #: classes/pref/feeds.php:1660 #: plugins/import_export/init.php:406 @@ -933,15 +856,15 @@ msgstr "Barotnes URL" msgid "Close this window" msgstr "AizvÄ“rt Å¡o logu" -#: include/functions.php:3396 +#: include/functions.php:3421 msgid "(edit note)" msgstr "(rediģēt piezÄ«mi)" -#: include/functions.php:3631 +#: include/functions.php:3656 msgid "unknown type" msgstr "nezinÄms tips" -#: include/functions.php:3687 +#: include/functions.php:3712 msgid "Attachments" msgstr "Pielikumi" @@ -965,6 +888,7 @@ msgstr "Nepareiza parole" #: include/login_form.php:201 #: classes/handler/public.php:489 +#: classes/pref/prefs.php:552 msgid "Language:" msgstr "Valoda:" @@ -975,7 +899,7 @@ msgstr "Profils:" #: include/login_form.php:213 #: classes/handler/public.php:233 #: classes/rpc.php:64 -#: classes/pref/prefs.php:995 +#: classes/pref/prefs.php:1041 msgid "Default profile" msgstr "NoklusÄ“tais profils" @@ -993,7 +917,7 @@ msgstr "" msgid "Log in" msgstr "Pieteikties" -#: include/sessions.php:58 +#: include/sessions.php:62 msgid "Session failed to validate (incorrect IP)" msgstr "NeizdevÄs validÄ“t sesiju (mainÄ«jusies IP adrese)" @@ -1009,7 +933,7 @@ msgstr "Å Ä« raksta iezÄ«mes (atdalÄ«tas ar komatiem):" #: classes/pref/users.php:176 #: classes/pref/labels.php:79 #: classes/pref/filters.php:405 -#: classes/pref/prefs.php:941 +#: classes/pref/prefs.php:987 #: classes/pref/feeds.php:733 #: classes/pref/feeds.php:881 #: plugins/nsfw/init.php:86 @@ -1021,16 +945,16 @@ msgstr "SaglabÄt" #: classes/article.php:206 #: classes/handler/public.php:460 #: classes/handler/public.php:502 -#: classes/feeds.php:1028 -#: classes/feeds.php:1080 -#: classes/feeds.php:1140 +#: classes/feeds.php:1031 +#: classes/feeds.php:1083 +#: classes/feeds.php:1143 #: 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:943 +#: classes/pref/prefs.php:989 #: classes/pref/feeds.php:734 #: classes/pref/feeds.php:884 #: classes/pref/feeds.php:1797 @@ -1156,6 +1080,18 @@ msgstr "PÄrvietot atpakaļ" msgid "Sorry, login and email combination not found." msgstr "" +#: classes/handler/public.php:842 +msgid "Your access level is insufficient to run this script." +msgstr "Jums nav nepiecieÅ¡amo skripta palaiÅ¡anas tiesÄ«bu. " + +#: classes/handler/public.php:866 +msgid "Database Updater" +msgstr "Datu bÄzes atjaunotÄjs" + +#: classes/handler/public.php:931 +msgid "Perform updates" +msgstr "IzpildÄ«t atjaunojumus" + #: 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." @@ -1255,7 +1191,7 @@ msgstr "IezÄ«mÄ“t:" #: classes/pref/filters.php:648 #: classes/pref/filters.php:737 #: classes/pref/filters.php:764 -#: classes/pref/prefs.php:955 +#: classes/pref/prefs.php:1001 #: classes/pref/feeds.php:1266 #: classes/pref/feeds.php:1536 #: classes/pref/feeds.php:1606 @@ -1275,7 +1211,7 @@ msgstr "Apgriezt" #: classes/pref/filters.php:650 #: classes/pref/filters.php:739 #: classes/pref/filters.php:766 -#: classes/pref/prefs.php:957 +#: classes/pref/prefs.php:1003 #: classes/pref/feeds.php:1268 #: classes/pref/feeds.php:1538 #: classes/pref/feeds.php:1608 @@ -1368,44 +1304,44 @@ msgid "No articles found to display." msgstr "Netika atrasti raksti, ko rÄdÄ«t." #: classes/feeds.php:759 -#: classes/feeds.php:923 +#: classes/feeds.php:926 #, php-format msgid "Feeds last updated at %s" msgstr "Barotnes pÄ“dÄ“jo reizi atjaunotas %s." #: classes/feeds.php:769 -#: classes/feeds.php:933 +#: classes/feeds.php:936 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:913 +#: classes/feeds.php:916 msgid "No feed selected." msgstr "Nav izvÄ“lÄ“ta barotne." -#: classes/feeds.php:966 -#: classes/feeds.php:974 +#: classes/feeds.php:969 +#: classes/feeds.php:977 msgid "Feed or site URL" msgstr "Barotnes vai vietnes URL" -#: classes/feeds.php:980 +#: classes/feeds.php:983 #: 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 +#: classes/feeds.php:991 msgid "Available feeds" msgstr "PieejamÄs barotnes" -#: classes/feeds.php:1000 +#: classes/feeds.php:1003 #: 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/feeds.php:1007 #: classes/pref/users.php:402 #: classes/pref/feeds.php:596 #: classes/pref/feeds.php:822 @@ -1413,30 +1349,30 @@ msgstr "AutentifikÄcija" msgid "Login" msgstr "PieteikÅ¡anÄs" -#: classes/feeds.php:1007 -#: classes/pref/prefs.php:253 +#: classes/feeds.php:1010 +#: classes/pref/prefs.php:269 #: classes/pref/feeds.php:602 #: classes/pref/feeds.php:828 #: classes/pref/feeds.php:1778 msgid "Password" msgstr "Parole" -#: classes/feeds.php:1017 +#: classes/feeds.php:1020 msgid "This feed requires authentication." msgstr "Å im laukam ir nepiecieÅ¡ams autentificÄ“ties." -#: classes/feeds.php:1022 -#: classes/feeds.php:1078 +#: classes/feeds.php:1025 +#: classes/feeds.php:1081 #: classes/pref/feeds.php:1796 msgid "Subscribe" msgstr "PasÅ«tÄ«t" -#: classes/feeds.php:1025 +#: classes/feeds.php:1028 msgid "More feeds" msgstr "VairÄk barotnes" -#: classes/feeds.php:1048 -#: classes/feeds.php:1139 +#: classes/feeds.php:1051 +#: classes/feeds.php:1142 #: classes/pref/users.php:332 #: classes/pref/filters.php:641 #: classes/pref/feeds.php:1259 @@ -1444,19 +1380,19 @@ msgstr "VairÄk barotnes" msgid "Search" msgstr "MeklÄ“t" -#: classes/feeds.php:1052 +#: classes/feeds.php:1055 msgid "Popular feeds" msgstr "PopulÄrÄs barotnes" -#: classes/feeds.php:1053 +#: classes/feeds.php:1056 msgid "Feed archive" msgstr "Barotņu arhÄ«vs" -#: classes/feeds.php:1056 +#: classes/feeds.php:1059 msgid "limit:" msgstr "ierobežojumi:" -#: classes/feeds.php:1079 +#: classes/feeds.php:1082 #: classes/pref/users.php:358 #: classes/pref/labels.php:284 #: classes/pref/filters.php:398 @@ -1466,15 +1402,15 @@ msgstr "ierobežojumi:" msgid "Remove" msgstr "NovÄkt" -#: classes/feeds.php:1090 +#: classes/feeds.php:1093 msgid "Look for" msgstr "MeklÄ“t" -#: classes/feeds.php:1098 +#: classes/feeds.php:1101 msgid "Limit search to:" msgstr "Ierobežot meklēšanu:" -#: classes/feeds.php:1114 +#: classes/feeds.php:1117 msgid "This feed" msgstr "Å ajÄ barotnÄ“" @@ -1638,7 +1574,7 @@ msgstr "[tt-rss] paroles maiņas paziņojums" #: classes/pref/filters.php:645 #: classes/pref/filters.php:734 #: classes/pref/filters.php:761 -#: classes/pref/prefs.php:952 +#: classes/pref/prefs.php:998 #: classes/pref/feeds.php:1263 #: classes/pref/feeds.php:1533 #: classes/pref/feeds.php:1603 @@ -2058,214 +1994,219 @@ msgstr "IevadÄ«tÄs paroles nav vienÄdas." msgid "Function not supported by authentication module." msgstr "Funkiju neatbalsta autentifikÄcijas modulis." -#: classes/pref/prefs.php:120 +#: classes/pref/prefs.php:135 msgid "The configuration was saved." msgstr "IestatÄ«jumi ir saglabÄti." -#: classes/pref/prefs.php:134 +#: classes/pref/prefs.php:150 #, php-format msgid "Unknown option: %s" msgstr "NezinÄma iespÄ“ja %s." -#: classes/pref/prefs.php:148 +#: classes/pref/prefs.php:164 msgid "Your personal data has been saved." msgstr "JÅ«su personÄ«gie dati ir saglabÄti." -#: classes/pref/prefs.php:188 +#: classes/pref/prefs.php:204 msgid "Personal data / Authentication" msgstr "PersonÄ«gie dati/autentifikÄcija" -#: classes/pref/prefs.php:208 +#: classes/pref/prefs.php:224 msgid "Personal data" msgstr "PersonÄ«gie dati" -#: classes/pref/prefs.php:218 +#: classes/pref/prefs.php:234 msgid "Full name" msgstr "VÄrds un uzvÄrds" -#: classes/pref/prefs.php:222 +#: classes/pref/prefs.php:238 msgid "E-mail" msgstr "E-pasts" -#: classes/pref/prefs.php:228 +#: classes/pref/prefs.php:244 msgid "Access level" msgstr "Pieejas lÄ«menis" -#: classes/pref/prefs.php:238 +#: classes/pref/prefs.php:254 msgid "Save data" msgstr "SaglabÄt datus" -#: classes/pref/prefs.php:260 +#: classes/pref/prefs.php:276 msgid "Your password is at default value, please change it." msgstr "Jums ir norÄdÄ«ta noklusÄ“tÄ parole, lÅ«dzu nomainiet to." -#: classes/pref/prefs.php:287 +#: classes/pref/prefs.php:303 msgid "Changing your current password will disable OTP." msgstr "" -#: classes/pref/prefs.php:292 +#: classes/pref/prefs.php:308 msgid "Old password" msgstr "VecÄ parole" -#: classes/pref/prefs.php:295 +#: classes/pref/prefs.php:311 msgid "New password" msgstr "JaunÄ parole" -#: classes/pref/prefs.php:300 +#: classes/pref/prefs.php:316 msgid "Confirm password" msgstr "Apstipriniet paroli" -#: classes/pref/prefs.php:310 +#: classes/pref/prefs.php:326 msgid "Change password" msgstr "NomainÄ«t paroli" -#: classes/pref/prefs.php:316 +#: classes/pref/prefs.php:332 msgid "One time passwords / Authenticator" msgstr "VienreizlietojamÄ parole/autentifikÄcija" -#: classes/pref/prefs.php:320 +#: classes/pref/prefs.php:336 msgid "One time passwords are currently enabled. Enter your current password below to disable." msgstr "" -#: classes/pref/prefs.php:345 -#: classes/pref/prefs.php:396 +#: classes/pref/prefs.php:361 +#: classes/pref/prefs.php:412 msgid "Enter your password" msgstr "Ievadiet savu paroli" -#: classes/pref/prefs.php:356 +#: classes/pref/prefs.php:372 msgid "Disable OTP" msgstr "AtslÄ“gt vienreizlietojamo paroli" -#: classes/pref/prefs.php:362 +#: classes/pref/prefs.php:378 msgid "You will need a compatible Authenticator to use this. Changing your password would automatically disable OTP." msgstr "Lai to lietotu, jums bÅ«s nepiecieÅ¡ams savietojams autentifikators. JÅ«su paroles maiņa automÄtiski atslÄ“gs vienreizlietojamo paroli." -#: classes/pref/prefs.php:364 +#: classes/pref/prefs.php:380 msgid "Scan the following code by the Authenticator application:" msgstr "Ar autentifikÄcijas moduli noskenÄ“jiet sekojoÅ¡o kodu:" -#: classes/pref/prefs.php:405 +#: classes/pref/prefs.php:421 msgid "I have scanned the code and would like to enable OTP" msgstr "Esmu noskenÄ“jis Å¡o kodu un vÄ“los iespÄ“jot vienreizlietojamo paroli" -#: classes/pref/prefs.php:413 +#: classes/pref/prefs.php:429 msgid "Enable OTP" msgstr "IespÄ“jot vienreizlietojamo paroli" -#: classes/pref/prefs.php:451 +#: classes/pref/prefs.php:475 msgid "Some preferences are only available in default profile." msgstr "" -#: classes/pref/prefs.php:545 +#: classes/pref/prefs.php:585 msgid "Customize" msgstr "PielÄgot" -#: classes/pref/prefs.php:605 +#: classes/pref/prefs.php:645 msgid "Register" msgstr "ReÄ£istrÄ“t" -#: classes/pref/prefs.php:609 +#: classes/pref/prefs.php:649 msgid "Clear" msgstr "AttÄ«rÄ«t" -#: classes/pref/prefs.php:615 +#: classes/pref/prefs.php:655 #, php-format msgid "Current server time: %s (UTC)" msgstr "TekoÅ¡Ä laika zona ir: %s (UTC)" -#: classes/pref/prefs.php:648 +#: classes/pref/prefs.php:688 msgid "Save configuration" msgstr "SaglabÄt iestatÄ«jumus" -#: classes/pref/prefs.php:651 +#: classes/pref/prefs.php:692 +#, fuzzy +msgid "Save and exit preferences" +msgstr "Iziet no iestatÄ«jumiem" + +#: classes/pref/prefs.php:697 msgid "Manage profiles" msgstr "PÄrvaldÄ«t profilus" -#: classes/pref/prefs.php:654 +#: classes/pref/prefs.php:700 msgid "Reset to defaults" msgstr "AtstatÄ«t uz noklusÄ“tajiem" -#: classes/pref/prefs.php:678 -#: classes/pref/prefs.php:680 +#: classes/pref/prefs.php:724 +#: classes/pref/prefs.php:726 msgid "Plugins" msgstr "" -#: classes/pref/prefs.php:682 +#: classes/pref/prefs.php:728 msgid "You will need to reload Tiny Tiny RSS for plugin changes to take effect." msgstr "" -#: classes/pref/prefs.php:684 +#: classes/pref/prefs.php:730 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:710 +#: classes/pref/prefs.php:756 msgid "System plugins" msgstr "" -#: classes/pref/prefs.php:714 -#: classes/pref/prefs.php:768 +#: classes/pref/prefs.php:760 +#: classes/pref/prefs.php:814 msgid "Plugin" msgstr "" -#: classes/pref/prefs.php:715 -#: classes/pref/prefs.php:769 +#: classes/pref/prefs.php:761 +#: classes/pref/prefs.php:815 msgid "Description" msgstr "" -#: classes/pref/prefs.php:716 -#: classes/pref/prefs.php:770 +#: classes/pref/prefs.php:762 +#: classes/pref/prefs.php:816 msgid "Version" msgstr "" -#: classes/pref/prefs.php:717 -#: classes/pref/prefs.php:771 +#: classes/pref/prefs.php:763 +#: classes/pref/prefs.php:817 msgid "Author" msgstr "" -#: classes/pref/prefs.php:746 -#: classes/pref/prefs.php:803 +#: classes/pref/prefs.php:792 +#: classes/pref/prefs.php:849 msgid "more info" msgstr "" -#: classes/pref/prefs.php:755 -#: classes/pref/prefs.php:812 +#: classes/pref/prefs.php:801 +#: classes/pref/prefs.php:858 #, fuzzy msgid "Clear data" msgstr "DzÄ“st barotņu datus" -#: classes/pref/prefs.php:764 +#: classes/pref/prefs.php:810 msgid "User plugins" msgstr "" -#: classes/pref/prefs.php:827 +#: classes/pref/prefs.php:873 #, fuzzy msgid "Enable selected plugins" msgstr "IespÄ“jot barotņu kategorijas" -#: classes/pref/prefs.php:882 -#: classes/pref/prefs.php:900 +#: classes/pref/prefs.php:928 +#: classes/pref/prefs.php:946 msgid "Incorrect password" msgstr "Nepareiza parole" -#: classes/pref/prefs.php:926 +#: classes/pref/prefs.php:972 #, 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:966 +#: classes/pref/prefs.php:1012 msgid "Create profile" msgstr "Izveidot profilu" -#: classes/pref/prefs.php:989 -#: classes/pref/prefs.php:1019 +#: classes/pref/prefs.php:1035 +#: classes/pref/prefs.php:1065 msgid "(active)" msgstr "(aktÄ«vs)" -#: classes/pref/prefs.php:1053 +#: classes/pref/prefs.php:1099 msgid "Remove selected profiles" msgstr "DzÄ“st iezÄ«mÄ“tos profilus" -#: classes/pref/prefs.php:1055 +#: classes/pref/prefs.php:1101 msgid "Activate profile" msgstr "AktivizÄ“t profilu" @@ -2776,15 +2717,15 @@ msgstr "" msgid "The document has incorrect format." msgstr "" -#: plugins/googlereaderimport/init.php:326 +#: plugins/googlereaderimport/init.php:328 msgid "Import starred or shared items from Google Reader" msgstr "" -#: plugins/googlereaderimport/init.php:330 +#: plugins/googlereaderimport/init.php:332 msgid "Paste your starred.json or shared.json into the form below." msgstr "" -#: plugins/googlereaderimport/init.php:344 +#: plugins/googlereaderimport/init.php:346 msgid "Import my Starred items" msgstr "" @@ -2878,23 +2819,23 @@ msgstr "Gatavs atjaunoÅ¡anai." msgid "Start update" msgstr "SÄkt atjaunoÅ¡anu" -#: js/feedlist.js:392 -#: js/feedlist.js:420 +#: js/feedlist.js:394 +#: js/feedlist.js:422 #: plugins/digest/digest.js:26 msgid "Mark all articles in %s as read?" msgstr "Vai atzÄ«mÄ“t visus rakstus %s kÄ lasÄ«tus?" -#: js/feedlist.js:411 +#: js/feedlist.js:413 #, fuzzy msgid "Mark all articles in %s older than 1 day as read?" msgstr "Vai atzÄ«mÄ“t visus rakstus %s kÄ lasÄ«tus?" -#: js/feedlist.js:414 +#: js/feedlist.js:416 #, fuzzy msgid "Mark all articles in %s older than 1 week as read?" msgstr "Vai atzÄ«mÄ“t visus rakstus %s kÄ lasÄ«tus?" -#: js/feedlist.js:417 +#: js/feedlist.js:419 #, fuzzy msgid "Mark all articles in %s older than 2 weeks as read?" msgstr "Vai atzÄ«mÄ“t visus rakstus %s kÄ lasÄ«tus?" @@ -3439,150 +3380,150 @@ msgstr "PÄrvÄ“rtÄ“t rakstus" msgid "New version available!" msgstr "Ir pieejama jauna versija!" -#: js/viewfeed.js:104 +#: js/viewfeed.js:106 msgid "Cancel search" msgstr "Atcelt meklēšanu" -#: js/viewfeed.js:438 +#: js/viewfeed.js:441 #: plugins/digest/digest.js:258 #: plugins/digest/digest.js:714 msgid "Unstar article" msgstr "Atzvaigžņot rakstu" -#: js/viewfeed.js:443 +#: js/viewfeed.js:446 #: plugins/digest/digest.js:260 #: plugins/digest/digest.js:718 msgid "Star article" msgstr "Zvaigžņot rakstu" -#: js/viewfeed.js:476 +#: js/viewfeed.js:479 #: plugins/digest/digest.js:263 #: plugins/digest/digest.js:749 msgid "Unpublish article" msgstr "AtpublicÄ“t rakstu" -#: js/viewfeed.js:481 +#: js/viewfeed.js:484 #: plugins/digest/digest.js:265 #: plugins/digest/digest.js:754 msgid "Publish article" msgstr "PublicÄ“t rakstu" -#: js/viewfeed.js:677 -#: js/viewfeed.js:705 -#: js/viewfeed.js:732 -#: js/viewfeed.js:795 -#: js/viewfeed.js:829 -#: js/viewfeed.js:949 -#: js/viewfeed.js:992 -#: js/viewfeed.js:1045 -#: js/viewfeed.js:2051 +#: js/viewfeed.js:680 +#: js/viewfeed.js:708 +#: js/viewfeed.js:735 +#: js/viewfeed.js:798 +#: js/viewfeed.js:832 +#: js/viewfeed.js:952 +#: js/viewfeed.js:995 +#: js/viewfeed.js:1048 +#: js/viewfeed.js:2060 #: plugins/mailto/init.js:7 #: plugins/mail/mail.js:7 msgid "No articles are selected." msgstr "Nav norÄdÄ«ts raksts." -#: js/viewfeed.js:957 +#: js/viewfeed.js:960 #, 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:959 +#: js/viewfeed.js:962 #, 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:1001 +#: js/viewfeed.js:1004 #, 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:1004 +#: js/viewfeed.js:1007 #, 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:1006 +#: js/viewfeed.js:1009 msgid "Please note that unstarred articles might get purged on next feed update." msgstr "" -#: js/viewfeed.js:1051 +#: js/viewfeed.js:1054 #, 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:1075 +#: js/viewfeed.js:1078 msgid "Edit article Tags" msgstr "Rediģēt rakstu iezÄ«mes" -#: js/viewfeed.js:1081 +#: js/viewfeed.js:1084 #, fuzzy msgid "Saving article tags..." msgstr "Rediģēt rakstu iezÄ«mes" -#: js/viewfeed.js:1278 +#: js/viewfeed.js:1287 msgid "No article is selected." msgstr "Nav izvÄ“lÄ“ts raksts." -#: js/viewfeed.js:1313 +#: js/viewfeed.js:1322 msgid "No articles found to mark" msgstr "Nav atrasti iezÄ«mÄ“jamie raksti" -#: js/viewfeed.js:1315 +#: js/viewfeed.js:1324 #, 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:1827 +#: js/viewfeed.js:1836 msgid "Open original article" msgstr "AtvÄ“rt sÄkotnÄ“jo rakstu" -#: js/viewfeed.js:1833 +#: js/viewfeed.js:1842 #, fuzzy msgid "Display article URL" msgstr "ParÄdÄ«t URL" -#: js/viewfeed.js:1852 +#: js/viewfeed.js:1861 #, fuzzy msgid "Toggle marked" msgstr "PÄrslÄ“gt zvaigžņoÅ¡anu" -#: js/viewfeed.js:1933 +#: js/viewfeed.js:1942 msgid "Assign label" msgstr "Pievienot etiÄ·eti" -#: js/viewfeed.js:1938 +#: js/viewfeed.js:1947 msgid "Remove label" msgstr "DzÄ“st etiÄ·eti" -#: js/viewfeed.js:1962 +#: js/viewfeed.js:1971 msgid "Playing..." msgstr "Atskaņo..." -#: js/viewfeed.js:1963 +#: js/viewfeed.js:1972 msgid "Click to pause" msgstr "Klikšķiniet, lai apturÄ“tu" -#: js/viewfeed.js:2020 +#: js/viewfeed.js:2029 msgid "Please enter new score for selected articles:" msgstr "Ievadiet jauno vÄ“rtÄ“jumu izvÄ“lÄ“tajiem rakstiem:" -#: js/viewfeed.js:2062 +#: js/viewfeed.js:2071 msgid "Please enter new score for this article:" msgstr "Ievadiet jaunu vÄ“rtÄ“jumu Å¡im rakstam:" -#: js/viewfeed.js:2095 +#: js/viewfeed.js:2104 #, fuzzy msgid "Article URL:" msgstr "Visus rakstus" @@ -3704,6 +3645,58 @@ 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." +#~ msgid "Could not update database" +#~ msgstr "NeizdevÄs atjaunot datu bÄzi" + +#~ msgid "Could not find necessary schema file, need version:" +#~ msgstr "NeizdevÄs atrast nepiecieÅ¡amo shÄ“mas failu, nepiecieÅ¡ama versija:" + +#~ msgid ", found: " +#~ msgstr ", atradu:" + +#~ msgid "Tiny Tiny RSS database is up to date." +#~ msgstr "Tiny Tiny RSS datubÄze ir aktuÄla." + +#~ msgid "Please backup your database before proceeding." +#~ msgstr "LÅ«dzu pirms turpinÄÅ¡anas atjaunojiet datu bÄzi." + +#~ msgid "Your Tiny Tiny RSS database needs update to the latest version (<b>%d</b> to <b>%d</b>)." +#~ msgstr "JÅ«su Tiny Tiny RSS datubÄzi ir nepiecieÅ¡ams atjaunot uz jaunÄko versiju (no <b>%d</b> uz <b>%d</b>)." + +#~ msgid "Performing updates..." +#~ msgstr "Izpildu atjaunojumus..." + +#~ msgid "Updating to version %d..." +#~ msgstr "Atjaunoju uz versiju %d..." + +#~ msgid "Checking version... " +#~ msgstr "PÄrbaudu versiju..." + +#~ msgid "OK!" +#~ msgstr "KÄrtÄ«bÄ!" + +#~ msgid "ERROR!" +#~ msgstr "Kļūda!" + +#, fuzzy +#~ 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] "" +#~ "Pabeigts. IzpildÄ«ju <b>%d</b> shÄ“mas atjaunojumu(s)\n" +#~ "\t\t\tversija <b>%d</b>." +#~ msgstr[1] "" +#~ "Pabeigts. IzpildÄ«ju <b>%d</b> shÄ“mas atjaunojumu(s)\n" +#~ "\t\t\tversija <b>%d</b>." + +#~ msgid "Your database schema is from a newer version of Tiny Tiny RSS." +#~ msgstr "JÅ«su datu bÄzes shÄ“ma ir no jaunÄkas Tiny Tiny RSS versijas." + +#~ msgid "Found schema version: <b>%d</b>, required: <b>%d</b>." +#~ msgstr "Atradu shÄ“mu ar versiju: <b>%d</b>, nepiecieÅ¡ama: <b>%d</b>." + +#~ msgid "Schema upgrade impossible. Please update Tiny Tiny RSS files to the newer version and continue." +#~ msgstr "Nav iespÄ“jams veikt shÄ“mas atjaunoÅ¡anu. LÅ«dzu, pirms turpiniet, atjaunojiet Tiny Tiny RSS failus uz jaunÄku versiju." + #~ msgid "Mark feed as read" #~ msgstr "AtzÄ«mÄ“t barotni kÄ lasÄ«tu" @@ -3717,9 +3710,6 @@ msgstr "LÅ«dzu neaizveriet logu lÄ«dz ir pabeigta atjaunoÅ¡ana. Pirms turpinÄt, #~ msgid "When this option is enabled, headlines in Special feeds and Labels are grouped by feeds" #~ msgstr "Ja šī iespÄ“ja ir ieslÄ“gta, Ä«paÅ¡o barotņu un iezÄ«mju virsraksti tiek grupÄ“ti pÄ“c barotnÄ“m" -#~ msgid "Title" -#~ msgstr "Virsraksts" - #~ msgid "Title or Content" #~ msgstr "Virsraksts vai saturs" diff --git a/locale/nb_NO/LC_MESSAGES/messages.mo b/locale/nb_NO/LC_MESSAGES/messages.mo Binary files differindex 18c1425a8..27f310507 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 b5e4d5195..3dc84a76f 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-04-04 09:06+0400\n" +"POT-Creation-Date: 2013-04-04 21:31+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" @@ -101,105 +101,6 @@ msgstr "Superbruker" msgid "Administrator" msgstr "Administrator" -#: db-updater.php:19 -msgid "Your access level is insufficient to run this script." -msgstr "AdgangsnivÃ¥et ditt er for lavt for Ã¥ kjøre dette scriptet" - -#: db-updater.php:44 -msgid "Database Updater" -msgstr "Databaseoppdaterer" - -#: db-updater.php:87 -msgid "Could not update database" -msgstr "Kunne ikke oppdatere databasen" - -#: db-updater.php:90 -msgid "Could not find necessary schema file, need version:" -msgstr "Kunne ikke finne den nødvendige skjemafilen, nødvendig versjon:" - -#: db-updater.php:91 -msgid ", found: " -msgstr ", funnet: " - -#: db-updater.php:94 -msgid "Tiny Tiny RSS database is up to date." -msgstr "Tiny Tiny RSS-databasen er oppdatert" - -#: 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:648 -#: classes/handler/public.php:736 -#: classes/handler/public.php:818 -msgid "Return to Tiny Tiny RSS" -msgstr "Returner til Tiny Tiny RSS" - -#: db-updater.php:102 -msgid "Please backup your database before proceeding." -msgstr "Vennligst gjør backup av din database før du fortsetter." - -#: 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 "Din Tiny Tiny RSS-database trenger Ã¥ oppdateres til siste utgave (<b>%d</b> til <b>%d</b>)." - -#: db-updater.php:118 -msgid "Perform updates" -msgstr "Utfør oppdateringene" - -#: db-updater.php:123 -msgid "Performing updates..." -msgstr "Utfører oppdateringer..." - -#: db-updater.php:129 -#, php-format -msgid "Updating to version %d..." -msgstr "Oppdaterer til versjon %d..." - -#: db-updater.php:144 -msgid "Checking version... " -msgstr "Sjekker utgave..." - -#: db-updater.php:150 -msgid "OK!" -msgstr "OK!" - -#: db-updater.php:152 -msgid "ERROR!" -msgstr "Feil!" - -#: db-updater.php:160 -#, fuzzy, php-format -msgid "Finished. Performed <b>%d</b> update up to schema version <b>%d</b>." -msgid_plural "Finished. Performed <b>%d</b> updates up to schema version <b>%d</b>." -msgstr[0] "" -"Ferdig. <b>%d</b> utførte oppdatering(er)i følge skjema\n" -"\t\t\tversjon <b>%d</b>." -msgstr[1] "" -"Ferdig. <b>%d</b> utførte oppdatering(er)i følge skjema\n" -"\t\t\tversjon <b>%d</b>." - -#: db-updater.php:170 -msgid "Your database schema is from a newer version of Tiny Tiny RSS." -msgstr "" - -#: db-updater.php:172 -#, php-format -msgid "Found schema version: <b>%d</b>, required: <b>%d</b>." -msgstr "" - -#: db-updater.php:174 -msgid "Schema upgrade impossible. Please update Tiny Tiny RSS files to the newer version and continue." -msgstr "" - #: errors.php:9 msgid "This program requires XmlHttpRequest to function properly. Your browser doesn't seem to support it." msgstr "Dette programmet krever XmlHttpRequest for Ã¥ fungere slik det skal. Din nettleser ser ikke ut til Ã¥ støtte dette." @@ -255,7 +156,7 @@ msgstr "SQL escaping testen feilen, sjekk database og PHP konfigurasjonene dine. #: index.php:135 #: index.php:152 -#: index.php:276 +#: index.php:277 #: prefs.php:103 #: classes/backend.php:5 #: classes/pref/labels.php:296 @@ -263,7 +164,7 @@ msgstr "SQL escaping testen feilen, sjekk database og PHP konfigurasjonene dine. #: classes/pref/feeds.php:1331 #: plugins/digest/digest_body.php:63 #: js/feedlist.js:128 -#: js/feedlist.js:436 +#: js/feedlist.js:438 #: js/functions.js:420 #: js/functions.js:758 #: js/functions.js:1194 @@ -284,8 +185,8 @@ msgstr "SQL escaping testen feilen, sjekk database og PHP konfigurasjonene dine. #: js/prefs.js:1814 #: js/tt-rss.js:475 #: js/tt-rss.js:492 -#: js/viewfeed.js:772 -#: js/viewfeed.js:1200 +#: js/viewfeed.js:775 +#: js/viewfeed.js:1201 #: plugins/import_export/import_export.js:17 #: plugins/updater/updater.js:17 msgid "Loading, please wait..." @@ -309,13 +210,13 @@ msgid "All Articles" msgstr "Alle artikler" #: index.php:174 -#: include/functions.php:1953 +#: include/functions.php:1955 #: classes/feeds.php:106 msgid "Starred" msgstr "Favoritter" #: index.php:175 -#: include/functions.php:1954 +#: include/functions.php:1956 #: classes/feeds.php:107 msgid "Published" msgstr "Publisert" @@ -356,9 +257,13 @@ msgstr "" msgid "Oldest first" msgstr "" -#: index.php:191 -#: index.php:240 -#: include/functions.php:1943 +#: index.php:188 +msgid "Title" +msgstr "Tittel" + +#: index.php:192 +#: index.php:241 +#: include/functions.php:1945 #: classes/feeds.php:111 #: classes/feeds.php:441 #: js/FeedTree.js:128 @@ -367,108 +272,108 @@ msgstr "" msgid "Mark as read" msgstr "Marker som lest" -#: index.php:194 +#: index.php:195 msgid "Older than one day" msgstr "" -#: index.php:197 +#: index.php:198 msgid "Older than one week" msgstr "" -#: index.php:200 +#: index.php:201 msgid "Older than two weeks" msgstr "" -#: index.php:217 +#: index.php:218 msgid "Communication problem with server." msgstr "" -#: index.php:225 +#: index.php:226 msgid "New version of Tiny Tiny RSS is available!" msgstr "Ny versjon av Tiny Tiny Rss er tilgjengelig!" -#: index.php:230 +#: index.php:231 msgid "Actions..." msgstr "Handlinger..." -#: index.php:232 +#: index.php:233 #, fuzzy msgid "Preferences..." msgstr "Innstillinger" -#: index.php:233 +#: index.php:234 msgid "Search..." msgstr "Søk..." -#: index.php:234 +#: index.php:235 msgid "Feed actions:" msgstr "Nyhetsstrømshandlinger:" -#: index.php:235 +#: index.php:236 #: classes/handler/public.php:578 msgid "Subscribe to feed..." msgstr "Abonner pÃ¥ nyhetsstrøm..." -#: index.php:236 +#: index.php:237 msgid "Edit this feed..." msgstr "Rediger nyhetsstrømmen..." -#: index.php:237 +#: index.php:238 msgid "Rescore feed" msgstr "Sett poeng pÃ¥ nytt for nyhetskanalene" -#: index.php:238 +#: index.php:239 #: classes/pref/feeds.php:717 #: classes/pref/feeds.php:1283 #: js/PrefFeedTree.js:73 msgid "Unsubscribe" msgstr "Avabonner" -#: index.php:239 +#: index.php:240 msgid "All feeds:" msgstr "Alle nyhetsstrømmer:" -#: index.php:241 +#: index.php:242 msgid "(Un)hide read feeds" msgstr "Skjul/vis leste nyhetsstrømmer" -#: index.php:242 +#: index.php:243 msgid "Other actions:" msgstr "Andre handlinger:" -#: index.php:244 +#: index.php:245 msgid "Switch to digest..." msgstr "" -#: index.php:246 +#: index.php:247 #, fuzzy msgid "Show tag cloud..." msgstr "Tag-sky" -#: index.php:247 -#: include/functions.php:1929 +#: index.php:248 +#: include/functions.php:1931 #, fuzzy msgid "Toggle widescreen mode" msgstr "Tillatt endringer i kategorirekkefølgen?" -#: index.php:248 +#: index.php:249 msgid "Select by tags..." msgstr "" -#: index.php:249 +#: index.php:250 msgid "Create label..." msgstr "Lag merkelapp..." -#: index.php:250 +#: index.php:251 msgid "Create filter..." msgstr "Lag filter..." -#: index.php:251 +#: index.php:252 #, fuzzy msgid "Keyboard shortcuts help" msgstr "Tastatursnarveier" -#: index.php:260 +#: index.php:261 #: plugins/digest/digest_body.php:77 #: plugins/mobile/mobile-functions.php:62 #: plugins/mobile/mobile-functions.php:237 @@ -477,8 +382,8 @@ msgstr "Logg ut" #: prefs.php:36 #: prefs.php:121 -#: include/functions.php:1956 -#: classes/pref/prefs.php:428 +#: include/functions.php:1958 +#: classes/pref/prefs.php:444 msgid "Preferences" msgstr "Innstillinger" @@ -503,8 +408,8 @@ msgid "Filters" msgstr "Filtre" #: prefs.php:130 -#: include/functions.php:1146 -#: include/functions.php:1782 +#: include/functions.php:1148 +#: include/functions.php:1784 #: classes/pref/labels.php:90 #: plugins/mobile/mobile-functions.php:198 msgid "Labels" @@ -523,6 +428,24 @@ msgstr "Lag ny konto" msgid "New user registrations are administratively disabled." msgstr "Registrering av nye brukere er administrativt avskrudd" +#: 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:648 +#: classes/handler/public.php:736 +#: classes/handler/public.php:818 +#: classes/handler/public.php:893 +#: classes/handler/public.php:907 +#: classes/handler/public.php:914 +#: classes/handler/public.php:939 +msgid "Return to Tiny Tiny RSS" +msgstr "Returner til Tiny Tiny RSS" + #: 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 "Ditt midlertidige passord vil bli sendt til den oppgitte e-posten. Kontoer, som ikke blir logget inn pÃ¥, blir slettet automatisk 24 timer etter at passordet ble sendt." @@ -569,16 +492,16 @@ msgstr "Kontoen ble opprettet med suksess." msgid "New user registrations are currently closed." msgstr "Registrering av nye brukere er stengt." -#: update.php:55 +#: update.php:56 #, fuzzy msgid "Tiny Tiny RSS data update script." msgstr "Tiny Tiny RSS-databasen er oppdatert" #: include/digest.php:109 -#: include/functions.php:1155 -#: include/functions.php:1683 -#: include/functions.php:1768 -#: include/functions.php:1790 +#: include/functions.php:1157 +#: include/functions.php:1685 +#: include/functions.php:1770 +#: include/functions.php:1792 #: classes/opml.php:416 #: classes/pref/feeds.php:222 msgid "Uncategorized" @@ -595,337 +518,337 @@ msgstr[1] "Favorittartikler" msgid "No feeds found." msgstr "Ingen nyhetsstrømmer ble funnet." -#: include/functions.php:1144 -#: include/functions.php:1780 +#: include/functions.php:1146 +#: include/functions.php:1782 #: plugins/mobile/mobile-functions.php:171 msgid "Special" msgstr "Snarveier" -#: include/functions.php:1632 -#: classes/feeds.php:1101 +#: include/functions.php:1634 +#: classes/feeds.php:1104 #: classes/pref/filters.php:427 msgid "All feeds" msgstr "Alle Nyhetsstrømmer" -#: include/functions.php:1833 +#: include/functions.php:1835 msgid "Starred articles" msgstr "Favorittartikler" -#: include/functions.php:1835 +#: include/functions.php:1837 msgid "Published articles" msgstr "Publiserte artikler" -#: include/functions.php:1837 +#: include/functions.php:1839 msgid "Fresh articles" msgstr "Ferske artikler" -#: include/functions.php:1839 -#: include/functions.php:1951 +#: include/functions.php:1841 +#: include/functions.php:1953 msgid "All articles" msgstr "Alle artikler" -#: include/functions.php:1841 +#: include/functions.php:1843 #, fuzzy msgid "Archived articles" msgstr "Lagrede artikler" -#: include/functions.php:1843 +#: include/functions.php:1845 msgid "Recently read" msgstr "" -#: include/functions.php:1906 +#: include/functions.php:1908 msgid "Navigation" msgstr "Navigasjon" -#: include/functions.php:1907 +#: include/functions.php:1909 #, fuzzy msgid "Open next feed" msgstr "Generert nyhetsstrøm" -#: include/functions.php:1908 +#: include/functions.php:1910 msgid "Open previous feed" msgstr "" -#: include/functions.php:1909 +#: include/functions.php:1911 #, fuzzy msgid "Open next article" msgstr "Vis opprinnelig artikkelinnhold" -#: include/functions.php:1910 +#: include/functions.php:1912 #, fuzzy msgid "Open previous article" msgstr "Vis opprinnelig artikkelinnhold" -#: include/functions.php:1911 +#: include/functions.php:1913 msgid "Open next article (don't scroll long articles)" msgstr "" -#: include/functions.php:1912 +#: include/functions.php:1914 msgid "Open previous article (don't scroll long articles)" msgstr "" -#: include/functions.php:1913 +#: include/functions.php:1915 msgid "Show search dialog" msgstr "Vis søkevinduet" -#: include/functions.php:1914 +#: include/functions.php:1916 #, fuzzy msgid "Article" msgstr "Alle artikler" -#: include/functions.php:1915 +#: include/functions.php:1917 msgid "Toggle starred" msgstr "Sett som favoritt" -#: include/functions.php:1916 -#: js/viewfeed.js:1863 +#: include/functions.php:1918 +#: js/viewfeed.js:1872 msgid "Toggle published" msgstr "Sett som publisert" -#: include/functions.php:1917 -#: js/viewfeed.js:1841 +#: include/functions.php:1919 +#: js/viewfeed.js:1850 msgid "Toggle unread" msgstr "Sett som ulest" -#: include/functions.php:1918 +#: include/functions.php:1920 msgid "Edit tags" msgstr "Endre stikkord" -#: include/functions.php:1919 +#: include/functions.php:1921 #, fuzzy msgid "Dismiss selected" msgstr "Fjerne merkede artikler fra merkelappen?" -#: include/functions.php:1920 +#: include/functions.php:1922 #, fuzzy msgid "Dismiss read" msgstr "Publiser artiklen" -#: include/functions.php:1921 +#: include/functions.php:1923 #, fuzzy msgid "Open in new window" msgstr "Ã…pne artikkel i nytt nettleservindu" -#: include/functions.php:1922 -#: js/viewfeed.js:1882 +#: include/functions.php:1924 +#: js/viewfeed.js:1891 #, fuzzy msgid "Mark below as read" msgstr "Marker som lest" -#: include/functions.php:1923 -#: js/viewfeed.js:1876 +#: include/functions.php:1925 +#: js/viewfeed.js:1885 #, fuzzy msgid "Mark above as read" msgstr "Marker som lest" -#: include/functions.php:1924 +#: include/functions.php:1926 #, fuzzy msgid "Scroll down" msgstr "Alt ferdig." -#: include/functions.php:1925 +#: include/functions.php:1927 msgid "Scroll up" msgstr "" -#: include/functions.php:1926 +#: include/functions.php:1928 #, fuzzy msgid "Select article under cursor" msgstr "Velg artikkelen under musepekeren" -#: include/functions.php:1927 +#: include/functions.php:1929 #, fuzzy msgid "Email article" msgstr "Alle artikler" -#: include/functions.php:1928 +#: include/functions.php:1930 #, fuzzy msgid "Close/collapse article" msgstr "Fjern artikler" -#: include/functions.php:1930 +#: include/functions.php:1932 #: plugins/embed_original/init.php:33 #, fuzzy msgid "Toggle embed original" msgstr "Tillatt endringer i kategorirekkefølgen?" -#: include/functions.php:1931 +#: include/functions.php:1933 #, fuzzy msgid "Article selection" msgstr "Handlinger for aktive artikler" -#: include/functions.php:1932 +#: include/functions.php:1934 #, fuzzy msgid "Select all articles" msgstr "Fjern artikler" -#: include/functions.php:1933 +#: include/functions.php:1935 #, fuzzy msgid "Select unread" msgstr "Slett uleste artikler" -#: include/functions.php:1934 +#: include/functions.php:1936 #, fuzzy msgid "Select starred" msgstr "Sett som favorittartikkel" -#: include/functions.php:1935 +#: include/functions.php:1937 #, fuzzy msgid "Select published" msgstr "Slett uleste artikler" -#: include/functions.php:1936 +#: include/functions.php:1938 #, fuzzy msgid "Invert selection" msgstr "Handlinger for aktive artikler" -#: include/functions.php:1937 +#: include/functions.php:1939 #, fuzzy msgid "Deselect everything" msgstr "Fjern artikler" -#: include/functions.php:1938 +#: include/functions.php:1940 #: classes/pref/feeds.php:521 #: classes/pref/feeds.php:754 msgid "Feed" msgstr "Nyhetsstrøm" -#: include/functions.php:1939 +#: include/functions.php:1941 #, fuzzy msgid "Refresh current feed" msgstr "Oppdater aktive nyhetsstrømmer" -#: include/functions.php:1940 +#: include/functions.php:1942 #, fuzzy msgid "Un/hide read feeds" msgstr "Skjul/vis leste nyhetsstrømmer" -#: include/functions.php:1941 +#: include/functions.php:1943 #: classes/pref/feeds.php:1275 msgid "Subscribe to feed" msgstr "Abonner pÃ¥ nyhetsstrøm" -#: include/functions.php:1942 +#: include/functions.php:1944 #: js/FeedTree.js:135 #: js/PrefFeedTree.js:67 msgid "Edit feed" msgstr "Rediger nyhetsstrømmen" -#: include/functions.php:1944 +#: include/functions.php:1946 #, fuzzy msgid "Reverse headlines" msgstr "Motsatt titteloversikt (eldste først)" -#: include/functions.php:1945 +#: include/functions.php:1947 #, fuzzy msgid "Debug feed update" msgstr "Alle nyhetsstrømmer er oppdatert" -#: include/functions.php:1946 +#: include/functions.php:1948 #: js/FeedTree.js:178 msgid "Mark all feeds as read" msgstr "Marker alle nyhetsstrømmer som lest" -#: include/functions.php:1947 +#: include/functions.php:1949 #, fuzzy msgid "Un/collapse current category" msgstr "Velg for Ã¥ slÃ¥ sammen kategorien" -#: include/functions.php:1948 +#: include/functions.php:1950 #, fuzzy msgid "Toggle combined mode" msgstr "Tillatt endringer i kategorirekkefølgen?" -#: include/functions.php:1949 +#: include/functions.php:1951 #, fuzzy msgid "Toggle auto expand in combined mode" msgstr "Tillatt endringer i kategorirekkefølgen?" -#: include/functions.php:1950 +#: include/functions.php:1952 #, fuzzy msgid "Go to" msgstr "GÃ¥ til..." -#: include/functions.php:1952 +#: include/functions.php:1954 #, fuzzy msgid "Fresh" msgstr "Oppdater" -#: include/functions.php:1955 +#: include/functions.php:1957 #: js/tt-rss.js:431 #: js/tt-rss.js:584 msgid "Tag cloud" msgstr "Tag-sky" -#: include/functions.php:1957 +#: include/functions.php:1959 #, fuzzy msgid "Other" msgstr "Andre:" -#: include/functions.php:1958 +#: include/functions.php:1960 #: classes/pref/labels.php:281 msgid "Create label" msgstr "Lag merkelapp" -#: include/functions.php:1959 +#: include/functions.php:1961 #: classes/pref/filters.php:654 msgid "Create filter" msgstr "Lag filter" -#: include/functions.php:1960 +#: include/functions.php:1962 #, fuzzy msgid "Un/collapse sidebar" msgstr "Skjul nyhetskanalsslisten" -#: include/functions.php:1961 +#: include/functions.php:1963 #, fuzzy msgid "Show help dialog" msgstr "Vis søkevinduet" -#: include/functions.php:2446 +#: include/functions.php:2471 #, fuzzy, php-format msgid "Search results: %s" msgstr "Søkeresultat" -#: include/functions.php:2937 -#: js/viewfeed.js:1969 +#: include/functions.php:2962 +#: js/viewfeed.js:1978 #, fuzzy msgid "Click to play" msgstr "Trykk for Ã¥ endre" -#: include/functions.php:2938 -#: js/viewfeed.js:1968 +#: include/functions.php:2963 +#: js/viewfeed.js:1977 msgid "Play" msgstr "" -#: include/functions.php:3055 +#: include/functions.php:3080 msgid " - " msgstr "-" -#: include/functions.php:3077 -#: include/functions.php:3371 +#: include/functions.php:3102 +#: include/functions.php:3396 #: classes/article.php:281 msgid "no tags" msgstr "Ingen stikkord" -#: include/functions.php:3087 +#: include/functions.php:3112 #: classes/feeds.php:686 msgid "Edit tags for this article" msgstr "Rediger stikkordene for denne artikkelen" -#: include/functions.php:3116 +#: include/functions.php:3141 #: classes/feeds.php:642 #, fuzzy msgid "Originally from:" msgstr "Vis opprinnelig artikkelinnhold" -#: include/functions.php:3129 +#: include/functions.php:3154 #: classes/feeds.php:655 #: classes/pref/feeds.php:540 #, fuzzy msgid "Feed URL" msgstr "Nyhetsstrøm" -#: include/functions.php:3160 +#: include/functions.php:3185 #: classes/dlg.php:37 #: classes/dlg.php:60 #: classes/dlg.php:93 @@ -937,7 +860,7 @@ msgstr "Nyhetsstrøm" #: classes/backend.php:105 #: classes/pref/users.php:99 #: classes/pref/filters.php:147 -#: classes/pref/prefs.php:1059 +#: classes/pref/prefs.php:1105 #: classes/pref/feeds.php:1588 #: classes/pref/feeds.php:1660 #: plugins/import_export/init.php:406 @@ -948,16 +871,16 @@ msgstr "Nyhetsstrøm" msgid "Close this window" msgstr "Lukk dette vinduet" -#: include/functions.php:3396 +#: include/functions.php:3421 #, fuzzy msgid "(edit note)" msgstr "Rediger notat" -#: include/functions.php:3631 +#: include/functions.php:3656 msgid "unknown type" msgstr "Ukjent type" -#: include/functions.php:3687 +#: include/functions.php:3712 #, fuzzy msgid "Attachments" msgstr "Vedlegg:" @@ -982,6 +905,7 @@ msgstr "Feil brukernavn og/eller passord" #: include/login_form.php:201 #: classes/handler/public.php:489 +#: classes/pref/prefs.php:552 msgid "Language:" msgstr "SprÃ¥k:" @@ -993,7 +917,7 @@ msgstr "Fil:" #: include/login_form.php:213 #: classes/handler/public.php:233 #: classes/rpc.php:64 -#: classes/pref/prefs.php:995 +#: classes/pref/prefs.php:1041 #, fuzzy msgid "Default profile" msgstr "Standard artikkelbegrensning" @@ -1012,7 +936,7 @@ msgstr "" msgid "Log in" msgstr "Logg inn" -#: include/sessions.php:58 +#: include/sessions.php:62 msgid "Session failed to validate (incorrect IP)" msgstr "Sesjonen kunne ikke valideres (feil IP)" @@ -1029,7 +953,7 @@ msgstr "Denne artikkelens stikkord (separert med kommaer):" #: classes/pref/users.php:176 #: classes/pref/labels.php:79 #: classes/pref/filters.php:405 -#: classes/pref/prefs.php:941 +#: classes/pref/prefs.php:987 #: classes/pref/feeds.php:733 #: classes/pref/feeds.php:881 #: plugins/nsfw/init.php:86 @@ -1041,16 +965,16 @@ msgstr "Lagre" #: classes/article.php:206 #: classes/handler/public.php:460 #: classes/handler/public.php:502 -#: classes/feeds.php:1028 -#: classes/feeds.php:1080 -#: classes/feeds.php:1140 +#: classes/feeds.php:1031 +#: classes/feeds.php:1083 +#: classes/feeds.php:1143 #: 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:943 +#: classes/pref/prefs.php:989 #: classes/pref/feeds.php:734 #: classes/pref/feeds.php:884 #: classes/pref/feeds.php:1797 @@ -1182,6 +1106,18 @@ msgstr "GÃ¥ tilbake" msgid "Sorry, login and email combination not found." msgstr "" +#: classes/handler/public.php:842 +msgid "Your access level is insufficient to run this script." +msgstr "AdgangsnivÃ¥et ditt er for lavt for Ã¥ kjøre dette scriptet" + +#: classes/handler/public.php:866 +msgid "Database Updater" +msgstr "Databaseoppdaterer" + +#: classes/handler/public.php:931 +msgid "Perform updates" +msgstr "Utfør oppdateringene" + #: 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 "" @@ -1288,7 +1224,7 @@ msgstr "Velg:" #: classes/pref/filters.php:648 #: classes/pref/filters.php:737 #: classes/pref/filters.php:764 -#: classes/pref/prefs.php:955 +#: classes/pref/prefs.php:1001 #: classes/pref/feeds.php:1266 #: classes/pref/feeds.php:1536 #: classes/pref/feeds.php:1606 @@ -1308,7 +1244,7 @@ msgstr "Motsatt" #: classes/pref/filters.php:650 #: classes/pref/filters.php:739 #: classes/pref/filters.php:766 -#: classes/pref/prefs.php:957 +#: classes/pref/prefs.php:1003 #: classes/pref/feeds.php:1268 #: classes/pref/feeds.php:1538 #: classes/pref/feeds.php:1608 @@ -1406,46 +1342,46 @@ msgid "No articles found to display." msgstr "Ingen artikler funnet som kan vises" #: classes/feeds.php:759 -#: classes/feeds.php:923 +#: classes/feeds.php:926 #, fuzzy, php-format msgid "Feeds last updated at %s" msgstr "Oppdateringsfeil" #: classes/feeds.php:769 -#: classes/feeds.php:933 +#: classes/feeds.php:936 msgid "Some feeds have update errors (click for details)" msgstr "Noen nyhetsstrømmer har oppdateringsfeil (trykk for detaljer)" -#: classes/feeds.php:913 +#: classes/feeds.php:916 msgid "No feed selected." msgstr "Ingen valgt nyhetsstrøm" -#: classes/feeds.php:966 -#: classes/feeds.php:974 +#: classes/feeds.php:969 +#: classes/feeds.php:977 #, fuzzy msgid "Feed or site URL" msgstr "Nyhetsstrøm" -#: classes/feeds.php:980 +#: classes/feeds.php:983 #: 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 +#: classes/feeds.php:991 #, fuzzy msgid "Available feeds" msgstr "Alle Nyhetsstrømmer" -#: classes/feeds.php:1000 +#: classes/feeds.php:1003 #: classes/pref/users.php:139 #: classes/pref/feeds.php:590 #: classes/pref/feeds.php:818 msgid "Authentication" msgstr "Autentifisering" -#: classes/feeds.php:1004 +#: classes/feeds.php:1007 #: classes/pref/users.php:402 #: classes/pref/feeds.php:596 #: classes/pref/feeds.php:822 @@ -1453,8 +1389,8 @@ msgstr "Autentifisering" msgid "Login" msgstr "Logg inn" -#: classes/feeds.php:1007 -#: classes/pref/prefs.php:253 +#: classes/feeds.php:1010 +#: classes/pref/prefs.php:269 #: classes/pref/feeds.php:602 #: classes/pref/feeds.php:828 #: classes/pref/feeds.php:1778 @@ -1462,23 +1398,23 @@ msgstr "Logg inn" msgid "Password" msgstr "Passord:" -#: classes/feeds.php:1017 +#: classes/feeds.php:1020 msgid "This feed requires authentication." msgstr "Denne nyhetsstrømmen krever autentifisering" -#: classes/feeds.php:1022 -#: classes/feeds.php:1078 +#: classes/feeds.php:1025 +#: classes/feeds.php:1081 #: classes/pref/feeds.php:1796 msgid "Subscribe" msgstr "Abonner" -#: classes/feeds.php:1025 +#: classes/feeds.php:1028 #, fuzzy msgid "More feeds" msgstr "Flere nyhetsstrømmer" -#: classes/feeds.php:1048 -#: classes/feeds.php:1139 +#: classes/feeds.php:1051 +#: classes/feeds.php:1142 #: classes/pref/users.php:332 #: classes/pref/filters.php:641 #: classes/pref/feeds.php:1259 @@ -1486,22 +1422,22 @@ msgstr "Flere nyhetsstrømmer" msgid "Search" msgstr "Søk" -#: classes/feeds.php:1052 +#: classes/feeds.php:1055 #, fuzzy msgid "Popular feeds" msgstr "Vis nyhetsstrømmer" -#: classes/feeds.php:1053 +#: classes/feeds.php:1056 #, fuzzy msgid "Feed archive" msgstr "Nyhetsstrømshandlinger" -#: classes/feeds.php:1056 +#: classes/feeds.php:1059 #, fuzzy msgid "limit:" msgstr "Antall:" -#: classes/feeds.php:1079 +#: classes/feeds.php:1082 #: classes/pref/users.php:358 #: classes/pref/labels.php:284 #: classes/pref/filters.php:398 @@ -1511,15 +1447,15 @@ msgstr "Antall:" msgid "Remove" msgstr "Fjern" -#: classes/feeds.php:1090 +#: classes/feeds.php:1093 msgid "Look for" msgstr "" -#: classes/feeds.php:1098 +#: classes/feeds.php:1101 msgid "Limit search to:" msgstr "Begrens søket til:" -#: classes/feeds.php:1114 +#: classes/feeds.php:1117 msgid "This feed" msgstr "Denne nyhetsstrømmen" @@ -1685,7 +1621,7 @@ msgstr "[tt-rss] Varsel om endring av passord" #: classes/pref/filters.php:645 #: classes/pref/filters.php:734 #: classes/pref/filters.php:761 -#: classes/pref/prefs.php:952 +#: classes/pref/prefs.php:998 #: classes/pref/feeds.php:1263 #: classes/pref/feeds.php:1533 #: classes/pref/feeds.php:1603 @@ -2126,231 +2062,236 @@ msgstr "Innskrivne passord matcher ikke." msgid "Function not supported by authentication module." msgstr "" -#: classes/pref/prefs.php:120 +#: classes/pref/prefs.php:135 msgid "The configuration was saved." msgstr "Konfigurasjonen er lagret." -#: classes/pref/prefs.php:134 +#: classes/pref/prefs.php:150 #, php-format msgid "Unknown option: %s" msgstr "Ukjent valg: %s" -#: classes/pref/prefs.php:148 +#: classes/pref/prefs.php:164 #, fuzzy msgid "Your personal data has been saved." msgstr "Passord har blitt endret." -#: classes/pref/prefs.php:188 +#: classes/pref/prefs.php:204 #, fuzzy msgid "Personal data / Authentication" msgstr "Autentifisering" -#: classes/pref/prefs.php:208 +#: classes/pref/prefs.php:224 msgid "Personal data" msgstr "Personlig informasjon" -#: classes/pref/prefs.php:218 +#: classes/pref/prefs.php:234 msgid "Full name" msgstr "" -#: classes/pref/prefs.php:222 +#: classes/pref/prefs.php:238 msgid "E-mail" msgstr "E-post" -#: classes/pref/prefs.php:228 +#: classes/pref/prefs.php:244 msgid "Access level" msgstr "TilgangsnivÃ¥" -#: classes/pref/prefs.php:238 +#: classes/pref/prefs.php:254 #, fuzzy msgid "Save data" msgstr "Lagre" -#: classes/pref/prefs.php:260 +#: classes/pref/prefs.php:276 #, fuzzy msgid "Your password is at default value, please change it." msgstr "" "Passordet ditt er et standardpassord, \n" "\t\t\t\t\t\tVennligst bytt." -#: classes/pref/prefs.php:287 +#: classes/pref/prefs.php:303 msgid "Changing your current password will disable OTP." msgstr "" -#: classes/pref/prefs.php:292 +#: classes/pref/prefs.php:308 msgid "Old password" msgstr "Gammelt passord" -#: classes/pref/prefs.php:295 +#: classes/pref/prefs.php:311 msgid "New password" msgstr "Nytt passord" -#: classes/pref/prefs.php:300 +#: classes/pref/prefs.php:316 msgid "Confirm password" msgstr "Bekreft passord" -#: classes/pref/prefs.php:310 +#: classes/pref/prefs.php:326 msgid "Change password" msgstr "Endre passord" -#: classes/pref/prefs.php:316 +#: classes/pref/prefs.php:332 msgid "One time passwords / Authenticator" msgstr "" -#: classes/pref/prefs.php:320 +#: classes/pref/prefs.php:336 msgid "One time passwords are currently enabled. Enter your current password below to disable." msgstr "" -#: classes/pref/prefs.php:345 -#: classes/pref/prefs.php:396 +#: classes/pref/prefs.php:361 +#: classes/pref/prefs.php:412 #, fuzzy msgid "Enter your password" msgstr "Feil brukernavn og/eller passord" -#: classes/pref/prefs.php:356 +#: classes/pref/prefs.php:372 #, fuzzy msgid "Disable OTP" msgstr "(Avskrudd)" -#: classes/pref/prefs.php:362 +#: classes/pref/prefs.php:378 msgid "You will need a compatible Authenticator to use this. Changing your password would automatically disable OTP." msgstr "" -#: classes/pref/prefs.php:364 +#: classes/pref/prefs.php:380 msgid "Scan the following code by the Authenticator application:" msgstr "" -#: classes/pref/prefs.php:405 +#: classes/pref/prefs.php:421 msgid "I have scanned the code and would like to enable OTP" msgstr "" -#: classes/pref/prefs.php:413 +#: classes/pref/prefs.php:429 #, fuzzy msgid "Enable OTP" msgstr "Tillatt" -#: classes/pref/prefs.php:451 +#: classes/pref/prefs.php:475 msgid "Some preferences are only available in default profile." msgstr "" -#: classes/pref/prefs.php:545 +#: classes/pref/prefs.php:585 #, fuzzy msgid "Customize" msgstr "URL til brukerbestemt utseendemal (CSS)" -#: classes/pref/prefs.php:605 +#: classes/pref/prefs.php:645 #, fuzzy msgid "Register" msgstr "Registrert" -#: classes/pref/prefs.php:609 +#: classes/pref/prefs.php:649 msgid "Clear" msgstr "" -#: classes/pref/prefs.php:615 +#: classes/pref/prefs.php:655 #, php-format msgid "Current server time: %s (UTC)" msgstr "" -#: classes/pref/prefs.php:648 +#: classes/pref/prefs.php:688 msgid "Save configuration" msgstr "Lagre konfigurasjonen" -#: classes/pref/prefs.php:651 +#: classes/pref/prefs.php:692 +#, fuzzy +msgid "Save and exit preferences" +msgstr "Forlat innstillinger" + +#: classes/pref/prefs.php:697 #, fuzzy msgid "Manage profiles" msgstr "Lag filter" -#: classes/pref/prefs.php:654 +#: classes/pref/prefs.php:700 msgid "Reset to defaults" msgstr "Tilbake til standard" -#: classes/pref/prefs.php:678 -#: classes/pref/prefs.php:680 +#: classes/pref/prefs.php:724 +#: classes/pref/prefs.php:726 msgid "Plugins" msgstr "" -#: classes/pref/prefs.php:682 +#: classes/pref/prefs.php:728 msgid "You will need to reload Tiny Tiny RSS for plugin changes to take effect." msgstr "" -#: classes/pref/prefs.php:684 +#: classes/pref/prefs.php:730 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:710 +#: classes/pref/prefs.php:756 msgid "System plugins" msgstr "" -#: classes/pref/prefs.php:714 -#: classes/pref/prefs.php:768 +#: classes/pref/prefs.php:760 +#: classes/pref/prefs.php:814 msgid "Plugin" msgstr "" -#: classes/pref/prefs.php:715 -#: classes/pref/prefs.php:769 +#: classes/pref/prefs.php:761 +#: classes/pref/prefs.php:815 #, fuzzy msgid "Description" msgstr "beskrivelse" -#: classes/pref/prefs.php:716 -#: classes/pref/prefs.php:770 +#: classes/pref/prefs.php:762 +#: classes/pref/prefs.php:816 msgid "Version" msgstr "" -#: classes/pref/prefs.php:717 -#: classes/pref/prefs.php:771 +#: classes/pref/prefs.php:763 +#: classes/pref/prefs.php:817 msgid "Author" msgstr "" -#: classes/pref/prefs.php:746 -#: classes/pref/prefs.php:803 +#: classes/pref/prefs.php:792 +#: classes/pref/prefs.php:849 msgid "more info" msgstr "" -#: classes/pref/prefs.php:755 -#: classes/pref/prefs.php:812 +#: classes/pref/prefs.php:801 +#: classes/pref/prefs.php:858 #, fuzzy msgid "Clear data" msgstr "Slett nyhetsstrømsdata" -#: classes/pref/prefs.php:764 +#: classes/pref/prefs.php:810 msgid "User plugins" msgstr "" -#: classes/pref/prefs.php:827 +#: classes/pref/prefs.php:873 #, fuzzy msgid "Enable selected plugins" msgstr "Bruk nyhetsstrømsikoner" -#: classes/pref/prefs.php:882 -#: classes/pref/prefs.php:900 +#: classes/pref/prefs.php:928 +#: classes/pref/prefs.php:946 #, fuzzy msgid "Incorrect password" msgstr "Feil brukernavn og/eller passord" -#: classes/pref/prefs.php:926 +#: classes/pref/prefs.php:972 #, 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:966 +#: classes/pref/prefs.php:1012 #, fuzzy msgid "Create profile" msgstr "Lag filter" -#: classes/pref/prefs.php:989 -#: classes/pref/prefs.php:1019 +#: classes/pref/prefs.php:1035 +#: classes/pref/prefs.php:1065 #, fuzzy msgid "(active)" msgstr "Tilpasset" -#: classes/pref/prefs.php:1053 +#: classes/pref/prefs.php:1099 #, fuzzy msgid "Remove selected profiles" msgstr "Fjerne valgte filtre?" -#: classes/pref/prefs.php:1055 +#: classes/pref/prefs.php:1101 #, fuzzy msgid "Activate profile" msgstr "Fjerne valgte filtre?" @@ -2908,15 +2849,15 @@ msgstr "" msgid "The document has incorrect format." msgstr "" -#: plugins/googlereaderimport/init.php:326 +#: plugins/googlereaderimport/init.php:328 msgid "Import starred or shared items from Google Reader" msgstr "" -#: plugins/googlereaderimport/init.php:330 +#: plugins/googlereaderimport/init.php:332 msgid "Paste your starred.json or shared.json into the form below." msgstr "" -#: plugins/googlereaderimport/init.php:344 +#: plugins/googlereaderimport/init.php:346 msgid "Import my Starred items" msgstr "" @@ -3022,23 +2963,23 @@ msgstr "Siste oppdatering:" msgid "Start update" msgstr "Siste oppdatering:" -#: js/feedlist.js:392 -#: js/feedlist.js:420 +#: js/feedlist.js:394 +#: js/feedlist.js:422 #: plugins/digest/digest.js:26 msgid "Mark all articles in %s as read?" msgstr "Marker alle artikler i %s som leste?" -#: js/feedlist.js:411 +#: js/feedlist.js:413 #, fuzzy msgid "Mark all articles in %s older than 1 day as read?" msgstr "Marker alle artikler i %s som leste?" -#: js/feedlist.js:414 +#: js/feedlist.js:416 #, fuzzy msgid "Mark all articles in %s older than 1 week as read?" msgstr "Marker alle artikler i %s som leste?" -#: js/feedlist.js:417 +#: js/feedlist.js:419 #, fuzzy msgid "Mark all articles in %s older than 2 weeks as read?" msgstr "Marker alle artikler i %s som leste?" @@ -3602,157 +3543,157 @@ msgstr "Endrer poengsummen for artiklene..." msgid "New version available!" msgstr "Ny versjon av Tiny Tiny Rss er tilgjengelig!" -#: js/viewfeed.js:104 +#: js/viewfeed.js:106 #, fuzzy msgid "Cancel search" msgstr "Avbryt" -#: js/viewfeed.js:438 +#: js/viewfeed.js:441 #: plugins/digest/digest.js:258 #: plugins/digest/digest.js:714 msgid "Unstar article" msgstr "Fjern favorittmerkingen fra artiklen" -#: js/viewfeed.js:443 +#: js/viewfeed.js:446 #: plugins/digest/digest.js:260 #: plugins/digest/digest.js:718 msgid "Star article" msgstr "Marker artikkel som favoritt" -#: js/viewfeed.js:476 +#: js/viewfeed.js:479 #: plugins/digest/digest.js:263 #: plugins/digest/digest.js:749 msgid "Unpublish article" msgstr "Fjern publiseringen av artikkelen." -#: js/viewfeed.js:481 +#: js/viewfeed.js:484 #: plugins/digest/digest.js:265 #: plugins/digest/digest.js:754 msgid "Publish article" msgstr "Publiser artiklen" -#: js/viewfeed.js:677 -#: js/viewfeed.js:705 -#: js/viewfeed.js:732 -#: js/viewfeed.js:795 -#: js/viewfeed.js:829 -#: js/viewfeed.js:949 -#: js/viewfeed.js:992 -#: js/viewfeed.js:1045 -#: js/viewfeed.js:2051 +#: js/viewfeed.js:680 +#: js/viewfeed.js:708 +#: js/viewfeed.js:735 +#: js/viewfeed.js:798 +#: js/viewfeed.js:832 +#: js/viewfeed.js:952 +#: js/viewfeed.js:995 +#: js/viewfeed.js:1048 +#: js/viewfeed.js:2060 #: plugins/mailto/init.js:7 #: plugins/mail/mail.js:7 msgid "No articles are selected." msgstr "Ingen artikler er valgt." -#: js/viewfeed.js:957 +#: js/viewfeed.js:960 #, 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:959 +#: js/viewfeed.js:962 #, 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:1001 +#: js/viewfeed.js:1004 #, 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:1004 +#: js/viewfeed.js:1007 #, fuzzy msgid "Move %d archived article back?" msgid_plural "Move %d archived articles back?" msgstr[0] "Favorittartikler" msgstr[1] "Favorittartikler" -#: js/viewfeed.js:1006 +#: js/viewfeed.js:1009 msgid "Please note that unstarred articles might get purged on next feed update." msgstr "" -#: js/viewfeed.js:1051 +#: js/viewfeed.js:1054 #, 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:1075 +#: js/viewfeed.js:1078 #, fuzzy msgid "Edit article Tags" msgstr "Endre Stikkord" -#: js/viewfeed.js:1081 +#: js/viewfeed.js:1084 msgid "Saving article tags..." msgstr "Lagrer artikkelens kategorier..." -#: js/viewfeed.js:1278 +#: js/viewfeed.js:1287 msgid "No article is selected." msgstr "Ingen artikkel er valgt." -#: js/viewfeed.js:1313 +#: js/viewfeed.js:1322 msgid "No articles found to mark" msgstr "Ingen artikler funnet som kan markeres" -#: js/viewfeed.js:1315 +#: js/viewfeed.js:1324 #, 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:1827 +#: js/viewfeed.js:1836 #, fuzzy msgid "Open original article" msgstr "Vis opprinnelig artikkelinnhold" -#: js/viewfeed.js:1833 +#: js/viewfeed.js:1842 #, fuzzy msgid "Display article URL" msgstr "Vis stikkord" -#: js/viewfeed.js:1852 +#: js/viewfeed.js:1861 #, fuzzy msgid "Toggle marked" msgstr "Sett som favoritt" -#: js/viewfeed.js:1933 +#: js/viewfeed.js:1942 msgid "Assign label" msgstr "Tildel stikkord" -#: js/viewfeed.js:1938 +#: js/viewfeed.js:1947 #, fuzzy msgid "Remove label" msgstr "Fjerne merkede merkelapper?" -#: js/viewfeed.js:1962 +#: js/viewfeed.js:1971 #, fuzzy msgid "Playing..." msgstr "Laster nyhetsstrømmer..." -#: js/viewfeed.js:1963 +#: js/viewfeed.js:1972 #, fuzzy msgid "Click to pause" msgstr "Trykk for Ã¥ endre" -#: js/viewfeed.js:2020 +#: js/viewfeed.js:2029 #, fuzzy msgid "Please enter new score for selected articles:" msgstr "Vennligst skriv inn et notat for denne artikkelen:" -#: js/viewfeed.js:2062 +#: js/viewfeed.js:2071 #, fuzzy msgid "Please enter new score for this article:" msgstr "Vennligst skriv inn et notat for denne artikkelen:" -#: js/viewfeed.js:2095 +#: js/viewfeed.js:2104 #, fuzzy msgid "Article URL:" msgstr "Alle artikler" @@ -3876,6 +3817,49 @@ msgstr "Marker artikkel som favoritt" msgid "Live updating is considered experimental. Backup your tt-rss directory before continuing. Please type 'yes' to continue." msgstr "" +#~ msgid "Could not update database" +#~ msgstr "Kunne ikke oppdatere databasen" + +#~ msgid "Could not find necessary schema file, need version:" +#~ msgstr "Kunne ikke finne den nødvendige skjemafilen, nødvendig versjon:" + +#~ msgid ", found: " +#~ msgstr ", funnet: " + +#~ msgid "Tiny Tiny RSS database is up to date." +#~ msgstr "Tiny Tiny RSS-databasen er oppdatert" + +#~ msgid "Please backup your database before proceeding." +#~ msgstr "Vennligst gjør backup av din database før du fortsetter." + +#~ msgid "Your Tiny Tiny RSS database needs update to the latest version (<b>%d</b> to <b>%d</b>)." +#~ msgstr "Din Tiny Tiny RSS-database trenger Ã¥ oppdateres til siste utgave (<b>%d</b> til <b>%d</b>)." + +#~ msgid "Performing updates..." +#~ msgstr "Utfører oppdateringer..." + +#~ msgid "Updating to version %d..." +#~ msgstr "Oppdaterer til versjon %d..." + +#~ msgid "Checking version... " +#~ msgstr "Sjekker utgave..." + +#~ msgid "OK!" +#~ msgstr "OK!" + +#~ msgid "ERROR!" +#~ msgstr "Feil!" + +#, fuzzy +#~ 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] "" +#~ "Ferdig. <b>%d</b> utførte oppdatering(er)i følge skjema\n" +#~ "\t\t\tversjon <b>%d</b>." +#~ msgstr[1] "" +#~ "Ferdig. <b>%d</b> utførte oppdatering(er)i følge skjema\n" +#~ "\t\t\tversjon <b>%d</b>." + #~ msgid "Mark feed as read" #~ msgstr "Marker nyhetsstrøm som lest" @@ -3886,9 +3870,6 @@ msgstr "" #~ msgid "When this option is enabled, headlines in Special feeds and Labels are grouped by feeds" #~ msgstr "Med dette valget haket av sÃ¥ vil overskriftene i spesielle nyhetskanaler og merkelapper grupperes etter nyhetskanalene" -#~ msgid "Title" -#~ msgstr "Tittel" - #~ msgid "Title or Content" #~ msgstr "Tittel eller innhold" diff --git a/locale/nl_NL/LC_MESSAGES/messages.mo b/locale/nl_NL/LC_MESSAGES/messages.mo Binary files differindex f5abde960..cf4b0b7e4 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 3a189ca6c..917175940 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-04-04 09:06+0400\n" +"POT-Creation-Date: 2013-04-04 21:31+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" @@ -106,105 +106,6 @@ msgstr "Hoofdgebruiker" msgid "Administrator" msgstr "Beheerder" -#: db-updater.php:19 -msgid "Your access level is insufficient to run this script." -msgstr "Uw toegangsrechten zijn niet voldoende om dit script uit te voeren." - -#: db-updater.php:44 -msgid "Database Updater" -msgstr "Database updater" - -#: db-updater.php:87 -msgid "Could not update database" -msgstr "Kon de database niet bijwerken" - -#: db-updater.php:90 -msgid "Could not find necessary schema file, need version:" -msgstr "Kon geen juist updateschemabestand vinden. Benodigde versie:" - -#: db-updater.php:91 -msgid ", found: " -msgstr ", gevonden: " - -#: db-updater.php:94 -msgid "Tiny Tiny RSS database is up to date." -msgstr "Tiny Tiny RSS database is bijgewerkt." - -#: 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:648 -#: classes/handler/public.php:736 -#: classes/handler/public.php:818 -msgid "Return to Tiny Tiny RSS" -msgstr "Ga terug naar Tiny Tiny RSS" - -#: db-updater.php:102 -msgid "Please backup your database before proceeding." -msgstr "Maak aub een back-up van uw database voordat u verder gaat." - -#: 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 "Uw Tiny Tiny RSS database moet worden geüpdate naar de laatste versie (<b>%d</b> naar <b>%d</b>)." - -#: db-updater.php:118 -msgid "Perform updates" -msgstr "Voor de updates uit" - -#: db-updater.php:123 -msgid "Performing updates..." -msgstr "Uitvoeren van updates..." - -#: db-updater.php:129 -#, php-format -msgid "Updating to version %d..." -msgstr "Updaten naar versie %d..." - -#: db-updater.php:144 -msgid "Checking version... " -msgstr "Versie controleren..." - -#: db-updater.php:150 -msgid "OK!" -msgstr "OK!" - -#: db-updater.php:152 -msgid "ERROR!" -msgstr "FOUT!" - -#: db-updater.php:160 -#, fuzzy, php-format -msgid "Finished. Performed <b>%d</b> update up to schema version <b>%d</b>." -msgid_plural "Finished. Performed <b>%d</b> updates up to schema version <b>%d</b>." -msgstr[0] "" -"Klaar. <b>%d</b> update(s) uitgevoerd volgens schema naar\n" -"\t\t\tversie <b>%d</b>." -msgstr[1] "" -"Klaar. <b>%d</b> update(s) uitgevoerd volgens schema naar\n" -"\t\t\tversie <b>%d</b>." - -#: db-updater.php:170 -msgid "Your database schema is from a newer version of Tiny Tiny RSS." -msgstr "Uw database schema is van een nieuwere versie van Tiny Tiny RSS." - -#: db-updater.php:172 -#, php-format -msgid "Found schema version: <b>%d</b>, required: <b>%d</b>." -msgstr "Versie schema gevonden: <b>%d</b>, vereist: <b>%d</b>." - -#: db-updater.php:174 -msgid "Schema upgrade impossible. Please update Tiny Tiny RSS files to the newer version and continue." -msgstr "Schema update onmogelijk. Update Tiny Tiny RSS bestanden naar de nieuwere versie en gaan door." - #: errors.php:9 msgid "This program requires XmlHttpRequest to function properly. Your browser doesn't seem to support it." msgstr "Dit programma vereist XmlHttpRequest om goed te functioneren. Uw browser lijkt dit niet te ondersteunen." @@ -259,7 +160,7 @@ msgstr "SQL escaping test mislukt. Controleer uw database en de PHP configuratie #: index.php:135 #: index.php:152 -#: index.php:276 +#: index.php:277 #: prefs.php:103 #: classes/backend.php:5 #: classes/pref/labels.php:296 @@ -267,7 +168,7 @@ msgstr "SQL escaping test mislukt. Controleer uw database en de PHP configuratie #: classes/pref/feeds.php:1331 #: plugins/digest/digest_body.php:63 #: js/feedlist.js:128 -#: js/feedlist.js:436 +#: js/feedlist.js:438 #: js/functions.js:420 #: js/functions.js:758 #: js/functions.js:1194 @@ -288,8 +189,8 @@ msgstr "SQL escaping test mislukt. Controleer uw database en de PHP configuratie #: js/prefs.js:1814 #: js/tt-rss.js:475 #: js/tt-rss.js:492 -#: js/viewfeed.js:772 -#: js/viewfeed.js:1200 +#: js/viewfeed.js:775 +#: js/viewfeed.js:1201 #: plugins/import_export/import_export.js:17 #: plugins/updater/updater.js:17 msgid "Loading, please wait..." @@ -312,13 +213,13 @@ msgid "All Articles" msgstr "Alle artikelen" #: index.php:174 -#: include/functions.php:1953 +#: include/functions.php:1955 #: classes/feeds.php:106 msgid "Starred" msgstr "Met ster" #: index.php:175 -#: include/functions.php:1954 +#: include/functions.php:1956 #: classes/feeds.php:107 msgid "Published" msgstr "Gepubliceerd" @@ -358,9 +259,13 @@ msgstr "" msgid "Oldest first" msgstr "" -#: index.php:191 -#: index.php:240 -#: include/functions.php:1943 +#: index.php:188 +msgid "Title" +msgstr "Titel" + +#: index.php:192 +#: index.php:241 +#: include/functions.php:1945 #: classes/feeds.php:111 #: classes/feeds.php:441 #: js/FeedTree.js:128 @@ -369,104 +274,104 @@ msgstr "" msgid "Mark as read" msgstr "Markeren als gelezen" -#: index.php:194 +#: index.php:195 msgid "Older than one day" msgstr "" -#: index.php:197 +#: index.php:198 msgid "Older than one week" msgstr "" -#: index.php:200 +#: index.php:201 msgid "Older than two weeks" msgstr "" -#: index.php:217 +#: index.php:218 msgid "Communication problem with server." msgstr "communicatieprobleem met de server." -#: index.php:225 +#: index.php:226 msgid "New version of Tiny Tiny RSS is available!" msgstr "Er is een nieuwe versie van Tiny Tiny RSS beschikbaar!" -#: index.php:230 +#: index.php:231 msgid "Actions..." msgstr "Acties..." -#: index.php:232 +#: index.php:233 msgid "Preferences..." msgstr "Voorkeuren…" -#: index.php:233 +#: index.php:234 msgid "Search..." msgstr "zoeken..." -#: index.php:234 +#: index.php:235 msgid "Feed actions:" msgstr "Feed acties:" -#: index.php:235 +#: index.php:236 #: classes/handler/public.php:578 msgid "Subscribe to feed..." msgstr "Abonneren op feed..." -#: index.php:236 +#: index.php:237 msgid "Edit this feed..." msgstr "Bewerk deze feed..." -#: index.php:237 +#: index.php:238 msgid "Rescore feed" msgstr "Feed opnieuw score geven" -#: index.php:238 +#: index.php:239 #: classes/pref/feeds.php:717 #: classes/pref/feeds.php:1283 #: js/PrefFeedTree.js:73 msgid "Unsubscribe" msgstr "Abonnement opzeggen" -#: index.php:239 +#: index.php:240 msgid "All feeds:" msgstr "Alle feeds:" -#: index.php:241 +#: index.php:242 msgid "(Un)hide read feeds" msgstr "Toon/Verberg gelezen feeds" -#: index.php:242 +#: index.php:243 msgid "Other actions:" msgstr "andere acties:" -#: index.php:244 +#: index.php:245 msgid "Switch to digest..." msgstr "Omschakelen naar samenvatting…" -#: index.php:246 +#: index.php:247 msgid "Show tag cloud..." msgstr "Toon tagwolk..." -#: index.php:247 -#: include/functions.php:1929 +#: index.php:248 +#: include/functions.php:1931 msgid "Toggle widescreen mode" msgstr "Wisselen breedbeeld modus" -#: index.php:248 +#: index.php:249 msgid "Select by tags..." msgstr "Selectie met tags..." -#: index.php:249 +#: index.php:250 msgid "Create label..." msgstr "Aanmaken label…" -#: index.php:250 +#: index.php:251 msgid "Create filter..." msgstr "Aanmaken filter…" -#: index.php:251 +#: index.php:252 msgid "Keyboard shortcuts help" msgstr "Hulp bij sneltoetscombinaties" -#: index.php:260 +#: index.php:261 #: plugins/digest/digest_body.php:77 #: plugins/mobile/mobile-functions.php:62 #: plugins/mobile/mobile-functions.php:237 @@ -475,8 +380,8 @@ msgstr "Afmelden" #: prefs.php:36 #: prefs.php:121 -#: include/functions.php:1956 -#: classes/pref/prefs.php:428 +#: include/functions.php:1958 +#: classes/pref/prefs.php:444 msgid "Preferences" msgstr "Voorkeuren" @@ -501,8 +406,8 @@ msgid "Filters" msgstr "Filters" #: prefs.php:130 -#: include/functions.php:1146 -#: include/functions.php:1782 +#: include/functions.php:1148 +#: include/functions.php:1784 #: classes/pref/labels.php:90 #: plugins/mobile/mobile-functions.php:198 msgid "Labels" @@ -521,6 +426,24 @@ msgstr "Aanmaken nieuw account" msgid "New user registrations are administratively disabled." msgstr "Het registreren van nieuwe gebruikers is door de administrateur uitgeschakeld." +#: 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:648 +#: classes/handler/public.php:736 +#: classes/handler/public.php:818 +#: classes/handler/public.php:893 +#: classes/handler/public.php:907 +#: classes/handler/public.php:914 +#: classes/handler/public.php:939 +msgid "Return to Tiny Tiny RSS" +msgstr "Ga terug naar Tiny Tiny RSS" + #: 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 "Uw tijdelijke wachtwoord wordt naar het vermelde e-mailadres verstuurd. Accounts waarin niet wordt ingelogd, worden automatisch 24 uur na het verzenden van het tijdelijk wachtwoord verwijderd." @@ -567,15 +490,15 @@ msgstr "Het account is met succes aangemaakt." msgid "New user registrations are currently closed." msgstr "Nieuwe gebruikersregistratie is op dit moment niet mogelijk." -#: update.php:55 +#: update.php:56 msgid "Tiny Tiny RSS data update script." msgstr "Tiny Tiny RSS data update script." #: include/digest.php:109 -#: include/functions.php:1155 -#: include/functions.php:1683 -#: include/functions.php:1768 -#: include/functions.php:1790 +#: include/functions.php:1157 +#: include/functions.php:1685 +#: include/functions.php:1770 +#: include/functions.php:1792 #: classes/opml.php:416 #: classes/pref/feeds.php:222 msgid "Uncategorized" @@ -592,301 +515,301 @@ msgstr[1] "%d gearchiveerde artikelen" msgid "No feeds found." msgstr "Geen feeds gevonden." -#: include/functions.php:1144 -#: include/functions.php:1780 +#: include/functions.php:1146 +#: include/functions.php:1782 #: plugins/mobile/mobile-functions.php:171 msgid "Special" msgstr "Speciaal" -#: include/functions.php:1632 -#: classes/feeds.php:1101 +#: include/functions.php:1634 +#: classes/feeds.php:1104 #: classes/pref/filters.php:427 msgid "All feeds" msgstr "Alle feeds" -#: include/functions.php:1833 +#: include/functions.php:1835 msgid "Starred articles" msgstr "Artikelen met ster" -#: include/functions.php:1835 +#: include/functions.php:1837 msgid "Published articles" msgstr "Gepubliceerde artikelen" -#: include/functions.php:1837 +#: include/functions.php:1839 msgid "Fresh articles" msgstr "Nieuwe artikelen" -#: include/functions.php:1839 -#: include/functions.php:1951 +#: include/functions.php:1841 +#: include/functions.php:1953 msgid "All articles" msgstr "Alle artikelen" -#: include/functions.php:1841 +#: include/functions.php:1843 msgid "Archived articles" msgstr "Gearchiveerde artikelen" -#: include/functions.php:1843 +#: include/functions.php:1845 msgid "Recently read" msgstr "Recent gelezen" -#: include/functions.php:1906 +#: include/functions.php:1908 msgid "Navigation" msgstr "Navigatie" -#: include/functions.php:1907 +#: include/functions.php:1909 msgid "Open next feed" msgstr "Open volgende feed" -#: include/functions.php:1908 +#: include/functions.php:1910 msgid "Open previous feed" msgstr "Open voorgaande feed" -#: include/functions.php:1909 +#: include/functions.php:1911 msgid "Open next article" msgstr "Open volgende artikel" -#: include/functions.php:1910 +#: include/functions.php:1912 msgid "Open previous article" msgstr "Open voorgaand artikel" -#: include/functions.php:1911 +#: include/functions.php:1913 msgid "Open next article (don't scroll long articles)" msgstr "Open volgend artikel (lange artikelen niet scrollen)" -#: include/functions.php:1912 +#: include/functions.php:1914 msgid "Open previous article (don't scroll long articles)" msgstr "Open vorig artikel (lange artikelen niet scrollen)" -#: include/functions.php:1913 +#: include/functions.php:1915 msgid "Show search dialog" msgstr "toon zoekdialoogvenster" -#: include/functions.php:1914 +#: include/functions.php:1916 msgid "Article" msgstr "Artikel" -#: include/functions.php:1915 +#: include/functions.php:1917 msgid "Toggle starred" msgstr "In/uitschakelen sterren" -#: include/functions.php:1916 -#: js/viewfeed.js:1863 +#: include/functions.php:1918 +#: js/viewfeed.js:1872 msgid "Toggle published" msgstr "In/uitschakelen gepubliceerd" -#: include/functions.php:1917 -#: js/viewfeed.js:1841 +#: include/functions.php:1919 +#: js/viewfeed.js:1850 msgid "Toggle unread" msgstr "In/uitschakelen gelezen" -#: include/functions.php:1918 +#: include/functions.php:1920 msgid "Edit tags" msgstr "Bewerk tags" -#: include/functions.php:1919 +#: include/functions.php:1921 msgid "Dismiss selected" msgstr "Geselecteerde negeren" -#: include/functions.php:1920 +#: include/functions.php:1922 msgid "Dismiss read" msgstr "Gelezene negeren" -#: include/functions.php:1921 +#: include/functions.php:1923 msgid "Open in new window" msgstr "open in nieuw venster" -#: include/functions.php:1922 -#: js/viewfeed.js:1882 +#: include/functions.php:1924 +#: js/viewfeed.js:1891 msgid "Mark below as read" msgstr "Hieronder markeren als gelezen" -#: include/functions.php:1923 -#: js/viewfeed.js:1876 +#: include/functions.php:1925 +#: js/viewfeed.js:1885 msgid "Mark above as read" msgstr "hierboven markeren als gelezen" -#: include/functions.php:1924 +#: include/functions.php:1926 msgid "Scroll down" msgstr "Omlaag scrollen" -#: include/functions.php:1925 +#: include/functions.php:1927 msgid "Scroll up" msgstr "Omhoog scrollen" -#: include/functions.php:1926 +#: include/functions.php:1928 msgid "Select article under cursor" msgstr "Selecteer artikel onder de cursor" -#: include/functions.php:1927 +#: include/functions.php:1929 msgid "Email article" msgstr "E-mail artikel" -#: include/functions.php:1928 +#: include/functions.php:1930 msgid "Close/collapse article" msgstr "Sluiten/inklappen artikel" -#: include/functions.php:1930 +#: include/functions.php:1932 #: plugins/embed_original/init.php:33 msgid "Toggle embed original" msgstr "In/uitschakelen origineel insluiten" -#: include/functions.php:1931 +#: include/functions.php:1933 msgid "Article selection" msgstr "Artikelselectie" -#: include/functions.php:1932 +#: include/functions.php:1934 msgid "Select all articles" msgstr "Selecteer alle artikelen" -#: include/functions.php:1933 +#: include/functions.php:1935 msgid "Select unread" msgstr "Selecteer ongelezen" -#: include/functions.php:1934 +#: include/functions.php:1936 msgid "Select starred" msgstr "Selecteer met ster" -#: include/functions.php:1935 +#: include/functions.php:1937 msgid "Select published" msgstr "Selecteer gepubliceerde" -#: include/functions.php:1936 +#: include/functions.php:1938 msgid "Invert selection" msgstr "Omdraaien selectie" -#: include/functions.php:1937 +#: include/functions.php:1939 msgid "Deselect everything" msgstr "Deselecteer alles" -#: include/functions.php:1938 +#: include/functions.php:1940 #: classes/pref/feeds.php:521 #: classes/pref/feeds.php:754 msgid "Feed" msgstr "Feed" -#: include/functions.php:1939 +#: include/functions.php:1941 msgid "Refresh current feed" msgstr "Ververs huidige feed" -#: include/functions.php:1940 +#: include/functions.php:1942 msgid "Un/hide read feeds" msgstr "Toon/Verberg gelezen feeds" -#: include/functions.php:1941 +#: include/functions.php:1943 #: classes/pref/feeds.php:1275 msgid "Subscribe to feed" msgstr "Abonneer op feed" -#: include/functions.php:1942 +#: include/functions.php:1944 #: js/FeedTree.js:135 #: js/PrefFeedTree.js:67 msgid "Edit feed" msgstr "Bewerk feed" -#: include/functions.php:1944 +#: include/functions.php:1946 msgid "Reverse headlines" msgstr "Draai kopteksten om" -#: include/functions.php:1945 +#: include/functions.php:1947 msgid "Debug feed update" msgstr "Debug feed update" -#: include/functions.php:1946 +#: include/functions.php:1948 #: js/FeedTree.js:178 msgid "Mark all feeds as read" msgstr "Markeer alle feeds als gelezen" -#: include/functions.php:1947 +#: include/functions.php:1949 msgid "Un/collapse current category" msgstr "Uit/Inklappen huidige categorie" -#: include/functions.php:1948 +#: include/functions.php:1950 msgid "Toggle combined mode" msgstr "In/uitschakelen gecombineerde modus" -#: include/functions.php:1949 +#: include/functions.php:1951 #, fuzzy msgid "Toggle auto expand in combined mode" msgstr "In/uitschakelen gecombineerde modus" -#: include/functions.php:1950 +#: include/functions.php:1952 msgid "Go to" msgstr "Ga naar" -#: include/functions.php:1952 +#: include/functions.php:1954 msgid "Fresh" msgstr "Nieuw" -#: include/functions.php:1955 +#: include/functions.php:1957 #: js/tt-rss.js:431 #: js/tt-rss.js:584 msgid "Tag cloud" msgstr "Tag wolk" -#: include/functions.php:1957 +#: include/functions.php:1959 msgid "Other" msgstr "Andere" -#: include/functions.php:1958 +#: include/functions.php:1960 #: classes/pref/labels.php:281 msgid "Create label" msgstr "Aanmaken label" -#: include/functions.php:1959 +#: include/functions.php:1961 #: classes/pref/filters.php:654 msgid "Create filter" msgstr "Aanmaken filter" -#: include/functions.php:1960 +#: include/functions.php:1962 msgid "Un/collapse sidebar" msgstr "Uit/Inklappen zijbalk" -#: include/functions.php:1961 +#: include/functions.php:1963 msgid "Show help dialog" msgstr "Toon helpdialoogvenster" -#: include/functions.php:2446 +#: include/functions.php:2471 #, php-format msgid "Search results: %s" msgstr "zoekresultaten: %s" -#: include/functions.php:2937 -#: js/viewfeed.js:1969 +#: include/functions.php:2962 +#: js/viewfeed.js:1978 msgid "Click to play" msgstr "Klik om af te spelen" -#: include/functions.php:2938 -#: js/viewfeed.js:1968 +#: include/functions.php:2963 +#: js/viewfeed.js:1977 msgid "Play" msgstr "Afspelen" -#: include/functions.php:3055 +#: include/functions.php:3080 msgid " - " msgstr " - " -#: include/functions.php:3077 -#: include/functions.php:3371 +#: include/functions.php:3102 +#: include/functions.php:3396 #: classes/article.php:281 msgid "no tags" msgstr "geen tags" -#: include/functions.php:3087 +#: include/functions.php:3112 #: classes/feeds.php:686 msgid "Edit tags for this article" msgstr "Bewerk tags voor dit artikel" -#: include/functions.php:3116 +#: include/functions.php:3141 #: classes/feeds.php:642 msgid "Originally from:" msgstr "Oorspronkelijk uit:" -#: include/functions.php:3129 +#: include/functions.php:3154 #: classes/feeds.php:655 #: classes/pref/feeds.php:540 msgid "Feed URL" msgstr "Feed URL" -#: include/functions.php:3160 +#: include/functions.php:3185 #: classes/dlg.php:37 #: classes/dlg.php:60 #: classes/dlg.php:93 @@ -898,7 +821,7 @@ msgstr "Feed URL" #: classes/backend.php:105 #: classes/pref/users.php:99 #: classes/pref/filters.php:147 -#: classes/pref/prefs.php:1059 +#: classes/pref/prefs.php:1105 #: classes/pref/feeds.php:1588 #: classes/pref/feeds.php:1660 #: plugins/import_export/init.php:406 @@ -909,15 +832,15 @@ msgstr "Feed URL" msgid "Close this window" msgstr "Sluit dit venster" -#: include/functions.php:3396 +#: include/functions.php:3421 msgid "(edit note)" msgstr "(bewerk notitie)" -#: include/functions.php:3631 +#: include/functions.php:3656 msgid "unknown type" msgstr "Onbekend type" -#: include/functions.php:3687 +#: include/functions.php:3712 msgid "Attachments" msgstr "Bijlagen" @@ -941,6 +864,7 @@ msgstr "Onjuist wachtwoord" #: include/login_form.php:201 #: classes/handler/public.php:489 +#: classes/pref/prefs.php:552 msgid "Language:" msgstr "Taal:" @@ -951,7 +875,7 @@ msgstr "Profiel:" #: include/login_form.php:213 #: classes/handler/public.php:233 #: classes/rpc.php:64 -#: classes/pref/prefs.php:995 +#: classes/pref/prefs.php:1041 msgid "Default profile" msgstr "Standaard profiel" @@ -969,7 +893,7 @@ msgstr "" msgid "Log in" msgstr "Aanmelden" -#: include/sessions.php:58 +#: include/sessions.php:62 msgid "Session failed to validate (incorrect IP)" msgstr "De sessie kon niet worden gevalideerd (onjuist IP)" @@ -985,7 +909,7 @@ msgstr "Tags voor dit artikel (komma gescheiden):" #: classes/pref/users.php:176 #: classes/pref/labels.php:79 #: classes/pref/filters.php:405 -#: classes/pref/prefs.php:941 +#: classes/pref/prefs.php:987 #: classes/pref/feeds.php:733 #: classes/pref/feeds.php:881 #: plugins/nsfw/init.php:86 @@ -997,16 +921,16 @@ msgstr "Opslaan" #: classes/article.php:206 #: classes/handler/public.php:460 #: classes/handler/public.php:502 -#: classes/feeds.php:1028 -#: classes/feeds.php:1080 -#: classes/feeds.php:1140 +#: classes/feeds.php:1031 +#: classes/feeds.php:1083 +#: classes/feeds.php:1143 #: 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:943 +#: classes/pref/prefs.php:989 #: classes/pref/feeds.php:734 #: classes/pref/feeds.php:884 #: classes/pref/feeds.php:1797 @@ -1132,6 +1056,18 @@ msgstr "Terugzetten" msgid "Sorry, login and email combination not found." msgstr "" +#: classes/handler/public.php:842 +msgid "Your access level is insufficient to run this script." +msgstr "Uw toegangsrechten zijn niet voldoende om dit script uit te voeren." + +#: classes/handler/public.php:866 +msgid "Database Updater" +msgstr "Database updater" + +#: classes/handler/public.php:931 +msgid "Perform updates" +msgstr "Voor de updates uit" + #: 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." @@ -1231,7 +1167,7 @@ msgstr "Selecteer:" #: classes/pref/filters.php:648 #: classes/pref/filters.php:737 #: classes/pref/filters.php:764 -#: classes/pref/prefs.php:955 +#: classes/pref/prefs.php:1001 #: classes/pref/feeds.php:1266 #: classes/pref/feeds.php:1536 #: classes/pref/feeds.php:1606 @@ -1251,7 +1187,7 @@ msgstr "Omkeren" #: classes/pref/filters.php:650 #: classes/pref/filters.php:739 #: classes/pref/filters.php:766 -#: classes/pref/prefs.php:957 +#: classes/pref/prefs.php:1003 #: classes/pref/feeds.php:1268 #: classes/pref/feeds.php:1538 #: classes/pref/feeds.php:1608 @@ -1342,44 +1278,44 @@ msgid "No articles found to display." msgstr "Geen artikelen gevonden om weer te geven." #: classes/feeds.php:759 -#: classes/feeds.php:923 +#: classes/feeds.php:926 #, php-format msgid "Feeds last updated at %s" msgstr "Feeds laatst bijgewerkt op %s" #: classes/feeds.php:769 -#: classes/feeds.php:933 +#: classes/feeds.php:936 msgid "Some feeds have update errors (click for details)" msgstr "Sommige feeds hebben update fouten (klik voor details)" -#: classes/feeds.php:913 +#: classes/feeds.php:916 msgid "No feed selected." msgstr "Geen feeds geselecteerd." -#: classes/feeds.php:966 -#: classes/feeds.php:974 +#: classes/feeds.php:969 +#: classes/feeds.php:977 msgid "Feed or site URL" msgstr "Feed of website URL" -#: classes/feeds.php:980 +#: classes/feeds.php:983 #: 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 +#: classes/feeds.php:991 msgid "Available feeds" msgstr "Beschikbare feeds" -#: classes/feeds.php:1000 +#: classes/feeds.php:1003 #: classes/pref/users.php:139 #: classes/pref/feeds.php:590 #: classes/pref/feeds.php:818 msgid "Authentication" msgstr "Authenticatie" -#: classes/feeds.php:1004 +#: classes/feeds.php:1007 #: classes/pref/users.php:402 #: classes/pref/feeds.php:596 #: classes/pref/feeds.php:822 @@ -1387,30 +1323,30 @@ msgstr "Authenticatie" msgid "Login" msgstr "LoginID" -#: classes/feeds.php:1007 -#: classes/pref/prefs.php:253 +#: classes/feeds.php:1010 +#: classes/pref/prefs.php:269 #: classes/pref/feeds.php:602 #: classes/pref/feeds.php:828 #: classes/pref/feeds.php:1778 msgid "Password" msgstr "Wachtwoord" -#: classes/feeds.php:1017 +#: classes/feeds.php:1020 msgid "This feed requires authentication." msgstr "Deze feed vereist authenticatie." -#: classes/feeds.php:1022 -#: classes/feeds.php:1078 +#: classes/feeds.php:1025 +#: classes/feeds.php:1081 #: classes/pref/feeds.php:1796 msgid "Subscribe" msgstr "Abonneren" -#: classes/feeds.php:1025 +#: classes/feeds.php:1028 msgid "More feeds" msgstr "Meer feeds" -#: classes/feeds.php:1048 -#: classes/feeds.php:1139 +#: classes/feeds.php:1051 +#: classes/feeds.php:1142 #: classes/pref/users.php:332 #: classes/pref/filters.php:641 #: classes/pref/feeds.php:1259 @@ -1418,19 +1354,19 @@ msgstr "Meer feeds" msgid "Search" msgstr "Zoeken" -#: classes/feeds.php:1052 +#: classes/feeds.php:1055 msgid "Popular feeds" msgstr "Populaire feeds" -#: classes/feeds.php:1053 +#: classes/feeds.php:1056 msgid "Feed archive" msgstr "Feed archief" -#: classes/feeds.php:1056 +#: classes/feeds.php:1059 msgid "limit:" msgstr "Beperking:" -#: classes/feeds.php:1079 +#: classes/feeds.php:1082 #: classes/pref/users.php:358 #: classes/pref/labels.php:284 #: classes/pref/filters.php:398 @@ -1440,15 +1376,15 @@ msgstr "Beperking:" msgid "Remove" msgstr "Verwijderen" -#: classes/feeds.php:1090 +#: classes/feeds.php:1093 msgid "Look for" msgstr "Zoek naar" -#: classes/feeds.php:1098 +#: classes/feeds.php:1101 msgid "Limit search to:" msgstr "Beperk zoeken naar:" -#: classes/feeds.php:1114 +#: classes/feeds.php:1117 msgid "This feed" msgstr "Deze feed" @@ -1612,7 +1548,7 @@ msgstr "[tt-rss] Melding verandering van wachtwoord" #: classes/pref/filters.php:645 #: classes/pref/filters.php:734 #: classes/pref/filters.php:761 -#: classes/pref/prefs.php:952 +#: classes/pref/prefs.php:998 #: classes/pref/feeds.php:1263 #: classes/pref/feeds.php:1533 #: classes/pref/feeds.php:1603 @@ -2032,212 +1968,217 @@ msgstr "Ingevulde wachtwoorden komen niet overeen." msgid "Function not supported by authentication module." msgstr "Functie niet ondersteund door authenticatiemodule." -#: classes/pref/prefs.php:120 +#: classes/pref/prefs.php:135 msgid "The configuration was saved." msgstr "De configuratie is opgeslagen." -#: classes/pref/prefs.php:134 +#: classes/pref/prefs.php:150 #, php-format msgid "Unknown option: %s" msgstr "Onbekende optie: %s" -#: classes/pref/prefs.php:148 +#: classes/pref/prefs.php:164 msgid "Your personal data has been saved." msgstr "Uw persoonlijke gegevens zijn opgeslagen." -#: classes/pref/prefs.php:188 +#: classes/pref/prefs.php:204 msgid "Personal data / Authentication" msgstr "Persoonlijke gegevens / Authenticatie" -#: classes/pref/prefs.php:208 +#: classes/pref/prefs.php:224 msgid "Personal data" msgstr "Persoonlijke gegevens" -#: classes/pref/prefs.php:218 +#: classes/pref/prefs.php:234 msgid "Full name" msgstr "volledige naam" -#: classes/pref/prefs.php:222 +#: classes/pref/prefs.php:238 msgid "E-mail" msgstr "E-mail" -#: classes/pref/prefs.php:228 +#: classes/pref/prefs.php:244 msgid "Access level" msgstr "Toegangsniveau" -#: classes/pref/prefs.php:238 +#: classes/pref/prefs.php:254 msgid "Save data" msgstr "Gegevens opslaan" -#: classes/pref/prefs.php:260 +#: classes/pref/prefs.php:276 msgid "Your password is at default value, please change it." msgstr "Uw wachtwoord staat op de standaard waarde. Verander het aub." -#: classes/pref/prefs.php:287 +#: classes/pref/prefs.php:303 msgid "Changing your current password will disable OTP." msgstr "" -#: classes/pref/prefs.php:292 +#: classes/pref/prefs.php:308 msgid "Old password" msgstr "Oud wachtwoord" -#: classes/pref/prefs.php:295 +#: classes/pref/prefs.php:311 msgid "New password" msgstr "Nieuw wachtwoord" -#: classes/pref/prefs.php:300 +#: classes/pref/prefs.php:316 msgid "Confirm password" msgstr "Bevestigen wachtwoord" -#: classes/pref/prefs.php:310 +#: classes/pref/prefs.php:326 msgid "Change password" msgstr "Wijzig wachtwoord" -#: classes/pref/prefs.php:316 +#: classes/pref/prefs.php:332 msgid "One time passwords / Authenticator" msgstr "eenmalig wachtwoord / Authenticator" -#: classes/pref/prefs.php:320 +#: classes/pref/prefs.php:336 msgid "One time passwords are currently enabled. Enter your current password below to disable." msgstr "" -#: classes/pref/prefs.php:345 -#: classes/pref/prefs.php:396 +#: classes/pref/prefs.php:361 +#: classes/pref/prefs.php:412 msgid "Enter your password" msgstr "Vul uw wachtwoord in" -#: classes/pref/prefs.php:356 +#: classes/pref/prefs.php:372 msgid "Disable OTP" msgstr "EWW (Eenmalig wachtwoord) uitschakelen" -#: classes/pref/prefs.php:362 +#: classes/pref/prefs.php:378 msgid "You will need a compatible Authenticator to use this. Changing your password would automatically disable OTP." msgstr "U heeft een compatibele Authenticator nodig om dit te gebruiken. Veranderen van wachtwoord schakelt automatisch EWW uit." -#: classes/pref/prefs.php:364 +#: classes/pref/prefs.php:380 msgid "Scan the following code by the Authenticator application:" msgstr "Scan de volgende code met de Authenticator applicatie:" -#: classes/pref/prefs.php:405 +#: classes/pref/prefs.php:421 msgid "I have scanned the code and would like to enable OTP" msgstr "Ik heb de code gescanned en wil nu EWW inschakelen" -#: classes/pref/prefs.php:413 +#: classes/pref/prefs.php:429 msgid "Enable OTP" msgstr "Inschakelen EWW" -#: classes/pref/prefs.php:451 +#: classes/pref/prefs.php:475 msgid "Some preferences are only available in default profile." msgstr "" -#: classes/pref/prefs.php:545 +#: classes/pref/prefs.php:585 msgid "Customize" msgstr "Aanpassen" -#: classes/pref/prefs.php:605 +#: classes/pref/prefs.php:645 msgid "Register" msgstr "Registreren" -#: classes/pref/prefs.php:609 +#: classes/pref/prefs.php:649 msgid "Clear" msgstr "Wissen" -#: classes/pref/prefs.php:615 +#: classes/pref/prefs.php:655 #, php-format msgid "Current server time: %s (UTC)" msgstr "Huidige servertijd: %s (UTC)" -#: classes/pref/prefs.php:648 +#: classes/pref/prefs.php:688 msgid "Save configuration" msgstr "Configuratie opslaan" -#: classes/pref/prefs.php:651 +#: classes/pref/prefs.php:692 +#, fuzzy +msgid "Save and exit preferences" +msgstr "Verlaat voorkeuren" + +#: classes/pref/prefs.php:697 msgid "Manage profiles" msgstr "Profielbeheer" -#: classes/pref/prefs.php:654 +#: classes/pref/prefs.php:700 msgid "Reset to defaults" msgstr "Terugzetten naar de standaardwaarden" -#: classes/pref/prefs.php:678 -#: classes/pref/prefs.php:680 +#: classes/pref/prefs.php:724 +#: classes/pref/prefs.php:726 msgid "Plugins" msgstr "Plug-ins" -#: classes/pref/prefs.php:682 +#: classes/pref/prefs.php:728 msgid "You will need to reload Tiny Tiny RSS for plugin changes to take effect." msgstr "" -#: classes/pref/prefs.php:684 +#: classes/pref/prefs.php:730 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:710 +#: classes/pref/prefs.php:756 msgid "System plugins" msgstr "Systeem plug-ins" -#: classes/pref/prefs.php:714 -#: classes/pref/prefs.php:768 +#: classes/pref/prefs.php:760 +#: classes/pref/prefs.php:814 msgid "Plugin" msgstr "Plug-in" -#: classes/pref/prefs.php:715 -#: classes/pref/prefs.php:769 +#: classes/pref/prefs.php:761 +#: classes/pref/prefs.php:815 msgid "Description" msgstr "Omschrijving" -#: classes/pref/prefs.php:716 -#: classes/pref/prefs.php:770 +#: classes/pref/prefs.php:762 +#: classes/pref/prefs.php:816 msgid "Version" msgstr "Versie" -#: classes/pref/prefs.php:717 -#: classes/pref/prefs.php:771 +#: classes/pref/prefs.php:763 +#: classes/pref/prefs.php:817 msgid "Author" msgstr "Auteur" -#: classes/pref/prefs.php:746 -#: classes/pref/prefs.php:803 +#: classes/pref/prefs.php:792 +#: classes/pref/prefs.php:849 msgid "more info" msgstr "" -#: classes/pref/prefs.php:755 -#: classes/pref/prefs.php:812 +#: classes/pref/prefs.php:801 +#: classes/pref/prefs.php:858 msgid "Clear data" msgstr "Wis data" -#: classes/pref/prefs.php:764 +#: classes/pref/prefs.php:810 msgid "User plugins" msgstr "Gebruiker's plug-ins" -#: classes/pref/prefs.php:827 +#: classes/pref/prefs.php:873 msgid "Enable selected plugins" msgstr "Geselecteerd plug-ins inschakelen" -#: classes/pref/prefs.php:882 -#: classes/pref/prefs.php:900 +#: classes/pref/prefs.php:928 +#: classes/pref/prefs.php:946 msgid "Incorrect password" msgstr "Onjuist wachtwoord" -#: classes/pref/prefs.php:926 +#: classes/pref/prefs.php:972 #, 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:966 +#: classes/pref/prefs.php:1012 msgid "Create profile" msgstr "Maak profiel" -#: classes/pref/prefs.php:989 -#: classes/pref/prefs.php:1019 +#: classes/pref/prefs.php:1035 +#: classes/pref/prefs.php:1065 msgid "(active)" msgstr "(actief)" -#: classes/pref/prefs.php:1053 +#: classes/pref/prefs.php:1099 msgid "Remove selected profiles" msgstr "Verwijder geselecteerde profielen" -#: classes/pref/prefs.php:1055 +#: classes/pref/prefs.php:1101 msgid "Activate profile" msgstr "Activeer profiel" @@ -2745,15 +2686,15 @@ msgstr "" msgid "The document has incorrect format." msgstr "" -#: plugins/googlereaderimport/init.php:326 +#: plugins/googlereaderimport/init.php:328 msgid "Import starred or shared items from Google Reader" msgstr "" -#: plugins/googlereaderimport/init.php:330 +#: plugins/googlereaderimport/init.php:332 msgid "Paste your starred.json or shared.json into the form below." msgstr "" -#: plugins/googlereaderimport/init.php:344 +#: plugins/googlereaderimport/init.php:346 msgid "Import my Starred items" msgstr "" @@ -2847,23 +2788,23 @@ msgstr "Klaar voor bijwerken." msgid "Start update" msgstr "Start update" -#: js/feedlist.js:392 -#: js/feedlist.js:420 +#: js/feedlist.js:394 +#: js/feedlist.js:422 #: plugins/digest/digest.js:26 msgid "Mark all articles in %s as read?" msgstr "Markeer alle artikelen in %s als gelezen?" -#: js/feedlist.js:411 +#: js/feedlist.js:413 #, fuzzy msgid "Mark all articles in %s older than 1 day as read?" msgstr "Markeer alle artikelen in %s als gelezen?" -#: js/feedlist.js:414 +#: js/feedlist.js:416 #, fuzzy msgid "Mark all articles in %s older than 1 week as read?" msgstr "Markeer alle artikelen in %s als gelezen?" -#: js/feedlist.js:417 +#: js/feedlist.js:419 #, fuzzy msgid "Mark all articles in %s older than 2 weeks as read?" msgstr "Markeer alle artikelen in %s als gelezen?" @@ -3407,149 +3348,149 @@ msgstr "Artikelen nieuwe score geven" msgid "New version available!" msgstr "Nieuwe versie beschikbaar!" -#: js/viewfeed.js:104 +#: js/viewfeed.js:106 msgid "Cancel search" msgstr "Zoeken annuleren" -#: js/viewfeed.js:438 +#: js/viewfeed.js:441 #: plugins/digest/digest.js:258 #: plugins/digest/digest.js:714 msgid "Unstar article" msgstr "Ster weghalen bij artikel" -#: js/viewfeed.js:443 +#: js/viewfeed.js:446 #: plugins/digest/digest.js:260 #: plugins/digest/digest.js:718 msgid "Star article" msgstr "Geef artikel een ster" -#: js/viewfeed.js:476 +#: js/viewfeed.js:479 #: plugins/digest/digest.js:263 #: plugins/digest/digest.js:749 msgid "Unpublish article" msgstr "Ongepubliceerd artikel" -#: js/viewfeed.js:481 +#: js/viewfeed.js:484 #: plugins/digest/digest.js:265 #: plugins/digest/digest.js:754 msgid "Publish article" msgstr "Artikel publiceren" -#: js/viewfeed.js:677 -#: js/viewfeed.js:705 -#: js/viewfeed.js:732 -#: js/viewfeed.js:795 -#: js/viewfeed.js:829 -#: js/viewfeed.js:949 -#: js/viewfeed.js:992 -#: js/viewfeed.js:1045 -#: js/viewfeed.js:2051 +#: js/viewfeed.js:680 +#: js/viewfeed.js:708 +#: js/viewfeed.js:735 +#: js/viewfeed.js:798 +#: js/viewfeed.js:832 +#: js/viewfeed.js:952 +#: js/viewfeed.js:995 +#: js/viewfeed.js:1048 +#: js/viewfeed.js:2060 #: plugins/mailto/init.js:7 #: plugins/mail/mail.js:7 msgid "No articles are selected." msgstr "Geen artikelen geselecteerd." -#: js/viewfeed.js:957 +#: js/viewfeed.js:960 #, 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:959 +#: js/viewfeed.js:962 #, 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:1001 +#: js/viewfeed.js:1004 #, 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:1004 +#: js/viewfeed.js:1007 #, 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:1006 +#: js/viewfeed.js:1009 msgid "Please note that unstarred articles might get purged on next feed update." msgstr "" -#: js/viewfeed.js:1051 +#: js/viewfeed.js:1054 #, 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:1075 +#: js/viewfeed.js:1078 msgid "Edit article Tags" msgstr "Bewerken artikel tags" -#: js/viewfeed.js:1081 +#: js/viewfeed.js:1084 #, fuzzy msgid "Saving article tags..." msgstr "Bewerken artikel tags" -#: js/viewfeed.js:1278 +#: js/viewfeed.js:1287 msgid "No article is selected." msgstr "Geen artikel geselecteerd." -#: js/viewfeed.js:1313 +#: js/viewfeed.js:1322 msgid "No articles found to mark" msgstr "Geen artikelen gevonden om te markeren" -#: js/viewfeed.js:1315 +#: js/viewfeed.js:1324 #, 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:1827 +#: js/viewfeed.js:1836 msgid "Open original article" msgstr "Open origineel artikel" -#: js/viewfeed.js:1833 +#: js/viewfeed.js:1842 msgid "Display article URL" msgstr "Toon artikel URL" -#: js/viewfeed.js:1852 +#: js/viewfeed.js:1861 #, fuzzy msgid "Toggle marked" msgstr "In/uitschakelen sterren" -#: js/viewfeed.js:1933 +#: js/viewfeed.js:1942 msgid "Assign label" msgstr "Labels toevoegen" -#: js/viewfeed.js:1938 +#: js/viewfeed.js:1947 msgid "Remove label" msgstr "Label verwijderen" -#: js/viewfeed.js:1962 +#: js/viewfeed.js:1971 msgid "Playing..." msgstr "aan 't afspelen..." -#: js/viewfeed.js:1963 +#: js/viewfeed.js:1972 msgid "Click to pause" msgstr "Klik voor pauze" -#: js/viewfeed.js:2020 +#: js/viewfeed.js:2029 msgid "Please enter new score for selected articles:" msgstr "Geef aub een nieuwe score voor de geselecteerde artikelen:" -#: js/viewfeed.js:2062 +#: js/viewfeed.js:2071 msgid "Please enter new score for this article:" msgstr "Geef aub een nieuwe score voor dit artikel:" -#: js/viewfeed.js:2095 +#: js/viewfeed.js:2104 msgid "Article URL:" msgstr "Artikel URL:" @@ -3659,6 +3600,58 @@ 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. " +#~ msgid "Could not update database" +#~ msgstr "Kon de database niet bijwerken" + +#~ msgid "Could not find necessary schema file, need version:" +#~ msgstr "Kon geen juist updateschemabestand vinden. Benodigde versie:" + +#~ msgid ", found: " +#~ msgstr ", gevonden: " + +#~ msgid "Tiny Tiny RSS database is up to date." +#~ msgstr "Tiny Tiny RSS database is bijgewerkt." + +#~ msgid "Please backup your database before proceeding." +#~ msgstr "Maak aub een back-up van uw database voordat u verder gaat." + +#~ msgid "Your Tiny Tiny RSS database needs update to the latest version (<b>%d</b> to <b>%d</b>)." +#~ msgstr "Uw Tiny Tiny RSS database moet worden geüpdate naar de laatste versie (<b>%d</b> naar <b>%d</b>)." + +#~ msgid "Performing updates..." +#~ msgstr "Uitvoeren van updates..." + +#~ msgid "Updating to version %d..." +#~ msgstr "Updaten naar versie %d..." + +#~ msgid "Checking version... " +#~ msgstr "Versie controleren..." + +#~ msgid "OK!" +#~ msgstr "OK!" + +#~ msgid "ERROR!" +#~ msgstr "FOUT!" + +#, fuzzy +#~ 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] "" +#~ "Klaar. <b>%d</b> update(s) uitgevoerd volgens schema naar\n" +#~ "\t\t\tversie <b>%d</b>." +#~ msgstr[1] "" +#~ "Klaar. <b>%d</b> update(s) uitgevoerd volgens schema naar\n" +#~ "\t\t\tversie <b>%d</b>." + +#~ msgid "Your database schema is from a newer version of Tiny Tiny RSS." +#~ msgstr "Uw database schema is van een nieuwere versie van Tiny Tiny RSS." + +#~ msgid "Found schema version: <b>%d</b>, required: <b>%d</b>." +#~ msgstr "Versie schema gevonden: <b>%d</b>, vereist: <b>%d</b>." + +#~ msgid "Schema upgrade impossible. Please update Tiny Tiny RSS files to the newer version and continue." +#~ msgstr "Schema update onmogelijk. Update Tiny Tiny RSS bestanden naar de nieuwere versie en gaan door." + #, fuzzy #~ msgid "Mark feed as read" #~ msgstr "Markeer alle feeds als gelezen" @@ -3673,9 +3666,6 @@ msgstr "Live updaten is nog experimenteel. Maak een back-up van uw tt-rss map al #~ msgid "When this option is enabled, headlines in Special feeds and Labels are grouped by feeds" #~ msgstr "Als deze optie is ingeschakeld worden kopteksten in de Speciale feedsrubriek en Labels gegroepeerd per feed" -#~ msgid "Title" -#~ msgstr "Titel" - #~ msgid "Title or Content" #~ msgstr "Titel of inhoud" diff --git a/locale/pl_PL/LC_MESSAGES/messages.mo b/locale/pl_PL/LC_MESSAGES/messages.mo Binary files differindex 98e05d83a..e1315e329 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 a6a7ad1da..9ac5e7a38 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-04-04 09:06+0400\n" +"POT-Creation-Date: 2013-04-04 21:31+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" @@ -104,102 +104,6 @@ msgstr "Zaawansowany użytkownik" msgid "Administrator" msgstr "Administrator" -#: db-updater.php:19 -msgid "Your access level is insufficient to run this script." -msgstr "Twój poziom dostÄ™pu jest niewystarczajÄ…cy do uruchomienia tego skryptu." - -#: db-updater.php:44 -msgid "Database Updater" -msgstr "Aktualizator bazy danych" - -#: db-updater.php:87 -msgid "Could not update database" -msgstr "Nie można zaktualizować bazy danych" - -#: db-updater.php:90 -msgid "Could not find necessary schema file, need version:" -msgstr "Nie udaÅ‚o siÄ™ odnaleźć niezbÄ™dnych plików schematu, potrzebna wersja: " - -#: db-updater.php:91 -msgid ", found: " -msgstr ", odnaleziono: " - -#: db-updater.php:94 -msgid "Tiny Tiny RSS database is up to date." -msgstr "Schemat bazy danych Tiny Tiny RSS jest aktualny." - -#: 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:648 -#: classes/handler/public.php:736 -#: classes/handler/public.php:818 -msgid "Return to Tiny Tiny RSS" -msgstr "Wróć do Tiny Tiny RSS" - -#: db-updater.php:102 -msgid "Please backup your database before proceeding." -msgstr "Wykonaj kopiÄ™ bazy przed rozpoczÄ™ciem procesu." - -#: 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 "Baza Tiny Tiny RSS musi być zaktualizowana do aktualnej wersji (<b>%d</b> do <b>%d</b>)." - -#: db-updater.php:118 -msgid "Perform updates" -msgstr "Przeprowadź aktualizacje" - -#: db-updater.php:123 -msgid "Performing updates..." -msgstr "Trwa aktualizacja..." - -#: db-updater.php:129 -#, php-format -msgid "Updating to version %d..." -msgstr "Aktualizacja do wersji %d..." - -#: db-updater.php:144 -msgid "Checking version... " -msgstr "Sprawdzanie wersji... " - -#: db-updater.php:150 -msgid "OK!" -msgstr "OK!" - -#: db-updater.php:152 -msgid "ERROR!" -msgstr "BÅÄ„D!" - -#: 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] "ZakoÅ„czono. Wykonano <b>%d</b> aktualizacjÄ™ do wersji <b>%d</b> schematu bazy danych." -msgstr[1] "ZakoÅ„czono. Wykonano <b>%d</b> aktualizacji do wersji <b>%d</b> schematu bazy danych." -msgstr[2] "ZakoÅ„czono. Wykonano <b>%d</b> aktualizacji do wersji <b>%d</b> schematu bazy danych." - -#: db-updater.php:170 -msgid "Your database schema is from a newer version of Tiny Tiny RSS." -msgstr "Wersja schematu Twojej bazy danych jest nowsza niż wersja Tiny Tiny RSS." - -#: db-updater.php:172 -#, php-format -msgid "Found schema version: <b>%d</b>, required: <b>%d</b>." -msgstr "Wykryta wersja bazy: <b>%d</b>, wymagana <b>%d</b>." - -#: db-updater.php:174 -msgid "Schema upgrade impossible. Please update Tiny Tiny RSS files to the newer version and continue." -msgstr "Aktualizacja schematu bazy niemożliwa do wykonania. Uaktualnij pliki Tiny Tiny RSS do nowszej wersji i ponów próbÄ™." - #: errors.php:9 msgid "This program requires XmlHttpRequest to function properly. Your browser doesn't seem to support it." msgstr "Ten program wymaga poprawnie dziaÅ‚ajÄ…cej funkcji XmlHttpRequest. WyglÄ…da na to, iż Twoja przeglÄ…darka jej nie obsÅ‚uguje." @@ -250,7 +154,7 @@ msgstr "Test escape'owania SQL nie powiódÅ‚ siÄ™. Sprawdź konfiguracjÄ™ swojej #: index.php:135 #: index.php:152 -#: index.php:276 +#: index.php:277 #: prefs.php:103 #: classes/backend.php:5 #: classes/pref/labels.php:296 @@ -258,7 +162,7 @@ msgstr "Test escape'owania SQL nie powiódÅ‚ siÄ™. Sprawdź konfiguracjÄ™ swojej #: classes/pref/feeds.php:1331 #: plugins/digest/digest_body.php:63 #: js/feedlist.js:128 -#: js/feedlist.js:436 +#: js/feedlist.js:438 #: js/functions.js:420 #: js/functions.js:758 #: js/functions.js:1194 @@ -279,8 +183,8 @@ msgstr "Test escape'owania SQL nie powiódÅ‚ siÄ™. Sprawdź konfiguracjÄ™ swojej #: js/prefs.js:1814 #: js/tt-rss.js:475 #: js/tt-rss.js:492 -#: js/viewfeed.js:772 -#: js/viewfeed.js:1200 +#: js/viewfeed.js:775 +#: js/viewfeed.js:1201 #: plugins/import_export/import_export.js:17 #: plugins/updater/updater.js:17 msgid "Loading, please wait..." @@ -303,13 +207,13 @@ msgid "All Articles" msgstr "Wszystkie artykuÅ‚y" #: index.php:174 -#: include/functions.php:1953 +#: include/functions.php:1955 #: classes/feeds.php:106 msgid "Starred" msgstr "Oznaczone gwiazdkÄ…" #: index.php:175 -#: include/functions.php:1954 +#: include/functions.php:1956 #: classes/feeds.php:107 msgid "Published" msgstr "Opublikowane" @@ -349,9 +253,13 @@ msgstr "" msgid "Oldest first" msgstr "" -#: index.php:191 -#: index.php:240 -#: include/functions.php:1943 +#: index.php:188 +msgid "Title" +msgstr "TytuÅ‚" + +#: index.php:192 +#: index.php:241 +#: include/functions.php:1945 #: classes/feeds.php:111 #: classes/feeds.php:441 #: js/FeedTree.js:128 @@ -360,104 +268,104 @@ msgstr "" msgid "Mark as read" msgstr "Oznacz jako przeczytane" -#: index.php:194 +#: index.php:195 msgid "Older than one day" msgstr "" -#: index.php:197 +#: index.php:198 msgid "Older than one week" msgstr "" -#: index.php:200 +#: index.php:201 msgid "Older than two weeks" msgstr "" -#: index.php:217 +#: index.php:218 msgid "Communication problem with server." msgstr "Problem w komunikacji z serwerem." -#: index.php:225 +#: index.php:226 msgid "New version of Tiny Tiny RSS is available!" msgstr "DostÄ™pna jest nowa wersja Tiny Tiny RSS!" -#: index.php:230 +#: index.php:231 msgid "Actions..." msgstr "DziaÅ‚ania..." -#: index.php:232 +#: index.php:233 msgid "Preferences..." msgstr "Ustawienia..." -#: index.php:233 +#: index.php:234 msgid "Search..." msgstr "Szukaj..." -#: index.php:234 +#: index.php:235 msgid "Feed actions:" msgstr "DziaÅ‚ania dla kanałów:" -#: index.php:235 +#: index.php:236 #: classes/handler/public.php:578 msgid "Subscribe to feed..." msgstr "Prenumeruj kanaÅ‚..." -#: index.php:236 +#: index.php:237 msgid "Edit this feed..." msgstr "Edytuj ten kanaÅ‚..." -#: index.php:237 +#: index.php:238 msgid "Rescore feed" msgstr "Przelicz punktacjÄ™ kanaÅ‚u" -#: index.php:238 +#: index.php:239 #: classes/pref/feeds.php:717 #: classes/pref/feeds.php:1283 #: js/PrefFeedTree.js:73 msgid "Unsubscribe" msgstr "Wypisz siÄ™" -#: index.php:239 +#: index.php:240 msgid "All feeds:" msgstr "Wszystkie kanaÅ‚y:" -#: index.php:241 +#: index.php:242 msgid "(Un)hide read feeds" msgstr "Pokaż/Ukryj przeczytane kanaÅ‚y" -#: index.php:242 +#: index.php:243 msgid "Other actions:" msgstr "Inne dziaÅ‚ania:" -#: index.php:244 +#: index.php:245 msgid "Switch to digest..." msgstr "Przełącz na przeglÄ…d..." -#: index.php:246 +#: index.php:247 msgid "Show tag cloud..." msgstr "Pokaż chmurÄ™ tagów..." -#: index.php:247 -#: include/functions.php:1929 +#: index.php:248 +#: include/functions.php:1931 msgid "Toggle widescreen mode" msgstr "Przełącz tryb szerokoekranowy" -#: index.php:248 +#: index.php:249 msgid "Select by tags..." msgstr "Wybierz używajÄ…c tagów..." -#: index.php:249 +#: index.php:250 msgid "Create label..." msgstr "Utwórz etykietÄ™..." -#: index.php:250 +#: index.php:251 msgid "Create filter..." msgstr "Utwórz filtr..." -#: index.php:251 +#: index.php:252 msgid "Keyboard shortcuts help" msgstr "O skrótach klawiszowych" -#: index.php:260 +#: index.php:261 #: plugins/digest/digest_body.php:77 #: plugins/mobile/mobile-functions.php:62 #: plugins/mobile/mobile-functions.php:237 @@ -466,8 +374,8 @@ msgstr "Wyloguj" #: prefs.php:36 #: prefs.php:121 -#: include/functions.php:1956 -#: classes/pref/prefs.php:428 +#: include/functions.php:1958 +#: classes/pref/prefs.php:444 msgid "Preferences" msgstr "Ustawienia" @@ -492,8 +400,8 @@ msgid "Filters" msgstr "Filtry" #: prefs.php:130 -#: include/functions.php:1146 -#: include/functions.php:1782 +#: include/functions.php:1148 +#: include/functions.php:1784 #: classes/pref/labels.php:90 #: plugins/mobile/mobile-functions.php:198 msgid "Labels" @@ -512,6 +420,24 @@ msgstr "Utwórz nowe konto" msgid "New user registrations are administratively disabled." msgstr "Rejestracja nowych użytkowników zostaÅ‚ zablokowana przez administratora." +#: 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:648 +#: classes/handler/public.php:736 +#: classes/handler/public.php:818 +#: classes/handler/public.php:893 +#: classes/handler/public.php:907 +#: classes/handler/public.php:914 +#: classes/handler/public.php:939 +msgid "Return to Tiny Tiny RSS" +msgstr "Wróć do Tiny Tiny RSS" + #: 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 "Twoje tymczasowe hasÅ‚o zostanie wysÅ‚ane na podany adres email. Konta, na które nikt nie zalogowaÅ‚ siÄ™, sÄ… usuwane automatycznie 24 godziny po wysÅ‚aniu hasÅ‚a tymczasowego." @@ -558,15 +484,15 @@ msgstr "Konto zostaÅ‚o zaÅ‚ożone." msgid "New user registrations are currently closed." msgstr "Możliwość rejestracji jest obecnie wyłączona." -#: update.php:55 +#: update.php:56 msgid "Tiny Tiny RSS data update script." msgstr "Skrypt aktualizacji danych Tiny Tiny RSS." #: include/digest.php:109 -#: include/functions.php:1155 -#: include/functions.php:1683 -#: include/functions.php:1768 -#: include/functions.php:1790 +#: include/functions.php:1157 +#: include/functions.php:1685 +#: include/functions.php:1770 +#: include/functions.php:1792 #: classes/opml.php:416 #: classes/pref/feeds.php:222 msgid "Uncategorized" @@ -584,301 +510,301 @@ msgstr[2] "%d zarchiwizowanych artykułów" msgid "No feeds found." msgstr "Nie znaleziono kanałów." -#: include/functions.php:1144 -#: include/functions.php:1780 +#: include/functions.php:1146 +#: include/functions.php:1782 #: plugins/mobile/mobile-functions.php:171 msgid "Special" msgstr "Specjalne" -#: include/functions.php:1632 -#: classes/feeds.php:1101 +#: include/functions.php:1634 +#: classes/feeds.php:1104 #: classes/pref/filters.php:427 msgid "All feeds" msgstr "Wszystkie kanaÅ‚y" -#: include/functions.php:1833 +#: include/functions.php:1835 msgid "Starred articles" msgstr "ArtykuÅ‚y oznaczone gwiazdkÄ…" -#: include/functions.php:1835 +#: include/functions.php:1837 msgid "Published articles" msgstr "Opublikowane artykuÅ‚y" -#: include/functions.php:1837 +#: include/functions.php:1839 msgid "Fresh articles" msgstr "Åšwieże artykuÅ‚y" -#: include/functions.php:1839 -#: include/functions.php:1951 +#: include/functions.php:1841 +#: include/functions.php:1953 msgid "All articles" msgstr "Wszystkie artykuÅ‚y" -#: include/functions.php:1841 +#: include/functions.php:1843 msgid "Archived articles" msgstr "Zarchiwizowane artykuÅ‚y" -#: include/functions.php:1843 +#: include/functions.php:1845 msgid "Recently read" msgstr "Ostatnio czytane" -#: include/functions.php:1906 +#: include/functions.php:1908 msgid "Navigation" msgstr "Nawigacja" -#: include/functions.php:1907 +#: include/functions.php:1909 msgid "Open next feed" msgstr "Przejdź do nastÄ™pnego kanaÅ‚u" -#: include/functions.php:1908 +#: include/functions.php:1910 msgid "Open previous feed" msgstr "Otwórz poprzedni kanaÅ‚" -#: include/functions.php:1909 +#: include/functions.php:1911 msgid "Open next article" msgstr "Otwórz nastÄ™pny artykuÅ‚" -#: include/functions.php:1910 +#: include/functions.php:1912 msgid "Open previous article" msgstr "Otwórz poprzedni artykuÅ‚" -#: include/functions.php:1911 +#: include/functions.php:1913 msgid "Open next article (don't scroll long articles)" msgstr "Otwórz nastÄ™pny artykuÅ‚ (nie przewijaj dÅ‚ugich artykułów)" -#: include/functions.php:1912 +#: include/functions.php:1914 msgid "Open previous article (don't scroll long articles)" msgstr "Otwórz poprzeni artykół (nie przewijaj dÅ‚ugich artykułów)" -#: include/functions.php:1913 +#: include/functions.php:1915 msgid "Show search dialog" msgstr "Otwórz okno wyszukiwania" -#: include/functions.php:1914 +#: include/functions.php:1916 msgid "Article" msgstr "ArtykuÅ‚" -#: include/functions.php:1915 +#: include/functions.php:1917 msgid "Toggle starred" msgstr "Przełącz oznaczenie gwiazdkÄ…" -#: include/functions.php:1916 -#: js/viewfeed.js:1863 +#: include/functions.php:1918 +#: js/viewfeed.js:1872 msgid "Toggle published" msgstr "Przełącz flagÄ™ publikacji" -#: include/functions.php:1917 -#: js/viewfeed.js:1841 +#: include/functions.php:1919 +#: js/viewfeed.js:1850 msgid "Toggle unread" msgstr "Przełącz flagÄ™ \"przeczytano\"" -#: include/functions.php:1918 +#: include/functions.php:1920 msgid "Edit tags" msgstr "Edytuj tagi" -#: include/functions.php:1919 +#: include/functions.php:1921 msgid "Dismiss selected" msgstr "Odrzuć wybrane" -#: include/functions.php:1920 +#: include/functions.php:1922 msgid "Dismiss read" msgstr "Odrzuć przeczytane" -#: include/functions.php:1921 +#: include/functions.php:1923 msgid "Open in new window" msgstr "Otwórz w nowym oknie" -#: include/functions.php:1922 -#: js/viewfeed.js:1882 +#: include/functions.php:1924 +#: js/viewfeed.js:1891 msgid "Mark below as read" msgstr "Oznacz poniższe jako przeczytane" -#: include/functions.php:1923 -#: js/viewfeed.js:1876 +#: include/functions.php:1925 +#: js/viewfeed.js:1885 msgid "Mark above as read" msgstr "Oznacz powyższe jako przeczytane" -#: include/functions.php:1924 +#: include/functions.php:1926 msgid "Scroll down" msgstr "PrzewiÅ„ w dół" -#: include/functions.php:1925 +#: include/functions.php:1927 msgid "Scroll up" msgstr "PrzewiÅ„ do góry" -#: include/functions.php:1926 +#: include/functions.php:1928 msgid "Select article under cursor" msgstr "Wybierz artykuÅ‚ pod kursorem" -#: include/functions.php:1927 +#: include/functions.php:1929 msgid "Email article" msgstr "PrzeÅ›lij artykuÅ‚ emailem" -#: include/functions.php:1928 +#: include/functions.php:1930 msgid "Close/collapse article" msgstr "Zamknij/zwiÅ„ artykuÅ‚" -#: include/functions.php:1930 +#: include/functions.php:1932 #: plugins/embed_original/init.php:33 msgid "Toggle embed original" msgstr "Przełącza flagÄ™ \"wbuduj oryginalny artykuÅ‚\"" -#: include/functions.php:1931 +#: include/functions.php:1933 msgid "Article selection" msgstr "Wybór artykułów" -#: include/functions.php:1932 +#: include/functions.php:1934 msgid "Select all articles" msgstr "Wybierz wszystkie artykuÅ‚y" -#: include/functions.php:1933 +#: include/functions.php:1935 msgid "Select unread" msgstr "Wybierz nieprzeczytane" -#: include/functions.php:1934 +#: include/functions.php:1936 msgid "Select starred" msgstr "Wybierz oznaczone gwiazdkÄ…" -#: include/functions.php:1935 +#: include/functions.php:1937 msgid "Select published" msgstr "Wybierz opublikowane" -#: include/functions.php:1936 +#: include/functions.php:1938 msgid "Invert selection" msgstr "Odwróć zaznaczenie" -#: include/functions.php:1937 +#: include/functions.php:1939 msgid "Deselect everything" msgstr "Odznacz wszystko" -#: include/functions.php:1938 +#: include/functions.php:1940 #: classes/pref/feeds.php:521 #: classes/pref/feeds.php:754 msgid "Feed" msgstr "KanaÅ‚" -#: include/functions.php:1939 +#: include/functions.php:1941 msgid "Refresh current feed" msgstr "OdÅ›wież bieżący kanaÅ‚" -#: include/functions.php:1940 +#: include/functions.php:1942 msgid "Un/hide read feeds" msgstr "Pokaż/Ukryj przeczytane kanaÅ‚y" -#: include/functions.php:1941 +#: include/functions.php:1943 #: classes/pref/feeds.php:1275 msgid "Subscribe to feed" msgstr "Prenumeruj kanaÅ‚" -#: include/functions.php:1942 +#: include/functions.php:1944 #: js/FeedTree.js:135 #: js/PrefFeedTree.js:67 msgid "Edit feed" msgstr "Edytuj kanaÅ‚" -#: include/functions.php:1944 +#: include/functions.php:1946 msgid "Reverse headlines" msgstr "Odwróć kolejność nagłówków" -#: include/functions.php:1945 +#: include/functions.php:1947 msgid "Debug feed update" msgstr "Testuj aktualizacjÄ™ kanałów" -#: include/functions.php:1946 +#: include/functions.php:1948 #: js/FeedTree.js:178 msgid "Mark all feeds as read" msgstr "Oznacz wszystkie kanaÅ‚y jako przeczytane" -#: include/functions.php:1947 +#: include/functions.php:1949 msgid "Un/collapse current category" msgstr "ZwiÅ„/rozwiÅ„ bieżącÄ… kategoriÄ™" -#: include/functions.php:1948 +#: include/functions.php:1950 msgid "Toggle combined mode" msgstr "Przełącz tryb scalony" -#: include/functions.php:1949 +#: include/functions.php:1951 #, fuzzy msgid "Toggle auto expand in combined mode" msgstr "Przełącz tryb scalony" -#: include/functions.php:1950 +#: include/functions.php:1952 msgid "Go to" msgstr "Idź do" -#: include/functions.php:1952 +#: include/functions.php:1954 msgid "Fresh" msgstr "Åšwieży" -#: include/functions.php:1955 +#: include/functions.php:1957 #: js/tt-rss.js:431 #: js/tt-rss.js:584 msgid "Tag cloud" msgstr "Chmura tagów" -#: include/functions.php:1957 +#: include/functions.php:1959 msgid "Other" msgstr "Inne" -#: include/functions.php:1958 +#: include/functions.php:1960 #: classes/pref/labels.php:281 msgid "Create label" msgstr "Utwórz etykietÄ™" -#: include/functions.php:1959 +#: include/functions.php:1961 #: classes/pref/filters.php:654 msgid "Create filter" msgstr "Utwórz filtr" -#: include/functions.php:1960 +#: include/functions.php:1962 msgid "Un/collapse sidebar" msgstr "Zwin/rozwiÅ„ pasek boczny" -#: include/functions.php:1961 +#: include/functions.php:1963 msgid "Show help dialog" msgstr "Otwórz okno pomocy" -#: include/functions.php:2446 +#: include/functions.php:2471 #, php-format msgid "Search results: %s" msgstr "Wyniki wyszukiwania: %s" -#: include/functions.php:2937 -#: js/viewfeed.js:1969 +#: include/functions.php:2962 +#: js/viewfeed.js:1978 msgid "Click to play" msgstr "WciÅ›nij aby odtworzyć" -#: include/functions.php:2938 -#: js/viewfeed.js:1968 +#: include/functions.php:2963 +#: js/viewfeed.js:1977 msgid "Play" msgstr "Odtwórz" -#: include/functions.php:3055 +#: include/functions.php:3080 msgid " - " msgstr " - " -#: include/functions.php:3077 -#: include/functions.php:3371 +#: include/functions.php:3102 +#: include/functions.php:3396 #: classes/article.php:281 msgid "no tags" msgstr "brak tagów" -#: include/functions.php:3087 +#: include/functions.php:3112 #: classes/feeds.php:686 msgid "Edit tags for this article" msgstr "Edytuj tagi dla tego artykuÅ‚u" -#: include/functions.php:3116 +#: include/functions.php:3141 #: classes/feeds.php:642 msgid "Originally from:" msgstr "OryginaÅ‚ pochodzi z:" -#: include/functions.php:3129 +#: include/functions.php:3154 #: classes/feeds.php:655 #: classes/pref/feeds.php:540 msgid "Feed URL" msgstr "Adres kanaÅ‚u" -#: include/functions.php:3160 +#: include/functions.php:3185 #: classes/dlg.php:37 #: classes/dlg.php:60 #: classes/dlg.php:93 @@ -890,7 +816,7 @@ msgstr "Adres kanaÅ‚u" #: classes/backend.php:105 #: classes/pref/users.php:99 #: classes/pref/filters.php:147 -#: classes/pref/prefs.php:1059 +#: classes/pref/prefs.php:1105 #: classes/pref/feeds.php:1588 #: classes/pref/feeds.php:1660 #: plugins/import_export/init.php:406 @@ -901,15 +827,15 @@ msgstr "Adres kanaÅ‚u" msgid "Close this window" msgstr "Zamknij to okno" -#: include/functions.php:3396 +#: include/functions.php:3421 msgid "(edit note)" msgstr "(edytuj notatkÄ™)" -#: include/functions.php:3631 +#: include/functions.php:3656 msgid "unknown type" msgstr "nieznany typ" -#: include/functions.php:3687 +#: include/functions.php:3712 msgid "Attachments" msgstr "Załączniki" @@ -932,6 +858,7 @@ msgstr "ZapomniaÅ‚em hasÅ‚a" #: include/login_form.php:201 #: classes/handler/public.php:489 +#: classes/pref/prefs.php:552 msgid "Language:" msgstr "JÄ™zyk:" @@ -942,7 +869,7 @@ msgstr "Profil:" #: include/login_form.php:213 #: classes/handler/public.php:233 #: classes/rpc.php:64 -#: classes/pref/prefs.php:995 +#: classes/pref/prefs.php:1041 msgid "Default profile" msgstr "DomyÅ›lny profil" @@ -960,7 +887,7 @@ msgstr "" msgid "Log in" msgstr "Zaloguj" -#: include/sessions.php:58 +#: include/sessions.php:62 msgid "Session failed to validate (incorrect IP)" msgstr "Nie powiodÅ‚a siÄ™ weryfikacja sesji (nieprawidÅ‚owy adres IP)" @@ -976,7 +903,7 @@ msgstr "Tagi dla tego artykuÅ‚u (oddzielone przecinkami):" #: classes/pref/users.php:176 #: classes/pref/labels.php:79 #: classes/pref/filters.php:405 -#: classes/pref/prefs.php:941 +#: classes/pref/prefs.php:987 #: classes/pref/feeds.php:733 #: classes/pref/feeds.php:881 #: plugins/nsfw/init.php:86 @@ -988,16 +915,16 @@ msgstr "Zapisz" #: classes/article.php:206 #: classes/handler/public.php:460 #: classes/handler/public.php:502 -#: classes/feeds.php:1028 -#: classes/feeds.php:1080 -#: classes/feeds.php:1140 +#: classes/feeds.php:1031 +#: classes/feeds.php:1083 +#: classes/feeds.php:1143 #: 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:943 +#: classes/pref/prefs.php:989 #: classes/pref/feeds.php:734 #: classes/pref/feeds.php:884 #: classes/pref/feeds.php:1797 @@ -1122,6 +1049,18 @@ msgstr "Cofnij" msgid "Sorry, login and email combination not found." msgstr "Przykro mi, podana kombinacja nazwy użytkownika i adresu email nie zostaÅ‚a oznaleziona." +#: classes/handler/public.php:842 +msgid "Your access level is insufficient to run this script." +msgstr "Twój poziom dostÄ™pu jest niewystarczajÄ…cy do uruchomienia tego skryptu." + +#: classes/handler/public.php:866 +msgid "Database Updater" +msgstr "Aktualizator bazy danych" + +#: classes/handler/public.php:931 +msgid "Perform updates" +msgstr "Przeprowadź aktualizacje" + #: 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." @@ -1221,7 +1160,7 @@ msgstr "Wybierz: " #: classes/pref/filters.php:648 #: classes/pref/filters.php:737 #: classes/pref/filters.php:764 -#: classes/pref/prefs.php:955 +#: classes/pref/prefs.php:1001 #: classes/pref/feeds.php:1266 #: classes/pref/feeds.php:1536 #: classes/pref/feeds.php:1606 @@ -1241,7 +1180,7 @@ msgstr "Odwróć" #: classes/pref/filters.php:650 #: classes/pref/filters.php:739 #: classes/pref/filters.php:766 -#: classes/pref/prefs.php:957 +#: classes/pref/prefs.php:1003 #: classes/pref/feeds.php:1268 #: classes/pref/feeds.php:1538 #: classes/pref/feeds.php:1608 @@ -1332,44 +1271,44 @@ msgid "No articles found to display." msgstr "Nie znaleziono artykułów." #: classes/feeds.php:759 -#: classes/feeds.php:923 +#: classes/feeds.php:926 #, php-format msgid "Feeds last updated at %s" msgstr "KanaÅ‚y ostatnio uaktualnione o %s" #: classes/feeds.php:769 -#: classes/feeds.php:933 +#: classes/feeds.php:936 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:913 +#: classes/feeds.php:916 msgid "No feed selected." msgstr "Nie wybrano kanaÅ‚u." -#: classes/feeds.php:966 -#: classes/feeds.php:974 +#: classes/feeds.php:969 +#: classes/feeds.php:977 msgid "Feed or site URL" msgstr "Adres kanaÅ‚u lub strony" -#: classes/feeds.php:980 +#: classes/feeds.php:983 #: 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 +#: classes/feeds.php:991 msgid "Available feeds" msgstr "DostÄ™pne kanaÅ‚y" -#: classes/feeds.php:1000 +#: classes/feeds.php:1003 #: classes/pref/users.php:139 #: classes/pref/feeds.php:590 #: classes/pref/feeds.php:818 msgid "Authentication" msgstr "Uwierzytelnianie" -#: classes/feeds.php:1004 +#: classes/feeds.php:1007 #: classes/pref/users.php:402 #: classes/pref/feeds.php:596 #: classes/pref/feeds.php:822 @@ -1377,30 +1316,30 @@ msgstr "Uwierzytelnianie" msgid "Login" msgstr "Nazwa użytkownika" -#: classes/feeds.php:1007 -#: classes/pref/prefs.php:253 +#: classes/feeds.php:1010 +#: classes/pref/prefs.php:269 #: classes/pref/feeds.php:602 #: classes/pref/feeds.php:828 #: classes/pref/feeds.php:1778 msgid "Password" msgstr "HasÅ‚o" -#: classes/feeds.php:1017 +#: classes/feeds.php:1020 msgid "This feed requires authentication." msgstr "Ten kanaÅ‚ wymaga uwierzytelniania." -#: classes/feeds.php:1022 -#: classes/feeds.php:1078 +#: classes/feeds.php:1025 +#: classes/feeds.php:1081 #: classes/pref/feeds.php:1796 msgid "Subscribe" msgstr "Prenumeruj" -#: classes/feeds.php:1025 +#: classes/feeds.php:1028 msgid "More feeds" msgstr "WiÄ™cej kanałów" -#: classes/feeds.php:1048 -#: classes/feeds.php:1139 +#: classes/feeds.php:1051 +#: classes/feeds.php:1142 #: classes/pref/users.php:332 #: classes/pref/filters.php:641 #: classes/pref/feeds.php:1259 @@ -1408,19 +1347,19 @@ msgstr "WiÄ™cej kanałów" msgid "Search" msgstr "Szukaj" -#: classes/feeds.php:1052 +#: classes/feeds.php:1055 msgid "Popular feeds" msgstr "Popularne kanaÅ‚y" -#: classes/feeds.php:1053 +#: classes/feeds.php:1056 msgid "Feed archive" msgstr "Archiwum kanaÅ‚u" -#: classes/feeds.php:1056 +#: classes/feeds.php:1059 msgid "limit:" msgstr "limit:" -#: classes/feeds.php:1079 +#: classes/feeds.php:1082 #: classes/pref/users.php:358 #: classes/pref/labels.php:284 #: classes/pref/filters.php:398 @@ -1430,15 +1369,15 @@ msgstr "limit:" msgid "Remove" msgstr "UsuÅ„" -#: classes/feeds.php:1090 +#: classes/feeds.php:1093 msgid "Look for" msgstr "Szukaj napisu" -#: classes/feeds.php:1098 +#: classes/feeds.php:1101 msgid "Limit search to:" msgstr "Ogranicz wyszukiwanie do:" -#: classes/feeds.php:1114 +#: classes/feeds.php:1117 msgid "This feed" msgstr "Ten kanaÅ‚" @@ -1598,7 +1537,7 @@ msgstr "[tt-rss] Informacja o zmianie hasÅ‚a" #: classes/pref/filters.php:645 #: classes/pref/filters.php:734 #: classes/pref/filters.php:761 -#: classes/pref/prefs.php:952 +#: classes/pref/prefs.php:998 #: classes/pref/feeds.php:1263 #: classes/pref/feeds.php:1533 #: classes/pref/feeds.php:1603 @@ -2018,212 +1957,217 @@ msgstr "Wprowadzone hasÅ‚a sÄ… różne." msgid "Function not supported by authentication module." msgstr "Metoda nie wspierana przez mechanizm uwierzytelniajÄ…cy." -#: classes/pref/prefs.php:120 +#: classes/pref/prefs.php:135 msgid "The configuration was saved." msgstr "Konfiguracja zostaÅ‚a zapisana." -#: classes/pref/prefs.php:134 +#: classes/pref/prefs.php:150 #, php-format msgid "Unknown option: %s" msgstr "Nieznana opcja: %s" -#: classes/pref/prefs.php:148 +#: classes/pref/prefs.php:164 msgid "Your personal data has been saved." msgstr "Dwoje dane osobiste zostaÅ‚y zapisane." -#: classes/pref/prefs.php:188 +#: classes/pref/prefs.php:204 msgid "Personal data / Authentication" msgstr "Dane osobiste / Uwierzytelnianie" -#: classes/pref/prefs.php:208 +#: classes/pref/prefs.php:224 msgid "Personal data" msgstr "Informacje osobiste" -#: classes/pref/prefs.php:218 +#: classes/pref/prefs.php:234 msgid "Full name" msgstr "Nazwa" -#: classes/pref/prefs.php:222 +#: classes/pref/prefs.php:238 msgid "E-mail" msgstr "E-mail" -#: classes/pref/prefs.php:228 +#: classes/pref/prefs.php:244 msgid "Access level" msgstr "Poziom dostÄ™pu" -#: classes/pref/prefs.php:238 +#: classes/pref/prefs.php:254 msgid "Save data" msgstr "Zapisz dane" -#: classes/pref/prefs.php:260 +#: classes/pref/prefs.php:276 msgid "Your password is at default value, please change it." msgstr "Używasz domyÅ›lnego hasÅ‚a, zmieÅ„ je proszÄ™." -#: classes/pref/prefs.php:287 +#: classes/pref/prefs.php:303 msgid "Changing your current password will disable OTP." msgstr "Zmiana Twojego bieżącego hasÅ‚a spowoduje wyłączenie mechanizmu OTP." -#: classes/pref/prefs.php:292 +#: classes/pref/prefs.php:308 msgid "Old password" msgstr "Stare hasÅ‚o" -#: classes/pref/prefs.php:295 +#: classes/pref/prefs.php:311 msgid "New password" msgstr "Nowe hasÅ‚o" -#: classes/pref/prefs.php:300 +#: classes/pref/prefs.php:316 msgid "Confirm password" msgstr "Potwierdź hasÅ‚o" -#: classes/pref/prefs.php:310 +#: classes/pref/prefs.php:326 msgid "Change password" msgstr "ZmieÅ„ hasÅ‚o" -#: classes/pref/prefs.php:316 +#: classes/pref/prefs.php:332 msgid "One time passwords / Authenticator" msgstr "HasÅ‚o jednorazowe / Uwierzytelnianie" -#: classes/pref/prefs.php:320 +#: classes/pref/prefs.php:336 msgid "One time passwords are currently enabled. Enter your current password below to disable." msgstr "HasÅ‚a jednorazowe sÄ… obecnie włączone. Wprowadź swoje obecne hasÅ‚o aby je wyłączyć." -#: classes/pref/prefs.php:345 -#: classes/pref/prefs.php:396 +#: classes/pref/prefs.php:361 +#: classes/pref/prefs.php:412 msgid "Enter your password" msgstr "Wprowadź hasÅ‚o" -#: classes/pref/prefs.php:356 +#: classes/pref/prefs.php:372 msgid "Disable OTP" msgstr "Wyłącz hasÅ‚a jednorazowe" -#: classes/pref/prefs.php:362 +#: classes/pref/prefs.php:378 msgid "You will need a compatible Authenticator to use this. Changing your password would automatically disable OTP." msgstr "Potrzebujesz wÅ‚aÅ›ciwego moduÅ‚u uwierzytelniajÄ…cego aby użyć tej funkcji. Zmiana hasÅ‚a spowoduje automatyczne wyłączenie OTP." -#: classes/pref/prefs.php:364 +#: classes/pref/prefs.php:380 msgid "Scan the following code by the Authenticator application:" msgstr "Zeskanuj poniższy kod przy użyciu aplikacji uwierzytelniajÄ…cej:" -#: classes/pref/prefs.php:405 +#: classes/pref/prefs.php:421 msgid "I have scanned the code and would like to enable OTP" msgstr "ZeskanowaÅ‚em kod i chciaÅ‚bym włączyć OTP." -#: classes/pref/prefs.php:413 +#: classes/pref/prefs.php:429 msgid "Enable OTP" msgstr "Włącz hasÅ‚a jednorazowe" -#: classes/pref/prefs.php:451 +#: classes/pref/prefs.php:475 msgid "Some preferences are only available in default profile." msgstr "Niektóre ustawienia dostÄ™pne sÄ… jedynie dla domyÅ›lnego profilu." -#: classes/pref/prefs.php:545 +#: classes/pref/prefs.php:585 msgid "Customize" msgstr "Dostosuj" -#: classes/pref/prefs.php:605 +#: classes/pref/prefs.php:645 msgid "Register" msgstr "Zarejestruj" -#: classes/pref/prefs.php:609 +#: classes/pref/prefs.php:649 msgid "Clear" msgstr "Wyczyść" -#: classes/pref/prefs.php:615 +#: classes/pref/prefs.php:655 #, php-format msgid "Current server time: %s (UTC)" msgstr "Czas serwera to: %s (UTC)" -#: classes/pref/prefs.php:648 +#: classes/pref/prefs.php:688 msgid "Save configuration" msgstr "Zapisz konfiguracjÄ™" -#: classes/pref/prefs.php:651 +#: classes/pref/prefs.php:692 +#, fuzzy +msgid "Save and exit preferences" +msgstr "Wyjdź z ustawieÅ„" + +#: classes/pref/prefs.php:697 msgid "Manage profiles" msgstr "ZarzÄ…dzaj profilami" -#: classes/pref/prefs.php:654 +#: classes/pref/prefs.php:700 msgid "Reset to defaults" msgstr "Przywróć domyÅ›lne" -#: classes/pref/prefs.php:678 -#: classes/pref/prefs.php:680 +#: classes/pref/prefs.php:724 +#: classes/pref/prefs.php:726 msgid "Plugins" msgstr "Wtyczki" -#: classes/pref/prefs.php:682 +#: classes/pref/prefs.php:728 msgid "You will need to reload Tiny Tiny RSS for plugin changes to take effect." msgstr "Musisz przeÅ‚adować Tiny Tiny RSS aby zastosować zmiany we wtyczkach." -#: classes/pref/prefs.php:684 +#: classes/pref/prefs.php:730 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:710 +#: classes/pref/prefs.php:756 msgid "System plugins" msgstr "Wtyczki systemowe" -#: classes/pref/prefs.php:714 -#: classes/pref/prefs.php:768 +#: classes/pref/prefs.php:760 +#: classes/pref/prefs.php:814 msgid "Plugin" msgstr "Wtyczka" -#: classes/pref/prefs.php:715 -#: classes/pref/prefs.php:769 +#: classes/pref/prefs.php:761 +#: classes/pref/prefs.php:815 msgid "Description" msgstr "Opis" -#: classes/pref/prefs.php:716 -#: classes/pref/prefs.php:770 +#: classes/pref/prefs.php:762 +#: classes/pref/prefs.php:816 msgid "Version" msgstr "Wersja" -#: classes/pref/prefs.php:717 -#: classes/pref/prefs.php:771 +#: classes/pref/prefs.php:763 +#: classes/pref/prefs.php:817 msgid "Author" msgstr "Autor" -#: classes/pref/prefs.php:746 -#: classes/pref/prefs.php:803 +#: classes/pref/prefs.php:792 +#: classes/pref/prefs.php:849 msgid "more info" msgstr "" -#: classes/pref/prefs.php:755 -#: classes/pref/prefs.php:812 +#: classes/pref/prefs.php:801 +#: classes/pref/prefs.php:858 msgid "Clear data" msgstr "Wyczyść dane" -#: classes/pref/prefs.php:764 +#: classes/pref/prefs.php:810 msgid "User plugins" msgstr "Wtyczki użytkowników" -#: classes/pref/prefs.php:827 +#: classes/pref/prefs.php:873 msgid "Enable selected plugins" msgstr "Włącz wybrane wtyczki" -#: classes/pref/prefs.php:882 -#: classes/pref/prefs.php:900 +#: classes/pref/prefs.php:928 +#: classes/pref/prefs.php:946 msgid "Incorrect password" msgstr "NieprawidÅ‚owe hasÅ‚o" -#: classes/pref/prefs.php:926 +#: classes/pref/prefs.php:972 #, 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:966 +#: classes/pref/prefs.php:1012 msgid "Create profile" msgstr "Utwórz profil" -#: classes/pref/prefs.php:989 -#: classes/pref/prefs.php:1019 +#: classes/pref/prefs.php:1035 +#: classes/pref/prefs.php:1065 msgid "(active)" msgstr "(aktywny)" -#: classes/pref/prefs.php:1053 +#: classes/pref/prefs.php:1099 msgid "Remove selected profiles" msgstr "UsuÅ„ wybrane profile" -#: classes/pref/prefs.php:1055 +#: classes/pref/prefs.php:1101 msgid "Activate profile" msgstr "Aktywuj profil" @@ -2728,15 +2672,15 @@ msgstr "" msgid "The document has incorrect format." msgstr "" -#: plugins/googlereaderimport/init.php:326 +#: plugins/googlereaderimport/init.php:328 msgid "Import starred or shared items from Google Reader" msgstr "" -#: plugins/googlereaderimport/init.php:330 +#: plugins/googlereaderimport/init.php:332 msgid "Paste your starred.json or shared.json into the form below." msgstr "" -#: plugins/googlereaderimport/init.php:344 +#: plugins/googlereaderimport/init.php:346 msgid "Import my Starred items" msgstr "" @@ -2830,23 +2774,23 @@ msgstr "Gotowy do aktualizacji." msgid "Start update" msgstr "Rozpocznik aktualizacjÄ™" -#: js/feedlist.js:392 -#: js/feedlist.js:420 +#: js/feedlist.js:394 +#: js/feedlist.js:422 #: plugins/digest/digest.js:26 msgid "Mark all articles in %s as read?" msgstr "Oznaczyć wszystkie artykuÅ‚y w %s jako przeczytane?" -#: js/feedlist.js:411 +#: js/feedlist.js:413 #, fuzzy msgid "Mark all articles in %s older than 1 day as read?" msgstr "Oznaczyć wszystkie artykuÅ‚y w %s jako przeczytane?" -#: js/feedlist.js:414 +#: js/feedlist.js:416 #, fuzzy msgid "Mark all articles in %s older than 1 week as read?" msgstr "Oznaczyć wszystkie artykuÅ‚y w %s jako przeczytane?" -#: js/feedlist.js:417 +#: js/feedlist.js:419 #, fuzzy msgid "Mark all articles in %s older than 2 weeks as read?" msgstr "Oznaczyć wszystkie artykuÅ‚y w %s jako przeczytane?" @@ -3361,148 +3305,148 @@ msgstr "Przeliczanie punktacji kanałów..." msgid "New version available!" msgstr "DostÄ™pna jest nowa wersja!" -#: js/viewfeed.js:104 +#: js/viewfeed.js:106 msgid "Cancel search" msgstr "Anuluj wyszukiwanie" -#: js/viewfeed.js:438 +#: js/viewfeed.js:441 #: plugins/digest/digest.js:258 #: plugins/digest/digest.js:714 msgid "Unstar article" msgstr "UsuÅ„ oznaczenie gwiazdkÄ…" -#: js/viewfeed.js:443 +#: js/viewfeed.js:446 #: plugins/digest/digest.js:260 #: plugins/digest/digest.js:718 msgid "Star article" msgstr "Oznacz artykuÅ‚ gwiazdkÄ…" -#: js/viewfeed.js:476 +#: js/viewfeed.js:479 #: plugins/digest/digest.js:263 #: plugins/digest/digest.js:749 msgid "Unpublish article" msgstr "Anuluj publikacje artykuÅ‚u" -#: js/viewfeed.js:481 +#: js/viewfeed.js:484 #: plugins/digest/digest.js:265 #: plugins/digest/digest.js:754 msgid "Publish article" msgstr "Opublikuj" -#: js/viewfeed.js:677 -#: js/viewfeed.js:705 -#: js/viewfeed.js:732 -#: js/viewfeed.js:795 -#: js/viewfeed.js:829 -#: js/viewfeed.js:949 -#: js/viewfeed.js:992 -#: js/viewfeed.js:1045 -#: js/viewfeed.js:2051 +#: js/viewfeed.js:680 +#: js/viewfeed.js:708 +#: js/viewfeed.js:735 +#: js/viewfeed.js:798 +#: js/viewfeed.js:832 +#: js/viewfeed.js:952 +#: js/viewfeed.js:995 +#: js/viewfeed.js:1048 +#: js/viewfeed.js:2060 #: plugins/mailto/init.js:7 #: plugins/mail/mail.js:7 msgid "No articles are selected." msgstr "Nie wybrano żadnych artykułów" -#: js/viewfeed.js:957 +#: js/viewfeed.js:960 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:959 +#: js/viewfeed.js:962 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:1001 +#: js/viewfeed.js:1004 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:1004 +#: js/viewfeed.js:1007 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:1006 +#: js/viewfeed.js:1009 msgid "Please note that unstarred articles might get purged on next feed update." msgstr "" -#: js/viewfeed.js:1051 +#: js/viewfeed.js:1054 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:1075 +#: js/viewfeed.js:1078 msgid "Edit article Tags" msgstr "Edytuj tagi artykuÅ‚u" -#: js/viewfeed.js:1081 +#: js/viewfeed.js:1084 msgid "Saving article tags..." msgstr "ZapisujÄ™ tagi artykuÅ‚u..." -#: js/viewfeed.js:1278 +#: js/viewfeed.js:1287 msgid "No article is selected." msgstr "Nie wybrano żadnego artykuÅ‚u." -#: js/viewfeed.js:1313 +#: js/viewfeed.js:1322 msgid "No articles found to mark" msgstr "Nie znaleziono artykułów do oznaczenia" -#: js/viewfeed.js:1315 +#: js/viewfeed.js:1324 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:1827 +#: js/viewfeed.js:1836 msgid "Open original article" msgstr "Otwórz oryginalny artykuÅ‚" -#: js/viewfeed.js:1833 +#: js/viewfeed.js:1842 msgid "Display article URL" msgstr "WyÅ›wietl adres artykuÅ‚u" -#: js/viewfeed.js:1852 +#: js/viewfeed.js:1861 #, fuzzy msgid "Toggle marked" msgstr "Przełącz oznaczenie gwiazdkÄ…" -#: js/viewfeed.js:1933 +#: js/viewfeed.js:1942 msgid "Assign label" msgstr "Przypisz etykietÄ™" -#: js/viewfeed.js:1938 +#: js/viewfeed.js:1947 msgid "Remove label" msgstr "UsuÅ„ etykietÄ™" -#: js/viewfeed.js:1962 +#: js/viewfeed.js:1971 msgid "Playing..." msgstr "Odtwarzam..." -#: js/viewfeed.js:1963 +#: js/viewfeed.js:1972 msgid "Click to pause" msgstr "Kliknij aby zapauzować" -#: js/viewfeed.js:2020 +#: js/viewfeed.js:2029 msgid "Please enter new score for selected articles:" msgstr "Wprowadź nowÄ… punktacjÄ™ dla wybranych artykułów:" -#: js/viewfeed.js:2062 +#: js/viewfeed.js:2071 msgid "Please enter new score for this article:" msgstr "Wprowadź nowÄ… punktacjÄ™ dla tego artykuÅ‚u:" -#: js/viewfeed.js:2095 +#: js/viewfeed.js:2104 msgid "Article URL:" msgstr "Adres artykuÅ‚u:" @@ -3610,6 +3554,54 @@ msgstr "UdostÄ™pnij artykuÅ‚" msgid "Live updating is considered experimental. Backup your tt-rss directory before continuing. Please type 'yes' to continue." msgstr "Aktualizacja \"na żywo\" jest uznawana za funkcjÄ™ eksperymentalnÄ…. Wykonaj kopiÄ™ swojego katalogu tt-rss przed kontynuowaniem. Wpisz 'yes' aby kontynuować." +#~ msgid "Could not update database" +#~ msgstr "Nie można zaktualizować bazy danych" + +#~ msgid "Could not find necessary schema file, need version:" +#~ msgstr "Nie udaÅ‚o siÄ™ odnaleźć niezbÄ™dnych plików schematu, potrzebna wersja: " + +#~ msgid ", found: " +#~ msgstr ", odnaleziono: " + +#~ msgid "Tiny Tiny RSS database is up to date." +#~ msgstr "Schemat bazy danych Tiny Tiny RSS jest aktualny." + +#~ msgid "Please backup your database before proceeding." +#~ msgstr "Wykonaj kopiÄ™ bazy przed rozpoczÄ™ciem procesu." + +#~ msgid "Your Tiny Tiny RSS database needs update to the latest version (<b>%d</b> to <b>%d</b>)." +#~ msgstr "Baza Tiny Tiny RSS musi być zaktualizowana do aktualnej wersji (<b>%d</b> do <b>%d</b>)." + +#~ msgid "Performing updates..." +#~ msgstr "Trwa aktualizacja..." + +#~ msgid "Updating to version %d..." +#~ msgstr "Aktualizacja do wersji %d..." + +#~ msgid "Checking version... " +#~ msgstr "Sprawdzanie wersji... " + +#~ msgid "OK!" +#~ msgstr "OK!" + +#~ msgid "ERROR!" +#~ msgstr "BÅÄ„D!" + +#~ 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] "ZakoÅ„czono. Wykonano <b>%d</b> aktualizacjÄ™ do wersji <b>%d</b> schematu bazy danych." +#~ msgstr[1] "ZakoÅ„czono. Wykonano <b>%d</b> aktualizacji do wersji <b>%d</b> schematu bazy danych." +#~ msgstr[2] "ZakoÅ„czono. Wykonano <b>%d</b> aktualizacji do wersji <b>%d</b> schematu bazy danych." + +#~ msgid "Your database schema is from a newer version of Tiny Tiny RSS." +#~ msgstr "Wersja schematu Twojej bazy danych jest nowsza niż wersja Tiny Tiny RSS." + +#~ msgid "Found schema version: <b>%d</b>, required: <b>%d</b>." +#~ msgstr "Wykryta wersja bazy: <b>%d</b>, wymagana <b>%d</b>." + +#~ msgid "Schema upgrade impossible. Please update Tiny Tiny RSS files to the newer version and continue." +#~ msgstr "Aktualizacja schematu bazy niemożliwa do wykonania. Uaktualnij pliki Tiny Tiny RSS do nowszej wersji i ponów próbÄ™." + #~ msgid "Mark feed as read" #~ msgstr "Oznacz kanaÅ‚ jako przeczytany" @@ -3623,9 +3615,6 @@ msgstr "Aktualizacja \"na żywo\" jest uznawana za funkcjÄ™ eksperymentalnÄ…. Wy #~ msgid "When this option is enabled, headlines in Special feeds and Labels are grouped by feeds" #~ msgstr "Gdy ta opcja jest zaznaczona, nagłówki w kanaÅ‚ach specjalnych i widoku etykiet grupowane sÄ… wedÅ‚ug kanałów." -#~ msgid "Title" -#~ msgstr "TytuÅ‚" - #~ msgid "Title or Content" #~ msgstr "TytuÅ‚ lub Treść" diff --git a/locale/pt_BR/LC_MESSAGES/messages.mo b/locale/pt_BR/LC_MESSAGES/messages.mo Binary files differindex b057c59e8..ee77638b8 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 58bc2f09e..c8a268d64 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-04-04 09:06+0400\n" +"POT-Creation-Date: 2013-04-04 21:31+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" @@ -103,101 +103,6 @@ msgstr "" msgid "Administrator" msgstr "Administrador" -#: db-updater.php:19 -msgid "Your access level is insufficient to run this script." -msgstr "Seu nÃvel de acesso é insuficiente para executar esse script." - -#: db-updater.php:44 -msgid "Database Updater" -msgstr "" - -#: db-updater.php:87 -msgid "Could not update database" -msgstr "" - -#: db-updater.php:90 -msgid "Could not find necessary schema file, need version:" -msgstr "" - -#: db-updater.php:91 -msgid ", found: " -msgstr ", encontrou:" - -#: 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:648 -#: classes/handler/public.php:736 -#: classes/handler/public.php:818 -msgid "Return to Tiny Tiny RSS" -msgstr "" - -#: db-updater.php:102 -msgid "Please backup your database before proceeding." -msgstr "Faça uma cópia-de-segurança de seus dados antes de prosseguir." - -#: 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 "Atualizando para a versão %d..." - -#: db-updater.php:144 -msgid "Checking version... " -msgstr "Verificando a versão…" - -#: db-updater.php:150 -msgid "OK!" -msgstr "OK!" - -#: db-updater.php:152 -msgid "ERROR!" -msgstr "ERRO!" - -#: 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 "" @@ -251,7 +156,7 @@ msgstr "" #: index.php:135 #: index.php:152 -#: index.php:276 +#: index.php:277 #: prefs.php:103 #: classes/backend.php:5 #: classes/pref/labels.php:296 @@ -259,7 +164,7 @@ msgstr "" #: classes/pref/feeds.php:1331 #: plugins/digest/digest_body.php:63 #: js/feedlist.js:128 -#: js/feedlist.js:436 +#: js/feedlist.js:438 #: js/functions.js:420 #: js/functions.js:758 #: js/functions.js:1194 @@ -280,8 +185,8 @@ msgstr "" #: js/prefs.js:1814 #: js/tt-rss.js:475 #: js/tt-rss.js:492 -#: js/viewfeed.js:772 -#: js/viewfeed.js:1200 +#: js/viewfeed.js:775 +#: js/viewfeed.js:1201 #: plugins/import_export/import_export.js:17 #: plugins/updater/updater.js:17 msgid "Loading, please wait..." @@ -306,13 +211,13 @@ msgid "All Articles" msgstr "" #: index.php:174 -#: include/functions.php:1953 +#: include/functions.php:1955 #: classes/feeds.php:106 msgid "Starred" msgstr "Favoritos" #: index.php:175 -#: include/functions.php:1954 +#: include/functions.php:1956 #: classes/feeds.php:107 msgid "Published" msgstr "Publicado" @@ -353,9 +258,13 @@ msgstr "" msgid "Oldest first" msgstr "" -#: index.php:191 -#: index.php:240 -#: include/functions.php:1943 +#: index.php:188 +msgid "Title" +msgstr "TÃtulo" + +#: index.php:192 +#: index.php:241 +#: include/functions.php:1945 #: classes/feeds.php:111 #: classes/feeds.php:441 #: js/FeedTree.js:128 @@ -364,113 +273,113 @@ msgstr "" msgid "Mark as read" msgstr "Marcar como lido" -#: index.php:194 +#: index.php:195 msgid "Older than one day" msgstr "" -#: index.php:197 +#: index.php:198 msgid "Older than one week" msgstr "" -#: index.php:200 +#: index.php:201 msgid "Older than two weeks" msgstr "" -#: index.php:217 +#: index.php:218 msgid "Communication problem with server." msgstr "" -#: index.php:225 +#: index.php:226 msgid "New version of Tiny Tiny RSS is available!" msgstr "" -#: index.php:230 +#: index.php:231 msgid "Actions..." msgstr "Ações..." -#: index.php:232 +#: index.php:233 #, fuzzy msgid "Preferences..." msgstr "Preferências" -#: index.php:233 +#: index.php:234 msgid "Search..." msgstr "" -#: index.php:234 +#: index.php:235 msgid "Feed actions:" msgstr "Ações do Feed:" -#: index.php:235 +#: index.php:236 #: classes/handler/public.php:578 #, fuzzy msgid "Subscribe to feed..." msgstr "Removendo o Feed..." -#: index.php:236 +#: index.php:237 #, fuzzy msgid "Edit this feed..." msgstr "Editar" -#: index.php:237 +#: index.php:238 #, fuzzy msgid "Rescore feed" msgstr "Removendo o Feed..." -#: index.php:238 +#: index.php:239 #: classes/pref/feeds.php:717 #: classes/pref/feeds.php:1283 #: js/PrefFeedTree.js:73 msgid "Unsubscribe" msgstr "" -#: index.php:239 +#: index.php:240 msgid "All feeds:" msgstr "Todos os Feeds:" -#: index.php:241 +#: index.php:242 msgid "(Un)hide read feeds" msgstr "" -#: index.php:242 +#: index.php:243 msgid "Other actions:" msgstr "Outras ações:" -#: index.php:244 +#: index.php:245 msgid "Switch to digest..." msgstr "" -#: index.php:246 +#: index.php:247 #, fuzzy msgid "Show tag cloud..." msgstr "núvem de tags" -#: index.php:247 -#: include/functions.php:1929 +#: index.php:248 +#: include/functions.php:1931 #, fuzzy msgid "Toggle widescreen mode" msgstr "Remover as categorias selecionadas?" -#: index.php:248 +#: index.php:249 msgid "Select by tags..." msgstr "" -#: index.php:249 +#: index.php:250 #, fuzzy msgid "Create label..." msgstr "Criar um usuário" -#: index.php:250 +#: index.php:251 #, fuzzy msgid "Create filter..." msgstr "Criar um usuário" -#: index.php:251 +#: index.php:252 #, fuzzy msgid "Keyboard shortcuts help" msgstr " Criar filtro" -#: index.php:260 +#: index.php:261 #: plugins/digest/digest_body.php:77 #: plugins/mobile/mobile-functions.php:62 #: plugins/mobile/mobile-functions.php:237 @@ -479,8 +388,8 @@ msgstr "Sair" #: prefs.php:36 #: prefs.php:121 -#: include/functions.php:1956 -#: classes/pref/prefs.php:428 +#: include/functions.php:1958 +#: classes/pref/prefs.php:444 msgid "Preferences" msgstr "Preferências" @@ -508,8 +417,8 @@ msgid "Filters" msgstr "Arquivo:" #: prefs.php:130 -#: include/functions.php:1146 -#: include/functions.php:1782 +#: include/functions.php:1148 +#: include/functions.php:1784 #: classes/pref/labels.php:90 #: plugins/mobile/mobile-functions.php:198 msgid "Labels" @@ -529,6 +438,24 @@ msgstr "" msgid "New user registrations are administratively disabled." msgstr "" +#: 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:648 +#: classes/handler/public.php:736 +#: classes/handler/public.php:818 +#: classes/handler/public.php:893 +#: classes/handler/public.php:907 +#: classes/handler/public.php:914 +#: classes/handler/public.php:939 +msgid "Return to Tiny Tiny RSS" +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 "" @@ -577,15 +504,15 @@ msgstr "" msgid "New user registrations are currently closed." msgstr "" -#: update.php:55 +#: update.php:56 msgid "Tiny Tiny RSS data update script." msgstr "" #: include/digest.php:109 -#: include/functions.php:1155 -#: include/functions.php:1683 -#: include/functions.php:1768 -#: include/functions.php:1790 +#: include/functions.php:1157 +#: include/functions.php:1685 +#: include/functions.php:1770 +#: include/functions.php:1792 #: classes/opml.php:416 #: classes/pref/feeds.php:222 msgid "Uncategorized" @@ -603,342 +530,342 @@ msgstr[1] "Favoritos" msgid "No feeds found." msgstr "Sem Feeds para exibir." -#: include/functions.php:1144 -#: include/functions.php:1780 +#: include/functions.php:1146 +#: include/functions.php:1782 #: plugins/mobile/mobile-functions.php:171 msgid "Special" msgstr "Especial" -#: include/functions.php:1632 -#: classes/feeds.php:1101 +#: include/functions.php:1634 +#: classes/feeds.php:1104 #: classes/pref/filters.php:427 msgid "All feeds" msgstr "Todos os feeds" -#: include/functions.php:1833 +#: include/functions.php:1835 msgid "Starred articles" msgstr "" -#: include/functions.php:1835 +#: include/functions.php:1837 msgid "Published articles" msgstr "" -#: include/functions.php:1837 +#: include/functions.php:1839 msgid "Fresh articles" msgstr "" -#: include/functions.php:1839 -#: include/functions.php:1951 +#: include/functions.php:1841 +#: include/functions.php:1953 #, fuzzy msgid "All articles" msgstr "Favoritos" -#: include/functions.php:1841 +#: include/functions.php:1843 #, fuzzy msgid "Archived articles" msgstr "Favoritos" -#: include/functions.php:1843 +#: include/functions.php:1845 msgid "Recently read" msgstr "" -#: include/functions.php:1906 +#: include/functions.php:1908 #, fuzzy msgid "Navigation" msgstr "Salvar configuração" -#: include/functions.php:1907 +#: include/functions.php:1909 msgid "Open next feed" msgstr "" -#: include/functions.php:1908 +#: include/functions.php:1910 msgid "Open previous feed" msgstr "" -#: include/functions.php:1909 +#: include/functions.php:1911 #, fuzzy msgid "Open next article" msgstr "Favoritos" -#: include/functions.php:1910 +#: include/functions.php:1912 #, fuzzy msgid "Open previous article" msgstr "Favoritos" -#: include/functions.php:1911 +#: include/functions.php:1913 msgid "Open next article (don't scroll long articles)" msgstr "" -#: include/functions.php:1912 +#: include/functions.php:1914 msgid "Open previous article (don't scroll long articles)" msgstr "" -#: include/functions.php:1913 +#: include/functions.php:1915 #, fuzzy msgid "Show search dialog" msgstr "Favoritos" -#: include/functions.php:1914 +#: include/functions.php:1916 #, fuzzy msgid "Article" msgstr "Feed não encontrado." -#: include/functions.php:1915 +#: include/functions.php:1917 #, fuzzy msgid "Toggle starred" msgstr "Marcar como favorito" -#: include/functions.php:1916 -#: js/viewfeed.js:1863 +#: include/functions.php:1918 +#: js/viewfeed.js:1872 #, fuzzy msgid "Toggle published" msgstr "Publicado" -#: include/functions.php:1917 -#: js/viewfeed.js:1841 +#: include/functions.php:1919 +#: js/viewfeed.js:1850 msgid "Toggle unread" msgstr "" -#: include/functions.php:1918 +#: include/functions.php:1920 #, fuzzy msgid "Edit tags" msgstr "Editar Tags" -#: include/functions.php:1919 +#: include/functions.php:1921 #, fuzzy msgid "Dismiss selected" msgstr "Remover os filtros selecionados?" -#: include/functions.php:1920 +#: include/functions.php:1922 #, fuzzy msgid "Dismiss read" msgstr "Favoritos" -#: include/functions.php:1921 +#: include/functions.php:1923 msgid "Open in new window" msgstr "" -#: include/functions.php:1922 -#: js/viewfeed.js:1882 +#: include/functions.php:1924 +#: js/viewfeed.js:1891 #, fuzzy msgid "Mark below as read" msgstr "Marcar como lido" -#: include/functions.php:1923 -#: js/viewfeed.js:1876 +#: include/functions.php:1925 +#: js/viewfeed.js:1885 #, fuzzy msgid "Mark above as read" msgstr "Marcar como lido" -#: include/functions.php:1924 +#: include/functions.php:1926 msgid "Scroll down" msgstr "" -#: include/functions.php:1925 +#: include/functions.php:1927 msgid "Scroll up" msgstr "" -#: include/functions.php:1926 +#: include/functions.php:1928 #, fuzzy msgid "Select article under cursor" msgstr "Favoritos" -#: include/functions.php:1927 +#: include/functions.php:1929 #, fuzzy msgid "Email article" msgstr "Favoritos" -#: include/functions.php:1928 +#: include/functions.php:1930 #, fuzzy msgid "Close/collapse article" msgstr "Favoritos" -#: include/functions.php:1930 +#: include/functions.php:1932 #: plugins/embed_original/init.php:33 #, fuzzy msgid "Toggle embed original" msgstr "Remover as categorias selecionadas?" -#: include/functions.php:1931 +#: include/functions.php:1933 #, fuzzy msgid "Article selection" msgstr "Favoritos" -#: include/functions.php:1932 +#: include/functions.php:1934 #, fuzzy msgid "Select all articles" msgstr "Favoritos" -#: include/functions.php:1933 +#: include/functions.php:1935 #, fuzzy msgid "Select unread" msgstr "Favoritos" -#: include/functions.php:1934 +#: include/functions.php:1936 #, fuzzy msgid "Select starred" msgstr "Marcar como favorito" -#: include/functions.php:1935 +#: include/functions.php:1937 #, fuzzy msgid "Select published" msgstr "Favoritos" -#: include/functions.php:1936 +#: include/functions.php:1938 #, fuzzy msgid "Invert selection" msgstr "Favoritos" -#: include/functions.php:1937 +#: include/functions.php:1939 #, fuzzy msgid "Deselect everything" msgstr "Favoritos" -#: include/functions.php:1938 +#: include/functions.php:1940 #: classes/pref/feeds.php:521 #: classes/pref/feeds.php:754 msgid "Feed" msgstr "Feed" -#: include/functions.php:1939 +#: include/functions.php:1941 #, fuzzy msgid "Refresh current feed" msgstr "Favoritos" -#: include/functions.php:1940 +#: include/functions.php:1942 #, fuzzy msgid "Un/hide read feeds" msgstr "Favoritos" -#: include/functions.php:1941 +#: include/functions.php:1943 #: classes/pref/feeds.php:1275 msgid "Subscribe to feed" msgstr "" -#: include/functions.php:1942 +#: include/functions.php:1944 #: js/FeedTree.js:135 #: js/PrefFeedTree.js:67 #, fuzzy msgid "Edit feed" msgstr "Editar" -#: include/functions.php:1944 +#: include/functions.php:1946 #, fuzzy msgid "Reverse headlines" msgstr "Remover as categorias selecionadas?" -#: include/functions.php:1945 +#: include/functions.php:1947 #, fuzzy msgid "Debug feed update" msgstr "Desabilitar updates" -#: include/functions.php:1946 +#: include/functions.php:1948 #: js/FeedTree.js:178 #, fuzzy msgid "Mark all feeds as read" msgstr "Marcando todos os feeds como lidos..." -#: include/functions.php:1947 +#: include/functions.php:1949 #, fuzzy msgid "Un/collapse current category" msgstr "Salvando categoria..." -#: include/functions.php:1948 +#: include/functions.php:1950 #, fuzzy msgid "Toggle combined mode" msgstr "Remover as categorias selecionadas?" -#: include/functions.php:1949 +#: include/functions.php:1951 #, fuzzy msgid "Toggle auto expand in combined mode" msgstr "Remover as categorias selecionadas?" -#: include/functions.php:1950 +#: include/functions.php:1952 msgid "Go to" msgstr "" -#: include/functions.php:1952 +#: include/functions.php:1954 msgid "Fresh" msgstr "" -#: include/functions.php:1955 +#: include/functions.php:1957 #: js/tt-rss.js:431 #: js/tt-rss.js:584 msgid "Tag cloud" msgstr "Núvem de tags" -#: include/functions.php:1957 +#: include/functions.php:1959 #, fuzzy msgid "Other" msgstr "Onde:" -#: include/functions.php:1958 +#: include/functions.php:1960 #: classes/pref/labels.php:281 msgid "Create label" msgstr "" -#: include/functions.php:1959 +#: include/functions.php:1961 #: classes/pref/filters.php:654 msgid "Create filter" msgstr "" -#: include/functions.php:1960 +#: include/functions.php:1962 #, fuzzy msgid "Un/collapse sidebar" msgstr "Todos os feeds" -#: include/functions.php:1961 +#: include/functions.php:1963 #, fuzzy msgid "Show help dialog" msgstr "Favoritos" -#: include/functions.php:2446 +#: include/functions.php:2471 #, php-format msgid "Search results: %s" msgstr "" -#: include/functions.php:2937 -#: js/viewfeed.js:1969 +#: include/functions.php:2962 +#: js/viewfeed.js:1978 #, fuzzy msgid "Click to play" msgstr "Favoritos" -#: include/functions.php:2938 -#: js/viewfeed.js:1968 +#: include/functions.php:2963 +#: js/viewfeed.js:1977 msgid "Play" msgstr "" -#: include/functions.php:3055 +#: include/functions.php:3080 #, fuzzy msgid " - " msgstr " - por " -#: include/functions.php:3077 -#: include/functions.php:3371 +#: include/functions.php:3102 +#: include/functions.php:3396 #: classes/article.php:281 msgid "no tags" msgstr "sem tags" -#: include/functions.php:3087 +#: include/functions.php:3112 #: classes/feeds.php:686 #, fuzzy msgid "Edit tags for this article" msgstr "Favoritos" -#: include/functions.php:3116 +#: include/functions.php:3141 #: classes/feeds.php:642 #, fuzzy msgid "Originally from:" msgstr "Favoritos" -#: include/functions.php:3129 +#: include/functions.php:3154 #: classes/feeds.php:655 #: classes/pref/feeds.php:540 #, fuzzy msgid "Feed URL" msgstr "Feed" -#: include/functions.php:3160 +#: include/functions.php:3185 #: classes/dlg.php:37 #: classes/dlg.php:60 #: classes/dlg.php:93 @@ -950,7 +877,7 @@ msgstr "Feed" #: classes/backend.php:105 #: classes/pref/users.php:99 #: classes/pref/filters.php:147 -#: classes/pref/prefs.php:1059 +#: classes/pref/prefs.php:1105 #: classes/pref/feeds.php:1588 #: classes/pref/feeds.php:1660 #: plugins/import_export/init.php:406 @@ -961,16 +888,16 @@ msgstr "Feed" msgid "Close this window" msgstr "Fechar esta janela" -#: include/functions.php:3396 +#: include/functions.php:3421 msgid "(edit note)" msgstr "" -#: include/functions.php:3631 +#: include/functions.php:3656 #, fuzzy msgid "unknown type" msgstr "Erro desconhecido" -#: include/functions.php:3687 +#: include/functions.php:3712 #, fuzzy msgid "Attachments" msgstr "Conteúdo" @@ -995,6 +922,7 @@ msgstr "Senha nova" #: include/login_form.php:201 #: classes/handler/public.php:489 +#: classes/pref/prefs.php:552 msgid "Language:" msgstr "LÃngua:" @@ -1006,7 +934,7 @@ msgstr "Arquivo:" #: include/login_form.php:213 #: classes/handler/public.php:233 #: classes/rpc.php:64 -#: classes/pref/prefs.php:995 +#: classes/pref/prefs.php:1041 #, fuzzy msgid "Default profile" msgstr "Padrão" @@ -1026,7 +954,7 @@ msgstr "" msgid "Log in" msgstr "Login" -#: include/sessions.php:58 +#: include/sessions.php:62 msgid "Session failed to validate (incorrect IP)" msgstr "" @@ -1043,7 +971,7 @@ msgstr "" #: classes/pref/users.php:176 #: classes/pref/labels.php:79 #: classes/pref/filters.php:405 -#: classes/pref/prefs.php:941 +#: classes/pref/prefs.php:987 #: classes/pref/feeds.php:733 #: classes/pref/feeds.php:881 #: plugins/nsfw/init.php:86 @@ -1055,16 +983,16 @@ msgstr "Salvar" #: classes/article.php:206 #: classes/handler/public.php:460 #: classes/handler/public.php:502 -#: classes/feeds.php:1028 -#: classes/feeds.php:1080 -#: classes/feeds.php:1140 +#: classes/feeds.php:1031 +#: classes/feeds.php:1083 +#: classes/feeds.php:1143 #: 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:943 +#: classes/pref/prefs.php:989 #: classes/pref/feeds.php:734 #: classes/pref/feeds.php:884 #: classes/pref/feeds.php:1797 @@ -1196,6 +1124,18 @@ msgstr "" msgid "Sorry, login and email combination not found." msgstr "" +#: classes/handler/public.php:842 +msgid "Your access level is insufficient to run this script." +msgstr "Seu nÃvel de acesso é insuficiente para executar esse script." + +#: classes/handler/public.php:866 +msgid "Database Updater" +msgstr "" + +#: classes/handler/public.php:931 +msgid "Perform updates" +msgstr "" + #: 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 "" @@ -1299,7 +1239,7 @@ msgstr "Selecione:" #: classes/pref/filters.php:648 #: classes/pref/filters.php:737 #: classes/pref/filters.php:764 -#: classes/pref/prefs.php:955 +#: classes/pref/prefs.php:1001 #: classes/pref/feeds.php:1266 #: classes/pref/feeds.php:1536 #: classes/pref/feeds.php:1606 @@ -1320,7 +1260,7 @@ msgstr "(Inverso)" #: classes/pref/filters.php:650 #: classes/pref/filters.php:739 #: classes/pref/filters.php:766 -#: classes/pref/prefs.php:957 +#: classes/pref/prefs.php:1003 #: classes/pref/feeds.php:1268 #: classes/pref/feeds.php:1538 #: classes/pref/feeds.php:1608 @@ -1423,27 +1363,27 @@ msgid "No articles found to display." msgstr "Sem Feeds para exibir." #: classes/feeds.php:759 -#: classes/feeds.php:923 +#: classes/feeds.php:926 #, fuzzy, php-format msgid "Feeds last updated at %s" msgstr "Atualizar" #: classes/feeds.php:769 -#: classes/feeds.php:933 +#: classes/feeds.php:936 msgid "Some feeds have update errors (click for details)" msgstr "Alguns feeds estão com erros (clique aqui para detalhes)" -#: classes/feeds.php:913 +#: classes/feeds.php:916 msgid "No feed selected." msgstr "Nenhum feed foi selecionado." -#: classes/feeds.php:966 -#: classes/feeds.php:974 +#: classes/feeds.php:969 +#: classes/feeds.php:977 #, fuzzy msgid "Feed or site URL" msgstr "Feed" -#: classes/feeds.php:980 +#: classes/feeds.php:983 #: classes/pref/feeds.php:560 #: classes/pref/feeds.php:782 #: classes/pref/feeds.php:1761 @@ -1451,19 +1391,19 @@ msgstr "Feed" msgid "Place in category:" msgstr "Salvando categoria..." -#: classes/feeds.php:988 +#: classes/feeds.php:991 #, fuzzy msgid "Available feeds" msgstr "Todos os feeds" -#: classes/feeds.php:1000 +#: classes/feeds.php:1003 #: classes/pref/users.php:139 #: classes/pref/feeds.php:590 #: classes/pref/feeds.php:818 msgid "Authentication" msgstr "" -#: classes/feeds.php:1004 +#: classes/feeds.php:1007 #: classes/pref/users.php:402 #: classes/pref/feeds.php:596 #: classes/pref/feeds.php:822 @@ -1471,8 +1411,8 @@ msgstr "" msgid "Login" msgstr "Login" -#: classes/feeds.php:1007 -#: classes/pref/prefs.php:253 +#: classes/feeds.php:1010 +#: classes/pref/prefs.php:269 #: classes/pref/feeds.php:602 #: classes/pref/feeds.php:828 #: classes/pref/feeds.php:1778 @@ -1480,23 +1420,23 @@ msgstr "Login" msgid "Password" msgstr "Senha:" -#: classes/feeds.php:1017 +#: classes/feeds.php:1020 msgid "This feed requires authentication." msgstr "Este feed requer autenticação." -#: classes/feeds.php:1022 -#: classes/feeds.php:1078 +#: classes/feeds.php:1025 +#: classes/feeds.php:1081 #: classes/pref/feeds.php:1796 msgid "Subscribe" msgstr "" -#: classes/feeds.php:1025 +#: classes/feeds.php:1028 #, fuzzy msgid "More feeds" msgstr "Removendo o Feed..." -#: classes/feeds.php:1048 -#: classes/feeds.php:1139 +#: classes/feeds.php:1051 +#: classes/feeds.php:1142 #: classes/pref/users.php:332 #: classes/pref/filters.php:641 #: classes/pref/feeds.php:1259 @@ -1504,22 +1444,22 @@ msgstr "Removendo o Feed..." msgid "Search" msgstr "" -#: classes/feeds.php:1052 +#: classes/feeds.php:1055 #, fuzzy msgid "Popular feeds" msgstr "Todos os feeds" -#: classes/feeds.php:1053 +#: classes/feeds.php:1056 #, fuzzy msgid "Feed archive" msgstr "Ações do Feed:" -#: classes/feeds.php:1056 +#: classes/feeds.php:1059 #, fuzzy msgid "limit:" msgstr "Limite:" -#: classes/feeds.php:1079 +#: classes/feeds.php:1082 #: classes/pref/users.php:358 #: classes/pref/labels.php:284 #: classes/pref/filters.php:398 @@ -1529,15 +1469,15 @@ msgstr "Limite:" msgid "Remove" msgstr "Remover" -#: classes/feeds.php:1090 +#: classes/feeds.php:1093 msgid "Look for" msgstr "" -#: classes/feeds.php:1098 +#: classes/feeds.php:1101 msgid "Limit search to:" msgstr "" -#: classes/feeds.php:1114 +#: classes/feeds.php:1117 msgid "This feed" msgstr "" @@ -1714,7 +1654,7 @@ msgstr "" #: classes/pref/filters.php:645 #: classes/pref/filters.php:734 #: classes/pref/filters.php:761 -#: classes/pref/prefs.php:952 +#: classes/pref/prefs.php:998 #: classes/pref/feeds.php:1263 #: classes/pref/feeds.php:1533 #: classes/pref/feeds.php:1603 @@ -2155,231 +2095,236 @@ msgstr "As senhas informadas não conferem." msgid "Function not supported by authentication module." msgstr "" -#: classes/pref/prefs.php:120 +#: classes/pref/prefs.php:135 #, fuzzy msgid "The configuration was saved." msgstr "Salvar configuração" -#: classes/pref/prefs.php:134 +#: classes/pref/prefs.php:150 #, php-format msgid "Unknown option: %s" msgstr "" -#: classes/pref/prefs.php:148 +#: classes/pref/prefs.php:164 msgid "Your personal data has been saved." msgstr "" -#: classes/pref/prefs.php:188 +#: classes/pref/prefs.php:204 msgid "Personal data / Authentication" msgstr "" -#: classes/pref/prefs.php:208 +#: classes/pref/prefs.php:224 #, fuzzy msgid "Personal data" msgstr "Salvar" -#: classes/pref/prefs.php:218 +#: classes/pref/prefs.php:234 msgid "Full name" msgstr "" -#: classes/pref/prefs.php:222 +#: classes/pref/prefs.php:238 msgid "E-mail" msgstr "E-mail" -#: classes/pref/prefs.php:228 +#: classes/pref/prefs.php:244 #, fuzzy msgid "Access level" msgstr "NÃvel de acesso:" -#: classes/pref/prefs.php:238 +#: classes/pref/prefs.php:254 #, fuzzy msgid "Save data" msgstr "Salvar" -#: classes/pref/prefs.php:260 +#: classes/pref/prefs.php:276 #, fuzzy msgid "Your password is at default value, please change it." msgstr "" "Sua senha é a padrão, \n" "\t\t\t\t\t\tvocê deve mudá-la." -#: classes/pref/prefs.php:287 +#: classes/pref/prefs.php:303 msgid "Changing your current password will disable OTP." msgstr "" -#: classes/pref/prefs.php:292 +#: classes/pref/prefs.php:308 msgid "Old password" msgstr "Senha antiga" -#: classes/pref/prefs.php:295 +#: classes/pref/prefs.php:311 msgid "New password" msgstr "Senha nova" -#: classes/pref/prefs.php:300 +#: classes/pref/prefs.php:316 msgid "Confirm password" msgstr "Confirmar senha" -#: classes/pref/prefs.php:310 +#: classes/pref/prefs.php:326 msgid "Change password" msgstr "Mudar senha" -#: classes/pref/prefs.php:316 +#: classes/pref/prefs.php:332 msgid "One time passwords / Authenticator" msgstr "" -#: classes/pref/prefs.php:320 +#: classes/pref/prefs.php:336 msgid "One time passwords are currently enabled. Enter your current password below to disable." msgstr "" -#: classes/pref/prefs.php:345 -#: classes/pref/prefs.php:396 +#: classes/pref/prefs.php:361 +#: classes/pref/prefs.php:412 #, fuzzy msgid "Enter your password" msgstr "Mudar senha" -#: classes/pref/prefs.php:356 +#: classes/pref/prefs.php:372 #, fuzzy msgid "Disable OTP" msgstr "(Desativado)" -#: classes/pref/prefs.php:362 +#: classes/pref/prefs.php:378 msgid "You will need a compatible Authenticator to use this. Changing your password would automatically disable OTP." msgstr "" -#: classes/pref/prefs.php:364 +#: classes/pref/prefs.php:380 msgid "Scan the following code by the Authenticator application:" msgstr "" -#: classes/pref/prefs.php:405 +#: classes/pref/prefs.php:421 msgid "I have scanned the code and would like to enable OTP" msgstr "" -#: classes/pref/prefs.php:413 +#: classes/pref/prefs.php:429 #, fuzzy msgid "Enable OTP" msgstr "Ativado" -#: classes/pref/prefs.php:451 +#: classes/pref/prefs.php:475 msgid "Some preferences are only available in default profile." msgstr "" -#: classes/pref/prefs.php:545 +#: classes/pref/prefs.php:585 msgid "Customize" msgstr "" -#: classes/pref/prefs.php:605 +#: classes/pref/prefs.php:645 #, fuzzy msgid "Register" msgstr "Remover as categorias selecionadas?" -#: classes/pref/prefs.php:609 +#: classes/pref/prefs.php:649 msgid "Clear" msgstr "" -#: classes/pref/prefs.php:615 +#: classes/pref/prefs.php:655 #, php-format msgid "Current server time: %s (UTC)" msgstr "" -#: classes/pref/prefs.php:648 +#: classes/pref/prefs.php:688 msgid "Save configuration" msgstr "Salvar configuração" -#: classes/pref/prefs.php:651 +#: classes/pref/prefs.php:692 +#, fuzzy +msgid "Save and exit preferences" +msgstr "Sair das preferências" + +#: classes/pref/prefs.php:697 #, fuzzy msgid "Manage profiles" msgstr "Criar um usuário" -#: classes/pref/prefs.php:654 +#: classes/pref/prefs.php:700 #, fuzzy msgid "Reset to defaults" msgstr "Usar o padrão" -#: classes/pref/prefs.php:678 -#: classes/pref/prefs.php:680 +#: classes/pref/prefs.php:724 +#: classes/pref/prefs.php:726 msgid "Plugins" msgstr "" -#: classes/pref/prefs.php:682 +#: classes/pref/prefs.php:728 msgid "You will need to reload Tiny Tiny RSS for plugin changes to take effect." msgstr "" -#: classes/pref/prefs.php:684 +#: classes/pref/prefs.php:730 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:710 +#: classes/pref/prefs.php:756 msgid "System plugins" msgstr "" -#: classes/pref/prefs.php:714 -#: classes/pref/prefs.php:768 +#: classes/pref/prefs.php:760 +#: classes/pref/prefs.php:814 msgid "Plugin" msgstr "" -#: classes/pref/prefs.php:715 -#: classes/pref/prefs.php:769 +#: classes/pref/prefs.php:761 +#: classes/pref/prefs.php:815 #, fuzzy msgid "Description" msgstr "descrição" -#: classes/pref/prefs.php:716 -#: classes/pref/prefs.php:770 +#: classes/pref/prefs.php:762 +#: classes/pref/prefs.php:816 msgid "Version" msgstr "" -#: classes/pref/prefs.php:717 -#: classes/pref/prefs.php:771 +#: classes/pref/prefs.php:763 +#: classes/pref/prefs.php:817 msgid "Author" msgstr "" -#: classes/pref/prefs.php:746 -#: classes/pref/prefs.php:803 +#: classes/pref/prefs.php:792 +#: classes/pref/prefs.php:849 msgid "more info" msgstr "" -#: classes/pref/prefs.php:755 -#: classes/pref/prefs.php:812 +#: classes/pref/prefs.php:801 +#: classes/pref/prefs.php:858 #, fuzzy msgid "Clear data" msgstr "Salvando o Feed..." -#: classes/pref/prefs.php:764 +#: classes/pref/prefs.php:810 msgid "User plugins" msgstr "" -#: classes/pref/prefs.php:827 +#: classes/pref/prefs.php:873 #, fuzzy msgid "Enable selected plugins" msgstr "Editar categorias" -#: classes/pref/prefs.php:882 -#: classes/pref/prefs.php:900 +#: classes/pref/prefs.php:928 +#: classes/pref/prefs.php:946 #, fuzzy msgid "Incorrect password" msgstr "Senha nova" -#: classes/pref/prefs.php:926 +#: classes/pref/prefs.php:972 #, 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:966 +#: classes/pref/prefs.php:1012 #, fuzzy msgid "Create profile" msgstr "Criar um usuário" -#: classes/pref/prefs.php:989 -#: classes/pref/prefs.php:1019 +#: classes/pref/prefs.php:1035 +#: classes/pref/prefs.php:1065 msgid "(active)" msgstr "" -#: classes/pref/prefs.php:1053 +#: classes/pref/prefs.php:1099 #, fuzzy msgid "Remove selected profiles" msgstr "Remover os filtros selecionados?" -#: classes/pref/prefs.php:1055 +#: classes/pref/prefs.php:1101 #, fuzzy msgid "Activate profile" msgstr "Remover os filtros selecionados?" @@ -2927,15 +2872,15 @@ msgstr "" msgid "The document has incorrect format." msgstr "" -#: plugins/googlereaderimport/init.php:326 +#: plugins/googlereaderimport/init.php:328 msgid "Import starred or shared items from Google Reader" msgstr "" -#: plugins/googlereaderimport/init.php:330 +#: plugins/googlereaderimport/init.php:332 msgid "Paste your starred.json or shared.json into the form below." msgstr "" -#: plugins/googlereaderimport/init.php:344 +#: plugins/googlereaderimport/init.php:346 msgid "Import my Starred items" msgstr "" @@ -3040,24 +2985,24 @@ msgstr "Atualizado" msgid "Start update" msgstr "Atualizado" -#: js/feedlist.js:392 -#: js/feedlist.js:420 +#: js/feedlist.js:394 +#: js/feedlist.js:422 #: plugins/digest/digest.js:26 #, fuzzy msgid "Mark all articles in %s as read?" msgstr "Marcando todos os feeds como lidos..." -#: js/feedlist.js:411 +#: js/feedlist.js:413 #, fuzzy msgid "Mark all articles in %s older than 1 day as read?" msgstr "Marcando todos os feeds como lidos..." -#: js/feedlist.js:414 +#: js/feedlist.js:416 #, fuzzy msgid "Mark all articles in %s older than 1 week as read?" msgstr "Marcando todos os feeds como lidos..." -#: js/feedlist.js:417 +#: js/feedlist.js:419 #, fuzzy msgid "Mark all articles in %s older than 2 weeks as read?" msgstr "Marcando todos os feeds como lidos..." @@ -3642,164 +3587,164 @@ msgstr "Favoritos" msgid "New version available!" msgstr "" -#: js/viewfeed.js:104 +#: js/viewfeed.js:106 #, fuzzy msgid "Cancel search" msgstr "Cancelar" -#: js/viewfeed.js:438 +#: js/viewfeed.js:441 #: plugins/digest/digest.js:258 #: plugins/digest/digest.js:714 #, fuzzy msgid "Unstar article" msgstr "Favoritos" -#: js/viewfeed.js:443 +#: js/viewfeed.js:446 #: plugins/digest/digest.js:260 #: plugins/digest/digest.js:718 #, fuzzy msgid "Star article" msgstr "Favoritos" -#: js/viewfeed.js:476 +#: js/viewfeed.js:479 #: plugins/digest/digest.js:263 #: plugins/digest/digest.js:749 #, fuzzy msgid "Unpublish article" msgstr "Publicado" -#: js/viewfeed.js:481 +#: js/viewfeed.js:484 #: plugins/digest/digest.js:265 #: plugins/digest/digest.js:754 msgid "Publish article" msgstr "" -#: js/viewfeed.js:677 -#: js/viewfeed.js:705 -#: js/viewfeed.js:732 -#: js/viewfeed.js:795 -#: js/viewfeed.js:829 -#: js/viewfeed.js:949 -#: js/viewfeed.js:992 -#: js/viewfeed.js:1045 -#: js/viewfeed.js:2051 +#: js/viewfeed.js:680 +#: js/viewfeed.js:708 +#: js/viewfeed.js:735 +#: js/viewfeed.js:798 +#: js/viewfeed.js:832 +#: js/viewfeed.js:952 +#: js/viewfeed.js:995 +#: js/viewfeed.js:1048 +#: js/viewfeed.js:2060 #: plugins/mailto/init.js:7 #: plugins/mail/mail.js:7 #, fuzzy msgid "No articles are selected." msgstr "Nenhum filtro foi selecionado." -#: js/viewfeed.js:957 +#: js/viewfeed.js:960 #, 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:959 +#: js/viewfeed.js:962 #, 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:1001 +#: js/viewfeed.js:1004 #, 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:1004 +#: js/viewfeed.js:1007 #, fuzzy msgid "Move %d archived article back?" msgid_plural "Move %d archived articles back?" msgstr[0] "Favoritos" msgstr[1] "Favoritos" -#: js/viewfeed.js:1006 +#: js/viewfeed.js:1009 msgid "Please note that unstarred articles might get purged on next feed update." msgstr "" -#: js/viewfeed.js:1051 +#: js/viewfeed.js:1054 #, 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:1075 +#: js/viewfeed.js:1078 #, fuzzy msgid "Edit article Tags" msgstr "Editar Tags" -#: js/viewfeed.js:1081 +#: js/viewfeed.js:1084 #, fuzzy msgid "Saving article tags..." msgstr "Salvando categoria..." -#: js/viewfeed.js:1278 +#: js/viewfeed.js:1287 #, fuzzy msgid "No article is selected." msgstr "Nenhum filtro foi selecionado." -#: js/viewfeed.js:1313 +#: js/viewfeed.js:1322 #, fuzzy msgid "No articles found to mark" msgstr "Sem Feeds para exibir." -#: js/viewfeed.js:1315 +#: js/viewfeed.js:1324 #, 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:1827 +#: js/viewfeed.js:1836 #, fuzzy msgid "Open original article" msgstr "Favoritos" -#: js/viewfeed.js:1833 +#: js/viewfeed.js:1842 #, fuzzy msgid "Display article URL" msgstr "Favoritos" -#: js/viewfeed.js:1852 +#: js/viewfeed.js:1861 #, fuzzy msgid "Toggle marked" msgstr "Marcar como favorito" -#: js/viewfeed.js:1933 +#: js/viewfeed.js:1942 msgid "Assign label" msgstr "" -#: js/viewfeed.js:1938 +#: js/viewfeed.js:1947 #, fuzzy msgid "Remove label" msgstr "Remover" -#: js/viewfeed.js:1962 +#: js/viewfeed.js:1971 #, fuzzy msgid "Playing..." msgstr "Salvando o Feed..." -#: js/viewfeed.js:1963 +#: js/viewfeed.js:1972 #, fuzzy msgid "Click to pause" msgstr "Favoritos" -#: js/viewfeed.js:2020 +#: js/viewfeed.js:2029 #, fuzzy msgid "Please enter new score for selected articles:" msgstr "Remover os filtros selecionados?" -#: js/viewfeed.js:2062 +#: js/viewfeed.js:2071 #, fuzzy msgid "Please enter new score for this article:" msgstr "Salvando categoria..." -#: js/viewfeed.js:2095 +#: js/viewfeed.js:2104 #, fuzzy msgid "Article URL:" msgstr "Feed não encontrado." @@ -3923,6 +3868,24 @@ msgstr "Favoritos" msgid "Live updating is considered experimental. Backup your tt-rss directory before continuing. Please type 'yes' to continue." msgstr "" +#~ msgid ", found: " +#~ msgstr ", encontrou:" + +#~ msgid "Please backup your database before proceeding." +#~ msgstr "Faça uma cópia-de-segurança de seus dados antes de prosseguir." + +#~ msgid "Updating to version %d..." +#~ msgstr "Atualizando para a versão %d..." + +#~ msgid "Checking version... " +#~ msgstr "Verificando a versão…" + +#~ msgid "OK!" +#~ msgstr "OK!" + +#~ msgid "ERROR!" +#~ msgstr "ERRO!" + #, fuzzy #~ msgid "Mark feed as read" #~ msgstr "Marcar como lido" @@ -3931,9 +3894,6 @@ msgstr "" #~ msgid "Default feed update interval" #~ msgstr "Padrão" -#~ msgid "Title" -#~ msgstr "TÃtulo" - #~ msgid "Title or Content" #~ msgstr "TÃtulo ou Conteúdo" diff --git a/locale/ru_RU/LC_MESSAGES/messages.mo b/locale/ru_RU/LC_MESSAGES/messages.mo Binary files differindex 8c11a351c..51192f563 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 9d20ace71..678b97777 100644 --- a/locale/ru_RU/LC_MESSAGES/messages.po +++ b/locale/ru_RU/LC_MESSAGES/messages.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-04-04 09:06+0400\n" +"POT-Creation-Date: 2013-04-04 21:31+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" @@ -104,102 +104,6 @@ msgstr "Ðктивный пользователь" msgid "Administrator" msgstr "ÐдминиÑтратор" -#: db-updater.php:19 -msgid "Your access level is insufficient to run this script." -msgstr "Ð’ доÑтупе отказано - недоÑтаточный уровень привилегий." - -#: db-updater.php:44 -msgid "Database Updater" -msgstr "Обновление базы данных" - -#: db-updater.php:87 -msgid "Could not update database" -msgstr "Ðе могу обновить базу данных" - -#: db-updater.php:90 -msgid "Could not find necessary schema file, need version:" -msgstr "Ðе могу найти необходимый файл Ñхемы, требуетÑÑ Ð²ÐµÑ€ÑиÑ:" - -#: db-updater.php:91 -msgid ", found: " -msgstr ", найдена: " - -#: db-updater.php:94 -msgid "Tiny Tiny RSS database is up to date." -msgstr "Tiny Tiny RSS база данных обновлена." - -#: db-updater.php:96 -#: db-updater.php:165 -#: db-updater.php:178 -#: register.php:196 -#: register.php:241 -#: register.php:254 -#: register.php:269 -#: register.php:288 -#: register.php:336 -#: register.php:346 -#: register.php:358 -#: classes/handler/public.php:648 -#: classes/handler/public.php:736 -#: classes/handler/public.php:818 -msgid "Return to Tiny Tiny RSS" -msgstr "ВернутьÑÑ Ðº Tiny Tiny RSS" - -#: db-updater.php:102 -msgid "Please backup your database before proceeding." -msgstr "ПожалуйÑта, Ñохраните вашу базу данных перед продолжением." - -#: db-updater.php:104 -#, php-format -msgid "Your Tiny Tiny RSS database needs update to the latest version (<b>%d</b> to <b>%d</b>)." -msgstr "Вашей базе данных Tiny Tiny RSS необходимо обновитьÑÑ Ð´Ð¾ поÑледней верÑии (<b>%d</b> до <b>%d</b>)." - -#: db-updater.php:118 -msgid "Perform updates" -msgstr "Применить обновлениÑ" - -#: db-updater.php:123 -msgid "Performing updates..." -msgstr "Идет обновление..." - -#: db-updater.php:129 -#, php-format -msgid "Updating to version %d..." -msgstr "ОбновлÑетÑÑ Ð´Ð¾ верÑии %d..." - -#: db-updater.php:144 -msgid "Checking version... " -msgstr "ПроверÑетÑÑ Ð²ÐµÑ€ÑиÑ... " - -#: db-updater.php:150 -msgid "OK!" -msgstr "OK!" - -#: db-updater.php:152 -msgid "ERROR!" -msgstr "Ошибка!" - -#: db-updater.php:160 -#, fuzzy, php-format -msgid "Finished. Performed <b>%d</b> update up to schema version <b>%d</b>." -msgid_plural "Finished. Performed <b>%d</b> updates up to schema version <b>%d</b>." -msgstr[0] "Обновление завершено. Выполнено <b>%d</b> обновление(ий) Ñхемы базы данных до верÑии <b>%d</b>." -msgstr[1] "Обновление завершено. Выполнено <b>%d</b> обновление(ий) Ñхемы базы данных до верÑии <b>%d</b>." -msgstr[2] "Обновление завершено. Выполнено <b>%d</b> обновление(ий) Ñхемы базы данных до верÑии <b>%d</b>." - -#: db-updater.php:170 -msgid "Your database schema is from a newer version of Tiny Tiny RSS." -msgstr "" - -#: db-updater.php:172 -#, php-format -msgid "Found schema version: <b>%d</b>, required: <b>%d</b>." -msgstr "" - -#: db-updater.php:174 -msgid "Schema upgrade impossible. Please update Tiny Tiny RSS files to the newer version and continue." -msgstr "" - #: errors.php:9 msgid "This program requires XmlHttpRequest to function properly. Your browser doesn't seem to support it." msgstr "Программе требуетÑÑ Ñ„ÑƒÐ½ÐºÑ†Ð¸Ð¾Ð½Ð°Ð» XmlHttpRequest. Ваш браузер его не поддерживает." @@ -253,7 +157,7 @@ msgstr "неудавшийÑÑ Ñ‚ÐµÑÑ‚ ÑÐºÑ€Ð°Ð½Ð¸Ñ€Ð¾Ð²Ð°Ð½Ð¸Ñ SQL, пров #: index.php:135 #: index.php:152 -#: index.php:276 +#: index.php:277 #: prefs.php:103 #: classes/backend.php:5 #: classes/pref/labels.php:296 @@ -261,7 +165,7 @@ msgstr "неудавшийÑÑ Ñ‚ÐµÑÑ‚ ÑÐºÑ€Ð°Ð½Ð¸Ñ€Ð¾Ð²Ð°Ð½Ð¸Ñ SQL, пров #: classes/pref/feeds.php:1331 #: plugins/digest/digest_body.php:63 #: js/feedlist.js:128 -#: js/feedlist.js:436 +#: js/feedlist.js:438 #: js/functions.js:420 #: js/functions.js:758 #: js/functions.js:1194 @@ -282,8 +186,8 @@ msgstr "неудавшийÑÑ Ñ‚ÐµÑÑ‚ ÑÐºÑ€Ð°Ð½Ð¸Ñ€Ð¾Ð²Ð°Ð½Ð¸Ñ SQL, пров #: js/prefs.js:1814 #: js/tt-rss.js:475 #: js/tt-rss.js:492 -#: js/viewfeed.js:772 -#: js/viewfeed.js:1200 +#: js/viewfeed.js:775 +#: js/viewfeed.js:1201 #: plugins/import_export/import_export.js:17 #: plugins/updater/updater.js:17 msgid "Loading, please wait..." @@ -306,13 +210,13 @@ msgid "All Articles" msgstr "Ð’Ñе Ñтатьи" #: index.php:174 -#: include/functions.php:1953 +#: include/functions.php:1955 #: classes/feeds.php:106 msgid "Starred" msgstr "Отмеченные" #: index.php:175 -#: include/functions.php:1954 +#: include/functions.php:1956 #: classes/feeds.php:107 msgid "Published" msgstr "Опубликован" @@ -352,9 +256,13 @@ msgstr "" msgid "Oldest first" msgstr "" -#: index.php:191 -#: index.php:240 -#: include/functions.php:1943 +#: index.php:188 +msgid "Title" +msgstr "Заголовок" + +#: index.php:192 +#: index.php:241 +#: include/functions.php:1945 #: classes/feeds.php:111 #: classes/feeds.php:441 #: js/FeedTree.js:128 @@ -363,106 +271,106 @@ msgstr "" msgid "Mark as read" msgstr "Как прочитанные" -#: index.php:194 +#: index.php:195 msgid "Older than one day" msgstr "" -#: index.php:197 +#: index.php:198 msgid "Older than one week" msgstr "" -#: index.php:200 +#: index.php:201 msgid "Older than two weeks" msgstr "" -#: index.php:217 +#: index.php:218 msgid "Communication problem with server." msgstr "" -#: index.php:225 +#: index.php:226 msgid "New version of Tiny Tiny RSS is available!" msgstr "ДоÑÑ‚ÑƒÐ¿Ð½Ð°Ñ Ð½Ð¾Ð²Ð°Ñ Ð²ÐµÑ€ÑÐ¸Ñ Tiny Tiny RSS!" -#: index.php:230 +#: index.php:231 msgid "Actions..." msgstr "ДейÑтвиÑ..." -#: index.php:232 +#: index.php:233 #, fuzzy msgid "Preferences..." msgstr "ÐаÑтройки" -#: index.php:233 +#: index.php:234 msgid "Search..." msgstr "ПоиÑк..." -#: index.php:234 +#: index.php:235 msgid "Feed actions:" msgstr "ДейÑÑ‚Ð²Ð¸Ñ Ð½Ð°Ð´ каналами:" -#: index.php:235 +#: index.php:236 #: classes/handler/public.php:578 msgid "Subscribe to feed..." msgstr "ПодпиÑатьÑÑ Ð½Ð° канал..." -#: index.php:236 +#: index.php:237 msgid "Edit this feed..." msgstr "Редактировать канал..." -#: index.php:237 +#: index.php:238 msgid "Rescore feed" msgstr "Заново оценить канал" -#: index.php:238 +#: index.php:239 #: classes/pref/feeds.php:717 #: classes/pref/feeds.php:1283 #: js/PrefFeedTree.js:73 msgid "Unsubscribe" msgstr "ОтпиÑатьÑÑ" -#: index.php:239 +#: index.php:240 msgid "All feeds:" msgstr "Ð’Ñе каналы:" -#: index.php:241 +#: index.php:242 msgid "(Un)hide read feeds" msgstr "Показать/Ñкрыть прочитанные" -#: index.php:242 +#: index.php:243 msgid "Other actions:" msgstr "Другие дейÑтвиÑ:" -#: index.php:244 +#: index.php:245 msgid "Switch to digest..." msgstr "Перейти в дайджеÑÑ‚..." -#: index.php:246 +#: index.php:247 msgid "Show tag cloud..." msgstr "Показать облако тегов..." -#: index.php:247 -#: include/functions.php:1929 +#: index.php:248 +#: include/functions.php:1931 #, fuzzy msgid "Toggle widescreen mode" msgstr "Переключить изменение режима категории" -#: index.php:248 +#: index.php:249 msgid "Select by tags..." msgstr "Выбрать по тегам..." -#: index.php:249 +#: index.php:250 msgid "Create label..." msgstr "Создать метку..." -#: index.php:250 +#: index.php:251 msgid "Create filter..." msgstr "Создать фильтр..." -#: index.php:251 +#: index.php:252 msgid "Keyboard shortcuts help" msgstr "ГорÑчие клавиши" -#: index.php:260 +#: index.php:261 #: plugins/digest/digest_body.php:77 #: plugins/mobile/mobile-functions.php:62 #: plugins/mobile/mobile-functions.php:237 @@ -471,8 +379,8 @@ msgstr "Выход" #: prefs.php:36 #: prefs.php:121 -#: include/functions.php:1956 -#: classes/pref/prefs.php:428 +#: include/functions.php:1958 +#: classes/pref/prefs.php:444 msgid "Preferences" msgstr "ÐаÑтройки" @@ -497,8 +405,8 @@ msgid "Filters" msgstr "Фильтры" #: prefs.php:130 -#: include/functions.php:1146 -#: include/functions.php:1782 +#: include/functions.php:1148 +#: include/functions.php:1784 #: classes/pref/labels.php:90 #: plugins/mobile/mobile-functions.php:198 msgid "Labels" @@ -517,6 +425,24 @@ msgstr "Создать новый аккаунт" msgid "New user registrations are administratively disabled." msgstr "РегиÑÑ‚Ñ€Ð°Ñ†Ð¸Ñ Ð½Ð¾Ð²Ñ‹Ñ… пользователей запрещена." +#: 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:648 +#: classes/handler/public.php:736 +#: classes/handler/public.php:818 +#: classes/handler/public.php:893 +#: classes/handler/public.php:907 +#: classes/handler/public.php:914 +#: classes/handler/public.php:939 +msgid "Return to Tiny Tiny RSS" +msgstr "ВернутьÑÑ Ðº Tiny Tiny RSS" + #: register.php:217 msgid "Your temporary password will be sent to the specified email. Accounts, which were not logged in once, are erased automatically 24 hours after temporary password is sent." msgstr "Временный пароль будет отправлен на указанный e-mail. ЕÑли аккаунт не будет активирован в течении 24 чаÑов, то он будет удалён." @@ -563,16 +489,16 @@ msgstr "Ðккаунт уÑпешно Ñоздан." msgid "New user registrations are currently closed." msgstr "РегиÑÑ‚Ñ€Ð°Ñ†Ð¸Ñ Ð½Ð¾Ð²Ñ‹Ñ… пользователей временно закрыта." -#: update.php:55 +#: update.php:56 #, fuzzy msgid "Tiny Tiny RSS data update script." msgstr "Tiny Tiny RSS база данных обновлена." #: include/digest.php:109 -#: include/functions.php:1155 -#: include/functions.php:1683 -#: include/functions.php:1768 -#: include/functions.php:1790 +#: include/functions.php:1157 +#: include/functions.php:1685 +#: include/functions.php:1770 +#: include/functions.php:1792 #: classes/opml.php:416 #: classes/pref/feeds.php:222 msgid "Uncategorized" @@ -590,330 +516,330 @@ msgstr[2] "Отмеченные" msgid "No feeds found." msgstr "Каналы не найдены." -#: include/functions.php:1144 -#: include/functions.php:1780 +#: include/functions.php:1146 +#: include/functions.php:1782 #: plugins/mobile/mobile-functions.php:171 msgid "Special" msgstr "ОÑобые" -#: include/functions.php:1632 -#: classes/feeds.php:1101 +#: include/functions.php:1634 +#: classes/feeds.php:1104 #: classes/pref/filters.php:427 msgid "All feeds" msgstr "Ð’Ñе каналы" -#: include/functions.php:1833 +#: include/functions.php:1835 msgid "Starred articles" msgstr "Отмеченные" -#: include/functions.php:1835 +#: include/functions.php:1837 msgid "Published articles" msgstr "Опубликованные" -#: include/functions.php:1837 +#: include/functions.php:1839 msgid "Fresh articles" msgstr "Свежие" -#: include/functions.php:1839 -#: include/functions.php:1951 +#: include/functions.php:1841 +#: include/functions.php:1953 msgid "All articles" msgstr "Ð’Ñе Ñтатьи" -#: include/functions.php:1841 +#: include/functions.php:1843 msgid "Archived articles" msgstr "Ðрхив Ñтатей" -#: include/functions.php:1843 +#: include/functions.php:1845 msgid "Recently read" msgstr "" -#: include/functions.php:1906 +#: include/functions.php:1908 msgid "Navigation" msgstr "ÐавигациÑ" -#: include/functions.php:1907 +#: include/functions.php:1909 #, fuzzy msgid "Open next feed" msgstr "Генерировать канал" -#: include/functions.php:1908 +#: include/functions.php:1910 msgid "Open previous feed" msgstr "" -#: include/functions.php:1909 +#: include/functions.php:1911 #, fuzzy msgid "Open next article" msgstr "Показать оригинальное Ñодержимое Ñтатьи" -#: include/functions.php:1910 +#: include/functions.php:1912 #, fuzzy msgid "Open previous article" msgstr "Показать оригинальное Ñодержимое Ñтатьи" -#: include/functions.php:1911 +#: include/functions.php:1913 msgid "Open next article (don't scroll long articles)" msgstr "" -#: include/functions.php:1912 +#: include/functions.php:1914 msgid "Open previous article (don't scroll long articles)" msgstr "" -#: include/functions.php:1913 +#: include/functions.php:1915 msgid "Show search dialog" msgstr "Показать диалог поиÑка" -#: include/functions.php:1914 +#: include/functions.php:1916 #, fuzzy msgid "Article" msgstr "Ð’Ñе Ñтатьи" -#: include/functions.php:1915 +#: include/functions.php:1917 msgid "Toggle starred" msgstr "Изм. отмеченное" -#: include/functions.php:1916 -#: js/viewfeed.js:1863 +#: include/functions.php:1918 +#: js/viewfeed.js:1872 msgid "Toggle published" msgstr "Отметить / ÑнÑть отметку" -#: include/functions.php:1917 -#: js/viewfeed.js:1841 +#: include/functions.php:1919 +#: js/viewfeed.js:1850 msgid "Toggle unread" msgstr "Прочитано / не прочитано" -#: include/functions.php:1918 +#: include/functions.php:1920 msgid "Edit tags" msgstr "Редактировать теги" -#: include/functions.php:1919 +#: include/functions.php:1921 #, fuzzy msgid "Dismiss selected" msgstr "Скрыть выбранные Ñтатьи" -#: include/functions.php:1920 +#: include/functions.php:1922 #, fuzzy msgid "Dismiss read" msgstr "Опубликовать" -#: include/functions.php:1921 +#: include/functions.php:1923 #, fuzzy msgid "Open in new window" msgstr "Открыть Ñтатью в новом окне" -#: include/functions.php:1922 -#: js/viewfeed.js:1882 +#: include/functions.php:1924 +#: js/viewfeed.js:1891 msgid "Mark below as read" msgstr "Отметить Ñтатьи ниже как прочитанные" -#: include/functions.php:1923 -#: js/viewfeed.js:1876 +#: include/functions.php:1925 +#: js/viewfeed.js:1885 msgid "Mark above as read" msgstr "Отметить Ñтатьи выше как прочитанные" -#: include/functions.php:1924 +#: include/functions.php:1926 #, fuzzy msgid "Scroll down" msgstr "Ð’ÑÑ‘ выполнено." -#: include/functions.php:1925 +#: include/functions.php:1927 msgid "Scroll up" msgstr "" -#: include/functions.php:1926 +#: include/functions.php:1928 #, fuzzy msgid "Select article under cursor" msgstr "Выбрать Ñтатью под курÑором мыши" -#: include/functions.php:1927 +#: include/functions.php:1929 msgid "Email article" msgstr "Отправить по почте" -#: include/functions.php:1928 +#: include/functions.php:1930 #, fuzzy msgid "Close/collapse article" msgstr "Закрыть Ñтатью" -#: include/functions.php:1930 +#: include/functions.php:1932 #: plugins/embed_original/init.php:33 #, fuzzy msgid "Toggle embed original" msgstr "Переключить изменение режима категории" -#: include/functions.php:1931 +#: include/functions.php:1933 #, fuzzy msgid "Article selection" msgstr "Инвертировать выделение" -#: include/functions.php:1932 +#: include/functions.php:1934 msgid "Select all articles" msgstr "Выбрать вÑе Ñтатьи" -#: include/functions.php:1933 +#: include/functions.php:1935 #, fuzzy msgid "Select unread" msgstr "Выбрать непрочитанные Ñтатьи" -#: include/functions.php:1934 +#: include/functions.php:1936 #, fuzzy msgid "Select starred" msgstr "Отметить" -#: include/functions.php:1935 +#: include/functions.php:1937 #, fuzzy msgid "Select published" msgstr "Выбрать непрочитанные Ñтатьи" -#: include/functions.php:1936 +#: include/functions.php:1938 #, fuzzy msgid "Invert selection" msgstr "Инвертировать выделение" -#: include/functions.php:1937 +#: include/functions.php:1939 #, fuzzy msgid "Deselect everything" msgstr "ОчиÑтить выделение Ñтатей" -#: include/functions.php:1938 +#: include/functions.php:1940 #: classes/pref/feeds.php:521 #: classes/pref/feeds.php:754 msgid "Feed" msgstr "Канал" -#: include/functions.php:1939 +#: include/functions.php:1941 #, fuzzy msgid "Refresh current feed" msgstr "Обновить активный канал" -#: include/functions.php:1940 +#: include/functions.php:1942 #, fuzzy msgid "Un/hide read feeds" msgstr "Показать/Ñкрыть прочитанные" -#: include/functions.php:1941 +#: include/functions.php:1943 #: classes/pref/feeds.php:1275 msgid "Subscribe to feed" msgstr "ПодпиÑатьÑÑ Ð½Ð° канал" -#: include/functions.php:1942 +#: include/functions.php:1944 #: js/FeedTree.js:135 #: js/PrefFeedTree.js:67 msgid "Edit feed" msgstr "Редактировать канал" -#: include/functions.php:1944 +#: include/functions.php:1946 #, fuzzy msgid "Reverse headlines" msgstr "Обратный порÑдок заголовков" -#: include/functions.php:1945 +#: include/functions.php:1947 #, fuzzy msgid "Debug feed update" msgstr "Ð’Ñе каналы обновлены." -#: include/functions.php:1946 +#: include/functions.php:1948 #: js/FeedTree.js:178 msgid "Mark all feeds as read" msgstr "Отметить вÑе каналы как прочитанные" -#: include/functions.php:1947 +#: include/functions.php:1949 #, fuzzy msgid "Un/collapse current category" msgstr "Щёлкните, чтобы развернуть категорию" -#: include/functions.php:1948 +#: include/functions.php:1950 #, fuzzy msgid "Toggle combined mode" msgstr "Переключить изменение режима категории" -#: include/functions.php:1949 +#: include/functions.php:1951 #, fuzzy msgid "Toggle auto expand in combined mode" msgstr "Переключить изменение режима категории" -#: include/functions.php:1950 +#: include/functions.php:1952 #, fuzzy msgid "Go to" msgstr "Перейти к.." -#: include/functions.php:1952 +#: include/functions.php:1954 #, fuzzy msgid "Fresh" msgstr "Обновить" -#: include/functions.php:1955 +#: include/functions.php:1957 #: js/tt-rss.js:431 #: js/tt-rss.js:584 msgid "Tag cloud" msgstr "Облако тегов" -#: include/functions.php:1957 +#: include/functions.php:1959 #, fuzzy msgid "Other" msgstr "Другой:" -#: include/functions.php:1958 +#: include/functions.php:1960 #: classes/pref/labels.php:281 msgid "Create label" msgstr "Создать метку" -#: include/functions.php:1959 +#: include/functions.php:1961 #: classes/pref/filters.php:654 msgid "Create filter" msgstr "Создать фильтр" -#: include/functions.php:1960 +#: include/functions.php:1962 #, fuzzy msgid "Un/collapse sidebar" msgstr "Развернуть боковую панель" -#: include/functions.php:1961 +#: include/functions.php:1963 #, fuzzy msgid "Show help dialog" msgstr "Показать диалог поиÑка" -#: include/functions.php:2446 +#: include/functions.php:2471 #, fuzzy, php-format msgid "Search results: %s" msgstr "Результаты поиÑка" -#: include/functions.php:2937 -#: js/viewfeed.js:1969 +#: include/functions.php:2962 +#: js/viewfeed.js:1978 msgid "Click to play" msgstr "Щёлкните Ð´Ð»Ñ Ð¿Ñ€Ð¾Ð¸Ð³Ñ€Ñ‹Ð²Ð°Ð½Ð¸Ñ" -#: include/functions.php:2938 -#: js/viewfeed.js:1968 +#: include/functions.php:2963 +#: js/viewfeed.js:1977 msgid "Play" msgstr "Играть" -#: include/functions.php:3055 +#: include/functions.php:3080 msgid " - " msgstr " - " -#: include/functions.php:3077 -#: include/functions.php:3371 +#: include/functions.php:3102 +#: include/functions.php:3396 #: classes/article.php:281 msgid "no tags" msgstr "нет тегов" -#: include/functions.php:3087 +#: include/functions.php:3112 #: classes/feeds.php:686 msgid "Edit tags for this article" msgstr "Редактировать теги Ñтатьи" -#: include/functions.php:3116 +#: include/functions.php:3141 #: classes/feeds.php:642 msgid "Originally from:" msgstr "Оригинал:" -#: include/functions.php:3129 +#: include/functions.php:3154 #: classes/feeds.php:655 #: classes/pref/feeds.php:540 #, fuzzy msgid "Feed URL" msgstr "Канал" -#: include/functions.php:3160 +#: include/functions.php:3185 #: classes/dlg.php:37 #: classes/dlg.php:60 #: classes/dlg.php:93 @@ -925,7 +851,7 @@ msgstr "Канал" #: classes/backend.php:105 #: classes/pref/users.php:99 #: classes/pref/filters.php:147 -#: classes/pref/prefs.php:1059 +#: classes/pref/prefs.php:1105 #: classes/pref/feeds.php:1588 #: classes/pref/feeds.php:1660 #: plugins/import_export/init.php:406 @@ -936,16 +862,16 @@ msgstr "Канал" msgid "Close this window" msgstr "Закрыть Ñто окно" -#: include/functions.php:3396 +#: include/functions.php:3421 #, fuzzy msgid "(edit note)" msgstr "править заметку" -#: include/functions.php:3631 +#: include/functions.php:3656 msgid "unknown type" msgstr "неизвеÑтный тип" -#: include/functions.php:3687 +#: include/functions.php:3712 #, fuzzy msgid "Attachments" msgstr "ВложениÑ:" @@ -970,6 +896,7 @@ msgstr "Ðекорректное Ð¸Ð¼Ñ Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ Ð¸Ð»Ð¸ паро #: include/login_form.php:201 #: classes/handler/public.php:489 +#: classes/pref/prefs.php:552 msgid "Language:" msgstr "Язык:" @@ -980,7 +907,7 @@ msgstr "Профиль:" #: include/login_form.php:213 #: classes/handler/public.php:233 #: classes/rpc.php:64 -#: classes/pref/prefs.php:995 +#: classes/pref/prefs.php:1041 msgid "Default profile" msgstr "Профиль по умолчанию" @@ -998,7 +925,7 @@ msgstr "" msgid "Log in" msgstr "Войти" -#: include/sessions.php:58 +#: include/sessions.php:62 msgid "Session failed to validate (incorrect IP)" msgstr "Ошибка проверки ÑеÑÑии (некорректный IP)" @@ -1014,7 +941,7 @@ msgstr "Теги Ð´Ð»Ñ Ñтой Ñтатьи (разделенные запÑÑ‚ #: classes/pref/users.php:176 #: classes/pref/labels.php:79 #: classes/pref/filters.php:405 -#: classes/pref/prefs.php:941 +#: classes/pref/prefs.php:987 #: classes/pref/feeds.php:733 #: classes/pref/feeds.php:881 #: plugins/nsfw/init.php:86 @@ -1026,16 +953,16 @@ msgstr "Сохранить" #: classes/article.php:206 #: classes/handler/public.php:460 #: classes/handler/public.php:502 -#: classes/feeds.php:1028 -#: classes/feeds.php:1080 -#: classes/feeds.php:1140 +#: classes/feeds.php:1031 +#: classes/feeds.php:1083 +#: classes/feeds.php:1143 #: 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:943 +#: classes/pref/prefs.php:989 #: classes/pref/feeds.php:734 #: classes/pref/feeds.php:884 #: classes/pref/feeds.php:1797 @@ -1167,6 +1094,18 @@ msgstr "ПеремеÑтить назад" msgid "Sorry, login and email combination not found." msgstr "" +#: classes/handler/public.php:842 +msgid "Your access level is insufficient to run this script." +msgstr "Ð’ доÑтупе отказано - недоÑтаточный уровень привилегий." + +#: classes/handler/public.php:866 +msgid "Database Updater" +msgstr "Обновление базы данных" + +#: classes/handler/public.php:931 +msgid "Perform updates" +msgstr "Применить обновлениÑ" + #: 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 "ЕÑли вы импортировали метки или фильтры, вам возможно придетÑÑ Ð¿ÐµÑ€ÐµÐ·Ð°Ð³Ñ€ÑƒÐ·Ð¸Ñ‚ÑŒ наÑтройки чтобы увидеть новые данные." @@ -1273,7 +1212,7 @@ msgstr "Выбрать:" #: classes/pref/filters.php:648 #: classes/pref/filters.php:737 #: classes/pref/filters.php:764 -#: classes/pref/prefs.php:955 +#: classes/pref/prefs.php:1001 #: classes/pref/feeds.php:1266 #: classes/pref/feeds.php:1536 #: classes/pref/feeds.php:1606 @@ -1293,7 +1232,7 @@ msgstr "Инвертировать" #: classes/pref/filters.php:650 #: classes/pref/filters.php:739 #: classes/pref/filters.php:766 -#: classes/pref/prefs.php:957 +#: classes/pref/prefs.php:1003 #: classes/pref/feeds.php:1268 #: classes/pref/feeds.php:1538 #: classes/pref/feeds.php:1608 @@ -1387,45 +1326,45 @@ msgid "No articles found to display." msgstr "Статей не найдено." #: classes/feeds.php:759 -#: classes/feeds.php:923 +#: classes/feeds.php:926 #, php-format msgid "Feeds last updated at %s" msgstr "ПоÑледнее обновление в %s" #: classes/feeds.php:769 -#: classes/feeds.php:933 +#: classes/feeds.php:936 msgid "Some feeds have update errors (click for details)" msgstr "Ðекоторые каналы не могут быть обновлены (щёлкните Ð´Ð»Ñ Ð¿Ð¾Ð´Ñ€Ð¾Ð±Ð½Ð¾Ñтей)" -#: classes/feeds.php:913 +#: classes/feeds.php:916 msgid "No feed selected." msgstr "Канал не выбран." -#: classes/feeds.php:966 -#: classes/feeds.php:974 +#: classes/feeds.php:969 +#: classes/feeds.php:977 #, fuzzy msgid "Feed or site URL" msgstr "Канал" -#: classes/feeds.php:980 +#: classes/feeds.php:983 #: classes/pref/feeds.php:560 #: classes/pref/feeds.php:782 #: classes/pref/feeds.php:1761 msgid "Place in category:" msgstr "ПомеÑтить в категорию:" -#: classes/feeds.php:988 +#: classes/feeds.php:991 msgid "Available feeds" msgstr "ДоÑтупные каналы" -#: classes/feeds.php:1000 +#: classes/feeds.php:1003 #: classes/pref/users.php:139 #: classes/pref/feeds.php:590 #: classes/pref/feeds.php:818 msgid "Authentication" msgstr "ÐвторизациÑ" -#: classes/feeds.php:1004 +#: classes/feeds.php:1007 #: classes/pref/users.php:402 #: classes/pref/feeds.php:596 #: classes/pref/feeds.php:822 @@ -1433,30 +1372,30 @@ msgstr "ÐвторизациÑ" msgid "Login" msgstr "Пользователь:" -#: classes/feeds.php:1007 -#: classes/pref/prefs.php:253 +#: classes/feeds.php:1010 +#: classes/pref/prefs.php:269 #: classes/pref/feeds.php:602 #: classes/pref/feeds.php:828 #: classes/pref/feeds.php:1778 msgid "Password" msgstr "Пароль" -#: classes/feeds.php:1017 +#: classes/feeds.php:1020 msgid "This feed requires authentication." msgstr "Ðтот канал требует авторизации." -#: classes/feeds.php:1022 -#: classes/feeds.php:1078 +#: classes/feeds.php:1025 +#: classes/feeds.php:1081 #: classes/pref/feeds.php:1796 msgid "Subscribe" msgstr "ПодпиÑатьÑÑ" -#: classes/feeds.php:1025 +#: classes/feeds.php:1028 msgid "More feeds" msgstr "Другие каналы" -#: classes/feeds.php:1048 -#: classes/feeds.php:1139 +#: classes/feeds.php:1051 +#: classes/feeds.php:1142 #: classes/pref/users.php:332 #: classes/pref/filters.php:641 #: classes/pref/feeds.php:1259 @@ -1464,22 +1403,22 @@ msgstr "Другие каналы" msgid "Search" msgstr "ПоиÑк" -#: classes/feeds.php:1052 +#: classes/feeds.php:1055 #, fuzzy msgid "Popular feeds" msgstr "показать каналы" -#: classes/feeds.php:1053 +#: classes/feeds.php:1056 #, fuzzy msgid "Feed archive" msgstr "ДейÑÑ‚Ð²Ð¸Ñ Ð½Ð°Ð´ каналом:" -#: classes/feeds.php:1056 +#: classes/feeds.php:1059 #, fuzzy msgid "limit:" msgstr "Сколько:" -#: classes/feeds.php:1079 +#: classes/feeds.php:1082 #: classes/pref/users.php:358 #: classes/pref/labels.php:284 #: classes/pref/filters.php:398 @@ -1489,15 +1428,15 @@ msgstr "Сколько:" msgid "Remove" msgstr "Удалить" -#: classes/feeds.php:1090 +#: classes/feeds.php:1093 msgid "Look for" msgstr "" -#: classes/feeds.php:1098 +#: classes/feeds.php:1101 msgid "Limit search to:" msgstr "Ограничить поиÑк:" -#: classes/feeds.php:1114 +#: classes/feeds.php:1117 msgid "This feed" msgstr "Ðтот канал" @@ -1658,7 +1597,7 @@ msgstr "[tt-rss] Уведомление о Ñмене паролÑ" #: classes/pref/filters.php:645 #: classes/pref/filters.php:734 #: classes/pref/filters.php:761 -#: classes/pref/prefs.php:952 +#: classes/pref/prefs.php:998 #: classes/pref/feeds.php:1263 #: classes/pref/feeds.php:1533 #: classes/pref/feeds.php:1603 @@ -2089,223 +2028,228 @@ msgstr "Пароли не Ñовпадают." msgid "Function not supported by authentication module." msgstr "" -#: classes/pref/prefs.php:120 +#: classes/pref/prefs.php:135 msgid "The configuration was saved." msgstr "ÐšÐ¾Ð½Ñ„Ð¸Ð³ÑƒÑ€Ð°Ñ†Ð¸Ñ Ñохранена." -#: classes/pref/prefs.php:134 +#: classes/pref/prefs.php:150 #, php-format msgid "Unknown option: %s" msgstr "ÐеизвеÑÑ‚Ð½Ð°Ñ Ð¾Ð¿Ñ†Ð¸Ñ: %s" -#: classes/pref/prefs.php:148 +#: classes/pref/prefs.php:164 #, fuzzy msgid "Your personal data has been saved." msgstr "Пароль был изменен." -#: classes/pref/prefs.php:188 +#: classes/pref/prefs.php:204 #, fuzzy msgid "Personal data / Authentication" msgstr "ÐвторизациÑ" -#: classes/pref/prefs.php:208 +#: classes/pref/prefs.php:224 msgid "Personal data" msgstr "Личные данные" -#: classes/pref/prefs.php:218 +#: classes/pref/prefs.php:234 msgid "Full name" msgstr "Полное имÑ" -#: classes/pref/prefs.php:222 +#: classes/pref/prefs.php:238 msgid "E-mail" msgstr "E-mail" -#: classes/pref/prefs.php:228 +#: classes/pref/prefs.php:244 msgid "Access level" msgstr "Уровень доÑтупа:" -#: classes/pref/prefs.php:238 +#: classes/pref/prefs.php:254 msgid "Save data" msgstr "Сохранить" -#: classes/pref/prefs.php:260 +#: classes/pref/prefs.php:276 msgid "Your password is at default value, please change it." msgstr "ИÑпользуетÑÑ Ð¿Ð°Ñ€Ð¾Ð»ÑŒ по умолчанию, пожалуйÑта, измените его." -#: classes/pref/prefs.php:287 +#: classes/pref/prefs.php:303 msgid "Changing your current password will disable OTP." msgstr "" -#: classes/pref/prefs.php:292 +#: classes/pref/prefs.php:308 msgid "Old password" msgstr "Старый пароль" -#: classes/pref/prefs.php:295 +#: classes/pref/prefs.php:311 msgid "New password" msgstr "Ðовый пароль" -#: classes/pref/prefs.php:300 +#: classes/pref/prefs.php:316 msgid "Confirm password" msgstr "Подтверждение паролÑ" -#: classes/pref/prefs.php:310 +#: classes/pref/prefs.php:326 msgid "Change password" msgstr "Изменить пароль" -#: classes/pref/prefs.php:316 +#: classes/pref/prefs.php:332 msgid "One time passwords / Authenticator" msgstr "" -#: classes/pref/prefs.php:320 +#: classes/pref/prefs.php:336 msgid "One time passwords are currently enabled. Enter your current password below to disable." msgstr "" -#: classes/pref/prefs.php:345 -#: classes/pref/prefs.php:396 +#: classes/pref/prefs.php:361 +#: classes/pref/prefs.php:412 #, fuzzy msgid "Enter your password" msgstr "Ðекорректное Ð¸Ð¼Ñ Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ Ð¸Ð»Ð¸ пароль" -#: classes/pref/prefs.php:356 +#: classes/pref/prefs.php:372 #, fuzzy msgid "Disable OTP" msgstr "(Отключен)" -#: classes/pref/prefs.php:362 +#: classes/pref/prefs.php:378 msgid "You will need a compatible Authenticator to use this. Changing your password would automatically disable OTP." msgstr "" -#: classes/pref/prefs.php:364 +#: classes/pref/prefs.php:380 msgid "Scan the following code by the Authenticator application:" msgstr "" -#: classes/pref/prefs.php:405 +#: classes/pref/prefs.php:421 msgid "I have scanned the code and would like to enable OTP" msgstr "" -#: classes/pref/prefs.php:413 +#: classes/pref/prefs.php:429 #, fuzzy msgid "Enable OTP" msgstr "Включен" -#: classes/pref/prefs.php:451 +#: classes/pref/prefs.php:475 msgid "Some preferences are only available in default profile." msgstr "" -#: classes/pref/prefs.php:545 +#: classes/pref/prefs.php:585 #, fuzzy msgid "Customize" msgstr "Изменить пользовательÑкие Ñтили" -#: classes/pref/prefs.php:605 +#: classes/pref/prefs.php:645 msgid "Register" msgstr "РегиÑтрациÑ" -#: classes/pref/prefs.php:609 +#: classes/pref/prefs.php:649 msgid "Clear" msgstr "" -#: classes/pref/prefs.php:615 +#: classes/pref/prefs.php:655 #, php-format msgid "Current server time: %s (UTC)" msgstr "" -#: classes/pref/prefs.php:648 +#: classes/pref/prefs.php:688 msgid "Save configuration" msgstr "Сохранить конфигурацию" -#: classes/pref/prefs.php:651 +#: classes/pref/prefs.php:692 +#, fuzzy +msgid "Save and exit preferences" +msgstr "Закрыть наÑтройки" + +#: classes/pref/prefs.php:697 msgid "Manage profiles" msgstr "Управление профилÑми" -#: classes/pref/prefs.php:654 +#: classes/pref/prefs.php:700 msgid "Reset to defaults" msgstr "СброÑить наÑтройки" -#: classes/pref/prefs.php:678 -#: classes/pref/prefs.php:680 +#: classes/pref/prefs.php:724 +#: classes/pref/prefs.php:726 msgid "Plugins" msgstr "" -#: classes/pref/prefs.php:682 +#: classes/pref/prefs.php:728 msgid "You will need to reload Tiny Tiny RSS for plugin changes to take effect." msgstr "" -#: classes/pref/prefs.php:684 +#: classes/pref/prefs.php:730 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:710 +#: classes/pref/prefs.php:756 msgid "System plugins" msgstr "" -#: classes/pref/prefs.php:714 -#: classes/pref/prefs.php:768 +#: classes/pref/prefs.php:760 +#: classes/pref/prefs.php:814 msgid "Plugin" msgstr "" -#: classes/pref/prefs.php:715 -#: classes/pref/prefs.php:769 +#: classes/pref/prefs.php:761 +#: classes/pref/prefs.php:815 #, fuzzy msgid "Description" msgstr "опиÑание" -#: classes/pref/prefs.php:716 -#: classes/pref/prefs.php:770 +#: classes/pref/prefs.php:762 +#: classes/pref/prefs.php:816 msgid "Version" msgstr "" -#: classes/pref/prefs.php:717 -#: classes/pref/prefs.php:771 +#: classes/pref/prefs.php:763 +#: classes/pref/prefs.php:817 msgid "Author" msgstr "" -#: classes/pref/prefs.php:746 -#: classes/pref/prefs.php:803 +#: classes/pref/prefs.php:792 +#: classes/pref/prefs.php:849 msgid "more info" msgstr "" -#: classes/pref/prefs.php:755 -#: classes/pref/prefs.php:812 +#: classes/pref/prefs.php:801 +#: classes/pref/prefs.php:858 #, fuzzy msgid "Clear data" msgstr "ОчиÑтить данные канала." -#: classes/pref/prefs.php:764 +#: classes/pref/prefs.php:810 msgid "User plugins" msgstr "" -#: classes/pref/prefs.php:827 +#: classes/pref/prefs.php:873 #, fuzzy msgid "Enable selected plugins" msgstr "Разрешить иконки каналов" -#: classes/pref/prefs.php:882 -#: classes/pref/prefs.php:900 +#: classes/pref/prefs.php:928 +#: classes/pref/prefs.php:946 #, fuzzy msgid "Incorrect password" msgstr "Ðекорректное Ð¸Ð¼Ñ Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ Ð¸Ð»Ð¸ пароль" -#: classes/pref/prefs.php:926 +#: classes/pref/prefs.php:972 #, 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:966 +#: classes/pref/prefs.php:1012 msgid "Create profile" msgstr "Создать профиль" -#: classes/pref/prefs.php:989 -#: classes/pref/prefs.php:1019 +#: classes/pref/prefs.php:1035 +#: classes/pref/prefs.php:1065 #, fuzzy msgid "(active)" msgstr "Ðдаптивно" -#: classes/pref/prefs.php:1053 +#: classes/pref/prefs.php:1099 msgid "Remove selected profiles" msgstr "Удалить выбранные профили?" -#: classes/pref/prefs.php:1055 +#: classes/pref/prefs.php:1101 msgid "Activate profile" msgstr "Ðктивировать профиль" @@ -2846,15 +2790,15 @@ msgstr "" msgid "The document has incorrect format." msgstr "" -#: plugins/googlereaderimport/init.php:326 +#: plugins/googlereaderimport/init.php:328 msgid "Import starred or shared items from Google Reader" msgstr "" -#: plugins/googlereaderimport/init.php:330 +#: plugins/googlereaderimport/init.php:332 msgid "Paste your starred.json or shared.json into the form below." msgstr "" -#: plugins/googlereaderimport/init.php:344 +#: plugins/googlereaderimport/init.php:346 msgid "Import my Starred items" msgstr "" @@ -2958,23 +2902,23 @@ msgstr "ПоÑледнее обновление:" msgid "Start update" msgstr "ПоÑледнее обновление:" -#: js/feedlist.js:392 -#: js/feedlist.js:420 +#: js/feedlist.js:394 +#: js/feedlist.js:422 #: plugins/digest/digest.js:26 msgid "Mark all articles in %s as read?" msgstr "Отметить вÑе Ñтатьи в %s как прочитанные?" -#: js/feedlist.js:411 +#: js/feedlist.js:413 #, fuzzy msgid "Mark all articles in %s older than 1 day as read?" msgstr "Отметить вÑе Ñтатьи в %s как прочитанные?" -#: js/feedlist.js:414 +#: js/feedlist.js:416 #, fuzzy msgid "Mark all articles in %s older than 1 week as read?" msgstr "Отметить вÑе Ñтатьи в %s как прочитанные?" -#: js/feedlist.js:417 +#: js/feedlist.js:419 #, fuzzy msgid "Mark all articles in %s older than 2 weeks as read?" msgstr "Отметить вÑе Ñтатьи в %s как прочитанные?" @@ -3531,50 +3475,50 @@ msgstr "Переоценка Ñтатей..." msgid "New version available!" msgstr "ДоÑÑ‚ÑƒÐ¿Ð½Ð°Ñ Ð½Ð¾Ð²Ð°Ñ Ð²ÐµÑ€ÑÐ¸Ñ Tiny Tiny RSS!" -#: js/viewfeed.js:104 +#: js/viewfeed.js:106 #, fuzzy msgid "Cancel search" msgstr "Отмена" -#: js/viewfeed.js:438 +#: js/viewfeed.js:441 #: plugins/digest/digest.js:258 #: plugins/digest/digest.js:714 msgid "Unstar article" msgstr "Ðе отмеченные" -#: js/viewfeed.js:443 +#: js/viewfeed.js:446 #: plugins/digest/digest.js:260 #: plugins/digest/digest.js:718 msgid "Star article" msgstr "Отмеченные" -#: js/viewfeed.js:476 +#: js/viewfeed.js:479 #: plugins/digest/digest.js:263 #: plugins/digest/digest.js:749 msgid "Unpublish article" msgstr "Ðе публиковать" -#: js/viewfeed.js:481 +#: js/viewfeed.js:484 #: plugins/digest/digest.js:265 #: plugins/digest/digest.js:754 msgid "Publish article" msgstr "Опубликовать" -#: js/viewfeed.js:677 -#: js/viewfeed.js:705 -#: js/viewfeed.js:732 -#: js/viewfeed.js:795 -#: js/viewfeed.js:829 -#: js/viewfeed.js:949 -#: js/viewfeed.js:992 -#: js/viewfeed.js:1045 -#: js/viewfeed.js:2051 +#: js/viewfeed.js:680 +#: js/viewfeed.js:708 +#: js/viewfeed.js:735 +#: js/viewfeed.js:798 +#: js/viewfeed.js:832 +#: js/viewfeed.js:952 +#: js/viewfeed.js:995 +#: js/viewfeed.js:1048 +#: js/viewfeed.js:2060 #: plugins/mailto/init.js:7 #: plugins/mail/mail.js:7 msgid "No articles are selected." msgstr "Ðет выбранных Ñтатей." -#: js/viewfeed.js:957 +#: js/viewfeed.js:960 #, fuzzy msgid "Delete %d selected article in %s?" msgid_plural "Delete %d selected articles in %s?" @@ -3582,7 +3526,7 @@ msgstr[0] "Отметить %d выбранные Ñтатьи в %s как пр msgstr[1] "Отметить %d выбранные Ñтатьи в %s как прочитанные?" msgstr[2] "Отметить %d выбранные Ñтатьи в %s как прочитанные?" -#: js/viewfeed.js:959 +#: js/viewfeed.js:962 #, fuzzy msgid "Delete %d selected article?" msgid_plural "Delete %d selected articles?" @@ -3590,7 +3534,7 @@ msgstr[0] "Удалить %d выбранных Ñтатей?" msgstr[1] "Удалить %d выбранных Ñтатей?" msgstr[2] "Удалить %d выбранных Ñтатей?" -#: js/viewfeed.js:1001 +#: js/viewfeed.js:1004 #, fuzzy msgid "Archive %d selected article in %s?" msgid_plural "Archive %d selected articles in %s?" @@ -3598,7 +3542,7 @@ msgstr[0] "Ðрхивировать %d выбранных Ñтатей в %s?" msgstr[1] "Ðрхивировать %d выбранных Ñтатей в %s?" msgstr[2] "Ðрхивировать %d выбранных Ñтатей в %s?" -#: js/viewfeed.js:1004 +#: js/viewfeed.js:1007 #, fuzzy msgid "Move %d archived article back?" msgid_plural "Move %d archived articles back?" @@ -3606,11 +3550,11 @@ msgstr[0] "ПеремеÑтить %d архивированных Ñтатей Ð msgstr[1] "ПеремеÑтить %d архивированных Ñтатей назад?" msgstr[2] "ПеремеÑтить %d архивированных Ñтатей назад?" -#: js/viewfeed.js:1006 +#: js/viewfeed.js:1009 msgid "Please note that unstarred articles might get purged on next feed update." msgstr "" -#: js/viewfeed.js:1051 +#: js/viewfeed.js:1054 #, fuzzy msgid "Mark %d selected article in %s as read?" msgid_plural "Mark %d selected articles in %s as read?" @@ -3618,23 +3562,23 @@ msgstr[0] "Отметить %d выбранные Ñтатьи в %s как пр msgstr[1] "Отметить %d выбранные Ñтатьи в %s как прочитанные?" msgstr[2] "Отметить %d выбранные Ñтатьи в %s как прочитанные?" -#: js/viewfeed.js:1075 +#: js/viewfeed.js:1078 msgid "Edit article Tags" msgstr "Редактировать теги" -#: js/viewfeed.js:1081 +#: js/viewfeed.js:1084 msgid "Saving article tags..." msgstr "Сохранить теги Ñтатьи..." -#: js/viewfeed.js:1278 +#: js/viewfeed.js:1287 msgid "No article is selected." msgstr "Ð¡Ñ‚Ð°Ñ‚ÑŒÑ Ð½Ðµ выбрана" -#: js/viewfeed.js:1313 +#: js/viewfeed.js:1322 msgid "No articles found to mark" msgstr "Статей Ð´Ð»Ñ Ð¾Ñ‚Ð¼ÐµÑ‚ÐºÐ¸ не найдено." -#: js/viewfeed.js:1315 +#: js/viewfeed.js:1324 #, fuzzy msgid "Mark %d article as read?" msgid_plural "Mark %d articles as read?" @@ -3642,47 +3586,47 @@ msgstr[0] "Отметить %d Ñтатью(ей) как прочитанные? msgstr[1] "Отметить %d Ñтатью(ей) как прочитанные?" msgstr[2] "Отметить %d Ñтатью(ей) как прочитанные?" -#: js/viewfeed.js:1827 +#: js/viewfeed.js:1836 msgid "Open original article" msgstr "Показать оригинальное Ñодержимое Ñтатьи" -#: js/viewfeed.js:1833 +#: js/viewfeed.js:1842 #, fuzzy msgid "Display article URL" msgstr "показать теги" -#: js/viewfeed.js:1852 +#: js/viewfeed.js:1861 #, fuzzy msgid "Toggle marked" msgstr "Изм. отмеченное" -#: js/viewfeed.js:1933 +#: js/viewfeed.js:1942 msgid "Assign label" msgstr "Применить метку" -#: js/viewfeed.js:1938 +#: js/viewfeed.js:1947 msgid "Remove label" msgstr "Удалить метку" -#: js/viewfeed.js:1962 +#: js/viewfeed.js:1971 msgid "Playing..." msgstr "Проигрываю..." -#: js/viewfeed.js:1963 +#: js/viewfeed.js:1972 msgid "Click to pause" msgstr "Пауза" -#: js/viewfeed.js:2020 +#: js/viewfeed.js:2029 #, fuzzy msgid "Please enter new score for selected articles:" msgstr "ПожалуйÑта, укажите заметку Ð´Ð»Ñ Ñтатьи:" -#: js/viewfeed.js:2062 +#: js/viewfeed.js:2071 #, fuzzy msgid "Please enter new score for this article:" msgstr "ПожалуйÑта, укажите заметку Ð´Ð»Ñ Ñтатьи:" -#: js/viewfeed.js:2095 +#: js/viewfeed.js:2104 #, fuzzy msgid "Article URL:" msgstr "Ð’Ñе Ñтатьи" @@ -3805,6 +3749,46 @@ msgstr "РаÑшарить Ñтатью по ÑÑылке" msgid "Live updating is considered experimental. Backup your tt-rss directory before continuing. Please type 'yes' to continue." msgstr "" +#~ msgid "Could not update database" +#~ msgstr "Ðе могу обновить базу данных" + +#~ msgid "Could not find necessary schema file, need version:" +#~ msgstr "Ðе могу найти необходимый файл Ñхемы, требуетÑÑ Ð²ÐµÑ€ÑиÑ:" + +#~ msgid ", found: " +#~ msgstr ", найдена: " + +#~ msgid "Tiny Tiny RSS database is up to date." +#~ msgstr "Tiny Tiny RSS база данных обновлена." + +#~ msgid "Please backup your database before proceeding." +#~ msgstr "ПожалуйÑта, Ñохраните вашу базу данных перед продолжением." + +#~ msgid "Your Tiny Tiny RSS database needs update to the latest version (<b>%d</b> to <b>%d</b>)." +#~ msgstr "Вашей базе данных Tiny Tiny RSS необходимо обновитьÑÑ Ð´Ð¾ поÑледней верÑии (<b>%d</b> до <b>%d</b>)." + +#~ msgid "Performing updates..." +#~ msgstr "Идет обновление..." + +#~ msgid "Updating to version %d..." +#~ msgstr "ОбновлÑетÑÑ Ð´Ð¾ верÑии %d..." + +#~ msgid "Checking version... " +#~ msgstr "ПроверÑетÑÑ Ð²ÐµÑ€ÑиÑ... " + +#~ msgid "OK!" +#~ msgstr "OK!" + +#~ msgid "ERROR!" +#~ msgstr "Ошибка!" + +#, fuzzy +#~ msgid "Finished. Performed <b>%d</b> update up to schema version <b>%d</b>." +#~ msgid_plural "Finished. Performed <b>%d</b> updates up to schema version <b>%d</b>." +#~ msgstr[0] "Обновление завершено. Выполнено <b>%d</b> обновление(ий) Ñхемы базы данных до верÑии <b>%d</b>." +#~ msgstr[1] "Обновление завершено. Выполнено <b>%d</b> обновление(ий) Ñхемы базы данных до верÑии <b>%d</b>." +#~ msgstr[2] "Обновление завершено. Выполнено <b>%d</b> обновление(ий) Ñхемы базы данных до верÑии <b>%d</b>." + #~ msgid "Mark feed as read" #~ msgstr "Отметить канал как прочитанный" @@ -3815,9 +3799,6 @@ msgstr "" #~ msgid "When this option is enabled, headlines in Special feeds and Labels are grouped by feeds" #~ msgstr "Когда Ñта Ð¾Ð¿Ñ†Ð¸Ñ Ð²ÐºÐ»ÑŽÑ‡ÐµÐ½Ð°, заголовки в ОÑобом канале и Метки группируютÑÑ Ð¿Ð¾ каналам" -#~ msgid "Title" -#~ msgstr "Заголовок" - #~ msgid "Title or Content" #~ msgstr "Заголовок или Ñодержимое" diff --git a/locale/sv_SE/LC_MESSAGES/messages.mo b/locale/sv_SE/LC_MESSAGES/messages.mo Binary files differindex 75874e48c..426d3eb20 100644 --- a/locale/sv_SE/LC_MESSAGES/messages.mo +++ b/locale/sv_SE/LC_MESSAGES/messages.mo diff --git a/locale/sv_SE/LC_MESSAGES/messages.po b/locale/sv_SE/LC_MESSAGES/messages.po index a7954c57d..8c5da2d39 100644 --- a/locale/sv_SE/LC_MESSAGES/messages.po +++ b/locale/sv_SE/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-04-04 09:06+0400\n" +"POT-Creation-Date: 2013-04-04 21:31+0400\n" "PO-Revision-Date: 2013-03-20 16:42+0100\n" "Last-Translator: wahlis\n" "Language-Team: \n" @@ -107,105 +107,6 @@ msgstr "Superanvändare" msgid "Administrator" msgstr "Administratör" -#: db-updater.php:19 -msgid "Your access level is insufficient to run this script." -msgstr "Du har inte behörighet att köra detta skript." - -#: db-updater.php:44 -msgid "Database Updater" -msgstr "Databasuppdatering" - -#: db-updater.php:87 -msgid "Could not update database" -msgstr "Kunde inte uppdatera databasen" - -#: db-updater.php:90 -msgid "Could not find necessary schema file, need version:" -msgstr "Kunde inte hitta rätt schemafil, behöver version:" - -#: db-updater.php:91 -msgid ", found: " -msgstr ", hittade: " - -#: db-updater.php:94 -msgid "Tiny Tiny RSS database is up to date." -msgstr "Tiny Tiny RSS databas är uppdaterad." - -#: 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:648 -#: classes/handler/public.php:736 -#: classes/handler/public.php:818 -msgid "Return to Tiny Tiny RSS" -msgstr "Ã…ter till Tiny Tiny RSS" - -#: db-updater.php:102 -msgid "Please backup your database before proceeding." -msgstr "Gör en backup av databasen innan du forsätter." - -#: 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 "Ihre Tiny Tiny RSS Datenbank benötigt eine Aktualisierung auf die neuste Version (<b>%d</b> nach <b>%d</b>)." - -#: db-updater.php:118 -msgid "Perform updates" -msgstr "Utför uppdatering" - -#: db-updater.php:123 -msgid "Performing updates..." -msgstr "Uppdatering pÃ¥gÃ¥r..." - -#: db-updater.php:129 -#, php-format -msgid "Updating to version %d..." -msgstr "Uppdaterar till version %d..." - -#: db-updater.php:144 -msgid "Checking version... " -msgstr "Kontrollerar version..." - -#: db-updater.php:150 -msgid "OK!" -msgstr "OK!" - -#: db-updater.php:152 -msgid "ERROR!" -msgstr "FEL!" - -#: db-updater.php:160 -#, fuzzy, php-format -msgid "Finished. Performed <b>%d</b> update up to schema version <b>%d</b>." -msgid_plural "Finished. Performed <b>%d</b> updates up to schema version <b>%d</b>." -msgstr[0] "" -"Klart. <b>%d</b> Implementerar nu schema\n" -"\t\t\tVersion <b>%d</b>." -msgstr[1] "" -"Klart. <b>%d</b> Implementerar nu schema\n" -"\t\t\tVersion <b>%d</b>." - -#: db-updater.php:170 -msgid "Your database schema is from a newer version of Tiny Tiny RSS." -msgstr "Ditt databasschema är för en nyare Tiny Tiny RSS Version." - -#: db-updater.php:172 -#, php-format -msgid "Found schema version: <b>%d</b>, required: <b>%d</b>." -msgstr "Fann schemaversion: <b>%d</b>, behöver version: <b>%d</b>." - -#: db-updater.php:174 -msgid "Schema upgrade impossible. Please update Tiny Tiny RSS files to the newer version and continue." -msgstr "Kan inte uppdatera schema. Uppdatera Tiny Tiny RSS pÃ¥ filsystemet till en ny version " - #: errors.php:9 msgid "This program requires XmlHttpRequest to function properly. Your browser doesn't seem to support it." msgstr "Denna sida behöver XmlHttpRequest för att kunna köras. Din webbläsare verkar inte stöda det." @@ -260,7 +161,7 @@ msgstr "SQL Escaping Test fehlgeschlagen, überprüfen Sie Ihre Datenbank und PH #: index.php:135 #: index.php:152 -#: index.php:276 +#: index.php:277 #: prefs.php:103 #: classes/backend.php:5 #: classes/pref/labels.php:296 @@ -268,7 +169,7 @@ msgstr "SQL Escaping Test fehlgeschlagen, überprüfen Sie Ihre Datenbank und PH #: classes/pref/feeds.php:1331 #: plugins/digest/digest_body.php:63 #: js/feedlist.js:128 -#: js/feedlist.js:436 +#: js/feedlist.js:438 #: js/functions.js:420 #: js/functions.js:758 #: js/functions.js:1194 @@ -289,8 +190,8 @@ msgstr "SQL Escaping Test fehlgeschlagen, überprüfen Sie Ihre Datenbank und PH #: js/prefs.js:1814 #: js/tt-rss.js:475 #: js/tt-rss.js:492 -#: js/viewfeed.js:772 -#: js/viewfeed.js:1200 +#: js/viewfeed.js:775 +#: js/viewfeed.js:1201 #: plugins/import_export/import_export.js:17 #: plugins/updater/updater.js:17 msgid "Loading, please wait..." @@ -313,13 +214,13 @@ msgid "All Articles" msgstr "Alla artiklar" #: index.php:174 -#: include/functions.php:1953 +#: include/functions.php:1955 #: classes/feeds.php:106 msgid "Starred" msgstr "Stjärnmärkta" #: index.php:175 -#: include/functions.php:1954 +#: include/functions.php:1956 #: classes/feeds.php:107 msgid "Published" msgstr "Publicerade" @@ -359,9 +260,13 @@ msgstr "" msgid "Oldest first" msgstr "" -#: index.php:191 -#: index.php:240 -#: include/functions.php:1943 +#: index.php:188 +msgid "Title" +msgstr "Titel" + +#: index.php:192 +#: index.php:241 +#: include/functions.php:1945 #: classes/feeds.php:111 #: classes/feeds.php:441 #: js/FeedTree.js:128 @@ -370,104 +275,104 @@ msgstr "" msgid "Mark as read" msgstr "Markera som lästa" -#: index.php:194 +#: index.php:195 msgid "Older than one day" msgstr "" -#: index.php:197 +#: index.php:198 msgid "Older than one week" msgstr "" -#: index.php:200 +#: index.php:201 msgid "Older than two weeks" msgstr "" -#: index.php:217 +#: index.php:218 msgid "Communication problem with server." msgstr "Kommunikationsproblem med servern." -#: index.php:225 +#: index.php:226 msgid "New version of Tiny Tiny RSS is available!" msgstr "Ny version av Tiny Tiny RSS finns att ladda ner!" -#: index.php:230 +#: index.php:231 msgid "Actions..." msgstr "Aktiviteter..." -#: index.php:232 +#: index.php:233 msgid "Preferences..." msgstr "Inställningar..." -#: index.php:233 +#: index.php:234 msgid "Search..." msgstr "Sök..." -#: index.php:234 +#: index.php:235 msgid "Feed actions:" msgstr "Kanalaktiviteter:" -#: index.php:235 +#: index.php:236 #: classes/handler/public.php:578 msgid "Subscribe to feed..." msgstr "Prenumerera pÃ¥ kanal..." -#: index.php:236 +#: index.php:237 msgid "Edit this feed..." msgstr "Redigera kanal..." -#: index.php:237 +#: index.php:238 msgid "Rescore feed" msgstr "Beräkna kanalens poäng pÃ¥ nytt" -#: index.php:238 +#: index.php:239 #: classes/pref/feeds.php:717 #: classes/pref/feeds.php:1283 #: js/PrefFeedTree.js:73 msgid "Unsubscribe" msgstr "Avbeställ kanalen" -#: index.php:239 +#: index.php:240 msgid "All feeds:" msgstr "Alla kanaler:" -#: index.php:241 +#: index.php:242 msgid "(Un)hide read feeds" msgstr "Dölj lästa kanaler" -#: index.php:242 +#: index.php:243 msgid "Other actions:" msgstr "Andra aktiviteter:" -#: index.php:244 +#: index.php:245 msgid "Switch to digest..." msgstr "Byt läge till sammanfattning..." -#: index.php:246 +#: index.php:247 msgid "Show tag cloud..." msgstr "Visa taggmoln..." -#: index.php:247 -#: include/functions.php:1929 +#: index.php:248 +#: include/functions.php:1931 msgid "Toggle widescreen mode" msgstr "Växla widescreenläge" -#: index.php:248 +#: index.php:249 msgid "Select by tags..." msgstr "Välj artiklar frÃ¥n tagg..." -#: index.php:249 +#: index.php:250 msgid "Create label..." msgstr "Skapa etikett..." -#: index.php:250 +#: index.php:251 msgid "Create filter..." msgstr "Skapa filter..." -#: index.php:251 +#: index.php:252 msgid "Keyboard shortcuts help" msgstr "Hjälp för kortkommandon..." -#: index.php:260 +#: index.php:261 #: plugins/digest/digest_body.php:77 #: plugins/mobile/mobile-functions.php:62 #: plugins/mobile/mobile-functions.php:237 @@ -476,8 +381,8 @@ msgstr "Utloggning" #: prefs.php:36 #: prefs.php:121 -#: include/functions.php:1956 -#: classes/pref/prefs.php:428 +#: include/functions.php:1958 +#: classes/pref/prefs.php:444 msgid "Preferences" msgstr "Inställningar" @@ -502,8 +407,8 @@ msgid "Filters" msgstr "Filter" #: prefs.php:130 -#: include/functions.php:1146 -#: include/functions.php:1782 +#: include/functions.php:1148 +#: include/functions.php:1784 #: classes/pref/labels.php:90 #: plugins/mobile/mobile-functions.php:198 msgid "Labels" @@ -522,6 +427,24 @@ msgstr "Skapa ett nytt konto" msgid "New user registrations are administratively disabled." msgstr "Nyregistrering av användare är inaktiverat." +#: 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:648 +#: classes/handler/public.php:736 +#: classes/handler/public.php:818 +#: classes/handler/public.php:893 +#: classes/handler/public.php:907 +#: classes/handler/public.php:914 +#: classes/handler/public.php:939 +msgid "Return to Tiny Tiny RSS" +msgstr "Ã…ter till Tiny Tiny RSS" + #: 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 "Ditt tillfälliga lösenords skickas till angiven e-postadress. Om du inte loggar in inom 24 timmar kommer kontot automatiskt att raderas" @@ -568,15 +491,15 @@ msgstr "Konto skapat." msgid "New user registrations are currently closed." msgstr "Nyregistrering av användare är tillfälligt avbruten." -#: update.php:55 +#: update.php:56 msgid "Tiny Tiny RSS data update script." msgstr "Skript för att uppdatera Tiny Tiny RSS." #: include/digest.php:109 -#: include/functions.php:1155 -#: include/functions.php:1683 -#: include/functions.php:1768 -#: include/functions.php:1790 +#: include/functions.php:1157 +#: include/functions.php:1685 +#: include/functions.php:1770 +#: include/functions.php:1792 #: classes/opml.php:416 #: classes/pref/feeds.php:222 msgid "Uncategorized" @@ -593,307 +516,307 @@ msgstr[1] "%d arkiverade artiklar" msgid "No feeds found." msgstr "Inga kanaler funna." -#: include/functions.php:1144 -#: include/functions.php:1780 +#: include/functions.php:1146 +#: include/functions.php:1782 #: plugins/mobile/mobile-functions.php:171 msgid "Special" msgstr "Specialkanaler" -#: include/functions.php:1632 -#: classes/feeds.php:1101 +#: include/functions.php:1634 +#: classes/feeds.php:1104 #: classes/pref/filters.php:427 msgid "All feeds" msgstr "Alla kanaler" -#: include/functions.php:1833 +#: include/functions.php:1835 msgid "Starred articles" msgstr "Stjärnmärkta artiklar" -#: include/functions.php:1835 +#: include/functions.php:1837 msgid "Published articles" msgstr "Publicerade artiklar" -#: include/functions.php:1837 +#: include/functions.php:1839 msgid "Fresh articles" msgstr "Nya artiklar" -#: include/functions.php:1839 -#: include/functions.php:1951 +#: include/functions.php:1841 +#: include/functions.php:1953 msgid "All articles" msgstr "Alla artiklar" -#: include/functions.php:1841 +#: include/functions.php:1843 msgid "Archived articles" msgstr "Arkiverade artiklar" -#: include/functions.php:1843 +#: include/functions.php:1845 msgid "Recently read" msgstr "Nyligen lästa" -#: include/functions.php:1906 +#: include/functions.php:1908 msgid "Navigation" msgstr "Navigation" -#: include/functions.php:1907 +#: include/functions.php:1909 msgid "Open next feed" msgstr "Öppna nästa kanal" -#: include/functions.php:1908 +#: include/functions.php:1910 msgid "Open previous feed" msgstr "Öppna föregÃ¥ende kanal" -#: include/functions.php:1909 +#: include/functions.php:1911 msgid "Open next article" msgstr "Öppna näst artikel" -#: include/functions.php:1910 +#: include/functions.php:1912 msgid "Open previous article" msgstr "Öppna föregÃ¥ende artikel" -#: include/functions.php:1911 +#: include/functions.php:1913 msgid "Open next article (don't scroll long articles)" msgstr "Öppna nästa artikel (skrolla inte lÃ¥nga artiklar)" -#: include/functions.php:1912 +#: include/functions.php:1914 msgid "Open previous article (don't scroll long articles)" msgstr "Öppna föregÃ¥ende artikel (skrolla inte lÃ¥nga artiklar)" -#: include/functions.php:1913 +#: include/functions.php:1915 msgid "Show search dialog" msgstr "Visa sökdialogen" -#: include/functions.php:1914 +#: include/functions.php:1916 msgid "Article" msgstr "Artikel" -#: include/functions.php:1915 +#: include/functions.php:1917 msgid "Toggle starred" msgstr "Växla stjärnmarkering" -#: include/functions.php:1916 -#: js/viewfeed.js:1863 +#: include/functions.php:1918 +#: js/viewfeed.js:1872 msgid "Toggle published" msgstr "Växla publicering" -#: include/functions.php:1917 -#: js/viewfeed.js:1841 +#: include/functions.php:1919 +#: js/viewfeed.js:1850 msgid "Toggle unread" msgstr "Växla olästa" -#: include/functions.php:1918 +#: include/functions.php:1920 msgid "Edit tags" msgstr "Redigera taggar" -#: include/functions.php:1919 +#: include/functions.php:1921 #, fuzzy msgid "Dismiss selected" msgstr "Avvisa markerade" -#: include/functions.php:1920 +#: include/functions.php:1922 #, fuzzy msgid "Dismiss read" msgstr "Avvisa lästa" -#: include/functions.php:1921 +#: include/functions.php:1923 msgid "Open in new window" msgstr "Öppna i nytt fönster" -#: include/functions.php:1922 -#: js/viewfeed.js:1882 +#: include/functions.php:1924 +#: js/viewfeed.js:1891 msgid "Mark below as read" msgstr "Märk nedanstÃ¥ende som lästa" -#: include/functions.php:1923 -#: js/viewfeed.js:1876 +#: include/functions.php:1925 +#: js/viewfeed.js:1885 msgid "Mark above as read" msgstr "Märk ovanstÃ¥ende som lästa" -#: include/functions.php:1924 +#: include/functions.php:1926 msgid "Scroll down" msgstr "Skrolla ned" -#: include/functions.php:1925 +#: include/functions.php:1927 msgid "Scroll up" msgstr "Skrolla upp" -#: include/functions.php:1926 +#: include/functions.php:1928 #, fuzzy msgid "Select article under cursor" msgstr "Välj markerad artikel" -#: include/functions.php:1927 +#: include/functions.php:1929 msgid "Email article" msgstr "Skicka artikel med e-post" -#: include/functions.php:1928 +#: include/functions.php:1930 #, fuzzy msgid "Close/collapse article" msgstr "Stäng artikel" -#: include/functions.php:1930 +#: include/functions.php:1932 #: plugins/embed_original/init.php:33 #, fuzzy msgid "Toggle embed original" msgstr "Växla visa orginal" -#: include/functions.php:1931 +#: include/functions.php:1933 msgid "Article selection" msgstr "Artikelval" -#: include/functions.php:1932 +#: include/functions.php:1934 msgid "Select all articles" msgstr "Välj alla" -#: include/functions.php:1933 +#: include/functions.php:1935 msgid "Select unread" msgstr "Välj olästa" -#: include/functions.php:1934 +#: include/functions.php:1936 msgid "Select starred" msgstr "Välj markerade" -#: include/functions.php:1935 +#: include/functions.php:1937 msgid "Select published" msgstr "Välj publicerade" -#: include/functions.php:1936 +#: include/functions.php:1938 msgid "Invert selection" msgstr "Invertera val" -#: include/functions.php:1937 +#: include/functions.php:1939 msgid "Deselect everything" msgstr "Avmarkera allt" -#: include/functions.php:1938 +#: include/functions.php:1940 #: classes/pref/feeds.php:521 #: classes/pref/feeds.php:754 msgid "Feed" msgstr "Kanal" -#: include/functions.php:1939 +#: include/functions.php:1941 msgid "Refresh current feed" msgstr "Uppdatera aktuell kanal" -#: include/functions.php:1940 +#: include/functions.php:1942 msgid "Un/hide read feeds" msgstr "Växla visning av lästa kanaler" -#: include/functions.php:1941 +#: include/functions.php:1943 #: classes/pref/feeds.php:1275 msgid "Subscribe to feed" msgstr "Prenumerera pÃ¥ kanal" -#: include/functions.php:1942 +#: include/functions.php:1944 #: js/FeedTree.js:135 #: js/PrefFeedTree.js:67 msgid "Edit feed" msgstr "Redigera kanal" -#: include/functions.php:1944 +#: include/functions.php:1946 #, fuzzy msgid "Reverse headlines" msgstr "Omvänd sortering pÃ¥ rubrik" -#: include/functions.php:1945 +#: include/functions.php:1947 msgid "Debug feed update" msgstr "Debugga kanaluppdatering" -#: include/functions.php:1946 +#: include/functions.php:1948 #: js/FeedTree.js:178 msgid "Mark all feeds as read" msgstr "Märk alla kanaler som lästa" -#: include/functions.php:1947 +#: include/functions.php:1949 msgid "Un/collapse current category" msgstr "Öppna/stäng aktuell kategori:" -#: include/functions.php:1948 +#: include/functions.php:1950 msgid "Toggle combined mode" msgstr "Växla komboläge" -#: include/functions.php:1949 +#: include/functions.php:1951 #, fuzzy msgid "Toggle auto expand in combined mode" msgstr "Växla komboläge" -#: include/functions.php:1950 +#: include/functions.php:1952 msgid "Go to" msgstr "GÃ¥ till" -#: include/functions.php:1952 +#: include/functions.php:1954 msgid "Fresh" msgstr "Nya" -#: include/functions.php:1955 +#: include/functions.php:1957 #: js/tt-rss.js:431 #: js/tt-rss.js:584 msgid "Tag cloud" msgstr "Taggmoln" -#: include/functions.php:1957 +#: include/functions.php:1959 msgid "Other" msgstr "Övriga" -#: include/functions.php:1958 +#: include/functions.php:1960 #: classes/pref/labels.php:281 msgid "Create label" msgstr "Skapa etikett" -#: include/functions.php:1959 +#: include/functions.php:1961 #: classes/pref/filters.php:654 msgid "Create filter" msgstr "Skapa filter" -#: include/functions.php:1960 +#: include/functions.php:1962 msgid "Un/collapse sidebar" msgstr "Växla sidomeny" -#: include/functions.php:1961 +#: include/functions.php:1963 msgid "Show help dialog" msgstr "Hjälpfönster" -#: include/functions.php:2446 +#: include/functions.php:2471 #, php-format msgid "Search results: %s" msgstr "Sökresultat: %s" -#: include/functions.php:2937 -#: js/viewfeed.js:1969 +#: include/functions.php:2962 +#: js/viewfeed.js:1978 msgid "Click to play" msgstr "Klicka för att starta" -#: include/functions.php:2938 -#: js/viewfeed.js:1968 +#: include/functions.php:2963 +#: js/viewfeed.js:1977 msgid "Play" msgstr "Start" -#: include/functions.php:3055 +#: include/functions.php:3080 msgid " - " msgstr " - " -#: include/functions.php:3077 -#: include/functions.php:3371 +#: include/functions.php:3102 +#: include/functions.php:3396 #: classes/article.php:281 msgid "no tags" msgstr "Inga taggar" -#: include/functions.php:3087 +#: include/functions.php:3112 #: classes/feeds.php:686 msgid "Edit tags for this article" msgstr "Redigera taggar för denna artikel" -#: include/functions.php:3116 +#: include/functions.php:3141 #: classes/feeds.php:642 msgid "Originally from:" msgstr "Ursprungligen frÃ¥n:" -#: include/functions.php:3129 +#: include/functions.php:3154 #: classes/feeds.php:655 #: classes/pref/feeds.php:540 msgid "Feed URL" msgstr "Kanal-URL" -#: include/functions.php:3160 +#: include/functions.php:3185 #: classes/dlg.php:37 #: classes/dlg.php:60 #: classes/dlg.php:93 @@ -905,7 +828,7 @@ msgstr "Kanal-URL" #: classes/backend.php:105 #: classes/pref/users.php:99 #: classes/pref/filters.php:147 -#: classes/pref/prefs.php:1059 +#: classes/pref/prefs.php:1105 #: classes/pref/feeds.php:1588 #: classes/pref/feeds.php:1660 #: plugins/import_export/init.php:406 @@ -916,15 +839,15 @@ msgstr "Kanal-URL" msgid "Close this window" msgstr "Stäng fönstret" -#: include/functions.php:3396 +#: include/functions.php:3421 msgid "(edit note)" msgstr "(Redigera notering)" -#: include/functions.php:3631 +#: include/functions.php:3656 msgid "unknown type" msgstr "Okänd typ" -#: include/functions.php:3687 +#: include/functions.php:3712 msgid "Attachments" msgstr "Bilagor" @@ -948,6 +871,7 @@ msgstr "Felaktigt lösenord" #: include/login_form.php:201 #: classes/handler/public.php:489 +#: classes/pref/prefs.php:552 msgid "Language:" msgstr "SprÃ¥k:" @@ -958,7 +882,7 @@ msgstr "Profil:" #: include/login_form.php:213 #: classes/handler/public.php:233 #: classes/rpc.php:64 -#: classes/pref/prefs.php:995 +#: classes/pref/prefs.php:1041 msgid "Default profile" msgstr "Standardprofil" @@ -976,7 +900,7 @@ msgstr "" msgid "Log in" msgstr "Logga in" -#: include/sessions.php:58 +#: include/sessions.php:62 msgid "Session failed to validate (incorrect IP)" msgstr "Kunde inte verifiera session (fel IP)" @@ -992,7 +916,7 @@ msgstr "Taggar för denna artikel (kommaseparerade):" #: classes/pref/users.php:176 #: classes/pref/labels.php:79 #: classes/pref/filters.php:405 -#: classes/pref/prefs.php:941 +#: classes/pref/prefs.php:987 #: classes/pref/feeds.php:733 #: classes/pref/feeds.php:881 #: plugins/nsfw/init.php:86 @@ -1004,16 +928,16 @@ msgstr "Spara" #: classes/article.php:206 #: classes/handler/public.php:460 #: classes/handler/public.php:502 -#: classes/feeds.php:1028 -#: classes/feeds.php:1080 -#: classes/feeds.php:1140 +#: classes/feeds.php:1031 +#: classes/feeds.php:1083 +#: classes/feeds.php:1143 #: 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:943 +#: classes/pref/prefs.php:989 #: classes/pref/feeds.php:734 #: classes/pref/feeds.php:884 #: classes/pref/feeds.php:1797 @@ -1139,6 +1063,18 @@ msgstr "Ã…ter" msgid "Sorry, login and email combination not found." msgstr "" +#: classes/handler/public.php:842 +msgid "Your access level is insufficient to run this script." +msgstr "Du har inte behörighet att köra detta skript." + +#: classes/handler/public.php:866 +msgid "Database Updater" +msgstr "Databasuppdatering" + +#: classes/handler/public.php:931 +msgid "Perform updates" +msgstr "Utför uppdatering" + #: 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 "Om du har importerat etiketter eller filter mÃ¥ste du ladda om inställningarna för att se uppdateringarna" @@ -1238,7 +1174,7 @@ msgstr "Markera:" #: classes/pref/filters.php:648 #: classes/pref/filters.php:737 #: classes/pref/filters.php:764 -#: classes/pref/prefs.php:955 +#: classes/pref/prefs.php:1001 #: classes/pref/feeds.php:1266 #: classes/pref/feeds.php:1536 #: classes/pref/feeds.php:1606 @@ -1258,7 +1194,7 @@ msgstr "Invertera" #: classes/pref/filters.php:650 #: classes/pref/filters.php:739 #: classes/pref/filters.php:766 -#: classes/pref/prefs.php:957 +#: classes/pref/prefs.php:1003 #: classes/pref/feeds.php:1268 #: classes/pref/feeds.php:1538 #: classes/pref/feeds.php:1608 @@ -1349,44 +1285,44 @@ msgid "No articles found to display." msgstr "Hittade inga artiklar att visa." #: classes/feeds.php:759 -#: classes/feeds.php:923 +#: classes/feeds.php:926 #, php-format msgid "Feeds last updated at %s" msgstr "Kanaler senast uppdaterade %s" #: classes/feeds.php:769 -#: classes/feeds.php:933 +#: classes/feeds.php:936 msgid "Some feeds have update errors (click for details)" msgstr "Vissa kanaler har uppdateringsfel (klicka för detaljer)" -#: classes/feeds.php:913 +#: classes/feeds.php:916 msgid "No feed selected." msgstr "Ingen kanal vald." -#: classes/feeds.php:966 -#: classes/feeds.php:974 +#: classes/feeds.php:969 +#: classes/feeds.php:977 msgid "Feed or site URL" msgstr "URL för kanal eller webbplats" -#: classes/feeds.php:980 +#: classes/feeds.php:983 #: classes/pref/feeds.php:560 #: classes/pref/feeds.php:782 #: classes/pref/feeds.php:1761 msgid "Place in category:" msgstr "Lägg i kategori:" -#: classes/feeds.php:988 +#: classes/feeds.php:991 msgid "Available feeds" msgstr "Tillgängliga kanaler" -#: classes/feeds.php:1000 +#: classes/feeds.php:1003 #: classes/pref/users.php:139 #: classes/pref/feeds.php:590 #: classes/pref/feeds.php:818 msgid "Authentication" msgstr "Autenticering" -#: classes/feeds.php:1004 +#: classes/feeds.php:1007 #: classes/pref/users.php:402 #: classes/pref/feeds.php:596 #: classes/pref/feeds.php:822 @@ -1394,30 +1330,30 @@ msgstr "Autenticering" msgid "Login" msgstr "Användarnamn" -#: classes/feeds.php:1007 -#: classes/pref/prefs.php:253 +#: classes/feeds.php:1010 +#: classes/pref/prefs.php:269 #: classes/pref/feeds.php:602 #: classes/pref/feeds.php:828 #: classes/pref/feeds.php:1778 msgid "Password" msgstr "Lösenord" -#: classes/feeds.php:1017 +#: classes/feeds.php:1020 msgid "This feed requires authentication." msgstr "Denna kanal kräver autenticering." -#: classes/feeds.php:1022 -#: classes/feeds.php:1078 +#: classes/feeds.php:1025 +#: classes/feeds.php:1081 #: classes/pref/feeds.php:1796 msgid "Subscribe" msgstr "Prenumerera" -#: classes/feeds.php:1025 +#: classes/feeds.php:1028 msgid "More feeds" msgstr "Fler kanaler" -#: classes/feeds.php:1048 -#: classes/feeds.php:1139 +#: classes/feeds.php:1051 +#: classes/feeds.php:1142 #: classes/pref/users.php:332 #: classes/pref/filters.php:641 #: classes/pref/feeds.php:1259 @@ -1425,19 +1361,19 @@ msgstr "Fler kanaler" msgid "Search" msgstr "Sök" -#: classes/feeds.php:1052 +#: classes/feeds.php:1055 msgid "Popular feeds" msgstr "Populära kanaler" -#: classes/feeds.php:1053 +#: classes/feeds.php:1056 msgid "Feed archive" msgstr "Kanalarkiv" -#: classes/feeds.php:1056 +#: classes/feeds.php:1059 msgid "limit:" msgstr "Gräns:" -#: classes/feeds.php:1079 +#: classes/feeds.php:1082 #: classes/pref/users.php:358 #: classes/pref/labels.php:284 #: classes/pref/filters.php:398 @@ -1447,15 +1383,15 @@ msgstr "Gräns:" msgid "Remove" msgstr "Ta bort" -#: classes/feeds.php:1090 +#: classes/feeds.php:1093 msgid "Look for" msgstr "Sök efter" -#: classes/feeds.php:1098 +#: classes/feeds.php:1101 msgid "Limit search to:" msgstr "Begränsa sökning till:" -#: classes/feeds.php:1114 +#: classes/feeds.php:1117 msgid "This feed" msgstr "Denna kanal" @@ -1615,7 +1551,7 @@ msgstr "[tt-rss] Info: Nytt lösenord" #: classes/pref/filters.php:645 #: classes/pref/filters.php:734 #: classes/pref/filters.php:761 -#: classes/pref/prefs.php:952 +#: classes/pref/prefs.php:998 #: classes/pref/feeds.php:1263 #: classes/pref/feeds.php:1533 #: classes/pref/feeds.php:1603 @@ -2035,212 +1971,217 @@ msgstr "Lösenorden stämmer inte överens." msgid "Function not supported by authentication module." msgstr "Funktionen stöds inte av autenticeringsmodulen." -#: classes/pref/prefs.php:120 +#: classes/pref/prefs.php:135 msgid "The configuration was saved." msgstr "Konfigurationen sparad." -#: classes/pref/prefs.php:134 +#: classes/pref/prefs.php:150 #, php-format msgid "Unknown option: %s" msgstr "Okänt alternativ: %s" -#: classes/pref/prefs.php:148 +#: classes/pref/prefs.php:164 msgid "Your personal data has been saved." msgstr "Dina personliga data sparas." -#: classes/pref/prefs.php:188 +#: classes/pref/prefs.php:204 msgid "Personal data / Authentication" msgstr "Personlig info / Authenticering" -#: classes/pref/prefs.php:208 +#: classes/pref/prefs.php:224 msgid "Personal data" msgstr "Personlig info" -#: classes/pref/prefs.php:218 +#: classes/pref/prefs.php:234 msgid "Full name" msgstr "Fullständigt namn" -#: classes/pref/prefs.php:222 +#: classes/pref/prefs.php:238 msgid "E-mail" msgstr "E-post" -#: classes/pref/prefs.php:228 +#: classes/pref/prefs.php:244 msgid "Access level" msgstr "BehörighetsnivÃ¥" -#: classes/pref/prefs.php:238 +#: classes/pref/prefs.php:254 msgid "Save data" msgstr "Spara" -#: classes/pref/prefs.php:260 +#: classes/pref/prefs.php:276 msgid "Your password is at default value, please change it." msgstr "Byt lösenord." -#: classes/pref/prefs.php:287 +#: classes/pref/prefs.php:303 msgid "Changing your current password will disable OTP." msgstr "" -#: classes/pref/prefs.php:292 +#: classes/pref/prefs.php:308 msgid "Old password" msgstr "Gammalt lösenord" -#: classes/pref/prefs.php:295 +#: classes/pref/prefs.php:311 msgid "New password" msgstr "Nytt lösenord" -#: classes/pref/prefs.php:300 +#: classes/pref/prefs.php:316 msgid "Confirm password" msgstr "Bekräfta lösenord" -#: classes/pref/prefs.php:310 +#: classes/pref/prefs.php:326 msgid "Change password" msgstr "Byt lösenord" -#: classes/pref/prefs.php:316 +#: classes/pref/prefs.php:332 msgid "One time passwords / Authenticator" msgstr "(OTP) / Authentifikator" -#: classes/pref/prefs.php:320 +#: classes/pref/prefs.php:336 msgid "One time passwords are currently enabled. Enter your current password below to disable." msgstr "" -#: classes/pref/prefs.php:345 -#: classes/pref/prefs.php:396 +#: classes/pref/prefs.php:361 +#: classes/pref/prefs.php:412 msgid "Enter your password" msgstr "Ange lösenord" -#: classes/pref/prefs.php:356 +#: classes/pref/prefs.php:372 msgid "Disable OTP" msgstr "Stäng av OTP" -#: classes/pref/prefs.php:362 +#: classes/pref/prefs.php:378 msgid "You will need a compatible Authenticator to use this. Changing your password would automatically disable OTP." msgstr "Du behöver en kompatible Authenticator för att använda detta. Byter du lösenord inaktiverar automatiskt OTP" -#: classes/pref/prefs.php:364 +#: classes/pref/prefs.php:380 msgid "Scan the following code by the Authenticator application:" msgstr "Läs in följande QR-kod med Authenticatorn:" -#: classes/pref/prefs.php:405 +#: classes/pref/prefs.php:421 msgid "I have scanned the code and would like to enable OTP" msgstr "Jag har läst av bilden och vill aktivera OTP" -#: classes/pref/prefs.php:413 +#: classes/pref/prefs.php:429 msgid "Enable OTP" msgstr "Aktivera OTP" -#: classes/pref/prefs.php:451 +#: classes/pref/prefs.php:475 msgid "Some preferences are only available in default profile." msgstr "" -#: classes/pref/prefs.php:545 +#: classes/pref/prefs.php:585 msgid "Customize" msgstr "Anpassa" -#: classes/pref/prefs.php:605 +#: classes/pref/prefs.php:645 msgid "Register" msgstr "Registrera" -#: classes/pref/prefs.php:609 +#: classes/pref/prefs.php:649 msgid "Clear" msgstr "Rensa" -#: classes/pref/prefs.php:615 +#: classes/pref/prefs.php:655 #, php-format msgid "Current server time: %s (UTC)" msgstr "Aktuell servertid: %s (UTC)" -#: classes/pref/prefs.php:648 +#: classes/pref/prefs.php:688 msgid "Save configuration" msgstr "Spara konfiguration" -#: classes/pref/prefs.php:651 +#: classes/pref/prefs.php:692 +#, fuzzy +msgid "Save and exit preferences" +msgstr "Lämna inställningarna" + +#: classes/pref/prefs.php:697 msgid "Manage profiles" msgstr "Hantera profiler" -#: classes/pref/prefs.php:654 +#: classes/pref/prefs.php:700 msgid "Reset to defaults" msgstr "Ã…terställ till standard" -#: classes/pref/prefs.php:678 -#: classes/pref/prefs.php:680 +#: classes/pref/prefs.php:724 +#: classes/pref/prefs.php:726 msgid "Plugins" msgstr "Plugins" -#: classes/pref/prefs.php:682 +#: classes/pref/prefs.php:728 msgid "You will need to reload Tiny Tiny RSS for plugin changes to take effect." msgstr "" -#: classes/pref/prefs.php:684 +#: classes/pref/prefs.php:730 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:710 +#: classes/pref/prefs.php:756 msgid "System plugins" msgstr "Systemplugins" -#: classes/pref/prefs.php:714 -#: classes/pref/prefs.php:768 +#: classes/pref/prefs.php:760 +#: classes/pref/prefs.php:814 msgid "Plugin" msgstr "Plugin" -#: classes/pref/prefs.php:715 -#: classes/pref/prefs.php:769 +#: classes/pref/prefs.php:761 +#: classes/pref/prefs.php:815 msgid "Description" msgstr "Beskrivning" -#: classes/pref/prefs.php:716 -#: classes/pref/prefs.php:770 +#: classes/pref/prefs.php:762 +#: classes/pref/prefs.php:816 msgid "Version" msgstr "Version" -#: classes/pref/prefs.php:717 -#: classes/pref/prefs.php:771 +#: classes/pref/prefs.php:763 +#: classes/pref/prefs.php:817 msgid "Author" msgstr "Av" -#: classes/pref/prefs.php:746 -#: classes/pref/prefs.php:803 +#: classes/pref/prefs.php:792 +#: classes/pref/prefs.php:849 msgid "more info" msgstr "" -#: classes/pref/prefs.php:755 -#: classes/pref/prefs.php:812 +#: classes/pref/prefs.php:801 +#: classes/pref/prefs.php:858 msgid "Clear data" msgstr "Rensa data" -#: classes/pref/prefs.php:764 +#: classes/pref/prefs.php:810 msgid "User plugins" msgstr "Användarplugins" -#: classes/pref/prefs.php:827 +#: classes/pref/prefs.php:873 msgid "Enable selected plugins" msgstr "Aktivera valda plugins" -#: classes/pref/prefs.php:882 -#: classes/pref/prefs.php:900 +#: classes/pref/prefs.php:928 +#: classes/pref/prefs.php:946 msgid "Incorrect password" msgstr "Felaktigt lösenord" -#: classes/pref/prefs.php:926 +#: classes/pref/prefs.php:972 #, 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:966 +#: classes/pref/prefs.php:1012 msgid "Create profile" msgstr "Skapa profil" -#: classes/pref/prefs.php:989 -#: classes/pref/prefs.php:1019 +#: classes/pref/prefs.php:1035 +#: classes/pref/prefs.php:1065 msgid "(active)" msgstr "(aktiva)" -#: classes/pref/prefs.php:1053 +#: classes/pref/prefs.php:1099 msgid "Remove selected profiles" msgstr "Radera markerade profiler" -#: classes/pref/prefs.php:1055 +#: classes/pref/prefs.php:1101 msgid "Activate profile" msgstr "Aktivera profil" @@ -2745,15 +2686,15 @@ msgstr "" msgid "The document has incorrect format." msgstr "" -#: plugins/googlereaderimport/init.php:326 +#: plugins/googlereaderimport/init.php:328 msgid "Import starred or shared items from Google Reader" msgstr "" -#: plugins/googlereaderimport/init.php:330 +#: plugins/googlereaderimport/init.php:332 msgid "Paste your starred.json or shared.json into the form below." msgstr "" -#: plugins/googlereaderimport/init.php:344 +#: plugins/googlereaderimport/init.php:346 msgid "Import my Starred items" msgstr "" @@ -2847,23 +2788,23 @@ msgstr "Redo att uppdatera." msgid "Start update" msgstr "Starta uppdateringen" -#: js/feedlist.js:392 -#: js/feedlist.js:420 +#: js/feedlist.js:394 +#: js/feedlist.js:422 #: plugins/digest/digest.js:26 msgid "Mark all articles in %s as read?" msgstr "Märk alla artiklar i %s som lästa??" -#: js/feedlist.js:411 +#: js/feedlist.js:413 #, fuzzy msgid "Mark all articles in %s older than 1 day as read?" msgstr "Märk alla artiklar i %s som lästa??" -#: js/feedlist.js:414 +#: js/feedlist.js:416 #, fuzzy msgid "Mark all articles in %s older than 1 week as read?" msgstr "Märk alla artiklar i %s som lästa??" -#: js/feedlist.js:417 +#: js/feedlist.js:419 #, fuzzy msgid "Mark all articles in %s older than 2 weeks as read?" msgstr "Märk alla artiklar i %s som lästa??" @@ -3408,150 +3349,150 @@ msgstr "Poängsätt pÃ¥ nytt" msgid "New version available!" msgstr "Ny version tillgänglig!" -#: js/viewfeed.js:104 +#: js/viewfeed.js:106 msgid "Cancel search" msgstr "Avbryt sökning" -#: js/viewfeed.js:438 +#: js/viewfeed.js:441 #: plugins/digest/digest.js:258 #: plugins/digest/digest.js:714 msgid "Unstar article" msgstr "Ta bort stjärnmarkering frÃ¥n artikeln" -#: js/viewfeed.js:443 +#: js/viewfeed.js:446 #: plugins/digest/digest.js:260 #: plugins/digest/digest.js:718 msgid "Star article" msgstr "Stjärnmärk artikeln" -#: js/viewfeed.js:476 +#: js/viewfeed.js:479 #: plugins/digest/digest.js:263 #: plugins/digest/digest.js:749 msgid "Unpublish article" msgstr "Avpublicera artikeln" -#: js/viewfeed.js:481 +#: js/viewfeed.js:484 #: plugins/digest/digest.js:265 #: plugins/digest/digest.js:754 msgid "Publish article" msgstr "Publicera artikel" -#: js/viewfeed.js:677 -#: js/viewfeed.js:705 -#: js/viewfeed.js:732 -#: js/viewfeed.js:795 -#: js/viewfeed.js:829 -#: js/viewfeed.js:949 -#: js/viewfeed.js:992 -#: js/viewfeed.js:1045 -#: js/viewfeed.js:2051 +#: js/viewfeed.js:680 +#: js/viewfeed.js:708 +#: js/viewfeed.js:735 +#: js/viewfeed.js:798 +#: js/viewfeed.js:832 +#: js/viewfeed.js:952 +#: js/viewfeed.js:995 +#: js/viewfeed.js:1048 +#: js/viewfeed.js:2060 #: plugins/mailto/init.js:7 #: plugins/mail/mail.js:7 msgid "No articles are selected." msgstr "Inga artiklar valda." -#: js/viewfeed.js:957 +#: js/viewfeed.js:960 #, fuzzy msgid "Delete %d selected article in %s?" msgid_plural "Delete %d selected articles in %s?" msgstr[0] "Radera %d markerade artiklar i %s?" msgstr[1] "Radera %d markerade artiklar i %s?" -#: js/viewfeed.js:959 +#: js/viewfeed.js:962 #, fuzzy msgid "Delete %d selected article?" msgid_plural "Delete %d selected articles?" msgstr[0] "Radera %d markerade artiklar?" msgstr[1] "Radera %d markerade artiklar?" -#: js/viewfeed.js:1001 +#: js/viewfeed.js:1004 #, fuzzy msgid "Archive %d selected article in %s?" msgid_plural "Archive %d selected articles in %s?" msgstr[0] "Arkivera %d markerade artiklar i %s?" msgstr[1] "Arkivera %d markerade artiklar i %s?" -#: js/viewfeed.js:1004 +#: js/viewfeed.js:1007 #, fuzzy msgid "Move %d archived article back?" msgid_plural "Move %d archived articles back?" msgstr[0] "Flyta tillbaka %d arkiverade artiklar?" msgstr[1] "Flyta tillbaka %d arkiverade artiklar?" -#: js/viewfeed.js:1006 +#: js/viewfeed.js:1009 msgid "Please note that unstarred articles might get purged on next feed update." msgstr "" -#: js/viewfeed.js:1051 +#: js/viewfeed.js:1054 #, fuzzy msgid "Mark %d selected article in %s as read?" msgid_plural "Mark %d selected articles in %s as read?" msgstr[0] "Flagga %d markerade artiklar i %s som lästa?" msgstr[1] "Flagga %d markerade artiklar i %s som lästa?" -#: js/viewfeed.js:1075 +#: js/viewfeed.js:1078 msgid "Edit article Tags" msgstr "Redigera artikeltaggar" -#: js/viewfeed.js:1081 +#: js/viewfeed.js:1084 #, fuzzy msgid "Saving article tags..." msgstr "Redigera artikeltaggar" -#: js/viewfeed.js:1278 +#: js/viewfeed.js:1287 msgid "No article is selected." msgstr "Ingen artikel vald." -#: js/viewfeed.js:1313 +#: js/viewfeed.js:1322 msgid "No articles found to mark" msgstr "Hittade inga artiklar att flagga" -#: js/viewfeed.js:1315 +#: js/viewfeed.js:1324 #, fuzzy msgid "Mark %d article as read?" msgid_plural "Mark %d articles as read?" msgstr[0] "Flagga %d artiklar som lästa?" msgstr[1] "Flagga %d artiklar som lästa?" -#: js/viewfeed.js:1827 +#: js/viewfeed.js:1836 msgid "Open original article" msgstr "Öppna orginalartikeln" -#: js/viewfeed.js:1833 +#: js/viewfeed.js:1842 #, fuzzy msgid "Display article URL" msgstr "Visa artikelns URL" -#: js/viewfeed.js:1852 +#: js/viewfeed.js:1861 #, fuzzy msgid "Toggle marked" msgstr "Växla stjärnmarkering" -#: js/viewfeed.js:1933 +#: js/viewfeed.js:1942 msgid "Assign label" msgstr "Ange etikett" -#: js/viewfeed.js:1938 +#: js/viewfeed.js:1947 msgid "Remove label" msgstr "Radera etikett" -#: js/viewfeed.js:1962 +#: js/viewfeed.js:1971 msgid "Playing..." msgstr "Spelar..." -#: js/viewfeed.js:1963 +#: js/viewfeed.js:1972 msgid "Click to pause" msgstr "Klicka för att pausa" -#: js/viewfeed.js:2020 +#: js/viewfeed.js:2029 msgid "Please enter new score for selected articles:" msgstr "Ange ny poäng för markerade artiklar:" -#: js/viewfeed.js:2062 +#: js/viewfeed.js:2071 msgid "Please enter new score for this article:" msgstr "Ange ny poäng för denna artikel:" -#: js/viewfeed.js:2095 +#: js/viewfeed.js:2104 #, fuzzy msgid "Article URL:" msgstr "Artikel URL" @@ -3662,6 +3603,58 @@ msgstr "Dela artikel via URL" msgid "Live updating is considered experimental. Backup your tt-rss directory before continuing. Please type 'yes' to continue." msgstr "Liveuppdatering är en experimentell funktion. Gör backup pÃ¥ din tt-rss-katalog innan du fortsätter. Skriv 'ja' för att fortsätta." +#~ msgid "Could not update database" +#~ msgstr "Kunde inte uppdatera databasen" + +#~ msgid "Could not find necessary schema file, need version:" +#~ msgstr "Kunde inte hitta rätt schemafil, behöver version:" + +#~ msgid ", found: " +#~ msgstr ", hittade: " + +#~ msgid "Tiny Tiny RSS database is up to date." +#~ msgstr "Tiny Tiny RSS databas är uppdaterad." + +#~ msgid "Please backup your database before proceeding." +#~ msgstr "Gör en backup av databasen innan du forsätter." + +#~ msgid "Your Tiny Tiny RSS database needs update to the latest version (<b>%d</b> to <b>%d</b>)." +#~ msgstr "Ihre Tiny Tiny RSS Datenbank benötigt eine Aktualisierung auf die neuste Version (<b>%d</b> nach <b>%d</b>)." + +#~ msgid "Performing updates..." +#~ msgstr "Uppdatering pÃ¥gÃ¥r..." + +#~ msgid "Updating to version %d..." +#~ msgstr "Uppdaterar till version %d..." + +#~ msgid "Checking version... " +#~ msgstr "Kontrollerar version..." + +#~ msgid "OK!" +#~ msgstr "OK!" + +#~ msgid "ERROR!" +#~ msgstr "FEL!" + +#, fuzzy +#~ 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] "" +#~ "Klart. <b>%d</b> Implementerar nu schema\n" +#~ "\t\t\tVersion <b>%d</b>." +#~ msgstr[1] "" +#~ "Klart. <b>%d</b> Implementerar nu schema\n" +#~ "\t\t\tVersion <b>%d</b>." + +#~ msgid "Your database schema is from a newer version of Tiny Tiny RSS." +#~ msgstr "Ditt databasschema är för en nyare Tiny Tiny RSS Version." + +#~ msgid "Found schema version: <b>%d</b>, required: <b>%d</b>." +#~ msgstr "Fann schemaversion: <b>%d</b>, behöver version: <b>%d</b>." + +#~ msgid "Schema upgrade impossible. Please update Tiny Tiny RSS files to the newer version and continue." +#~ msgstr "Kan inte uppdatera schema. Uppdatera Tiny Tiny RSS pÃ¥ filsystemet till en ny version " + #~ msgid "Mark feed as read" #~ msgstr "Flagga kanal som läst" @@ -3675,9 +3668,6 @@ msgstr "Liveuppdatering är en experimentell funktion. Gör backup pÃ¥ din tt-rs #~ msgid "When this option is enabled, headlines in Special feeds and Labels are grouped by feeds" #~ msgstr "Gruppera rubriker efter kanaler i Etiketter och Specialkanaler" -#~ msgid "Title" -#~ msgstr "Titel" - #~ msgid "Title or Content" #~ msgstr "Titel eller innehÃ¥ll" diff --git a/locale/zh_CN/LC_MESSAGES/messages.mo b/locale/zh_CN/LC_MESSAGES/messages.mo Binary files differindex ba65d776e..930a9477e 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 2f8ab7e79..6b173aca1 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-04-04 09:06+0400\n" +"POT-Creation-Date: 2013-04-04 21:31+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" @@ -103,102 +103,6 @@ msgstr "Power User" msgid "Administrator" msgstr "管ç†å‘˜" -#: db-updater.php:19 -msgid "Your access level is insufficient to run this script." -msgstr "访问级别ä¸è¶³ï¼Œæ— 法è¿è¡Œè„šæœ¬ã€‚" - -#: db-updater.php:44 -msgid "Database Updater" -msgstr "æ•°æ®åº“更新管ç†å™¨" - -#: db-updater.php:87 -msgid "Could not update database" -msgstr "æ— æ³•æ›´æ–°æ•°æ®åº“" - -#: db-updater.php:90 -msgid "Could not find necessary schema file, need version:" -msgstr "æ— æ³•æ‰¾åˆ°å¿…è¦çš„表结构文件,需è¦ç‰ˆæœ¬ï¼š" - -#: db-updater.php:91 -msgid ", found: " -msgstr ",找到:" - -#: db-updater.php:94 -msgid "Tiny Tiny RSS database is up to date." -msgstr "Tiny Tiny RSS æ•°æ®åº“是最新版。" - -#: db-updater.php:96 -#: db-updater.php:165 -#: db-updater.php:178 -#: register.php:196 -#: register.php:241 -#: register.php:254 -#: register.php:269 -#: register.php:288 -#: register.php:336 -#: register.php:346 -#: register.php:358 -#: classes/handler/public.php:648 -#: classes/handler/public.php:736 -#: classes/handler/public.php:818 -msgid "Return to Tiny Tiny RSS" -msgstr "返回 Tiny Tiny RSS" - -#: db-updater.php:102 -msgid "Please backup your database before proceeding." -msgstr "执行下一æ¥å‰è¯·å…ˆå¤‡ä»½æ•°æ®åº“。" - -#: db-updater.php:104 -#, php-format -msgid "Your Tiny Tiny RSS database needs update to the latest version (<b>%d</b> to <b>%d</b>)." -msgstr "您的 Tiny Tiny RSS æ•°æ®åº“需è¦å‡çº§åˆ°æœ€æ–°ç‰ˆï¼ˆ<b>%d</b> 到 <b>%d</b>)。" - -#: db-updater.php:118 -msgid "Perform updates" -msgstr "执行更新" - -#: db-updater.php:123 -msgid "Performing updates..." -msgstr "æ£åœ¨æ›´æ–°â€¦â€¦" - -#: db-updater.php:129 -#, php-format -msgid "Updating to version %d..." -msgstr "æ£åœ¨æ›´æ–°åˆ° %d 版本……" - -#: db-updater.php:144 -msgid "Checking version... " -msgstr "æ£åœ¨æ£€æŸ¥ç‰ˆæœ¬â€¦â€¦" - -#: db-updater.php:150 -msgid "OK!" -msgstr "OKï¼" - -#: db-updater.php:152 -msgid "ERROR!" -msgstr "错误ï¼" - -#: db-updater.php:160 -#, fuzzy, php-format -msgid "Finished. Performed <b>%d</b> update up to schema version <b>%d</b>." -msgid_plural "Finished. Performed <b>%d</b> updates up to schema version <b>%d</b>." -msgstr[0] "" -"完æˆã€‚完æˆäº† <b>%d</b> 个更新,\n" -"\t\t\t表结构版本å‡çº§è‡³ <b>%d</b>。" - -#: db-updater.php:170 -msgid "Your database schema is from a newer version of Tiny Tiny RSS." -msgstr "您的数æ®åº“表结构æ¥è‡ªä¸€ä¸ªè¾ƒæ–°ç‰ˆæœ¬çš„ Tiny Tiny RSS。" - -#: db-updater.php:172 -#, php-format -msgid "Found schema version: <b>%d</b>, required: <b>%d</b>." -msgstr "å‘现新版本的表结构:<b>%d</b>,需è¦çš„版本:<b>%d</b>。" - -#: db-updater.php:174 -msgid "Schema upgrade impossible. Please update Tiny Tiny RSS files to the newer version and continue." -msgstr "æ— æ³•å‡çº§è¡¨ç»“构。请将 Tiny Tiny RSS 更新到最新版本之åŽå†æ¥å°è¯•。" - #: errors.php:9 msgid "This program requires XmlHttpRequest to function properly. Your browser doesn't seem to support it." msgstr "本程åºéœ€è¦ XmlHttpRequest 的支æŒã€‚您的æµè§ˆå™¨ä¼¼ä¹Žä¸æ”¯æŒã€‚" @@ -253,7 +157,7 @@ msgstr "SQL 脱出测试失败,请检查您的数æ®åº“å’Œ PHP 设置。" #: index.php:135 #: index.php:152 -#: index.php:276 +#: index.php:277 #: prefs.php:103 #: classes/backend.php:5 #: classes/pref/labels.php:296 @@ -261,7 +165,7 @@ msgstr "SQL 脱出测试失败,请检查您的数æ®åº“å’Œ PHP 设置。" #: classes/pref/feeds.php:1331 #: plugins/digest/digest_body.php:63 #: js/feedlist.js:128 -#: js/feedlist.js:436 +#: js/feedlist.js:438 #: js/functions.js:420 #: js/functions.js:758 #: js/functions.js:1194 @@ -282,8 +186,8 @@ msgstr "SQL 脱出测试失败,请检查您的数æ®åº“å’Œ PHP 设置。" #: js/prefs.js:1814 #: js/tt-rss.js:475 #: js/tt-rss.js:492 -#: js/viewfeed.js:772 -#: js/viewfeed.js:1200 +#: js/viewfeed.js:775 +#: js/viewfeed.js:1201 #: plugins/import_export/import_export.js:17 #: plugins/updater/updater.js:17 msgid "Loading, please wait..." @@ -306,13 +210,13 @@ msgid "All Articles" msgstr "å…¨éƒ¨æ–‡ç« " #: index.php:174 -#: include/functions.php:1953 +#: include/functions.php:1955 #: classes/feeds.php:106 msgid "Starred" msgstr "åŠ æ˜Ÿæ ‡çš„" #: index.php:175 -#: include/functions.php:1954 +#: include/functions.php:1956 #: classes/feeds.php:107 msgid "Published" msgstr "å·²å‘布" @@ -352,9 +256,13 @@ msgstr "" msgid "Oldest first" msgstr "" -#: index.php:191 -#: index.php:240 -#: include/functions.php:1943 +#: index.php:188 +msgid "Title" +msgstr "æ ‡é¢˜" + +#: index.php:192 +#: index.php:241 +#: include/functions.php:1945 #: classes/feeds.php:111 #: classes/feeds.php:441 #: js/FeedTree.js:128 @@ -363,106 +271,106 @@ msgstr "" msgid "Mark as read" msgstr "æ ‡è®°ä¸ºå·²è¯»" -#: index.php:194 +#: index.php:195 msgid "Older than one day" msgstr "" -#: index.php:197 +#: index.php:198 msgid "Older than one week" msgstr "" -#: index.php:200 +#: index.php:201 msgid "Older than two weeks" msgstr "" -#: index.php:217 +#: index.php:218 msgid "Communication problem with server." msgstr "" -#: index.php:225 +#: index.php:226 msgid "New version of Tiny Tiny RSS is available!" msgstr "Tiny Tiny RSS 有新版本啦ï¼" -#: index.php:230 +#: index.php:231 msgid "Actions..." msgstr "动作" -#: index.php:232 +#: index.php:233 #, fuzzy msgid "Preferences..." msgstr "å好设置" -#: index.php:233 +#: index.php:234 msgid "Search..." msgstr "æœç´¢" -#: index.php:234 +#: index.php:235 msgid "Feed actions:" msgstr "ä¿¡æ¯æºæ“作:" -#: index.php:235 +#: index.php:236 #: classes/handler/public.php:578 msgid "Subscribe to feed..." msgstr "è®¢é˜…ä¿¡æ¯æº" -#: index.php:236 +#: index.php:237 msgid "Edit this feed..." msgstr "ç¼–è¾‘ä¿¡æ¯æº" -#: index.php:237 +#: index.php:238 msgid "Rescore feed" msgstr "ä¸ºä¿¡æ¯æºé‡æ–°è¯„分" -#: index.php:238 +#: index.php:239 #: classes/pref/feeds.php:717 #: classes/pref/feeds.php:1283 #: js/PrefFeedTree.js:73 msgid "Unsubscribe" msgstr "å–æ¶ˆè®¢é˜…" -#: index.php:239 +#: index.php:240 msgid "All feeds:" msgstr "å…¨éƒ¨ä¿¡æ¯æºï¼š" -#: index.php:241 +#: index.php:242 msgid "(Un)hide read feeds" msgstr "éšè—(显示)已读信æ¯" -#: index.php:242 +#: index.php:243 msgid "Other actions:" msgstr "å…¶ä»–æ“作:" -#: index.php:244 +#: index.php:245 msgid "Switch to digest..." msgstr "切æ¢è‡³æ‘˜è¦æ¨¡å¼" -#: index.php:246 +#: index.php:247 msgid "Show tag cloud..." msgstr "æ˜¾ç¤ºæ ‡ç¾äº‘" -#: index.php:247 -#: include/functions.php:1929 +#: index.php:248 +#: include/functions.php:1931 #, fuzzy msgid "Toggle widescreen mode" msgstr "é”å®šåŠ æ˜Ÿæ ‡çš„é¡¹" -#: index.php:248 +#: index.php:249 msgid "Select by tags..." msgstr "é€šè¿‡è‡ªå®šä¹‰æ ‡ç¾é€‰æ‹©" -#: index.php:249 +#: index.php:250 msgid "Create label..." msgstr "åˆ›å»ºé¢„å®šä¹‰æ ‡ç¾" -#: index.php:250 +#: index.php:251 msgid "Create filter..." msgstr "创建过滤器" -#: index.php:251 +#: index.php:252 msgid "Keyboard shortcuts help" msgstr "å¿«æ·é”®å¸®åŠ©" -#: index.php:260 +#: index.php:261 #: plugins/digest/digest_body.php:77 #: plugins/mobile/mobile-functions.php:62 #: plugins/mobile/mobile-functions.php:237 @@ -471,8 +379,8 @@ msgstr "注销" #: prefs.php:36 #: prefs.php:121 -#: include/functions.php:1956 -#: classes/pref/prefs.php:428 +#: include/functions.php:1958 +#: classes/pref/prefs.php:444 msgid "Preferences" msgstr "å好设置" @@ -497,8 +405,8 @@ msgid "Filters" msgstr "过滤器" #: prefs.php:130 -#: include/functions.php:1146 -#: include/functions.php:1782 +#: include/functions.php:1148 +#: include/functions.php:1784 #: classes/pref/labels.php:90 #: plugins/mobile/mobile-functions.php:198 msgid "Labels" @@ -517,6 +425,24 @@ msgstr "创建新的å¸å·" msgid "New user registrations are administratively disabled." msgstr "新用户注册功能被管ç†å‘˜ç¦ç”¨ã€‚" +#: 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:648 +#: classes/handler/public.php:736 +#: classes/handler/public.php:818 +#: classes/handler/public.php:893 +#: classes/handler/public.php:907 +#: classes/handler/public.php:914 +#: classes/handler/public.php:939 +msgid "Return to Tiny Tiny RSS" +msgstr "返回 Tiny Tiny RSS" + #: 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 "您的临时密ç 将被å‘é€è‡³æ‚¨çš„邮箱。24å°æ—¶ä¹‹å†…没有登录的å¸å·ä¼šè¢«è‡ªåŠ¨æ¸…ç†ã€‚" @@ -563,16 +489,16 @@ msgstr "å¸å·åˆ›å»ºæˆåŠŸã€‚" msgid "New user registrations are currently closed." msgstr "ç”¨æˆ·æ³¨å†ŒåŠŸèƒ½ç›®å‰æ²¡æœ‰å¯ç”¨ã€‚" -#: update.php:55 +#: update.php:56 #, fuzzy msgid "Tiny Tiny RSS data update script." msgstr "Tiny Tiny RSS æ•°æ®åº“是最新版。" #: include/digest.php:109 -#: include/functions.php:1155 -#: include/functions.php:1683 -#: include/functions.php:1768 -#: include/functions.php:1790 +#: include/functions.php:1157 +#: include/functions.php:1685 +#: include/functions.php:1770 +#: include/functions.php:1792 #: classes/opml.php:416 #: classes/pref/feeds.php:222 msgid "Uncategorized" @@ -588,328 +514,328 @@ msgstr[0] "%d ä¸ªå˜æ¡£çš„æ–‡ç« " msgid "No feeds found." msgstr "æœªæ‰¾åˆ°ä¿¡æ¯æºã€‚" -#: include/functions.php:1144 -#: include/functions.php:1780 +#: include/functions.php:1146 +#: include/functions.php:1782 #: plugins/mobile/mobile-functions.php:171 msgid "Special" msgstr "特殊区域" -#: include/functions.php:1632 -#: classes/feeds.php:1101 +#: include/functions.php:1634 +#: classes/feeds.php:1104 #: classes/pref/filters.php:427 msgid "All feeds" msgstr "å…¨éƒ¨ä¿¡æ¯æº" -#: include/functions.php:1833 +#: include/functions.php:1835 msgid "Starred articles" msgstr "åŠ æ˜Ÿæ ‡æ–‡ç« " -#: include/functions.php:1835 +#: include/functions.php:1837 msgid "Published articles" msgstr "å·²å‘å¸ƒæ–‡ç« " -#: include/functions.php:1837 +#: include/functions.php:1839 msgid "Fresh articles" msgstr "æœ€æ–°æ›´æ–°çš„æ–‡ç« " -#: include/functions.php:1839 -#: include/functions.php:1951 +#: include/functions.php:1841 +#: include/functions.php:1953 msgid "All articles" msgstr "å…¨éƒ¨æ–‡ç« " -#: include/functions.php:1841 +#: include/functions.php:1843 msgid "Archived articles" msgstr "å˜æ¡£çš„æ–‡ç« " -#: include/functions.php:1843 +#: include/functions.php:1845 msgid "Recently read" msgstr "" -#: include/functions.php:1906 +#: include/functions.php:1908 msgid "Navigation" msgstr "导航" -#: include/functions.php:1907 +#: include/functions.php:1909 #, fuzzy msgid "Open next feed" msgstr "è‡ªåŠ¨æ˜¾ç¤ºä¸‹ä¸€ä¸ªä¿¡æ¯æº" -#: include/functions.php:1908 +#: include/functions.php:1910 msgid "Open previous feed" msgstr "" -#: include/functions.php:1909 +#: include/functions.php:1911 #, fuzzy msgid "Open next article" msgstr "打开原文" -#: include/functions.php:1910 +#: include/functions.php:1912 #, fuzzy msgid "Open previous article" msgstr "打开原文" -#: include/functions.php:1911 +#: include/functions.php:1913 msgid "Open next article (don't scroll long articles)" msgstr "" -#: include/functions.php:1912 +#: include/functions.php:1914 msgid "Open previous article (don't scroll long articles)" msgstr "" -#: include/functions.php:1913 +#: include/functions.php:1915 msgid "Show search dialog" msgstr "显示æœç´¢å¯¹è¯æ¡†" -#: include/functions.php:1914 +#: include/functions.php:1916 #, fuzzy msgid "Article" msgstr "å…¨éƒ¨æ–‡ç« " -#: include/functions.php:1915 +#: include/functions.php:1917 msgid "Toggle starred" msgstr "é”å®šåŠ æ˜Ÿæ ‡çš„é¡¹" -#: include/functions.php:1916 -#: js/viewfeed.js:1863 +#: include/functions.php:1918 +#: js/viewfeed.js:1872 msgid "Toggle published" msgstr "é”定å‘布的项" -#: include/functions.php:1917 -#: js/viewfeed.js:1841 +#: include/functions.php:1919 +#: js/viewfeed.js:1850 msgid "Toggle unread" msgstr "é”定未读项" -#: include/functions.php:1918 +#: include/functions.php:1920 msgid "Edit tags" msgstr "ç¼–è¾‘è‡ªå®šä¹‰æ ‡ç¾" -#: include/functions.php:1919 +#: include/functions.php:1921 #, fuzzy msgid "Dismiss selected" msgstr "ä¸å†æ˜¾ç¤ºæ‰€é€‰çš„æ–‡ç« " -#: include/functions.php:1920 +#: include/functions.php:1922 #, fuzzy msgid "Dismiss read" msgstr "ä¸å†æ˜¾ç¤ºå·²è¯»æ–‡ç« " -#: include/functions.php:1921 +#: include/functions.php:1923 #, fuzzy msgid "Open in new window" msgstr "åœ¨æ–°çª—å£æ‰“å¼€æ–‡ç« " -#: include/functions.php:1922 -#: js/viewfeed.js:1882 +#: include/functions.php:1924 +#: js/viewfeed.js:1891 msgid "Mark below as read" msgstr "" -#: include/functions.php:1923 -#: js/viewfeed.js:1876 +#: include/functions.php:1925 +#: js/viewfeed.js:1885 msgid "Mark above as read" msgstr "" -#: include/functions.php:1924 +#: include/functions.php:1926 #, fuzzy msgid "Scroll down" msgstr "全部完æˆã€‚" -#: include/functions.php:1925 +#: include/functions.php:1927 msgid "Scroll up" msgstr "" -#: include/functions.php:1926 +#: include/functions.php:1928 #, fuzzy msgid "Select article under cursor" msgstr "é€‰æ‹©é¼ æ ‡æŒ‡å‘çš„æ–‡ç« " -#: include/functions.php:1927 +#: include/functions.php:1929 msgid "Email article" msgstr "通过邮件å‘逿–‡ç« " -#: include/functions.php:1928 +#: include/functions.php:1930 #, fuzzy msgid "Close/collapse article" msgstr "é€‰æ‹©æ‰€æœ‰æ–‡ç« " -#: include/functions.php:1930 +#: include/functions.php:1932 #: plugins/embed_original/init.php:33 #, fuzzy msgid "Toggle embed original" msgstr "é”定å‘布的项" -#: include/functions.php:1931 +#: include/functions.php:1933 #, fuzzy msgid "Article selection" msgstr "åé€‰æ–‡ç« " -#: include/functions.php:1932 +#: include/functions.php:1934 msgid "Select all articles" msgstr "é€‰æ‹©æ‰€æœ‰æ–‡ç« " -#: include/functions.php:1933 +#: include/functions.php:1935 #, fuzzy msgid "Select unread" msgstr "é€‰æ‹©æœªè¯»æ–‡ç« " -#: include/functions.php:1934 +#: include/functions.php:1936 #, fuzzy msgid "Select starred" msgstr "åŠ æ˜Ÿæ ‡" -#: include/functions.php:1935 +#: include/functions.php:1937 #, fuzzy msgid "Select published" msgstr "é€‰æ‹©æœªè¯»æ–‡ç« " -#: include/functions.php:1936 +#: include/functions.php:1938 #, fuzzy msgid "Invert selection" msgstr "åé€‰æ–‡ç« " -#: include/functions.php:1937 +#: include/functions.php:1939 #, fuzzy msgid "Deselect everything" msgstr "å–æ¶ˆé€‰æ‹©æ‰€æœ‰æ–‡ç« " -#: include/functions.php:1938 +#: include/functions.php:1940 #: classes/pref/feeds.php:521 #: classes/pref/feeds.php:754 msgid "Feed" msgstr "ä¿¡æ¯æº" -#: include/functions.php:1939 +#: include/functions.php:1941 #, fuzzy msgid "Refresh current feed" msgstr "åˆ·æ–°æ´»åŠ¨çš„ä¿¡æ¯æº" -#: include/functions.php:1940 +#: include/functions.php:1942 #, fuzzy msgid "Un/hide read feeds" msgstr "éšè—(显示)已读信æ¯" -#: include/functions.php:1941 +#: include/functions.php:1943 #: classes/pref/feeds.php:1275 msgid "Subscribe to feed" msgstr "è®¢é˜…ä¿¡æ¯æº" -#: include/functions.php:1942 +#: include/functions.php:1944 #: js/FeedTree.js:135 #: js/PrefFeedTree.js:67 msgid "Edit feed" msgstr "ç¼–è¾‘ä¿¡æ¯æº" -#: include/functions.php:1944 +#: include/functions.php:1946 #, fuzzy msgid "Reverse headlines" msgstr "å呿ޒåº" -#: include/functions.php:1945 +#: include/functions.php:1947 #, fuzzy msgid "Debug feed update" msgstr "ç¦ç”¨æ›´æ–°" -#: include/functions.php:1946 +#: include/functions.php:1948 #: js/FeedTree.js:178 msgid "Mark all feeds as read" msgstr "æ ‡è®°æ‰€æœ‰ä¿¡æ¯æºä¸ºå·²è¯»" -#: include/functions.php:1947 +#: include/functions.php:1949 #, fuzzy msgid "Un/collapse current category" msgstr "åŠ å…¥åˆ°ç±»åˆ«ï¼š" -#: include/functions.php:1948 +#: include/functions.php:1950 #, fuzzy msgid "Toggle combined mode" msgstr "é”定å‘布的项" -#: include/functions.php:1949 +#: include/functions.php:1951 #, fuzzy msgid "Toggle auto expand in combined mode" msgstr "é”定å‘布的项" -#: include/functions.php:1950 +#: include/functions.php:1952 #, fuzzy msgid "Go to" msgstr "跳转至……" -#: include/functions.php:1952 +#: include/functions.php:1954 msgid "Fresh" msgstr "" -#: include/functions.php:1955 +#: include/functions.php:1957 #: js/tt-rss.js:431 #: js/tt-rss.js:584 msgid "Tag cloud" msgstr "æ ‡ç¾äº‘" -#: include/functions.php:1957 +#: include/functions.php:1959 #, fuzzy msgid "Other" msgstr "å…¶ä»–ä¿¡æ¯æº" -#: include/functions.php:1958 +#: include/functions.php:1960 #: classes/pref/labels.php:281 msgid "Create label" msgstr "åˆ›å»ºé¢„å®šä¹‰æ ‡ç¾" -#: include/functions.php:1959 +#: include/functions.php:1961 #: classes/pref/filters.php:654 msgid "Create filter" msgstr "创建过滤器" -#: include/functions.php:1960 +#: include/functions.php:1962 #, fuzzy msgid "Un/collapse sidebar" msgstr "折å ä¾§è¾¹æ " -#: include/functions.php:1961 +#: include/functions.php:1963 #, fuzzy msgid "Show help dialog" msgstr "显示æœç´¢å¯¹è¯æ¡†" -#: include/functions.php:2446 +#: include/functions.php:2471 #, php-format msgid "Search results: %s" msgstr "" -#: include/functions.php:2937 -#: js/viewfeed.js:1969 +#: include/functions.php:2962 +#: js/viewfeed.js:1978 msgid "Click to play" msgstr "ç‚¹å‡»æ’æ”¾" -#: include/functions.php:2938 -#: js/viewfeed.js:1968 +#: include/functions.php:2963 +#: js/viewfeed.js:1977 msgid "Play" msgstr "æ’æ”¾" -#: include/functions.php:3055 +#: include/functions.php:3080 msgid " - " msgstr " - " -#: include/functions.php:3077 -#: include/functions.php:3371 +#: include/functions.php:3102 +#: include/functions.php:3396 #: classes/article.php:281 msgid "no tags" msgstr "æ— æ ‡ç¾" -#: include/functions.php:3087 +#: include/functions.php:3112 #: classes/feeds.php:686 msgid "Edit tags for this article" msgstr "ä¸ºæœ¬æ–‡ç¼–è¾‘è‡ªå®šä¹‰æ ‡ç¾" -#: include/functions.php:3116 +#: include/functions.php:3141 #: classes/feeds.php:642 msgid "Originally from:" msgstr "æ¥æºï¼š" -#: include/functions.php:3129 +#: include/functions.php:3154 #: classes/feeds.php:655 #: classes/pref/feeds.php:540 msgid "Feed URL" msgstr "ä¿¡æ¯æº URL" -#: include/functions.php:3160 +#: include/functions.php:3185 #: classes/dlg.php:37 #: classes/dlg.php:60 #: classes/dlg.php:93 @@ -921,7 +847,7 @@ msgstr "ä¿¡æ¯æº URL" #: classes/backend.php:105 #: classes/pref/users.php:99 #: classes/pref/filters.php:147 -#: classes/pref/prefs.php:1059 +#: classes/pref/prefs.php:1105 #: classes/pref/feeds.php:1588 #: classes/pref/feeds.php:1660 #: plugins/import_export/init.php:406 @@ -932,15 +858,15 @@ msgstr "ä¿¡æ¯æº URL" msgid "Close this window" msgstr "关闿œ¬çª—å£" -#: include/functions.php:3396 +#: include/functions.php:3421 msgid "(edit note)" msgstr "(编辑注记)" -#: include/functions.php:3631 +#: include/functions.php:3656 msgid "unknown type" msgstr "未知类型" -#: include/functions.php:3687 +#: include/functions.php:3712 #, fuzzy msgid "Attachments" msgstr "附件:" @@ -965,6 +891,7 @@ msgstr "ç”¨æˆ·åæˆ–密ç 错误" #: include/login_form.php:201 #: classes/handler/public.php:489 +#: classes/pref/prefs.php:552 msgid "Language:" msgstr "è¯è¨€ï¼š" @@ -975,7 +902,7 @@ msgstr "å好:" #: include/login_form.php:213 #: classes/handler/public.php:233 #: classes/rpc.php:64 -#: classes/pref/prefs.php:995 +#: classes/pref/prefs.php:1041 msgid "Default profile" msgstr "默认å好设置" @@ -993,7 +920,7 @@ msgstr "" msgid "Log in" msgstr "登录" -#: include/sessions.php:58 +#: include/sessions.php:62 msgid "Session failed to validate (incorrect IP)" msgstr "æ— æ³•éªŒè¯ä¼šè¯ï¼ˆIP 错误)" @@ -1009,7 +936,7 @@ msgstr "æœ¬æ–‡çš„æ ‡ç¾ï¼Œè¯·ç”¨é€—å·åˆ†å¼€ï¼š" #: classes/pref/users.php:176 #: classes/pref/labels.php:79 #: classes/pref/filters.php:405 -#: classes/pref/prefs.php:941 +#: classes/pref/prefs.php:987 #: classes/pref/feeds.php:733 #: classes/pref/feeds.php:881 #: plugins/nsfw/init.php:86 @@ -1021,16 +948,16 @@ msgstr "ä¿å˜" #: classes/article.php:206 #: classes/handler/public.php:460 #: classes/handler/public.php:502 -#: classes/feeds.php:1028 -#: classes/feeds.php:1080 -#: classes/feeds.php:1140 +#: classes/feeds.php:1031 +#: classes/feeds.php:1083 +#: classes/feeds.php:1143 #: 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:943 +#: classes/pref/prefs.php:989 #: classes/pref/feeds.php:734 #: classes/pref/feeds.php:884 #: classes/pref/feeds.php:1797 @@ -1162,6 +1089,18 @@ msgstr "移回原ä½" msgid "Sorry, login and email combination not found." msgstr "" +#: classes/handler/public.php:842 +msgid "Your access level is insufficient to run this script." +msgstr "访问级别ä¸è¶³ï¼Œæ— 法è¿è¡Œè„šæœ¬ã€‚" + +#: classes/handler/public.php:866 +msgid "Database Updater" +msgstr "æ•°æ®åº“更新管ç†å™¨" + +#: classes/handler/public.php:931 +msgid "Perform updates" +msgstr "执行更新" + #: 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 "" @@ -1262,7 +1201,7 @@ msgstr "选择:" #: classes/pref/filters.php:648 #: classes/pref/filters.php:737 #: classes/pref/filters.php:764 -#: classes/pref/prefs.php:955 +#: classes/pref/prefs.php:1001 #: classes/pref/feeds.php:1266 #: classes/pref/feeds.php:1536 #: classes/pref/feeds.php:1606 @@ -1282,7 +1221,7 @@ msgstr "å选" #: classes/pref/filters.php:650 #: classes/pref/filters.php:739 #: classes/pref/filters.php:766 -#: classes/pref/prefs.php:957 +#: classes/pref/prefs.php:1003 #: classes/pref/feeds.php:1268 #: classes/pref/feeds.php:1538 #: classes/pref/feeds.php:1608 @@ -1376,45 +1315,45 @@ msgid "No articles found to display." msgstr "æš‚æ—¶æ²¡æœ‰æ–‡ç« ã€‚" #: classes/feeds.php:759 -#: classes/feeds.php:923 +#: classes/feeds.php:926 #, php-format msgid "Feeds last updated at %s" msgstr "ä¸Šæ¬¡ä¿¡æ¯æºæ›´æ–°æ—¶é—´ï¼š%s" #: classes/feeds.php:769 -#: classes/feeds.php:933 +#: classes/feeds.php:936 msgid "Some feeds have update errors (click for details)" msgstr "éƒ¨åˆ†ä¿¡æ¯æºæ›´æ–°é”™è¯¯ï¼ˆç‚¹å‡»äº†è§£è¯¦æƒ…)" -#: classes/feeds.php:913 +#: classes/feeds.php:916 msgid "No feed selected." msgstr "没有选ä¸çš„ä¿¡æ¯æºã€‚" -#: classes/feeds.php:966 -#: classes/feeds.php:974 +#: classes/feeds.php:969 +#: classes/feeds.php:977 #, fuzzy msgid "Feed or site URL" msgstr "ä¿¡æ¯æº URL" -#: classes/feeds.php:980 +#: classes/feeds.php:983 #: classes/pref/feeds.php:560 #: classes/pref/feeds.php:782 #: classes/pref/feeds.php:1761 msgid "Place in category:" msgstr "åŠ å…¥åˆ°ç±»åˆ«ï¼š" -#: classes/feeds.php:988 +#: classes/feeds.php:991 msgid "Available feeds" msgstr "å¯ç”¨çš„ä¿¡æ¯æº" -#: classes/feeds.php:1000 +#: classes/feeds.php:1003 #: classes/pref/users.php:139 #: classes/pref/feeds.php:590 #: classes/pref/feeds.php:818 msgid "Authentication" msgstr "登录密ç " -#: classes/feeds.php:1004 +#: classes/feeds.php:1007 #: classes/pref/users.php:402 #: classes/pref/feeds.php:596 #: classes/pref/feeds.php:822 @@ -1422,30 +1361,30 @@ msgstr "登录密ç " msgid "Login" msgstr "登陆" -#: classes/feeds.php:1007 -#: classes/pref/prefs.php:253 +#: classes/feeds.php:1010 +#: classes/pref/prefs.php:269 #: classes/pref/feeds.php:602 #: classes/pref/feeds.php:828 #: classes/pref/feeds.php:1778 msgid "Password" msgstr "密ç " -#: classes/feeds.php:1017 +#: classes/feeds.php:1020 msgid "This feed requires authentication." msgstr "è¿™ä¸ªä¿¡æ¯æºéœ€è¦è®¤è¯" -#: classes/feeds.php:1022 -#: classes/feeds.php:1078 +#: classes/feeds.php:1025 +#: classes/feeds.php:1081 #: classes/pref/feeds.php:1796 msgid "Subscribe" msgstr "订阅" -#: classes/feeds.php:1025 +#: classes/feeds.php:1028 msgid "More feeds" msgstr "æ›´å¤šä¿¡æ¯æº" -#: classes/feeds.php:1048 -#: classes/feeds.php:1139 +#: classes/feeds.php:1051 +#: classes/feeds.php:1142 #: classes/pref/users.php:332 #: classes/pref/filters.php:641 #: classes/pref/feeds.php:1259 @@ -1453,19 +1392,19 @@ msgstr "æ›´å¤šä¿¡æ¯æº" msgid "Search" msgstr "æœç´¢" -#: classes/feeds.php:1052 +#: classes/feeds.php:1055 msgid "Popular feeds" msgstr "æœ€å—æ¬¢è¿Žçš„ä¿¡æ¯æº" -#: classes/feeds.php:1053 +#: classes/feeds.php:1056 msgid "Feed archive" msgstr "ä¿¡æ¯æºå˜æ¡£" -#: classes/feeds.php:1056 +#: classes/feeds.php:1059 msgid "limit:" msgstr "é™åˆ¶ï¼š" -#: classes/feeds.php:1079 +#: classes/feeds.php:1082 #: classes/pref/users.php:358 #: classes/pref/labels.php:284 #: classes/pref/filters.php:398 @@ -1475,15 +1414,15 @@ msgstr "é™åˆ¶ï¼š" msgid "Remove" msgstr "移除" -#: classes/feeds.php:1090 +#: classes/feeds.php:1093 msgid "Look for" msgstr "查找" -#: classes/feeds.php:1098 +#: classes/feeds.php:1101 msgid "Limit search to:" msgstr "é™åˆ¶æœç´¢æ¡ä»¶ï¼š" -#: classes/feeds.php:1114 +#: classes/feeds.php:1117 msgid "This feed" msgstr "æœ¬ä¿¡æ¯æº" @@ -1644,7 +1583,7 @@ msgstr "[tt-rss] å¯†ç æ›´æ¢æé†’" #: classes/pref/filters.php:645 #: classes/pref/filters.php:734 #: classes/pref/filters.php:761 -#: classes/pref/prefs.php:952 +#: classes/pref/prefs.php:998 #: classes/pref/feeds.php:1263 #: classes/pref/feeds.php:1533 #: classes/pref/feeds.php:1603 @@ -2071,219 +2010,224 @@ msgstr "两次输入的密ç ä¸ä¸€è‡´ã€‚" msgid "Function not supported by authentication module." msgstr "" -#: classes/pref/prefs.php:120 +#: classes/pref/prefs.php:135 msgid "The configuration was saved." msgstr "设置已ä¿å˜ã€‚" -#: classes/pref/prefs.php:134 +#: classes/pref/prefs.php:150 #, php-format msgid "Unknown option: %s" msgstr "未知选项: %s" -#: classes/pref/prefs.php:148 +#: classes/pref/prefs.php:164 msgid "Your personal data has been saved." msgstr "您的个人数æ®å·²ä¿å˜ã€‚" -#: classes/pref/prefs.php:188 +#: classes/pref/prefs.php:204 #, fuzzy msgid "Personal data / Authentication" msgstr "登录密ç " -#: classes/pref/prefs.php:208 +#: classes/pref/prefs.php:224 msgid "Personal data" msgstr "" -#: classes/pref/prefs.php:218 +#: classes/pref/prefs.php:234 msgid "Full name" msgstr "å§“å" -#: classes/pref/prefs.php:222 +#: classes/pref/prefs.php:238 msgid "E-mail" msgstr "电å邮件" -#: classes/pref/prefs.php:228 +#: classes/pref/prefs.php:244 msgid "Access level" msgstr "访问级别" -#: classes/pref/prefs.php:238 +#: classes/pref/prefs.php:254 msgid "Save data" msgstr "ä¿å˜ä¿¡æ¯" -#: classes/pref/prefs.php:260 +#: classes/pref/prefs.php:276 msgid "Your password is at default value, please change it." msgstr "您还在使用系统默认的密ç ,请修改。" -#: classes/pref/prefs.php:287 +#: classes/pref/prefs.php:303 msgid "Changing your current password will disable OTP." msgstr "" -#: classes/pref/prefs.php:292 +#: classes/pref/prefs.php:308 msgid "Old password" msgstr "原密ç " -#: classes/pref/prefs.php:295 +#: classes/pref/prefs.php:311 msgid "New password" msgstr "新密ç " -#: classes/pref/prefs.php:300 +#: classes/pref/prefs.php:316 msgid "Confirm password" msgstr "确认密ç " -#: classes/pref/prefs.php:310 +#: classes/pref/prefs.php:326 msgid "Change password" msgstr "更改密ç " -#: classes/pref/prefs.php:316 +#: classes/pref/prefs.php:332 msgid "One time passwords / Authenticator" msgstr "" -#: classes/pref/prefs.php:320 +#: classes/pref/prefs.php:336 msgid "One time passwords are currently enabled. Enter your current password below to disable." msgstr "" -#: classes/pref/prefs.php:345 -#: classes/pref/prefs.php:396 +#: classes/pref/prefs.php:361 +#: classes/pref/prefs.php:412 #, fuzzy msgid "Enter your password" msgstr "ç”¨æˆ·åæˆ–密ç 错误" -#: classes/pref/prefs.php:356 +#: classes/pref/prefs.php:372 #, fuzzy msgid "Disable OTP" msgstr "ç¦ç”¨æ›´æ–°" -#: classes/pref/prefs.php:362 +#: classes/pref/prefs.php:378 msgid "You will need a compatible Authenticator to use this. Changing your password would automatically disable OTP." msgstr "" -#: classes/pref/prefs.php:364 +#: classes/pref/prefs.php:380 msgid "Scan the following code by the Authenticator application:" msgstr "" -#: classes/pref/prefs.php:405 +#: classes/pref/prefs.php:421 msgid "I have scanned the code and would like to enable OTP" msgstr "" -#: classes/pref/prefs.php:413 +#: classes/pref/prefs.php:429 #, fuzzy msgid "Enable OTP" msgstr "å·²å¯ç”¨" -#: classes/pref/prefs.php:451 +#: classes/pref/prefs.php:475 msgid "Some preferences are only available in default profile." msgstr "" -#: classes/pref/prefs.php:545 +#: classes/pref/prefs.php:585 msgid "Customize" msgstr "自定义" -#: classes/pref/prefs.php:605 +#: classes/pref/prefs.php:645 msgid "Register" msgstr "注册" -#: classes/pref/prefs.php:609 +#: classes/pref/prefs.php:649 msgid "Clear" msgstr "清空" -#: classes/pref/prefs.php:615 +#: classes/pref/prefs.php:655 #, php-format msgid "Current server time: %s (UTC)" msgstr "" -#: classes/pref/prefs.php:648 +#: classes/pref/prefs.php:688 msgid "Save configuration" msgstr "ä¿å˜è®¾ç½®" -#: classes/pref/prefs.php:651 +#: classes/pref/prefs.php:692 +#, fuzzy +msgid "Save and exit preferences" +msgstr "退出å好设置" + +#: classes/pref/prefs.php:697 msgid "Manage profiles" msgstr "管ç†å好文件" -#: classes/pref/prefs.php:654 +#: classes/pref/prefs.php:700 msgid "Reset to defaults" msgstr "æ¢å¤åˆ°é»˜è®¤" -#: classes/pref/prefs.php:678 -#: classes/pref/prefs.php:680 +#: classes/pref/prefs.php:724 +#: classes/pref/prefs.php:726 msgid "Plugins" msgstr "" -#: classes/pref/prefs.php:682 +#: classes/pref/prefs.php:728 msgid "You will need to reload Tiny Tiny RSS for plugin changes to take effect." msgstr "" -#: classes/pref/prefs.php:684 +#: classes/pref/prefs.php:730 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:710 +#: classes/pref/prefs.php:756 msgid "System plugins" msgstr "" -#: classes/pref/prefs.php:714 -#: classes/pref/prefs.php:768 +#: classes/pref/prefs.php:760 +#: classes/pref/prefs.php:814 msgid "Plugin" msgstr "" -#: classes/pref/prefs.php:715 -#: classes/pref/prefs.php:769 +#: classes/pref/prefs.php:761 +#: classes/pref/prefs.php:815 msgid "Description" msgstr "" -#: classes/pref/prefs.php:716 -#: classes/pref/prefs.php:770 +#: classes/pref/prefs.php:762 +#: classes/pref/prefs.php:816 msgid "Version" msgstr "" -#: classes/pref/prefs.php:717 -#: classes/pref/prefs.php:771 +#: classes/pref/prefs.php:763 +#: classes/pref/prefs.php:817 msgid "Author" msgstr "" -#: classes/pref/prefs.php:746 -#: classes/pref/prefs.php:803 +#: classes/pref/prefs.php:792 +#: classes/pref/prefs.php:849 msgid "more info" msgstr "" -#: classes/pref/prefs.php:755 -#: classes/pref/prefs.php:812 +#: classes/pref/prefs.php:801 +#: classes/pref/prefs.php:858 #, fuzzy msgid "Clear data" msgstr "æ¸…ç©ºä¿¡æ¯æºæ•°æ®" -#: classes/pref/prefs.php:764 +#: classes/pref/prefs.php:810 msgid "User plugins" msgstr "" -#: classes/pref/prefs.php:827 +#: classes/pref/prefs.php:873 #, fuzzy msgid "Enable selected plugins" msgstr "å¯ç”¨ä¿¡æ¯æºåˆ†ç±»" -#: classes/pref/prefs.php:882 -#: classes/pref/prefs.php:900 +#: classes/pref/prefs.php:928 +#: classes/pref/prefs.php:946 #, fuzzy msgid "Incorrect password" msgstr "ç”¨æˆ·åæˆ–密ç 错误" -#: classes/pref/prefs.php:926 +#: classes/pref/prefs.php:972 #, 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:966 +#: classes/pref/prefs.php:1012 msgid "Create profile" msgstr "创建å好文件" -#: classes/pref/prefs.php:989 -#: classes/pref/prefs.php:1019 +#: classes/pref/prefs.php:1035 +#: classes/pref/prefs.php:1065 msgid "(active)" msgstr "(当å‰ä½¿ç”¨çš„)" -#: classes/pref/prefs.php:1053 +#: classes/pref/prefs.php:1099 msgid "Remove selected profiles" msgstr "移除选ä¸çš„å好文件" -#: classes/pref/prefs.php:1055 +#: classes/pref/prefs.php:1101 msgid "Activate profile" msgstr "å¯ç”¨å好文件" @@ -2800,15 +2744,15 @@ msgstr "" msgid "The document has incorrect format." msgstr "" -#: plugins/googlereaderimport/init.php:326 +#: plugins/googlereaderimport/init.php:328 msgid "Import starred or shared items from Google Reader" msgstr "" -#: plugins/googlereaderimport/init.php:330 +#: plugins/googlereaderimport/init.php:332 msgid "Paste your starred.json or shared.json into the form below." msgstr "" -#: plugins/googlereaderimport/init.php:344 +#: plugins/googlereaderimport/init.php:346 msgid "Import my Starred items" msgstr "" @@ -2906,23 +2850,23 @@ msgstr "上次更新:" msgid "Start update" msgstr "上次更新:" -#: js/feedlist.js:392 -#: js/feedlist.js:420 +#: js/feedlist.js:394 +#: js/feedlist.js:422 #: plugins/digest/digest.js:26 msgid "Mark all articles in %s as read?" msgstr "å°† %s ä¸çš„å…¨éƒ¨æ–‡ç« æ ‡è®°ä¸ºå·²è¯»ï¼Ÿ" -#: js/feedlist.js:411 +#: js/feedlist.js:413 #, fuzzy msgid "Mark all articles in %s older than 1 day as read?" msgstr "å°† %s ä¸çš„å…¨éƒ¨æ–‡ç« æ ‡è®°ä¸ºå·²è¯»ï¼Ÿ" -#: js/feedlist.js:414 +#: js/feedlist.js:416 #, fuzzy msgid "Mark all articles in %s older than 1 week as read?" msgstr "å°† %s ä¸çš„å…¨éƒ¨æ–‡ç« æ ‡è®°ä¸ºå·²è¯»ï¼Ÿ" -#: js/feedlist.js:417 +#: js/feedlist.js:419 #, fuzzy msgid "Mark all articles in %s older than 2 weeks as read?" msgstr "å°† %s ä¸çš„å…¨éƒ¨æ–‡ç« æ ‡è®°ä¸ºå·²è¯»ï¼Ÿ" @@ -3476,147 +3420,147 @@ msgstr "ä¸ºæ–‡ç« é‡æ–°è¯„分" msgid "New version available!" msgstr "有å¯ç”¨çš„æ–°ç‰ˆæœ¬å•¦ï¼" -#: js/viewfeed.js:104 +#: js/viewfeed.js:106 #, fuzzy msgid "Cancel search" msgstr "å–æ¶ˆ" -#: js/viewfeed.js:438 +#: js/viewfeed.js:441 #: plugins/digest/digest.js:258 #: plugins/digest/digest.js:714 msgid "Unstar article" msgstr "å–æ¶ˆæ˜Ÿæ ‡" -#: js/viewfeed.js:443 +#: js/viewfeed.js:446 #: plugins/digest/digest.js:260 #: plugins/digest/digest.js:718 msgid "Star article" msgstr "åŠ æ˜Ÿæ ‡" -#: js/viewfeed.js:476 +#: js/viewfeed.js:479 #: plugins/digest/digest.js:263 #: plugins/digest/digest.js:749 msgid "Unpublish article" msgstr "å–æ¶ˆå‘å¸ƒæ–‡ç« " -#: js/viewfeed.js:481 +#: js/viewfeed.js:484 #: plugins/digest/digest.js:265 #: plugins/digest/digest.js:754 msgid "Publish article" msgstr "å‘å¸ƒæ–‡ç« " -#: js/viewfeed.js:677 -#: js/viewfeed.js:705 -#: js/viewfeed.js:732 -#: js/viewfeed.js:795 -#: js/viewfeed.js:829 -#: js/viewfeed.js:949 -#: js/viewfeed.js:992 -#: js/viewfeed.js:1045 -#: js/viewfeed.js:2051 +#: js/viewfeed.js:680 +#: js/viewfeed.js:708 +#: js/viewfeed.js:735 +#: js/viewfeed.js:798 +#: js/viewfeed.js:832 +#: js/viewfeed.js:952 +#: js/viewfeed.js:995 +#: js/viewfeed.js:1048 +#: js/viewfeed.js:2060 #: plugins/mailto/init.js:7 #: plugins/mail/mail.js:7 msgid "No articles are selected." msgstr "没有选ä¸ä»»ä½•æ–‡ç« ã€‚" -#: js/viewfeed.js:957 +#: js/viewfeed.js:960 #, fuzzy msgid "Delete %d selected article in %s?" msgid_plural "Delete %d selected articles in %s?" msgstr[0] "åˆ é™¤ %s ä¸é€‰æ‹©çš„ %d ç¯‡æ–‡ç« ï¼Ÿ" -#: js/viewfeed.js:959 +#: js/viewfeed.js:962 #, fuzzy msgid "Delete %d selected article?" msgid_plural "Delete %d selected articles?" msgstr[0] "åˆ é™¤é€‰ä¸çš„ %d ç¯‡æ–‡ç« ï¼Ÿ" -#: js/viewfeed.js:1001 +#: js/viewfeed.js:1004 #, fuzzy msgid "Archive %d selected article in %s?" msgid_plural "Archive %d selected articles in %s?" msgstr[0] "å°† %s ä¸çš„ %d 篇选ä¸çš„æ–‡ç« å˜æ¡£ï¼Ÿ" -#: js/viewfeed.js:1004 +#: js/viewfeed.js:1007 #, fuzzy msgid "Move %d archived article back?" msgid_plural "Move %d archived articles back?" msgstr[0] "å°†å˜æ¡£çš„ %d ç¯‡æ–‡ç« ç§»å›žåŽŸå¤„ï¼Ÿ" -#: js/viewfeed.js:1006 +#: js/viewfeed.js:1009 msgid "Please note that unstarred articles might get purged on next feed update." msgstr "" -#: js/viewfeed.js:1051 +#: js/viewfeed.js:1054 #, 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:1075 +#: js/viewfeed.js:1078 msgid "Edit article Tags" msgstr "ç¼–è¾‘æ–‡ç« çš„è‡ªå®šä¹‰æ ‡ç¾" -#: js/viewfeed.js:1081 +#: js/viewfeed.js:1084 #, fuzzy msgid "Saving article tags..." msgstr "ç¼–è¾‘æ–‡ç« çš„è‡ªå®šä¹‰æ ‡ç¾" -#: js/viewfeed.js:1278 +#: js/viewfeed.js:1287 msgid "No article is selected." msgstr "未选ä¸ä»»ä½•æ–‡ç« ã€‚" -#: js/viewfeed.js:1313 +#: js/viewfeed.js:1322 msgid "No articles found to mark" msgstr "æœªæ‰¾åˆ°éœ€è¦æ ‡è®°çš„æ–‡ç« " -#: js/viewfeed.js:1315 +#: js/viewfeed.js:1324 #, fuzzy msgid "Mark %d article as read?" msgid_plural "Mark %d articles as read?" msgstr[0] "å°† %d ç¯‡æ–‡ç« æ ‡è®°ä¸ºå·²è¯»ï¼Ÿ" -#: js/viewfeed.js:1827 +#: js/viewfeed.js:1836 msgid "Open original article" msgstr "打开原文" -#: js/viewfeed.js:1833 +#: js/viewfeed.js:1842 #, fuzzy msgid "Display article URL" msgstr "显示 URL" -#: js/viewfeed.js:1852 +#: js/viewfeed.js:1861 #, fuzzy msgid "Toggle marked" msgstr "é”å®šåŠ æ˜Ÿæ ‡çš„é¡¹" -#: js/viewfeed.js:1933 +#: js/viewfeed.js:1942 msgid "Assign label" msgstr "æ·»åŠ é¢„å®šä¹‰æ ‡ç¾" -#: js/viewfeed.js:1938 +#: js/viewfeed.js:1947 msgid "Remove label" msgstr "ç§»é™¤é¢„å®šä¹‰æ ‡ç¾" -#: js/viewfeed.js:1962 +#: js/viewfeed.js:1971 msgid "Playing..." msgstr "æ’æ”¾ä¸â€¦â€¦" -#: js/viewfeed.js:1963 +#: js/viewfeed.js:1972 msgid "Click to pause" msgstr "点击暂åœ" -#: js/viewfeed.js:2020 +#: js/viewfeed.js:2029 #, fuzzy msgid "Please enter new score for selected articles:" msgstr "åˆ é™¤é€‰ä¸çš„ %d ç¯‡æ–‡ç« ï¼Ÿ" -#: js/viewfeed.js:2062 +#: js/viewfeed.js:2071 #, fuzzy msgid "Please enter new score for this article:" msgstr "请填写类别å称:" -#: js/viewfeed.js:2095 +#: js/viewfeed.js:2104 #, fuzzy msgid "Article URL:" msgstr "å…¨éƒ¨æ–‡ç« " @@ -3723,6 +3667,55 @@ msgstr "通过 URL åˆ†äº«æ–‡ç« " msgid "Live updating is considered experimental. Backup your tt-rss directory before continuing. Please type 'yes' to continue." msgstr "" +#~ msgid "Could not update database" +#~ msgstr "æ— æ³•æ›´æ–°æ•°æ®åº“" + +#~ msgid "Could not find necessary schema file, need version:" +#~ msgstr "æ— æ³•æ‰¾åˆ°å¿…è¦çš„表结构文件,需è¦ç‰ˆæœ¬ï¼š" + +#~ msgid ", found: " +#~ msgstr ",找到:" + +#~ msgid "Tiny Tiny RSS database is up to date." +#~ msgstr "Tiny Tiny RSS æ•°æ®åº“是最新版。" + +#~ msgid "Please backup your database before proceeding." +#~ msgstr "执行下一æ¥å‰è¯·å…ˆå¤‡ä»½æ•°æ®åº“。" + +#~ msgid "Your Tiny Tiny RSS database needs update to the latest version (<b>%d</b> to <b>%d</b>)." +#~ msgstr "您的 Tiny Tiny RSS æ•°æ®åº“需è¦å‡çº§åˆ°æœ€æ–°ç‰ˆï¼ˆ<b>%d</b> 到 <b>%d</b>)。" + +#~ msgid "Performing updates..." +#~ msgstr "æ£åœ¨æ›´æ–°â€¦â€¦" + +#~ msgid "Updating to version %d..." +#~ msgstr "æ£åœ¨æ›´æ–°åˆ° %d 版本……" + +#~ msgid "Checking version... " +#~ msgstr "æ£åœ¨æ£€æŸ¥ç‰ˆæœ¬â€¦â€¦" + +#~ msgid "OK!" +#~ msgstr "OKï¼" + +#~ msgid "ERROR!" +#~ msgstr "错误ï¼" + +#, fuzzy +#~ msgid "Finished. Performed <b>%d</b> update up to schema version <b>%d</b>." +#~ msgid_plural "Finished. Performed <b>%d</b> updates up to schema version <b>%d</b>." +#~ msgstr[0] "" +#~ "完æˆã€‚完æˆäº† <b>%d</b> 个更新,\n" +#~ "\t\t\t表结构版本å‡çº§è‡³ <b>%d</b>。" + +#~ msgid "Your database schema is from a newer version of Tiny Tiny RSS." +#~ msgstr "您的数æ®åº“表结构æ¥è‡ªä¸€ä¸ªè¾ƒæ–°ç‰ˆæœ¬çš„ Tiny Tiny RSS。" + +#~ msgid "Found schema version: <b>%d</b>, required: <b>%d</b>." +#~ msgstr "å‘现新版本的表结构:<b>%d</b>,需è¦çš„版本:<b>%d</b>。" + +#~ msgid "Schema upgrade impossible. Please update Tiny Tiny RSS files to the newer version and continue." +#~ msgstr "æ— æ³•å‡çº§è¡¨ç»“构。请将 Tiny Tiny RSS 更新到最新版本之åŽå†æ¥å°è¯•。" + #~ msgid "Mark feed as read" #~ msgstr "æ ‡è®°ä¿¡æ¯æºä¸ºå·²è¯»" @@ -3736,9 +3729,6 @@ msgstr "" #~ msgid "When this option is enabled, headlines in Special feeds and Labels are grouped by feeds" #~ msgstr "选择本项å¯è®©ç‰¹æ®ŠåŒºåŸŸå’Œé¢„å®šä¹‰æ ‡ç¾ä¸çš„æ–‡ç« æ ‡é¢˜ä»¥ä¿¡æ¯æºé¡ºåºæŽ’列" -#~ msgid "Title" -#~ msgstr "æ ‡é¢˜" - #~ msgid "Title or Content" #~ msgstr "æ ‡é¢˜æˆ–å†…å®¹" diff --git a/lock/.empty b/lock/.empty index e69de29bb..e69de29bb 100644..100755 --- a/lock/.empty +++ b/lock/.empty diff --git a/lock/.htaccess b/lock/.htaccess index 93169e4eb..93169e4eb 100644..100755 --- a/lock/.htaccess +++ b/lock/.htaccess diff --git a/messages.pot b/messages.pot index 714b3b56d..0e455b4cd 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-04-04 09:06+0400\n" +"POT-Creation-Date: 2013-04-04 21:31+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" @@ -94,97 +94,6 @@ msgstr "" msgid "Administrator" msgstr "" -#: db-updater.php:19 -msgid "Your access level is insufficient to run this script." -msgstr "" - -#: db-updater.php:44 -msgid "Database Updater" -msgstr "" - -#: db-updater.php:87 -msgid "Could not update database" -msgstr "" - -#: db-updater.php:90 -msgid "Could not find necessary schema file, need version:" -msgstr "" - -#: db-updater.php:91 -msgid ", found: " -msgstr "" - -#: db-updater.php:94 -msgid "Tiny Tiny RSS database is up to date." -msgstr "" - -#: 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:648 classes/handler/public.php:736 -#: classes/handler/public.php:818 -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 "" - -#: db-updater.php:150 -msgid "OK!" -msgstr "" - -#: db-updater.php:152 -msgid "ERROR!" -msgstr "" - -#: 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 " @@ -243,16 +152,16 @@ msgstr "" msgid "SQL escaping test failed, check your database and PHP configuration" msgstr "" -#: index.php:135 index.php:152 index.php:276 prefs.php:103 +#: index.php:135 index.php:152 index.php:277 prefs.php:103 #: classes/backend.php:5 classes/pref/labels.php:296 #: classes/pref/filters.php:680 classes/pref/feeds.php:1331 -#: plugins/digest/digest_body.php:63 js/feedlist.js:128 js/feedlist.js:436 +#: plugins/digest/digest_body.php:63 js/feedlist.js:128 js/feedlist.js:438 #: js/functions.js:420 js/functions.js:758 js/functions.js:1194 #: js/functions.js:1329 js/functions.js:1641 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:772 js/viewfeed.js:1200 +#: js/tt-rss.js:492 js/viewfeed.js:775 js/viewfeed.js:1201 #: plugins/import_export/import_export.js:17 plugins/updater/updater.js:17 msgid "Loading, please wait..." msgstr "" @@ -273,11 +182,11 @@ msgstr "" msgid "All Articles" msgstr "" -#: index.php:174 include/functions.php:1953 classes/feeds.php:106 +#: index.php:174 include/functions.php:1955 classes/feeds.php:106 msgid "Starred" msgstr "" -#: index.php:175 include/functions.php:1954 classes/feeds.php:107 +#: index.php:175 include/functions.php:1956 classes/feeds.php:107 msgid "Published" msgstr "" @@ -313,113 +222,117 @@ msgstr "" msgid "Oldest first" msgstr "" -#: index.php:191 index.php:240 include/functions.php:1943 +#: index.php:188 +msgid "Title" +msgstr "" + +#: index.php:192 index.php:241 include/functions.php:1945 #: 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:194 +#: index.php:195 msgid "Older than one day" msgstr "" -#: index.php:197 +#: index.php:198 msgid "Older than one week" msgstr "" -#: index.php:200 +#: index.php:201 msgid "Older than two weeks" msgstr "" -#: index.php:217 +#: index.php:218 msgid "Communication problem with server." msgstr "" -#: index.php:225 +#: index.php:226 msgid "New version of Tiny Tiny RSS is available!" msgstr "" -#: index.php:230 +#: index.php:231 msgid "Actions..." msgstr "" -#: index.php:232 +#: index.php:233 msgid "Preferences..." msgstr "" -#: index.php:233 +#: index.php:234 msgid "Search..." msgstr "" -#: index.php:234 +#: index.php:235 msgid "Feed actions:" msgstr "" -#: index.php:235 classes/handler/public.php:578 +#: index.php:236 classes/handler/public.php:578 msgid "Subscribe to feed..." msgstr "" -#: index.php:236 +#: index.php:237 msgid "Edit this feed..." msgstr "" -#: index.php:237 +#: index.php:238 msgid "Rescore feed" msgstr "" -#: index.php:238 classes/pref/feeds.php:717 classes/pref/feeds.php:1283 +#: index.php:239 classes/pref/feeds.php:717 classes/pref/feeds.php:1283 #: js/PrefFeedTree.js:73 msgid "Unsubscribe" msgstr "" -#: index.php:239 +#: index.php:240 msgid "All feeds:" msgstr "" -#: index.php:241 +#: index.php:242 msgid "(Un)hide read feeds" msgstr "" -#: index.php:242 +#: index.php:243 msgid "Other actions:" msgstr "" -#: index.php:244 +#: index.php:245 msgid "Switch to digest..." msgstr "" -#: index.php:246 +#: index.php:247 msgid "Show tag cloud..." msgstr "" -#: index.php:247 include/functions.php:1929 +#: index.php:248 include/functions.php:1931 msgid "Toggle widescreen mode" msgstr "" -#: index.php:248 +#: index.php:249 msgid "Select by tags..." msgstr "" -#: index.php:249 +#: index.php:250 msgid "Create label..." msgstr "" -#: index.php:250 +#: index.php:251 msgid "Create filter..." msgstr "" -#: index.php:251 +#: index.php:252 msgid "Keyboard shortcuts help" msgstr "" -#: index.php:260 plugins/digest/digest_body.php:77 +#: index.php:261 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:121 include/functions.php:1956 -#: classes/pref/prefs.php:428 +#: prefs.php:36 prefs.php:121 include/functions.php:1958 +#: classes/pref/prefs.php:444 msgid "Preferences" msgstr "" @@ -440,7 +353,7 @@ msgstr "" msgid "Filters" msgstr "" -#: prefs.php:130 include/functions.php:1146 include/functions.php:1782 +#: prefs.php:130 include/functions.php:1148 include/functions.php:1784 #: classes/pref/labels.php:90 plugins/mobile/mobile-functions.php:198 msgid "Labels" msgstr "" @@ -457,6 +370,15 @@ msgstr "" msgid "New user registrations are administratively disabled." msgstr "" +#: 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:648 classes/handler/public.php:736 +#: classes/handler/public.php:818 classes/handler/public.php:893 +#: classes/handler/public.php:907 classes/handler/public.php:914 +#: classes/handler/public.php:939 +msgid "Return to Tiny Tiny RSS" +msgstr "" + #: register.php:217 msgid "" "Your temporary password will be sent to the specified email. Accounts, which " @@ -504,13 +426,13 @@ msgstr "" msgid "New user registrations are currently closed." msgstr "" -#: update.php:55 +#: update.php:56 msgid "Tiny Tiny RSS data update script." msgstr "" -#: include/digest.php:109 include/functions.php:1155 -#: include/functions.php:1683 include/functions.php:1768 -#: include/functions.php:1790 classes/opml.php:416 classes/pref/feeds.php:222 +#: include/digest.php:109 include/functions.php:1157 +#: include/functions.php:1685 include/functions.php:1770 +#: include/functions.php:1792 classes/opml.php:416 classes/pref/feeds.php:222 msgid "Uncategorized" msgstr "" @@ -525,280 +447,280 @@ msgstr[1] "" msgid "No feeds found." msgstr "" -#: include/functions.php:1144 include/functions.php:1780 +#: include/functions.php:1146 include/functions.php:1782 #: plugins/mobile/mobile-functions.php:171 msgid "Special" msgstr "" -#: include/functions.php:1632 classes/feeds.php:1101 +#: include/functions.php:1634 classes/feeds.php:1104 #: classes/pref/filters.php:427 msgid "All feeds" msgstr "" -#: include/functions.php:1833 +#: include/functions.php:1835 msgid "Starred articles" msgstr "" -#: include/functions.php:1835 +#: include/functions.php:1837 msgid "Published articles" msgstr "" -#: include/functions.php:1837 +#: include/functions.php:1839 msgid "Fresh articles" msgstr "" -#: include/functions.php:1839 include/functions.php:1951 +#: include/functions.php:1841 include/functions.php:1953 msgid "All articles" msgstr "" -#: include/functions.php:1841 +#: include/functions.php:1843 msgid "Archived articles" msgstr "" -#: include/functions.php:1843 +#: include/functions.php:1845 msgid "Recently read" msgstr "" -#: include/functions.php:1906 +#: include/functions.php:1908 msgid "Navigation" msgstr "" -#: include/functions.php:1907 +#: include/functions.php:1909 msgid "Open next feed" msgstr "" -#: include/functions.php:1908 +#: include/functions.php:1910 msgid "Open previous feed" msgstr "" -#: include/functions.php:1909 +#: include/functions.php:1911 msgid "Open next article" msgstr "" -#: include/functions.php:1910 +#: include/functions.php:1912 msgid "Open previous article" msgstr "" -#: include/functions.php:1911 +#: include/functions.php:1913 msgid "Open next article (don't scroll long articles)" msgstr "" -#: include/functions.php:1912 +#: include/functions.php:1914 msgid "Open previous article (don't scroll long articles)" msgstr "" -#: include/functions.php:1913 +#: include/functions.php:1915 msgid "Show search dialog" msgstr "" -#: include/functions.php:1914 +#: include/functions.php:1916 msgid "Article" msgstr "" -#: include/functions.php:1915 +#: include/functions.php:1917 msgid "Toggle starred" msgstr "" -#: include/functions.php:1916 js/viewfeed.js:1863 +#: include/functions.php:1918 js/viewfeed.js:1872 msgid "Toggle published" msgstr "" -#: include/functions.php:1917 js/viewfeed.js:1841 +#: include/functions.php:1919 js/viewfeed.js:1850 msgid "Toggle unread" msgstr "" -#: include/functions.php:1918 +#: include/functions.php:1920 msgid "Edit tags" msgstr "" -#: include/functions.php:1919 +#: include/functions.php:1921 msgid "Dismiss selected" msgstr "" -#: include/functions.php:1920 +#: include/functions.php:1922 msgid "Dismiss read" msgstr "" -#: include/functions.php:1921 +#: include/functions.php:1923 msgid "Open in new window" msgstr "" -#: include/functions.php:1922 js/viewfeed.js:1882 +#: include/functions.php:1924 js/viewfeed.js:1891 msgid "Mark below as read" msgstr "" -#: include/functions.php:1923 js/viewfeed.js:1876 +#: include/functions.php:1925 js/viewfeed.js:1885 msgid "Mark above as read" msgstr "" -#: include/functions.php:1924 +#: include/functions.php:1926 msgid "Scroll down" msgstr "" -#: include/functions.php:1925 +#: include/functions.php:1927 msgid "Scroll up" msgstr "" -#: include/functions.php:1926 +#: include/functions.php:1928 msgid "Select article under cursor" msgstr "" -#: include/functions.php:1927 +#: include/functions.php:1929 msgid "Email article" msgstr "" -#: include/functions.php:1928 +#: include/functions.php:1930 msgid "Close/collapse article" msgstr "" -#: include/functions.php:1930 plugins/embed_original/init.php:33 +#: include/functions.php:1932 plugins/embed_original/init.php:33 msgid "Toggle embed original" msgstr "" -#: include/functions.php:1931 +#: include/functions.php:1933 msgid "Article selection" msgstr "" -#: include/functions.php:1932 +#: include/functions.php:1934 msgid "Select all articles" msgstr "" -#: include/functions.php:1933 +#: include/functions.php:1935 msgid "Select unread" msgstr "" -#: include/functions.php:1934 +#: include/functions.php:1936 msgid "Select starred" msgstr "" -#: include/functions.php:1935 +#: include/functions.php:1937 msgid "Select published" msgstr "" -#: include/functions.php:1936 +#: include/functions.php:1938 msgid "Invert selection" msgstr "" -#: include/functions.php:1937 +#: include/functions.php:1939 msgid "Deselect everything" msgstr "" -#: include/functions.php:1938 classes/pref/feeds.php:521 +#: include/functions.php:1940 classes/pref/feeds.php:521 #: classes/pref/feeds.php:754 msgid "Feed" msgstr "" -#: include/functions.php:1939 +#: include/functions.php:1941 msgid "Refresh current feed" msgstr "" -#: include/functions.php:1940 +#: include/functions.php:1942 msgid "Un/hide read feeds" msgstr "" -#: include/functions.php:1941 classes/pref/feeds.php:1275 +#: include/functions.php:1943 classes/pref/feeds.php:1275 msgid "Subscribe to feed" msgstr "" -#: include/functions.php:1942 js/FeedTree.js:135 js/PrefFeedTree.js:67 +#: include/functions.php:1944 js/FeedTree.js:135 js/PrefFeedTree.js:67 msgid "Edit feed" msgstr "" -#: include/functions.php:1944 +#: include/functions.php:1946 msgid "Reverse headlines" msgstr "" -#: include/functions.php:1945 +#: include/functions.php:1947 msgid "Debug feed update" msgstr "" -#: include/functions.php:1946 js/FeedTree.js:178 +#: include/functions.php:1948 js/FeedTree.js:178 msgid "Mark all feeds as read" msgstr "" -#: include/functions.php:1947 +#: include/functions.php:1949 msgid "Un/collapse current category" msgstr "" -#: include/functions.php:1948 +#: include/functions.php:1950 msgid "Toggle combined mode" msgstr "" -#: include/functions.php:1949 +#: include/functions.php:1951 msgid "Toggle auto expand in combined mode" msgstr "" -#: include/functions.php:1950 +#: include/functions.php:1952 msgid "Go to" msgstr "" -#: include/functions.php:1952 +#: include/functions.php:1954 msgid "Fresh" msgstr "" -#: include/functions.php:1955 js/tt-rss.js:431 js/tt-rss.js:584 +#: include/functions.php:1957 js/tt-rss.js:431 js/tt-rss.js:584 msgid "Tag cloud" msgstr "" -#: include/functions.php:1957 +#: include/functions.php:1959 msgid "Other" msgstr "" -#: include/functions.php:1958 classes/pref/labels.php:281 +#: include/functions.php:1960 classes/pref/labels.php:281 msgid "Create label" msgstr "" -#: include/functions.php:1959 classes/pref/filters.php:654 +#: include/functions.php:1961 classes/pref/filters.php:654 msgid "Create filter" msgstr "" -#: include/functions.php:1960 +#: include/functions.php:1962 msgid "Un/collapse sidebar" msgstr "" -#: include/functions.php:1961 +#: include/functions.php:1963 msgid "Show help dialog" msgstr "" -#: include/functions.php:2446 +#: include/functions.php:2471 #, php-format msgid "Search results: %s" msgstr "" -#: include/functions.php:2937 js/viewfeed.js:1969 +#: include/functions.php:2962 js/viewfeed.js:1978 msgid "Click to play" msgstr "" -#: include/functions.php:2938 js/viewfeed.js:1968 +#: include/functions.php:2963 js/viewfeed.js:1977 msgid "Play" msgstr "" -#: include/functions.php:3055 +#: include/functions.php:3080 msgid " - " msgstr "" -#: include/functions.php:3077 include/functions.php:3371 +#: include/functions.php:3102 include/functions.php:3396 #: classes/article.php:281 msgid "no tags" msgstr "" -#: include/functions.php:3087 classes/feeds.php:686 +#: include/functions.php:3112 classes/feeds.php:686 msgid "Edit tags for this article" msgstr "" -#: include/functions.php:3116 classes/feeds.php:642 +#: include/functions.php:3141 classes/feeds.php:642 msgid "Originally from:" msgstr "" -#: include/functions.php:3129 classes/feeds.php:655 classes/pref/feeds.php:540 +#: include/functions.php:3154 classes/feeds.php:655 classes/pref/feeds.php:540 msgid "Feed URL" msgstr "" -#: include/functions.php:3160 classes/dlg.php:37 classes/dlg.php:60 +#: include/functions.php:3185 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:1059 +#: classes/pref/filters.php:147 classes/pref/prefs.php:1105 #: classes/pref/feeds.php:1588 classes/pref/feeds.php:1660 #: plugins/import_export/init.php:406 plugins/import_export/init.php:429 #: plugins/googlereaderimport/init.php:168 plugins/share/init.php:67 @@ -806,15 +728,15 @@ msgstr "" msgid "Close this window" msgstr "" -#: include/functions.php:3396 +#: include/functions.php:3421 msgid "(edit note)" msgstr "" -#: include/functions.php:3631 +#: include/functions.php:3656 msgid "unknown type" msgstr "" -#: include/functions.php:3687 +#: include/functions.php:3712 msgid "Attachments" msgstr "" @@ -833,6 +755,7 @@ msgid "I forgot my password" msgstr "" #: include/login_form.php:201 classes/handler/public.php:489 +#: classes/pref/prefs.php:552 msgid "Language:" msgstr "" @@ -841,7 +764,7 @@ msgid "Profile:" msgstr "" #: include/login_form.php:213 classes/handler/public.php:233 -#: classes/rpc.php:64 classes/pref/prefs.php:995 +#: classes/rpc.php:64 classes/pref/prefs.php:1041 msgid "Default profile" msgstr "" @@ -858,7 +781,7 @@ msgstr "" msgid "Log in" msgstr "" -#: include/sessions.php:58 +#: include/sessions.php:62 msgid "Session failed to validate (incorrect IP)" msgstr "" @@ -872,18 +795,18 @@ msgstr "" #: classes/article.php:204 classes/pref/users.php:176 #: classes/pref/labels.php:79 classes/pref/filters.php:405 -#: classes/pref/prefs.php:941 classes/pref/feeds.php:733 +#: classes/pref/prefs.php:987 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:460 -#: classes/handler/public.php:502 classes/feeds.php:1028 -#: classes/feeds.php:1080 classes/feeds.php:1140 classes/pref/users.php:178 +#: classes/handler/public.php:502 classes/feeds.php:1031 +#: classes/feeds.php:1083 classes/feeds.php:1143 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:943 +#: classes/pref/filters.php:947 classes/pref/prefs.php:989 #: classes/pref/feeds.php:734 classes/pref/feeds.php:884 #: classes/pref/feeds.php:1797 plugins/mail/init.php:126 #: plugins/note/init.php:55 plugins/instances/init.php:251 @@ -993,6 +916,18 @@ msgstr "" msgid "Sorry, login and email combination not found." msgstr "" +#: classes/handler/public.php:842 +msgid "Your access level is insufficient to run this script." +msgstr "" + +#: classes/handler/public.php:866 +msgid "Database Updater" +msgstr "" + +#: classes/handler/public.php:931 +msgid "Perform updates" +msgstr "" + #: classes/dlg.php:16 msgid "" "If you have imported labels and/or filters, you might need to reload " @@ -1091,7 +1026,7 @@ 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:955 +#: classes/pref/filters.php:764 classes/pref/prefs.php:1001 #: classes/pref/feeds.php:1266 classes/pref/feeds.php:1536 #: classes/pref/feeds.php:1606 plugins/instances/init.php:290 msgid "All" @@ -1104,7 +1039,7 @@ 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:957 +#: classes/pref/filters.php:766 classes/pref/prefs.php:1003 #: classes/pref/feeds.php:1268 classes/pref/feeds.php:1538 #: classes/pref/feeds.php:1608 plugins/instances/init.php:292 msgid "None" @@ -1189,94 +1124,94 @@ msgstr "" msgid "No articles found to display." msgstr "" -#: classes/feeds.php:759 classes/feeds.php:923 +#: classes/feeds.php:759 classes/feeds.php:926 #, php-format msgid "Feeds last updated at %s" msgstr "" -#: classes/feeds.php:769 classes/feeds.php:933 +#: classes/feeds.php:769 classes/feeds.php:936 msgid "Some feeds have update errors (click for details)" msgstr "" -#: classes/feeds.php:913 +#: classes/feeds.php:916 msgid "No feed selected." msgstr "" -#: classes/feeds.php:966 classes/feeds.php:974 +#: classes/feeds.php:969 classes/feeds.php:977 msgid "Feed or site URL" msgstr "" -#: classes/feeds.php:980 classes/pref/feeds.php:560 classes/pref/feeds.php:782 +#: classes/feeds.php:983 classes/pref/feeds.php:560 classes/pref/feeds.php:782 #: classes/pref/feeds.php:1761 msgid "Place in category:" msgstr "" -#: classes/feeds.php:988 +#: classes/feeds.php:991 msgid "Available feeds" msgstr "" -#: classes/feeds.php:1000 classes/pref/users.php:139 +#: classes/feeds.php:1003 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/feeds.php:1007 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:253 +#: classes/feeds.php:1010 classes/pref/prefs.php:269 #: classes/pref/feeds.php:602 classes/pref/feeds.php:828 #: classes/pref/feeds.php:1778 msgid "Password" msgstr "" -#: classes/feeds.php:1017 +#: classes/feeds.php:1020 msgid "This feed requires authentication." msgstr "" -#: classes/feeds.php:1022 classes/feeds.php:1078 classes/pref/feeds.php:1796 +#: classes/feeds.php:1025 classes/feeds.php:1081 classes/pref/feeds.php:1796 msgid "Subscribe" msgstr "" -#: classes/feeds.php:1025 +#: classes/feeds.php:1028 msgid "More feeds" msgstr "" -#: classes/feeds.php:1048 classes/feeds.php:1139 classes/pref/users.php:332 +#: classes/feeds.php:1051 classes/feeds.php:1142 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 +#: classes/feeds.php:1055 msgid "Popular feeds" msgstr "" -#: classes/feeds.php:1053 +#: classes/feeds.php:1056 msgid "Feed archive" msgstr "" -#: classes/feeds.php:1056 +#: classes/feeds.php:1059 msgid "limit:" msgstr "" -#: classes/feeds.php:1079 classes/pref/users.php:358 +#: classes/feeds.php:1082 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 +#: classes/feeds.php:1093 msgid "Look for" msgstr "" -#: classes/feeds.php:1098 +#: classes/feeds.php:1101 msgid "Limit search to:" msgstr "" -#: classes/feeds.php:1114 +#: classes/feeds.php:1117 msgid "This feed" msgstr "" @@ -1427,7 +1362,7 @@ 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:952 +#: classes/pref/filters.php:761 classes/pref/prefs.php:998 #: classes/pref/feeds.php:1263 classes/pref/feeds.php:1533 #: classes/pref/feeds.php:1603 plugins/instances/init.php:287 msgid "Select" @@ -1828,146 +1763,150 @@ msgstr "" msgid "Function not supported by authentication module." msgstr "" -#: classes/pref/prefs.php:120 +#: classes/pref/prefs.php:135 msgid "The configuration was saved." msgstr "" -#: classes/pref/prefs.php:134 +#: classes/pref/prefs.php:150 #, php-format msgid "Unknown option: %s" msgstr "" -#: classes/pref/prefs.php:148 +#: classes/pref/prefs.php:164 msgid "Your personal data has been saved." msgstr "" -#: classes/pref/prefs.php:188 +#: classes/pref/prefs.php:204 msgid "Personal data / Authentication" msgstr "" -#: classes/pref/prefs.php:208 +#: classes/pref/prefs.php:224 msgid "Personal data" msgstr "" -#: classes/pref/prefs.php:218 +#: classes/pref/prefs.php:234 msgid "Full name" msgstr "" -#: classes/pref/prefs.php:222 +#: classes/pref/prefs.php:238 msgid "E-mail" msgstr "" -#: classes/pref/prefs.php:228 +#: classes/pref/prefs.php:244 msgid "Access level" msgstr "" -#: classes/pref/prefs.php:238 +#: classes/pref/prefs.php:254 msgid "Save data" msgstr "" -#: classes/pref/prefs.php:260 +#: classes/pref/prefs.php:276 msgid "Your password is at default value, please change it." msgstr "" -#: classes/pref/prefs.php:287 +#: classes/pref/prefs.php:303 msgid "Changing your current password will disable OTP." msgstr "" -#: classes/pref/prefs.php:292 +#: classes/pref/prefs.php:308 msgid "Old password" msgstr "" -#: classes/pref/prefs.php:295 +#: classes/pref/prefs.php:311 msgid "New password" msgstr "" -#: classes/pref/prefs.php:300 +#: classes/pref/prefs.php:316 msgid "Confirm password" msgstr "" -#: classes/pref/prefs.php:310 +#: classes/pref/prefs.php:326 msgid "Change password" msgstr "" -#: classes/pref/prefs.php:316 +#: classes/pref/prefs.php:332 msgid "One time passwords / Authenticator" msgstr "" -#: classes/pref/prefs.php:320 +#: classes/pref/prefs.php:336 msgid "" "One time passwords are currently enabled. Enter your current password below " "to disable." msgstr "" -#: classes/pref/prefs.php:345 classes/pref/prefs.php:396 +#: classes/pref/prefs.php:361 classes/pref/prefs.php:412 msgid "Enter your password" msgstr "" -#: classes/pref/prefs.php:356 +#: classes/pref/prefs.php:372 msgid "Disable OTP" msgstr "" -#: classes/pref/prefs.php:362 +#: classes/pref/prefs.php:378 msgid "" "You will need a compatible Authenticator to use this. Changing your password " "would automatically disable OTP." msgstr "" -#: classes/pref/prefs.php:364 +#: classes/pref/prefs.php:380 msgid "Scan the following code by the Authenticator application:" msgstr "" -#: classes/pref/prefs.php:405 +#: classes/pref/prefs.php:421 msgid "I have scanned the code and would like to enable OTP" msgstr "" -#: classes/pref/prefs.php:413 +#: classes/pref/prefs.php:429 msgid "Enable OTP" msgstr "" -#: classes/pref/prefs.php:451 +#: classes/pref/prefs.php:475 msgid "Some preferences are only available in default profile." msgstr "" -#: classes/pref/prefs.php:545 +#: classes/pref/prefs.php:585 msgid "Customize" msgstr "" -#: classes/pref/prefs.php:605 +#: classes/pref/prefs.php:645 msgid "Register" msgstr "" -#: classes/pref/prefs.php:609 +#: classes/pref/prefs.php:649 msgid "Clear" msgstr "" -#: classes/pref/prefs.php:615 +#: classes/pref/prefs.php:655 #, php-format msgid "Current server time: %s (UTC)" msgstr "" -#: classes/pref/prefs.php:648 +#: classes/pref/prefs.php:688 msgid "Save configuration" msgstr "" -#: classes/pref/prefs.php:651 +#: classes/pref/prefs.php:692 +msgid "Save and exit preferences" +msgstr "" + +#: classes/pref/prefs.php:697 msgid "Manage profiles" msgstr "" -#: classes/pref/prefs.php:654 +#: classes/pref/prefs.php:700 msgid "Reset to defaults" msgstr "" -#: classes/pref/prefs.php:678 classes/pref/prefs.php:680 +#: classes/pref/prefs.php:724 classes/pref/prefs.php:726 msgid "Plugins" msgstr "" -#: classes/pref/prefs.php:682 +#: classes/pref/prefs.php:728 msgid "" "You will need to reload Tiny Tiny RSS for plugin changes to take effect." msgstr "" -#: classes/pref/prefs.php:684 +#: classes/pref/prefs.php:730 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 " @@ -1975,47 +1914,47 @@ msgid "" "\">wiki</a>." msgstr "" -#: classes/pref/prefs.php:710 +#: classes/pref/prefs.php:756 msgid "System plugins" msgstr "" -#: classes/pref/prefs.php:714 classes/pref/prefs.php:768 +#: classes/pref/prefs.php:760 classes/pref/prefs.php:814 msgid "Plugin" msgstr "" -#: classes/pref/prefs.php:715 classes/pref/prefs.php:769 +#: classes/pref/prefs.php:761 classes/pref/prefs.php:815 msgid "Description" msgstr "" -#: classes/pref/prefs.php:716 classes/pref/prefs.php:770 +#: classes/pref/prefs.php:762 classes/pref/prefs.php:816 msgid "Version" msgstr "" -#: classes/pref/prefs.php:717 classes/pref/prefs.php:771 +#: classes/pref/prefs.php:763 classes/pref/prefs.php:817 msgid "Author" msgstr "" -#: classes/pref/prefs.php:746 classes/pref/prefs.php:803 +#: classes/pref/prefs.php:792 classes/pref/prefs.php:849 msgid "more info" msgstr "" -#: classes/pref/prefs.php:755 classes/pref/prefs.php:812 +#: classes/pref/prefs.php:801 classes/pref/prefs.php:858 msgid "Clear data" msgstr "" -#: classes/pref/prefs.php:764 +#: classes/pref/prefs.php:810 msgid "User plugins" msgstr "" -#: classes/pref/prefs.php:827 +#: classes/pref/prefs.php:873 msgid "Enable selected plugins" msgstr "" -#: classes/pref/prefs.php:882 classes/pref/prefs.php:900 +#: classes/pref/prefs.php:928 classes/pref/prefs.php:946 msgid "Incorrect password" msgstr "" -#: classes/pref/prefs.php:926 +#: classes/pref/prefs.php:972 #, php-format msgid "" "You can override colors, fonts and layout of your currently selected theme " @@ -2023,19 +1962,19 @@ msgid "" "\" href=\"%s\">This file</a> can be used as a baseline." msgstr "" -#: classes/pref/prefs.php:966 +#: classes/pref/prefs.php:1012 msgid "Create profile" msgstr "" -#: classes/pref/prefs.php:989 classes/pref/prefs.php:1019 +#: classes/pref/prefs.php:1035 classes/pref/prefs.php:1065 msgid "(active)" msgstr "" -#: classes/pref/prefs.php:1053 +#: classes/pref/prefs.php:1099 msgid "Remove selected profiles" msgstr "" -#: classes/pref/prefs.php:1055 +#: classes/pref/prefs.php:1101 msgid "Activate profile" msgstr "" @@ -2536,15 +2475,15 @@ msgstr "" msgid "The document has incorrect format." msgstr "" -#: plugins/googlereaderimport/init.php:326 +#: plugins/googlereaderimport/init.php:328 msgid "Import starred or shared items from Google Reader" msgstr "" -#: plugins/googlereaderimport/init.php:330 +#: plugins/googlereaderimport/init.php:332 msgid "Paste your starred.json or shared.json into the form below." msgstr "" -#: plugins/googlereaderimport/init.php:344 +#: plugins/googlereaderimport/init.php:346 msgid "Import my Starred items" msgstr "" @@ -2635,19 +2574,19 @@ msgstr "" msgid "Start update" msgstr "" -#: js/feedlist.js:392 js/feedlist.js:420 plugins/digest/digest.js:26 +#: js/feedlist.js:394 js/feedlist.js:422 plugins/digest/digest.js:26 msgid "Mark all articles in %s as read?" msgstr "" -#: js/feedlist.js:411 +#: js/feedlist.js:413 msgid "Mark all articles in %s older than 1 day as read?" msgstr "" -#: js/feedlist.js:414 +#: js/feedlist.js:416 msgid "Mark all articles in %s older than 1 week as read?" msgstr "" -#: js/feedlist.js:417 +#: js/feedlist.js:419 msgid "Mark all articles in %s older than 2 weeks as read?" msgstr "" @@ -3144,131 +3083,131 @@ msgstr "" msgid "New version available!" msgstr "" -#: js/viewfeed.js:104 +#: js/viewfeed.js:106 msgid "Cancel search" msgstr "" -#: js/viewfeed.js:438 plugins/digest/digest.js:258 +#: js/viewfeed.js:441 plugins/digest/digest.js:258 #: plugins/digest/digest.js:714 msgid "Unstar article" msgstr "" -#: js/viewfeed.js:443 plugins/digest/digest.js:260 +#: js/viewfeed.js:446 plugins/digest/digest.js:260 #: plugins/digest/digest.js:718 msgid "Star article" msgstr "" -#: js/viewfeed.js:476 plugins/digest/digest.js:263 +#: js/viewfeed.js:479 plugins/digest/digest.js:263 #: plugins/digest/digest.js:749 msgid "Unpublish article" msgstr "" -#: js/viewfeed.js:481 plugins/digest/digest.js:265 +#: js/viewfeed.js:484 plugins/digest/digest.js:265 #: plugins/digest/digest.js:754 msgid "Publish article" msgstr "" -#: js/viewfeed.js:677 js/viewfeed.js:705 js/viewfeed.js:732 js/viewfeed.js:795 -#: js/viewfeed.js:829 js/viewfeed.js:949 js/viewfeed.js:992 -#: js/viewfeed.js:1045 js/viewfeed.js:2051 plugins/mailto/init.js:7 +#: js/viewfeed.js:680 js/viewfeed.js:708 js/viewfeed.js:735 js/viewfeed.js:798 +#: js/viewfeed.js:832 js/viewfeed.js:952 js/viewfeed.js:995 +#: js/viewfeed.js:1048 js/viewfeed.js:2060 plugins/mailto/init.js:7 #: plugins/mail/mail.js:7 msgid "No articles are selected." msgstr "" -#: js/viewfeed.js:957 +#: js/viewfeed.js:960 msgid "Delete %d selected article in %s?" msgid_plural "Delete %d selected articles in %s?" msgstr[0] "" msgstr[1] "" -#: js/viewfeed.js:959 +#: js/viewfeed.js:962 msgid "Delete %d selected article?" msgid_plural "Delete %d selected articles?" msgstr[0] "" msgstr[1] "" -#: js/viewfeed.js:1001 +#: js/viewfeed.js:1004 msgid "Archive %d selected article in %s?" msgid_plural "Archive %d selected articles in %s?" msgstr[0] "" msgstr[1] "" -#: js/viewfeed.js:1004 +#: js/viewfeed.js:1007 msgid "Move %d archived article back?" msgid_plural "Move %d archived articles back?" msgstr[0] "" msgstr[1] "" -#: js/viewfeed.js:1006 +#: js/viewfeed.js:1009 msgid "" "Please note that unstarred articles might get purged on next feed update." msgstr "" -#: js/viewfeed.js:1051 +#: js/viewfeed.js:1054 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:1075 +#: js/viewfeed.js:1078 msgid "Edit article Tags" msgstr "" -#: js/viewfeed.js:1081 +#: js/viewfeed.js:1084 msgid "Saving article tags..." msgstr "" -#: js/viewfeed.js:1278 +#: js/viewfeed.js:1287 msgid "No article is selected." msgstr "" -#: js/viewfeed.js:1313 +#: js/viewfeed.js:1322 msgid "No articles found to mark" msgstr "" -#: js/viewfeed.js:1315 +#: js/viewfeed.js:1324 msgid "Mark %d article as read?" msgid_plural "Mark %d articles as read?" msgstr[0] "" msgstr[1] "" -#: js/viewfeed.js:1827 +#: js/viewfeed.js:1836 msgid "Open original article" msgstr "" -#: js/viewfeed.js:1833 +#: js/viewfeed.js:1842 msgid "Display article URL" msgstr "" -#: js/viewfeed.js:1852 +#: js/viewfeed.js:1861 msgid "Toggle marked" msgstr "" -#: js/viewfeed.js:1933 +#: js/viewfeed.js:1942 msgid "Assign label" msgstr "" -#: js/viewfeed.js:1938 +#: js/viewfeed.js:1947 msgid "Remove label" msgstr "" -#: js/viewfeed.js:1962 +#: js/viewfeed.js:1971 msgid "Playing..." msgstr "" -#: js/viewfeed.js:1963 +#: js/viewfeed.js:1972 msgid "Click to pause" msgstr "" -#: js/viewfeed.js:2020 +#: js/viewfeed.js:2029 msgid "Please enter new score for selected articles:" msgstr "" -#: js/viewfeed.js:2062 +#: js/viewfeed.js:2071 msgid "Please enter new score for this article:" msgstr "" -#: js/viewfeed.js:2095 +#: js/viewfeed.js:2104 msgid "Article URL:" msgstr "" diff --git a/plugins/digest/digest.js b/plugins/digest/digest.js index 5815e60e5..e3cb1e299 100644 --- a/plugins/digest/digest.js +++ b/plugins/digest/digest.js @@ -772,7 +772,7 @@ function fatal_error(code, msg) { if (code == 6) { window.location.href = "digest.php"; } else if (code == 5) { - window.location.href = "db-updater.php"; + window.location.href = "public.php?op=dbupdate"; } else { if (msg == "") msg = "Unknown error"; diff --git a/plugins/embed_original/init.js b/plugins/embed_original/init.js index 517f2cd54..17090653d 100644 --- a/plugins/embed_original/init.js +++ b/plugins/embed_original/init.js @@ -19,11 +19,11 @@ function embedOriginalArticle(id) { } if (c) { - var iframe = c.getElementsByClassName("embeddedContent")[0]; + var iframe = c.parentNode.getElementsByClassName("embeddedContent")[0]; if (iframe) { - Element.show(c.firstChild); - c.removeChild(iframe); + Element.show(c); + c.parentNode.removeChild(iframe); if (isCdmMode()) { cdmScrollToArticleId(id, true); @@ -43,16 +43,15 @@ function embedOriginalArticle(id) { var iframe = new Element("iframe", { class: "embeddedContent", src: ti.url, + width: (c.parentNode.offsetWidth-5)+'px', + height: (c.parentNode.parentNode.offsetHeight-c.parentNode.firstChild.offsetHeight-5)+'px', + style: "overflow: auto; border: none; min-height: "+(document.body.clientHeight/2)+"px;", sandbox: 'allow-scripts', }); if (c) { - Element.hide(c.firstChild); - - if (c.firstChild.nextSibling) - c.insertBefore(iframe, c.firstChild.nextSibling); - else - c.appendChild(iframe); + Element.hide(c); + c.parentNode.insertBefore(iframe,c); if (isCdmMode()) { cdmScrollToArticleId(id, true); diff --git a/plugins/googlereaderimport/init.php b/plugins/googlereaderimport/init.php index 8f14bdaa7..ac7a872f2 100644 --- a/plugins/googlereaderimport/init.php +++ b/plugins/googlereaderimport/init.php @@ -108,6 +108,11 @@ class GoogleReaderImport extends Plugin { } } + if (is_array($item['summary'])) { + $content = db_escape_string($this->link, + $item['summary']['content'], false); + } + if (is_array($item['content'])) { $content = db_escape_string($this->link, $item['content']['content'], false); diff --git a/update.php b/update.php index e57aef90f..e1afb6bd6 100755 --- a/update.php +++ b/update.php @@ -31,6 +31,7 @@ "quiet", "log:", "indexes", + "update-schema", "convert-filters", "force-update", "list-plugins", @@ -72,6 +73,7 @@ print " --quiet - don't output messages to stdout\n"; print " --log FILE - log messages to FILE\n"; print " --indexes - recreate missing schema indexes\n"; + print " --update-schema - update database schema\n"; print " --convert-filters - convert type1 filters to type2\n"; print " --force-update - force update of all feeds\n"; print " --list-plugins - list all available plugins\n"; @@ -290,6 +292,35 @@ } + if (isset($options["update-schema"])) { + _debug("checking for updates (" . DB_TYPE . ")..."); + + $updater = new DbUpdater($link, DB_TYPE, SCHEMA_VERSION); + + if ($updater->isUpdateRequired()) { + _debug("schema update required, version " . $updater->getSchemaVersion() . " to " . SCHEMA_VERSION); + _debug("WARNING: please backup your database before continuing."); + _debug("Type 'yes' to continue."); + + if (read_stdin() != 'yes') + exit; + + for ($i = $updater->getSchemaVersion() + 1; $i <= SCHEMA_VERSION; $i++) { + _debug("performing update up to version $i..."); + + $result = $updater->performUpdateTo($i); + + _debug($result ? "OK!" : "FAILED!"); + + if (!$result) return; + + } + } else { + _debug("update not required."); + } + + } + if (isset($options["list-plugins"])) { $tmppluginhost = new PluginHost($link); $tmppluginhost->load_all($tmppluginhost::KIND_ALL); @@ -322,4 +353,4 @@ if (file_exists(LOCK_DIRECTORY . "/$lock_filename")) unlink(LOCK_DIRECTORY . "/$lock_filename"); -?> +g?> diff --git a/update_daemon2.php b/update_daemon2.php index 37d6b4074..c6e215a29 100755 --- a/update_daemon2.php +++ b/update_daemon2.php @@ -284,7 +284,11 @@ _debug("Elapsed time: " . (time() - $start_timestamp) . " second(s)"); if ($nf > 0) { - _debug("Feeds processed: $nf; feeds/minute: " . sprintf("%.2d", $nf/((time()-$start_timestamp)/60))); + _debug("Feeds processed: $nf"); + + if (time() - $start_timestamp > 0) { + _debug("Feeds/minute: " . sprintf("%.2d", $nf/((time()-$start_timestamp)/60))); + } } db_close($link); diff --git a/utility.css b/utility.css index dd39cb32b..308b71fd0 100644 --- a/utility.css +++ b/utility.css @@ -93,6 +93,10 @@ h2 { border-style : solid; } +div.content > h2 { + margin-top : 0px; +} + div.rss h1 { border-width : 0px 0px 1px 0px; border-color : gray; |