aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorNicolas Lœuillet <nicolas@loeuillet.org>2014-02-25 17:27:51 +0100
committerNicolas Lœuillet <nicolas@loeuillet.org>2014-02-25 17:27:51 +0100
commit9fad46bd0e448b312b426370770d967831e3c7f5 (patch)
tree3525b25f04e6bacab1028e8da7caf72d68e03049
parent92fc97eeb3cbda0f7cee9b670c30bbf6b23b9e39 (diff)
parentdcc73856a900a98b2b1efd5292eea6f662924884 (diff)
downloadwallabag-9fad46bd0e448b312b426370770d967831e3c7f5.tar.gz
wallabag-9fad46bd0e448b312b426370770d967831e3c7f5.tar.zst
wallabag-9fad46bd0e448b312b426370770d967831e3c7f5.zip
Merge pull request #495 from mariroz/dev
fix of global $http visibility, issues #493, #494
-rwxr-xr-xinc/3rdparty/makefulltextfeed.php352
-rwxr-xr-xinc/3rdparty/makefulltextfeedHelpers.php355
-rw-r--r--index.php2
-rw-r--r--locale/cs_CZ.utf8/LC_MESSAGES/cs_CZ.utf8.po496
-rw-r--r--locale/de_DE.utf8/LC_MESSAGES/de_DE.utf8.po492
-rw-r--r--locale/en_EN.utf8/LC_MESSAGES/en_EN.utf8.mobin4481 -> 11884 bytes
-rw-r--r--locale/en_EN.utf8/LC_MESSAGES/en_EN.utf8.po488
-rw-r--r--locale/es_ES.utf8/LC_MESSAGES/es_ES.utf8.po495
-rw-r--r--locale/fa_IR.utf8/LC_MESSAGES/fa_IR.utf8.po491
-rw-r--r--locale/fr_FR.utf8/LC_MESSAGES/fr_FR.utf8.po503
-rw-r--r--locale/it_IT.utf8/LC_MESSAGES/it_IT.utf8.po503
-rwxr-xr-xlocale/pl_PL.utf8/LC_MESSAGES/pl_PL.utf8.mobin10557 -> 11248 bytes
-rwxr-xr-xlocale/pl_PL.utf8/LC_MESSAGES/pl_PL.utf8.po429
-rwxr-xr-xlocale/ru_RU.utf8/LC_MESSAGES/ru_RU.utf8.mobin13000 -> 13552 bytes
-rwxr-xr-xlocale/ru_RU.utf8/LC_MESSAGES/ru_RU.utf8.po421
-rw-r--r--locale/sl_SI.utf8/LC_MESSAGES/sl_SI.utf8.po507
-rwxr-xr-xlocale/uk_UA.utf8/LC_MESSAGES/uk_UA.utf8.mobin13258 -> 15670 bytes
-rwxr-xr-xlocale/uk_UA.utf8/LC_MESSAGES/uk_UA.utf8.po278
-rw-r--r--themes/baggy/_top.twig2
-rwxr-xr-xthemes/courgette/_top.twig2
-rwxr-xr-xthemes/courgette/config.twig12
-rw-r--r--themes/default/_bookmarklet.twig2
-rw-r--r--themes/default/_top.twig2
23 files changed, 4412 insertions, 1420 deletions
diff --git a/inc/3rdparty/makefulltextfeed.php b/inc/3rdparty/makefulltextfeed.php
index 2852c4c2..b024547f 100755
--- a/inc/3rdparty/makefulltextfeed.php
+++ b/inc/3rdparty/makefulltextfeed.php
@@ -55,42 +55,8 @@ if (get_magic_quotes_gpc()) {
55 55
56// set include path 56// set include path
57set_include_path(realpath(dirname(__FILE__).'/libraries').PATH_SEPARATOR.get_include_path()); 57set_include_path(realpath(dirname(__FILE__).'/libraries').PATH_SEPARATOR.get_include_path());
58// Autoloading of classes allows us to include files only when they're 58
59// needed. If we've got a cached copy, for example, only Zend_Cache is loaded. 59require_once dirname(__FILE__).'/makefulltextfeedHelpers.php';
60function autoload($class_name) {
61 static $dir = null;
62 if ($dir === null) $dir = dirname(__FILE__).'/libraries/';
63 static $mapping = array(
64 // Include FeedCreator for RSS/Atom creation
65 'FeedWriter' => 'feedwriter/FeedWriter.php',
66 'FeedItem' => 'feedwriter/FeedItem.php',
67 // Include ContentExtractor and Readability for identifying and extracting content from URLs
68 'ContentExtractor' => 'content-extractor/ContentExtractor.php',
69 'SiteConfig' => 'content-extractor/SiteConfig.php',
70 'Readability' => 'readability/Readability.php',
71 // Include Humble HTTP Agent to allow parallel requests and response caching
72 'HumbleHttpAgent' => 'humble-http-agent/HumbleHttpAgent.php',
73 'SimplePie_HumbleHttpAgent' => 'humble-http-agent/SimplePie_HumbleHttpAgent.php',
74 'CookieJar' => 'humble-http-agent/CookieJar.php',
75 // Include Zend Cache to improve performance (cache results)
76 'Zend_Cache' => 'Zend/Cache.php',
77 // Language detect
78 'Text_LanguageDetect' => 'language-detect/LanguageDetect.php',
79 // HTML5 Lib
80 'HTML5_Parser' => 'html5/Parser.php',
81 // htmLawed - used if XSS filter is enabled (xss_filter)
82 'htmLawed' => 'htmLawed/htmLawed.php'
83 );
84 if (isset($mapping[$class_name])) {
85 debug("** Loading class $class_name ({$mapping[$class_name]})");
86 require $dir.$mapping[$class_name];
87 return true;
88 } else {
89 return false;
90 }
91}
92spl_autoload_register('autoload');
93require dirname(__FILE__).'/libraries/simplepie/autoloader.php';
94 60
95//////////////////////////////// 61////////////////////////////////
96// Load config file 62// Load config file
@@ -478,29 +444,6 @@ if ($html_only || !$result) {
478 $isDummyFeed = true; 444 $isDummyFeed = true;
479 unset($feed, $result); 445 unset($feed, $result);
480 // create single item dummy feed object 446 // create single item dummy feed object
481 class DummySingleItemFeed {
482 public $item;
483 function __construct($url) { $this->item = new DummySingleItem($url); }
484 public function get_title() { return ''; }
485 public function get_description() { return 'Content extracted from '.$this->item->url; }
486 public function get_link() { return $this->item->url; }
487 public function get_language() { return false; }
488 public function get_image_url() { return false; }
489 public function get_items($start=0, $max=1) { return array(0=>$this->item); }
490 }
491 class DummySingleItem {
492 public $url;
493 function __construct($url) { $this->url = $url; }
494 public function get_permalink() { return $this->url; }
495 public function get_title() { return null; }
496 public function get_date($format='') { return false; }
497 public function get_author($key=0) { return null; }
498 public function get_authors() { return null; }
499 public function get_description() { return ''; }
500 public function get_enclosure($key=0, $prefer=null) { return null; }
501 public function get_enclosures() { return null; }
502 public function get_categories() { return null; }
503 }
504 $feed = new DummySingleItemFeed($url); 447 $feed = new DummySingleItemFeed($url);
505} 448}
506 449
@@ -903,294 +846,3 @@ if (!$debug_mode) {
903 if ($callback) echo ');'; 846 if ($callback) echo ');';
904} 847}
905 848
906///////////////////////////////
907// HELPER FUNCTIONS
908///////////////////////////////
909
910function url_allowed($url) {
911 global $options;
912 if (!empty($options->allowed_urls)) {
913 $allowed = false;
914 foreach ($options->allowed_urls as $allowurl) {
915 if (stristr($url, $allowurl) !== false) {
916 $allowed = true;
917 break;
918 }
919 }
920 if (!$allowed) return false;
921 } else {
922 foreach ($options->blocked_urls as $blockurl) {
923 if (stristr($url, $blockurl) !== false) {
924 return false;
925 }
926 }
927 }
928 return true;
929}
930
931//////////////////////////////////////////////
932// Convert $html to UTF8
933// (uses HTTP headers and HTML to find encoding)
934// adapted from http://stackoverflow.com/questions/910793/php-detect-encoding-and-make-everything-utf-8
935//////////////////////////////////////////////
936function convert_to_utf8($html, $header=null)
937{
938 $encoding = null;
939 if ($html || $header) {
940 if (is_array($header)) $header = implode("\n", $header);
941 if (!$header || !preg_match_all('/^Content-Type:\s+([^;]+)(?:;\s*charset=["\']?([^;"\'\n]*))?/im', $header, $match, PREG_SET_ORDER)) {
942 // error parsing the response
943 debug('Could not find Content-Type header in HTTP response');
944 } else {
945 $match = end($match); // get last matched element (in case of redirects)
946 if (isset($match[2])) $encoding = trim($match[2], "\"' \r\n\0\x0B\t");
947 }
948 // TODO: check to see if encoding is supported (can we convert it?)
949 // If it's not, result will be empty string.
950 // For now we'll check for invalid encoding types returned by some sites, e.g. 'none'
951 // Problem URL: http://facta.co.jp/blog/archives/20111026001026.html
952 if (!$encoding || $encoding == 'none') {
953 // search for encoding in HTML - only look at the first 50000 characters
954 // Why 50000? See, for example, http://www.lemonde.fr/festival-de-cannes/article/2012/05/23/deux-cretes-en-goguette-sur-la-croisette_1705732_766360.html
955 // TODO: improve this so it looks at smaller chunks first
956 $html_head = substr($html, 0, 50000);
957 if (preg_match('/^<\?xml\s+version=(?:"[^"]*"|\'[^\']*\')\s+encoding=("[^"]*"|\'[^\']*\')/s', $html_head, $match)) {
958 $encoding = trim($match[1], '"\'');
959 } elseif (preg_match('/<meta\s+http-equiv=["\']?Content-Type["\']? content=["\'][^;]+;\s*charset=["\']?([^;"\'>]+)/i', $html_head, $match)) {
960 $encoding = trim($match[1]);
961 } elseif (preg_match_all('/<meta\s+([^>]+)>/i', $html_head, $match)) {
962 foreach ($match[1] as $_test) {
963 if (preg_match('/charset=["\']?([^"\']+)/i', $_test, $_m)) {
964 $encoding = trim($_m[1]);
965 break;
966 }
967 }
968 }
969 }
970 if (isset($encoding)) $encoding = trim($encoding);
971 // trim is important here!
972 if (!$encoding || (strtolower($encoding) == 'iso-8859-1')) {
973 // replace MS Word smart qutoes
974 $trans = array();
975 $trans[chr(130)] = '&sbquo;'; // Single Low-9 Quotation Mark
976 $trans[chr(131)] = '&fnof;'; // Latin Small Letter F With Hook
977 $trans[chr(132)] = '&bdquo;'; // Double Low-9 Quotation Mark
978 $trans[chr(133)] = '&hellip;'; // Horizontal Ellipsis
979 $trans[chr(134)] = '&dagger;'; // Dagger
980 $trans[chr(135)] = '&Dagger;'; // Double Dagger
981 $trans[chr(136)] = '&circ;'; // Modifier Letter Circumflex Accent
982 $trans[chr(137)] = '&permil;'; // Per Mille Sign
983 $trans[chr(138)] = '&Scaron;'; // Latin Capital Letter S With Caron
984 $trans[chr(139)] = '&lsaquo;'; // Single Left-Pointing Angle Quotation Mark
985 $trans[chr(140)] = '&OElig;'; // Latin Capital Ligature OE
986 $trans[chr(145)] = '&lsquo;'; // Left Single Quotation Mark
987 $trans[chr(146)] = '&rsquo;'; // Right Single Quotation Mark
988 $trans[chr(147)] = '&ldquo;'; // Left Double Quotation Mark
989 $trans[chr(148)] = '&rdquo;'; // Right Double Quotation Mark
990 $trans[chr(149)] = '&bull;'; // Bullet
991 $trans[chr(150)] = '&ndash;'; // En Dash
992 $trans[chr(151)] = '&mdash;'; // Em Dash
993 $trans[chr(152)] = '&tilde;'; // Small Tilde
994 $trans[chr(153)] = '&trade;'; // Trade Mark Sign
995 $trans[chr(154)] = '&scaron;'; // Latin Small Letter S With Caron
996 $trans[chr(155)] = '&rsaquo;'; // Single Right-Pointing Angle Quotation Mark
997 $trans[chr(156)] = '&oelig;'; // Latin Small Ligature OE
998 $trans[chr(159)] = '&Yuml;'; // Latin Capital Letter Y With Diaeresis
999 $html = strtr($html, $trans);
1000 }
1001 if (!$encoding) {
1002 debug('No character encoding found, so treating as UTF-8');
1003 $encoding = 'utf-8';
1004 } else {
1005 debug('Character encoding: '.$encoding);
1006 if (strtolower($encoding) != 'utf-8') {
1007 debug('Converting to UTF-8');
1008 $html = SimplePie_Misc::change_encoding($html, $encoding, 'utf-8');
1009 /*
1010 if (function_exists('iconv')) {
1011 // iconv appears to handle certain character encodings better than mb_convert_encoding
1012 $html = iconv($encoding, 'utf-8', $html);
1013 } else {
1014 $html = mb_convert_encoding($html, 'utf-8', $encoding);
1015 }
1016 */
1017 }
1018 }
1019 }
1020 return $html;
1021}
1022
1023function makeAbsolute($base, $elem) {
1024 $base = new SimplePie_IRI($base);
1025 // remove '//' in URL path (used to prevent URLs from resolving properly)
1026 // TODO: check if this is still the case
1027 if (isset($base->path)) $base->path = preg_replace('!//+!', '/', $base->path);
1028 foreach(array('a'=>'href', 'img'=>'src') as $tag => $attr) {
1029 $elems = $elem->getElementsByTagName($tag);
1030 for ($i = $elems->length-1; $i >= 0; $i--) {
1031 $e = $elems->item($i);
1032 //$e->parentNode->replaceChild($articleContent->ownerDocument->createTextNode($e->textContent), $e);
1033 makeAbsoluteAttr($base, $e, $attr);
1034 }
1035 if (strtolower($elem->tagName) == $tag) makeAbsoluteAttr($base, $elem, $attr);
1036 }
1037}
1038function makeAbsoluteAttr($base, $e, $attr) {
1039 if ($e->hasAttribute($attr)) {
1040 // Trim leading and trailing white space. I don't really like this but
1041 // unfortunately it does appear on some sites. e.g. <img src=" /path/to/image.jpg" />
1042 $url = trim(str_replace('%20', ' ', $e->getAttribute($attr)));
1043 $url = str_replace(' ', '%20', $url);
1044 if (!preg_match('!https?://!i', $url)) {
1045 if ($absolute = SimplePie_IRI::absolutize($base, $url)) {
1046 $e->setAttribute($attr, $absolute);
1047 }
1048 }
1049 }
1050}
1051function makeAbsoluteStr($base, $url) {
1052 $base = new SimplePie_IRI($base);
1053 // remove '//' in URL path (causes URLs not to resolve properly)
1054 if (isset($base->path)) $base->path = preg_replace('!//+!', '/', $base->path);
1055 if (preg_match('!^https?://!i', $url)) {
1056 // already absolute
1057 return $url;
1058 } else {
1059 if ($absolute = SimplePie_IRI::absolutize($base, $url)) {
1060 return $absolute;
1061 }
1062 return false;
1063 }
1064}
1065// returns single page response, or false if not found
1066function getSinglePage($item, $html, $url) {
1067 global $http, $extractor;
1068 debug('Looking for site config files to see if single page link exists');
1069 $site_config = $extractor->buildSiteConfig($url, $html);
1070 $splink = null;
1071 if (!empty($site_config->single_page_link)) {
1072 $splink = $site_config->single_page_link;
1073 } elseif (!empty($site_config->single_page_link_in_feed)) {
1074 // single page link xpath is targeted at feed
1075 $splink = $site_config->single_page_link_in_feed;
1076 // so let's replace HTML with feed item description
1077 $html = $item->get_description();
1078 }
1079 if (isset($splink)) {
1080 // Build DOM tree from HTML
1081 $readability = new Readability($html, $url);
1082 $xpath = new DOMXPath($readability->dom);
1083 // Loop through single_page_link xpath expressions
1084 $single_page_url = null;
1085 foreach ($splink as $pattern) {
1086 $elems = @$xpath->evaluate($pattern, $readability->dom);
1087 if (is_string($elems)) {
1088 $single_page_url = trim($elems);
1089 break;
1090 } elseif ($elems instanceof DOMNodeList && $elems->length > 0) {
1091 foreach ($elems as $item) {
1092 if ($item instanceof DOMElement && $item->hasAttribute('href')) {
1093 $single_page_url = $item->getAttribute('href');
1094 break 2;
1095 } elseif ($item instanceof DOMAttr && $item->value) {
1096 $single_page_url = $item->value;
1097 break 2;
1098 }
1099 }
1100 }
1101 }
1102 // If we've got URL, resolve against $url
1103 if (isset($single_page_url) && ($single_page_url = makeAbsoluteStr($url, $single_page_url))) {
1104 // check it's not what we have already!
1105 if ($single_page_url != $url) {
1106 // it's not, so let's try to fetch it...
1107 $_prev_ref = $http->referer;
1108 $http->referer = $single_page_url;
1109 if (($response = $http->get($single_page_url, true)) && $response['status_code'] < 300) {
1110 $http->referer = $_prev_ref;
1111 return $response;
1112 }
1113 $http->referer = $_prev_ref;
1114 }
1115 }
1116 }
1117 return false;
1118}
1119
1120// based on content-type http header, decide what to do
1121// param: HTTP headers string
1122// return: array with keys: 'mime', 'type', 'subtype', 'action', 'name'
1123// e.g. array('mime'=>'image/jpeg', 'type'=>'image', 'subtype'=>'jpeg', 'action'=>'link', 'name'=>'Image')
1124function get_mime_action_info($headers) {
1125 global $options;
1126 // check if action defined for returned Content-Type
1127 $info = array();
1128 if (preg_match('!^Content-Type:\s*(([-\w]+)/([-\w\+]+))!im', $headers, $match)) {
1129 // look for full mime type (e.g. image/jpeg) or just type (e.g. image)
1130 // match[1] = full mime type, e.g. image/jpeg
1131 // match[2] = first part, e.g. image
1132 // match[3] = last part, e.g. jpeg
1133 $info['mime'] = strtolower(trim($match[1]));
1134 $info['type'] = strtolower(trim($match[2]));
1135 $info['subtype'] = strtolower(trim($match[3]));
1136 foreach (array($info['mime'], $info['type']) as $_mime) {
1137 if (isset($options->content_type_exc[$_mime])) {
1138 $info['action'] = $options->content_type_exc[$_mime]['action'];
1139 $info['name'] = $options->content_type_exc[$_mime]['name'];
1140 break;
1141 }
1142 }
1143 }
1144 return $info;
1145}
1146
1147function remove_url_cruft($url) {
1148 // remove google analytics for the time being
1149 // regex adapted from http://navitronic.co.uk/2010/12/removing-google-analytics-cruft-from-urls/
1150 // https://gist.github.com/758177
1151 return preg_replace('/(\?|\&)utm_[a-z]+=[^\&]+/', '', $url);
1152}
1153
1154function make_substitutions($string) {
1155 if ($string == '') return $string;
1156 global $item, $effective_url;
1157 $string = str_replace('{url}', htmlspecialchars($item->get_permalink()), $string);
1158 $string = str_replace('{effective-url}', htmlspecialchars($effective_url), $string);
1159 return $string;
1160}
1161
1162function get_cache() {
1163 global $options, $valid_key;
1164 static $cache = null;
1165 if ($cache === null) {
1166 $frontendOptions = array(
1167 'lifetime' => 10*60, // cache lifetime of 10 minutes
1168 'automatic_serialization' => false,
1169 'write_control' => false,
1170 'automatic_cleaning_factor' => $options->cache_cleanup,
1171 'ignore_user_abort' => false
1172 );
1173 $backendOptions = array(
1174 'cache_dir' => ($valid_key) ? $options->cache_dir.'/rss-with-key/' : $options->cache_dir.'/rss/', // directory where to put the cache files
1175 'file_locking' => false,
1176 'read_control' => true,
1177 'read_control_type' => 'strlen',
1178 'hashed_directory_level' => $options->cache_directory_level,
1179 'hashed_directory_perm' => 0777,
1180 'cache_file_perm' => 0664,
1181 'file_name_prefix' => 'ff'
1182 );
1183 // getting a Zend_Cache_Core object
1184 $cache = Zend_Cache::factory('Core', 'File', $frontendOptions, $backendOptions);
1185 }
1186 return $cache;
1187}
1188
1189function debug($msg) {
1190 global $debug_mode;
1191 if ($debug_mode) {
1192 echo '* ',$msg,"\n";
1193 ob_flush();
1194 flush();
1195 }
1196} \ No newline at end of file
diff --git a/inc/3rdparty/makefulltextfeedHelpers.php b/inc/3rdparty/makefulltextfeedHelpers.php
new file mode 100755
index 00000000..1c11b8f6
--- /dev/null
+++ b/inc/3rdparty/makefulltextfeedHelpers.php
@@ -0,0 +1,355 @@
1<?php
2
3// Autoloading of classes allows us to include files only when they're
4// needed. If we've got a cached copy, for example, only Zend_Cache is loaded.
5function autoload($class_name) {
6 static $dir = null;
7 if ($dir === null) $dir = dirname(__FILE__).'/libraries/';
8 static $mapping = array(
9 // Include FeedCreator for RSS/Atom creation
10 'FeedWriter' => 'feedwriter/FeedWriter.php',
11 'FeedItem' => 'feedwriter/FeedItem.php',
12 // Include ContentExtractor and Readability for identifying and extracting content from URLs
13 'ContentExtractor' => 'content-extractor/ContentExtractor.php',
14 'SiteConfig' => 'content-extractor/SiteConfig.php',
15 'Readability' => 'readability/Readability.php',
16 // Include Humble HTTP Agent to allow parallel requests and response caching
17 'HumbleHttpAgent' => 'humble-http-agent/HumbleHttpAgent.php',
18 'SimplePie_HumbleHttpAgent' => 'humble-http-agent/SimplePie_HumbleHttpAgent.php',
19 'CookieJar' => 'humble-http-agent/CookieJar.php',
20 // Include Zend Cache to improve performance (cache results)
21 'Zend_Cache' => 'Zend/Cache.php',
22 // Language detect
23 'Text_LanguageDetect' => 'language-detect/LanguageDetect.php',
24 // HTML5 Lib
25 'HTML5_Parser' => 'html5/Parser.php',
26 // htmLawed - used if XSS filter is enabled (xss_filter)
27 'htmLawed' => 'htmLawed/htmLawed.php'
28 );
29 if (isset($mapping[$class_name])) {
30 debug("** Loading class $class_name ({$mapping[$class_name]})");
31 require $dir.$mapping[$class_name];
32 return true;
33 } else {
34 return false;
35 }
36}
37spl_autoload_register('autoload');
38require dirname(__FILE__).'/libraries/simplepie/autoloader.php';
39
40
41class DummySingleItemFeed {
42 public $item;
43 function __construct($url) { $this->item = new DummySingleItem($url); }
44 public function get_title() { return ''; }
45 public function get_description() { return 'Content extracted from '.$this->item->url; }
46 public function get_link() { return $this->item->url; }
47 public function get_language() { return false; }
48 public function get_image_url() { return false; }
49 public function get_items($start=0, $max=1) { return array(0=>$this->item); }
50}
51class DummySingleItem {
52 public $url;
53 function __construct($url) { $this->url = $url; }
54 public function get_permalink() { return $this->url; }
55 public function get_title() { return null; }
56 public function get_date($format='') { return false; }
57 public function get_author($key=0) { return null; }
58 public function get_authors() { return null; }
59 public function get_description() { return ''; }
60 public function get_enclosure($key=0, $prefer=null) { return null; }
61 public function get_enclosures() { return null; }
62 public function get_categories() { return null; }
63}
64
65///////////////////////////////
66// HELPER FUNCTIONS
67///////////////////////////////
68
69function url_allowed($url) {
70 global $options;
71 if (!empty($options->allowed_urls)) {
72 $allowed = false;
73 foreach ($options->allowed_urls as $allowurl) {
74 if (stristr($url, $allowurl) !== false) {
75 $allowed = true;
76 break;
77 }
78 }
79 if (!$allowed) return false;
80 } else {
81 foreach ($options->blocked_urls as $blockurl) {
82 if (stristr($url, $blockurl) !== false) {
83 return false;
84 }
85 }
86 }
87 return true;
88}
89
90//////////////////////////////////////////////
91// Convert $html to UTF8
92// (uses HTTP headers and HTML to find encoding)
93// adapted from http://stackoverflow.com/questions/910793/php-detect-encoding-and-make-everything-utf-8
94//////////////////////////////////////////////
95function convert_to_utf8($html, $header=null)
96{
97 $encoding = null;
98 if ($html || $header) {
99 if (is_array($header)) $header = implode("\n", $header);
100 if (!$header || !preg_match_all('/^Content-Type:\s+([^;]+)(?:;\s*charset=["\']?([^;"\'\n]*))?/im', $header, $match, PREG_SET_ORDER)) {
101 // error parsing the response
102 debug('Could not find Content-Type header in HTTP response');
103 } else {
104 $match = end($match); // get last matched element (in case of redirects)
105 if (isset($match[2])) $encoding = trim($match[2], "\"' \r\n\0\x0B\t");
106 }
107 // TODO: check to see if encoding is supported (can we convert it?)
108 // If it's not, result will be empty string.
109 // For now we'll check for invalid encoding types returned by some sites, e.g. 'none'
110 // Problem URL: http://facta.co.jp/blog/archives/20111026001026.html
111 if (!$encoding || $encoding == 'none') {
112 // search for encoding in HTML - only look at the first 50000 characters
113 // Why 50000? See, for example, http://www.lemonde.fr/festival-de-cannes/article/2012/05/23/deux-cretes-en-goguette-sur-la-croisette_1705732_766360.html
114 // TODO: improve this so it looks at smaller chunks first
115 $html_head = substr($html, 0, 50000);
116 if (preg_match('/^<\?xml\s+version=(?:"[^"]*"|\'[^\']*\')\s+encoding=("[^"]*"|\'[^\']*\')/s', $html_head, $match)) {
117 $encoding = trim($match[1], '"\'');
118 } elseif (preg_match('/<meta\s+http-equiv=["\']?Content-Type["\']? content=["\'][^;]+;\s*charset=["\']?([^;"\'>]+)/i', $html_head, $match)) {
119 $encoding = trim($match[1]);
120 } elseif (preg_match_all('/<meta\s+([^>]+)>/i', $html_head, $match)) {
121 foreach ($match[1] as $_test) {
122 if (preg_match('/charset=["\']?([^"\']+)/i', $_test, $_m)) {
123 $encoding = trim($_m[1]);
124 break;
125 }
126 }
127 }
128 }
129 if (isset($encoding)) $encoding = trim($encoding);
130 // trim is important here!
131 if (!$encoding || (strtolower($encoding) == 'iso-8859-1')) {
132 // replace MS Word smart qutoes
133 $trans = array();
134 $trans[chr(130)] = '&sbquo;'; // Single Low-9 Quotation Mark
135 $trans[chr(131)] = '&fnof;'; // Latin Small Letter F With Hook
136 $trans[chr(132)] = '&bdquo;'; // Double Low-9 Quotation Mark
137 $trans[chr(133)] = '&hellip;'; // Horizontal Ellipsis
138 $trans[chr(134)] = '&dagger;'; // Dagger
139 $trans[chr(135)] = '&Dagger;'; // Double Dagger
140 $trans[chr(136)] = '&circ;'; // Modifier Letter Circumflex Accent
141 $trans[chr(137)] = '&permil;'; // Per Mille Sign
142 $trans[chr(138)] = '&Scaron;'; // Latin Capital Letter S With Caron
143 $trans[chr(139)] = '&lsaquo;'; // Single Left-Pointing Angle Quotation Mark
144 $trans[chr(140)] = '&OElig;'; // Latin Capital Ligature OE
145 $trans[chr(145)] = '&lsquo;'; // Left Single Quotation Mark
146 $trans[chr(146)] = '&rsquo;'; // Right Single Quotation Mark
147 $trans[chr(147)] = '&ldquo;'; // Left Double Quotation Mark
148 $trans[chr(148)] = '&rdquo;'; // Right Double Quotation Mark
149 $trans[chr(149)] = '&bull;'; // Bullet
150 $trans[chr(150)] = '&ndash;'; // En Dash
151 $trans[chr(151)] = '&mdash;'; // Em Dash
152 $trans[chr(152)] = '&tilde;'; // Small Tilde
153 $trans[chr(153)] = '&trade;'; // Trade Mark Sign
154 $trans[chr(154)] = '&scaron;'; // Latin Small Letter S With Caron
155 $trans[chr(155)] = '&rsaquo;'; // Single Right-Pointing Angle Quotation Mark
156 $trans[chr(156)] = '&oelig;'; // Latin Small Ligature OE
157 $trans[chr(159)] = '&Yuml;'; // Latin Capital Letter Y With Diaeresis
158 $html = strtr($html, $trans);
159 }
160 if (!$encoding) {
161 debug('No character encoding found, so treating as UTF-8');
162 $encoding = 'utf-8';
163 } else {
164 debug('Character encoding: '.$encoding);
165 if (strtolower($encoding) != 'utf-8') {
166 debug('Converting to UTF-8');
167 $html = SimplePie_Misc::change_encoding($html, $encoding, 'utf-8');
168 /*
169 if (function_exists('iconv')) {
170 // iconv appears to handle certain character encodings better than mb_convert_encoding
171 $html = iconv($encoding, 'utf-8', $html);
172 } else {
173 $html = mb_convert_encoding($html, 'utf-8', $encoding);
174 }
175 */
176 }
177 }
178 }
179 return $html;
180}
181
182function makeAbsolute($base, $elem) {
183 $base = new SimplePie_IRI($base);
184 // remove '//' in URL path (used to prevent URLs from resolving properly)
185 // TODO: check if this is still the case
186 if (isset($base->path)) $base->path = preg_replace('!//+!', '/', $base->path);
187 foreach(array('a'=>'href', 'img'=>'src') as $tag => $attr) {
188 $elems = $elem->getElementsByTagName($tag);
189 for ($i = $elems->length-1; $i >= 0; $i--) {
190 $e = $elems->item($i);
191 //$e->parentNode->replaceChild($articleContent->ownerDocument->createTextNode($e->textContent), $e);
192 makeAbsoluteAttr($base, $e, $attr);
193 }
194 if (strtolower($elem->tagName) == $tag) makeAbsoluteAttr($base, $elem, $attr);
195 }
196}
197function makeAbsoluteAttr($base, $e, $attr) {
198 if ($e->hasAttribute($attr)) {
199 // Trim leading and trailing white space. I don't really like this but
200 // unfortunately it does appear on some sites. e.g. <img src=" /path/to/image.jpg" />
201 $url = trim(str_replace('%20', ' ', $e->getAttribute($attr)));
202 $url = str_replace(' ', '%20', $url);
203 if (!preg_match('!https?://!i', $url)) {
204 if ($absolute = SimplePie_IRI::absolutize($base, $url)) {
205 $e->setAttribute($attr, $absolute);
206 }
207 }
208 }
209}
210function makeAbsoluteStr($base, $url) {
211 $base = new SimplePie_IRI($base);
212 // remove '//' in URL path (causes URLs not to resolve properly)
213 if (isset($base->path)) $base->path = preg_replace('!//+!', '/', $base->path);
214 if (preg_match('!^https?://!i', $url)) {
215 // already absolute
216 return $url;
217 } else {
218 if ($absolute = SimplePie_IRI::absolutize($base, $url)) {
219 return $absolute;
220 }
221 return false;
222 }
223}
224// returns single page response, or false if not found
225function getSinglePage($item, $html, $url) {
226 global $http, $extractor;
227 debug('Looking for site config files to see if single page link exists');
228 $site_config = $extractor->buildSiteConfig($url, $html);
229 $splink = null;
230 if (!empty($site_config->single_page_link)) {
231 $splink = $site_config->single_page_link;
232 } elseif (!empty($site_config->single_page_link_in_feed)) {
233 // single page link xpath is targeted at feed
234 $splink = $site_config->single_page_link_in_feed;
235 // so let's replace HTML with feed item description
236 $html = $item->get_description();
237 }
238 if (isset($splink)) {
239 // Build DOM tree from HTML
240 $readability = new Readability($html, $url);
241 $xpath = new DOMXPath($readability->dom);
242 // Loop through single_page_link xpath expressions
243 $single_page_url = null;
244 foreach ($splink as $pattern) {
245 $elems = @$xpath->evaluate($pattern, $readability->dom);
246 if (is_string($elems)) {
247 $single_page_url = trim($elems);
248 break;
249 } elseif ($elems instanceof DOMNodeList && $elems->length > 0) {
250 foreach ($elems as $item) {
251 if ($item instanceof DOMElement && $item->hasAttribute('href')) {
252 $single_page_url = $item->getAttribute('href');
253 break 2;
254 } elseif ($item instanceof DOMAttr && $item->value) {
255 $single_page_url = $item->value;
256 break 2;
257 }
258 }
259 }
260 }
261 // If we've got URL, resolve against $url
262 if (isset($single_page_url) && ($single_page_url = makeAbsoluteStr($url, $single_page_url))) {
263 // check it's not what we have already!
264 if ($single_page_url != $url) {
265 // it's not, so let's try to fetch it...
266 $_prev_ref = $http->referer;
267 $http->referer = $single_page_url;
268 if (($response = $http->get($single_page_url, true)) && $response['status_code'] < 300) {
269 $http->referer = $_prev_ref;
270 return $response;
271 }
272 $http->referer = $_prev_ref;
273 }
274 }
275 }
276 return false;
277}
278
279// based on content-type http header, decide what to do
280// param: HTTP headers string
281// return: array with keys: 'mime', 'type', 'subtype', 'action', 'name'
282// e.g. array('mime'=>'image/jpeg', 'type'=>'image', 'subtype'=>'jpeg', 'action'=>'link', 'name'=>'Image')
283function get_mime_action_info($headers) {
284 global $options;
285 // check if action defined for returned Content-Type
286 $info = array();
287 if (preg_match('!^Content-Type:\s*(([-\w]+)/([-\w\+]+))!im', $headers, $match)) {
288 // look for full mime type (e.g. image/jpeg) or just type (e.g. image)
289 // match[1] = full mime type, e.g. image/jpeg
290 // match[2] = first part, e.g. image
291 // match[3] = last part, e.g. jpeg
292 $info['mime'] = strtolower(trim($match[1]));
293 $info['type'] = strtolower(trim($match[2]));
294 $info['subtype'] = strtolower(trim($match[3]));
295 foreach (array($info['mime'], $info['type']) as $_mime) {
296 if (isset($options->content_type_exc[$_mime])) {
297 $info['action'] = $options->content_type_exc[$_mime]['action'];
298 $info['name'] = $options->content_type_exc[$_mime]['name'];
299 break;
300 }
301 }
302 }
303 return $info;
304}
305
306function remove_url_cruft($url) {
307 // remove google analytics for the time being
308 // regex adapted from http://navitronic.co.uk/2010/12/removing-google-analytics-cruft-from-urls/
309 // https://gist.github.com/758177
310 return preg_replace('/(\?|\&)utm_[a-z]+=[^\&]+/', '', $url);
311}
312
313function make_substitutions($string) {
314 if ($string == '') return $string;
315 global $item, $effective_url;
316 $string = str_replace('{url}', htmlspecialchars($item->get_permalink()), $string);
317 $string = str_replace('{effective-url}', htmlspecialchars($effective_url), $string);
318 return $string;
319}
320
321function get_cache() {
322 global $options, $valid_key;
323 static $cache = null;
324 if ($cache === null) {
325 $frontendOptions = array(
326 'lifetime' => 10*60, // cache lifetime of 10 minutes
327 'automatic_serialization' => false,
328 'write_control' => false,
329 'automatic_cleaning_factor' => $options->cache_cleanup,
330 'ignore_user_abort' => false
331 );
332 $backendOptions = array(
333 'cache_dir' => ($valid_key) ? $options->cache_dir.'/rss-with-key/' : $options->cache_dir.'/rss/', // directory where to put the cache files
334 'file_locking' => false,
335 'read_control' => true,
336 'read_control_type' => 'strlen',
337 'hashed_directory_level' => $options->cache_directory_level,
338 'hashed_directory_perm' => 0777,
339 'cache_file_perm' => 0664,
340 'file_name_prefix' => 'ff'
341 );
342 // getting a Zend_Cache_Core object
343 $cache = Zend_Cache::factory('Core', 'File', $frontendOptions, $backendOptions);
344 }
345 return $cache;
346}
347
348function debug($msg) {
349 global $debug_mode;
350 if ($debug_mode) {
351 echo '* ',$msg,"\n";
352 ob_flush();
353 flush();
354 }
355}
diff --git a/index.php b/index.php
index a26c42e1..7260e583 100644
--- a/index.php
+++ b/index.php
@@ -30,7 +30,7 @@ $tpl_vars = array(
30 'referer' => $referer, 30 'referer' => $referer,
31 'view' => $view, 31 'view' => $view,
32 'poche_url' => Tools::getPocheUrl(), 32 'poche_url' => Tools::getPocheUrl(),
33 'title' => _('poche, a read it later open source system'), 33 'title' => _('wallabag, a read it later open source system'),
34 'token' => Session::getToken(), 34 'token' => Session::getToken(),
35 'theme' => $poche->getTheme() 35 'theme' => $poche->getTheme()
36); 36);
diff --git a/locale/cs_CZ.utf8/LC_MESSAGES/cs_CZ.utf8.po b/locale/cs_CZ.utf8/LC_MESSAGES/cs_CZ.utf8.po
index 8209a9cd..cf727432 100644
--- a/locale/cs_CZ.utf8/LC_MESSAGES/cs_CZ.utf8.po
+++ b/locale/cs_CZ.utf8/LC_MESSAGES/cs_CZ.utf8.po
@@ -4,54 +4,137 @@
4msgid "" 4msgid ""
5msgstr "" 5msgstr ""
6"Project-Id-Version: poche\n" 6"Project-Id-Version: poche\n"
7"POT-Creation-Date: \n" 7"Report-Msgid-Bugs-To: \n"
8"PO-Revision-Date: 2013-10-08 13:25+0100\n" 8"POT-Creation-Date: 2014-02-25 15:28+0300\n"
9"Last-Translator: Nicolas Lœuillet <nicolas.loeuillet@gmail.com>\n" 9"PO-Revision-Date: 2014-02-25 15:29+0300\n"
10"Language-Team: Czech (http://www.transifex.com/projects/p/poche/language/" 10"Last-Translator: Maryana <mariroz@mr.lviv.ua>\n"
11"cs/)\n" 11"Language-Team: Czech (http://www.transifex.com/projects/p/poche/language/cs/)\n"
12"Language: cs\n"
12"MIME-Version: 1.0\n" 13"MIME-Version: 1.0\n"
13"Content-Type: text/plain; charset=UTF-8\n" 14"Content-Type: text/plain; charset=UTF-8\n"
14"Content-Transfer-Encoding: 8bit\n" 15"Content-Transfer-Encoding: 8bit\n"
15"Language: cs\n"
16"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" 16"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
17"X-Generator: Poedit 1.5.4\n" 17"X-Generator: Poedit 1.5.4\n"
18"X-Poedit-Language: Czech\n"
19"X-Poedit-Basepath: .\n"
20"X-Poedit-SearchPath-0: /home/mariroz/_DEV/web/wallabag/wallabag-master-testing\n"
21
22msgid "wallabag, a read it later open source system"
23msgstr ""
24
25msgid "login failed: user doesn't exist"
26msgstr ""
27
28msgid "return home"
29msgstr ""
18 30
19msgid "config" 31msgid "config"
20msgstr "nastavení" 32msgstr "nastavení"
21 33
22msgid "Poching a link" 34msgid "Saving articles"
23msgstr "Odkaz se ukládá" 35msgstr ""
36
37msgid "There are several ways to save an article:"
38msgstr ""
24 39
25msgid "read the documentation" 40msgid "read the documentation"
26msgstr "číst dokumentaci" 41msgstr "číst dokumentaci"
27 42
28msgid "by filling this field" 43msgid "download the extension"
44msgstr ""
45
46msgid "via F-Droid"
47msgstr ""
48
49msgid " or "
50msgstr ""
51
52msgid "via Google Play"
53msgstr ""
54
55msgid "download the application"
56msgstr ""
57
58#, fuzzy
59msgid "By filling this field"
29msgstr "vyplněním tohoto pole" 60msgstr "vyplněním tohoto pole"
30 61
31msgid "poche it!" 62msgid "bag it!"
32msgstr "uložit!" 63msgstr ""
33 64
34msgid "Updating poche" 65msgid "Bookmarklet: drag & drop this link to your bookmarks bar"
35msgstr "Poche se aktualizuje" 66msgstr ""
36 67
37msgid "your version" 68msgid "Upgrading wallabag"
38msgstr "vaše verze" 69msgstr ""
39 70
40msgid "latest stable version" 71#, fuzzy
72msgid "Installed version"
41msgstr "poslední stabilní verze" 73msgstr "poslední stabilní verze"
42 74
43msgid "a more recent stable version is available." 75#, fuzzy
76msgid "Latest stable version"
77msgstr "poslední stabilní verze"
78
79#, fuzzy
80msgid "A more recent stable version is available."
44msgstr "je k dispozici novější stabilní verze." 81msgstr "je k dispozici novější stabilní verze."
45 82
46msgid "you are up to date." 83#, fuzzy
84msgid "You are up to date."
47msgstr "je aktuální" 85msgstr "je aktuální"
48 86
49msgid "latest dev version" 87#, fuzzy
88msgid "Latest dev version"
50msgstr "poslední vývojová verze" 89msgstr "poslední vývojová verze"
51 90
52msgid "a more recent development version is available." 91#, fuzzy
92msgid "A more recent development version is available."
53msgstr "je k dispozici novější vývojová verze." 93msgstr "je k dispozici novější vývojová verze."
54 94
95msgid "Feeds"
96msgstr ""
97
98msgid "Your feed token is currently empty and must first be generated to enable feeds. Click <a href='?feed&amp;action=generate'>here to generate it</a>."
99msgstr ""
100
101msgid "Unread feed"
102msgstr ""
103
104#, fuzzy
105msgid "Favorites feed"
106msgstr "oblíbené"
107
108#, fuzzy
109msgid "Archive feed"
110msgstr "archív"
111
112msgid "Your token:"
113msgstr ""
114
115msgid "Your user id:"
116msgstr ""
117
118msgid "You can regenerate your token: <a href='?feed&amp;action=generate'>generate!</a>."
119msgstr ""
120
121#, fuzzy
122msgid "Change your theme"
123msgstr "Změnit heslo"
124
125msgid "Theme:"
126msgstr ""
127
128msgid "Update"
129msgstr "Aktualizovat"
130
131#, fuzzy
132msgid "Change your language"
133msgstr "Změnit heslo"
134
135msgid "Language:"
136msgstr ""
137
55msgid "Change your password" 138msgid "Change your password"
56msgstr "Změnit heslo" 139msgstr "Změnit heslo"
57 140
@@ -64,65 +147,68 @@ msgstr "Heslo"
64msgid "Repeat your new password:" 147msgid "Repeat your new password:"
65msgstr "Znovu nové heslo:" 148msgstr "Znovu nové heslo:"
66 149
67msgid "Update"
68msgstr "Aktualizovat"
69
70msgid "Import" 150msgid "Import"
71msgstr "Importovat" 151msgstr "Importovat"
72 152
73msgid "Please execute the import script locally, it can take a very long time." 153#, fuzzy
154msgid "Please execute the import script locally as it can take a very long time."
74msgstr "Spusťte importní skript lokálně, může to dlouho trvat." 155msgstr "Spusťte importní skript lokálně, může to dlouho trvat."
75 156
76msgid "More info in the official doc:" 157#, fuzzy
158msgid "More info in the official documentation:"
77msgstr "Více informací v oficiální dokumentaci:" 159msgstr "Více informací v oficiální dokumentaci:"
78 160
79msgid "import from Pocket" 161#, fuzzy
162msgid "Import from Pocket"
80msgstr "importovat z Pocket" 163msgstr "importovat z Pocket"
81 164
82msgid "import from Readability" 165#, php-format
166msgid "(you must have a %s file on your server)"
167msgstr ""
168
169#, fuzzy
170msgid "Import from Readability"
83msgstr "importovat z Readability" 171msgstr "importovat z Readability"
84 172
85msgid "import from Instapaper" 173#, fuzzy
174msgid "Import from Instapaper"
86msgstr "importovat z Instapaper" 175msgstr "importovat z Instapaper"
87 176
88msgid "Export your poche data" 177#, fuzzy
178msgid "Import from wallabag"
179msgstr "importovat z Readability"
180
181#, fuzzy
182msgid "Export your wallabag data"
89msgstr "Export dat" 183msgstr "Export dat"
90 184
91msgid "Click here" 185msgid "Click here"
92msgstr "Klikněte zde" 186msgstr "Klikněte zde"
93 187
94msgid "to export your poche data." 188msgid "to download your database."
95msgstr "pro export vašich dat." 189msgstr ""
96
97msgid "back to home"
98msgstr "zpět na úvod"
99 190
100msgid "installation" 191#, fuzzy
101msgstr "instalace" 192msgid "to export your wallabag data."
193msgstr "pro export vašich dat."
102 194
103msgid "install your poche" 195msgid "Cache"
104msgstr "instalovat" 196msgstr ""
105 197
106msgid "" 198msgid "to delete cache."
107"poche is still not installed. Please fill the below form to install it. "
108"Don't hesitate to <a href='http://doc.inthepoche.com'>read the documentation "
109"on poche website</a>."
110msgstr "" 199msgstr ""
111"poche ještě není nainstalováno. Pro instalaci vyplňte níže uvedený formulář. "
112"Nezapomeňte <a href='http://doc.inthepoche.com'>si přečíst dokumentaci</a> "
113"na stránkách programu."
114 200
115msgid "Login" 201msgid "You can enter multiple tags, separated by commas."
116msgstr "Jméno" 202msgstr ""
117 203
118msgid "Repeat your password" 204msgid "return to article"
119msgstr "Zopakujte heslo" 205msgstr ""
120 206
121msgid "Install" 207msgid "plop"
122msgstr "Instalovat" 208msgstr ""
123 209
124msgid "back to top" 210msgid "You can <a href='wallabag_compatibility_test.php'>check your configuration here</a>."
125msgstr "zpět na začátek" 211msgstr ""
126 212
127msgid "favoris" 213msgid "favoris"
128msgstr "oblíbené" 214msgstr "oblíbené"
@@ -151,10 +237,14 @@ msgstr "podle nadpisu"
151msgid "by title desc" 237msgid "by title desc"
152msgstr "podle nadpisu sestupně" 238msgstr "podle nadpisu sestupně"
153 239
154msgid "No link available here!" 240msgid "Tag"
155msgstr "Není k dispozici žádný odkaz!" 241msgstr ""
156 242
157msgid "toggle mark as read" 243msgid "No articles found."
244msgstr ""
245
246#, fuzzy
247msgid "Toggle mark as read"
158msgstr "označit jako přečtené" 248msgstr "označit jako přečtené"
159 249
160msgid "toggle favorite" 250msgid "toggle favorite"
@@ -166,13 +256,95 @@ msgstr "smazat"
166msgid "original" 256msgid "original"
167msgstr "originál" 257msgstr "originál"
168 258
259msgid "estimated reading time:"
260msgstr ""
261
262msgid "mark all the entries as read"
263msgstr ""
264
169msgid "results" 265msgid "results"
170msgstr "výsledky" 266msgstr "výsledky"
171 267
172msgid "tweet" 268msgid "installation"
269msgstr "instalace"
270
271#, fuzzy
272msgid "install your wallabag"
273msgstr "instalovat"
274
275#, fuzzy
276msgid "wallabag is still not installed. Please fill the below form to install it. Don't hesitate to <a href='http://doc.wallabag.org/'>read the documentation on wallabag website</a>."
277msgstr "poche ještě není nainstalováno. Pro instalaci vyplňte níže uvedený formulář. Nezapomeňte <a href='http://doc.inthepoche.com'>si přečíst dokumentaci</a> na stránkách programu."
278
279msgid "Login"
280msgstr "Jméno"
281
282msgid "Repeat your password"
283msgstr "Zopakujte heslo"
284
285msgid "Install"
286msgstr "Instalovat"
287
288#, fuzzy
289msgid "login to your wallabag"
290msgstr "přihlásit se k poche"
291
292msgid "Login to wallabag"
293msgstr ""
294
295msgid "you are in demo mode, some features may be disabled."
296msgstr "používáte ukázkový mód, některé funkce jsou zakázány."
297
298msgid "Username"
299msgstr ""
300
301msgid "Stay signed in"
302msgstr "Zůstat přihlášen(a)"
303
304msgid "(Do not check on public computers)"
305msgstr "(Nezaškrtávejte na veřejně dostupných počítačích)"
306
307msgid "Sign in"
308msgstr "Přihlásit se"
309
310msgid "favorites"
311msgstr "oblíbené"
312
313msgid "estimated reading time :"
314msgstr ""
315
316msgid "Mark all the entries as read"
317msgstr ""
318
319msgid "Return home"
320msgstr ""
321
322#, fuzzy
323msgid "Back to top"
324msgstr "zpět na začátek"
325
326#, fuzzy
327msgid "Mark as read"
328msgstr "označit jako přečtené"
329
330#, fuzzy
331msgid "Favorite"
332msgstr "oblíbené"
333
334#, fuzzy
335msgid "Toggle favorite"
336msgstr "označit jako oblíbené"
337
338#, fuzzy
339msgid "Delete"
340msgstr "smazat"
341
342#, fuzzy
343msgid "Tweet"
173msgstr "tweetnout" 344msgstr "tweetnout"
174 345
175msgid "email" 346#, fuzzy
347msgid "Email"
176msgstr "email" 348msgstr "email"
177 349
178msgid "shaarli" 350msgid "shaarli"
@@ -181,26 +353,24 @@ msgstr "shaarli"
181msgid "flattr" 353msgid "flattr"
182msgstr "flattr" 354msgstr "flattr"
183 355
184msgid "this article appears wrong?" 356#, fuzzy
357msgid "Does this article appear wrong?"
185msgstr "vypadá tento článek špatně?" 358msgstr "vypadá tento článek špatně?"
186 359
187msgid "create an issue" 360msgid "tags:"
188msgstr "odeslat požadavek" 361msgstr ""
189
190msgid "or"
191msgstr "nebo"
192 362
193msgid "contact us by mail" 363msgid "Edit tags"
194msgstr "kontaktovat e-mailem" 364msgstr ""
195 365
196msgid "plop" 366msgid "save link!"
197msgstr "" 367msgstr ""
198 368
199msgid "home" 369msgid "home"
200msgstr "domů" 370msgstr "domů"
201 371
202msgid "favorites" 372msgid "tags"
203msgstr "oblíbené" 373msgstr ""
204 374
205msgid "logout" 375msgid "logout"
206msgstr "odhlásit se" 376msgstr "odhlásit se"
@@ -211,23 +381,187 @@ msgstr "běží na"
211msgid "debug mode is on so cache is off." 381msgid "debug mode is on so cache is off."
212msgstr "je zapnut ladicí mód, proto je keš vypnuta." 382msgstr "je zapnut ladicí mód, proto je keš vypnuta."
213 383
214msgid "your poche version:" 384#, fuzzy
215msgstr "verze:" 385msgid "your wallabag version:"
386msgstr "vaše verze"
216 387
217msgid "storage:" 388msgid "storage:"
218msgstr "úložiště:" 389msgstr "úložiště:"
219 390
220msgid "login to your poche" 391msgid "save a link"
221msgstr "přihlásit se k poche" 392msgstr ""
222 393
223msgid "you are in demo mode, some features may be disabled." 394msgid "back to home"
224msgstr "používáte ukázkový mód, některé funkce jsou zakzány." 395msgstr "zpět na vod"
225 396
226msgid "Stay signed in" 397msgid "toggle mark as read"
227msgstr "Zůstat přihlášen(a)" 398msgstr "označit jako přečtené"
228 399
229msgid "(Do not check on public computers)" 400msgid "tweet"
230msgstr "(Nezaškrtávejte na veřejně dostupných počítačích)" 401msgstr "tweetnout"
231 402
232msgid "Sign in" 403msgid "email"
233msgstr "Přihlásit se" 404msgstr "email"
405
406msgid "this article appears wrong?"
407msgstr "vypadá tento článek špatně?"
408
409msgid "No link available here!"
410msgstr "Není k dispozici žádný odkaz!"
411
412msgid "Poching a link"
413msgstr "Odkaz se ukládá"
414
415msgid "by filling this field"
416msgstr "vyplněním tohoto pole"
417
418msgid "bookmarklet: drag & drop this link to your bookmarks bar"
419msgstr ""
420
421msgid "your version"
422msgstr "vaše verze"
423
424msgid "latest stable version"
425msgstr "poslední stabilní verze"
426
427msgid "a more recent stable version is available."
428msgstr "je k dispozici novější stabilní verze."
429
430msgid "you are up to date."
431msgstr "je aktuální"
432
433msgid "latest dev version"
434msgstr "poslední vývojová verze"
435
436msgid "a more recent development version is available."
437msgstr "je k dispozici novější vývojová verze."
438
439msgid "Please execute the import script locally, it can take a very long time."
440msgstr "Spusťte importní skript lokálně, může to dlouho trvat."
441
442#, fuzzy
443msgid "More infos in the official doc:"
444msgstr "Více informací v oficiální dokumentaci:"
445
446msgid "import from Pocket"
447msgstr "importovat z Pocket"
448
449msgid "import from Readability"
450msgstr "importovat z Readability"
451
452msgid "import from Instapaper"
453msgstr "importovat z Instapaper"
454
455msgid "Tags"
456msgstr ""
457
458#, fuzzy
459msgid "Untitled"
460msgstr "podle nadpisu"
461
462msgid "the link has been added successfully"
463msgstr ""
464
465msgid "error during insertion : the link wasn't added"
466msgstr ""
467
468msgid "the link has been deleted successfully"
469msgstr ""
470
471msgid "the link wasn't deleted"
472msgstr ""
473
474msgid "Article not found!"
475msgstr ""
476
477msgid "previous"
478msgstr ""
479
480msgid "next"
481msgstr ""
482
483msgid "in demo mode, you can't update your password"
484msgstr ""
485
486msgid "your password has been updated"
487msgstr ""
488
489msgid "the two fields have to be filled & the password must be the same in the two fields"
490msgstr ""
491
492msgid "still using the \""
493msgstr ""
494
495msgid "that theme does not seem to be installed"
496msgstr ""
497
498msgid "you have changed your theme preferences"
499msgstr ""
500
501msgid "that language does not seem to be installed"
502msgstr ""
503
504msgid "you have changed your language preferences"
505msgstr ""
506
507msgid "login failed: you have to fill all fields"
508msgstr ""
509
510msgid "welcome to your wallabag"
511msgstr ""
512
513msgid "login failed: bad login or password"
514msgstr ""
515
516#, fuzzy
517msgid "import from instapaper completed"
518msgstr "importovat z Instapaper"
519
520#, fuzzy
521msgid "import from pocket completed"
522msgstr "importovat z Pocket"
523
524#, fuzzy
525msgid "import from Readability completed. "
526msgstr "importovat z Readability"
527
528#, fuzzy
529msgid "import from Poche completed. "
530msgstr "importovat z Pocket"
531
532msgid "Unknown import provider."
533msgstr ""
534
535msgid "Incomplete inc/poche/define.inc.php file, please define \""
536msgstr ""
537
538msgid "Could not find required \""
539msgstr ""
540
541msgid "Uh, there is a problem while generating feeds."
542msgstr ""
543
544#, fuzzy
545msgid "Cache deleted."
546msgstr "smazat"
547
548msgid "Oops, it seems you don't have PHP 5."
549msgstr ""
550
551#~ msgid "poche it!"
552#~ msgstr "uložit!"
553
554#~ msgid "Updating poche"
555#~ msgstr "Poche se aktualizuje"
556
557#~ msgid "create an issue"
558#~ msgstr "odeslat požadavek"
559
560#~ msgid "or"
561#~ msgstr "nebo"
562
563#~ msgid "contact us by mail"
564#~ msgstr "kontaktovat e-mailem"
565
566#~ msgid "your poche version:"
567#~ msgstr "verze:"
diff --git a/locale/de_DE.utf8/LC_MESSAGES/de_DE.utf8.po b/locale/de_DE.utf8/LC_MESSAGES/de_DE.utf8.po
index 5b30d3d7..9abc5983 100644
--- a/locale/de_DE.utf8/LC_MESSAGES/de_DE.utf8.po
+++ b/locale/de_DE.utf8/LC_MESSAGES/de_DE.utf8.po
@@ -1,51 +1,136 @@
1msgid "" 1msgid ""
2msgstr "" 2msgstr ""
3"Project-Id-Version: \n" 3"Project-Id-Version: \n"
4"POT-Creation-Date: \n" 4"Report-Msgid-Bugs-To: \n"
5"POT-Creation-Date: 2014-02-25 15:28+0300\n"
5"PO-Revision-Date: \n" 6"PO-Revision-Date: \n"
6"Last-Translator: Square252\n" 7"Last-Translator: Maryana <mariroz@mr.lviv.ua>\n"
7"Language-Team: \n" 8"Language-Team: \n"
9"Language: \n"
8"MIME-Version: 1.0\n" 10"MIME-Version: 1.0\n"
9"Content-Type: text/plain; charset=UTF-8\n" 11"Content-Type: text/plain; charset=UTF-8\n"
10"Content-Transfer-Encoding: 8bit\n" 12"Content-Transfer-Encoding: 8bit\n"
11"X-Generator: Poedit 1.5.7\n" 13"X-Generator: Poedit 1.5.7\n"
14"X-Poedit-Language: German\n"
15"X-Poedit-Basepath: .\n"
16"X-Poedit-SearchPath-0: /home/mariroz/_DEV/web/wallabag/wallabag-master-testing\n"
17
18msgid "wallabag, a read it later open source system"
19msgstr ""
20
21msgid "login failed: user doesn't exist"
22msgstr ""
23
24msgid "return home"
25msgstr ""
12 26
13msgid "config" 27msgid "config"
14msgstr "Konfiguration" 28msgstr "Konfiguration"
15 29
16msgid "Poching a link" 30msgid "Saving articles"
17msgstr "Poche einen Link" 31msgstr ""
32
33msgid "There are several ways to save an article:"
34msgstr ""
18 35
19msgid "read the documentation" 36msgid "read the documentation"
20msgstr "Die Dokumentation lesen" 37msgstr "Die Dokumentation lesen"
21 38
22msgid "by filling this field" 39msgid "download the extension"
40msgstr ""
41
42msgid "via F-Droid"
43msgstr ""
44
45msgid " or "
46msgstr ""
47
48msgid "via Google Play"
49msgstr ""
50
51msgid "download the application"
52msgstr ""
53
54#, fuzzy
55msgid "By filling this field"
23msgstr "durch das ausfüllen dieses Feldes:" 56msgstr "durch das ausfüllen dieses Feldes:"
24 57
25msgid "poche it!" 58msgid "bag it!"
26msgstr "Poche es!" 59msgstr ""
27 60
28msgid "Updating poche" 61msgid "Bookmarklet: drag & drop this link to your bookmarks bar"
29msgstr "Poche aktualisieren" 62msgstr ""
30 63
31msgid "your version" 64msgid "Upgrading wallabag"
32msgstr "Deine Version" 65msgstr ""
33 66
34msgid "latest stable version" 67#, fuzzy
68msgid "Installed version"
35msgstr "Neuste stabile Version" 69msgstr "Neuste stabile Version"
36 70
37msgid "a more recent stable version is available." 71#, fuzzy
72msgid "Latest stable version"
73msgstr "Neuste stabile Version"
74
75#, fuzzy
76msgid "A more recent stable version is available."
38msgstr "Eine neuere stabile Version ist verfügbar." 77msgstr "Eine neuere stabile Version ist verfügbar."
39 78
40msgid "you are up to date." 79#, fuzzy
80msgid "You are up to date."
41msgstr "Du bist auf den neuesten Stand." 81msgstr "Du bist auf den neuesten Stand."
42 82
43msgid "latest dev version" 83#, fuzzy
84msgid "Latest dev version"
44msgstr "Neuste Entwicklungsversion" 85msgstr "Neuste Entwicklungsversion"
45 86
46msgid "a more recent development version is available." 87#, fuzzy
88msgid "A more recent development version is available."
47msgstr "Eine neuere Entwicklungsversion ist verfügbar." 89msgstr "Eine neuere Entwicklungsversion ist verfügbar."
48 90
91msgid "Feeds"
92msgstr ""
93
94msgid "Your feed token is currently empty and must first be generated to enable feeds. Click <a href='?feed&amp;action=generate'>here to generate it</a>."
95msgstr ""
96
97msgid "Unread feed"
98msgstr ""
99
100#, fuzzy
101msgid "Favorites feed"
102msgstr "Favoriten"
103
104#, fuzzy
105msgid "Archive feed"
106msgstr "Archiv"
107
108msgid "Your token:"
109msgstr ""
110
111msgid "Your user id:"
112msgstr ""
113
114msgid "You can regenerate your token: <a href='?feed&amp;action=generate'>generate!</a>."
115msgstr ""
116
117#, fuzzy
118msgid "Change your theme"
119msgstr "Passwort ändern"
120
121msgid "Theme:"
122msgstr ""
123
124msgid "Update"
125msgstr "Aktualisieren"
126
127#, fuzzy
128msgid "Change your language"
129msgstr "Passwort ändern"
130
131msgid "Language:"
132msgstr ""
133
49msgid "Change your password" 134msgid "Change your password"
50msgstr "Passwort ändern" 135msgstr "Passwort ändern"
51 136
@@ -58,66 +143,68 @@ msgstr "Passwort"
58msgid "Repeat your new password:" 143msgid "Repeat your new password:"
59msgstr "Neues Passwort wiederholen:" 144msgstr "Neues Passwort wiederholen:"
60 145
61msgid "Update"
62msgstr "Aktualisieren"
63
64msgid "Import" 146msgid "Import"
65msgstr "Import" 147msgstr "Import"
66 148
67msgid "Please execute the import script locally, it can take a very long time." 149#, fuzzy
150msgid "Please execute the import script locally as it can take a very long time."
68msgstr "Bitte führe das Import Script lokal aus, dies kann eine Weile dauern." 151msgstr "Bitte führe das Import Script lokal aus, dies kann eine Weile dauern."
69 152
70msgid "More info in the official doc:" 153#, fuzzy
154msgid "More info in the official documentation:"
71msgstr "Mehr Informationen in der offiziellen Dokumentation:" 155msgstr "Mehr Informationen in der offiziellen Dokumentation:"
72 156
73msgid "import from Pocket" 157#, fuzzy
158msgid "Import from Pocket"
74msgstr "Import aus Pocket" 159msgstr "Import aus Pocket"
75 160
76msgid "import from Readability" 161#, php-format
162msgid "(you must have a %s file on your server)"
163msgstr ""
164
165#, fuzzy
166msgid "Import from Readability"
77msgstr "Import aus Readability" 167msgstr "Import aus Readability"
78 168
79msgid "import from Instapaper" 169#, fuzzy
170msgid "Import from Instapaper"
80msgstr "Import aus Instapaper" 171msgstr "Import aus Instapaper"
81 172
82msgid "Export your poche data" 173#, fuzzy
174msgid "Import from wallabag"
175msgstr "Import aus Readability"
176
177#, fuzzy
178msgid "Export your wallabag data"
83msgstr "Exportieren Sie Ihre Poche Daten." 179msgstr "Exportieren Sie Ihre Poche Daten."
84 180
85msgid "Click here" 181msgid "Click here"
86msgstr "Klicke hier" 182msgstr "Klicke hier"
87 183
88msgid "to export your poche data." 184msgid "to download your database."
89msgstr "um deine Daten aus Poche zu exportieren." 185msgstr ""
90
91msgid "back to home"
92msgstr "züruck zur Hauptseite"
93 186
94msgid "installation" 187#, fuzzy
95msgstr "Installieren" 188msgid "to export your wallabag data."
189msgstr "um deine Daten aus Poche zu exportieren."
96 190
97msgid "install your poche" 191msgid "Cache"
98msgstr "Installiere dein Poche" 192msgstr ""
99 193
100msgid "" 194msgid "to delete cache."
101"poche is still not installed. Please fill the below form to install it. "
102"Don't hesitate to <a href='http://doc.inthepoche.com'>read the documentation "
103"on poche website</a>."
104msgstr "" 195msgstr ""
105"Poche ist noch nicht installiert. Bitte fülle die Felder unten aus, um die "
106"Installation durchzuführen. Zögere nicht, <a href='http://inthepoche.com/"
107"doc'>die Dokumentation auf der Website von Poche zu lesen falls du Probleme "
108"haben solltest."
109 196
110msgid "Login" 197msgid "You can enter multiple tags, separated by commas."
111msgstr "Benutzername" 198msgstr ""
112 199
113msgid "Repeat your password" 200msgid "return to article"
114msgstr "Wiederhole dein Passwort" 201msgstr ""
115 202
116msgid "Install" 203msgid "plop"
117msgstr "Installieren" 204msgstr "plop"
118 205
119msgid "back to top" 206msgid "You can <a href='wallabag_compatibility_test.php'>check your configuration here</a>."
120msgstr "Nach Oben" 207msgstr ""
121 208
122msgid "favoris" 209msgid "favoris"
123msgstr "" 210msgstr ""
@@ -146,10 +233,14 @@ msgstr "nach Titel"
146msgid "by title desc" 233msgid "by title desc"
147msgstr "nach Titel absteigend" 234msgstr "nach Titel absteigend"
148 235
149msgid "No link available here!" 236msgid "Tag"
150msgstr "Kein Link verfügbar!" 237msgstr ""
151 238
152msgid "toggle mark as read" 239msgid "No articles found."
240msgstr ""
241
242#, fuzzy
243msgid "Toggle mark as read"
153msgstr "Als gelesen markieren" 244msgstr "Als gelesen markieren"
154 245
155msgid "toggle favorite" 246msgid "toggle favorite"
@@ -161,13 +252,95 @@ msgstr "Löschen"
161msgid "original" 252msgid "original"
162msgstr "Original" 253msgstr "Original"
163 254
255msgid "estimated reading time:"
256msgstr ""
257
258msgid "mark all the entries as read"
259msgstr ""
260
164msgid "results" 261msgid "results"
165msgstr "Ergebnisse" 262msgstr "Ergebnisse"
166 263
167msgid "tweet" 264msgid "installation"
265msgstr "Installieren"
266
267#, fuzzy
268msgid "install your wallabag"
269msgstr "Installiere dein Poche"
270
271#, fuzzy
272msgid "wallabag is still not installed. Please fill the below form to install it. Don't hesitate to <a href='http://doc.wallabag.org/'>read the documentation on wallabag website</a>."
273msgstr "Poche ist noch nicht installiert. Bitte fülle die Felder unten aus, um die Installation durchzuführen. Zögere nicht, <a href='http://inthepoche.com/doc'>die Dokumentation auf der Website von Poche zu lesen falls du Probleme haben solltest."
274
275msgid "Login"
276msgstr "Benutzername"
277
278msgid "Repeat your password"
279msgstr "Wiederhole dein Passwort"
280
281msgid "Install"
282msgstr "Installieren"
283
284#, fuzzy
285msgid "login to your wallabag"
286msgstr "Bei Poche anmelden"
287
288msgid "Login to wallabag"
289msgstr ""
290
291msgid "you are in demo mode, some features may be disabled."
292msgstr "Du befindest dich im Demomodus, einige Funktionen könnten deaktiviert sein."
293
294msgid "Username"
295msgstr ""
296
297msgid "Stay signed in"
298msgstr "Angemeldet bleiben"
299
300msgid "(Do not check on public computers)"
301msgstr "(nicht auf einem öffentlichen Computer anhaken)"
302
303msgid "Sign in"
304msgstr "Einloggen"
305
306msgid "favorites"
307msgstr "Favoriten"
308
309msgid "estimated reading time :"
310msgstr ""
311
312msgid "Mark all the entries as read"
313msgstr ""
314
315msgid "Return home"
316msgstr ""
317
318#, fuzzy
319msgid "Back to top"
320msgstr "Nach Oben"
321
322#, fuzzy
323msgid "Mark as read"
324msgstr "Als gelesen markieren"
325
326#, fuzzy
327msgid "Favorite"
328msgstr "Favoriten"
329
330#, fuzzy
331msgid "Toggle favorite"
332msgstr "Favorit"
333
334#, fuzzy
335msgid "Delete"
336msgstr "Löschen"
337
338#, fuzzy
339msgid "Tweet"
168msgstr "Twittern" 340msgstr "Twittern"
169 341
170msgid "email" 342#, fuzzy
343msgid "Email"
171msgstr "senden per E-Mail" 344msgstr "senden per E-Mail"
172 345
173msgid "shaarli" 346msgid "shaarli"
@@ -176,26 +349,24 @@ msgstr "Shaarli"
176msgid "flattr" 349msgid "flattr"
177msgstr "flattr" 350msgstr "flattr"
178 351
179msgid "this article appears wrong?" 352#, fuzzy
353msgid "Does this article appear wrong?"
180msgstr "dieser Artikel erscheint falsch?" 354msgstr "dieser Artikel erscheint falsch?"
181 355
182msgid "create an issue" 356msgid "tags:"
183msgstr "ein Ticket erstellen" 357msgstr ""
184
185msgid "or"
186msgstr "oder"
187 358
188msgid "contact us by mail" 359msgid "Edit tags"
189msgstr "kontaktieren Sie uns per E-Mail" 360msgstr ""
190 361
191msgid "plop" 362msgid "save link!"
192msgstr "plop" 363msgstr ""
193 364
194msgid "home" 365msgid "home"
195msgstr "Start" 366msgstr "Start"
196 367
197msgid "favorites" 368msgid "tags"
198msgstr "Favoriten" 369msgstr ""
199 370
200msgid "logout" 371msgid "logout"
201msgstr "Logout" 372msgstr "Logout"
@@ -206,24 +377,187 @@ msgstr "bereitgestellt von"
206msgid "debug mode is on so cache is off." 377msgid "debug mode is on so cache is off."
207msgstr "Debug Modus ist aktiviert, das Caching ist somit deaktiviert" 378msgstr "Debug Modus ist aktiviert, das Caching ist somit deaktiviert"
208 379
209msgid "your poche version:" 380#, fuzzy
210msgstr "Deine Poche Version" 381msgid "your wallabag version:"
382msgstr "Deine Version"
211 383
212msgid "storage:" 384msgid "storage:"
213msgstr "Speicher:" 385msgstr "Speicher:"
214 386
215msgid "login to your poche" 387msgid "save a link"
216msgstr "Bei Poche anmelden" 388msgstr ""
217 389
218msgid "you are in demo mode, some features may be disabled." 390msgid "back to home"
391msgstr "züruck zur Hauptseite"
392
393msgid "toggle mark as read"
394msgstr "Als gelesen markieren"
395
396msgid "tweet"
397msgstr "Twittern"
398
399msgid "email"
400msgstr "senden per E-Mail"
401
402msgid "this article appears wrong?"
403msgstr "dieser Artikel erscheint falsch?"
404
405msgid "No link available here!"
406msgstr "Kein Link verfügbar!"
407
408msgid "Poching a link"
409msgstr "Poche einen Link"
410
411msgid "by filling this field"
412msgstr "durch das ausfüllen dieses Feldes:"
413
414msgid "bookmarklet: drag & drop this link to your bookmarks bar"
219msgstr "" 415msgstr ""
220"Du befindest dich im Demomodus, einige Funktionen könnten deaktiviert sein."
221 416
222msgid "Stay signed in" 417msgid "your version"
223msgstr "Angemeldet bleiben" 418msgstr "Deine Version"
224 419
225msgid "(Do not check on public computers)" 420msgid "latest stable version"
226msgstr "(nicht auf einem öffentlichen Computer anhaken)" 421msgstr "Neuste stabile Version"
227 422
228msgid "Sign in" 423msgid "a more recent stable version is available."
229msgstr "Einloggen" 424msgstr "Eine neuere stabile Version ist verfügbar."
425
426msgid "you are up to date."
427msgstr "Du bist auf den neuesten Stand."
428
429msgid "latest dev version"
430msgstr "Neuste Entwicklungsversion"
431
432msgid "a more recent development version is available."
433msgstr "Eine neuere Entwicklungsversion ist verfügbar."
434
435msgid "Please execute the import script locally, it can take a very long time."
436msgstr "Bitte führe das Import Script lokal aus, dies kann eine Weile dauern."
437
438#, fuzzy
439msgid "More infos in the official doc:"
440msgstr "Mehr Informationen in der offiziellen Dokumentation:"
441
442msgid "import from Pocket"
443msgstr "Import aus Pocket"
444
445msgid "import from Readability"
446msgstr "Import aus Readability"
447
448msgid "import from Instapaper"
449msgstr "Import aus Instapaper"
450
451msgid "Tags"
452msgstr ""
453
454#, fuzzy
455msgid "Untitled"
456msgstr "nach Titel"
457
458msgid "the link has been added successfully"
459msgstr ""
460
461msgid "error during insertion : the link wasn't added"
462msgstr ""
463
464msgid "the link has been deleted successfully"
465msgstr ""
466
467msgid "the link wasn't deleted"
468msgstr ""
469
470msgid "Article not found!"
471msgstr ""
472
473msgid "previous"
474msgstr ""
475
476msgid "next"
477msgstr ""
478
479msgid "in demo mode, you can't update your password"
480msgstr ""
481
482msgid "your password has been updated"
483msgstr ""
484
485msgid "the two fields have to be filled & the password must be the same in the two fields"
486msgstr ""
487
488msgid "still using the \""
489msgstr ""
490
491msgid "that theme does not seem to be installed"
492msgstr ""
493
494msgid "you have changed your theme preferences"
495msgstr ""
496
497msgid "that language does not seem to be installed"
498msgstr ""
499
500msgid "you have changed your language preferences"
501msgstr ""
502
503msgid "login failed: you have to fill all fields"
504msgstr ""
505
506msgid "welcome to your wallabag"
507msgstr ""
508
509msgid "login failed: bad login or password"
510msgstr ""
511
512#, fuzzy
513msgid "import from instapaper completed"
514msgstr "Import aus Instapaper"
515
516#, fuzzy
517msgid "import from pocket completed"
518msgstr "Import aus Pocket"
519
520#, fuzzy
521msgid "import from Readability completed. "
522msgstr "Import aus Readability"
523
524#, fuzzy
525msgid "import from Poche completed. "
526msgstr "Import aus Pocket"
527
528msgid "Unknown import provider."
529msgstr ""
530
531msgid "Incomplete inc/poche/define.inc.php file, please define \""
532msgstr ""
533
534msgid "Could not find required \""
535msgstr ""
536
537msgid "Uh, there is a problem while generating feeds."
538msgstr ""
539
540#, fuzzy
541msgid "Cache deleted."
542msgstr "Löschen"
543
544msgid "Oops, it seems you don't have PHP 5."
545msgstr ""
546
547#~ msgid "poche it!"
548#~ msgstr "Poche es!"
549
550#~ msgid "Updating poche"
551#~ msgstr "Poche aktualisieren"
552
553#~ msgid "create an issue"
554#~ msgstr "ein Ticket erstellen"
555
556#~ msgid "or"
557#~ msgstr "oder"
558
559#~ msgid "contact us by mail"
560#~ msgstr "kontaktieren Sie uns per E-Mail"
561
562#~ msgid "your poche version:"
563#~ msgstr "Deine Poche Version"
diff --git a/locale/en_EN.utf8/LC_MESSAGES/en_EN.utf8.mo b/locale/en_EN.utf8/LC_MESSAGES/en_EN.utf8.mo
index 83d0a85f..bf5f69e7 100644
--- a/locale/en_EN.utf8/LC_MESSAGES/en_EN.utf8.mo
+++ b/locale/en_EN.utf8/LC_MESSAGES/en_EN.utf8.mo
Binary files differ
diff --git a/locale/en_EN.utf8/LC_MESSAGES/en_EN.utf8.po b/locale/en_EN.utf8/LC_MESSAGES/en_EN.utf8.po
index b78759f5..119fb060 100644
--- a/locale/en_EN.utf8/LC_MESSAGES/en_EN.utf8.po
+++ b/locale/en_EN.utf8/LC_MESSAGES/en_EN.utf8.po
@@ -1,50 +1,124 @@
1msgid "" 1msgid ""
2msgstr "" 2msgstr ""
3"Project-Id-Version: \n" 3"Project-Id-Version: \n"
4"POT-Creation-Date: \n" 4"Report-Msgid-Bugs-To: \n"
5"POT-Creation-Date: 2014-02-25 15:17+0300\n"
5"PO-Revision-Date: \n" 6"PO-Revision-Date: \n"
6"Last-Translator: Nicolas Lœuillet <nicolas.loeuillet@gmail.com>\n" 7"Last-Translator: Maryana <mariroz@mr.lviv.ua>\n"
7"Language-Team: \n" 8"Language-Team: \n"
9"Language: \n"
8"MIME-Version: 1.0\n" 10"MIME-Version: 1.0\n"
9"Content-Type: text/plain; charset=UTF-8\n" 11"Content-Type: text/plain; charset=UTF-8\n"
10"Content-Transfer-Encoding: 8bit\n" 12"Content-Transfer-Encoding: 8bit\n"
11"X-Generator: Poedit 1.5.4\n" 13"X-Generator: Poedit 1.5.4\n"
14"X-Poedit-Language: English\n"
15"X-Poedit-Basepath: .\n"
16"X-Poedit-SearchPath-0: /home/mariroz/_DEV/web/wallabag/wallabag-master-testing\n"
17
18msgid "wallabag, a read it later open source system"
19msgstr "wallabag, a read it later open source system"
20
21msgid "login failed: user doesn't exist"
22msgstr "login failed: user doesn't exist"
23
24msgid "return home"
25msgstr "return home"
12 26
13msgid "config" 27msgid "config"
14msgstr "config" 28msgstr "config"
15 29
16msgid "Poching a link" 30msgid "Saving articles"
17msgstr "Poching a link" 31msgstr "Saving articles"
32
33msgid "There are several ways to save an article:"
34msgstr "There are several ways to save an article:"
18 35
19msgid "read the documentation" 36msgid "read the documentation"
20msgstr "read the documentation" 37msgstr "read the documentation"
21 38
22msgid "by filling this field" 39msgid "download the extension"
23msgstr "by filling this field" 40msgstr "download the extension"
24 41
25msgid "poche it!" 42msgid "via F-Droid"
26msgstr "poche it!" 43msgstr "via F-Droid"
27 44
28msgid "Updating poche" 45msgid " or "
29msgstr "Updating poche" 46msgstr " or "
30 47
31msgid "your version" 48msgid "via Google Play"
32msgstr "your version" 49msgstr "via Google Play"
33 50
34msgid "latest stable version" 51msgid "download the application"
35msgstr "latest stable version" 52msgstr "download the application"
36 53
37msgid "a more recent stable version is available." 54msgid "By filling this field"
38msgstr "a more recent stable version is available." 55msgstr "By filling this field"
39 56
40msgid "you are up to date." 57msgid "bag it!"
41msgstr "you are up to date." 58msgstr "bag it!"
42 59
43msgid "latest dev version" 60msgid "Bookmarklet: drag & drop this link to your bookmarks bar"
44msgstr "latest dev version" 61msgstr "Bookmarklet: drag & drop this link to your bookmarks bar"
45 62
46msgid "a more recent development version is available." 63msgid "Upgrading wallabag"
47msgstr "a more recent development version is available." 64msgstr "Upgrading wallabag"
65
66msgid "Installed version"
67msgstr "Installed version"
68
69msgid "Latest stable version"
70msgstr "Latest stable version"
71
72msgid "A more recent stable version is available."
73msgstr "A more recent stable version is available."
74
75msgid "You are up to date."
76msgstr "You are up to date."
77
78msgid "Latest dev version"
79msgstr "Latest dev version"
80
81msgid "A more recent development version is available."
82msgstr "A more recent development version is available."
83
84msgid "Feeds"
85msgstr "Feeds"
86
87msgid "Your feed token is currently empty and must first be generated to enable feeds. Click <a href='?feed&amp;action=generate'>here to generate it</a>."
88msgstr "Your feed token is currently empty and must first be generated to enable feeds. Click <a href='?feed&amp;action=generate'>here to generate it</a>."
89
90msgid "Unread feed"
91msgstr "Unread feed"
92
93msgid "Favorites feed"
94msgstr "Favorites feed"
95
96msgid "Archive feed"
97msgstr "Archive feed"
98
99msgid "Your token:"
100msgstr "Your token:"
101
102msgid "Your user id:"
103msgstr "Your user id:"
104
105msgid "You can regenerate your token: <a href='?feed&amp;action=generate'>generate!</a>."
106msgstr "You can regenerate your token: <a href='?feed&amp;action=generate'>generate!</a>."
107
108msgid "Change your theme"
109msgstr "Change your theme"
110
111msgid "Theme:"
112msgstr "Theme:"
113
114msgid "Update"
115msgstr "Update"
116
117msgid "Change your language"
118msgstr "Change your language"
119
120msgid "Language:"
121msgstr "Language:"
48 122
49msgid "Change your password" 123msgid "Change your password"
50msgstr "Change your password" 124msgstr "Change your password"
@@ -58,66 +132,60 @@ msgstr "Password"
58msgid "Repeat your new password:" 132msgid "Repeat your new password:"
59msgstr "Repeat your new password:" 133msgstr "Repeat your new password:"
60 134
61msgid "Update"
62msgstr "Update"
63
64msgid "Import" 135msgid "Import"
65msgstr "Import" 136msgstr "Import"
66 137
67msgid "Please execute the import script locally, it can take a very long time." 138msgid "Please execute the import script locally as it can take a very long time."
68msgstr "" 139msgstr "Please execute the import script locally as it can take a very long time."
69"Please execute the import script locally, it can take a very long time."
70 140
71msgid "More info in the official doc:" 141msgid "More info in the official documentation:"
72msgstr "More info in the official doc:" 142msgstr "More info in the official documentation:"
73 143
74msgid "import from Pocket" 144msgid "Import from Pocket"
75msgstr "import from Pocket" 145msgstr "Import from Pocket"
76 146
77msgid "import from Readability" 147#, php-format
78msgstr "import from Readability" 148msgid "(you must have a %s file on your server)"
149msgstr "(you must have a %s file on your server)"
79 150
80msgid "import from Instapaper" 151msgid "Import from Readability"
81msgstr "import from Instapaper" 152msgstr "Import from Readability"
153
154msgid "Import from Instapaper"
155msgstr "Import from Instapaper"
82 156
83msgid "Export your poche data" 157msgid "Import from wallabag"
84msgstr "Export your poche data" 158msgstr "Import from wallabag"
159
160msgid "Export your wallabag data"
161msgstr "Export your wallabag data"
85 162
86msgid "Click here" 163msgid "Click here"
87msgstr "Click here" 164msgstr "Click here"
88 165
89msgid "to export your poche data." 166msgid "to download your database."
90msgstr "to export your poche data." 167msgstr "to download your database."
91 168
92msgid "back to home" 169msgid "to export your wallabag data."
93msgstr "back to home" 170msgstr "to export your wallabag data."
94 171
95msgid "installation" 172msgid "Cache"
96msgstr "installation" 173msgstr "Cache"
97 174
98msgid "install your poche" 175msgid "to delete cache."
99msgstr "install your poche" 176msgstr "to delete cache."
100 177
101msgid "" 178msgid "You can enter multiple tags, separated by commas."
102"poche is still not installed. Please fill the below form to install it. " 179msgstr "You can enter multiple tags, separated by commas."
103"Don't hesitate to <a href='http://doc.inthepoche.com'>read the documentation "
104"on poche website</a>."
105msgstr ""
106"poche is still not installed. Please fill the below form to install it. "
107"Don't hesitate to <a href='http://doc.inthepoche.com'>read the documentation "
108"on poche website</a>."
109
110msgid "Login"
111msgstr "Login"
112 180
113msgid "Repeat your password" 181msgid "return to article"
114msgstr "Repeat your password" 182msgstr "return to article"
115 183
116msgid "Install" 184msgid "plop"
117msgstr "Install" 185msgstr "plop"
118 186
119msgid "back to top" 187msgid "You can <a href='wallabag_compatibility_test.php'>check your configuration here</a>."
120msgstr "back to top" 188msgstr "You can <a href='wallabag_compatibility_test.php'>check your configuration here</a>."
121 189
122msgid "favoris" 190msgid "favoris"
123msgstr "favoris" 191msgstr "favoris"
@@ -146,11 +214,14 @@ msgstr "by title"
146msgid "by title desc" 214msgid "by title desc"
147msgstr "by title desc" 215msgstr "by title desc"
148 216
149msgid "No link available here!" 217msgid "Tag"
150msgstr "No link available here!" 218msgstr "Tag"
151 219
152msgid "toggle mark as read" 220msgid "No articles found."
153msgstr "toggle mark as read" 221msgstr "No articles found."
222
223msgid "Toggle mark as read"
224msgstr "Toggle mark as read"
154 225
155msgid "toggle favorite" 226msgid "toggle favorite"
156msgstr "toggle favorite" 227msgstr "toggle favorite"
@@ -161,14 +232,86 @@ msgstr "delete"
161msgid "original" 232msgid "original"
162msgstr "original" 233msgstr "original"
163 234
235msgid "estimated reading time:"
236msgstr "estimated reading time:"
237
238msgid "mark all the entries as read"
239msgstr "mark all the entries as read"
240
164msgid "results" 241msgid "results"
165msgstr "results" 242msgstr "results"
166 243
167msgid "tweet" 244msgid "installation"
168msgstr "tweet" 245msgstr "installation"
169 246
170msgid "email" 247msgid "install your wallabag"
171msgstr "email" 248msgstr "install your wallabag"
249
250msgid "wallabag is still not installed. Please fill the below form to install it. Don't hesitate to <a href='http://doc.wallabag.org/'>read the documentation on wallabag website</a>."
251msgstr "wallabag is still not installed. Please fill the below form to install it. Don't hesitate to <a href='http://doc.wallabag.org/'>read the documentation on wallabag website</a>."
252
253msgid "Login"
254msgstr "Login"
255
256msgid "Repeat your password"
257msgstr "Repeat your password"
258
259msgid "Install"
260msgstr "Install"
261
262msgid "login to your wallabag"
263msgstr "login to your wallabag"
264
265msgid "Login to wallabag"
266msgstr "Login to wallabag"
267
268msgid "you are in demo mode, some features may be disabled."
269msgstr "you are in demo mode, some features may be disabled."
270
271msgid "Username"
272msgstr "Username"
273
274msgid "Stay signed in"
275msgstr "Stay signed in"
276
277msgid "(Do not check on public computers)"
278msgstr "(Do not check on public computers)"
279
280msgid "Sign in"
281msgstr "Sign in"
282
283msgid "favorites"
284msgstr "favorites"
285
286msgid "estimated reading time :"
287msgstr "estimated reading time :"
288
289msgid "Mark all the entries as read"
290msgstr "Mark all the entries as read"
291
292msgid "Return home"
293msgstr "Return home"
294
295msgid "Back to top"
296msgstr "Back to top"
297
298msgid "Mark as read"
299msgstr "Mark as read"
300
301msgid "Favorite"
302msgstr "Favorite"
303
304msgid "Toggle favorite"
305msgstr "Toggle favorite"
306
307msgid "Delete"
308msgstr "Delete"
309
310msgid "Tweet"
311msgstr "Tweet"
312
313msgid "Email"
314msgstr "Email"
172 315
173msgid "shaarli" 316msgid "shaarli"
174msgstr "shaarli" 317msgstr "shaarli"
@@ -176,26 +319,23 @@ msgstr "shaarli"
176msgid "flattr" 319msgid "flattr"
177msgstr "flattr" 320msgstr "flattr"
178 321
179msgid "this article appears wrong?" 322msgid "Does this article appear wrong?"
180msgstr "this article appears wrong?" 323msgstr "Does this article appear wrong?"
181 324
182msgid "create an issue" 325msgid "tags:"
183msgstr "create an issue" 326msgstr "tags:"
184 327
185msgid "or" 328msgid "Edit tags"
186msgstr "or" 329msgstr "Edit tags"
187 330
188msgid "contact us by mail" 331msgid "save link!"
189msgstr "contact us by mail" 332msgstr "save link!"
190
191msgid "plop"
192msgstr "plop"
193 333
194msgid "home" 334msgid "home"
195msgstr "home" 335msgstr "home"
196 336
197msgid "favorites" 337msgid "tags"
198msgstr "favorites" 338msgstr "tags"
199 339
200msgid "logout" 340msgid "logout"
201msgstr "logout" 341msgstr "logout"
@@ -206,23 +346,179 @@ msgstr "powered by"
206msgid "debug mode is on so cache is off." 346msgid "debug mode is on so cache is off."
207msgstr "debug mode is on so cache is off." 347msgstr "debug mode is on so cache is off."
208 348
209msgid "your poche version:" 349msgid "your wallabag version:"
210msgstr "your poche version:" 350msgstr "your wallabag version:"
211 351
212msgid "storage:" 352msgid "storage:"
213msgstr "storage:" 353msgstr "storage:"
214 354
215msgid "login to your poche" 355msgid "save a link"
216msgstr "login to your poche" 356msgstr "save a link"
217 357
218msgid "you are in demo mode, some features may be disabled." 358msgid "back to home"
219msgstr "you are in demo mode, some features may be disabled." 359msgstr "back to home"
220 360
221msgid "Stay signed in" 361msgid "toggle mark as read"
222msgstr "Stay signed in" 362msgstr "toggle mark as read"
223 363
224msgid "(Do not check on public computers)" 364msgid "tweet"
225msgstr "(Do not check on public computers)" 365msgstr "tweet"
226 366
227msgid "Sign in" 367msgid "email"
228msgstr "Sign in" 368msgstr "email"
369
370msgid "this article appears wrong?"
371msgstr "this article appears wrong?"
372
373msgid "No link available here!"
374msgstr "No link available here!"
375
376msgid "Poching a link"
377msgstr "Poching a link"
378
379msgid "by filling this field"
380msgstr "by filling this field"
381
382msgid "bookmarklet: drag & drop this link to your bookmarks bar"
383msgstr "bookmarklet: drag & drop this link to your bookmarks bar"
384
385msgid "your version"
386msgstr "your version"
387
388msgid "latest stable version"
389msgstr "latest stable version"
390
391msgid "a more recent stable version is available."
392msgstr "a more recent stable version is available."
393
394msgid "you are up to date."
395msgstr "you are up to date."
396
397msgid "latest dev version"
398msgstr "latest dev version"
399
400msgid "a more recent development version is available."
401msgstr "a more recent development version is available."
402
403msgid "Please execute the import script locally, it can take a very long time."
404msgstr "Please execute the import script locally, it can take a very long time."
405
406msgid "More infos in the official doc:"
407msgstr "More infos in the official doc:"
408
409msgid "import from Pocket"
410msgstr "import from Pocket"
411
412msgid "import from Readability"
413msgstr "import from Readability"
414
415msgid "import from Instapaper"
416msgstr "import from Instapaper"
417
418msgid "Tags"
419msgstr "Tags"
420
421msgid "Untitled"
422msgstr "Untitled"
423
424msgid "the link has been added successfully"
425msgstr "the link has been added successfully"
426
427msgid "error during insertion : the link wasn't added"
428msgstr "error during insertion : the link wasn't added"
429
430msgid "the link has been deleted successfully"
431msgstr "the link has been deleted successfully"
432
433msgid "the link wasn't deleted"
434msgstr "the link wasn't deleted"
435
436msgid "Article not found!"
437msgstr "Article not found!"
438
439msgid "previous"
440msgstr "previous"
441
442msgid "next"
443msgstr "next"
444
445msgid "in demo mode, you can't update your password"
446msgstr "in demo mode, you can't update your password"
447
448msgid "your password has been updated"
449msgstr "your password has been updated"
450
451msgid "the two fields have to be filled & the password must be the same in the two fields"
452msgstr "the two fields have to be filled & the password must be the same in the two fields"
453
454msgid "still using the \""
455msgstr "still using the \""
456
457msgid "that theme does not seem to be installed"
458msgstr "that theme does not seem to be installed"
459
460msgid "you have changed your theme preferences"
461msgstr "you have changed your theme preferences"
462
463msgid "that language does not seem to be installed"
464msgstr "that language does not seem to be installed"
465
466msgid "you have changed your language preferences"
467msgstr "you have changed your language preferences"
468
469msgid "login failed: you have to fill all fields"
470msgstr "login failed: you have to fill all fields"
471
472msgid "welcome to your wallabag"
473msgstr "welcome to your wallabag"
474
475msgid "login failed: bad login or password"
476msgstr "login failed: bad login or password"
477
478msgid "import from instapaper completed"
479msgstr "import from instapaper completed"
480
481msgid "import from pocket completed"
482msgstr "import from pocket completed"
483
484msgid "import from Readability completed. "
485msgstr "import from Readability completed. "
486
487msgid "import from Poche completed. "
488msgstr "import from Poche completed. "
489
490msgid "Unknown import provider."
491msgstr "Unknown import provider."
492
493msgid "Incomplete inc/poche/define.inc.php file, please define \""
494msgstr "Incomplete inc/poche/define.inc.php file, please define \""
495
496msgid "Could not find required \""
497msgstr "Could not find required \""
498
499msgid "Uh, there is a problem while generating feeds."
500msgstr "Uh, there is a problem while generating feeds."
501
502msgid "Cache deleted."
503msgstr "Cache deleted."
504
505msgid "Oops, it seems you don't have PHP 5."
506msgstr "Oops, it seems you don't have PHP 5."
507
508#~ msgid "poche it!"
509#~ msgstr "poche it!"
510
511#~ msgid "Updating poche"
512#~ msgstr "Updating poche"
513
514#~ msgid "create an issue"
515#~ msgstr "create an issue"
516
517#~ msgid "or"
518#~ msgstr "or"
519
520#~ msgid "contact us by mail"
521#~ msgstr "contact us by mail"
522
523#~ msgid "your poche version:"
524#~ msgstr "your poche version:"
diff --git a/locale/es_ES.utf8/LC_MESSAGES/es_ES.utf8.po b/locale/es_ES.utf8/LC_MESSAGES/es_ES.utf8.po
index afe0595d..c08decfe 100644
--- a/locale/es_ES.utf8/LC_MESSAGES/es_ES.utf8.po
+++ b/locale/es_ES.utf8/LC_MESSAGES/es_ES.utf8.po
@@ -1,51 +1,136 @@
1msgid "" 1msgid ""
2msgstr "" 2msgstr ""
3"Project-Id-Version: \n" 3"Project-Id-Version: \n"
4"POT-Creation-Date: \n" 4"Report-Msgid-Bugs-To: \n"
5"POT-Creation-Date: 2014-02-25 15:16+0300\n"
5"PO-Revision-Date: \n" 6"PO-Revision-Date: \n"
6"Last-Translator: Nicolas Lœuillet <nicolas.loeuillet@gmail.com>\n" 7"Last-Translator: Maryana <mariroz@mr.lviv.ua>\n"
7"Language-Team: \n" 8"Language-Team: \n"
9"Language: \n"
8"MIME-Version: 1.0\n" 10"MIME-Version: 1.0\n"
9"Content-Type: text/plain; charset=UTF-8\n" 11"Content-Type: text/plain; charset=UTF-8\n"
10"Content-Transfer-Encoding: 8bit\n" 12"Content-Transfer-Encoding: 8bit\n"
11"X-Generator: Poedit 1.5.4\n" 13"X-Generator: Poedit 1.5.4\n"
14"X-Poedit-Language: Spanish\n"
15"X-Poedit-Basepath: .\n"
16"X-Poedit-SearchPath-0: /home/mariroz/_DEV/web/wallabag/wallabag-master-testing\n"
17
18msgid "wallabag, a read it later open source system"
19msgstr ""
20
21msgid "login failed: user doesn't exist"
22msgstr ""
23
24msgid "return home"
25msgstr ""
12 26
13msgid "config" 27msgid "config"
14msgstr "configuración" 28msgstr "configuración"
15 29
16msgid "Poching a link" 30msgid "Saving articles"
17msgstr "Pochear un enlace" 31msgstr ""
32
33msgid "There are several ways to save an article:"
34msgstr ""
18 35
19msgid "read the documentation" 36msgid "read the documentation"
20msgstr "leer la documentación" 37msgstr "leer la documentación"
21 38
22msgid "by filling this field" 39msgid "download the extension"
40msgstr ""
41
42msgid "via F-Droid"
43msgstr ""
44
45msgid " or "
46msgstr ""
47
48msgid "via Google Play"
49msgstr ""
50
51msgid "download the application"
52msgstr ""
53
54#, fuzzy
55msgid "By filling this field"
23msgstr "rellenando este campo" 56msgstr "rellenando este campo"
24 57
25msgid "poche it!" 58msgid "bag it!"
26msgstr "pochéalo!" 59msgstr ""
27 60
28msgid "Updating poche" 61msgid "Bookmarklet: drag & drop this link to your bookmarks bar"
29msgstr "Actualizar" 62msgstr ""
30 63
31msgid "your version" 64msgid "Upgrading wallabag"
32msgstr "su versión" 65msgstr ""
33 66
34msgid "latest stable version" 67#, fuzzy
68msgid "Installed version"
35msgstr "ultima versión estable" 69msgstr "ultima versión estable"
36 70
37msgid "a more recent stable version is available." 71#, fuzzy
72msgid "Latest stable version"
73msgstr "ultima versión estable"
74
75#, fuzzy
76msgid "A more recent stable version is available."
38msgstr "una versión estable más reciente está disponible." 77msgstr "una versión estable más reciente está disponible."
39 78
40msgid "you are up to date." 79#, fuzzy
80msgid "You are up to date."
41msgstr "estás actualizado." 81msgstr "estás actualizado."
42 82
43msgid "latest dev version" 83#, fuzzy
84msgid "Latest dev version"
44msgstr "ultima versión de desarollo" 85msgstr "ultima versión de desarollo"
45 86
46msgid "a more recent development version is available." 87#, fuzzy
88msgid "A more recent development version is available."
47msgstr "una versión de desarollo más reciente está disponible." 89msgstr "una versión de desarollo más reciente está disponible."
48 90
91msgid "Feeds"
92msgstr ""
93
94msgid "Your feed token is currently empty and must first be generated to enable feeds. Click <a href='?feed&amp;action=generate'>here to generate it</a>."
95msgstr ""
96
97msgid "Unread feed"
98msgstr ""
99
100#, fuzzy
101msgid "Favorites feed"
102msgstr "preferidos"
103
104#, fuzzy
105msgid "Archive feed"
106msgstr "archivos"
107
108msgid "Your token:"
109msgstr ""
110
111msgid "Your user id:"
112msgstr ""
113
114msgid "You can regenerate your token: <a href='?feed&amp;action=generate'>generate!</a>."
115msgstr ""
116
117#, fuzzy
118msgid "Change your theme"
119msgstr "Modificar tu contraseña"
120
121msgid "Theme:"
122msgstr ""
123
124msgid "Update"
125msgstr "Actualizar"
126
127#, fuzzy
128msgid "Change your language"
129msgstr "Modificar tu contraseña"
130
131msgid "Language:"
132msgstr ""
133
49msgid "Change your password" 134msgid "Change your password"
50msgstr "Modificar tu contraseña" 135msgstr "Modificar tu contraseña"
51 136
@@ -58,66 +143,68 @@ msgstr "Contraseña"
58msgid "Repeat your new password:" 143msgid "Repeat your new password:"
59msgstr "Repetir la nueva contraseña :" 144msgstr "Repetir la nueva contraseña :"
60 145
61msgid "Update"
62msgstr "Actualizar"
63
64msgid "Import" 146msgid "Import"
65msgstr "Importar" 147msgstr "Importar"
66 148
67msgid "Please execute the import script locally, it can take a very long time." 149#, fuzzy
68msgstr "" 150msgid "Please execute the import script locally as it can take a very long time."
69"Por favor, ejecute la importación en local, esto puede demorar un tiempo." 151msgstr "Por favor, ejecute la importación en local, esto puede demorar un tiempo."
70 152
71msgid "More info in the official doc:" 153#, fuzzy
154msgid "More info in the official documentation:"
72msgstr "Más información en la documentación oficial :" 155msgstr "Más información en la documentación oficial :"
73 156
74msgid "import from Pocket" 157#, fuzzy
158msgid "Import from Pocket"
75msgstr "importación desde Pocket" 159msgstr "importación desde Pocket"
76 160
77msgid "import from Readability" 161#, php-format
162msgid "(you must have a %s file on your server)"
163msgstr ""
164
165#, fuzzy
166msgid "Import from Readability"
78msgstr "importación desde Readability" 167msgstr "importación desde Readability"
79 168
80msgid "import from Instapaper" 169#, fuzzy
170msgid "Import from Instapaper"
81msgstr "importación desde Instapaper" 171msgstr "importación desde Instapaper"
82 172
83msgid "Export your poche data" 173#, fuzzy
174msgid "Import from wallabag"
175msgstr "importación desde Readability"
176
177#, fuzzy
178msgid "Export your wallabag data"
84msgstr "Exportar sus datos de poche" 179msgstr "Exportar sus datos de poche"
85 180
86msgid "Click here" 181msgid "Click here"
87msgstr "Haga clic aquí" 182msgstr "Haga clic aquí"
88 183
89msgid "to export your poche data." 184msgid "to download your database."
90msgstr "para exportar sus datos de poche." 185msgstr ""
91
92msgid "back to home"
93msgstr "volver a la página de inicio"
94 186
95msgid "installation" 187#, fuzzy
96msgstr "instalación" 188msgid "to export your wallabag data."
189msgstr "para exportar sus datos de poche."
97 190
98msgid "install your poche" 191msgid "Cache"
99msgstr "instala tu Poche" 192msgstr ""
100 193
101msgid "" 194msgid "to delete cache."
102"Poche is still not installed. Please fill the below form to install it. "
103"Don't hesitate to <a href='http://doc.inthepoche.com'>read the documentation "
104"on poche website</a>."
105msgstr "" 195msgstr ""
106"Poche todavia no està instalado. Por favor, completa los campos siguientes "
107"para instalarlo. No dudes de <a href='http://doc.inthepoche.com'>leer la "
108"documentación en el sitio de Poche</a>."
109 196
110msgid "Login" 197msgid "You can enter multiple tags, separated by commas."
111msgstr "Nombre de usuario" 198msgstr ""
112 199
113msgid "Repeat your password" 200msgid "return to article"
114msgstr "Repita su contraseña" 201msgstr ""
115 202
116msgid "Install" 203msgid "plop"
117msgstr "Instalar" 204msgstr "plop"
118 205
119msgid "back to top" 206msgid "You can <a href='wallabag_compatibility_test.php'>check your configuration here</a>."
120msgstr "volver arriba" 207msgstr ""
121 208
122msgid "favoris" 209msgid "favoris"
123msgstr "preferidos" 210msgstr "preferidos"
@@ -146,10 +233,14 @@ msgstr "por título"
146msgid "by title desc" 233msgid "by title desc"
147msgstr "por título descendiente" 234msgstr "por título descendiente"
148 235
149msgid "No link available here!" 236msgid "Tag"
150msgstr "¡No hay ningún enlace disponible por aquí!" 237msgstr ""
151 238
152msgid "toggle mark as read" 239msgid "No articles found."
240msgstr ""
241
242#, fuzzy
243msgid "Toggle mark as read"
153msgstr "marcar como leído" 244msgstr "marcar como leído"
154 245
155msgid "toggle favorite" 246msgid "toggle favorite"
@@ -161,13 +252,95 @@ msgstr "eliminar"
161msgid "original" 252msgid "original"
162msgstr "original" 253msgstr "original"
163 254
255msgid "estimated reading time:"
256msgstr ""
257
258msgid "mark all the entries as read"
259msgstr ""
260
164msgid "results" 261msgid "results"
165msgstr "resultados" 262msgstr "resultados"
166 263
167msgid "tweet" 264msgid "installation"
265msgstr "instalación"
266
267#, fuzzy
268msgid "install your wallabag"
269msgstr "instala tu Poche"
270
271#, fuzzy
272msgid "wallabag is still not installed. Please fill the below form to install it. Don't hesitate to <a href='http://doc.wallabag.org/'>read the documentation on wallabag website</a>."
273msgstr "Poche todavia no està instalado. Por favor, completa los campos siguientes para instalarlo. No dudes de <a href='http://doc.inthepoche.com'>leer la documentación en el sitio de Poche</a>."
274
275msgid "Login"
276msgstr "Nombre de usuario"
277
278msgid "Repeat your password"
279msgstr "Repita su contraseña"
280
281msgid "Install"
282msgstr "Instalar"
283
284#, fuzzy
285msgid "login to your wallabag"
286msgstr "conectarse a tu Poche"
287
288msgid "Login to wallabag"
289msgstr ""
290
291msgid "you are in demo mode, some features may be disabled."
292msgstr "este es el modo de demostración, algunas funcionalidades pueden estar desactivadas."
293
294msgid "Username"
295msgstr ""
296
297msgid "Stay signed in"
298msgstr "Seguir conectado"
299
300msgid "(Do not check on public computers)"
301msgstr "(no marcar en un ordenador público)"
302
303msgid "Sign in"
304msgstr "Iniciar sesión"
305
306msgid "favorites"
307msgstr "preferidos"
308
309msgid "estimated reading time :"
310msgstr ""
311
312msgid "Mark all the entries as read"
313msgstr ""
314
315msgid "Return home"
316msgstr ""
317
318#, fuzzy
319msgid "Back to top"
320msgstr "volver arriba"
321
322#, fuzzy
323msgid "Mark as read"
324msgstr "marcar como leído"
325
326#, fuzzy
327msgid "Favorite"
328msgstr "preferidos"
329
330#, fuzzy
331msgid "Toggle favorite"
332msgstr "preferido"
333
334#, fuzzy
335msgid "Delete"
336msgstr "eliminar"
337
338#, fuzzy
339msgid "Tweet"
168msgstr "tweetear" 340msgstr "tweetear"
169 341
170msgid "email" 342#, fuzzy
343msgid "Email"
171msgstr "enviar por mail" 344msgstr "enviar por mail"
172 345
173msgid "shaarli" 346msgid "shaarli"
@@ -176,26 +349,24 @@ msgstr "shaarli"
176msgid "flattr" 349msgid "flattr"
177msgstr "flattr" 350msgstr "flattr"
178 351
179msgid "this article appears wrong?" 352#, fuzzy
353msgid "Does this article appear wrong?"
180msgstr "este articulo no se ve bien?" 354msgstr "este articulo no se ve bien?"
181 355
182msgid "create an issue" 356msgid "tags:"
183msgstr "crear un ticket" 357msgstr ""
184
185msgid "or"
186msgstr "o"
187 358
188msgid "contact us by mail" 359msgid "Edit tags"
189msgstr "contactarnos por mail" 360msgstr ""
190 361
191msgid "plop" 362msgid "save link!"
192msgstr "plop" 363msgstr ""
193 364
194msgid "home" 365msgid "home"
195msgstr "inicio" 366msgstr "inicio"
196 367
197msgid "favorites" 368msgid "tags"
198msgstr "preferidos" 369msgstr ""
199 370
200msgid "logout" 371msgid "logout"
201msgstr "cerrar sesión" 372msgstr "cerrar sesión"
@@ -206,25 +377,187 @@ msgstr "hecho con"
206msgid "debug mode is on so cache is off." 377msgid "debug mode is on so cache is off."
207msgstr "el modo de depuración está activado, así que la cache está desactivada." 378msgstr "el modo de depuración está activado, así que la cache está desactivada."
208 379
209msgid "your poche version:" 380#, fuzzy
210msgstr "tu versión de Poche:" 381msgid "your wallabag version:"
382msgstr "su versión"
211 383
212msgid "storage:" 384msgid "storage:"
213msgstr "almacenamiento:" 385msgstr "almacenamiento:"
214 386
215msgid "login to your poche" 387msgid "save a link"
216msgstr "conectarse a tu Poche" 388msgstr ""
217 389
218msgid "you are in demo mode, some features may be disabled." 390msgid "back to home"
391msgstr "volver a la página de inicio"
392
393msgid "toggle mark as read"
394msgstr "marcar como leído"
395
396msgid "tweet"
397msgstr "tweetear"
398
399msgid "email"
400msgstr "enviar por mail"
401
402msgid "this article appears wrong?"
403msgstr "este articulo no se ve bien?"
404
405msgid "No link available here!"
406msgstr "¡No hay ningún enlace disponible por aquí!"
407
408msgid "Poching a link"
409msgstr "Pochear un enlace"
410
411msgid "by filling this field"
412msgstr "rellenando este campo"
413
414msgid "bookmarklet: drag & drop this link to your bookmarks bar"
219msgstr "" 415msgstr ""
220"este es el modo de demostración, algunas funcionalidades pueden estar "
221"desactivadas."
222 416
223msgid "Stay signed in" 417msgid "your version"
224msgstr "Seguir conectado" 418msgstr "su versión"
225 419
226msgid "(Do not check on public computers)" 420msgid "latest stable version"
227msgstr "(no marcar en un ordenador público)" 421msgstr "ultima versión estable"
228 422
229msgid "Sign in" 423msgid "a more recent stable version is available."
230msgstr "Iniciar sesión" 424msgstr "una versión estable más reciente está disponible."
425
426msgid "you are up to date."
427msgstr "estás actualizado."
428
429msgid "latest dev version"
430msgstr "ultima versión de desarollo"
431
432msgid "a more recent development version is available."
433msgstr "una versión de desarollo más reciente está disponible."
434
435msgid "Please execute the import script locally, it can take a very long time."
436msgstr "Por favor, ejecute la importación en local, esto puede demorar un tiempo."
437
438#, fuzzy
439msgid "More infos in the official doc:"
440msgstr "Más información en la documentación oficial :"
441
442msgid "import from Pocket"
443msgstr "importación desde Pocket"
444
445msgid "import from Readability"
446msgstr "importación desde Readability"
447
448msgid "import from Instapaper"
449msgstr "importación desde Instapaper"
450
451msgid "Tags"
452msgstr ""
453
454#, fuzzy
455msgid "Untitled"
456msgstr "por título"
457
458msgid "the link has been added successfully"
459msgstr ""
460
461msgid "error during insertion : the link wasn't added"
462msgstr ""
463
464msgid "the link has been deleted successfully"
465msgstr ""
466
467msgid "the link wasn't deleted"
468msgstr ""
469
470msgid "Article not found!"
471msgstr ""
472
473msgid "previous"
474msgstr ""
475
476msgid "next"
477msgstr ""
478
479msgid "in demo mode, you can't update your password"
480msgstr ""
481
482msgid "your password has been updated"
483msgstr ""
484
485msgid "the two fields have to be filled & the password must be the same in the two fields"
486msgstr ""
487
488msgid "still using the \""
489msgstr ""
490
491msgid "that theme does not seem to be installed"
492msgstr ""
493
494msgid "you have changed your theme preferences"
495msgstr ""
496
497msgid "that language does not seem to be installed"
498msgstr ""
499
500msgid "you have changed your language preferences"
501msgstr ""
502
503msgid "login failed: you have to fill all fields"
504msgstr ""
505
506msgid "welcome to your wallabag"
507msgstr ""
508
509msgid "login failed: bad login or password"
510msgstr ""
511
512#, fuzzy
513msgid "import from instapaper completed"
514msgstr "importación desde Instapaper"
515
516#, fuzzy
517msgid "import from pocket completed"
518msgstr "importación desde Pocket"
519
520#, fuzzy
521msgid "import from Readability completed. "
522msgstr "importación desde Readability"
523
524#, fuzzy
525msgid "import from Poche completed. "
526msgstr "importación desde Pocket"
527
528msgid "Unknown import provider."
529msgstr ""
530
531msgid "Incomplete inc/poche/define.inc.php file, please define \""
532msgstr ""
533
534msgid "Could not find required \""
535msgstr ""
536
537msgid "Uh, there is a problem while generating feeds."
538msgstr ""
539
540#, fuzzy
541msgid "Cache deleted."
542msgstr "eliminar"
543
544msgid "Oops, it seems you don't have PHP 5."
545msgstr ""
546
547#~ msgid "poche it!"
548#~ msgstr "pochéalo!"
549
550#~ msgid "Updating poche"
551#~ msgstr "Actualizar"
552
553#~ msgid "create an issue"
554#~ msgstr "crear un ticket"
555
556#~ msgid "or"
557#~ msgstr "o"
558
559#~ msgid "contact us by mail"
560#~ msgstr "contactarnos por mail"
561
562#~ msgid "your poche version:"
563#~ msgstr "tu versión de Poche:"
diff --git a/locale/fa_IR.utf8/LC_MESSAGES/fa_IR.utf8.po b/locale/fa_IR.utf8/LC_MESSAGES/fa_IR.utf8.po
index 74a763c6..f24814d5 100644
--- a/locale/fa_IR.utf8/LC_MESSAGES/fa_IR.utf8.po
+++ b/locale/fa_IR.utf8/LC_MESSAGES/fa_IR.utf8.po
@@ -1,51 +1,136 @@
1msgid "" 1msgid ""
2msgstr "" 2msgstr ""
3"Project-Id-Version: \n" 3"Project-Id-Version: \n"
4"POT-Creation-Date: \n" 4"Report-Msgid-Bugs-To: \n"
5"POT-Creation-Date: 2014-02-25 15:15+0300\n"
5"PO-Revision-Date: \n" 6"PO-Revision-Date: \n"
6"Last-Translator: Nicolas Lœuillet <nicolas.loeuillet@gmail.com>\n" 7"Last-Translator: Maryana <mariroz@mr.lviv.ua>\n"
7"Language-Team: \n" 8"Language-Team: \n"
9"Language: \n"
8"MIME-Version: 1.0\n" 10"MIME-Version: 1.0\n"
9"Content-Type: text/plain; charset=UTF-8\n" 11"Content-Type: text/plain; charset=UTF-8\n"
10"Content-Transfer-Encoding: 8bit\n" 12"Content-Transfer-Encoding: 8bit\n"
11"X-Generator: Poedit 1.5.4\n" 13"X-Generator: Poedit 1.5.4\n"
14"X-Poedit-Language: Persian\n"
15"X-Poedit-Basepath: .\n"
16"X-Poedit-SearchPath-0: /home/mariroz/_DEV/web/wallabag/wallabag-master-testing\n"
17
18msgid "wallabag, a read it later open source system"
19msgstr ""
20
21msgid "login failed: user doesn't exist"
22msgstr ""
23
24msgid "return home"
25msgstr ""
12 26
13msgid "config" 27msgid "config"
14msgstr "تنظیمات" 28msgstr "تنظیمات"
15 29
16msgid "Poching a link" 30msgid "Saving articles"
17msgstr "پیوندی را poche کنید" 31msgstr ""
32
33msgid "There are several ways to save an article:"
34msgstr ""
18 35
19msgid "read the documentation" 36msgid "read the documentation"
20msgstr "راهنما را بخوانید" 37msgstr "راهنما را بخوانید"
21 38
22msgid "by filling this field" 39msgid "download the extension"
40msgstr ""
41
42msgid "via F-Droid"
43msgstr ""
44
45msgid " or "
46msgstr ""
47
48msgid "via Google Play"
49msgstr ""
50
51msgid "download the application"
52msgstr ""
53
54#, fuzzy
55msgid "By filling this field"
23msgstr "با پرکردن این بخش" 56msgstr "با پرکردن این بخش"
24 57
25msgid "poche it!" 58msgid "bag it!"
26msgstr "poche کنید!" 59msgstr ""
27 60
28msgid "Updating poche" 61msgid "Bookmarklet: drag & drop this link to your bookmarks bar"
29msgstr "به‌روزرسانی poche" 62msgstr ""
30 63
31msgid "your version" 64msgid "Upgrading wallabag"
32msgstr "نسخهٔ شما" 65msgstr ""
33 66
34msgid "latest stable version" 67#, fuzzy
68msgid "Installed version"
35msgstr "آخرین نسخهٔ پایدار" 69msgstr "آخرین نسخهٔ پایدار"
36 70
37msgid "a more recent stable version is available." 71#, fuzzy
72msgid "Latest stable version"
73msgstr "آخرین نسخهٔ پایدار"
74
75#, fuzzy
76msgid "A more recent stable version is available."
38msgstr "نسخهٔ پایدار تازه‌ای منتشر شده است." 77msgstr "نسخهٔ پایدار تازه‌ای منتشر شده است."
39 78
40msgid "you are up to date." 79#, fuzzy
80msgid "You are up to date."
41msgstr "شما به‌روز هستید." 81msgstr "شما به‌روز هستید."
42 82
43msgid "latest dev version" 83#, fuzzy
84msgid "Latest dev version"
44msgstr "آخرین نسخهٔ آزمایشی" 85msgstr "آخرین نسخهٔ آزمایشی"
45 86
46msgid "a more recent development version is available." 87#, fuzzy
88msgid "A more recent development version is available."
47msgstr "نسخهٔ آزمایشی تازه‌ای منتشر شده است." 89msgstr "نسخهٔ آزمایشی تازه‌ای منتشر شده است."
48 90
91msgid "Feeds"
92msgstr ""
93
94msgid "Your feed token is currently empty and must first be generated to enable feeds. Click <a href='?feed&amp;action=generate'>here to generate it</a>."
95msgstr ""
96
97msgid "Unread feed"
98msgstr ""
99
100#, fuzzy
101msgid "Favorites feed"
102msgstr "بهترین‌ها"
103
104#, fuzzy
105msgid "Archive feed"
106msgstr "بایگانی"
107
108msgid "Your token:"
109msgstr ""
110
111msgid "Your user id:"
112msgstr ""
113
114msgid "You can regenerate your token: <a href='?feed&amp;action=generate'>generate!</a>."
115msgstr ""
116
117#, fuzzy
118msgid "Change your theme"
119msgstr "گذرواژهٔ خود را تغییر دهید"
120
121msgid "Theme:"
122msgstr ""
123
124msgid "Update"
125msgstr "به‌روزرسانی"
126
127#, fuzzy
128msgid "Change your language"
129msgstr "گذرواژهٔ خود را تغییر دهید"
130
131msgid "Language:"
132msgstr ""
133
49msgid "Change your password" 134msgid "Change your password"
50msgstr "گذرواژهٔ خود را تغییر دهید" 135msgstr "گذرواژهٔ خود را تغییر دهید"
51 136
@@ -58,64 +143,68 @@ msgstr "گذرواژه"
58msgid "Repeat your new password:" 143msgid "Repeat your new password:"
59msgstr "گذرواژهٔ تازه را دوباره وارد کنید" 144msgstr "گذرواژهٔ تازه را دوباره وارد کنید"
60 145
61msgid "Update"
62msgstr "به‌روزرسانی"
63
64msgid "Import" 146msgid "Import"
65msgstr "درون‌ریزی" 147msgstr "درون‌ریزی"
66 148
67msgid "Please execute the import script locally, it can take a very long time." 149#, fuzzy
150msgid "Please execute the import script locally as it can take a very long time."
68msgstr "لطفاً برنامهٔ درون‌ریزی را به‌طور محلی اجرا کنید، شاید خیلی طول بکشد." 151msgstr "لطفاً برنامهٔ درون‌ریزی را به‌طور محلی اجرا کنید، شاید خیلی طول بکشد."
69 152
70msgid "More info in the official doc:" 153#, fuzzy
154msgid "More info in the official documentation:"
71msgstr "اطلاعات بیشتر در راهنمای رسمی:" 155msgstr "اطلاعات بیشتر در راهنمای رسمی:"
72 156
73msgid "import from Pocket" 157#, fuzzy
158msgid "Import from Pocket"
74msgstr "درون‌ریزی از Pocket" 159msgstr "درون‌ریزی از Pocket"
75 160
76msgid "import from Readability" 161#, php-format
162msgid "(you must have a %s file on your server)"
163msgstr ""
164
165#, fuzzy
166msgid "Import from Readability"
77msgstr "درون‌ریزی از Readability" 167msgstr "درون‌ریزی از Readability"
78 168
79msgid "import from Instapaper" 169#, fuzzy
170msgid "Import from Instapaper"
80msgstr "درون‌ریزی از Instapaper" 171msgstr "درون‌ریزی از Instapaper"
81 172
82msgid "Export your poche data" 173#, fuzzy
174msgid "Import from wallabag"
175msgstr "درون‌ریزی از Readability"
176
177#, fuzzy
178msgid "Export your wallabag data"
83msgstr "داده‌های poche خود را برون‌بری کنید" 179msgstr "داده‌های poche خود را برون‌بری کنید"
84 180
85msgid "Click here" 181msgid "Click here"
86msgstr "اینجا را کلیک کنید" 182msgstr "اینجا را کلیک کنید"
87 183
88msgid "to export your poche data." 184msgid "to download your database."
89msgstr "برای برون‌بری داده‌های poche شما" 185msgstr ""
90
91msgid "back to home"
92msgstr "بازگشت به خانه"
93 186
94msgid "installation" 187#, fuzzy
95msgstr "نصب" 188msgid "to export your wallabag data."
189msgstr "برای برون‌بری داده‌های poche شما"
96 190
97msgid "install your poche" 191msgid "Cache"
98msgstr "poche خود را نصب کنید" 192msgstr ""
99 193
100msgid "" 194msgid "to delete cache."
101"poche is still not installed. Please fill the below form to install it. "
102"Don't hesitate to <a href='http://doc.inthepoche.com'>read the documentation "
103"on poche website</a>."
104msgstr "" 195msgstr ""
105"poche هنوز نصب نیست. برای نصب لطفاً فرم زیر را پر کنید. خواندن <a "
106"href='http://doc.inthepoche.com'>راهنما در وبگاه poche</a> را از یاد نبرید."
107 196
108msgid "Login" 197msgid "You can enter multiple tags, separated by commas."
109msgstr "ورود" 198msgstr ""
110 199
111msgid "Repeat your password" 200msgid "return to article"
112msgstr "گذرواژه را دوباره وارد کنید" 201msgstr ""
113 202
114msgid "Install" 203msgid "plop"
115msgstr "نصب" 204msgstr "plop"
116 205
117msgid "back to top" 206msgid "You can <a href='wallabag_compatibility_test.php'>check your configuration here</a>."
118msgstr "بازگشت به بالای صفحه" 207msgstr ""
119 208
120msgid "favoris" 209msgid "favoris"
121msgstr "بهترین‌ها" 210msgstr "بهترین‌ها"
@@ -144,10 +233,14 @@ msgstr "با عنوان"
144msgid "by title desc" 233msgid "by title desc"
145msgstr "با عنوان (الفبایی معکوس)" 234msgstr "با عنوان (الفبایی معکوس)"
146 235
147msgid "No link available here!" 236msgid "Tag"
148msgstr "اینجا پیوندی موجود نیست!" 237msgstr ""
149 238
150msgid "toggle mark as read" 239msgid "No articles found."
240msgstr ""
241
242#, fuzzy
243msgid "Toggle mark as read"
151msgstr "خوانده‌شده/خوانده‌نشده" 244msgstr "خوانده‌شده/خوانده‌نشده"
152 245
153msgid "toggle favorite" 246msgid "toggle favorite"
@@ -159,13 +252,95 @@ msgstr "پاک‌کردن"
159msgid "original" 252msgid "original"
160msgstr "اصلی" 253msgstr "اصلی"
161 254
255msgid "estimated reading time:"
256msgstr ""
257
258msgid "mark all the entries as read"
259msgstr ""
260
162msgid "results" 261msgid "results"
163msgstr "نتایج" 262msgstr "نتایج"
164 263
165msgid "tweet" 264msgid "installation"
265msgstr "نصب"
266
267#, fuzzy
268msgid "install your wallabag"
269msgstr "poche خود را نصب کنید"
270
271#, fuzzy
272msgid "wallabag is still not installed. Please fill the below form to install it. Don't hesitate to <a href='http://doc.wallabag.org/'>read the documentation on wallabag website</a>."
273msgstr "poche هنوز نصب نیست. برای نصب لطفاً فرم زیر را پر کنید. خواندن <a href='http://doc.inthepoche.com'>راهنما در وبگاه poche</a> را از یاد نبرید."
274
275msgid "Login"
276msgstr "ورود"
277
278msgid "Repeat your password"
279msgstr "گذرواژه را دوباره وارد کنید"
280
281msgid "Install"
282msgstr "نصب"
283
284#, fuzzy
285msgid "login to your wallabag"
286msgstr "به poche خود وارد شوید"
287
288msgid "Login to wallabag"
289msgstr ""
290
291msgid "you are in demo mode, some features may be disabled."
292msgstr "این تنها نسخهٔ نمایشی است، برخی از ویژگی‌ها کار نمی‌کنند."
293
294msgid "Username"
295msgstr ""
296
297msgid "Stay signed in"
298msgstr "مرا به خاطر بسپار"
299
300msgid "(Do not check on public computers)"
301msgstr "(روی رایانه‌های عمومی این کار را نکنید)"
302
303msgid "Sign in"
304msgstr "ورود"
305
306msgid "favorites"
307msgstr "بهترین‌ها"
308
309msgid "estimated reading time :"
310msgstr ""
311
312msgid "Mark all the entries as read"
313msgstr ""
314
315msgid "Return home"
316msgstr ""
317
318#, fuzzy
319msgid "Back to top"
320msgstr "بازگشت به بالای صفحه"
321
322#, fuzzy
323msgid "Mark as read"
324msgstr "خوانده‌شده/خوانده‌نشده"
325
326#, fuzzy
327msgid "Favorite"
328msgstr "بهترین‌ها"
329
330#, fuzzy
331msgid "Toggle favorite"
332msgstr "جزء بهترین‌ها هست/نیست"
333
334#, fuzzy
335msgid "Delete"
336msgstr "پاک‌کردن"
337
338#, fuzzy
339msgid "Tweet"
166msgstr "توییت" 340msgstr "توییت"
167 341
168msgid "email" 342#, fuzzy
343msgid "Email"
169msgstr "ایمیل" 344msgstr "ایمیل"
170 345
171msgid "shaarli" 346msgid "shaarli"
@@ -174,26 +349,24 @@ msgstr "shaarli"
174msgid "flattr" 349msgid "flattr"
175msgstr "flattr" 350msgstr "flattr"
176 351
177msgid "this article appears wrong?" 352#, fuzzy
353msgid "Does this article appear wrong?"
178msgstr "این مطلب اشتباه نمایش داده شده؟" 354msgstr "این مطلب اشتباه نمایش داده شده؟"
179 355
180msgid "create an issue" 356msgid "tags:"
181msgstr "یک درخواست رفع‌مشکل بنویسید" 357msgstr ""
182
183msgid "or"
184msgstr "یا"
185 358
186msgid "contact us by mail" 359msgid "Edit tags"
187msgstr "به ما ایمیل بزنید" 360msgstr ""
188 361
189msgid "plop" 362msgid "save link!"
190msgstr "plop" 363msgstr ""
191 364
192msgid "home" 365msgid "home"
193msgstr "خانه" 366msgstr "خانه"
194 367
195msgid "favorites" 368msgid "tags"
196msgstr "بهترین‌ها" 369msgstr ""
197 370
198msgid "logout" 371msgid "logout"
199msgstr "بیرون رفتن" 372msgstr "بیرون رفتن"
@@ -204,23 +377,187 @@ msgstr "نیروگرفته از"
204msgid "debug mode is on so cache is off." 377msgid "debug mode is on so cache is off."
205msgstr "حالت عیب‌یابی فعال است، پس کاشه خاموش است." 378msgstr "حالت عیب‌یابی فعال است، پس کاشه خاموش است."
206 379
207msgid "your poche version:" 380#, fuzzy
208msgstr "نسخهٔ poche شما:" 381msgid "your wallabag version:"
382msgstr "نسخهٔ شما"
209 383
210msgid "storage:" 384msgid "storage:"
211msgstr "ذخیره‌سازی:" 385msgstr "ذخیره‌سازی:"
212 386
213msgid "login to your poche" 387msgid "save a link"
214msgstr "به poche خود وارد شوید" 388msgstr ""
215 389
216msgid "you are in demo mode, some features may be disabled." 390msgid "back to home"
217msgstr "ین نه نهٔ نمایی س، برخی از یژگی‌ا ک نی‌کنند." 391msgstr "اگشت به ن"
218 392
219msgid "Stay signed in" 393msgid "toggle mark as read"
220msgstr "ما ه س" 394msgstr "وانهه/ون‌نه"
221 395
222msgid "(Do not check on public computers)" 396msgid "tweet"
223msgstr "(وی راینه‌های عمومی این کار را نکنید)" 397msgstr "ویی"
224 398
225msgid "Sign in" 399msgid "email"
226msgstr "ورود" 400msgstr "ایمیل"
401
402msgid "this article appears wrong?"
403msgstr "این مطلب اشتباه نمایش داده شده؟"
404
405msgid "No link available here!"
406msgstr "اینجا پیوندی موجود نیست!"
407
408msgid "Poching a link"
409msgstr "پیوندی را poche کنید"
410
411msgid "by filling this field"
412msgstr "با پرکردن این بخش"
413
414msgid "bookmarklet: drag & drop this link to your bookmarks bar"
415msgstr ""
416
417msgid "your version"
418msgstr "نسخهٔ شما"
419
420msgid "latest stable version"
421msgstr "آخرین نسخهٔ پایدار"
422
423msgid "a more recent stable version is available."
424msgstr "نسخهٔ پایدار تازه‌ای منتشر شده است."
425
426msgid "you are up to date."
427msgstr "شما به‌روز هستید."
428
429msgid "latest dev version"
430msgstr "آخرین نسخهٔ آزمایشی"
431
432msgid "a more recent development version is available."
433msgstr "نسخهٔ آزمایشی تازه‌ای منتشر شده است."
434
435msgid "Please execute the import script locally, it can take a very long time."
436msgstr "لطفاً برنامهٔ درون‌ریزی را به‌طور محلی اجرا کنید، شاید خیلی طول بکشد."
437
438#, fuzzy
439msgid "More infos in the official doc:"
440msgstr "اطلاعات بیشتر در راهنمای رسمی:"
441
442msgid "import from Pocket"
443msgstr "درون‌ریزی از Pocket"
444
445msgid "import from Readability"
446msgstr "درون‌ریزی از Readability"
447
448msgid "import from Instapaper"
449msgstr "درون‌ریزی از Instapaper"
450
451msgid "Tags"
452msgstr ""
453
454#, fuzzy
455msgid "Untitled"
456msgstr "با عنوان"
457
458msgid "the link has been added successfully"
459msgstr ""
460
461msgid "error during insertion : the link wasn't added"
462msgstr ""
463
464msgid "the link has been deleted successfully"
465msgstr ""
466
467msgid "the link wasn't deleted"
468msgstr ""
469
470msgid "Article not found!"
471msgstr ""
472
473msgid "previous"
474msgstr ""
475
476msgid "next"
477msgstr ""
478
479msgid "in demo mode, you can't update your password"
480msgstr ""
481
482msgid "your password has been updated"
483msgstr ""
484
485msgid "the two fields have to be filled & the password must be the same in the two fields"
486msgstr ""
487
488msgid "still using the \""
489msgstr ""
490
491msgid "that theme does not seem to be installed"
492msgstr ""
493
494msgid "you have changed your theme preferences"
495msgstr ""
496
497msgid "that language does not seem to be installed"
498msgstr ""
499
500msgid "you have changed your language preferences"
501msgstr ""
502
503msgid "login failed: you have to fill all fields"
504msgstr ""
505
506msgid "welcome to your wallabag"
507msgstr ""
508
509msgid "login failed: bad login or password"
510msgstr ""
511
512#, fuzzy
513msgid "import from instapaper completed"
514msgstr "درون‌ریزی از Instapaper"
515
516#, fuzzy
517msgid "import from pocket completed"
518msgstr "درون‌ریزی از Pocket"
519
520#, fuzzy
521msgid "import from Readability completed. "
522msgstr "درون‌ریزی از Readability"
523
524#, fuzzy
525msgid "import from Poche completed. "
526msgstr "درون‌ریزی از Pocket"
527
528msgid "Unknown import provider."
529msgstr ""
530
531msgid "Incomplete inc/poche/define.inc.php file, please define \""
532msgstr ""
533
534msgid "Could not find required \""
535msgstr ""
536
537msgid "Uh, there is a problem while generating feeds."
538msgstr ""
539
540#, fuzzy
541msgid "Cache deleted."
542msgstr "پاک‌کردن"
543
544msgid "Oops, it seems you don't have PHP 5."
545msgstr ""
546
547#~ msgid "poche it!"
548#~ msgstr "poche کنید!"
549
550#~ msgid "Updating poche"
551#~ msgstr "به‌روزرسانی poche"
552
553#~ msgid "create an issue"
554#~ msgstr "یک درخواست رفع‌مشکل بنویسید"
555
556#~ msgid "or"
557#~ msgstr "یا"
558
559#~ msgid "contact us by mail"
560#~ msgstr "به ما ایمیل بزنید"
561
562#~ msgid "your poche version:"
563#~ msgstr "نسخهٔ poche شما:"
diff --git a/locale/fr_FR.utf8/LC_MESSAGES/fr_FR.utf8.po b/locale/fr_FR.utf8/LC_MESSAGES/fr_FR.utf8.po
index f105d180..c113019a 100644
--- a/locale/fr_FR.utf8/LC_MESSAGES/fr_FR.utf8.po
+++ b/locale/fr_FR.utf8/LC_MESSAGES/fr_FR.utf8.po
@@ -1,51 +1,138 @@
1msgid "" 1msgid ""
2msgstr "" 2msgstr ""
3"Project-Id-Version: \n" 3"Project-Id-Version: \n"
4"POT-Creation-Date: \n" 4"Report-Msgid-Bugs-To: \n"
5"POT-Creation-Date: 2014-02-25 15:05+0300\n"
5"PO-Revision-Date: \n" 6"PO-Revision-Date: \n"
6"Last-Translator: Nicolas Lœuillet <nicolas.loeuillet@gmail.com>\n" 7"Last-Translator: Maryana <mariroz@mr.lviv.ua>\n"
7"Language-Team: \n" 8"Language-Team: \n"
9"Language: \n"
8"MIME-Version: 1.0\n" 10"MIME-Version: 1.0\n"
9"Content-Type: text/plain; charset=UTF-8\n" 11"Content-Type: text/plain; charset=UTF-8\n"
10"Content-Transfer-Encoding: 8bit\n" 12"Content-Transfer-Encoding: 8bit\n"
11"X-Generator: Poedit 1.5.4\n" 13"X-Poedit-KeywordsList: _;gettext;gettext_noop\n"
14"X-Poedit-Basepath: .\n"
15"X-Poedit-Language: Franch\n"
16"X-Poedit-Country: FRANCE\n"
17"X-Poedit-SourceCharset: utf-8\n"
18"X-Poedit-SearchPath-0: /home/mariroz/_DEV/web/wallabag/wallabag-master-testing\n"
19
20msgid "wallabag, a read it later open source system"
21msgstr ""
22
23msgid "login failed: user doesn't exist"
24msgstr ""
25
26msgid "return home"
27msgstr ""
12 28
13msgid "config" 29msgid "config"
14msgstr "configuration" 30msgstr "configuration"
15 31
16msgid "Poching a link" 32msgid "Saving articles"
17msgstr "Pocher un lien" 33msgstr ""
34
35msgid "There are several ways to save an article:"
36msgstr ""
18 37
19msgid "read the documentation" 38msgid "read the documentation"
20msgstr "lisez la documentation" 39msgstr "lisez la documentation"
21 40
22msgid "by filling this field" 41msgid "download the extension"
42msgstr ""
43
44msgid "via F-Droid"
45msgstr ""
46
47msgid " or "
48msgstr ""
49
50msgid "via Google Play"
51msgstr ""
52
53msgid "download the application"
54msgstr ""
55
56#, fuzzy
57msgid "By filling this field"
23msgstr "en remplissant ce champ" 58msgstr "en remplissant ce champ"
24 59
25msgid "poche it!" 60msgid "bag it!"
26msgstr "pochez-le !" 61msgstr ""
27 62
28msgid "Updating poche" 63msgid "Bookmarklet: drag & drop this link to your bookmarks bar"
29msgstr "Mettre à jour poche" 64msgstr ""
30 65
31msgid "your version" 66msgid "Upgrading wallabag"
32msgstr "votre version" 67msgstr ""
33 68
34msgid "latest stable version" 69#, fuzzy
70msgid "Installed version"
35msgstr "dernière version stable" 71msgstr "dernière version stable"
36 72
37msgid "a more recent stable version is available." 73#, fuzzy
74msgid "Latest stable version"
75msgstr "dernière version stable"
76
77#, fuzzy
78msgid "A more recent stable version is available."
38msgstr "une version stable plus récente est disponible." 79msgstr "une version stable plus récente est disponible."
39 80
40msgid "you are up to date." 81#, fuzzy
82msgid "You are up to date."
41msgstr "vous êtes à jour." 83msgstr "vous êtes à jour."
42 84
43msgid "latest dev version" 85#, fuzzy
86msgid "Latest dev version"
44msgstr "dernière version de développement" 87msgstr "dernière version de développement"
45 88
46msgid "a more recent development version is available." 89#, fuzzy
90msgid "A more recent development version is available."
47msgstr "une version de développement plus récente est disponible." 91msgstr "une version de développement plus récente est disponible."
48 92
93msgid "Feeds"
94msgstr ""
95
96msgid "Your feed token is currently empty and must first be generated to enable feeds. Click <a href='?feed&amp;action=generate'>here to generate it</a>."
97msgstr ""
98
99msgid "Unread feed"
100msgstr ""
101
102#, fuzzy
103msgid "Favorites feed"
104msgstr "favoris"
105
106#, fuzzy
107msgid "Archive feed"
108msgstr "archive"
109
110msgid "Your token:"
111msgstr ""
112
113msgid "Your user id:"
114msgstr ""
115
116msgid "You can regenerate your token: <a href='?feed&amp;action=generate'>generate!</a>."
117msgstr ""
118
119#, fuzzy
120msgid "Change your theme"
121msgstr "Modifier votre mot de passe"
122
123msgid "Theme:"
124msgstr ""
125
126msgid "Update"
127msgstr "Mettre à jour"
128
129#, fuzzy
130msgid "Change your language"
131msgstr "Modifier votre mot de passe"
132
133msgid "Language:"
134msgstr ""
135
49msgid "Change your password" 136msgid "Change your password"
50msgstr "Modifier votre mot de passe" 137msgstr "Modifier votre mot de passe"
51 138
@@ -58,65 +145,68 @@ msgstr "Mot de passe"
58msgid "Repeat your new password:" 145msgid "Repeat your new password:"
59msgstr "Répétez votre nouveau mot de passe :" 146msgstr "Répétez votre nouveau mot de passe :"
60 147
61msgid "Update"
62msgstr "Mettre à jour"
63
64msgid "Import" 148msgid "Import"
65msgstr "Importer" 149msgstr "Importer"
66 150
67msgid "Please execute the import script locally, it can take a very long time." 151#, fuzzy
152msgid "Please execute the import script locally as it can take a very long time."
68msgstr "Merci d'exécuter l'import en local, cela peut prendre du temps." 153msgstr "Merci d'exécuter l'import en local, cela peut prendre du temps."
69 154
70msgid "More info in the official doc:" 155#, fuzzy
156msgid "More info in the official documentation:"
71msgstr "Plus d'infos sur la documentation officielle" 157msgstr "Plus d'infos sur la documentation officielle"
72 158
73msgid "import from Pocket" 159#, fuzzy
160msgid "Import from Pocket"
74msgstr "import depuis Pocket" 161msgstr "import depuis Pocket"
75 162
76msgid "import from Readability" 163#, php-format
164msgid "(you must have a %s file on your server)"
165msgstr ""
166
167#, fuzzy
168msgid "Import from Readability"
77msgstr "import depuis Readability" 169msgstr "import depuis Readability"
78 170
79msgid "import from Instapaper" 171#, fuzzy
172msgid "Import from Instapaper"
80msgstr "import depuis Instapaper" 173msgstr "import depuis Instapaper"
81 174
82msgid "Export your poche data" 175#, fuzzy
176msgid "Import from wallabag"
177msgstr "import depuis Readability"
178
179#, fuzzy
180msgid "Export your wallabag data"
83msgstr "Exporter vos données de poche" 181msgstr "Exporter vos données de poche"
84 182
85msgid "Click here" 183msgid "Click here"
86msgstr "Cliquez-ici" 184msgstr "Cliquez-ici"
87 185
88msgid "to export your poche data." 186msgid "to download your database."
89msgstr "pour exporter vos données de poche." 187msgstr ""
90
91msgid "back to home"
92msgstr "retour à l'accueil"
93 188
94msgid "installation" 189#, fuzzy
95msgstr "installation" 190msgid "to export your wallabag data."
191msgstr "pour exporter vos données de poche."
96 192
97msgid "install your poche" 193msgid "Cache"
98msgstr "installez votre poche" 194msgstr ""
99 195
100msgid "" 196msgid "to delete cache."
101"poche is still not installed. Please fill the below form to install it. "
102"Don't hesitate to <a href='http://doc.inthepoche.com'>read the documentation "
103"on poche website</a>."
104msgstr "" 197msgstr ""
105"poche n'est pas encore installé. Merci de remplir le formulaire suivant pour "
106"l'installer. N'hésitez pas à <a href='http://doc.inthepoche.com'>lire la "
107"documentation sur le site de poche</a>."
108 198
109msgid "Login" 199msgid "You can enter multiple tags, separated by commas."
110msgstr "Nom d'utilisateur" 200msgstr ""
111 201
112msgid "Repeat your password" 202msgid "return to article"
113msgstr "Répétez votre mot de passe" 203msgstr ""
114 204
115msgid "Install" 205msgid "plop"
116msgstr "Installer" 206msgstr "plop"
117 207
118msgid "back to top" 208msgid "You can <a href='wallabag_compatibility_test.php'>check your configuration here</a>."
119msgstr "retour en haut de page" 209msgstr ""
120 210
121msgid "favoris" 211msgid "favoris"
122msgstr "favoris" 212msgstr "favoris"
@@ -145,10 +235,14 @@ msgstr "par titre"
145msgid "by title desc" 235msgid "by title desc"
146msgstr "par titre desc" 236msgstr "par titre desc"
147 237
148msgid "No link available here!" 238msgid "Tag"
149msgstr "Aucun lien n'est disponible ici !" 239msgstr ""
150 240
151msgid "toggle mark as read" 241msgid "No articles found."
242msgstr ""
243
244#, fuzzy
245msgid "Toggle mark as read"
152msgstr "marquer comme lu / non lu" 246msgstr "marquer comme lu / non lu"
153 247
154msgid "toggle favorite" 248msgid "toggle favorite"
@@ -160,13 +254,95 @@ msgstr "supprimer"
160msgid "original" 254msgid "original"
161msgstr "original" 255msgstr "original"
162 256
257msgid "estimated reading time:"
258msgstr ""
259
260msgid "mark all the entries as read"
261msgstr ""
262
163msgid "results" 263msgid "results"
164msgstr "résultats" 264msgstr "résultats"
165 265
166msgid "tweet" 266msgid "installation"
267msgstr "installation"
268
269#, fuzzy
270msgid "install your wallabag"
271msgstr "installez votre poche"
272
273#, fuzzy
274msgid "wallabag is still not installed. Please fill the below form to install it. Don't hesitate to <a href='http://doc.wallabag.org/'>read the documentation on wallabag website</a>."
275msgstr "poche n'est pas encore installé. Merci de remplir le formulaire suivant pour l'installer. N'hésitez pas à <a href='http://doc.inthepoche.com'>lire la documentation sur le site de poche</a>."
276
277msgid "Login"
278msgstr "Nom d'utilisateur"
279
280msgid "Repeat your password"
281msgstr "Répétez votre mot de passe"
282
283msgid "Install"
284msgstr "Installer"
285
286#, fuzzy
287msgid "login to your wallabag"
288msgstr "se connecter à votre poche"
289
290msgid "Login to wallabag"
291msgstr ""
292
293msgid "you are in demo mode, some features may be disabled."
294msgstr "vous êtes en mode démo, certaines fonctionnalités peuvent être désactivées."
295
296msgid "Username"
297msgstr ""
298
299msgid "Stay signed in"
300msgstr "Rester connecté"
301
302msgid "(Do not check on public computers)"
303msgstr "(ne pas cocher sur un ordinateur public)"
304
305msgid "Sign in"
306msgstr "Se connecter"
307
308msgid "favorites"
309msgstr "favoris"
310
311msgid "estimated reading time :"
312msgstr ""
313
314msgid "Mark all the entries as read"
315msgstr ""
316
317msgid "Return home"
318msgstr ""
319
320#, fuzzy
321msgid "Back to top"
322msgstr "retour en haut de page"
323
324#, fuzzy
325msgid "Mark as read"
326msgstr "marquer comme lu / non lu"
327
328#, fuzzy
329msgid "Favorite"
330msgstr "favoris"
331
332#, fuzzy
333msgid "Toggle favorite"
334msgstr "marquer comme favori"
335
336#, fuzzy
337msgid "Delete"
338msgstr "supprimer"
339
340#, fuzzy
341msgid "Tweet"
167msgstr "tweet" 342msgstr "tweet"
168 343
169msgid "email" 344#, fuzzy
345msgid "Email"
170msgstr "email" 346msgstr "email"
171 347
172msgid "shaarli" 348msgid "shaarli"
@@ -175,26 +351,24 @@ msgstr "shaarli"
175msgid "flattr" 351msgid "flattr"
176msgstr "flattr" 352msgstr "flattr"
177 353
178msgid "this article appears wrong?" 354#, fuzzy
355msgid "Does this article appear wrong?"
179msgstr "cet article s'affiche mal ?" 356msgstr "cet article s'affiche mal ?"
180 357
181msgid "create an issue" 358msgid "tags:"
182msgstr "créez un ticket" 359msgstr ""
183
184msgid "or"
185msgstr "ou"
186 360
187msgid "contact us by mail" 361msgid "Edit tags"
188msgstr "contactez-nous par email" 362msgstr ""
189 363
190msgid "plop" 364msgid "save link!"
191msgstr "plop" 365msgstr ""
192 366
193msgid "home" 367msgid "home"
194msgstr "accueil" 368msgstr "accueil"
195 369
196msgid "favorites" 370msgid "tags"
197msgstr "favoris" 371msgstr ""
198 372
199msgid "logout" 373msgid "logout"
200msgstr "déconnexion" 374msgstr "déconnexion"
@@ -205,24 +379,195 @@ msgstr "propulsé par"
205msgid "debug mode is on so cache is off." 379msgid "debug mode is on so cache is off."
206msgstr "le mode de debug est actif, le cache est donc désactivé." 380msgstr "le mode de debug est actif, le cache est donc désactivé."
207 381
208msgid "your poche version:" 382#, fuzzy
209msgstr "votre version de poche :" 383msgid "your wallabag version:"
384msgstr "votre version"
210 385
211msgid "storage:" 386msgid "storage:"
212msgstr "stockage :" 387msgstr "stockage :"
213 388
214msgid "login to your poche" 389msgid "save a link"
215msgstr "se connecter à votre poche" 390msgstr ""
216 391
217msgid "you are in demo mode, some features may be disabled." 392msgid "back to home"
393msgstr "retour à l'accueil"
394
395msgid "toggle mark as read"
396msgstr "marquer comme lu / non lu"
397
398msgid "tweet"
399msgstr "tweet"
400
401msgid "email"
402msgstr "email"
403
404msgid "this article appears wrong?"
405msgstr "cet article s'affiche mal ?"
406
407msgid "No link available here!"
408msgstr "Aucun lien n'est disponible ici !"
409
410msgid "Poching a link"
411msgstr "Pocher un lien"
412
413msgid "by filling this field"
414msgstr "en remplissant ce champ"
415
416msgid "bookmarklet: drag & drop this link to your bookmarks bar"
218msgstr "" 417msgstr ""
219"vous êtes en mode démo, certaines fonctionnalités peuvent être désactivées."
220 418
221msgid "Stay signed in" 419msgid "your version"
222msgstr "Rester connecté" 420msgstr "votre version"
223 421
224msgid "(Do not check on public computers)" 422msgid "latest stable version"
225msgstr "(ne pas cocher sur un ordinateur public)" 423msgstr "dernière version stable"
226 424
227msgid "Sign in" 425msgid "a more recent stable version is available."
228msgstr "Se connecter" 426msgstr "une version stable plus récente est disponible."
427
428msgid "you are up to date."
429msgstr "vous êtes à jour."
430
431msgid "latest dev version"
432msgstr "dernière version de développement"
433
434msgid "a more recent development version is available."
435msgstr "une version de développement plus récente est disponible."
436
437msgid "Please execute the import script locally, it can take a very long time."
438msgstr "Merci d'exécuter l'import en local, cela peut prendre du temps."
439
440#, fuzzy
441msgid "More infos in the official doc:"
442msgstr "Plus d'infos sur la documentation officielle"
443
444msgid "import from Pocket"
445msgstr "import depuis Pocket"
446
447msgid "import from Readability"
448msgstr "import depuis Readability"
449
450msgid "import from Instapaper"
451msgstr "import depuis Instapaper"
452
453msgid "Tags"
454msgstr ""
455
456#, fuzzy
457msgid "Untitled"
458msgstr "par titre"
459
460msgid "the link has been added successfully"
461msgstr ""
462
463msgid "error during insertion : the link wasn't added"
464msgstr ""
465
466msgid "the link has been deleted successfully"
467msgstr ""
468
469msgid "the link wasn't deleted"
470msgstr ""
471
472msgid "Article not found!"
473msgstr ""
474
475msgid "previous"
476msgstr ""
477
478msgid "next"
479msgstr ""
480
481msgid "in demo mode, you can't update your password"
482msgstr ""
483
484msgid "your password has been updated"
485msgstr ""
486
487msgid "the two fields have to be filled & the password must be the same in the two fields"
488msgstr ""
489
490msgid "still using the \""
491msgstr ""
492
493msgid "that theme does not seem to be installed"
494msgstr ""
495
496msgid "you have changed your theme preferences"
497msgstr ""
498
499msgid "that language does not seem to be installed"
500msgstr ""
501
502msgid "you have changed your language preferences"
503msgstr ""
504
505msgid "login failed: you have to fill all fields"
506msgstr ""
507
508msgid "welcome to your wallabag"
509msgstr ""
510
511msgid "login failed: bad login or password"
512msgstr ""
513
514#, fuzzy
515msgid "import from instapaper completed"
516msgstr "import depuis Instapaper"
517
518#, fuzzy
519msgid "import from pocket completed"
520msgstr "import depuis Pocket"
521
522#, fuzzy
523msgid "import from Readability completed. "
524msgstr "import depuis Readability"
525
526#, fuzzy
527msgid "import from Poche completed. "
528msgstr "import depuis Pocket"
529
530msgid "Unknown import provider."
531msgstr ""
532
533msgid "Incomplete inc/poche/define.inc.php file, please define \""
534msgstr ""
535
536msgid "Could not find required \""
537msgstr ""
538
539msgid "Uh, there is a problem while generating feeds."
540msgstr ""
541
542#, fuzzy
543msgid "Cache deleted."
544msgstr "supprimer"
545
546msgid "Oops, it seems you don't have PHP 5."
547msgstr ""
548
549#~ msgid "poche it!"
550#~ msgstr "pochez-le !"
551
552#~ msgid "Updating poche"
553#~ msgstr "Mettre à jour poche"
554
555#, fuzzy
556#~ msgid "Export your poche datas"
557#~ msgstr "Exporter vos données de poche"
558
559#, fuzzy
560#~ msgid "to export your poche datas."
561#~ msgstr "pour exporter vos données de poche."
562
563#~ msgid "create an issue"
564#~ msgstr "créez un ticket"
565
566#~ msgid "or"
567#~ msgstr "ou"
568
569#~ msgid "contact us by mail"
570#~ msgstr "contactez-nous par email"
571
572#~ msgid "your poche version:"
573#~ msgstr "votre version de poche :"
diff --git a/locale/it_IT.utf8/LC_MESSAGES/it_IT.utf8.po b/locale/it_IT.utf8/LC_MESSAGES/it_IT.utf8.po
index 429d5d55..41cc01e0 100644
--- a/locale/it_IT.utf8/LC_MESSAGES/it_IT.utf8.po
+++ b/locale/it_IT.utf8/LC_MESSAGES/it_IT.utf8.po
@@ -4,54 +4,138 @@
4msgid "" 4msgid ""
5msgstr "" 5msgstr ""
6"Project-Id-Version: poche\n" 6"Project-Id-Version: poche\n"
7"POT-Creation-Date: \n" 7"Report-Msgid-Bugs-To: \n"
8"PO-Revision-Date: 2013-11-25 09:47+0100\n" 8"POT-Creation-Date: 2014-02-25 15:13+0300\n"
9"Last-Translator: Nicolas Lœuillet <nicolas.loeuillet@gmail.com>\n" 9"PO-Revision-Date: 2014-02-25 15:13+0300\n"
10"Language-Team: Italian (http://www.transifex.com/projects/p/poche/language/" 10"Last-Translator: Maryana <mariroz@mr.lviv.ua>\n"
11"it/)\n" 11"Language-Team: Italian (http://www.transifex.com/projects/p/poche/language/it/)\n"
12"Language: it\n"
12"MIME-Version: 1.0\n" 13"MIME-Version: 1.0\n"
13"Content-Type: text/plain; charset=UTF-8\n" 14"Content-Type: text/plain; charset=UTF-8\n"
14"Content-Transfer-Encoding: 8bit\n" 15"Content-Transfer-Encoding: 8bit\n"
15"Language: it\n"
16"Plural-Forms: nplurals=2; plural=(n != 1);\n" 16"Plural-Forms: nplurals=2; plural=(n != 1);\n"
17"X-Generator: Poedit 1.5.4\n" 17"X-Generator: Poedit 1.5.4\n"
18"X-Poedit-Language: Italian\n"
19"X-Poedit-Country: ITALY\n"
20"X-Poedit-Basepath: .\n"
21"X-Poedit-SearchPath-0: /home/mariroz/_DEV/web/wallabag/wallabag-master-testing\n"
22
23msgid "wallabag, a read it later open source system"
24msgstr ""
25
26msgid "login failed: user doesn't exist"
27msgstr ""
28
29msgid "return home"
30msgstr ""
18 31
19msgid "config" 32msgid "config"
20msgstr "configurazione" 33msgstr "configurazione"
21 34
22msgid "Poching a link" 35msgid "Saving articles"
23msgstr "Pochare un link" 36msgstr ""
37
38msgid "There are several ways to save an article:"
39msgstr ""
24 40
25msgid "read the documentation" 41msgid "read the documentation"
26msgstr "leggi la documentazione" 42msgstr "leggi la documentazione"
27 43
28msgid "by filling this field" 44msgid "download the extension"
45msgstr ""
46
47msgid "via F-Droid"
48msgstr ""
49
50msgid " or "
51msgstr ""
52
53msgid "via Google Play"
54msgstr ""
55
56msgid "download the application"
57msgstr ""
58
59#, fuzzy
60msgid "By filling this field"
29msgstr "compilando questo campo" 61msgstr "compilando questo campo"
30 62
31msgid "poche it!" 63msgid "bag it!"
32msgstr "pochalo!" 64msgstr ""
33 65
34msgid "Updating poche" 66msgid "Bookmarklet: drag & drop this link to your bookmarks bar"
35msgstr "Aggiornamento poche" 67msgstr ""
36 68
37msgid "your version" 69msgid "Upgrading wallabag"
38msgstr "la tua versione" 70msgstr ""
39 71
40msgid "latest stable version" 72#, fuzzy
73msgid "Installed version"
41msgstr "ultima versione stabile" 74msgstr "ultima versione stabile"
42 75
43msgid "a more recent stable version is available." 76#, fuzzy
77msgid "Latest stable version"
78msgstr "ultima versione stabile"
79
80#, fuzzy
81msgid "A more recent stable version is available."
44msgstr "è disponibile una versione stabile più recente." 82msgstr "è disponibile una versione stabile più recente."
45 83
46msgid "you are up to date." 84#, fuzzy
85msgid "You are up to date."
47msgstr "sei aggiornato." 86msgstr "sei aggiornato."
48 87
49msgid "latest dev version" 88#, fuzzy
89msgid "Latest dev version"
50msgstr "ultima versione di sviluppo" 90msgstr "ultima versione di sviluppo"
51 91
52msgid "a more recent development version is available." 92#, fuzzy
93msgid "A more recent development version is available."
53msgstr "è disponibile una versione di sviluppo più recente." 94msgstr "è disponibile una versione di sviluppo più recente."
54 95
96msgid "Feeds"
97msgstr ""
98
99msgid "Your feed token is currently empty and must first be generated to enable feeds. Click <a href='?feed&amp;action=generate'>here to generate it</a>."
100msgstr ""
101
102msgid "Unread feed"
103msgstr ""
104
105#, fuzzy
106msgid "Favorites feed"
107msgstr "preferiti"
108
109#, fuzzy
110msgid "Archive feed"
111msgstr "archivio"
112
113msgid "Your token:"
114msgstr ""
115
116msgid "Your user id:"
117msgstr ""
118
119msgid "You can regenerate your token: <a href='?feed&amp;action=generate'>generate!</a>."
120msgstr ""
121
122#, fuzzy
123msgid "Change your theme"
124msgstr "Cambia la tua password"
125
126msgid "Theme:"
127msgstr ""
128
129msgid "Update"
130msgstr "Aggiorna"
131
132#, fuzzy
133msgid "Change your language"
134msgstr "Cambia la tua password"
135
136msgid "Language:"
137msgstr ""
138
55msgid "Change your password" 139msgid "Change your password"
56msgstr "Cambia la tua password" 140msgstr "Cambia la tua password"
57 141
@@ -64,67 +148,68 @@ msgstr "Password"
64msgid "Repeat your new password:" 148msgid "Repeat your new password:"
65msgstr "Ripeti la nuova password:" 149msgstr "Ripeti la nuova password:"
66 150
67msgid "Update"
68msgstr "Aggiorna"
69
70msgid "Import" 151msgid "Import"
71msgstr "Importa" 152msgstr "Importa"
72 153
73msgid "Please execute the import script locally, it can take a very long time." 154#, fuzzy
74msgstr "" 155msgid "Please execute the import script locally as it can take a very long time."
75"Si prega di eseguire lo script di importazione a livello locale, può " 156msgstr "Si prega di eseguire lo script di importazione a livello locale, può richiedere un tempo molto lungo."
76"richiedere un tempo molto lungo."
77 157
78msgid "More info in the official doc:" 158#, fuzzy
159msgid "More info in the official documentation:"
79msgstr "Maggiori info nella documentazione ufficiale" 160msgstr "Maggiori info nella documentazione ufficiale"
80 161
81msgid "import from Pocket" 162#, fuzzy
163msgid "Import from Pocket"
82msgstr "Importa da Pocket" 164msgstr "Importa da Pocket"
83 165
84msgid "import from Readability" 166#, php-format
167msgid "(you must have a %s file on your server)"
168msgstr ""
169
170#, fuzzy
171msgid "Import from Readability"
85msgstr "Importa da Readability" 172msgstr "Importa da Readability"
86 173
87msgid "import from Instapaper" 174#, fuzzy
175msgid "Import from Instapaper"
88msgstr "Importa da Instapaper" 176msgstr "Importa da Instapaper"
89 177
90msgid "Export your poche data" 178#, fuzzy
179msgid "Import from wallabag"
180msgstr "Importa da Readability"
181
182#, fuzzy
183msgid "Export your wallabag data"
91msgstr "Esporta i tuoi dati di poche" 184msgstr "Esporta i tuoi dati di poche"
92 185
93msgid "Click here" 186msgid "Click here"
94msgstr "Fai clic qui" 187msgstr "Fai clic qui"
95 188
96msgid "to export your poche data." 189msgid "to download your database."
97msgstr "per esportare i tuoi dati di poche." 190msgstr ""
98
99msgid "back to home"
100msgstr "torna alla home"
101 191
102msgid "installation" 192#, fuzzy
103msgstr "installazione" 193msgid "to export your wallabag data."
194msgstr "per esportare i tuoi dati di poche."
104 195
105msgid "install your poche" 196msgid "Cache"
106msgstr "installa il tuo poche" 197msgstr ""
107 198
108msgid "" 199msgid "to delete cache."
109"poche is still not installed. Please fill the below form to install it. "
110"Don't hesitate to <a href='http://doc.inthepoche.com'>read the documentation "
111"on poche website</a>."
112msgstr "" 200msgstr ""
113"poche non è ancora installato. Si prega di riempire il modulo sottostante "
114"per completare l'installazione. <a href='http://doc.inthepoche.com'>Leggere "
115"la documentazione sul sito di poche</a>."
116 201
117msgid "Login" 202msgid "You can enter multiple tags, separated by commas."
118msgstr "Nome utente" 203msgstr ""
119 204
120msgid "Repeat your password" 205msgid "return to article"
121msgstr "Ripeti la tua password" 206msgstr ""
122 207
123msgid "Install" 208msgid "plop"
124msgstr "Installa" 209msgstr "plop"
125 210
126msgid "back to top" 211msgid "You can <a href='wallabag_compatibility_test.php'>check your configuration here</a>."
127msgstr "torna a inizio pagina" 212msgstr ""
128 213
129msgid "favoris" 214msgid "favoris"
130msgstr "preferiti" 215msgstr "preferiti"
@@ -153,10 +238,14 @@ msgstr "per titolo"
153msgid "by title desc" 238msgid "by title desc"
154msgstr "per titolo decr" 239msgstr "per titolo decr"
155 240
156msgid "No link available here!" 241msgid "Tag"
157msgstr "Nessun link disponibile!" 242msgstr ""
158 243
159msgid "toggle mark as read" 244msgid "No articles found."
245msgstr ""
246
247#, fuzzy
248msgid "Toggle mark as read"
160msgstr "segna come letto / non letto" 249msgstr "segna come letto / non letto"
161 250
162msgid "toggle favorite" 251msgid "toggle favorite"
@@ -168,13 +257,95 @@ msgstr "elimina"
168msgid "original" 257msgid "original"
169msgstr "originale" 258msgstr "originale"
170 259
260msgid "estimated reading time:"
261msgstr ""
262
263msgid "mark all the entries as read"
264msgstr ""
265
171msgid "results" 266msgid "results"
172msgstr "risultati" 267msgstr "risultati"
173 268
174msgid "tweet" 269msgid "installation"
270msgstr "installazione"
271
272#, fuzzy
273msgid "install your wallabag"
274msgstr "installa il tuo poche"
275
276#, fuzzy
277msgid "wallabag is still not installed. Please fill the below form to install it. Don't hesitate to <a href='http://doc.wallabag.org/'>read the documentation on wallabag website</a>."
278msgstr "poche non è ancora installato. Si prega di riempire il modulo sottostante per completare l'installazione. <a href='http://doc.inthepoche.com'>Leggere la documentazione sul sito di poche</a>."
279
280msgid "Login"
281msgstr "Nome utente"
282
283msgid "Repeat your password"
284msgstr "Ripeti la tua password"
285
286msgid "Install"
287msgstr "Installa"
288
289#, fuzzy
290msgid "login to your wallabag"
291msgstr "accedi al tuo poche"
292
293msgid "Login to wallabag"
294msgstr ""
295
296msgid "you are in demo mode, some features may be disabled."
297msgstr "sei in modalità dimostrazione, alcune funzionalità potrebbero essere disattivate."
298
299msgid "Username"
300msgstr ""
301
302msgid "Stay signed in"
303msgstr "Resta connesso"
304
305msgid "(Do not check on public computers)"
306msgstr "(non selezionare su computer pubblici)"
307
308msgid "Sign in"
309msgstr "Accedi"
310
311msgid "favorites"
312msgstr "preferiti"
313
314msgid "estimated reading time :"
315msgstr ""
316
317msgid "Mark all the entries as read"
318msgstr ""
319
320msgid "Return home"
321msgstr ""
322
323#, fuzzy
324msgid "Back to top"
325msgstr "torna a inizio pagina"
326
327#, fuzzy
328msgid "Mark as read"
329msgstr "segna come letto / non letto"
330
331#, fuzzy
332msgid "Favorite"
333msgstr "preferiti"
334
335#, fuzzy
336msgid "Toggle favorite"
337msgstr "segna come preferito"
338
339#, fuzzy
340msgid "Delete"
341msgstr "elimina"
342
343#, fuzzy
344msgid "Tweet"
175msgstr "twitta" 345msgstr "twitta"
176 346
177msgid "email" 347#, fuzzy
348msgid "Email"
178msgstr "email" 349msgstr "email"
179 350
180msgid "shaarli" 351msgid "shaarli"
@@ -183,26 +354,24 @@ msgstr "shaarli"
183msgid "flattr" 354msgid "flattr"
184msgstr "flattr" 355msgstr "flattr"
185 356
186msgid "this article appears wrong?" 357#, fuzzy
358msgid "Does this article appear wrong?"
187msgstr "articolo non visualizzato correttamente?" 359msgstr "articolo non visualizzato correttamente?"
188 360
189msgid "create an issue" 361msgid "tags:"
190msgstr "crea una segnalazione" 362msgstr ""
191
192msgid "or"
193msgstr "oppure"
194 363
195msgid "contact us by mail" 364msgid "Edit tags"
196msgstr "contattaci via email" 365msgstr ""
197 366
198msgid "plop" 367msgid "save link!"
199msgstr "plop" 368msgstr ""
200 369
201msgid "home" 370msgid "home"
202msgstr "home" 371msgstr "home"
203 372
204msgid "favorites" 373msgid "tags"
205msgstr "preferiti" 374msgstr ""
206 375
207msgid "logout" 376msgid "logout"
208msgstr "esci" 377msgstr "esci"
@@ -213,25 +382,187 @@ msgstr "realizzato con"
213msgid "debug mode is on so cache is off." 382msgid "debug mode is on so cache is off."
214msgstr "modalità di debug attiva, cache disattivata." 383msgstr "modalità di debug attiva, cache disattivata."
215 384
216msgid "your poche version:" 385#, fuzzy
217msgstr "la tua versione di poche:" 386msgid "your wallabag version:"
387msgstr "la tua versione"
218 388
219msgid "storage:" 389msgid "storage:"
220msgstr "memoria:" 390msgstr "memoria:"
221 391
222msgid "login to your poche" 392msgid "save a link"
223msgstr "accedi al tuo poche" 393msgstr ""
224 394
225msgid "you are in demo mode, some features may be disabled." 395msgid "back to home"
396msgstr "torna alla home"
397
398msgid "toggle mark as read"
399msgstr "segna come letto / non letto"
400
401msgid "tweet"
402msgstr "twitta"
403
404msgid "email"
405msgstr "email"
406
407msgid "this article appears wrong?"
408msgstr "articolo non visualizzato correttamente?"
409
410msgid "No link available here!"
411msgstr "Nessun link disponibile!"
412
413msgid "Poching a link"
414msgstr "Pochare un link"
415
416msgid "by filling this field"
417msgstr "compilando questo campo"
418
419msgid "bookmarklet: drag & drop this link to your bookmarks bar"
226msgstr "" 420msgstr ""
227"sei in modalità dimostrazione, alcune funzionalità potrebbero essere "
228"disattivate."
229 421
230msgid "Stay signed in" 422msgid "your version"
231msgstr "Resta connesso" 423msgstr "la tua versione"
232 424
233msgid "(Do not check on public computers)" 425msgid "latest stable version"
234msgstr "(non selezionare su computer pubblici)" 426msgstr "ultima versione stabile"
235 427
236msgid "Sign in" 428msgid "a more recent stable version is available."
237msgstr "Accedi" 429msgstr "è disponibile una versione stabile più recente."
430
431msgid "you are up to date."
432msgstr "sei aggiornato."
433
434msgid "latest dev version"
435msgstr "ultima versione di sviluppo"
436
437msgid "a more recent development version is available."
438msgstr "è disponibile una versione di sviluppo più recente."
439
440msgid "Please execute the import script locally, it can take a very long time."
441msgstr "Si prega di eseguire lo script di importazione a livello locale, può richiedere un tempo molto lungo."
442
443#, fuzzy
444msgid "More infos in the official doc:"
445msgstr "Maggiori info nella documentazione ufficiale"
446
447msgid "import from Pocket"
448msgstr "Importa da Pocket"
449
450msgid "import from Readability"
451msgstr "Importa da Readability"
452
453msgid "import from Instapaper"
454msgstr "Importa da Instapaper"
455
456msgid "Tags"
457msgstr ""
458
459#, fuzzy
460msgid "Untitled"
461msgstr "per titolo"
462
463msgid "the link has been added successfully"
464msgstr ""
465
466msgid "error during insertion : the link wasn't added"
467msgstr ""
468
469msgid "the link has been deleted successfully"
470msgstr ""
471
472msgid "the link wasn't deleted"
473msgstr ""
474
475msgid "Article not found!"
476msgstr ""
477
478msgid "previous"
479msgstr ""
480
481msgid "next"
482msgstr ""
483
484msgid "in demo mode, you can't update your password"
485msgstr ""
486
487msgid "your password has been updated"
488msgstr ""
489
490msgid "the two fields have to be filled & the password must be the same in the two fields"
491msgstr ""
492
493msgid "still using the \""
494msgstr ""
495
496msgid "that theme does not seem to be installed"
497msgstr ""
498
499msgid "you have changed your theme preferences"
500msgstr ""
501
502msgid "that language does not seem to be installed"
503msgstr ""
504
505msgid "you have changed your language preferences"
506msgstr ""
507
508msgid "login failed: you have to fill all fields"
509msgstr ""
510
511msgid "welcome to your wallabag"
512msgstr ""
513
514msgid "login failed: bad login or password"
515msgstr ""
516
517#, fuzzy
518msgid "import from instapaper completed"
519msgstr "Importa da Instapaper"
520
521#, fuzzy
522msgid "import from pocket completed"
523msgstr "Importa da Pocket"
524
525#, fuzzy
526msgid "import from Readability completed. "
527msgstr "Importa da Readability"
528
529#, fuzzy
530msgid "import from Poche completed. "
531msgstr "Importa da Pocket"
532
533msgid "Unknown import provider."
534msgstr ""
535
536msgid "Incomplete inc/poche/define.inc.php file, please define \""
537msgstr ""
538
539msgid "Could not find required \""
540msgstr ""
541
542msgid "Uh, there is a problem while generating feeds."
543msgstr ""
544
545#, fuzzy
546msgid "Cache deleted."
547msgstr "elimina"
548
549msgid "Oops, it seems you don't have PHP 5."
550msgstr ""
551
552#~ msgid "poche it!"
553#~ msgstr "pochalo!"
554
555#~ msgid "Updating poche"
556#~ msgstr "Aggiornamento poche"
557
558#~ msgid "create an issue"
559#~ msgstr "crea una segnalazione"
560
561#~ msgid "or"
562#~ msgstr "oppure"
563
564#~ msgid "contact us by mail"
565#~ msgstr "contattaci via email"
566
567#~ msgid "your poche version:"
568#~ msgstr "la tua versione di poche:"
diff --git a/locale/pl_PL.utf8/LC_MESSAGES/pl_PL.utf8.mo b/locale/pl_PL.utf8/LC_MESSAGES/pl_PL.utf8.mo
index 3e8b132f..22985970 100755
--- a/locale/pl_PL.utf8/LC_MESSAGES/pl_PL.utf8.mo
+++ b/locale/pl_PL.utf8/LC_MESSAGES/pl_PL.utf8.mo
Binary files differ
diff --git a/locale/pl_PL.utf8/LC_MESSAGES/pl_PL.utf8.po b/locale/pl_PL.utf8/LC_MESSAGES/pl_PL.utf8.po
index 0e7cbcf8..c65e1c63 100755
--- a/locale/pl_PL.utf8/LC_MESSAGES/pl_PL.utf8.po
+++ b/locale/pl_PL.utf8/LC_MESSAGES/pl_PL.utf8.po
@@ -2,8 +2,8 @@ msgid ""
2msgstr "" 2msgstr ""
3"Project-Id-Version: wballabag\n" 3"Project-Id-Version: wballabag\n"
4"Report-Msgid-Bugs-To: \n" 4"Report-Msgid-Bugs-To: \n"
5"POT-Creation-Date: 2014-02-07 17:38+0300\n" 5"POT-Creation-Date: 2014-02-24 15:19+0300\n"
6"PO-Revision-Date: 2014-02-07 17:43+0300\n" 6"PO-Revision-Date: 2014-02-24 15:29+0300\n"
7"Last-Translator: Maryana <mariroz@mr.lviv.ua>\n" 7"Last-Translator: Maryana <mariroz@mr.lviv.ua>\n"
8"Language-Team: \n" 8"Language-Team: \n"
9"Language: \n" 9"Language: \n"
@@ -15,7 +15,7 @@ msgstr ""
15"X-Poedit-Language: Polish\n" 15"X-Poedit-Language: Polish\n"
16"X-Poedit-Country: POLAND\n" 16"X-Poedit-Country: POLAND\n"
17"X-Poedit-SourceCharset: utf-8\n" 17"X-Poedit-SourceCharset: utf-8\n"
18"X-Poedit-SearchPath-0: /home/mariroz/_DEV/web/wallabag/wallabag\n" 18"X-Poedit-SearchPath-0: /home/mariroz/_DEV/web/wallabag/wallabag-master-testing\n"
19 19
20msgid "poche, a read it later open source system" 20msgid "poche, a read it later open source system"
21msgstr "poche, serwis odrocznego czytania open source" 21msgstr "poche, serwis odrocznego czytania open source"
@@ -23,72 +23,163 @@ msgstr "poche, serwis odrocznego czytania open source"
23msgid "login failed: user doesn't exist" 23msgid "login failed: user doesn't exist"
24msgstr "logowanie nie udało się: użytkownik nie istnieje" 24msgstr "logowanie nie udało się: użytkownik nie istnieje"
25 25
26msgid "Return home" 26msgid "home"
27msgstr "Wrocic do głównej" 27msgstr "główna"
28 28
29msgid "Back to top" 29msgid "favorites"
30msgstr "Wrócić na górę" 30msgstr "ulubione"
31 31
32msgid "original" 32msgid "archive"
33msgstr "oryginal" 33msgstr "archiwum"
34 34
35msgid "Mark as read" 35msgid "tags"
36msgstr "Zaznacz jako przeczytane" 36msgstr "tagi"
37 37
38msgid "Toggle mark as read" 38msgid "config"
39msgstr "Przełącz jako przeczytane" 39msgstr "ustawienia"
40 40
41msgid "Favorite" 41msgid "logout"
42msgstr "Ulubiony" 42msgstr "wyloguj"
43 43
44msgid "Toggle favorite" 44msgid "back to home"
45msgstr "Zaznacz jako ulubione" 45msgstr "wróc do głównej"
46 46
47msgid "Delete" 47msgid "Tags"
48msgstr "Usuń" 48msgstr "Tegi"
49 49
50msgid "Tweet" 50#, fuzzy
51msgstr "Tweet" 51msgid "Poching a link"
52msgstr "Zapisywanie linków"
52 53
53msgid "Email" 54msgid "You can poche a link by several methods:"
54msgstr "Wyslij email" 55msgstr "Istnieje kilka sposobów aby zapisać link:"
55 56
56msgid "shaarli" 57msgid "read the documentation"
57msgstr "shaarli" 58msgstr "zapoznać się z dokumentacją"
58 59
59msgid "flattr" 60msgid "download the extension"
60msgstr "flattr" 61msgstr "pobrać rozszerzenie"
61 62
62msgid "Does this article appear wrong?" 63msgid "download the application"
63msgstr "Czy ten artykuł wygląda nieprawidłowo?" 64msgstr "pobrać aplikację"
64 65
65msgid "tags:" 66#, fuzzy
66msgstr "tegi:" 67msgid "by filling this field"
68msgstr "Poprzez wypełnienie tego pola"
67 69
68msgid "Edit tags" 70msgid "poche it!"
69msgstr "Redagowac tegi" 71msgstr "zapisać!"
70 72
71msgid "return home" 73#, fuzzy
72msgstr "wrócić do głównej" 74msgid "bookmarklet: drag & drop this link to your bookmarks bar"
75msgstr "Bookmarklet: przeciągnij i upucs ten link na pasek zakladek"
73 76
74msgid "powered by" 77msgid "Updating poche"
75msgstr "zasilany przez" 78msgstr "Aktualizacja poche"
76 79
77msgid "debug mode is on so cache is off." 80msgid "your version"
78msgstr "tryb debugowania jest włączony, więc cash jest wyłączony." 81msgstr "twoja wersja"
79 82
80msgid "your poche version:" 83#, fuzzy
81msgstr "twoja wersja poche:" 84msgid "latest stable version"
85msgstr "Najnowsza stabilna wersja"
82 86
83msgid "storage:" 87#, fuzzy
84msgstr "magazyn:" 88msgid "a more recent stable version is available."
89msgstr "Nowsza stabilna wersja jest dostępna."
90
91msgid "you are up to date."
92msgstr "masz wszystko najnowsze."
93
94msgid "latest dev version"
95msgstr "najnowsza wersja dev"
96
97msgid "a more recent development version is available."
98msgstr "Nowsza wersja rozwojowa jest dostępna."
99
100msgid "Change your theme"
101msgstr "Zmienic motyw"
102
103msgid "Theme:"
104msgstr "Motyw:"
105
106msgid "Update"
107msgstr "Aktualizacja"
108
109msgid "Change your password"
110msgstr "Zmień hasło"
111
112msgid "New password:"
113msgstr "Nowe hasło:"
114
115msgid "Password"
116msgstr "Hasło"
117
118msgid "Repeat your new password:"
119msgstr "Powtórz hasło jeszcze raz:"
120
121msgid "Import"
122msgstr "Import"
123
124#, fuzzy
125msgid "Please execute the import script locally, it can take a very long time."
126msgstr "Proszę wykonać skrypt import lokalnie, gdyż moze to trwać bardzo długo."
127
128#, fuzzy
129msgid "More infos in the official doc:"
130msgstr "Więcej informacji w oficjalnej dokumentacji:"
131
132#, fuzzy
133msgid "import from Pocket"
134msgstr "Іmport z Pocket'a"
135
136#, php-format
137msgid "(you must have a %s file on your server)"
138msgstr "(musisz mieć plik %s na serwerze)"
139
140#, fuzzy
141msgid "import from Readability"
142msgstr "Import z Readability"
143
144#, fuzzy
145msgid "import from Instapaper"
146msgstr "Import z Instapaper"
147
148#, fuzzy
149msgid "Export your poche datas"
150msgstr "Eksportowac dane poche"
151
152msgid "Click here"
153msgstr "Kliknij tu"
154
155#, fuzzy
156msgid "to export your poche datas."
157msgstr "aby eksportować dane poche."
158
159msgid "plop"
160msgstr "plop"
161
162msgid "installation"
163msgstr "instalacja"
164
165msgid "install your wallabag"
166msgstr "zainstalować wallabag"
167
168msgid "wallabag is still not installed. Please fill the below form to install it. Don't hesitate to <a href='http://doc.wallabag.org/'>read the documentation on wallabag website</a>."
169msgstr "wallabag nie jest jeszcze zainstalowany. Proszę wypełnić poniższy formularz, aby go zainstalowac. Nie wahaj się <a href='http://doc.wallabag.org/'>zapoznac się z dokumentacja na stronie wallabag</a>."
170
171msgid "Login"
172msgstr "Login"
173
174msgid "Repeat your password"
175msgstr "Powtórz hasło"
176
177msgid "Install"
178msgstr "Instalowac"
85 179
86msgid "favoris" 180msgid "favoris"
87msgstr "ulubione" 181msgstr "ulubione"
88 182
89msgid "archive"
90msgstr "archiwum"
91
92msgid "unread" 183msgid "unread"
93msgstr "nieprzeczytane" 184msgstr "nieprzeczytane"
94 185
@@ -110,8 +201,11 @@ msgstr "wg tytułu"
110msgid "by title desc" 201msgid "by title desc"
111msgstr "według tytułu malejąco" 202msgstr "według tytułu malejąco"
112 203
113msgid "No articles found." 204msgid "No link available here!"
114msgstr "Nie znaleziono artykułów." 205msgstr "Brak dostępnych linków!"
206
207msgid "toggle mark as read"
208msgstr "przełączyć znak jako przeczytane"
115 209
116msgid "toggle favorite" 210msgid "toggle favorite"
117msgstr "przełączyc ulubione" 211msgstr "przełączyc ulubione"
@@ -119,39 +213,34 @@ msgstr "przełączyc ulubione"
119msgid "delete" 213msgid "delete"
120msgstr "usunąć" 214msgstr "usunąć"
121 215
216msgid "original"
217msgstr "oryginal"
218
122msgid "estimated reading time:" 219msgid "estimated reading time:"
123msgstr "szacowany czas odczytu:" 220msgstr "szacowany czas odczytu:"
124 221
125msgid "results" 222msgid "results"
126msgstr "wyniki" 223msgstr "wyniki"
127 224
128msgid "home" 225msgid "login to your wallabag"
129msgstr "główna" 226msgstr "zalogować się do swojego wallabag"
130
131msgid "favorites"
132msgstr "ulubione"
133 227
134msgid "tags" 228msgid "you are in demo mode, some features may be disabled."
135msgstr "tagi" 229msgstr "jesteś w trybie demo, niektóre funkcje mogą być niedostępne."
136 230
137msgid "config" 231msgid "Stay signed in"
138msgstr "ustawienia" 232msgstr "Pozostań zalogowany"
139 233
140msgid "logout" 234msgid "(Do not check on public computers)"
141msgstr "wyloguj" 235msgstr "(Nie sprawdzaj na publicznych komputerach"
142 236
143msgid "Poching links" 237msgid "Saving articles"
144msgstr "Zapisywanie linków" 238msgstr "Zapisywanie artyków"
145 239
146msgid "There are several ways to poche a link:" 240#, fuzzy
241msgid "There are several ways to save an article:"
147msgstr "Istnieje kilka sposobów aby zapisać link:" 242msgstr "Istnieje kilka sposobów aby zapisać link:"
148 243
149msgid "read the documentation"
150msgstr "zapoznać się z dokumentacją"
151
152msgid "download the extension"
153msgstr "pobrać rozszerzenie"
154
155msgid "via F-Droid" 244msgid "via F-Droid"
156msgstr "przez F-Droid" 245msgstr "przez F-Droid"
157 246
@@ -161,20 +250,17 @@ msgstr "albo"
161msgid "via Google Play" 250msgid "via Google Play"
162msgstr "przez Google Play" 251msgstr "przez Google Play"
163 252
164msgid "download the application"
165msgstr "pobrać aplikację"
166
167msgid "By filling this field" 253msgid "By filling this field"
168msgstr "Poprzez wypełnienie tego pola" 254msgstr "Poprzez wypełnienie tego pola"
169 255
170msgid "poche it!" 256msgid "bag it!"
171msgstr "zapisać!" 257msgstr "zapisać!"
172 258
173msgid "Bookmarklet: drag & drop this link to your bookmarks bar" 259msgid "Bookmarklet: drag & drop this link to your bookmarks bar"
174msgstr "Bookmarklet: przeciągnij i upucs ten link na pasek zakladek" 260msgstr "Bookmarklet: przeciągnij i upucs ten link na pasek zakladek"
175 261
176msgid "Updating poche" 262msgid "Upgrading wallabag"
177msgstr "Aktualizacja poche" 263msgstr "Aktualizacja wallabag"
178 264
179msgid "Installed version" 265msgid "Installed version"
180msgstr "Zainstalowana wersja " 266msgstr "Zainstalowana wersja "
@@ -188,15 +274,14 @@ msgstr "Nowsza stabilna wersja jest dostępna."
188msgid "You are up to date." 274msgid "You are up to date."
189msgstr "Masz wszystko najnowsze." 275msgstr "Masz wszystko najnowsze."
190 276
191msgid "latest dev version" 277#, fuzzy
278msgid "Latest dev version"
192msgstr "najnowsza wersja dev" 279msgstr "najnowsza wersja dev"
193 280
194msgid "a more recent development version is available." 281#, fuzzy
282msgid "A more recent development version is available."
195msgstr "Nowsza wersja rozwojowa jest dostępna." 283msgstr "Nowsza wersja rozwojowa jest dostępna."
196 284
197msgid "you are up to date."
198msgstr "masz wszystko najnowsze."
199
200msgid "Feeds" 285msgid "Feeds"
201msgstr "Kanały (feeds)" 286msgstr "Kanały (feeds)"
202 287
@@ -221,78 +306,62 @@ msgstr "Twój id użytkownika (user id):"
221msgid "You can regenerate your token: <a href='?feed&amp;action=generate'>generate!</a>." 306msgid "You can regenerate your token: <a href='?feed&amp;action=generate'>generate!</a>."
222msgstr "Mozna zgenerowac nowy znak: kliknij <a href='?feed&amp;action=generate'>zgenerowac!</a>." 307msgstr "Mozna zgenerowac nowy znak: kliknij <a href='?feed&amp;action=generate'>zgenerowac!</a>."
223 308
224msgid "Change your theme"
225msgstr "Zmienic motyw"
226
227msgid "Theme:"
228msgstr "Motyw:"
229
230msgid "Update"
231msgstr "Aktualizacja"
232
233msgid "Change your language" 309msgid "Change your language"
234msgstr "Zmienić język" 310msgstr "Zmienić język"
235 311
236msgid "Language:" 312msgid "Language:"
237msgstr "Język:" 313msgstr "Język:"
238 314
239msgid "Change your password"
240msgstr "Zmień hasło"
241
242msgid "New password:"
243msgstr "Nowe hasło:"
244
245msgid "Password"
246msgstr "Hasło"
247
248msgid "Repeat your new password:"
249msgstr "Powtórz hasło jeszcze raz:"
250
251msgid "Import"
252msgstr "Import"
253
254msgid "Please execute the import script locally as it can take a very long time." 315msgid "Please execute the import script locally as it can take a very long time."
255msgstr "Proszę wykonać skrypt import lokalnie, gdyż moze to trwać bardzo długo." 316msgstr "Proszę wykonać skrypt import lokalnie, gdyż moze to trwać bardzo długo."
256 317
257msgid "More info in the official docs:" 318#, fuzzy
319msgid "More info in the official documentation:"
258msgstr "Więcej informacji w oficjalnej dokumentacji:" 320msgstr "Więcej informacji w oficjalnej dokumentacji:"
259 321
260msgid "Import from Pocket" 322msgid "Import from Pocket"
261msgstr "Іmport z Pocket'a" 323msgstr "Іmport z Pocket'a"
262 324
263#, php-format
264msgid "(you must have a %s file on your server)"
265msgstr "(musisz mieć plik %s na serwerze)"
266
267msgid "Import from Readability" 325msgid "Import from Readability"
268msgstr "Import z Readability" 326msgstr "Import z Readability"
269 327
270msgid "Import from Instapaper" 328msgid "Import from Instapaper"
271msgstr "Import z Instapaper" 329msgstr "Import z Instapaper"
272 330
273msgid "Import from poche" 331msgid "Import from wallabag"
274msgstr "Import z poche" 332msgstr "Import z wallabag"
275 333
276msgid "Export your poche data" 334msgid "Export your wallabag data"
277msgstr "Eksportowac dane poche" 335msgstr "Eksportowac dane wallabag"
278
279msgid "Click here"
280msgstr "Kliknij tu"
281 336
282msgid "to download your database." 337msgid "to download your database."
283msgstr "aby pobrac bazę danych." 338msgstr "aby pobrac bazę danych."
284 339
285msgid "to export your poche data." 340msgid "to export your wallabag data."
286msgstr "aby eksportować dane poche." 341msgstr "aby eksportować dane wallabag."
287 342
288msgid "Tag" 343msgid "Cache"
289msgstr "Teg" 344msgstr "Cache"
290 345
291msgid "No link available here!" 346msgid "to delete cache."
292msgstr "Brak dostępnych linków!" 347msgstr "aby wyczyścić cache."
293 348
294msgid "toggle mark as read" 349msgid "tweet"
295msgstr "przełączyć znak jako przeczytane" 350msgstr "tweet"
351
352#, fuzzy
353msgid "email"
354msgstr "Wyslij email"
355
356msgid "shaarli"
357msgstr "shaarli"
358
359msgid "flattr"
360msgstr "flattr"
361
362#, fuzzy
363msgid "this article appears wrong?"
364msgstr "Czy ten artykuł wygląda nieprawidłowo?"
296 365
297msgid "You can enter multiple tags, separated by commas." 366msgid "You can enter multiple tags, separated by commas."
298msgstr "Mozna wprowadzić wiele tagów rozdzielajac je przecinkami." 367msgstr "Mozna wprowadzić wiele tagów rozdzielajac je przecinkami."
@@ -300,47 +369,90 @@ msgstr "Mozna wprowadzić wiele tagów rozdzielajac je przecinkami."
300msgid "return to article" 369msgid "return to article"
301msgstr "wrócić do artykułu" 370msgstr "wrócić do artykułu"
302 371
303msgid "plop" 372msgid "powered by"
304msgstr "plop" 373msgstr "zasilany przez"
305 374
306msgid "You can <a href='wallabag_compatibility_test.php'>check your configuration here</a>." 375msgid "debug mode is on so cache is off."
307msgstr "Można <a href='wallabag_compatibility_test.php'>sprawdzić swoją konfigurację tu</a>." 376msgstr "tryb debugowania jest włączony, wc cash jest wyłączony."
308 377
309msgid "installation" 378msgid "your wallabag version:"
310msgstr "instalacja" 379msgstr "twoja wersja wallabag:"
311 380
312msgid "install your wallabag" 381msgid "storage:"
313msgstr "zainstalować wallabag" 382msgstr "magazyn:"
314 383
315msgid "wallabag is still not installed. Please fill the below form to install it. Don't hesitate to <a href='http://doc.wallabag.org/'>read the documentation on wallabag website</a>." 384msgid "save a link"
316msgstr "wallabag nie jest jeszcze zainstalowany. Proszę wypełnić poniższy formularz, aby go zainstalowac. Nie wahaj się <a href='http://doc.wallabag.org/'>zapoznac się z dokumentacja na stronie wallabag</a>." 385msgstr "zapisać link"
317 386
318msgid "Login" 387msgid "return home"
319msgstr "Login" 388msgstr "wrócić do głównej"
320 389
321msgid "Repeat your password" 390msgid "You can <a href='wallabag_compatibility_test.php'>check your configuration here</a>."
322msgstr "Powtórz hasło" 391msgstr "Można <a href='wallabag_compatibility_test.php'>sprawdz swoją konfigurację tu</a>."
323 392
324msgid "Install" 393msgid "Tag"
325msgstr "Instalowac" 394msgstr "Teg"
326 395
327msgid "login to your wallabag" 396msgid "No articles found."
328msgstr "zalogować się do swojego wallabag" 397msgstr "Nie znaleziono artykułów."
398
399msgid "Toggle mark as read"
400msgstr "Przełącz jako przeczytane"
401
402msgid "mark all the entries as read"
403msgstr "zaznaczyć wszystko jako przeczytane"
329 404
330msgid "Login to wallabag" 405msgid "Login to wallabag"
331msgstr "Zalogować się do wallabag" 406msgstr "Zalogować się do wallabag"
332 407
333msgid "you are in demo mode, some features may be disabled."
334msgstr "jesteś w trybie demo, niektóre funkcje mogą być niedostępne."
335
336msgid "Username" 408msgid "Username"
337msgstr "Imię użytkownika" 409msgstr "Imię użytkownika"
338 410
339msgid "Stay signed in" 411msgid "Sign in"
340msgstr "Pozostań zalogowany" 412msgstr "Login"
341 413
342msgid "(Do not check on public computers)" 414msgid "Return home"
343msgstr "(Nie sprawdzaj na publicznych komputerach" 415msgstr "Wrocic do głównej"
416
417msgid "Back to top"
418msgstr "Wrócić na górę"
419
420msgid "Mark as read"
421msgstr "Zaznacz jako przeczytane"
422
423msgid "Favorite"
424msgstr "Ulubiony"
425
426msgid "Toggle favorite"
427msgstr "Zaznacz jako ulubione"
428
429msgid "Delete"
430msgstr "Usuń"
431
432msgid "Tweet"
433msgstr "Tweet"
434
435msgid "Email"
436msgstr "Wyslij email"
437
438msgid "Does this article appear wrong?"
439msgstr "Czy ten artykuł wygląda nieprawidłowo?"
440
441msgid "tags:"
442msgstr "tegi:"
443
444msgid "Edit tags"
445msgstr "Redagowac tegi"
446
447msgid "save link!"
448msgstr "zapisz link!"
449
450#, fuzzy
451msgid "estimated reading time :"
452msgstr "szacowany czas odczytu:"
453
454msgid "Mark all the entries as read"
455msgstr "zaznacz wszystko jako przeczytane"
344 456
345msgid "Untitled" 457msgid "Untitled"
346msgstr "Bez nazwy" 458msgstr "Bez nazwy"
@@ -357,6 +469,9 @@ msgstr "link zostal pomyślnie usunięty"
357msgid "the link wasn't deleted" 469msgid "the link wasn't deleted"
358msgstr "link nie został usunięty" 470msgstr "link nie został usunięty"
359 471
472msgid "Article not found!"
473msgstr "Nie znaleziono artykułu."
474
360msgid "previous" 475msgid "previous"
361msgstr "poprzednia" 476msgstr "poprzednia"
362 477
@@ -390,15 +505,12 @@ msgstr "ustawienia języka zostałe zmienione"
390msgid "login failed: you have to fill all fields" 505msgid "login failed: you have to fill all fields"
391msgstr "logowanie nie powiodlo się: musisz wypełnić wszystkie pola" 506msgstr "logowanie nie powiodlo się: musisz wypełnić wszystkie pola"
392 507
393msgid "welcome to your poche" 508msgid "welcome to your wallabag"
394msgstr "witamy w poche" 509msgstr "Witamy w wallabag"
395 510
396msgid "login failed: bad login or password" 511msgid "login failed: bad login or password"
397msgstr "logowanie nie powiodlo się: zly login lub hasło" 512msgstr "logowanie nie powiodlo się: zly login lub hasło"
398 513
399msgid "see you soon!"
400msgstr "do zobaczenia wkrótce!"
401
402msgid "import from instapaper completed" 514msgid "import from instapaper completed"
403msgstr "import з instapaper'a zakończony" 515msgstr "import з instapaper'a zakończony"
404 516
@@ -423,6 +535,17 @@ msgstr "Nie znaleziono potrzebnego \""
423msgid "Uh, there is a problem while generating feeds." 535msgid "Uh, there is a problem while generating feeds."
424msgstr "Uh, jest problem podczas generowania kanałów (feeds)." 536msgstr "Uh, jest problem podczas generowania kanałów (feeds)."
425 537
538msgid "Cache deleted."
539msgstr "Cache wyczyszczony."
540
426msgid "Oops, it seems you don't have PHP 5." 541msgid "Oops, it seems you don't have PHP 5."
427msgstr "Oops, wygląda ze u was niema PHP 5." 542msgstr "Oops, wygląda ze u was niema PHP 5."
428 543
544#~ msgid "Import from poche"
545#~ msgstr "Import z poche"
546
547#~ msgid "welcome to your poche"
548#~ msgstr "witamy w poche"
549
550#~ msgid "see you soon!"
551#~ msgstr "do zobaczenia wkrótce!"
diff --git a/locale/ru_RU.utf8/LC_MESSAGES/ru_RU.utf8.mo b/locale/ru_RU.utf8/LC_MESSAGES/ru_RU.utf8.mo
index c9cf1a55..5cbfad16 100755
--- a/locale/ru_RU.utf8/LC_MESSAGES/ru_RU.utf8.mo
+++ b/locale/ru_RU.utf8/LC_MESSAGES/ru_RU.utf8.mo
Binary files differ
diff --git a/locale/ru_RU.utf8/LC_MESSAGES/ru_RU.utf8.po b/locale/ru_RU.utf8/LC_MESSAGES/ru_RU.utf8.po
index aa1769cf..08f12b7c 100755
--- a/locale/ru_RU.utf8/LC_MESSAGES/ru_RU.utf8.po
+++ b/locale/ru_RU.utf8/LC_MESSAGES/ru_RU.utf8.po
@@ -2,7 +2,7 @@ msgid ""
2msgstr "" 2msgstr ""
3"Project-Id-Version: \n" 3"Project-Id-Version: \n"
4"Report-Msgid-Bugs-To: \n" 4"Report-Msgid-Bugs-To: \n"
5"POT-Creation-Date: 2014-02-07 12:40+0300\n" 5"POT-Creation-Date: 2014-02-25 15:09+0300\n"
6"PO-Revision-Date: \n" 6"PO-Revision-Date: \n"
7"Last-Translator: Maryana <mariroz@mr.lviv.ua>\n" 7"Last-Translator: Maryana <mariroz@mr.lviv.ua>\n"
8"Language-Team: \n" 8"Language-Team: \n"
@@ -14,135 +14,25 @@ msgstr ""
14"X-Poedit-Language: Russian\n" 14"X-Poedit-Language: Russian\n"
15"X-Poedit-Country: RUSSIA\n" 15"X-Poedit-Country: RUSSIA\n"
16"X-Poedit-SourceCharset: utf-8\n" 16"X-Poedit-SourceCharset: utf-8\n"
17"X-Poedit-SearchPath-0: /home/mariroz/_DEV/web/wallabag/wallabag\n" 17"X-Poedit-SearchPath-0: /home/mariroz/_DEV/web/wallabag/wallabag-master-testing\n"
18 18
19msgid "poche, a read it later open source system" 19msgid "wallabag, a read it later open source system"
20msgstr "poche, сервис отложенного чтения с открытым исходным кодом" 20msgstr "wallabag, сервис отложенного чтения с открытым исходным кодом"
21 21
22msgid "login failed: user doesn't exist" 22msgid "login failed: user doesn't exist"
23msgstr "войти не удалось: пользователь не существует" 23msgstr "войти не удалось: пользователь не существует"
24 24
25msgid "Return home"
26msgstr "На главную"
27
28msgid "Back to top"
29msgstr "Наверх"
30
31msgid "original"
32msgstr "источник"
33
34msgid "Mark as read"
35msgstr "Отметить как прочитанное"
36
37msgid "Toggle mark as read"
38msgstr "Изменить отметку 'прочитано'"
39
40msgid "Favorite"
41msgstr "Избранное"
42
43msgid "Toggle favorite"
44msgstr "Изменить метку избранного"
45
46msgid "Delete"
47msgstr "Удалить"
48
49msgid "Tweet"
50msgstr "Твитнуть"
51
52msgid "Email"
53msgstr "Отправить по почте"
54
55msgid "shaarli"
56msgstr "shaarli"
57
58msgid "flattr"
59msgstr "проспонсировать"
60
61msgid "Does this article appear wrong?"
62msgstr "Статья выглядит криво?"
63
64msgid "tags:"
65msgstr "теги:"
66
67msgid "Edit tags"
68msgstr "Редактировать теги"
69
70msgid "return home" 25msgid "return home"
71msgstr "на главную" 26msgstr "на главную"
72 27
73msgid "powered by"
74msgstr "при поддержке"
75
76msgid "debug mode is on so cache is off."
77msgstr "включён режим отладки - кеш выключен."
78
79msgid "your poche version:"
80msgstr "ваша версия poche:"
81
82msgid "storage:"
83msgstr "хранилище:"
84
85msgid "favoris"
86msgstr "избранное"
87
88msgid "archive"
89msgstr "архив"
90
91msgid "unread"
92msgstr "непрочитанное"
93
94msgid "by date asc"
95msgstr "по дате, сперва старые"
96
97msgid "by date"
98msgstr "по дате"
99
100msgid "by date desc"
101msgstr "по дате, сперва новые"
102
103msgid "by title asc"
104msgstr "по заголовку (прямой)"
105
106msgid "by title"
107msgstr "по заголовку"
108
109msgid "by title desc"
110msgstr "по заголовку (обратный)"
111
112msgid "No articles found."
113msgstr "Статей не найдено."
114
115msgid "toggle favorite"
116msgstr "изменить метку избранного"
117
118msgid "delete"
119msgstr "удалить"
120
121msgid "estimated reading time:"
122msgstr "ориентировочное время чтения:"
123
124msgid "results"
125msgstr "найдено"
126
127msgid "home"
128msgstr "главная"
129
130msgid "favorites"
131msgstr "избранное"
132
133msgid "tags"
134msgstr "теги"
135
136msgid "config" 28msgid "config"
137msgstr "настройки" 29msgstr "настройки"
138 30
139msgid "logout" 31msgid "Saving articles"
140msgstr "выход" 32msgstr "Сохранение статей"
141
142msgid "Poching links"
143msgstr "Сохранение ссылок"
144 33
145msgid "There are several ways to poche a link:" 34#, fuzzy
35msgid "There are several ways to save an article:"
146msgstr "Существует несколько способов сохранить ссылку:" 36msgstr "Существует несколько способов сохранить ссылку:"
147 37
148msgid "read the documentation" 38msgid "read the documentation"
@@ -166,14 +56,14 @@ msgstr "скачать приложение"
166msgid "By filling this field" 56msgid "By filling this field"
167msgstr "Заполнением этого поля" 57msgstr "Заполнением этого поля"
168 58
169msgid "poche it!" 59msgid "bag it!"
170msgstr "прикарманить!" 60msgstr "прикарманить!"
171 61
172msgid "Bookmarklet: drag & drop this link to your bookmarks bar" 62msgid "Bookmarklet: drag & drop this link to your bookmarks bar"
173msgstr "Закладка: перетащите и опустите ссылку на панель закладок" 63msgstr "Закладка: перетащите и опустите ссылку на панель закладок"
174 64
175msgid "Updating poche" 65msgid "Upgrading wallabag"
176msgstr "Обновления poche" 66msgstr "Обновление wallabag"
177 67
178msgid "Installed version" 68msgid "Installed version"
179msgstr "Установленная версия" 69msgstr "Установленная версия"
@@ -187,15 +77,14 @@ msgstr "Доступна новая стабильная версия."
187msgid "You are up to date." 77msgid "You are up to date."
188msgstr "У вас всё самое новое." 78msgstr "У вас всё самое новое."
189 79
190msgid "latest dev version" 80#, fuzzy
81msgid "Latest dev version"
191msgstr "последняя версия в разработке" 82msgstr "последняя версия в разработке"
192 83
193msgid "a more recent development version is available." 84#, fuzzy
85msgid "A more recent development version is available."
194msgstr "есть более свежая версия в разработке." 86msgstr "есть более свежая версия в разработке."
195 87
196msgid "you are up to date."
197msgstr "у вас всё самое новое."
198
199msgid "Feeds" 88msgid "Feeds"
200msgstr "Ленты (feeds)" 89msgstr "Ленты (feeds)"
201 90
@@ -253,7 +142,8 @@ msgstr "Импортировать"
253msgid "Please execute the import script locally as it can take a very long time." 142msgid "Please execute the import script locally as it can take a very long time."
254msgstr "Пожалуйста, выполните сценарий импорта локально - это может занять слишком много времени." 143msgstr "Пожалуйста, выполните сценарий импорта локально - это может занять слишком много времени."
255 144
256msgid "More info in the official docs:" 145#, fuzzy
146msgid "More info in the official documentation:"
257msgstr "Больше сведений в официальной документации:" 147msgstr "Больше сведений в официальной документации:"
258 148
259msgid "Import from Pocket" 149msgid "Import from Pocket"
@@ -269,11 +159,11 @@ msgstr "Импортировать из Readability"
269msgid "Import from Instapaper" 159msgid "Import from Instapaper"
270msgstr "Импортировать из Instapaper" 160msgstr "Импортировать из Instapaper"
271 161
272msgid "Import from poche" 162msgid "Import from wallabag"
273msgstr "Импортировать из poche" 163msgstr "Импортировать из wallabag"
274 164
275msgid "Export your poche data" 165msgid "Export your wallabag data"
276msgstr "Экспортировать данные poche" 166msgstr "Экспортировать данные wallabag"
277 167
278msgid "Click here" 168msgid "Click here"
279msgstr "Кликните здесь" 169msgstr "Кликните здесь"
@@ -281,17 +171,14 @@ msgstr "Кликните здесь"
281msgid "to download your database." 171msgid "to download your database."
282msgstr "чтобы скачать вашу базу данных" 172msgstr "чтобы скачать вашу базу данных"
283 173
284msgid "to export your poche data." 174msgid "to export your wallabag data."
285msgstr "чтобы экспортировать свои записи из poche." 175msgstr "чтобы экспортировать свои записи из wallabag."
286 176
287msgid "Tag" 177msgid "Cache"
288msgstr "Тег" 178msgstr "Кэш"
289
290msgid "No link available here!"
291msgstr "Здесь нет ссылки!"
292 179
293msgid "toggle mark as read" 180msgid "to delete cache."
294msgstr "измени оку 'роитно'" 181msgstr "т сроить эш."
295 182
296msgid "You can enter multiple tags, separated by commas." 183msgid "You can enter multiple tags, separated by commas."
297msgstr "Вы можете ввести несколько тегов, разделяя их запятой." 184msgstr "Вы можете ввести несколько тегов, разделяя их запятой."
@@ -305,6 +192,60 @@ msgstr "plop"
305msgid "You can <a href='wallabag_compatibility_test.php'>check your configuration here</a>." 192msgid "You can <a href='wallabag_compatibility_test.php'>check your configuration here</a>."
306msgstr "Вы можете <a href='wallabag_compatibility_test.php'>проверить конфигурацию здесь</a>." 193msgstr "Вы можете <a href='wallabag_compatibility_test.php'>проверить конфигурацию здесь</a>."
307 194
195msgid "favoris"
196msgstr "избранное"
197
198msgid "archive"
199msgstr "архив"
200
201msgid "unread"
202msgstr "непрочитанное"
203
204msgid "by date asc"
205msgstr "по дате, сперва старые"
206
207msgid "by date"
208msgstr "по дате"
209
210msgid "by date desc"
211msgstr "по дате, сперва новые"
212
213msgid "by title asc"
214msgstr "по заголовку (прямой)"
215
216msgid "by title"
217msgstr "по заголовку"
218
219msgid "by title desc"
220msgstr "по заголовку (обратный)"
221
222msgid "Tag"
223msgstr "Тег"
224
225msgid "No articles found."
226msgstr "Статей не найдено."
227
228msgid "Toggle mark as read"
229msgstr "Изменить отметку 'прочитано'"
230
231msgid "toggle favorite"
232msgstr "изменить метку избранного"
233
234msgid "delete"
235msgstr "удалить"
236
237msgid "original"
238msgstr "источник"
239
240msgid "estimated reading time:"
241msgstr "ориентировочное время чтения:"
242
243msgid "mark all the entries as read"
244msgstr "отметить все статьи как прочитанные "
245
246msgid "results"
247msgstr "найдено"
248
308msgid "installation" 249msgid "installation"
309msgstr "установка" 250msgstr "установка"
310 251
@@ -341,6 +282,159 @@ msgstr "Запомнить меня"
341msgid "(Do not check on public computers)" 282msgid "(Do not check on public computers)"
342msgstr "(Не отмечайте на чужих компьютерах)" 283msgstr "(Не отмечайте на чужих компьютерах)"
343 284
285msgid "Sign in"
286msgstr "Зарегистрироваться"
287
288msgid "favorites"
289msgstr "избранное"
290
291#, fuzzy
292msgid "estimated reading time :"
293msgstr "ориентировочное время чтения:"
294
295msgid "Mark all the entries as read"
296msgstr "Отметить все как прочитанное"
297
298msgid "Return home"
299msgstr "На главную"
300
301msgid "Back to top"
302msgstr "Наверх"
303
304msgid "Mark as read"
305msgstr "Отметить как прочитанное"
306
307msgid "Favorite"
308msgstr "Избранное"
309
310msgid "Toggle favorite"
311msgstr "Изменить метку избранного"
312
313msgid "Delete"
314msgstr "Удалить"
315
316msgid "Tweet"
317msgstr "Твитнуть"
318
319msgid "Email"
320msgstr "Отправить по почте"
321
322msgid "shaarli"
323msgstr "shaarli"
324
325msgid "flattr"
326msgstr "проспонсировать"
327
328msgid "Does this article appear wrong?"
329msgstr "Статья выглядит криво?"
330
331msgid "tags:"
332msgstr "теги:"
333
334msgid "Edit tags"
335msgstr "Редактировать теги"
336
337msgid "save link!"
338msgstr "сохранить ссылку!"
339
340msgid "home"
341msgstr "главная"
342
343msgid "tags"
344msgstr "теги"
345
346msgid "logout"
347msgstr "выход"
348
349msgid "powered by"
350msgstr "при поддержке"
351
352msgid "debug mode is on so cache is off."
353msgstr "включён режим отладки - кеш выключен."
354
355msgid "your wallabag version:"
356msgstr "Ваша версия wallabag:"
357
358msgid "storage:"
359msgstr "хранилище:"
360
361msgid "save a link"
362msgstr "сохранить ссылку"
363
364msgid "back to home"
365msgstr "домой"
366
367msgid "toggle mark as read"
368msgstr "изменить отметку 'прочитано'"
369
370msgid "tweet"
371msgstr "твитнуть"
372
373msgid "email"
374msgstr "email"
375
376#, fuzzy
377msgid "this article appears wrong?"
378msgstr "Статья выглядит криво?"
379
380msgid "No link available here!"
381msgstr "Здесь нет ссылки!"
382
383#, fuzzy
384msgid "Poching a link"
385msgstr "Сохранение ссылок"
386
387#, fuzzy
388msgid "by filling this field"
389msgstr "Заполнением этого поля"
390
391#, fuzzy
392msgid "bookmarklet: drag & drop this link to your bookmarks bar"
393msgstr "Закладка: перетащите и опустите ссылку на панель закладок"
394
395msgid "your version"
396msgstr "Ваша версия"
397
398#, fuzzy
399msgid "latest stable version"
400msgstr "Последняя стабильная версия"
401
402#, fuzzy
403msgid "a more recent stable version is available."
404msgstr "Доступна новая стабильная версия."
405
406msgid "you are up to date."
407msgstr "у вас всё самое новое."
408
409msgid "latest dev version"
410msgstr "последняя версия в разработке"
411
412msgid "a more recent development version is available."
413msgstr "есть более свежая версия в разработке."
414
415#, fuzzy
416msgid "Please execute the import script locally, it can take a very long time."
417msgstr "Пожалуйста, выполните сценарий импорта локально - это может занять слишком много времени."
418
419#, fuzzy
420msgid "More infos in the official doc:"
421msgstr "Больше сведений в официальной документации:"
422
423#, fuzzy
424msgid "import from Pocket"
425msgstr "Импортировать из Pocket"
426
427#, fuzzy
428msgid "import from Readability"
429msgstr "Импортировать из Readability"
430
431#, fuzzy
432msgid "import from Instapaper"
433msgstr "Импортировать из Instapaper"
434
435msgid "Tags"
436msgstr "Теги"
437
344msgid "Untitled" 438msgid "Untitled"
345msgstr "Без названия" 439msgstr "Без названия"
346 440
@@ -356,6 +450,9 @@ msgstr "ссылка успешно удалена"
356msgid "the link wasn't deleted" 450msgid "the link wasn't deleted"
357msgstr "ссылка не удалена" 451msgstr "ссылка не удалена"
358 452
453msgid "Article not found!"
454msgstr "Статью не найдено."
455
359msgid "previous" 456msgid "previous"
360msgstr "предыдущая" 457msgstr "предыдущая"
361 458
@@ -389,15 +486,12 @@ msgstr "вы изменили свои настройки языка"
389msgid "login failed: you have to fill all fields" 486msgid "login failed: you have to fill all fields"
390msgstr "войти не удалось: вы должны заполнить все поля" 487msgstr "войти не удалось: вы должны заполнить все поля"
391 488
392msgid "welcome to your poche" 489msgid "welcome to your wallabag"
393msgstr "добро пожаловать в ваш poche" 490msgstr "добро пожаловать в wallabag"
394 491
395msgid "login failed: bad login or password" 492msgid "login failed: bad login or password"
396msgstr "войти не удалось: неправильное имя пользователя или пароль" 493msgstr "войти не удалось: неправильное имя пользователя или пароль"
397 494
398msgid "see you soon!"
399msgstr "увидимся!"
400
401msgid "import from instapaper completed" 495msgid "import from instapaper completed"
402msgstr "импорт из instapaper завершен" 496msgstr "импорт из instapaper завершен"
403 497
@@ -422,14 +516,40 @@ msgstr "Не удалось найти требуемый \""
422msgid "Uh, there is a problem while generating feeds." 516msgid "Uh, there is a problem while generating feeds."
423msgstr "Ох, возникла проблема при создании ленты." 517msgstr "Ох, возникла проблема при создании ленты."
424 518
519msgid "Cache deleted."
520msgstr "Кэш очищен. "
521
425msgid "Oops, it seems you don't have PHP 5." 522msgid "Oops, it seems you don't have PHP 5."
426msgstr "Упс, кажется у вас не установлен PHP 5." 523msgstr "Упс, кажется у вас не установлен PHP 5."
427 524
428#~ msgid "your version" 525#~ msgid "You can poche a link by several methods:"
429#~ msgstr "Ваша версия" 526#~ msgstr "Вы можете сохранить ссылку несколькими путями:"
527
528#~ msgid "poche it!"
529#~ msgstr "прикарманить!"
530
531#~ msgid "Updating poche"
532#~ msgstr "Обновления poche"
533
534#, fuzzy
535#~ msgid "Export your poche datas"
536#~ msgstr "Экспортировать данные poche"
537
538#, fuzzy
539#~ msgid "to export your poche datas."
540#~ msgstr "чтобы экспортировать свои записи из poche."
430 541
431#~ msgid "back to home" 542#~ msgid "your poche version:"
432#~ msgstr "домой" 543#~ msgstr "ваша версия poche:"
544
545#~ msgid "Import from poche"
546#~ msgstr "Импортировать из poche"
547
548#~ msgid "welcome to your poche"
549#~ msgstr "добро пожаловать в ваш poche"
550
551#~ msgid "see you soon!"
552#~ msgstr "увидимся!"
433 553
434#~ msgid "create an issue" 554#~ msgid "create an issue"
435#~ msgstr "оповестить об ошибке" 555#~ msgstr "оповестить об ошибке"
@@ -439,6 +559,3 @@ msgstr "Упс, кажется у вас не установлен PHP 5."
439 559
440#~ msgid "contact us by mail" 560#~ msgid "contact us by mail"
441#~ msgstr "связаться по почте" 561#~ msgstr "связаться по почте"
442
443#~ msgid "Sign in"
444#~ msgstr "Зарегистрироваться"
diff --git a/locale/sl_SI.utf8/LC_MESSAGES/sl_SI.utf8.po b/locale/sl_SI.utf8/LC_MESSAGES/sl_SI.utf8.po
index 6eac8e01..8ad2eded 100644
--- a/locale/sl_SI.utf8/LC_MESSAGES/sl_SI.utf8.po
+++ b/locale/sl_SI.utf8/LC_MESSAGES/sl_SI.utf8.po
@@ -4,55 +4,138 @@
4msgid "" 4msgid ""
5msgstr "" 5msgstr ""
6"Project-Id-Version: wallabag\n" 6"Project-Id-Version: wallabag\n"
7"POT-Creation-Date: \n" 7"Report-Msgid-Bugs-To: \n"
8"PO-Revision-Date: 2014-02-21 15:09+0100\n" 8"POT-Creation-Date: 2014-02-25 15:12+0300\n"
9"Last-Translator: Nicolas Lœuillet <nicolas.loeuillet@gmail.com>\n" 9"PO-Revision-Date: 2014-02-25 15:12+0300\n"
10"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/projects/p/" 10"Last-Translator: Maryana <mariroz@mr.lviv.ua>\n"
11"wallabag/language/sl_SI/)\n" 11"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/projects/p/wallabag/language/sl_SI/)\n"
12"Language: sl_SI\n"
12"MIME-Version: 1.0\n" 13"MIME-Version: 1.0\n"
13"Content-Type: text/plain; charset=UTF-8\n" 14"Content-Type: text/plain; charset=UTF-8\n"
14"Content-Transfer-Encoding: 8bit\n" 15"Content-Transfer-Encoding: 8bit\n"
15"Language: sl_SI\n" 16"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n"
16"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n"
17"%100==4 ? 2 : 3);\n"
18"X-Generator: Poedit 1.5.4\n" 17"X-Generator: Poedit 1.5.4\n"
18"X-Poedit-Language: Slovenian\n"
19"X-Poedit-Country: SLOVENIA\n"
20"X-Poedit-Basepath: .\n"
21"X-Poedit-SearchPath-0: /home/mariroz/_DEV/web/wallabag/wallabag-master-testing\n"
22
23msgid "wallabag, a read it later open source system"
24msgstr ""
25
26msgid "login failed: user doesn't exist"
27msgstr ""
28
29msgid "return home"
30msgstr ""
19 31
20msgid "config" 32msgid "config"
21msgstr "nastavitve" 33msgstr "nastavitve"
22 34
23msgid "Poching a link" 35msgid "Saving articles"
24msgstr "Shrani povezavo" 36msgstr ""
37
38msgid "There are several ways to save an article:"
39msgstr ""
25 40
26msgid "read the documentation" 41msgid "read the documentation"
27msgstr "preberite dokumentacijo" 42msgstr "preberite dokumentacijo"
28 43
29msgid "by filling this field" 44msgid "download the extension"
45msgstr ""
46
47msgid "via F-Droid"
48msgstr ""
49
50msgid " or "
51msgstr ""
52
53msgid "via Google Play"
54msgstr ""
55
56msgid "download the application"
57msgstr ""
58
59#, fuzzy
60msgid "By filling this field"
30msgstr "z vnosom v to polje" 61msgstr "z vnosom v to polje"
31 62
32msgid "poche it!" 63msgid "bag it!"
33msgstr "shrani!" 64msgstr ""
34 65
35msgid "Updating poche" 66msgid "Bookmarklet: drag & drop this link to your bookmarks bar"
36msgstr "Posodabljam Poche" 67msgstr ""
37 68
38msgid "your version" 69msgid "Upgrading wallabag"
39msgstr "vaša različica" 70msgstr ""
40 71
41msgid "latest stable version" 72#, fuzzy
73msgid "Installed version"
42msgstr "zadnja stabilna različica" 74msgstr "zadnja stabilna različica"
43 75
44msgid "a more recent stable version is available." 76#, fuzzy
77msgid "Latest stable version"
78msgstr "zadnja stabilna različica"
79
80#, fuzzy
81msgid "A more recent stable version is available."
45msgstr "na voljo je nova stabilna različica." 82msgstr "na voljo je nova stabilna različica."
46 83
47msgid "you are up to date." 84#, fuzzy
85msgid "You are up to date."
48msgstr "imate najnovejšo različico." 86msgstr "imate najnovejšo različico."
49 87
50msgid "latest dev version" 88#, fuzzy
89msgid "Latest dev version"
51msgstr "zadnja razvojna različica" 90msgstr "zadnja razvojna različica"
52 91
53msgid "a more recent development version is available." 92#, fuzzy
93msgid "A more recent development version is available."
54msgstr "na voljo je nova razvojna različica." 94msgstr "na voljo je nova razvojna različica."
55 95
96msgid "Feeds"
97msgstr ""
98
99msgid "Your feed token is currently empty and must first be generated to enable feeds. Click <a href='?feed&amp;action=generate'>here to generate it</a>."
100msgstr ""
101
102msgid "Unread feed"
103msgstr ""
104
105#, fuzzy
106msgid "Favorites feed"
107msgstr "priljubljeni"
108
109#, fuzzy
110msgid "Archive feed"
111msgstr "arhiv"
112
113msgid "Your token:"
114msgstr ""
115
116msgid "Your user id:"
117msgstr ""
118
119msgid "You can regenerate your token: <a href='?feed&amp;action=generate'>generate!</a>."
120msgstr ""
121
122#, fuzzy
123msgid "Change your theme"
124msgstr "Zamenjava gesla"
125
126msgid "Theme:"
127msgstr ""
128
129msgid "Update"
130msgstr "Posodobi"
131
132#, fuzzy
133msgid "Change your language"
134msgstr "Zamenjava gesla"
135
136msgid "Language:"
137msgstr ""
138
56msgid "Change your password" 139msgid "Change your password"
57msgstr "Zamenjava gesla" 140msgstr "Zamenjava gesla"
58 141
@@ -65,67 +148,69 @@ msgstr "Geslo"
65msgid "Repeat your new password:" 148msgid "Repeat your new password:"
66msgstr "Ponovite novo geslo:" 149msgstr "Ponovite novo geslo:"
67 150
68msgid "Update"
69msgstr "Posodobi"
70
71msgid "Import" 151msgid "Import"
72msgstr "Uvozi" 152msgstr "Uvozi"
73 153
74msgid "Please execute the import script locally, it can take a very long time." 154#, fuzzy
75msgstr "" 155msgid "Please execute the import script locally as it can take a very long time."
76"Prosimo poženite skripto za uvoz lokalno, saj lahko postopek traja precej " 156msgstr "Prosimo poženite skripto za uvoz lokalno, saj lahko postopek traja precej časa."
77"časa."
78 157
79msgid "More infos in the official doc:" 158#, fuzzy
159msgid "More info in the official documentation:"
80msgstr "Več informacij v uradni dokumentaciji:" 160msgstr "Več informacij v uradni dokumentaciji:"
81 161
82msgid "import from Pocket" 162#, fuzzy
163msgid "Import from Pocket"
83msgstr "Uvoz iz aplikacije Pocket" 164msgstr "Uvoz iz aplikacije Pocket"
84 165
85msgid "import from Readability" 166#, php-format
167msgid "(you must have a %s file on your server)"
168msgstr ""
169
170#, fuzzy
171msgid "Import from Readability"
86msgstr "Uvoz iz aplikacije Readability" 172msgstr "Uvoz iz aplikacije Readability"
87 173
88msgid "import from Instapaper" 174#, fuzzy
175msgid "Import from Instapaper"
89msgstr "Uvoz iz aplikacije Instapaper" 176msgstr "Uvoz iz aplikacije Instapaper"
90 177
91msgid "Export your poche datas" 178#, fuzzy
179msgid "Import from wallabag"
180msgstr "Uvoz iz aplikacije Readability"
181
182#, fuzzy
183msgid "Export your wallabag data"
92msgstr "Izvoz vsebine" 184msgstr "Izvoz vsebine"
93 185
94msgid "Click here" 186msgid "Click here"
95msgstr "Kliknite tukaj" 187msgstr "Kliknite tukaj"
96 188
97msgid "to export your poche datas." 189#, fuzzy
190msgid "to download your database."
98msgstr "za izvoz vsebine aplikacije Poche." 191msgstr "za izvoz vsebine aplikacije Poche."
99 192
100msgid "back to home" 193#, fuzzy
101msgstr "Nazaj domov" 194msgid "to export your wallabag data."
102 195msgstr "za izvoz vsebine aplikacije Poche."
103msgid "installation"
104msgstr "Namestitev"
105 196
106msgid "install your poche" 197msgid "Cache"
107msgstr "Namestitev aplikacije Poche" 198msgstr ""
108 199
109msgid "" 200msgid "to delete cache."
110"poche is still not installed. Please fill the below form to install it. "
111"Don't hesitate to <a href='http://inthepoche.com/doc'>read the documentation "
112"on poche website</a>."
113msgstr "" 201msgstr ""
114"Poche še vedno ni nameščen. Za namestitev izpolnite spodnji obrazec. Za več "
115"informacij <a href='http://inthepoche.com/doc'>preberite dokumentacijo na "
116"spletni strani</a>."
117 202
118msgid "Login" 203msgid "You can enter multiple tags, separated by commas."
119msgstr "Prijava" 204msgstr ""
120 205
121msgid "Repeat your password" 206msgid "return to article"
122msgstr "Ponovite geslo" 207msgstr ""
123 208
124msgid "Install" 209msgid "plop"
125msgstr "Namesti" 210msgstr "štrbunk"
126 211
127msgid "back to top" 212msgid "You can <a href='wallabag_compatibility_test.php'>check your configuration here</a>."
128msgstr "nazaj na vrh" 213msgstr ""
129 214
130msgid "favoris" 215msgid "favoris"
131msgstr "priljubljeni" 216msgstr "priljubljeni"
@@ -154,10 +239,14 @@ msgstr "po naslovu"
154msgid "by title desc" 239msgid "by title desc"
155msgstr "po naslovu - padajoče" 240msgstr "po naslovu - padajoče"
156 241
157msgid "No link available here!" 242msgid "Tag"
158msgstr "Povezava ni na voljo!" 243msgstr ""
159 244
160msgid "toggle mark as read" 245msgid "No articles found."
246msgstr ""
247
248#, fuzzy
249msgid "Toggle mark as read"
161msgstr "označi kot prebrano" 250msgstr "označi kot prebrano"
162 251
163msgid "toggle favorite" 252msgid "toggle favorite"
@@ -169,13 +258,95 @@ msgstr "zavrzi"
169msgid "original" 258msgid "original"
170msgstr "izvirnik" 259msgstr "izvirnik"
171 260
261msgid "estimated reading time:"
262msgstr ""
263
264msgid "mark all the entries as read"
265msgstr ""
266
172msgid "results" 267msgid "results"
173msgstr "rezultati" 268msgstr "rezultati"
174 269
175msgid "tweet" 270msgid "installation"
271msgstr "Namestitev"
272
273#, fuzzy
274msgid "install your wallabag"
275msgstr "Namestitev aplikacije Poche"
276
277#, fuzzy
278msgid "wallabag is still not installed. Please fill the below form to install it. Don't hesitate to <a href='http://doc.wallabag.org/'>read the documentation on wallabag website</a>."
279msgstr "Poche še vedno ni nameščen. Za namestitev izpolnite spodnji obrazec. Za več informacij <a href='http://inthepoche.com/doc'>preberite dokumentacijo na spletni strani</a>."
280
281msgid "Login"
282msgstr "Prijava"
283
284msgid "Repeat your password"
285msgstr "Ponovite geslo"
286
287msgid "Install"
288msgstr "Namesti"
289
290#, fuzzy
291msgid "login to your wallabag"
292msgstr "prijavite se v svoj Poche"
293
294msgid "Login to wallabag"
295msgstr ""
296
297msgid "you are in demo mode, some features may be disabled."
298msgstr "uporabljate vzorčno različico programa, zato so lahko nekatere funkcije izklopljene."
299
300msgid "Username"
301msgstr ""
302
303msgid "Stay signed in"
304msgstr "Ostani prijavljen"
305
306msgid "(Do not check on public computers)"
307msgstr "(Ne označi na javnih napravah)"
308
309msgid "Sign in"
310msgstr "Prijava"
311
312msgid "favorites"
313msgstr "priljubljeni"
314
315msgid "estimated reading time :"
316msgstr ""
317
318msgid "Mark all the entries as read"
319msgstr ""
320
321msgid "Return home"
322msgstr ""
323
324#, fuzzy
325msgid "Back to top"
326msgstr "nazaj na vrh"
327
328#, fuzzy
329msgid "Mark as read"
330msgstr "označi kot prebrano"
331
332#, fuzzy
333msgid "Favorite"
334msgstr "priljubljeni"
335
336#, fuzzy
337msgid "Toggle favorite"
338msgstr "označi kot priljubljeno"
339
340#, fuzzy
341msgid "Delete"
342msgstr "zavrzi"
343
344#, fuzzy
345msgid "Tweet"
176msgstr "tvitni" 346msgstr "tvitni"
177 347
178msgid "email" 348#, fuzzy
349msgid "Email"
179msgstr "pošlji po e-pošti" 350msgstr "pošlji po e-pošti"
180 351
181msgid "shaarli" 352msgid "shaarli"
@@ -184,26 +355,24 @@ msgstr "shaarli"
184msgid "flattr" 355msgid "flattr"
185msgstr "flattr" 356msgstr "flattr"
186 357
187msgid "this article appears wrong?" 358#, fuzzy
359msgid "Does this article appear wrong?"
188msgstr "napaka?" 360msgstr "napaka?"
189 361
190msgid "create an issue" 362msgid "tags:"
191msgstr "prijavi napako" 363msgstr ""
192
193msgid "or"
194msgstr "ali"
195 364
196msgid "contact us by mail" 365msgid "Edit tags"
197msgstr "pošlji e-pošto razvijalcem" 366msgstr ""
198 367
199msgid "plop" 368msgid "save link!"
200msgstr "štrbunk" 369msgstr ""
201 370
202msgid "home" 371msgid "home"
203msgstr "domov" 372msgstr "domov"
204 373
205msgid "favorites" 374msgid "tags"
206msgstr "priljubljeni" 375msgstr ""
207 376
208msgid "logout" 377msgid "logout"
209msgstr "odjava" 378msgstr "odjava"
@@ -212,28 +381,188 @@ msgid "powered by"
212msgstr "stran poganja" 381msgstr "stran poganja"
213 382
214msgid "debug mode is on so cache is off." 383msgid "debug mode is on so cache is off."
215msgstr "" 384msgstr "vklopljen je način odpravljanja napak, zato je predpomnilnik izključen."
216"vklopljen je način odpravljanja napak, zato je predpomnilnik izključen."
217 385
218msgid "your poche version:" 386#, fuzzy
219msgstr "vaša verzija Poche:" 387msgid "your wallabag version:"
388msgstr "vaša različica"
220 389
221msgid "storage:" 390msgid "storage:"
222msgstr "pomnilnik:" 391msgstr "pomnilnik:"
223 392
224msgid "login to your poche" 393msgid "save a link"
225msgstr "prijavite se v svoj Poche" 394msgstr ""
226 395
227msgid "you are in demo mode, some features may be disabled." 396msgid "back to home"
397msgstr "Nazaj domov"
398
399msgid "toggle mark as read"
400msgstr "označi kot prebrano"
401
402msgid "tweet"
403msgstr "tvitni"
404
405msgid "email"
406msgstr "pošlji po e-pošti"
407
408msgid "this article appears wrong?"
409msgstr "napaka?"
410
411msgid "No link available here!"
412msgstr "Povezava ni na voljo!"
413
414msgid "Poching a link"
415msgstr "Shrani povezavo"
416
417msgid "by filling this field"
418msgstr "z vnosom v to polje"
419
420msgid "bookmarklet: drag & drop this link to your bookmarks bar"
228msgstr "" 421msgstr ""
229"uporabljate vzorčno različico programa, zato so lahko nekatere funkcije "
230"izklopljene."
231 422
232msgid "Stay signed in" 423msgid "your version"
233msgstr "Ostani prijavljen" 424msgstr "vaša različica"
234 425
235msgid "(Do not check on public computers)" 426msgid "latest stable version"
236msgstr "(Ne označi na javnih napravah)" 427msgstr "zadnja stabilna različica"
237 428
238msgid "Sign in" 429msgid "a more recent stable version is available."
239msgstr "Prijava" 430msgstr "na voljo je nova stabilna različica."
431
432msgid "you are up to date."
433msgstr "imate najnovejšo različico."
434
435msgid "latest dev version"
436msgstr "zadnja razvojna različica"
437
438msgid "a more recent development version is available."
439msgstr "na voljo je nova razvojna različica."
440
441msgid "Please execute the import script locally, it can take a very long time."
442msgstr "Prosimo poženite skripto za uvoz lokalno, saj lahko postopek traja precej časa."
443
444msgid "More infos in the official doc:"
445msgstr "Več informacij v uradni dokumentaciji:"
446
447msgid "import from Pocket"
448msgstr "Uvoz iz aplikacije Pocket"
449
450msgid "import from Readability"
451msgstr "Uvoz iz aplikacije Readability"
452
453msgid "import from Instapaper"
454msgstr "Uvoz iz aplikacije Instapaper"
455
456msgid "Tags"
457msgstr ""
458
459#, fuzzy
460msgid "Untitled"
461msgstr "po naslovu"
462
463msgid "the link has been added successfully"
464msgstr ""
465
466msgid "error during insertion : the link wasn't added"
467msgstr ""
468
469msgid "the link has been deleted successfully"
470msgstr ""
471
472msgid "the link wasn't deleted"
473msgstr ""
474
475msgid "Article not found!"
476msgstr ""
477
478msgid "previous"
479msgstr ""
480
481msgid "next"
482msgstr ""
483
484msgid "in demo mode, you can't update your password"
485msgstr ""
486
487msgid "your password has been updated"
488msgstr ""
489
490msgid "the two fields have to be filled & the password must be the same in the two fields"
491msgstr ""
492
493msgid "still using the \""
494msgstr ""
495
496msgid "that theme does not seem to be installed"
497msgstr ""
498
499msgid "you have changed your theme preferences"
500msgstr ""
501
502msgid "that language does not seem to be installed"
503msgstr ""
504
505msgid "you have changed your language preferences"
506msgstr ""
507
508msgid "login failed: you have to fill all fields"
509msgstr ""
510
511msgid "welcome to your wallabag"
512msgstr ""
513
514msgid "login failed: bad login or password"
515msgstr ""
516
517#, fuzzy
518msgid "import from instapaper completed"
519msgstr "Uvoz iz aplikacije Instapaper"
520
521#, fuzzy
522msgid "import from pocket completed"
523msgstr "Uvoz iz aplikacije Pocket"
524
525#, fuzzy
526msgid "import from Readability completed. "
527msgstr "Uvoz iz aplikacije Readability"
528
529#, fuzzy
530msgid "import from Poche completed. "
531msgstr "Uvoz iz aplikacije Pocket"
532
533msgid "Unknown import provider."
534msgstr ""
535
536msgid "Incomplete inc/poche/define.inc.php file, please define \""
537msgstr ""
538
539msgid "Could not find required \""
540msgstr ""
541
542msgid "Uh, there is a problem while generating feeds."
543msgstr ""
544
545#, fuzzy
546msgid "Cache deleted."
547msgstr "zavrzi"
548
549msgid "Oops, it seems you don't have PHP 5."
550msgstr ""
551
552#~ msgid "poche it!"
553#~ msgstr "shrani!"
554
555#~ msgid "Updating poche"
556#~ msgstr "Posodabljam Poche"
557
558#~ msgid "create an issue"
559#~ msgstr "prijavi napako"
560
561#~ msgid "or"
562#~ msgstr "ali"
563
564#~ msgid "contact us by mail"
565#~ msgstr "pošlji e-pošto razvijalcem"
566
567#~ msgid "your poche version:"
568#~ msgstr "vaša verzija Poche:"
diff --git a/locale/uk_UA.utf8/LC_MESSAGES/uk_UA.utf8.mo b/locale/uk_UA.utf8/LC_MESSAGES/uk_UA.utf8.mo
index 80972b65..4884abf5 100755
--- a/locale/uk_UA.utf8/LC_MESSAGES/uk_UA.utf8.mo
+++ b/locale/uk_UA.utf8/LC_MESSAGES/uk_UA.utf8.mo
Binary files differ
diff --git a/locale/uk_UA.utf8/LC_MESSAGES/uk_UA.utf8.po b/locale/uk_UA.utf8/LC_MESSAGES/uk_UA.utf8.po
index 6092cbab..08797705 100755
--- a/locale/uk_UA.utf8/LC_MESSAGES/uk_UA.utf8.po
+++ b/locale/uk_UA.utf8/LC_MESSAGES/uk_UA.utf8.po
@@ -2,8 +2,8 @@ msgid ""
2msgstr "" 2msgstr ""
3"Project-Id-Version: wballabag\n" 3"Project-Id-Version: wballabag\n"
4"Report-Msgid-Bugs-To: \n" 4"Report-Msgid-Bugs-To: \n"
5"POT-Creation-Date: 2014-02-06 19:23+0300\n" 5"POT-Creation-Date: 2014-02-25 15:06+0300\n"
6"PO-Revision-Date: 2014-02-06 19:24+0300\n" 6"PO-Revision-Date: 2014-02-25 15:08+0300\n"
7"Last-Translator: Maryana <mariroz@mr.lviv.ua>\n" 7"Last-Translator: Maryana <mariroz@mr.lviv.ua>\n"
8"Language-Team: \n" 8"Language-Team: \n"
9"Language: \n" 9"Language: \n"
@@ -15,52 +15,25 @@ msgstr ""
15"X-Poedit-Language: Ukrainian\n" 15"X-Poedit-Language: Ukrainian\n"
16"X-Poedit-Country: UKRAINE\n" 16"X-Poedit-Country: UKRAINE\n"
17"X-Poedit-SourceCharset: utf-8\n" 17"X-Poedit-SourceCharset: utf-8\n"
18"X-Poedit-SearchPath-0: /home/mariroz/_DEV/web/wallabag/wallabag\n" 18"X-Poedit-SearchPath-0: /home/mariroz/_DEV/web/wallabag/wallabag-master-testing\n"
19 19
20msgid "poche, a read it later open source system" 20msgid "wallabag, a read it later open source system"
21msgstr "poche, сервіс відкладеного читання з відкритим кодом" 21msgstr "wallabag, сервіс відкладеного читання з відкритим кодом"
22 22
23msgid "login failed: user doesn't exist" 23msgid "login failed: user doesn't exist"
24msgstr "увійти не вдалося: користувач не існує" 24msgstr "увійти не вдалося: користувач не існує"
25 25
26msgid "powered by" 26msgid "return home"
27msgstr "за підтримки" 27msgstr "повернутися на головну"
28
29msgid "debug mode is on so cache is off."
30msgstr "режим відладки включено, отже кеш виключено."
31
32msgid "your poche version:"
33msgstr "версія вашої poche:"
34
35msgid "storage:"
36msgstr "сховище:"
37
38msgid "home"
39msgstr "головна"
40
41msgid "favorites"
42msgstr "вибране"
43
44msgid "archive"
45msgstr "архів"
46
47msgid "tags"
48msgstr "теги"
49 28
50msgid "config" 29msgid "config"
51msgstr "налаштування" 30msgstr "налаштування"
52 31
53msgid "logout" 32msgid "Saving articles"
54msgstr "вихід"
55
56msgid "return home"
57msgstr "повернутися на головну"
58
59msgid "Poching links"
60msgstr "Зберігання посилань" 33msgstr "Зберігання посилань"
61 34
62msgid "There are several ways to poche a link:" 35msgid "There are several ways to save an article:"
63msgstr "Є кілька способів зберегти послнн:" 36msgstr "Є кілька способів зберегти статю:"
64 37
65msgid "read the documentation" 38msgid "read the documentation"
66msgstr "читати документацію" 39msgstr "читати документацію"
@@ -83,14 +56,14 @@ msgstr "завантажити додаток"
83msgid "By filling this field" 56msgid "By filling this field"
84msgstr "Заповнивши це поле" 57msgstr "Заповнивши це поле"
85 58
86msgid "poche it!" 59msgid "bag it!"
87msgstr "зберегти!" 60msgstr "зберегти!"
88 61
89msgid "Bookmarklet: drag & drop this link to your bookmarks bar" 62msgid "Bookmarklet: drag & drop this link to your bookmarks bar"
90msgstr "З допомогою закладки: перетягніть і відпустіть посилання на панель закладок" 63msgstr "З допомогою закладки: перетягніть і відпустіть посилання на панель закладок"
91 64
92msgid "Updating poche" 65msgid "Upgrading wallabag"
93msgstr "Оновлення poche" 66msgstr "Оновлення wallabag"
94 67
95msgid "Installed version" 68msgid "Installed version"
96msgstr "Встановлено ​​версію" 69msgstr "Встановлено ​​версію"
@@ -104,14 +77,11 @@ msgstr "Є новіша стабільна версія."
104msgid "You are up to date." 77msgid "You are up to date."
105msgstr "У вас остання версія." 78msgstr "У вас остання версія."
106 79
107msgid "latest dev version" 80msgid "Latest dev version"
108msgstr "остання версія в розробці" 81msgstr "Остання версія в розробці"
109
110msgid "a more recent development version is available."
111msgstr "доступна новіша версія в розробці."
112 82
113msgid "you are up to date." 83msgid "A more recent development version is available."
114msgstr "у с стнн версія." 84msgstr "остун овша версія в розробці."
115 85
116msgid "Feeds" 86msgid "Feeds"
117msgstr "Завантаження (feeds)" 87msgstr "Завантаження (feeds)"
@@ -170,8 +140,8 @@ msgstr "Імпортування"
170msgid "Please execute the import script locally as it can take a very long time." 140msgid "Please execute the import script locally as it can take a very long time."
171msgstr "Будь ласка, виконайте сценарій імпорту локально, оскільки це може тривати досить довго." 141msgstr "Будь ласка, виконайте сценарій імпорту локально, оскільки це може тривати досить довго."
172 142
173msgid "More info in the official docs:" 143msgid "More info in the official documentation:"
174msgstr "Більш тальна інформаці в офіційній документації:" 144msgstr "Більше інформаці в офіційній документації:"
175 145
176msgid "Import from Pocket" 146msgid "Import from Pocket"
177msgstr "Імпорт з Pocket-а" 147msgstr "Імпорт з Pocket-а"
@@ -186,11 +156,11 @@ msgstr "Імпорт з Readability"
186msgid "Import from Instapaper" 156msgid "Import from Instapaper"
187msgstr "Імпорт з Instapaper" 157msgstr "Імпорт з Instapaper"
188 158
189msgid "Import from poche" 159msgid "Import from wallabag"
190msgstr "Імпорт з poche" 160msgstr "Імпорт з wallabag"
191 161
192msgid "Export your poche data" 162msgid "Export your wallabag data"
193msgstr "Експортувати ваші дані з poche" 163msgstr "Експортувати ваші дані з wallabag"
194 164
195msgid "Click here" 165msgid "Click here"
196msgstr "Клікніть тут" 166msgstr "Клікніть тут"
@@ -198,32 +168,14 @@ msgstr "Клікніть тут"
198msgid "to download your database." 168msgid "to download your database."
199msgstr "щоб завантажити вашу базу даних." 169msgstr "щоб завантажити вашу базу даних."
200 170
201msgid "to export your poche data." 171msgid "to export your wallabag data."
202msgstr "щоб експортувати ваші дані poche." 172msgstr "щоб експортувати ваші дані wallabag."
203 173
204msgid "Tag" 174msgid "Cache"
205msgstr "ег" 175msgstr "еш"
206 176
207msgid "No link available here!" 177msgid "to delete cache."
208msgstr "Немає доступних посилань!" 178msgstr "щоб очистити кеш."
209
210msgid "toggle mark as read"
211msgstr "змінити мітку на прочитано"
212
213msgid "toggle favorite"
214msgstr "змінити мітку вибраного"
215
216msgid "delete"
217msgstr "видалити"
218
219msgid "original"
220msgstr "оригінал"
221
222msgid "estimated reading time:"
223msgstr "приблизний час читання:"
224
225msgid "results"
226msgstr "результат(ів)"
227 179
228msgid "You can enter multiple tags, separated by commas." 180msgid "You can enter multiple tags, separated by commas."
229msgstr "Ви можете ввести декілька тегів, розділених комами." 181msgstr "Ви можете ввести декілька тегів, розділених комами."
@@ -240,6 +192,9 @@ msgstr "Ви можете <a href='wallabag_compatibility_test.php'>переві
240msgid "favoris" 192msgid "favoris"
241msgstr "вибране" 193msgstr "вибране"
242 194
195msgid "archive"
196msgstr "архів"
197
243msgid "unread" 198msgid "unread"
244msgstr "непрочитане" 199msgstr "непрочитане"
245 200
@@ -261,12 +216,33 @@ msgstr "за назвою"
261msgid "by title desc" 216msgid "by title desc"
262msgstr "за назвою по спаданню" 217msgstr "за назвою по спаданню"
263 218
219msgid "Tag"
220msgstr "Тег"
221
264msgid "No articles found." 222msgid "No articles found."
265msgstr "Статей не знайдено." 223msgstr "Статей не знайдено."
266 224
267msgid "Toggle mark as read" 225msgid "Toggle mark as read"
268msgstr "змінити мітку прочитаного" 226msgstr "змінити мітку прочитаного"
269 227
228msgid "toggle favorite"
229msgstr "змінити мітку вибраного"
230
231msgid "delete"
232msgstr "видалити"
233
234msgid "original"
235msgstr "оригінал"
236
237msgid "estimated reading time:"
238msgstr "приблизний час читання:"
239
240msgid "mark all the entries as read"
241msgstr "відмітити всі статті як прочитані"
242
243msgid "results"
244msgstr "результат(ів)"
245
270msgid "installation" 246msgid "installation"
271msgstr "інсталяція" 247msgstr "інсталяція"
272 248
@@ -303,6 +279,18 @@ msgstr "Запам'ятати мене"
303msgid "(Do not check on public computers)" 279msgid "(Do not check on public computers)"
304msgstr "(Не відмічайте на загальнодоступних комп'ютерах)" 280msgstr "(Не відмічайте на загальнодоступних комп'ютерах)"
305 281
282msgid "Sign in"
283msgstr "Увійти"
284
285msgid "favorites"
286msgstr "вибране"
287
288msgid "estimated reading time :"
289msgstr "приблизний час читання:"
290
291msgid "Mark all the entries as read"
292msgstr "Відмітити все як прочитане"
293
306msgid "Return home" 294msgid "Return home"
307msgstr "Повернутися на головну" 295msgstr "Повернутися на головну"
308 296
@@ -342,11 +330,95 @@ msgstr "теги:"
342msgid "Edit tags" 330msgid "Edit tags"
343msgstr "Редагувати теги" 331msgstr "Редагувати теги"
344 332
345msgid "previous" 333msgid "save link!"
346msgstr "ре" 334msgstr "ерет лнк!"
347 335
348msgid "next" 336msgid "home"
349msgstr "наступна" 337msgstr "головна"
338
339msgid "tags"
340msgstr "теги"
341
342msgid "logout"
343msgstr "вихід"
344
345msgid "powered by"
346msgstr "за підтримки"
347
348msgid "debug mode is on so cache is off."
349msgstr "режим відладки включено, отже кеш виключено."
350
351msgid "your wallabag version:"
352msgstr "версія вашого wallabag:"
353
354msgid "storage:"
355msgstr "сховище:"
356
357msgid "save a link"
358msgstr "зберегти лінк"
359
360msgid "back to home"
361msgstr "назад на головну"
362
363msgid "toggle mark as read"
364msgstr "змінити мітку на прочитано"
365
366msgid "tweet"
367msgstr "твітнути"
368
369msgid "email"
370msgstr "email"
371
372msgid "this article appears wrong?"
373msgstr "ця стаття виглядає не так, як треба?"
374
375msgid "No link available here!"
376msgstr "Немає доступних посилань!"
377
378msgid "Poching a link"
379msgstr "Зберігання посилання"
380
381msgid "by filling this field"
382msgstr "заповнивши це поле"
383
384msgid "bookmarklet: drag & drop this link to your bookmarks bar"
385msgstr "з допомогою закладки: перетягніть і відпустіть посилання на панель закладок"
386
387msgid "your version"
388msgstr "ваша версія:"
389
390msgid "latest stable version"
391msgstr "остання стабільна версія"
392
393msgid "a more recent stable version is available."
394msgstr "є новіша стабільна версія."
395
396msgid "you are up to date."
397msgstr "у вас остання версія."
398
399msgid "latest dev version"
400msgstr "остання версія в розробці"
401
402msgid "a more recent development version is available."
403msgstr "доступна новіша версія в розробці."
404
405msgid "Please execute the import script locally, it can take a very long time."
406msgstr "Будь ласка, виконайте сценарій імпорту локально, оскільки це може тривати досить довго."
407
408msgid "More infos in the official doc:"
409msgstr "Більше інформації в офіційній документації:"
410
411msgid "import from Pocket"
412msgstr "імпорт з Pocket-а"
413
414msgid "import from Readability"
415msgstr "імпорт з Readability"
416
417msgid "import from Instapaper"
418msgstr "імпорт з Instapaper"
419
420msgid "Tags"
421msgstr "Теги"
350 422
351msgid "Untitled" 423msgid "Untitled"
352msgstr "Без назви" 424msgstr "Без назви"
@@ -363,6 +435,15 @@ msgstr "посилання успішно видалено"
363msgid "the link wasn't deleted" 435msgid "the link wasn't deleted"
364msgstr "посилання не було видалено" 436msgstr "посилання не було видалено"
365 437
438msgid "Article not found!"
439msgstr "Статтю не знайдено!"
440
441msgid "previous"
442msgstr "попередня"
443
444msgid "next"
445msgstr "наступна"
446
366msgid "in demo mode, you can't update your password" 447msgid "in demo mode, you can't update your password"
367msgstr "в демонстраційному режимі ви не можете змінювати свій пароль" 448msgstr "в демонстраційному режимі ви не можете змінювати свій пароль"
368 449
@@ -390,15 +471,12 @@ msgstr "ви змінили свої налаштування мови"
390msgid "login failed: you have to fill all fields" 471msgid "login failed: you have to fill all fields"
391msgstr "увійти не вдалося: ви повинні заповнити всі поля" 472msgstr "увійти не вдалося: ви повинні заповнити всі поля"
392 473
393msgid "welcome to your poche" 474msgid "welcome to your wallabag"
394msgstr "ласкаво просимо до вашого poche" 475msgstr "ласкаво просимо до вашого wallabag"
395 476
396msgid "login failed: bad login or password" 477msgid "login failed: bad login or password"
397msgstr "увійти не вдалося: не вірний логін або пароль" 478msgstr "увійти не вдалося: не вірний логін або пароль"
398 479
399msgid "see you soon!"
400msgstr "бувайте, ще побачимось!"
401
402msgid "import from instapaper completed" 480msgid "import from instapaper completed"
403msgstr "імпорт з instapaper-а завершено" 481msgstr "імпорт з instapaper-а завершено"
404 482
@@ -423,6 +501,34 @@ msgstr "Не вдалося знайти потрібний \""
423msgid "Uh, there is a problem while generating feeds." 501msgid "Uh, there is a problem while generating feeds."
424msgstr "Ох, є проблема при створенні завантажень (feeds)." 502msgstr "Ох, є проблема при створенні завантажень (feeds)."
425 503
504msgid "Cache deleted."
505msgstr "Кеш очищено."
506
426msgid "Oops, it seems you don't have PHP 5." 507msgid "Oops, it seems you don't have PHP 5."
427msgstr "Упс, здається, у вас немає PHP 5." 508msgstr "Упс, здається, у вас немає PHP 5."
428 509
510#~ msgid "You can poche a link by several methods:"
511#~ msgstr "Ви можете зберегти посилання кількома способами:"
512
513#~ msgid "poche it!"
514#~ msgstr "зберегти!"
515
516#~ msgid "Updating poche"
517#~ msgstr "Оновлення poche"
518
519#, fuzzy
520#~ msgid "Export your poche datas"
521#~ msgstr "Експортувати ваші дані з poche"
522
523#, fuzzy
524#~ msgid "to export your poche datas."
525#~ msgstr "щоб експортувати ваші дані poche."
526
527#~ msgid "Import from poche"
528#~ msgstr "Імпорт з poche"
529
530#~ msgid "welcome to your poche"
531#~ msgstr "ласкаво просимо до вашого poche"
532
533#~ msgid "see you soon!"
534#~ msgstr "бувайте, ще побачимось!"
diff --git a/themes/baggy/_top.twig b/themes/baggy/_top.twig
index 4f476a37..d3e35aa3 100644
--- a/themes/baggy/_top.twig
+++ b/themes/baggy/_top.twig
@@ -1,6 +1,6 @@
1 <header class="w600p center mbm"> 1 <header class="w600p center mbm">
2 <h1 class="logo"> 2 <h1 class="logo">
3 {% if view == 'home' %}{% block logo %}<img width="100" height="100" src="{{ poche_url }}/themes/{{theme}}/img/logo-w.png" alt="logo poche" />{% endblock %} 3 {% if view == 'home' %}{% block logo %}<img width="100" height="100" src="{{ poche_url }}/themes/{{theme}}/img/logo-w.png" alt="wallabag logo" />{% endblock %}
4 {% else %}<a href="./" title="{% trans "return home" %}" >{{ block('logo') }}</a> 4 {% else %}<a href="./" title="{% trans "return home" %}" >{{ block('logo') }}</a>
5 {% endif %} 5 {% endif %}
6 </h1> 6 </h1>
diff --git a/themes/courgette/_top.twig b/themes/courgette/_top.twig
index 792687c0..2a2de211 100755
--- a/themes/courgette/_top.twig
+++ b/themes/courgette/_top.twig
@@ -1,6 +1,6 @@
1 <header> 1 <header>
2 <h1> 2 <h1>
3 {% if view == 'home' %}{% block logo %}<img src="{{ poche_url }}/themes/{{ constant('DEFAULT_THEME') }}/img/logo.svg" alt="logo poche" />{% endblock %} 3 {% if view == 'home' %}{% block logo %}<img src="{{ poche_url }}/themes/{{ constant('DEFAULT_THEME') }}/img/logo.svg" alt="wallabag logo" />{% endblock %}
4 {% elseif view == 'fav' %}<a href="./" title="{% trans "back to home" %}" >{{ block('logo') }} <span>Favoris</span></a> 4 {% elseif view == 'fav' %}<a href="./" title="{% trans "back to home" %}" >{{ block('logo') }} <span>Favoris</span></a>
5 {% elseif view == 'archive' %}<a href="./" title="{% trans "back to home" %}" >{{ block('logo') }} <span>Archive</span></a> 5 {% elseif view == 'archive' %}<a href="./" title="{% trans "back to home" %}" >{{ block('logo') }} <span>Archive</span></a>
6 {% else %}<a href="./" title="{% trans "back to home" %}" >{{ block('logo') }}</a> 6 {% else %}<a href="./" title="{% trans "back to home" %}" >{{ block('logo') }}</a>
diff --git a/themes/courgette/config.twig b/themes/courgette/config.twig
index 26da7289..5c0aa4b1 100755
--- a/themes/courgette/config.twig
+++ b/themes/courgette/config.twig
@@ -7,7 +7,7 @@
7{% block content %} 7{% block content %}
8 <div id="config"> 8 <div id="config">
9 <h2>{% trans "Poching a link" %}</h2> 9 <h2>{% trans "Poching a link" %}</h2>
10 <p>{% trans "You can poche a link by several methods:" %} (<a class="special" href="http://doc.wallabag.org" title="{% trans "read the documentation" %}">?</a>)</p> 10 <p>{% trans "There are several ways to save an article:" %} (<a class="special" href="http://doc.wallabag.org" title="{% trans "read the documentation" %}">?</a>)</p>
11 <ul> 11 <ul>
12 <li>firefox: <a href="https://bitbucket.org/jogaulupeau/poche/downloads/poche.xpi" title="download the firefox extension">{% trans "download the extension" %}</a></li> 12 <li>firefox: <a href="https://bitbucket.org/jogaulupeau/poche/downloads/poche.xpi" title="download the firefox extension">{% trans "download the extension" %}</a></li>
13 <li>chrome: <a href="https://bitbucket.org/jogaulupeau/poche/downloads/poche.crx" title="download the chrome extension">{% trans "download the extension" %}</a></li> 13 <li>chrome: <a href="https://bitbucket.org/jogaulupeau/poche/downloads/poche.crx" title="download the chrome extension">{% trans "download the extension" %}</a></li>
@@ -16,13 +16,13 @@
16 <form method="get" action="index.php"> 16 <form method="get" action="index.php">
17 <label class="addurl" for="plainurl">{% trans "by filling this field" %}:</label> 17 <label class="addurl" for="plainurl">{% trans "by filling this field" %}:</label>
18 <input required placeholder="Ex:mywebsite.com/article" class="addurl" id="plainurl" name="plainurl" type="url" /> 18 <input required placeholder="Ex:mywebsite.com/article" class="addurl" id="plainurl" name="plainurl" type="url" />
19 <input type="submit" value="{% trans "poche it!" %}" /> 19 <input type="submit" value="{% trans "bag it!" %}" />
20 </form> 20 </form>
21 </li> 21 </li>
22 <li>{% trans "bookmarklet: drag & drop this link to your bookmarks bar" %} <a id="bookmarklet" ondragend="this.click();" title="i am a bookmarklet, use me !" href="javascript:if(top['bookmarklet-url@wallabag.org']){top['bookmarklet-url@wallabag.org'];}else{(function(){var%20url%20=%20location.href%20||%20url;window.open('{{ poche_url }}?action=add&url='%20+%20btoa(url),'_self');})();void(0);}">{% trans "poche it!" %}</a></li> 22 <li>{% trans "bookmarklet: drag & drop this link to your bookmarks bar" %} <a id="bookmarklet" ondragend="this.click();" title="i am a bookmarklet, use me !" href="javascript:if(top['bookmarklet-url@wallabag.org']){top['bookmarklet-url@wallabag.org'];}else{(function(){var%20url%20=%20location.href%20||%20url;window.open('{{ poche_url }}?action=add&url='%20+%20btoa(url),'_self');})();void(0);}">{% trans "bag it!" %}</a></li>
23 </ul> 23 </ul>
24 24
25 <h2>{% trans "Updating poche" %}</h2> 25 <h2>{% trans "Upgrading wallabag" %}</h2>
26 <ul> 26 <ul>
27 <li>{% trans "your version" %} : <strong>{{ constant('POCHE') }}</strong></li> 27 <li>{% trans "your version" %} : <strong>{{ constant('POCHE') }}</strong></li>
28 <li>{% trans "latest stable version" %} : {{ prod }}. {% if compare_prod == -1 %}<strong><a href="http://wallabag.org/">{% trans "a more recent stable version is available." %}</a></strong>{% else %}{% trans "you are up to date." %}{% endif %}</li> 28 <li>{% trans "latest stable version" %} : {{ prod }}. {% if compare_prod == -1 %}<strong><a href="http://wallabag.org/">{% trans "a more recent stable version is available." %}</a></strong>{% else %}{% trans "you are up to date." %}{% endif %}</li>
@@ -76,7 +76,7 @@
76 <li><a href="./?import&amp;from=instapaper">{% trans "import from Instapaper" %}</a> {{ '(you must have a %s file on your server)'|trans|format(constant('INSTAPAPER_FILE')) }}</li> 76 <li><a href="./?import&amp;from=instapaper">{% trans "import from Instapaper" %}</a> {{ '(you must have a %s file on your server)'|trans|format(constant('INSTAPAPER_FILE')) }}</li>
77 </ul> 77 </ul>
78 78
79 <h2>{% trans "Export your poche datas" %}</h2> 79 <h2>{% trans "Export your wallabag data" %}</h2>
80 <p><a href="./?export" target="_blank">{% trans "Click here" %}</a> {% trans "to export your poche datas." %}</p> 80 <p><a href="./?export" target="_blank">{% trans "Click here" %}</a> {% trans "to export your wallabag data." %}</p>
81 </div> 81 </div>
82{% endblock %} \ No newline at end of file 82{% endblock %} \ No newline at end of file
diff --git a/themes/default/_bookmarklet.twig b/themes/default/_bookmarklet.twig
index 2e3071ad..61996353 100644
--- a/themes/default/_bookmarklet.twig
+++ b/themes/default/_bookmarklet.twig
@@ -1,3 +1,3 @@
1 <script type="text/javascript"> 1 <script type="text/javascript">
2 top["bookmarklet-url@wallabag.org"]=""+"<!DOCTYPE html>"+"<html>"+"<head>"+"<title>poche it !</title>"+'<link rel="icon" href="{{poche_url}}tpl/img/favicon.ico" />'+"</head>"+"<body>"+"<script>"+"window.onload=function(){"+"window.setTimeout(function(){"+"history.back();"+"},250);"+"};"+"</scr"+"ipt>"+"</body>"+"</html>" 2 top["bookmarklet-url@wallabag.org"]=""+"<!DOCTYPE html>"+"<html>"+"<head>"+"<title>bag it!</title>"+'<link rel="icon" href="{{poche_url}}tpl/img/favicon.ico" />'+"</head>"+"<body>"+"<script>"+"window.onload=function(){"+"window.setTimeout(function(){"+"history.back();"+"},250);"+"};"+"</scr"+"ipt>"+"</body>"+"</html>"
3 </script> \ No newline at end of file 3 </script> \ No newline at end of file
diff --git a/themes/default/_top.twig b/themes/default/_top.twig
index 0711acdc..c6e41b2f 100644
--- a/themes/default/_top.twig
+++ b/themes/default/_top.twig
@@ -1,6 +1,6 @@
1 <header class="w600p center mbm"> 1 <header class="w600p center mbm">
2 <h1> 2 <h1>
3 {% if view == 'home' %}{% block logo %}<img width="100" height="100" src="{{ poche_url }}/themes/baggy/img/logo-other_themes.png" alt="logo poche" />{% endblock %} 3 {% if view == 'home' %}{% block logo %}<img width="100" height="100" src="{{ poche_url }}/themes/baggy/img/logo-other_themes.png" alt="wallabag logo" />{% endblock %}
4 {% else %}<a href="./" title="{% trans "return home" %}" >{{ block('logo') }}</a> 4 {% else %}<a href="./" title="{% trans "return home" %}" >{{ block('logo') }}</a>
5 {% endif %} 5 {% endif %}
6 </h1> 6 </h1>