diff options
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 |
57 | set_include_path(realpath(dirname(__FILE__).'/libraries').PATH_SEPARATOR.get_include_path()); | 57 | set_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. | 59 | require_once dirname(__FILE__).'/makefulltextfeedHelpers.php'; |
60 | function 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 | } | ||
92 | spl_autoload_register('autoload'); | ||
93 | require 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 | |||
910 | function 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 | ////////////////////////////////////////////// | ||
936 | function 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)] = '‚'; // Single Low-9 Quotation Mark | ||
976 | $trans[chr(131)] = 'ƒ'; // Latin Small Letter F With Hook | ||
977 | $trans[chr(132)] = '„'; // Double Low-9 Quotation Mark | ||
978 | $trans[chr(133)] = '…'; // Horizontal Ellipsis | ||
979 | $trans[chr(134)] = '†'; // Dagger | ||
980 | $trans[chr(135)] = '‡'; // Double Dagger | ||
981 | $trans[chr(136)] = 'ˆ'; // Modifier Letter Circumflex Accent | ||
982 | $trans[chr(137)] = '‰'; // Per Mille Sign | ||
983 | $trans[chr(138)] = 'Š'; // Latin Capital Letter S With Caron | ||
984 | $trans[chr(139)] = '‹'; // Single Left-Pointing Angle Quotation Mark | ||
985 | $trans[chr(140)] = 'Œ'; // Latin Capital Ligature OE | ||
986 | $trans[chr(145)] = '‘'; // Left Single Quotation Mark | ||
987 | $trans[chr(146)] = '’'; // Right Single Quotation Mark | ||
988 | $trans[chr(147)] = '“'; // Left Double Quotation Mark | ||
989 | $trans[chr(148)] = '”'; // Right Double Quotation Mark | ||
990 | $trans[chr(149)] = '•'; // Bullet | ||
991 | $trans[chr(150)] = '–'; // En Dash | ||
992 | $trans[chr(151)] = '—'; // Em Dash | ||
993 | $trans[chr(152)] = '˜'; // Small Tilde | ||
994 | $trans[chr(153)] = '™'; // Trade Mark Sign | ||
995 | $trans[chr(154)] = 'š'; // Latin Small Letter S With Caron | ||
996 | $trans[chr(155)] = '›'; // Single Right-Pointing Angle Quotation Mark | ||
997 | $trans[chr(156)] = 'œ'; // Latin Small Ligature OE | ||
998 | $trans[chr(159)] = 'Ÿ'; // 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 | |||
1023 | function 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 | } | ||
1038 | function 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 | } | ||
1051 | function 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 | ||
1066 | function 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') | ||
1124 | function 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 | |||
1147 | function 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 | |||
1154 | function 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 | |||
1162 | function 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 | |||
1189 | function 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. | ||
5 | function 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 | } | ||
37 | spl_autoload_register('autoload'); | ||
38 | require dirname(__FILE__).'/libraries/simplepie/autoloader.php'; | ||
39 | |||
40 | |||
41 | class 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 | } | ||
51 | class 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 | |||
69 | function 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 | ////////////////////////////////////////////// | ||
95 | function 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)] = '‚'; // Single Low-9 Quotation Mark | ||
135 | $trans[chr(131)] = 'ƒ'; // Latin Small Letter F With Hook | ||
136 | $trans[chr(132)] = '„'; // Double Low-9 Quotation Mark | ||
137 | $trans[chr(133)] = '…'; // Horizontal Ellipsis | ||
138 | $trans[chr(134)] = '†'; // Dagger | ||
139 | $trans[chr(135)] = '‡'; // Double Dagger | ||
140 | $trans[chr(136)] = 'ˆ'; // Modifier Letter Circumflex Accent | ||
141 | $trans[chr(137)] = '‰'; // Per Mille Sign | ||
142 | $trans[chr(138)] = 'Š'; // Latin Capital Letter S With Caron | ||
143 | $trans[chr(139)] = '‹'; // Single Left-Pointing Angle Quotation Mark | ||
144 | $trans[chr(140)] = 'Œ'; // Latin Capital Ligature OE | ||
145 | $trans[chr(145)] = '‘'; // Left Single Quotation Mark | ||
146 | $trans[chr(146)] = '’'; // Right Single Quotation Mark | ||
147 | $trans[chr(147)] = '“'; // Left Double Quotation Mark | ||
148 | $trans[chr(148)] = '”'; // Right Double Quotation Mark | ||
149 | $trans[chr(149)] = '•'; // Bullet | ||
150 | $trans[chr(150)] = '–'; // En Dash | ||
151 | $trans[chr(151)] = '—'; // Em Dash | ||
152 | $trans[chr(152)] = '˜'; // Small Tilde | ||
153 | $trans[chr(153)] = '™'; // Trade Mark Sign | ||
154 | $trans[chr(154)] = 'š'; // Latin Small Letter S With Caron | ||
155 | $trans[chr(155)] = '›'; // Single Right-Pointing Angle Quotation Mark | ||
156 | $trans[chr(156)] = 'œ'; // Latin Small Ligature OE | ||
157 | $trans[chr(159)] = 'Ÿ'; // 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 | |||
182 | function 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 | } | ||
197 | function 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 | } | ||
210 | function 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 | ||
225 | function 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') | ||
283 | function 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 | |||
306 | function 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 | |||
313 | function 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 | |||
321 | function 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 | |||
348 | function debug($msg) { | ||
349 | global $debug_mode; | ||
350 | if ($debug_mode) { | ||
351 | echo '* ',$msg,"\n"; | ||
352 | ob_flush(); | ||
353 | flush(); | ||
354 | } | ||
355 | } | ||
@@ -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 @@ | |||
4 | msgid "" | 4 | msgid "" |
5 | msgstr "" | 5 | msgstr "" |
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 | |||
22 | msgid "wallabag, a read it later open source system" | ||
23 | msgstr "" | ||
24 | |||
25 | msgid "login failed: user doesn't exist" | ||
26 | msgstr "" | ||
27 | |||
28 | msgid "return home" | ||
29 | msgstr "" | ||
18 | 30 | ||
19 | msgid "config" | 31 | msgid "config" |
20 | msgstr "nastavení" | 32 | msgstr "nastavení" |
21 | 33 | ||
22 | msgid "Poching a link" | 34 | msgid "Saving articles" |
23 | msgstr "Odkaz se ukládá" | 35 | msgstr "" |
36 | |||
37 | msgid "There are several ways to save an article:" | ||
38 | msgstr "" | ||
24 | 39 | ||
25 | msgid "read the documentation" | 40 | msgid "read the documentation" |
26 | msgstr "číst dokumentaci" | 41 | msgstr "číst dokumentaci" |
27 | 42 | ||
28 | msgid "by filling this field" | 43 | msgid "download the extension" |
44 | msgstr "" | ||
45 | |||
46 | msgid "via F-Droid" | ||
47 | msgstr "" | ||
48 | |||
49 | msgid " or " | ||
50 | msgstr "" | ||
51 | |||
52 | msgid "via Google Play" | ||
53 | msgstr "" | ||
54 | |||
55 | msgid "download the application" | ||
56 | msgstr "" | ||
57 | |||
58 | #, fuzzy | ||
59 | msgid "By filling this field" | ||
29 | msgstr "vyplněním tohoto pole" | 60 | msgstr "vyplněním tohoto pole" |
30 | 61 | ||
31 | msgid "poche it!" | 62 | msgid "bag it!" |
32 | msgstr "uložit!" | 63 | msgstr "" |
33 | 64 | ||
34 | msgid "Updating poche" | 65 | msgid "Bookmarklet: drag & drop this link to your bookmarks bar" |
35 | msgstr "Poche se aktualizuje" | 66 | msgstr "" |
36 | 67 | ||
37 | msgid "your version" | 68 | msgid "Upgrading wallabag" |
38 | msgstr "vaše verze" | 69 | msgstr "" |
39 | 70 | ||
40 | msgid "latest stable version" | 71 | #, fuzzy |
72 | msgid "Installed version" | ||
41 | msgstr "poslední stabilní verze" | 73 | msgstr "poslední stabilní verze" |
42 | 74 | ||
43 | msgid "a more recent stable version is available." | 75 | #, fuzzy |
76 | msgid "Latest stable version" | ||
77 | msgstr "poslední stabilní verze" | ||
78 | |||
79 | #, fuzzy | ||
80 | msgid "A more recent stable version is available." | ||
44 | msgstr "je k dispozici novější stabilní verze." | 81 | msgstr "je k dispozici novější stabilní verze." |
45 | 82 | ||
46 | msgid "you are up to date." | 83 | #, fuzzy |
84 | msgid "You are up to date." | ||
47 | msgstr "je aktuální" | 85 | msgstr "je aktuální" |
48 | 86 | ||
49 | msgid "latest dev version" | 87 | #, fuzzy |
88 | msgid "Latest dev version" | ||
50 | msgstr "poslední vývojová verze" | 89 | msgstr "poslední vývojová verze" |
51 | 90 | ||
52 | msgid "a more recent development version is available." | 91 | #, fuzzy |
92 | msgid "A more recent development version is available." | ||
53 | msgstr "je k dispozici novější vývojová verze." | 93 | msgstr "je k dispozici novější vývojová verze." |
54 | 94 | ||
95 | msgid "Feeds" | ||
96 | msgstr "" | ||
97 | |||
98 | msgid "Your feed token is currently empty and must first be generated to enable feeds. Click <a href='?feed&action=generate'>here to generate it</a>." | ||
99 | msgstr "" | ||
100 | |||
101 | msgid "Unread feed" | ||
102 | msgstr "" | ||
103 | |||
104 | #, fuzzy | ||
105 | msgid "Favorites feed" | ||
106 | msgstr "oblíbené" | ||
107 | |||
108 | #, fuzzy | ||
109 | msgid "Archive feed" | ||
110 | msgstr "archív" | ||
111 | |||
112 | msgid "Your token:" | ||
113 | msgstr "" | ||
114 | |||
115 | msgid "Your user id:" | ||
116 | msgstr "" | ||
117 | |||
118 | msgid "You can regenerate your token: <a href='?feed&action=generate'>generate!</a>." | ||
119 | msgstr "" | ||
120 | |||
121 | #, fuzzy | ||
122 | msgid "Change your theme" | ||
123 | msgstr "Změnit heslo" | ||
124 | |||
125 | msgid "Theme:" | ||
126 | msgstr "" | ||
127 | |||
128 | msgid "Update" | ||
129 | msgstr "Aktualizovat" | ||
130 | |||
131 | #, fuzzy | ||
132 | msgid "Change your language" | ||
133 | msgstr "Změnit heslo" | ||
134 | |||
135 | msgid "Language:" | ||
136 | msgstr "" | ||
137 | |||
55 | msgid "Change your password" | 138 | msgid "Change your password" |
56 | msgstr "Změnit heslo" | 139 | msgstr "Změnit heslo" |
57 | 140 | ||
@@ -64,65 +147,68 @@ msgstr "Heslo" | |||
64 | msgid "Repeat your new password:" | 147 | msgid "Repeat your new password:" |
65 | msgstr "Znovu nové heslo:" | 148 | msgstr "Znovu nové heslo:" |
66 | 149 | ||
67 | msgid "Update" | ||
68 | msgstr "Aktualizovat" | ||
69 | |||
70 | msgid "Import" | 150 | msgid "Import" |
71 | msgstr "Importovat" | 151 | msgstr "Importovat" |
72 | 152 | ||
73 | msgid "Please execute the import script locally, it can take a very long time." | 153 | #, fuzzy |
154 | msgid "Please execute the import script locally as it can take a very long time." | ||
74 | msgstr "Spusťte importní skript lokálně, může to dlouho trvat." | 155 | msgstr "Spusťte importní skript lokálně, může to dlouho trvat." |
75 | 156 | ||
76 | msgid "More info in the official doc:" | 157 | #, fuzzy |
158 | msgid "More info in the official documentation:" | ||
77 | msgstr "Více informací v oficiální dokumentaci:" | 159 | msgstr "Více informací v oficiální dokumentaci:" |
78 | 160 | ||
79 | msgid "import from Pocket" | 161 | #, fuzzy |
162 | msgid "Import from Pocket" | ||
80 | msgstr "importovat z Pocket" | 163 | msgstr "importovat z Pocket" |
81 | 164 | ||
82 | msgid "import from Readability" | 165 | #, php-format |
166 | msgid "(you must have a %s file on your server)" | ||
167 | msgstr "" | ||
168 | |||
169 | #, fuzzy | ||
170 | msgid "Import from Readability" | ||
83 | msgstr "importovat z Readability" | 171 | msgstr "importovat z Readability" |
84 | 172 | ||
85 | msgid "import from Instapaper" | 173 | #, fuzzy |
174 | msgid "Import from Instapaper" | ||
86 | msgstr "importovat z Instapaper" | 175 | msgstr "importovat z Instapaper" |
87 | 176 | ||
88 | msgid "Export your poche data" | 177 | #, fuzzy |
178 | msgid "Import from wallabag" | ||
179 | msgstr "importovat z Readability" | ||
180 | |||
181 | #, fuzzy | ||
182 | msgid "Export your wallabag data" | ||
89 | msgstr "Export dat" | 183 | msgstr "Export dat" |
90 | 184 | ||
91 | msgid "Click here" | 185 | msgid "Click here" |
92 | msgstr "Klikněte zde" | 186 | msgstr "Klikněte zde" |
93 | 187 | ||
94 | msgid "to export your poche data." | 188 | msgid "to download your database." |
95 | msgstr "pro export vašich dat." | 189 | msgstr "" |
96 | |||
97 | msgid "back to home" | ||
98 | msgstr "zpět na úvod" | ||
99 | 190 | ||
100 | msgid "installation" | 191 | #, fuzzy |
101 | msgstr "instalace" | 192 | msgid "to export your wallabag data." |
193 | msgstr "pro export vašich dat." | ||
102 | 194 | ||
103 | msgid "install your poche" | 195 | msgid "Cache" |
104 | msgstr "instalovat" | 196 | msgstr "" |
105 | 197 | ||
106 | msgid "" | 198 | msgid "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>." | ||
110 | msgstr "" | 199 | msgstr "" |
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 | ||
115 | msgid "Login" | 201 | msgid "You can enter multiple tags, separated by commas." |
116 | msgstr "Jméno" | 202 | msgstr "" |
117 | 203 | ||
118 | msgid "Repeat your password" | 204 | msgid "return to article" |
119 | msgstr "Zopakujte heslo" | 205 | msgstr "" |
120 | 206 | ||
121 | msgid "Install" | 207 | msgid "plop" |
122 | msgstr "Instalovat" | 208 | msgstr "" |
123 | 209 | ||
124 | msgid "back to top" | 210 | msgid "You can <a href='wallabag_compatibility_test.php'>check your configuration here</a>." |
125 | msgstr "zpět na začátek" | 211 | msgstr "" |
126 | 212 | ||
127 | msgid "favoris" | 213 | msgid "favoris" |
128 | msgstr "oblíbené" | 214 | msgstr "oblíbené" |
@@ -151,10 +237,14 @@ msgstr "podle nadpisu" | |||
151 | msgid "by title desc" | 237 | msgid "by title desc" |
152 | msgstr "podle nadpisu sestupně" | 238 | msgstr "podle nadpisu sestupně" |
153 | 239 | ||
154 | msgid "No link available here!" | 240 | msgid "Tag" |
155 | msgstr "Není k dispozici žádný odkaz!" | 241 | msgstr "" |
156 | 242 | ||
157 | msgid "toggle mark as read" | 243 | msgid "No articles found." |
244 | msgstr "" | ||
245 | |||
246 | #, fuzzy | ||
247 | msgid "Toggle mark as read" | ||
158 | msgstr "označit jako přečtené" | 248 | msgstr "označit jako přečtené" |
159 | 249 | ||
160 | msgid "toggle favorite" | 250 | msgid "toggle favorite" |
@@ -166,13 +256,95 @@ msgstr "smazat" | |||
166 | msgid "original" | 256 | msgid "original" |
167 | msgstr "originál" | 257 | msgstr "originál" |
168 | 258 | ||
259 | msgid "estimated reading time:" | ||
260 | msgstr "" | ||
261 | |||
262 | msgid "mark all the entries as read" | ||
263 | msgstr "" | ||
264 | |||
169 | msgid "results" | 265 | msgid "results" |
170 | msgstr "výsledky" | 266 | msgstr "výsledky" |
171 | 267 | ||
172 | msgid "tweet" | 268 | msgid "installation" |
269 | msgstr "instalace" | ||
270 | |||
271 | #, fuzzy | ||
272 | msgid "install your wallabag" | ||
273 | msgstr "instalovat" | ||
274 | |||
275 | #, fuzzy | ||
276 | msgid "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>." | ||
277 | msgstr "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 | |||
279 | msgid "Login" | ||
280 | msgstr "Jméno" | ||
281 | |||
282 | msgid "Repeat your password" | ||
283 | msgstr "Zopakujte heslo" | ||
284 | |||
285 | msgid "Install" | ||
286 | msgstr "Instalovat" | ||
287 | |||
288 | #, fuzzy | ||
289 | msgid "login to your wallabag" | ||
290 | msgstr "přihlásit se k poche" | ||
291 | |||
292 | msgid "Login to wallabag" | ||
293 | msgstr "" | ||
294 | |||
295 | msgid "you are in demo mode, some features may be disabled." | ||
296 | msgstr "používáte ukázkový mód, některé funkce jsou zakázány." | ||
297 | |||
298 | msgid "Username" | ||
299 | msgstr "" | ||
300 | |||
301 | msgid "Stay signed in" | ||
302 | msgstr "Zůstat přihlášen(a)" | ||
303 | |||
304 | msgid "(Do not check on public computers)" | ||
305 | msgstr "(Nezaškrtávejte na veřejně dostupných počítačích)" | ||
306 | |||
307 | msgid "Sign in" | ||
308 | msgstr "Přihlásit se" | ||
309 | |||
310 | msgid "favorites" | ||
311 | msgstr "oblíbené" | ||
312 | |||
313 | msgid "estimated reading time :" | ||
314 | msgstr "" | ||
315 | |||
316 | msgid "Mark all the entries as read" | ||
317 | msgstr "" | ||
318 | |||
319 | msgid "Return home" | ||
320 | msgstr "" | ||
321 | |||
322 | #, fuzzy | ||
323 | msgid "Back to top" | ||
324 | msgstr "zpět na začátek" | ||
325 | |||
326 | #, fuzzy | ||
327 | msgid "Mark as read" | ||
328 | msgstr "označit jako přečtené" | ||
329 | |||
330 | #, fuzzy | ||
331 | msgid "Favorite" | ||
332 | msgstr "oblíbené" | ||
333 | |||
334 | #, fuzzy | ||
335 | msgid "Toggle favorite" | ||
336 | msgstr "označit jako oblíbené" | ||
337 | |||
338 | #, fuzzy | ||
339 | msgid "Delete" | ||
340 | msgstr "smazat" | ||
341 | |||
342 | #, fuzzy | ||
343 | msgid "Tweet" | ||
173 | msgstr "tweetnout" | 344 | msgstr "tweetnout" |
174 | 345 | ||
175 | msgid "email" | 346 | #, fuzzy |
347 | msgid "Email" | ||
176 | msgstr "email" | 348 | msgstr "email" |
177 | 349 | ||
178 | msgid "shaarli" | 350 | msgid "shaarli" |
@@ -181,26 +353,24 @@ msgstr "shaarli" | |||
181 | msgid "flattr" | 353 | msgid "flattr" |
182 | msgstr "flattr" | 354 | msgstr "flattr" |
183 | 355 | ||
184 | msgid "this article appears wrong?" | 356 | #, fuzzy |
357 | msgid "Does this article appear wrong?" | ||
185 | msgstr "vypadá tento článek špatně?" | 358 | msgstr "vypadá tento článek špatně?" |
186 | 359 | ||
187 | msgid "create an issue" | 360 | msgid "tags:" |
188 | msgstr "odeslat požadavek" | 361 | msgstr "" |
189 | |||
190 | msgid "or" | ||
191 | msgstr "nebo" | ||
192 | 362 | ||
193 | msgid "contact us by mail" | 363 | msgid "Edit tags" |
194 | msgstr "kontaktovat e-mailem" | 364 | msgstr "" |
195 | 365 | ||
196 | msgid "plop" | 366 | msgid "save link!" |
197 | msgstr "" | 367 | msgstr "" |
198 | 368 | ||
199 | msgid "home" | 369 | msgid "home" |
200 | msgstr "domů" | 370 | msgstr "domů" |
201 | 371 | ||
202 | msgid "favorites" | 372 | msgid "tags" |
203 | msgstr "oblíbené" | 373 | msgstr "" |
204 | 374 | ||
205 | msgid "logout" | 375 | msgid "logout" |
206 | msgstr "odhlásit se" | 376 | msgstr "odhlásit se" |
@@ -211,23 +381,187 @@ msgstr "běží na" | |||
211 | msgid "debug mode is on so cache is off." | 381 | msgid "debug mode is on so cache is off." |
212 | msgstr "je zapnut ladicí mód, proto je keš vypnuta." | 382 | msgstr "je zapnut ladicí mód, proto je keš vypnuta." |
213 | 383 | ||
214 | msgid "your poche version:" | 384 | #, fuzzy |
215 | msgstr "verze:" | 385 | msgid "your wallabag version:" |
386 | msgstr "vaše verze" | ||
216 | 387 | ||
217 | msgid "storage:" | 388 | msgid "storage:" |
218 | msgstr "úložiště:" | 389 | msgstr "úložiště:" |
219 | 390 | ||
220 | msgid "login to your poche" | 391 | msgid "save a link" |
221 | msgstr "přihlásit se k poche" | 392 | msgstr "" |
222 | 393 | ||
223 | msgid "you are in demo mode, some features may be disabled." | 394 | msgid "back to home" |
224 | msgstr "používáte ukázkový mód, některé funkce jsou zakzány." | 395 | msgstr "zpět na vod" |
225 | 396 | ||
226 | msgid "Stay signed in" | 397 | msgid "toggle mark as read" |
227 | msgstr "Zůstat přihlášen(a)" | 398 | msgstr "označit jako přečtené" |
228 | 399 | ||
229 | msgid "(Do not check on public computers)" | 400 | msgid "tweet" |
230 | msgstr "(Nezaškrtávejte na veřejně dostupných počítačích)" | 401 | msgstr "tweetnout" |
231 | 402 | ||
232 | msgid "Sign in" | 403 | msgid "email" |
233 | msgstr "Přihlásit se" | 404 | msgstr "email" |
405 | |||
406 | msgid "this article appears wrong?" | ||
407 | msgstr "vypadá tento článek špatně?" | ||
408 | |||
409 | msgid "No link available here!" | ||
410 | msgstr "Není k dispozici žádný odkaz!" | ||
411 | |||
412 | msgid "Poching a link" | ||
413 | msgstr "Odkaz se ukládá" | ||
414 | |||
415 | msgid "by filling this field" | ||
416 | msgstr "vyplněním tohoto pole" | ||
417 | |||
418 | msgid "bookmarklet: drag & drop this link to your bookmarks bar" | ||
419 | msgstr "" | ||
420 | |||
421 | msgid "your version" | ||
422 | msgstr "vaše verze" | ||
423 | |||
424 | msgid "latest stable version" | ||
425 | msgstr "poslední stabilní verze" | ||
426 | |||
427 | msgid "a more recent stable version is available." | ||
428 | msgstr "je k dispozici novější stabilní verze." | ||
429 | |||
430 | msgid "you are up to date." | ||
431 | msgstr "je aktuální" | ||
432 | |||
433 | msgid "latest dev version" | ||
434 | msgstr "poslední vývojová verze" | ||
435 | |||
436 | msgid "a more recent development version is available." | ||
437 | msgstr "je k dispozici novější vývojová verze." | ||
438 | |||
439 | msgid "Please execute the import script locally, it can take a very long time." | ||
440 | msgstr "Spusťte importní skript lokálně, může to dlouho trvat." | ||
441 | |||
442 | #, fuzzy | ||
443 | msgid "More infos in the official doc:" | ||
444 | msgstr "Více informací v oficiální dokumentaci:" | ||
445 | |||
446 | msgid "import from Pocket" | ||
447 | msgstr "importovat z Pocket" | ||
448 | |||
449 | msgid "import from Readability" | ||
450 | msgstr "importovat z Readability" | ||
451 | |||
452 | msgid "import from Instapaper" | ||
453 | msgstr "importovat z Instapaper" | ||
454 | |||
455 | msgid "Tags" | ||
456 | msgstr "" | ||
457 | |||
458 | #, fuzzy | ||
459 | msgid "Untitled" | ||
460 | msgstr "podle nadpisu" | ||
461 | |||
462 | msgid "the link has been added successfully" | ||
463 | msgstr "" | ||
464 | |||
465 | msgid "error during insertion : the link wasn't added" | ||
466 | msgstr "" | ||
467 | |||
468 | msgid "the link has been deleted successfully" | ||
469 | msgstr "" | ||
470 | |||
471 | msgid "the link wasn't deleted" | ||
472 | msgstr "" | ||
473 | |||
474 | msgid "Article not found!" | ||
475 | msgstr "" | ||
476 | |||
477 | msgid "previous" | ||
478 | msgstr "" | ||
479 | |||
480 | msgid "next" | ||
481 | msgstr "" | ||
482 | |||
483 | msgid "in demo mode, you can't update your password" | ||
484 | msgstr "" | ||
485 | |||
486 | msgid "your password has been updated" | ||
487 | msgstr "" | ||
488 | |||
489 | msgid "the two fields have to be filled & the password must be the same in the two fields" | ||
490 | msgstr "" | ||
491 | |||
492 | msgid "still using the \"" | ||
493 | msgstr "" | ||
494 | |||
495 | msgid "that theme does not seem to be installed" | ||
496 | msgstr "" | ||
497 | |||
498 | msgid "you have changed your theme preferences" | ||
499 | msgstr "" | ||
500 | |||
501 | msgid "that language does not seem to be installed" | ||
502 | msgstr "" | ||
503 | |||
504 | msgid "you have changed your language preferences" | ||
505 | msgstr "" | ||
506 | |||
507 | msgid "login failed: you have to fill all fields" | ||
508 | msgstr "" | ||
509 | |||
510 | msgid "welcome to your wallabag" | ||
511 | msgstr "" | ||
512 | |||
513 | msgid "login failed: bad login or password" | ||
514 | msgstr "" | ||
515 | |||
516 | #, fuzzy | ||
517 | msgid "import from instapaper completed" | ||
518 | msgstr "importovat z Instapaper" | ||
519 | |||
520 | #, fuzzy | ||
521 | msgid "import from pocket completed" | ||
522 | msgstr "importovat z Pocket" | ||
523 | |||
524 | #, fuzzy | ||
525 | msgid "import from Readability completed. " | ||
526 | msgstr "importovat z Readability" | ||
527 | |||
528 | #, fuzzy | ||
529 | msgid "import from Poche completed. " | ||
530 | msgstr "importovat z Pocket" | ||
531 | |||
532 | msgid "Unknown import provider." | ||
533 | msgstr "" | ||
534 | |||
535 | msgid "Incomplete inc/poche/define.inc.php file, please define \"" | ||
536 | msgstr "" | ||
537 | |||
538 | msgid "Could not find required \"" | ||
539 | msgstr "" | ||
540 | |||
541 | msgid "Uh, there is a problem while generating feeds." | ||
542 | msgstr "" | ||
543 | |||
544 | #, fuzzy | ||
545 | msgid "Cache deleted." | ||
546 | msgstr "smazat" | ||
547 | |||
548 | msgid "Oops, it seems you don't have PHP 5." | ||
549 | msgstr "" | ||
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 @@ | |||
1 | msgid "" | 1 | msgid "" |
2 | msgstr "" | 2 | msgstr "" |
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 | |||
18 | msgid "wallabag, a read it later open source system" | ||
19 | msgstr "" | ||
20 | |||
21 | msgid "login failed: user doesn't exist" | ||
22 | msgstr "" | ||
23 | |||
24 | msgid "return home" | ||
25 | msgstr "" | ||
12 | 26 | ||
13 | msgid "config" | 27 | msgid "config" |
14 | msgstr "Konfiguration" | 28 | msgstr "Konfiguration" |
15 | 29 | ||
16 | msgid "Poching a link" | 30 | msgid "Saving articles" |
17 | msgstr "Poche einen Link" | 31 | msgstr "" |
32 | |||
33 | msgid "There are several ways to save an article:" | ||
34 | msgstr "" | ||
18 | 35 | ||
19 | msgid "read the documentation" | 36 | msgid "read the documentation" |
20 | msgstr "Die Dokumentation lesen" | 37 | msgstr "Die Dokumentation lesen" |
21 | 38 | ||
22 | msgid "by filling this field" | 39 | msgid "download the extension" |
40 | msgstr "" | ||
41 | |||
42 | msgid "via F-Droid" | ||
43 | msgstr "" | ||
44 | |||
45 | msgid " or " | ||
46 | msgstr "" | ||
47 | |||
48 | msgid "via Google Play" | ||
49 | msgstr "" | ||
50 | |||
51 | msgid "download the application" | ||
52 | msgstr "" | ||
53 | |||
54 | #, fuzzy | ||
55 | msgid "By filling this field" | ||
23 | msgstr "durch das ausfüllen dieses Feldes:" | 56 | msgstr "durch das ausfüllen dieses Feldes:" |
24 | 57 | ||
25 | msgid "poche it!" | 58 | msgid "bag it!" |
26 | msgstr "Poche es!" | 59 | msgstr "" |
27 | 60 | ||
28 | msgid "Updating poche" | 61 | msgid "Bookmarklet: drag & drop this link to your bookmarks bar" |
29 | msgstr "Poche aktualisieren" | 62 | msgstr "" |
30 | 63 | ||
31 | msgid "your version" | 64 | msgid "Upgrading wallabag" |
32 | msgstr "Deine Version" | 65 | msgstr "" |
33 | 66 | ||
34 | msgid "latest stable version" | 67 | #, fuzzy |
68 | msgid "Installed version" | ||
35 | msgstr "Neuste stabile Version" | 69 | msgstr "Neuste stabile Version" |
36 | 70 | ||
37 | msgid "a more recent stable version is available." | 71 | #, fuzzy |
72 | msgid "Latest stable version" | ||
73 | msgstr "Neuste stabile Version" | ||
74 | |||
75 | #, fuzzy | ||
76 | msgid "A more recent stable version is available." | ||
38 | msgstr "Eine neuere stabile Version ist verfügbar." | 77 | msgstr "Eine neuere stabile Version ist verfügbar." |
39 | 78 | ||
40 | msgid "you are up to date." | 79 | #, fuzzy |
80 | msgid "You are up to date." | ||
41 | msgstr "Du bist auf den neuesten Stand." | 81 | msgstr "Du bist auf den neuesten Stand." |
42 | 82 | ||
43 | msgid "latest dev version" | 83 | #, fuzzy |
84 | msgid "Latest dev version" | ||
44 | msgstr "Neuste Entwicklungsversion" | 85 | msgstr "Neuste Entwicklungsversion" |
45 | 86 | ||
46 | msgid "a more recent development version is available." | 87 | #, fuzzy |
88 | msgid "A more recent development version is available." | ||
47 | msgstr "Eine neuere Entwicklungsversion ist verfügbar." | 89 | msgstr "Eine neuere Entwicklungsversion ist verfügbar." |
48 | 90 | ||
91 | msgid "Feeds" | ||
92 | msgstr "" | ||
93 | |||
94 | msgid "Your feed token is currently empty and must first be generated to enable feeds. Click <a href='?feed&action=generate'>here to generate it</a>." | ||
95 | msgstr "" | ||
96 | |||
97 | msgid "Unread feed" | ||
98 | msgstr "" | ||
99 | |||
100 | #, fuzzy | ||
101 | msgid "Favorites feed" | ||
102 | msgstr "Favoriten" | ||
103 | |||
104 | #, fuzzy | ||
105 | msgid "Archive feed" | ||
106 | msgstr "Archiv" | ||
107 | |||
108 | msgid "Your token:" | ||
109 | msgstr "" | ||
110 | |||
111 | msgid "Your user id:" | ||
112 | msgstr "" | ||
113 | |||
114 | msgid "You can regenerate your token: <a href='?feed&action=generate'>generate!</a>." | ||
115 | msgstr "" | ||
116 | |||
117 | #, fuzzy | ||
118 | msgid "Change your theme" | ||
119 | msgstr "Passwort ändern" | ||
120 | |||
121 | msgid "Theme:" | ||
122 | msgstr "" | ||
123 | |||
124 | msgid "Update" | ||
125 | msgstr "Aktualisieren" | ||
126 | |||
127 | #, fuzzy | ||
128 | msgid "Change your language" | ||
129 | msgstr "Passwort ändern" | ||
130 | |||
131 | msgid "Language:" | ||
132 | msgstr "" | ||
133 | |||
49 | msgid "Change your password" | 134 | msgid "Change your password" |
50 | msgstr "Passwort ändern" | 135 | msgstr "Passwort ändern" |
51 | 136 | ||
@@ -58,66 +143,68 @@ msgstr "Passwort" | |||
58 | msgid "Repeat your new password:" | 143 | msgid "Repeat your new password:" |
59 | msgstr "Neues Passwort wiederholen:" | 144 | msgstr "Neues Passwort wiederholen:" |
60 | 145 | ||
61 | msgid "Update" | ||
62 | msgstr "Aktualisieren" | ||
63 | |||
64 | msgid "Import" | 146 | msgid "Import" |
65 | msgstr "Import" | 147 | msgstr "Import" |
66 | 148 | ||
67 | msgid "Please execute the import script locally, it can take a very long time." | 149 | #, fuzzy |
150 | msgid "Please execute the import script locally as it can take a very long time." | ||
68 | msgstr "Bitte führe das Import Script lokal aus, dies kann eine Weile dauern." | 151 | msgstr "Bitte führe das Import Script lokal aus, dies kann eine Weile dauern." |
69 | 152 | ||
70 | msgid "More info in the official doc:" | 153 | #, fuzzy |
154 | msgid "More info in the official documentation:" | ||
71 | msgstr "Mehr Informationen in der offiziellen Dokumentation:" | 155 | msgstr "Mehr Informationen in der offiziellen Dokumentation:" |
72 | 156 | ||
73 | msgid "import from Pocket" | 157 | #, fuzzy |
158 | msgid "Import from Pocket" | ||
74 | msgstr "Import aus Pocket" | 159 | msgstr "Import aus Pocket" |
75 | 160 | ||
76 | msgid "import from Readability" | 161 | #, php-format |
162 | msgid "(you must have a %s file on your server)" | ||
163 | msgstr "" | ||
164 | |||
165 | #, fuzzy | ||
166 | msgid "Import from Readability" | ||
77 | msgstr "Import aus Readability" | 167 | msgstr "Import aus Readability" |
78 | 168 | ||
79 | msgid "import from Instapaper" | 169 | #, fuzzy |
170 | msgid "Import from Instapaper" | ||
80 | msgstr "Import aus Instapaper" | 171 | msgstr "Import aus Instapaper" |
81 | 172 | ||
82 | msgid "Export your poche data" | 173 | #, fuzzy |
174 | msgid "Import from wallabag" | ||
175 | msgstr "Import aus Readability" | ||
176 | |||
177 | #, fuzzy | ||
178 | msgid "Export your wallabag data" | ||
83 | msgstr "Exportieren Sie Ihre Poche Daten." | 179 | msgstr "Exportieren Sie Ihre Poche Daten." |
84 | 180 | ||
85 | msgid "Click here" | 181 | msgid "Click here" |
86 | msgstr "Klicke hier" | 182 | msgstr "Klicke hier" |
87 | 183 | ||
88 | msgid "to export your poche data." | 184 | msgid "to download your database." |
89 | msgstr "um deine Daten aus Poche zu exportieren." | 185 | msgstr "" |
90 | |||
91 | msgid "back to home" | ||
92 | msgstr "züruck zur Hauptseite" | ||
93 | 186 | ||
94 | msgid "installation" | 187 | #, fuzzy |
95 | msgstr "Installieren" | 188 | msgid "to export your wallabag data." |
189 | msgstr "um deine Daten aus Poche zu exportieren." | ||
96 | 190 | ||
97 | msgid "install your poche" | 191 | msgid "Cache" |
98 | msgstr "Installiere dein Poche" | 192 | msgstr "" |
99 | 193 | ||
100 | msgid "" | 194 | msgid "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>." | ||
104 | msgstr "" | 195 | msgstr "" |
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 | ||
110 | msgid "Login" | 197 | msgid "You can enter multiple tags, separated by commas." |
111 | msgstr "Benutzername" | 198 | msgstr "" |
112 | 199 | ||
113 | msgid "Repeat your password" | 200 | msgid "return to article" |
114 | msgstr "Wiederhole dein Passwort" | 201 | msgstr "" |
115 | 202 | ||
116 | msgid "Install" | 203 | msgid "plop" |
117 | msgstr "Installieren" | 204 | msgstr "plop" |
118 | 205 | ||
119 | msgid "back to top" | 206 | msgid "You can <a href='wallabag_compatibility_test.php'>check your configuration here</a>." |
120 | msgstr "Nach Oben" | 207 | msgstr "" |
121 | 208 | ||
122 | msgid "favoris" | 209 | msgid "favoris" |
123 | msgstr "" | 210 | msgstr "" |
@@ -146,10 +233,14 @@ msgstr "nach Titel" | |||
146 | msgid "by title desc" | 233 | msgid "by title desc" |
147 | msgstr "nach Titel absteigend" | 234 | msgstr "nach Titel absteigend" |
148 | 235 | ||
149 | msgid "No link available here!" | 236 | msgid "Tag" |
150 | msgstr "Kein Link verfügbar!" | 237 | msgstr "" |
151 | 238 | ||
152 | msgid "toggle mark as read" | 239 | msgid "No articles found." |
240 | msgstr "" | ||
241 | |||
242 | #, fuzzy | ||
243 | msgid "Toggle mark as read" | ||
153 | msgstr "Als gelesen markieren" | 244 | msgstr "Als gelesen markieren" |
154 | 245 | ||
155 | msgid "toggle favorite" | 246 | msgid "toggle favorite" |
@@ -161,13 +252,95 @@ msgstr "Löschen" | |||
161 | msgid "original" | 252 | msgid "original" |
162 | msgstr "Original" | 253 | msgstr "Original" |
163 | 254 | ||
255 | msgid "estimated reading time:" | ||
256 | msgstr "" | ||
257 | |||
258 | msgid "mark all the entries as read" | ||
259 | msgstr "" | ||
260 | |||
164 | msgid "results" | 261 | msgid "results" |
165 | msgstr "Ergebnisse" | 262 | msgstr "Ergebnisse" |
166 | 263 | ||
167 | msgid "tweet" | 264 | msgid "installation" |
265 | msgstr "Installieren" | ||
266 | |||
267 | #, fuzzy | ||
268 | msgid "install your wallabag" | ||
269 | msgstr "Installiere dein Poche" | ||
270 | |||
271 | #, fuzzy | ||
272 | msgid "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>." | ||
273 | msgstr "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 | |||
275 | msgid "Login" | ||
276 | msgstr "Benutzername" | ||
277 | |||
278 | msgid "Repeat your password" | ||
279 | msgstr "Wiederhole dein Passwort" | ||
280 | |||
281 | msgid "Install" | ||
282 | msgstr "Installieren" | ||
283 | |||
284 | #, fuzzy | ||
285 | msgid "login to your wallabag" | ||
286 | msgstr "Bei Poche anmelden" | ||
287 | |||
288 | msgid "Login to wallabag" | ||
289 | msgstr "" | ||
290 | |||
291 | msgid "you are in demo mode, some features may be disabled." | ||
292 | msgstr "Du befindest dich im Demomodus, einige Funktionen könnten deaktiviert sein." | ||
293 | |||
294 | msgid "Username" | ||
295 | msgstr "" | ||
296 | |||
297 | msgid "Stay signed in" | ||
298 | msgstr "Angemeldet bleiben" | ||
299 | |||
300 | msgid "(Do not check on public computers)" | ||
301 | msgstr "(nicht auf einem öffentlichen Computer anhaken)" | ||
302 | |||
303 | msgid "Sign in" | ||
304 | msgstr "Einloggen" | ||
305 | |||
306 | msgid "favorites" | ||
307 | msgstr "Favoriten" | ||
308 | |||
309 | msgid "estimated reading time :" | ||
310 | msgstr "" | ||
311 | |||
312 | msgid "Mark all the entries as read" | ||
313 | msgstr "" | ||
314 | |||
315 | msgid "Return home" | ||
316 | msgstr "" | ||
317 | |||
318 | #, fuzzy | ||
319 | msgid "Back to top" | ||
320 | msgstr "Nach Oben" | ||
321 | |||
322 | #, fuzzy | ||
323 | msgid "Mark as read" | ||
324 | msgstr "Als gelesen markieren" | ||
325 | |||
326 | #, fuzzy | ||
327 | msgid "Favorite" | ||
328 | msgstr "Favoriten" | ||
329 | |||
330 | #, fuzzy | ||
331 | msgid "Toggle favorite" | ||
332 | msgstr "Favorit" | ||
333 | |||
334 | #, fuzzy | ||
335 | msgid "Delete" | ||
336 | msgstr "Löschen" | ||
337 | |||
338 | #, fuzzy | ||
339 | msgid "Tweet" | ||
168 | msgstr "Twittern" | 340 | msgstr "Twittern" |
169 | 341 | ||
170 | msgid "email" | 342 | #, fuzzy |
343 | msgid "Email" | ||
171 | msgstr "senden per E-Mail" | 344 | msgstr "senden per E-Mail" |
172 | 345 | ||
173 | msgid "shaarli" | 346 | msgid "shaarli" |
@@ -176,26 +349,24 @@ msgstr "Shaarli" | |||
176 | msgid "flattr" | 349 | msgid "flattr" |
177 | msgstr "flattr" | 350 | msgstr "flattr" |
178 | 351 | ||
179 | msgid "this article appears wrong?" | 352 | #, fuzzy |
353 | msgid "Does this article appear wrong?" | ||
180 | msgstr "dieser Artikel erscheint falsch?" | 354 | msgstr "dieser Artikel erscheint falsch?" |
181 | 355 | ||
182 | msgid "create an issue" | 356 | msgid "tags:" |
183 | msgstr "ein Ticket erstellen" | 357 | msgstr "" |
184 | |||
185 | msgid "or" | ||
186 | msgstr "oder" | ||
187 | 358 | ||
188 | msgid "contact us by mail" | 359 | msgid "Edit tags" |
189 | msgstr "kontaktieren Sie uns per E-Mail" | 360 | msgstr "" |
190 | 361 | ||
191 | msgid "plop" | 362 | msgid "save link!" |
192 | msgstr "plop" | 363 | msgstr "" |
193 | 364 | ||
194 | msgid "home" | 365 | msgid "home" |
195 | msgstr "Start" | 366 | msgstr "Start" |
196 | 367 | ||
197 | msgid "favorites" | 368 | msgid "tags" |
198 | msgstr "Favoriten" | 369 | msgstr "" |
199 | 370 | ||
200 | msgid "logout" | 371 | msgid "logout" |
201 | msgstr "Logout" | 372 | msgstr "Logout" |
@@ -206,24 +377,187 @@ msgstr "bereitgestellt von" | |||
206 | msgid "debug mode is on so cache is off." | 377 | msgid "debug mode is on so cache is off." |
207 | msgstr "Debug Modus ist aktiviert, das Caching ist somit deaktiviert" | 378 | msgstr "Debug Modus ist aktiviert, das Caching ist somit deaktiviert" |
208 | 379 | ||
209 | msgid "your poche version:" | 380 | #, fuzzy |
210 | msgstr "Deine Poche Version" | 381 | msgid "your wallabag version:" |
382 | msgstr "Deine Version" | ||
211 | 383 | ||
212 | msgid "storage:" | 384 | msgid "storage:" |
213 | msgstr "Speicher:" | 385 | msgstr "Speicher:" |
214 | 386 | ||
215 | msgid "login to your poche" | 387 | msgid "save a link" |
216 | msgstr "Bei Poche anmelden" | 388 | msgstr "" |
217 | 389 | ||
218 | msgid "you are in demo mode, some features may be disabled." | 390 | msgid "back to home" |
391 | msgstr "züruck zur Hauptseite" | ||
392 | |||
393 | msgid "toggle mark as read" | ||
394 | msgstr "Als gelesen markieren" | ||
395 | |||
396 | msgid "tweet" | ||
397 | msgstr "Twittern" | ||
398 | |||
399 | msgid "email" | ||
400 | msgstr "senden per E-Mail" | ||
401 | |||
402 | msgid "this article appears wrong?" | ||
403 | msgstr "dieser Artikel erscheint falsch?" | ||
404 | |||
405 | msgid "No link available here!" | ||
406 | msgstr "Kein Link verfügbar!" | ||
407 | |||
408 | msgid "Poching a link" | ||
409 | msgstr "Poche einen Link" | ||
410 | |||
411 | msgid "by filling this field" | ||
412 | msgstr "durch das ausfüllen dieses Feldes:" | ||
413 | |||
414 | msgid "bookmarklet: drag & drop this link to your bookmarks bar" | ||
219 | msgstr "" | 415 | msgstr "" |
220 | "Du befindest dich im Demomodus, einige Funktionen könnten deaktiviert sein." | ||
221 | 416 | ||
222 | msgid "Stay signed in" | 417 | msgid "your version" |
223 | msgstr "Angemeldet bleiben" | 418 | msgstr "Deine Version" |
224 | 419 | ||
225 | msgid "(Do not check on public computers)" | 420 | msgid "latest stable version" |
226 | msgstr "(nicht auf einem öffentlichen Computer anhaken)" | 421 | msgstr "Neuste stabile Version" |
227 | 422 | ||
228 | msgid "Sign in" | 423 | msgid "a more recent stable version is available." |
229 | msgstr "Einloggen" | 424 | msgstr "Eine neuere stabile Version ist verfügbar." |
425 | |||
426 | msgid "you are up to date." | ||
427 | msgstr "Du bist auf den neuesten Stand." | ||
428 | |||
429 | msgid "latest dev version" | ||
430 | msgstr "Neuste Entwicklungsversion" | ||
431 | |||
432 | msgid "a more recent development version is available." | ||
433 | msgstr "Eine neuere Entwicklungsversion ist verfügbar." | ||
434 | |||
435 | msgid "Please execute the import script locally, it can take a very long time." | ||
436 | msgstr "Bitte führe das Import Script lokal aus, dies kann eine Weile dauern." | ||
437 | |||
438 | #, fuzzy | ||
439 | msgid "More infos in the official doc:" | ||
440 | msgstr "Mehr Informationen in der offiziellen Dokumentation:" | ||
441 | |||
442 | msgid "import from Pocket" | ||
443 | msgstr "Import aus Pocket" | ||
444 | |||
445 | msgid "import from Readability" | ||
446 | msgstr "Import aus Readability" | ||
447 | |||
448 | msgid "import from Instapaper" | ||
449 | msgstr "Import aus Instapaper" | ||
450 | |||
451 | msgid "Tags" | ||
452 | msgstr "" | ||
453 | |||
454 | #, fuzzy | ||
455 | msgid "Untitled" | ||
456 | msgstr "nach Titel" | ||
457 | |||
458 | msgid "the link has been added successfully" | ||
459 | msgstr "" | ||
460 | |||
461 | msgid "error during insertion : the link wasn't added" | ||
462 | msgstr "" | ||
463 | |||
464 | msgid "the link has been deleted successfully" | ||
465 | msgstr "" | ||
466 | |||
467 | msgid "the link wasn't deleted" | ||
468 | msgstr "" | ||
469 | |||
470 | msgid "Article not found!" | ||
471 | msgstr "" | ||
472 | |||
473 | msgid "previous" | ||
474 | msgstr "" | ||
475 | |||
476 | msgid "next" | ||
477 | msgstr "" | ||
478 | |||
479 | msgid "in demo mode, you can't update your password" | ||
480 | msgstr "" | ||
481 | |||
482 | msgid "your password has been updated" | ||
483 | msgstr "" | ||
484 | |||
485 | msgid "the two fields have to be filled & the password must be the same in the two fields" | ||
486 | msgstr "" | ||
487 | |||
488 | msgid "still using the \"" | ||
489 | msgstr "" | ||
490 | |||
491 | msgid "that theme does not seem to be installed" | ||
492 | msgstr "" | ||
493 | |||
494 | msgid "you have changed your theme preferences" | ||
495 | msgstr "" | ||
496 | |||
497 | msgid "that language does not seem to be installed" | ||
498 | msgstr "" | ||
499 | |||
500 | msgid "you have changed your language preferences" | ||
501 | msgstr "" | ||
502 | |||
503 | msgid "login failed: you have to fill all fields" | ||
504 | msgstr "" | ||
505 | |||
506 | msgid "welcome to your wallabag" | ||
507 | msgstr "" | ||
508 | |||
509 | msgid "login failed: bad login or password" | ||
510 | msgstr "" | ||
511 | |||
512 | #, fuzzy | ||
513 | msgid "import from instapaper completed" | ||
514 | msgstr "Import aus Instapaper" | ||
515 | |||
516 | #, fuzzy | ||
517 | msgid "import from pocket completed" | ||
518 | msgstr "Import aus Pocket" | ||
519 | |||
520 | #, fuzzy | ||
521 | msgid "import from Readability completed. " | ||
522 | msgstr "Import aus Readability" | ||
523 | |||
524 | #, fuzzy | ||
525 | msgid "import from Poche completed. " | ||
526 | msgstr "Import aus Pocket" | ||
527 | |||
528 | msgid "Unknown import provider." | ||
529 | msgstr "" | ||
530 | |||
531 | msgid "Incomplete inc/poche/define.inc.php file, please define \"" | ||
532 | msgstr "" | ||
533 | |||
534 | msgid "Could not find required \"" | ||
535 | msgstr "" | ||
536 | |||
537 | msgid "Uh, there is a problem while generating feeds." | ||
538 | msgstr "" | ||
539 | |||
540 | #, fuzzy | ||
541 | msgid "Cache deleted." | ||
542 | msgstr "Löschen" | ||
543 | |||
544 | msgid "Oops, it seems you don't have PHP 5." | ||
545 | msgstr "" | ||
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 @@ | |||
1 | msgid "" | 1 | msgid "" |
2 | msgstr "" | 2 | msgstr "" |
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 | |||
18 | msgid "wallabag, a read it later open source system" | ||
19 | msgstr "wallabag, a read it later open source system" | ||
20 | |||
21 | msgid "login failed: user doesn't exist" | ||
22 | msgstr "login failed: user doesn't exist" | ||
23 | |||
24 | msgid "return home" | ||
25 | msgstr "return home" | ||
12 | 26 | ||
13 | msgid "config" | 27 | msgid "config" |
14 | msgstr "config" | 28 | msgstr "config" |
15 | 29 | ||
16 | msgid "Poching a link" | 30 | msgid "Saving articles" |
17 | msgstr "Poching a link" | 31 | msgstr "Saving articles" |
32 | |||
33 | msgid "There are several ways to save an article:" | ||
34 | msgstr "There are several ways to save an article:" | ||
18 | 35 | ||
19 | msgid "read the documentation" | 36 | msgid "read the documentation" |
20 | msgstr "read the documentation" | 37 | msgstr "read the documentation" |
21 | 38 | ||
22 | msgid "by filling this field" | 39 | msgid "download the extension" |
23 | msgstr "by filling this field" | 40 | msgstr "download the extension" |
24 | 41 | ||
25 | msgid "poche it!" | 42 | msgid "via F-Droid" |
26 | msgstr "poche it!" | 43 | msgstr "via F-Droid" |
27 | 44 | ||
28 | msgid "Updating poche" | 45 | msgid " or " |
29 | msgstr "Updating poche" | 46 | msgstr " or " |
30 | 47 | ||
31 | msgid "your version" | 48 | msgid "via Google Play" |
32 | msgstr "your version" | 49 | msgstr "via Google Play" |
33 | 50 | ||
34 | msgid "latest stable version" | 51 | msgid "download the application" |
35 | msgstr "latest stable version" | 52 | msgstr "download the application" |
36 | 53 | ||
37 | msgid "a more recent stable version is available." | 54 | msgid "By filling this field" |
38 | msgstr "a more recent stable version is available." | 55 | msgstr "By filling this field" |
39 | 56 | ||
40 | msgid "you are up to date." | 57 | msgid "bag it!" |
41 | msgstr "you are up to date." | 58 | msgstr "bag it!" |
42 | 59 | ||
43 | msgid "latest dev version" | 60 | msgid "Bookmarklet: drag & drop this link to your bookmarks bar" |
44 | msgstr "latest dev version" | 61 | msgstr "Bookmarklet: drag & drop this link to your bookmarks bar" |
45 | 62 | ||
46 | msgid "a more recent development version is available." | 63 | msgid "Upgrading wallabag" |
47 | msgstr "a more recent development version is available." | 64 | msgstr "Upgrading wallabag" |
65 | |||
66 | msgid "Installed version" | ||
67 | msgstr "Installed version" | ||
68 | |||
69 | msgid "Latest stable version" | ||
70 | msgstr "Latest stable version" | ||
71 | |||
72 | msgid "A more recent stable version is available." | ||
73 | msgstr "A more recent stable version is available." | ||
74 | |||
75 | msgid "You are up to date." | ||
76 | msgstr "You are up to date." | ||
77 | |||
78 | msgid "Latest dev version" | ||
79 | msgstr "Latest dev version" | ||
80 | |||
81 | msgid "A more recent development version is available." | ||
82 | msgstr "A more recent development version is available." | ||
83 | |||
84 | msgid "Feeds" | ||
85 | msgstr "Feeds" | ||
86 | |||
87 | msgid "Your feed token is currently empty and must first be generated to enable feeds. Click <a href='?feed&action=generate'>here to generate it</a>." | ||
88 | msgstr "Your feed token is currently empty and must first be generated to enable feeds. Click <a href='?feed&action=generate'>here to generate it</a>." | ||
89 | |||
90 | msgid "Unread feed" | ||
91 | msgstr "Unread feed" | ||
92 | |||
93 | msgid "Favorites feed" | ||
94 | msgstr "Favorites feed" | ||
95 | |||
96 | msgid "Archive feed" | ||
97 | msgstr "Archive feed" | ||
98 | |||
99 | msgid "Your token:" | ||
100 | msgstr "Your token:" | ||
101 | |||
102 | msgid "Your user id:" | ||
103 | msgstr "Your user id:" | ||
104 | |||
105 | msgid "You can regenerate your token: <a href='?feed&action=generate'>generate!</a>." | ||
106 | msgstr "You can regenerate your token: <a href='?feed&action=generate'>generate!</a>." | ||
107 | |||
108 | msgid "Change your theme" | ||
109 | msgstr "Change your theme" | ||
110 | |||
111 | msgid "Theme:" | ||
112 | msgstr "Theme:" | ||
113 | |||
114 | msgid "Update" | ||
115 | msgstr "Update" | ||
116 | |||
117 | msgid "Change your language" | ||
118 | msgstr "Change your language" | ||
119 | |||
120 | msgid "Language:" | ||
121 | msgstr "Language:" | ||
48 | 122 | ||
49 | msgid "Change your password" | 123 | msgid "Change your password" |
50 | msgstr "Change your password" | 124 | msgstr "Change your password" |
@@ -58,66 +132,60 @@ msgstr "Password" | |||
58 | msgid "Repeat your new password:" | 132 | msgid "Repeat your new password:" |
59 | msgstr "Repeat your new password:" | 133 | msgstr "Repeat your new password:" |
60 | 134 | ||
61 | msgid "Update" | ||
62 | msgstr "Update" | ||
63 | |||
64 | msgid "Import" | 135 | msgid "Import" |
65 | msgstr "Import" | 136 | msgstr "Import" |
66 | 137 | ||
67 | msgid "Please execute the import script locally, it can take a very long time." | 138 | msgid "Please execute the import script locally as it can take a very long time." |
68 | msgstr "" | 139 | msgstr "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 | ||
71 | msgid "More info in the official doc:" | 141 | msgid "More info in the official documentation:" |
72 | msgstr "More info in the official doc:" | 142 | msgstr "More info in the official documentation:" |
73 | 143 | ||
74 | msgid "import from Pocket" | 144 | msgid "Import from Pocket" |
75 | msgstr "import from Pocket" | 145 | msgstr "Import from Pocket" |
76 | 146 | ||
77 | msgid "import from Readability" | 147 | #, php-format |
78 | msgstr "import from Readability" | 148 | msgid "(you must have a %s file on your server)" |
149 | msgstr "(you must have a %s file on your server)" | ||
79 | 150 | ||
80 | msgid "import from Instapaper" | 151 | msgid "Import from Readability" |
81 | msgstr "import from Instapaper" | 152 | msgstr "Import from Readability" |
153 | |||
154 | msgid "Import from Instapaper" | ||
155 | msgstr "Import from Instapaper" | ||
82 | 156 | ||
83 | msgid "Export your poche data" | 157 | msgid "Import from wallabag" |
84 | msgstr "Export your poche data" | 158 | msgstr "Import from wallabag" |
159 | |||
160 | msgid "Export your wallabag data" | ||
161 | msgstr "Export your wallabag data" | ||
85 | 162 | ||
86 | msgid "Click here" | 163 | msgid "Click here" |
87 | msgstr "Click here" | 164 | msgstr "Click here" |
88 | 165 | ||
89 | msgid "to export your poche data." | 166 | msgid "to download your database." |
90 | msgstr "to export your poche data." | 167 | msgstr "to download your database." |
91 | 168 | ||
92 | msgid "back to home" | 169 | msgid "to export your wallabag data." |
93 | msgstr "back to home" | 170 | msgstr "to export your wallabag data." |
94 | 171 | ||
95 | msgid "installation" | 172 | msgid "Cache" |
96 | msgstr "installation" | 173 | msgstr "Cache" |
97 | 174 | ||
98 | msgid "install your poche" | 175 | msgid "to delete cache." |
99 | msgstr "install your poche" | 176 | msgstr "to delete cache." |
100 | 177 | ||
101 | msgid "" | 178 | msgid "You can enter multiple tags, separated by commas." |
102 | "poche is still not installed. Please fill the below form to install it. " | 179 | msgstr "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>." | ||
105 | msgstr "" | ||
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 | |||
110 | msgid "Login" | ||
111 | msgstr "Login" | ||
112 | 180 | ||
113 | msgid "Repeat your password" | 181 | msgid "return to article" |
114 | msgstr "Repeat your password" | 182 | msgstr "return to article" |
115 | 183 | ||
116 | msgid "Install" | 184 | msgid "plop" |
117 | msgstr "Install" | 185 | msgstr "plop" |
118 | 186 | ||
119 | msgid "back to top" | 187 | msgid "You can <a href='wallabag_compatibility_test.php'>check your configuration here</a>." |
120 | msgstr "back to top" | 188 | msgstr "You can <a href='wallabag_compatibility_test.php'>check your configuration here</a>." |
121 | 189 | ||
122 | msgid "favoris" | 190 | msgid "favoris" |
123 | msgstr "favoris" | 191 | msgstr "favoris" |
@@ -146,11 +214,14 @@ msgstr "by title" | |||
146 | msgid "by title desc" | 214 | msgid "by title desc" |
147 | msgstr "by title desc" | 215 | msgstr "by title desc" |
148 | 216 | ||
149 | msgid "No link available here!" | 217 | msgid "Tag" |
150 | msgstr "No link available here!" | 218 | msgstr "Tag" |
151 | 219 | ||
152 | msgid "toggle mark as read" | 220 | msgid "No articles found." |
153 | msgstr "toggle mark as read" | 221 | msgstr "No articles found." |
222 | |||
223 | msgid "Toggle mark as read" | ||
224 | msgstr "Toggle mark as read" | ||
154 | 225 | ||
155 | msgid "toggle favorite" | 226 | msgid "toggle favorite" |
156 | msgstr "toggle favorite" | 227 | msgstr "toggle favorite" |
@@ -161,14 +232,86 @@ msgstr "delete" | |||
161 | msgid "original" | 232 | msgid "original" |
162 | msgstr "original" | 233 | msgstr "original" |
163 | 234 | ||
235 | msgid "estimated reading time:" | ||
236 | msgstr "estimated reading time:" | ||
237 | |||
238 | msgid "mark all the entries as read" | ||
239 | msgstr "mark all the entries as read" | ||
240 | |||
164 | msgid "results" | 241 | msgid "results" |
165 | msgstr "results" | 242 | msgstr "results" |
166 | 243 | ||
167 | msgid "tweet" | 244 | msgid "installation" |
168 | msgstr "tweet" | 245 | msgstr "installation" |
169 | 246 | ||
170 | msgid "email" | 247 | msgid "install your wallabag" |
171 | msgstr "email" | 248 | msgstr "install your wallabag" |
249 | |||
250 | msgid "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>." | ||
251 | msgstr "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 | |||
253 | msgid "Login" | ||
254 | msgstr "Login" | ||
255 | |||
256 | msgid "Repeat your password" | ||
257 | msgstr "Repeat your password" | ||
258 | |||
259 | msgid "Install" | ||
260 | msgstr "Install" | ||
261 | |||
262 | msgid "login to your wallabag" | ||
263 | msgstr "login to your wallabag" | ||
264 | |||
265 | msgid "Login to wallabag" | ||
266 | msgstr "Login to wallabag" | ||
267 | |||
268 | msgid "you are in demo mode, some features may be disabled." | ||
269 | msgstr "you are in demo mode, some features may be disabled." | ||
270 | |||
271 | msgid "Username" | ||
272 | msgstr "Username" | ||
273 | |||
274 | msgid "Stay signed in" | ||
275 | msgstr "Stay signed in" | ||
276 | |||
277 | msgid "(Do not check on public computers)" | ||
278 | msgstr "(Do not check on public computers)" | ||
279 | |||
280 | msgid "Sign in" | ||
281 | msgstr "Sign in" | ||
282 | |||
283 | msgid "favorites" | ||
284 | msgstr "favorites" | ||
285 | |||
286 | msgid "estimated reading time :" | ||
287 | msgstr "estimated reading time :" | ||
288 | |||
289 | msgid "Mark all the entries as read" | ||
290 | msgstr "Mark all the entries as read" | ||
291 | |||
292 | msgid "Return home" | ||
293 | msgstr "Return home" | ||
294 | |||
295 | msgid "Back to top" | ||
296 | msgstr "Back to top" | ||
297 | |||
298 | msgid "Mark as read" | ||
299 | msgstr "Mark as read" | ||
300 | |||
301 | msgid "Favorite" | ||
302 | msgstr "Favorite" | ||
303 | |||
304 | msgid "Toggle favorite" | ||
305 | msgstr "Toggle favorite" | ||
306 | |||
307 | msgid "Delete" | ||
308 | msgstr "Delete" | ||
309 | |||
310 | msgid "Tweet" | ||
311 | msgstr "Tweet" | ||
312 | |||
313 | msgid "Email" | ||
314 | msgstr "Email" | ||
172 | 315 | ||
173 | msgid "shaarli" | 316 | msgid "shaarli" |
174 | msgstr "shaarli" | 317 | msgstr "shaarli" |
@@ -176,26 +319,23 @@ msgstr "shaarli" | |||
176 | msgid "flattr" | 319 | msgid "flattr" |
177 | msgstr "flattr" | 320 | msgstr "flattr" |
178 | 321 | ||
179 | msgid "this article appears wrong?" | 322 | msgid "Does this article appear wrong?" |
180 | msgstr "this article appears wrong?" | 323 | msgstr "Does this article appear wrong?" |
181 | 324 | ||
182 | msgid "create an issue" | 325 | msgid "tags:" |
183 | msgstr "create an issue" | 326 | msgstr "tags:" |
184 | 327 | ||
185 | msgid "or" | 328 | msgid "Edit tags" |
186 | msgstr "or" | 329 | msgstr "Edit tags" |
187 | 330 | ||
188 | msgid "contact us by mail" | 331 | msgid "save link!" |
189 | msgstr "contact us by mail" | 332 | msgstr "save link!" |
190 | |||
191 | msgid "plop" | ||
192 | msgstr "plop" | ||
193 | 333 | ||
194 | msgid "home" | 334 | msgid "home" |
195 | msgstr "home" | 335 | msgstr "home" |
196 | 336 | ||
197 | msgid "favorites" | 337 | msgid "tags" |
198 | msgstr "favorites" | 338 | msgstr "tags" |
199 | 339 | ||
200 | msgid "logout" | 340 | msgid "logout" |
201 | msgstr "logout" | 341 | msgstr "logout" |
@@ -206,23 +346,179 @@ msgstr "powered by" | |||
206 | msgid "debug mode is on so cache is off." | 346 | msgid "debug mode is on so cache is off." |
207 | msgstr "debug mode is on so cache is off." | 347 | msgstr "debug mode is on so cache is off." |
208 | 348 | ||
209 | msgid "your poche version:" | 349 | msgid "your wallabag version:" |
210 | msgstr "your poche version:" | 350 | msgstr "your wallabag version:" |
211 | 351 | ||
212 | msgid "storage:" | 352 | msgid "storage:" |
213 | msgstr "storage:" | 353 | msgstr "storage:" |
214 | 354 | ||
215 | msgid "login to your poche" | 355 | msgid "save a link" |
216 | msgstr "login to your poche" | 356 | msgstr "save a link" |
217 | 357 | ||
218 | msgid "you are in demo mode, some features may be disabled." | 358 | msgid "back to home" |
219 | msgstr "you are in demo mode, some features may be disabled." | 359 | msgstr "back to home" |
220 | 360 | ||
221 | msgid "Stay signed in" | 361 | msgid "toggle mark as read" |
222 | msgstr "Stay signed in" | 362 | msgstr "toggle mark as read" |
223 | 363 | ||
224 | msgid "(Do not check on public computers)" | 364 | msgid "tweet" |
225 | msgstr "(Do not check on public computers)" | 365 | msgstr "tweet" |
226 | 366 | ||
227 | msgid "Sign in" | 367 | msgid "email" |
228 | msgstr "Sign in" | 368 | msgstr "email" |
369 | |||
370 | msgid "this article appears wrong?" | ||
371 | msgstr "this article appears wrong?" | ||
372 | |||
373 | msgid "No link available here!" | ||
374 | msgstr "No link available here!" | ||
375 | |||
376 | msgid "Poching a link" | ||
377 | msgstr "Poching a link" | ||
378 | |||
379 | msgid "by filling this field" | ||
380 | msgstr "by filling this field" | ||
381 | |||
382 | msgid "bookmarklet: drag & drop this link to your bookmarks bar" | ||
383 | msgstr "bookmarklet: drag & drop this link to your bookmarks bar" | ||
384 | |||
385 | msgid "your version" | ||
386 | msgstr "your version" | ||
387 | |||
388 | msgid "latest stable version" | ||
389 | msgstr "latest stable version" | ||
390 | |||
391 | msgid "a more recent stable version is available." | ||
392 | msgstr "a more recent stable version is available." | ||
393 | |||
394 | msgid "you are up to date." | ||
395 | msgstr "you are up to date." | ||
396 | |||
397 | msgid "latest dev version" | ||
398 | msgstr "latest dev version" | ||
399 | |||
400 | msgid "a more recent development version is available." | ||
401 | msgstr "a more recent development version is available." | ||
402 | |||
403 | msgid "Please execute the import script locally, it can take a very long time." | ||
404 | msgstr "Please execute the import script locally, it can take a very long time." | ||
405 | |||
406 | msgid "More infos in the official doc:" | ||
407 | msgstr "More infos in the official doc:" | ||
408 | |||
409 | msgid "import from Pocket" | ||
410 | msgstr "import from Pocket" | ||
411 | |||
412 | msgid "import from Readability" | ||
413 | msgstr "import from Readability" | ||
414 | |||
415 | msgid "import from Instapaper" | ||
416 | msgstr "import from Instapaper" | ||
417 | |||
418 | msgid "Tags" | ||
419 | msgstr "Tags" | ||
420 | |||
421 | msgid "Untitled" | ||
422 | msgstr "Untitled" | ||
423 | |||
424 | msgid "the link has been added successfully" | ||
425 | msgstr "the link has been added successfully" | ||
426 | |||
427 | msgid "error during insertion : the link wasn't added" | ||
428 | msgstr "error during insertion : the link wasn't added" | ||
429 | |||
430 | msgid "the link has been deleted successfully" | ||
431 | msgstr "the link has been deleted successfully" | ||
432 | |||
433 | msgid "the link wasn't deleted" | ||
434 | msgstr "the link wasn't deleted" | ||
435 | |||
436 | msgid "Article not found!" | ||
437 | msgstr "Article not found!" | ||
438 | |||
439 | msgid "previous" | ||
440 | msgstr "previous" | ||
441 | |||
442 | msgid "next" | ||
443 | msgstr "next" | ||
444 | |||
445 | msgid "in demo mode, you can't update your password" | ||
446 | msgstr "in demo mode, you can't update your password" | ||
447 | |||
448 | msgid "your password has been updated" | ||
449 | msgstr "your password has been updated" | ||
450 | |||
451 | msgid "the two fields have to be filled & the password must be the same in the two fields" | ||
452 | msgstr "the two fields have to be filled & the password must be the same in the two fields" | ||
453 | |||
454 | msgid "still using the \"" | ||
455 | msgstr "still using the \"" | ||
456 | |||
457 | msgid "that theme does not seem to be installed" | ||
458 | msgstr "that theme does not seem to be installed" | ||
459 | |||
460 | msgid "you have changed your theme preferences" | ||
461 | msgstr "you have changed your theme preferences" | ||
462 | |||
463 | msgid "that language does not seem to be installed" | ||
464 | msgstr "that language does not seem to be installed" | ||
465 | |||
466 | msgid "you have changed your language preferences" | ||
467 | msgstr "you have changed your language preferences" | ||
468 | |||
469 | msgid "login failed: you have to fill all fields" | ||
470 | msgstr "login failed: you have to fill all fields" | ||
471 | |||
472 | msgid "welcome to your wallabag" | ||
473 | msgstr "welcome to your wallabag" | ||
474 | |||
475 | msgid "login failed: bad login or password" | ||
476 | msgstr "login failed: bad login or password" | ||
477 | |||
478 | msgid "import from instapaper completed" | ||
479 | msgstr "import from instapaper completed" | ||
480 | |||
481 | msgid "import from pocket completed" | ||
482 | msgstr "import from pocket completed" | ||
483 | |||
484 | msgid "import from Readability completed. " | ||
485 | msgstr "import from Readability completed. " | ||
486 | |||
487 | msgid "import from Poche completed. " | ||
488 | msgstr "import from Poche completed. " | ||
489 | |||
490 | msgid "Unknown import provider." | ||
491 | msgstr "Unknown import provider." | ||
492 | |||
493 | msgid "Incomplete inc/poche/define.inc.php file, please define \"" | ||
494 | msgstr "Incomplete inc/poche/define.inc.php file, please define \"" | ||
495 | |||
496 | msgid "Could not find required \"" | ||
497 | msgstr "Could not find required \"" | ||
498 | |||
499 | msgid "Uh, there is a problem while generating feeds." | ||
500 | msgstr "Uh, there is a problem while generating feeds." | ||
501 | |||
502 | msgid "Cache deleted." | ||
503 | msgstr "Cache deleted." | ||
504 | |||
505 | msgid "Oops, it seems you don't have PHP 5." | ||
506 | msgstr "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 @@ | |||
1 | msgid "" | 1 | msgid "" |
2 | msgstr "" | 2 | msgstr "" |
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 | |||
18 | msgid "wallabag, a read it later open source system" | ||
19 | msgstr "" | ||
20 | |||
21 | msgid "login failed: user doesn't exist" | ||
22 | msgstr "" | ||
23 | |||
24 | msgid "return home" | ||
25 | msgstr "" | ||
12 | 26 | ||
13 | msgid "config" | 27 | msgid "config" |
14 | msgstr "configuración" | 28 | msgstr "configuración" |
15 | 29 | ||
16 | msgid "Poching a link" | 30 | msgid "Saving articles" |
17 | msgstr "Pochear un enlace" | 31 | msgstr "" |
32 | |||
33 | msgid "There are several ways to save an article:" | ||
34 | msgstr "" | ||
18 | 35 | ||
19 | msgid "read the documentation" | 36 | msgid "read the documentation" |
20 | msgstr "leer la documentación" | 37 | msgstr "leer la documentación" |
21 | 38 | ||
22 | msgid "by filling this field" | 39 | msgid "download the extension" |
40 | msgstr "" | ||
41 | |||
42 | msgid "via F-Droid" | ||
43 | msgstr "" | ||
44 | |||
45 | msgid " or " | ||
46 | msgstr "" | ||
47 | |||
48 | msgid "via Google Play" | ||
49 | msgstr "" | ||
50 | |||
51 | msgid "download the application" | ||
52 | msgstr "" | ||
53 | |||
54 | #, fuzzy | ||
55 | msgid "By filling this field" | ||
23 | msgstr "rellenando este campo" | 56 | msgstr "rellenando este campo" |
24 | 57 | ||
25 | msgid "poche it!" | 58 | msgid "bag it!" |
26 | msgstr "pochéalo!" | 59 | msgstr "" |
27 | 60 | ||
28 | msgid "Updating poche" | 61 | msgid "Bookmarklet: drag & drop this link to your bookmarks bar" |
29 | msgstr "Actualizar" | 62 | msgstr "" |
30 | 63 | ||
31 | msgid "your version" | 64 | msgid "Upgrading wallabag" |
32 | msgstr "su versión" | 65 | msgstr "" |
33 | 66 | ||
34 | msgid "latest stable version" | 67 | #, fuzzy |
68 | msgid "Installed version" | ||
35 | msgstr "ultima versión estable" | 69 | msgstr "ultima versión estable" |
36 | 70 | ||
37 | msgid "a more recent stable version is available." | 71 | #, fuzzy |
72 | msgid "Latest stable version" | ||
73 | msgstr "ultima versión estable" | ||
74 | |||
75 | #, fuzzy | ||
76 | msgid "A more recent stable version is available." | ||
38 | msgstr "una versión estable más reciente está disponible." | 77 | msgstr "una versión estable más reciente está disponible." |
39 | 78 | ||
40 | msgid "you are up to date." | 79 | #, fuzzy |
80 | msgid "You are up to date." | ||
41 | msgstr "estás actualizado." | 81 | msgstr "estás actualizado." |
42 | 82 | ||
43 | msgid "latest dev version" | 83 | #, fuzzy |
84 | msgid "Latest dev version" | ||
44 | msgstr "ultima versión de desarollo" | 85 | msgstr "ultima versión de desarollo" |
45 | 86 | ||
46 | msgid "a more recent development version is available." | 87 | #, fuzzy |
88 | msgid "A more recent development version is available." | ||
47 | msgstr "una versión de desarollo más reciente está disponible." | 89 | msgstr "una versión de desarollo más reciente está disponible." |
48 | 90 | ||
91 | msgid "Feeds" | ||
92 | msgstr "" | ||
93 | |||
94 | msgid "Your feed token is currently empty and must first be generated to enable feeds. Click <a href='?feed&action=generate'>here to generate it</a>." | ||
95 | msgstr "" | ||
96 | |||
97 | msgid "Unread feed" | ||
98 | msgstr "" | ||
99 | |||
100 | #, fuzzy | ||
101 | msgid "Favorites feed" | ||
102 | msgstr "preferidos" | ||
103 | |||
104 | #, fuzzy | ||
105 | msgid "Archive feed" | ||
106 | msgstr "archivos" | ||
107 | |||
108 | msgid "Your token:" | ||
109 | msgstr "" | ||
110 | |||
111 | msgid "Your user id:" | ||
112 | msgstr "" | ||
113 | |||
114 | msgid "You can regenerate your token: <a href='?feed&action=generate'>generate!</a>." | ||
115 | msgstr "" | ||
116 | |||
117 | #, fuzzy | ||
118 | msgid "Change your theme" | ||
119 | msgstr "Modificar tu contraseña" | ||
120 | |||
121 | msgid "Theme:" | ||
122 | msgstr "" | ||
123 | |||
124 | msgid "Update" | ||
125 | msgstr "Actualizar" | ||
126 | |||
127 | #, fuzzy | ||
128 | msgid "Change your language" | ||
129 | msgstr "Modificar tu contraseña" | ||
130 | |||
131 | msgid "Language:" | ||
132 | msgstr "" | ||
133 | |||
49 | msgid "Change your password" | 134 | msgid "Change your password" |
50 | msgstr "Modificar tu contraseña" | 135 | msgstr "Modificar tu contraseña" |
51 | 136 | ||
@@ -58,66 +143,68 @@ msgstr "Contraseña" | |||
58 | msgid "Repeat your new password:" | 143 | msgid "Repeat your new password:" |
59 | msgstr "Repetir la nueva contraseña :" | 144 | msgstr "Repetir la nueva contraseña :" |
60 | 145 | ||
61 | msgid "Update" | ||
62 | msgstr "Actualizar" | ||
63 | |||
64 | msgid "Import" | 146 | msgid "Import" |
65 | msgstr "Importar" | 147 | msgstr "Importar" |
66 | 148 | ||
67 | msgid "Please execute the import script locally, it can take a very long time." | 149 | #, fuzzy |
68 | msgstr "" | 150 | msgid "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." | 151 | msgstr "Por favor, ejecute la importación en local, esto puede demorar un tiempo." |
70 | 152 | ||
71 | msgid "More info in the official doc:" | 153 | #, fuzzy |
154 | msgid "More info in the official documentation:" | ||
72 | msgstr "Más información en la documentación oficial :" | 155 | msgstr "Más información en la documentación oficial :" |
73 | 156 | ||
74 | msgid "import from Pocket" | 157 | #, fuzzy |
158 | msgid "Import from Pocket" | ||
75 | msgstr "importación desde Pocket" | 159 | msgstr "importación desde Pocket" |
76 | 160 | ||
77 | msgid "import from Readability" | 161 | #, php-format |
162 | msgid "(you must have a %s file on your server)" | ||
163 | msgstr "" | ||
164 | |||
165 | #, fuzzy | ||
166 | msgid "Import from Readability" | ||
78 | msgstr "importación desde Readability" | 167 | msgstr "importación desde Readability" |
79 | 168 | ||
80 | msgid "import from Instapaper" | 169 | #, fuzzy |
170 | msgid "Import from Instapaper" | ||
81 | msgstr "importación desde Instapaper" | 171 | msgstr "importación desde Instapaper" |
82 | 172 | ||
83 | msgid "Export your poche data" | 173 | #, fuzzy |
174 | msgid "Import from wallabag" | ||
175 | msgstr "importación desde Readability" | ||
176 | |||
177 | #, fuzzy | ||
178 | msgid "Export your wallabag data" | ||
84 | msgstr "Exportar sus datos de poche" | 179 | msgstr "Exportar sus datos de poche" |
85 | 180 | ||
86 | msgid "Click here" | 181 | msgid "Click here" |
87 | msgstr "Haga clic aquí" | 182 | msgstr "Haga clic aquí" |
88 | 183 | ||
89 | msgid "to export your poche data." | 184 | msgid "to download your database." |
90 | msgstr "para exportar sus datos de poche." | 185 | msgstr "" |
91 | |||
92 | msgid "back to home" | ||
93 | msgstr "volver a la página de inicio" | ||
94 | 186 | ||
95 | msgid "installation" | 187 | #, fuzzy |
96 | msgstr "instalación" | 188 | msgid "to export your wallabag data." |
189 | msgstr "para exportar sus datos de poche." | ||
97 | 190 | ||
98 | msgid "install your poche" | 191 | msgid "Cache" |
99 | msgstr "instala tu Poche" | 192 | msgstr "" |
100 | 193 | ||
101 | msgid "" | 194 | msgid "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>." | ||
105 | msgstr "" | 195 | msgstr "" |
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 | ||
110 | msgid "Login" | 197 | msgid "You can enter multiple tags, separated by commas." |
111 | msgstr "Nombre de usuario" | 198 | msgstr "" |
112 | 199 | ||
113 | msgid "Repeat your password" | 200 | msgid "return to article" |
114 | msgstr "Repita su contraseña" | 201 | msgstr "" |
115 | 202 | ||
116 | msgid "Install" | 203 | msgid "plop" |
117 | msgstr "Instalar" | 204 | msgstr "plop" |
118 | 205 | ||
119 | msgid "back to top" | 206 | msgid "You can <a href='wallabag_compatibility_test.php'>check your configuration here</a>." |
120 | msgstr "volver arriba" | 207 | msgstr "" |
121 | 208 | ||
122 | msgid "favoris" | 209 | msgid "favoris" |
123 | msgstr "preferidos" | 210 | msgstr "preferidos" |
@@ -146,10 +233,14 @@ msgstr "por título" | |||
146 | msgid "by title desc" | 233 | msgid "by title desc" |
147 | msgstr "por título descendiente" | 234 | msgstr "por título descendiente" |
148 | 235 | ||
149 | msgid "No link available here!" | 236 | msgid "Tag" |
150 | msgstr "¡No hay ningún enlace disponible por aquí!" | 237 | msgstr "" |
151 | 238 | ||
152 | msgid "toggle mark as read" | 239 | msgid "No articles found." |
240 | msgstr "" | ||
241 | |||
242 | #, fuzzy | ||
243 | msgid "Toggle mark as read" | ||
153 | msgstr "marcar como leído" | 244 | msgstr "marcar como leído" |
154 | 245 | ||
155 | msgid "toggle favorite" | 246 | msgid "toggle favorite" |
@@ -161,13 +252,95 @@ msgstr "eliminar" | |||
161 | msgid "original" | 252 | msgid "original" |
162 | msgstr "original" | 253 | msgstr "original" |
163 | 254 | ||
255 | msgid "estimated reading time:" | ||
256 | msgstr "" | ||
257 | |||
258 | msgid "mark all the entries as read" | ||
259 | msgstr "" | ||
260 | |||
164 | msgid "results" | 261 | msgid "results" |
165 | msgstr "resultados" | 262 | msgstr "resultados" |
166 | 263 | ||
167 | msgid "tweet" | 264 | msgid "installation" |
265 | msgstr "instalación" | ||
266 | |||
267 | #, fuzzy | ||
268 | msgid "install your wallabag" | ||
269 | msgstr "instala tu Poche" | ||
270 | |||
271 | #, fuzzy | ||
272 | msgid "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>." | ||
273 | msgstr "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 | |||
275 | msgid "Login" | ||
276 | msgstr "Nombre de usuario" | ||
277 | |||
278 | msgid "Repeat your password" | ||
279 | msgstr "Repita su contraseña" | ||
280 | |||
281 | msgid "Install" | ||
282 | msgstr "Instalar" | ||
283 | |||
284 | #, fuzzy | ||
285 | msgid "login to your wallabag" | ||
286 | msgstr "conectarse a tu Poche" | ||
287 | |||
288 | msgid "Login to wallabag" | ||
289 | msgstr "" | ||
290 | |||
291 | msgid "you are in demo mode, some features may be disabled." | ||
292 | msgstr "este es el modo de demostración, algunas funcionalidades pueden estar desactivadas." | ||
293 | |||
294 | msgid "Username" | ||
295 | msgstr "" | ||
296 | |||
297 | msgid "Stay signed in" | ||
298 | msgstr "Seguir conectado" | ||
299 | |||
300 | msgid "(Do not check on public computers)" | ||
301 | msgstr "(no marcar en un ordenador público)" | ||
302 | |||
303 | msgid "Sign in" | ||
304 | msgstr "Iniciar sesión" | ||
305 | |||
306 | msgid "favorites" | ||
307 | msgstr "preferidos" | ||
308 | |||
309 | msgid "estimated reading time :" | ||
310 | msgstr "" | ||
311 | |||
312 | msgid "Mark all the entries as read" | ||
313 | msgstr "" | ||
314 | |||
315 | msgid "Return home" | ||
316 | msgstr "" | ||
317 | |||
318 | #, fuzzy | ||
319 | msgid "Back to top" | ||
320 | msgstr "volver arriba" | ||
321 | |||
322 | #, fuzzy | ||
323 | msgid "Mark as read" | ||
324 | msgstr "marcar como leído" | ||
325 | |||
326 | #, fuzzy | ||
327 | msgid "Favorite" | ||
328 | msgstr "preferidos" | ||
329 | |||
330 | #, fuzzy | ||
331 | msgid "Toggle favorite" | ||
332 | msgstr "preferido" | ||
333 | |||
334 | #, fuzzy | ||
335 | msgid "Delete" | ||
336 | msgstr "eliminar" | ||
337 | |||
338 | #, fuzzy | ||
339 | msgid "Tweet" | ||
168 | msgstr "tweetear" | 340 | msgstr "tweetear" |
169 | 341 | ||
170 | msgid "email" | 342 | #, fuzzy |
343 | msgid "Email" | ||
171 | msgstr "enviar por mail" | 344 | msgstr "enviar por mail" |
172 | 345 | ||
173 | msgid "shaarli" | 346 | msgid "shaarli" |
@@ -176,26 +349,24 @@ msgstr "shaarli" | |||
176 | msgid "flattr" | 349 | msgid "flattr" |
177 | msgstr "flattr" | 350 | msgstr "flattr" |
178 | 351 | ||
179 | msgid "this article appears wrong?" | 352 | #, fuzzy |
353 | msgid "Does this article appear wrong?" | ||
180 | msgstr "este articulo no se ve bien?" | 354 | msgstr "este articulo no se ve bien?" |
181 | 355 | ||
182 | msgid "create an issue" | 356 | msgid "tags:" |
183 | msgstr "crear un ticket" | 357 | msgstr "" |
184 | |||
185 | msgid "or" | ||
186 | msgstr "o" | ||
187 | 358 | ||
188 | msgid "contact us by mail" | 359 | msgid "Edit tags" |
189 | msgstr "contactarnos por mail" | 360 | msgstr "" |
190 | 361 | ||
191 | msgid "plop" | 362 | msgid "save link!" |
192 | msgstr "plop" | 363 | msgstr "" |
193 | 364 | ||
194 | msgid "home" | 365 | msgid "home" |
195 | msgstr "inicio" | 366 | msgstr "inicio" |
196 | 367 | ||
197 | msgid "favorites" | 368 | msgid "tags" |
198 | msgstr "preferidos" | 369 | msgstr "" |
199 | 370 | ||
200 | msgid "logout" | 371 | msgid "logout" |
201 | msgstr "cerrar sesión" | 372 | msgstr "cerrar sesión" |
@@ -206,25 +377,187 @@ msgstr "hecho con" | |||
206 | msgid "debug mode is on so cache is off." | 377 | msgid "debug mode is on so cache is off." |
207 | msgstr "el modo de depuración está activado, así que la cache está desactivada." | 378 | msgstr "el modo de depuración está activado, así que la cache está desactivada." |
208 | 379 | ||
209 | msgid "your poche version:" | 380 | #, fuzzy |
210 | msgstr "tu versión de Poche:" | 381 | msgid "your wallabag version:" |
382 | msgstr "su versión" | ||
211 | 383 | ||
212 | msgid "storage:" | 384 | msgid "storage:" |
213 | msgstr "almacenamiento:" | 385 | msgstr "almacenamiento:" |
214 | 386 | ||
215 | msgid "login to your poche" | 387 | msgid "save a link" |
216 | msgstr "conectarse a tu Poche" | 388 | msgstr "" |
217 | 389 | ||
218 | msgid "you are in demo mode, some features may be disabled." | 390 | msgid "back to home" |
391 | msgstr "volver a la página de inicio" | ||
392 | |||
393 | msgid "toggle mark as read" | ||
394 | msgstr "marcar como leído" | ||
395 | |||
396 | msgid "tweet" | ||
397 | msgstr "tweetear" | ||
398 | |||
399 | msgid "email" | ||
400 | msgstr "enviar por mail" | ||
401 | |||
402 | msgid "this article appears wrong?" | ||
403 | msgstr "este articulo no se ve bien?" | ||
404 | |||
405 | msgid "No link available here!" | ||
406 | msgstr "¡No hay ningún enlace disponible por aquí!" | ||
407 | |||
408 | msgid "Poching a link" | ||
409 | msgstr "Pochear un enlace" | ||
410 | |||
411 | msgid "by filling this field" | ||
412 | msgstr "rellenando este campo" | ||
413 | |||
414 | msgid "bookmarklet: drag & drop this link to your bookmarks bar" | ||
219 | msgstr "" | 415 | msgstr "" |
220 | "este es el modo de demostración, algunas funcionalidades pueden estar " | ||
221 | "desactivadas." | ||
222 | 416 | ||
223 | msgid "Stay signed in" | 417 | msgid "your version" |
224 | msgstr "Seguir conectado" | 418 | msgstr "su versión" |
225 | 419 | ||
226 | msgid "(Do not check on public computers)" | 420 | msgid "latest stable version" |
227 | msgstr "(no marcar en un ordenador público)" | 421 | msgstr "ultima versión estable" |
228 | 422 | ||
229 | msgid "Sign in" | 423 | msgid "a more recent stable version is available." |
230 | msgstr "Iniciar sesión" | 424 | msgstr "una versión estable más reciente está disponible." |
425 | |||
426 | msgid "you are up to date." | ||
427 | msgstr "estás actualizado." | ||
428 | |||
429 | msgid "latest dev version" | ||
430 | msgstr "ultima versión de desarollo" | ||
431 | |||
432 | msgid "a more recent development version is available." | ||
433 | msgstr "una versión de desarollo más reciente está disponible." | ||
434 | |||
435 | msgid "Please execute the import script locally, it can take a very long time." | ||
436 | msgstr "Por favor, ejecute la importación en local, esto puede demorar un tiempo." | ||
437 | |||
438 | #, fuzzy | ||
439 | msgid "More infos in the official doc:" | ||
440 | msgstr "Más información en la documentación oficial :" | ||
441 | |||
442 | msgid "import from Pocket" | ||
443 | msgstr "importación desde Pocket" | ||
444 | |||
445 | msgid "import from Readability" | ||
446 | msgstr "importación desde Readability" | ||
447 | |||
448 | msgid "import from Instapaper" | ||
449 | msgstr "importación desde Instapaper" | ||
450 | |||
451 | msgid "Tags" | ||
452 | msgstr "" | ||
453 | |||
454 | #, fuzzy | ||
455 | msgid "Untitled" | ||
456 | msgstr "por título" | ||
457 | |||
458 | msgid "the link has been added successfully" | ||
459 | msgstr "" | ||
460 | |||
461 | msgid "error during insertion : the link wasn't added" | ||
462 | msgstr "" | ||
463 | |||
464 | msgid "the link has been deleted successfully" | ||
465 | msgstr "" | ||
466 | |||
467 | msgid "the link wasn't deleted" | ||
468 | msgstr "" | ||
469 | |||
470 | msgid "Article not found!" | ||
471 | msgstr "" | ||
472 | |||
473 | msgid "previous" | ||
474 | msgstr "" | ||
475 | |||
476 | msgid "next" | ||
477 | msgstr "" | ||
478 | |||
479 | msgid "in demo mode, you can't update your password" | ||
480 | msgstr "" | ||
481 | |||
482 | msgid "your password has been updated" | ||
483 | msgstr "" | ||
484 | |||
485 | msgid "the two fields have to be filled & the password must be the same in the two fields" | ||
486 | msgstr "" | ||
487 | |||
488 | msgid "still using the \"" | ||
489 | msgstr "" | ||
490 | |||
491 | msgid "that theme does not seem to be installed" | ||
492 | msgstr "" | ||
493 | |||
494 | msgid "you have changed your theme preferences" | ||
495 | msgstr "" | ||
496 | |||
497 | msgid "that language does not seem to be installed" | ||
498 | msgstr "" | ||
499 | |||
500 | msgid "you have changed your language preferences" | ||
501 | msgstr "" | ||
502 | |||
503 | msgid "login failed: you have to fill all fields" | ||
504 | msgstr "" | ||
505 | |||
506 | msgid "welcome to your wallabag" | ||
507 | msgstr "" | ||
508 | |||
509 | msgid "login failed: bad login or password" | ||
510 | msgstr "" | ||
511 | |||
512 | #, fuzzy | ||
513 | msgid "import from instapaper completed" | ||
514 | msgstr "importación desde Instapaper" | ||
515 | |||
516 | #, fuzzy | ||
517 | msgid "import from pocket completed" | ||
518 | msgstr "importación desde Pocket" | ||
519 | |||
520 | #, fuzzy | ||
521 | msgid "import from Readability completed. " | ||
522 | msgstr "importación desde Readability" | ||
523 | |||
524 | #, fuzzy | ||
525 | msgid "import from Poche completed. " | ||
526 | msgstr "importación desde Pocket" | ||
527 | |||
528 | msgid "Unknown import provider." | ||
529 | msgstr "" | ||
530 | |||
531 | msgid "Incomplete inc/poche/define.inc.php file, please define \"" | ||
532 | msgstr "" | ||
533 | |||
534 | msgid "Could not find required \"" | ||
535 | msgstr "" | ||
536 | |||
537 | msgid "Uh, there is a problem while generating feeds." | ||
538 | msgstr "" | ||
539 | |||
540 | #, fuzzy | ||
541 | msgid "Cache deleted." | ||
542 | msgstr "eliminar" | ||
543 | |||
544 | msgid "Oops, it seems you don't have PHP 5." | ||
545 | msgstr "" | ||
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 @@ | |||
1 | msgid "" | 1 | msgid "" |
2 | msgstr "" | 2 | msgstr "" |
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 | |||
18 | msgid "wallabag, a read it later open source system" | ||
19 | msgstr "" | ||
20 | |||
21 | msgid "login failed: user doesn't exist" | ||
22 | msgstr "" | ||
23 | |||
24 | msgid "return home" | ||
25 | msgstr "" | ||
12 | 26 | ||
13 | msgid "config" | 27 | msgid "config" |
14 | msgstr "تنظیمات" | 28 | msgstr "تنظیمات" |
15 | 29 | ||
16 | msgid "Poching a link" | 30 | msgid "Saving articles" |
17 | msgstr "پیوندی را poche کنید" | 31 | msgstr "" |
32 | |||
33 | msgid "There are several ways to save an article:" | ||
34 | msgstr "" | ||
18 | 35 | ||
19 | msgid "read the documentation" | 36 | msgid "read the documentation" |
20 | msgstr "راهنما را بخوانید" | 37 | msgstr "راهنما را بخوانید" |
21 | 38 | ||
22 | msgid "by filling this field" | 39 | msgid "download the extension" |
40 | msgstr "" | ||
41 | |||
42 | msgid "via F-Droid" | ||
43 | msgstr "" | ||
44 | |||
45 | msgid " or " | ||
46 | msgstr "" | ||
47 | |||
48 | msgid "via Google Play" | ||
49 | msgstr "" | ||
50 | |||
51 | msgid "download the application" | ||
52 | msgstr "" | ||
53 | |||
54 | #, fuzzy | ||
55 | msgid "By filling this field" | ||
23 | msgstr "با پرکردن این بخش" | 56 | msgstr "با پرکردن این بخش" |
24 | 57 | ||
25 | msgid "poche it!" | 58 | msgid "bag it!" |
26 | msgstr "poche کنید!" | 59 | msgstr "" |
27 | 60 | ||
28 | msgid "Updating poche" | 61 | msgid "Bookmarklet: drag & drop this link to your bookmarks bar" |
29 | msgstr "بهروزرسانی poche" | 62 | msgstr "" |
30 | 63 | ||
31 | msgid "your version" | 64 | msgid "Upgrading wallabag" |
32 | msgstr "نسخهٔ شما" | 65 | msgstr "" |
33 | 66 | ||
34 | msgid "latest stable version" | 67 | #, fuzzy |
68 | msgid "Installed version" | ||
35 | msgstr "آخرین نسخهٔ پایدار" | 69 | msgstr "آخرین نسخهٔ پایدار" |
36 | 70 | ||
37 | msgid "a more recent stable version is available." | 71 | #, fuzzy |
72 | msgid "Latest stable version" | ||
73 | msgstr "آخرین نسخهٔ پایدار" | ||
74 | |||
75 | #, fuzzy | ||
76 | msgid "A more recent stable version is available." | ||
38 | msgstr "نسخهٔ پایدار تازهای منتشر شده است." | 77 | msgstr "نسخهٔ پایدار تازهای منتشر شده است." |
39 | 78 | ||
40 | msgid "you are up to date." | 79 | #, fuzzy |
80 | msgid "You are up to date." | ||
41 | msgstr "شما بهروز هستید." | 81 | msgstr "شما بهروز هستید." |
42 | 82 | ||
43 | msgid "latest dev version" | 83 | #, fuzzy |
84 | msgid "Latest dev version" | ||
44 | msgstr "آخرین نسخهٔ آزمایشی" | 85 | msgstr "آخرین نسخهٔ آزمایشی" |
45 | 86 | ||
46 | msgid "a more recent development version is available." | 87 | #, fuzzy |
88 | msgid "A more recent development version is available." | ||
47 | msgstr "نسخهٔ آزمایشی تازهای منتشر شده است." | 89 | msgstr "نسخهٔ آزمایشی تازهای منتشر شده است." |
48 | 90 | ||
91 | msgid "Feeds" | ||
92 | msgstr "" | ||
93 | |||
94 | msgid "Your feed token is currently empty and must first be generated to enable feeds. Click <a href='?feed&action=generate'>here to generate it</a>." | ||
95 | msgstr "" | ||
96 | |||
97 | msgid "Unread feed" | ||
98 | msgstr "" | ||
99 | |||
100 | #, fuzzy | ||
101 | msgid "Favorites feed" | ||
102 | msgstr "بهترینها" | ||
103 | |||
104 | #, fuzzy | ||
105 | msgid "Archive feed" | ||
106 | msgstr "بایگانی" | ||
107 | |||
108 | msgid "Your token:" | ||
109 | msgstr "" | ||
110 | |||
111 | msgid "Your user id:" | ||
112 | msgstr "" | ||
113 | |||
114 | msgid "You can regenerate your token: <a href='?feed&action=generate'>generate!</a>." | ||
115 | msgstr "" | ||
116 | |||
117 | #, fuzzy | ||
118 | msgid "Change your theme" | ||
119 | msgstr "گذرواژهٔ خود را تغییر دهید" | ||
120 | |||
121 | msgid "Theme:" | ||
122 | msgstr "" | ||
123 | |||
124 | msgid "Update" | ||
125 | msgstr "بهروزرسانی" | ||
126 | |||
127 | #, fuzzy | ||
128 | msgid "Change your language" | ||
129 | msgstr "گذرواژهٔ خود را تغییر دهید" | ||
130 | |||
131 | msgid "Language:" | ||
132 | msgstr "" | ||
133 | |||
49 | msgid "Change your password" | 134 | msgid "Change your password" |
50 | msgstr "گذرواژهٔ خود را تغییر دهید" | 135 | msgstr "گذرواژهٔ خود را تغییر دهید" |
51 | 136 | ||
@@ -58,64 +143,68 @@ msgstr "گذرواژه" | |||
58 | msgid "Repeat your new password:" | 143 | msgid "Repeat your new password:" |
59 | msgstr "گذرواژهٔ تازه را دوباره وارد کنید" | 144 | msgstr "گذرواژهٔ تازه را دوباره وارد کنید" |
60 | 145 | ||
61 | msgid "Update" | ||
62 | msgstr "بهروزرسانی" | ||
63 | |||
64 | msgid "Import" | 146 | msgid "Import" |
65 | msgstr "درونریزی" | 147 | msgstr "درونریزی" |
66 | 148 | ||
67 | msgid "Please execute the import script locally, it can take a very long time." | 149 | #, fuzzy |
150 | msgid "Please execute the import script locally as it can take a very long time." | ||
68 | msgstr "لطفاً برنامهٔ درونریزی را بهطور محلی اجرا کنید، شاید خیلی طول بکشد." | 151 | msgstr "لطفاً برنامهٔ درونریزی را بهطور محلی اجرا کنید، شاید خیلی طول بکشد." |
69 | 152 | ||
70 | msgid "More info in the official doc:" | 153 | #, fuzzy |
154 | msgid "More info in the official documentation:" | ||
71 | msgstr "اطلاعات بیشتر در راهنمای رسمی:" | 155 | msgstr "اطلاعات بیشتر در راهنمای رسمی:" |
72 | 156 | ||
73 | msgid "import from Pocket" | 157 | #, fuzzy |
158 | msgid "Import from Pocket" | ||
74 | msgstr "درونریزی از Pocket" | 159 | msgstr "درونریزی از Pocket" |
75 | 160 | ||
76 | msgid "import from Readability" | 161 | #, php-format |
162 | msgid "(you must have a %s file on your server)" | ||
163 | msgstr "" | ||
164 | |||
165 | #, fuzzy | ||
166 | msgid "Import from Readability" | ||
77 | msgstr "درونریزی از Readability" | 167 | msgstr "درونریزی از Readability" |
78 | 168 | ||
79 | msgid "import from Instapaper" | 169 | #, fuzzy |
170 | msgid "Import from Instapaper" | ||
80 | msgstr "درونریزی از Instapaper" | 171 | msgstr "درونریزی از Instapaper" |
81 | 172 | ||
82 | msgid "Export your poche data" | 173 | #, fuzzy |
174 | msgid "Import from wallabag" | ||
175 | msgstr "درونریزی از Readability" | ||
176 | |||
177 | #, fuzzy | ||
178 | msgid "Export your wallabag data" | ||
83 | msgstr "دادههای poche خود را برونبری کنید" | 179 | msgstr "دادههای poche خود را برونبری کنید" |
84 | 180 | ||
85 | msgid "Click here" | 181 | msgid "Click here" |
86 | msgstr "اینجا را کلیک کنید" | 182 | msgstr "اینجا را کلیک کنید" |
87 | 183 | ||
88 | msgid "to export your poche data." | 184 | msgid "to download your database." |
89 | msgstr "برای برونبری دادههای poche شما" | 185 | msgstr "" |
90 | |||
91 | msgid "back to home" | ||
92 | msgstr "بازگشت به خانه" | ||
93 | 186 | ||
94 | msgid "installation" | 187 | #, fuzzy |
95 | msgstr "نصب" | 188 | msgid "to export your wallabag data." |
189 | msgstr "برای برونبری دادههای poche شما" | ||
96 | 190 | ||
97 | msgid "install your poche" | 191 | msgid "Cache" |
98 | msgstr "poche خود را نصب کنید" | 192 | msgstr "" |
99 | 193 | ||
100 | msgid "" | 194 | msgid "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>." | ||
104 | msgstr "" | 195 | msgstr "" |
105 | "poche هنوز نصب نیست. برای نصب لطفاً فرم زیر را پر کنید. خواندن <a " | ||
106 | "href='http://doc.inthepoche.com'>راهنما در وبگاه poche</a> را از یاد نبرید." | ||
107 | 196 | ||
108 | msgid "Login" | 197 | msgid "You can enter multiple tags, separated by commas." |
109 | msgstr "ورود" | 198 | msgstr "" |
110 | 199 | ||
111 | msgid "Repeat your password" | 200 | msgid "return to article" |
112 | msgstr "گذرواژه را دوباره وارد کنید" | 201 | msgstr "" |
113 | 202 | ||
114 | msgid "Install" | 203 | msgid "plop" |
115 | msgstr "نصب" | 204 | msgstr "plop" |
116 | 205 | ||
117 | msgid "back to top" | 206 | msgid "You can <a href='wallabag_compatibility_test.php'>check your configuration here</a>." |
118 | msgstr "بازگشت به بالای صفحه" | 207 | msgstr "" |
119 | 208 | ||
120 | msgid "favoris" | 209 | msgid "favoris" |
121 | msgstr "بهترینها" | 210 | msgstr "بهترینها" |
@@ -144,10 +233,14 @@ msgstr "با عنوان" | |||
144 | msgid "by title desc" | 233 | msgid "by title desc" |
145 | msgstr "با عنوان (الفبایی معکوس)" | 234 | msgstr "با عنوان (الفبایی معکوس)" |
146 | 235 | ||
147 | msgid "No link available here!" | 236 | msgid "Tag" |
148 | msgstr "اینجا پیوندی موجود نیست!" | 237 | msgstr "" |
149 | 238 | ||
150 | msgid "toggle mark as read" | 239 | msgid "No articles found." |
240 | msgstr "" | ||
241 | |||
242 | #, fuzzy | ||
243 | msgid "Toggle mark as read" | ||
151 | msgstr "خواندهشده/خواندهنشده" | 244 | msgstr "خواندهشده/خواندهنشده" |
152 | 245 | ||
153 | msgid "toggle favorite" | 246 | msgid "toggle favorite" |
@@ -159,13 +252,95 @@ msgstr "پاککردن" | |||
159 | msgid "original" | 252 | msgid "original" |
160 | msgstr "اصلی" | 253 | msgstr "اصلی" |
161 | 254 | ||
255 | msgid "estimated reading time:" | ||
256 | msgstr "" | ||
257 | |||
258 | msgid "mark all the entries as read" | ||
259 | msgstr "" | ||
260 | |||
162 | msgid "results" | 261 | msgid "results" |
163 | msgstr "نتایج" | 262 | msgstr "نتایج" |
164 | 263 | ||
165 | msgid "tweet" | 264 | msgid "installation" |
265 | msgstr "نصب" | ||
266 | |||
267 | #, fuzzy | ||
268 | msgid "install your wallabag" | ||
269 | msgstr "poche خود را نصب کنید" | ||
270 | |||
271 | #, fuzzy | ||
272 | msgid "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>." | ||
273 | msgstr "poche هنوز نصب نیست. برای نصب لطفاً فرم زیر را پر کنید. خواندن <a href='http://doc.inthepoche.com'>راهنما در وبگاه poche</a> را از یاد نبرید." | ||
274 | |||
275 | msgid "Login" | ||
276 | msgstr "ورود" | ||
277 | |||
278 | msgid "Repeat your password" | ||
279 | msgstr "گذرواژه را دوباره وارد کنید" | ||
280 | |||
281 | msgid "Install" | ||
282 | msgstr "نصب" | ||
283 | |||
284 | #, fuzzy | ||
285 | msgid "login to your wallabag" | ||
286 | msgstr "به poche خود وارد شوید" | ||
287 | |||
288 | msgid "Login to wallabag" | ||
289 | msgstr "" | ||
290 | |||
291 | msgid "you are in demo mode, some features may be disabled." | ||
292 | msgstr "این تنها نسخهٔ نمایشی است، برخی از ویژگیها کار نمیکنند." | ||
293 | |||
294 | msgid "Username" | ||
295 | msgstr "" | ||
296 | |||
297 | msgid "Stay signed in" | ||
298 | msgstr "مرا به خاطر بسپار" | ||
299 | |||
300 | msgid "(Do not check on public computers)" | ||
301 | msgstr "(روی رایانههای عمومی این کار را نکنید)" | ||
302 | |||
303 | msgid "Sign in" | ||
304 | msgstr "ورود" | ||
305 | |||
306 | msgid "favorites" | ||
307 | msgstr "بهترینها" | ||
308 | |||
309 | msgid "estimated reading time :" | ||
310 | msgstr "" | ||
311 | |||
312 | msgid "Mark all the entries as read" | ||
313 | msgstr "" | ||
314 | |||
315 | msgid "Return home" | ||
316 | msgstr "" | ||
317 | |||
318 | #, fuzzy | ||
319 | msgid "Back to top" | ||
320 | msgstr "بازگشت به بالای صفحه" | ||
321 | |||
322 | #, fuzzy | ||
323 | msgid "Mark as read" | ||
324 | msgstr "خواندهشده/خواندهنشده" | ||
325 | |||
326 | #, fuzzy | ||
327 | msgid "Favorite" | ||
328 | msgstr "بهترینها" | ||
329 | |||
330 | #, fuzzy | ||
331 | msgid "Toggle favorite" | ||
332 | msgstr "جزء بهترینها هست/نیست" | ||
333 | |||
334 | #, fuzzy | ||
335 | msgid "Delete" | ||
336 | msgstr "پاککردن" | ||
337 | |||
338 | #, fuzzy | ||
339 | msgid "Tweet" | ||
166 | msgstr "توییت" | 340 | msgstr "توییت" |
167 | 341 | ||
168 | msgid "email" | 342 | #, fuzzy |
343 | msgid "Email" | ||
169 | msgstr "ایمیل" | 344 | msgstr "ایمیل" |
170 | 345 | ||
171 | msgid "shaarli" | 346 | msgid "shaarli" |
@@ -174,26 +349,24 @@ msgstr "shaarli" | |||
174 | msgid "flattr" | 349 | msgid "flattr" |
175 | msgstr "flattr" | 350 | msgstr "flattr" |
176 | 351 | ||
177 | msgid "this article appears wrong?" | 352 | #, fuzzy |
353 | msgid "Does this article appear wrong?" | ||
178 | msgstr "این مطلب اشتباه نمایش داده شده؟" | 354 | msgstr "این مطلب اشتباه نمایش داده شده؟" |
179 | 355 | ||
180 | msgid "create an issue" | 356 | msgid "tags:" |
181 | msgstr "یک درخواست رفعمشکل بنویسید" | 357 | msgstr "" |
182 | |||
183 | msgid "or" | ||
184 | msgstr "یا" | ||
185 | 358 | ||
186 | msgid "contact us by mail" | 359 | msgid "Edit tags" |
187 | msgstr "به ما ایمیل بزنید" | 360 | msgstr "" |
188 | 361 | ||
189 | msgid "plop" | 362 | msgid "save link!" |
190 | msgstr "plop" | 363 | msgstr "" |
191 | 364 | ||
192 | msgid "home" | 365 | msgid "home" |
193 | msgstr "خانه" | 366 | msgstr "خانه" |
194 | 367 | ||
195 | msgid "favorites" | 368 | msgid "tags" |
196 | msgstr "بهترینها" | 369 | msgstr "" |
197 | 370 | ||
198 | msgid "logout" | 371 | msgid "logout" |
199 | msgstr "بیرون رفتن" | 372 | msgstr "بیرون رفتن" |
@@ -204,23 +377,187 @@ msgstr "نیروگرفته از" | |||
204 | msgid "debug mode is on so cache is off." | 377 | msgid "debug mode is on so cache is off." |
205 | msgstr "حالت عیبیابی فعال است، پس کاشه خاموش است." | 378 | msgstr "حالت عیبیابی فعال است، پس کاشه خاموش است." |
206 | 379 | ||
207 | msgid "your poche version:" | 380 | #, fuzzy |
208 | msgstr "نسخهٔ poche شما:" | 381 | msgid "your wallabag version:" |
382 | msgstr "نسخهٔ شما" | ||
209 | 383 | ||
210 | msgid "storage:" | 384 | msgid "storage:" |
211 | msgstr "ذخیرهسازی:" | 385 | msgstr "ذخیرهسازی:" |
212 | 386 | ||
213 | msgid "login to your poche" | 387 | msgid "save a link" |
214 | msgstr "به poche خود وارد شوید" | 388 | msgstr "" |
215 | 389 | ||
216 | msgid "you are in demo mode, some features may be disabled." | 390 | msgid "back to home" |
217 | msgstr "ین نه نهٔ نمایی س، برخی از یژگیا ک نیکنند." | 391 | msgstr "اگشت به ن" |
218 | 392 | ||
219 | msgid "Stay signed in" | 393 | msgid "toggle mark as read" |
220 | msgstr "ما ه س" | 394 | msgstr "وانهه/وننه" |
221 | 395 | ||
222 | msgid "(Do not check on public computers)" | 396 | msgid "tweet" |
223 | msgstr "(وی راینههای عمومی این کار را نکنید)" | 397 | msgstr "ویی" |
224 | 398 | ||
225 | msgid "Sign in" | 399 | msgid "email" |
226 | msgstr "ورود" | 400 | msgstr "ایمیل" |
401 | |||
402 | msgid "this article appears wrong?" | ||
403 | msgstr "این مطلب اشتباه نمایش داده شده؟" | ||
404 | |||
405 | msgid "No link available here!" | ||
406 | msgstr "اینجا پیوندی موجود نیست!" | ||
407 | |||
408 | msgid "Poching a link" | ||
409 | msgstr "پیوندی را poche کنید" | ||
410 | |||
411 | msgid "by filling this field" | ||
412 | msgstr "با پرکردن این بخش" | ||
413 | |||
414 | msgid "bookmarklet: drag & drop this link to your bookmarks bar" | ||
415 | msgstr "" | ||
416 | |||
417 | msgid "your version" | ||
418 | msgstr "نسخهٔ شما" | ||
419 | |||
420 | msgid "latest stable version" | ||
421 | msgstr "آخرین نسخهٔ پایدار" | ||
422 | |||
423 | msgid "a more recent stable version is available." | ||
424 | msgstr "نسخهٔ پایدار تازهای منتشر شده است." | ||
425 | |||
426 | msgid "you are up to date." | ||
427 | msgstr "شما بهروز هستید." | ||
428 | |||
429 | msgid "latest dev version" | ||
430 | msgstr "آخرین نسخهٔ آزمایشی" | ||
431 | |||
432 | msgid "a more recent development version is available." | ||
433 | msgstr "نسخهٔ آزمایشی تازهای منتشر شده است." | ||
434 | |||
435 | msgid "Please execute the import script locally, it can take a very long time." | ||
436 | msgstr "لطفاً برنامهٔ درونریزی را بهطور محلی اجرا کنید، شاید خیلی طول بکشد." | ||
437 | |||
438 | #, fuzzy | ||
439 | msgid "More infos in the official doc:" | ||
440 | msgstr "اطلاعات بیشتر در راهنمای رسمی:" | ||
441 | |||
442 | msgid "import from Pocket" | ||
443 | msgstr "درونریزی از Pocket" | ||
444 | |||
445 | msgid "import from Readability" | ||
446 | msgstr "درونریزی از Readability" | ||
447 | |||
448 | msgid "import from Instapaper" | ||
449 | msgstr "درونریزی از Instapaper" | ||
450 | |||
451 | msgid "Tags" | ||
452 | msgstr "" | ||
453 | |||
454 | #, fuzzy | ||
455 | msgid "Untitled" | ||
456 | msgstr "با عنوان" | ||
457 | |||
458 | msgid "the link has been added successfully" | ||
459 | msgstr "" | ||
460 | |||
461 | msgid "error during insertion : the link wasn't added" | ||
462 | msgstr "" | ||
463 | |||
464 | msgid "the link has been deleted successfully" | ||
465 | msgstr "" | ||
466 | |||
467 | msgid "the link wasn't deleted" | ||
468 | msgstr "" | ||
469 | |||
470 | msgid "Article not found!" | ||
471 | msgstr "" | ||
472 | |||
473 | msgid "previous" | ||
474 | msgstr "" | ||
475 | |||
476 | msgid "next" | ||
477 | msgstr "" | ||
478 | |||
479 | msgid "in demo mode, you can't update your password" | ||
480 | msgstr "" | ||
481 | |||
482 | msgid "your password has been updated" | ||
483 | msgstr "" | ||
484 | |||
485 | msgid "the two fields have to be filled & the password must be the same in the two fields" | ||
486 | msgstr "" | ||
487 | |||
488 | msgid "still using the \"" | ||
489 | msgstr "" | ||
490 | |||
491 | msgid "that theme does not seem to be installed" | ||
492 | msgstr "" | ||
493 | |||
494 | msgid "you have changed your theme preferences" | ||
495 | msgstr "" | ||
496 | |||
497 | msgid "that language does not seem to be installed" | ||
498 | msgstr "" | ||
499 | |||
500 | msgid "you have changed your language preferences" | ||
501 | msgstr "" | ||
502 | |||
503 | msgid "login failed: you have to fill all fields" | ||
504 | msgstr "" | ||
505 | |||
506 | msgid "welcome to your wallabag" | ||
507 | msgstr "" | ||
508 | |||
509 | msgid "login failed: bad login or password" | ||
510 | msgstr "" | ||
511 | |||
512 | #, fuzzy | ||
513 | msgid "import from instapaper completed" | ||
514 | msgstr "درونریزی از Instapaper" | ||
515 | |||
516 | #, fuzzy | ||
517 | msgid "import from pocket completed" | ||
518 | msgstr "درونریزی از Pocket" | ||
519 | |||
520 | #, fuzzy | ||
521 | msgid "import from Readability completed. " | ||
522 | msgstr "درونریزی از Readability" | ||
523 | |||
524 | #, fuzzy | ||
525 | msgid "import from Poche completed. " | ||
526 | msgstr "درونریزی از Pocket" | ||
527 | |||
528 | msgid "Unknown import provider." | ||
529 | msgstr "" | ||
530 | |||
531 | msgid "Incomplete inc/poche/define.inc.php file, please define \"" | ||
532 | msgstr "" | ||
533 | |||
534 | msgid "Could not find required \"" | ||
535 | msgstr "" | ||
536 | |||
537 | msgid "Uh, there is a problem while generating feeds." | ||
538 | msgstr "" | ||
539 | |||
540 | #, fuzzy | ||
541 | msgid "Cache deleted." | ||
542 | msgstr "پاککردن" | ||
543 | |||
544 | msgid "Oops, it seems you don't have PHP 5." | ||
545 | msgstr "" | ||
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 @@ | |||
1 | msgid "" | 1 | msgid "" |
2 | msgstr "" | 2 | msgstr "" |
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 | |||
20 | msgid "wallabag, a read it later open source system" | ||
21 | msgstr "" | ||
22 | |||
23 | msgid "login failed: user doesn't exist" | ||
24 | msgstr "" | ||
25 | |||
26 | msgid "return home" | ||
27 | msgstr "" | ||
12 | 28 | ||
13 | msgid "config" | 29 | msgid "config" |
14 | msgstr "configuration" | 30 | msgstr "configuration" |
15 | 31 | ||
16 | msgid "Poching a link" | 32 | msgid "Saving articles" |
17 | msgstr "Pocher un lien" | 33 | msgstr "" |
34 | |||
35 | msgid "There are several ways to save an article:" | ||
36 | msgstr "" | ||
18 | 37 | ||
19 | msgid "read the documentation" | 38 | msgid "read the documentation" |
20 | msgstr "lisez la documentation" | 39 | msgstr "lisez la documentation" |
21 | 40 | ||
22 | msgid "by filling this field" | 41 | msgid "download the extension" |
42 | msgstr "" | ||
43 | |||
44 | msgid "via F-Droid" | ||
45 | msgstr "" | ||
46 | |||
47 | msgid " or " | ||
48 | msgstr "" | ||
49 | |||
50 | msgid "via Google Play" | ||
51 | msgstr "" | ||
52 | |||
53 | msgid "download the application" | ||
54 | msgstr "" | ||
55 | |||
56 | #, fuzzy | ||
57 | msgid "By filling this field" | ||
23 | msgstr "en remplissant ce champ" | 58 | msgstr "en remplissant ce champ" |
24 | 59 | ||
25 | msgid "poche it!" | 60 | msgid "bag it!" |
26 | msgstr "pochez-le !" | 61 | msgstr "" |
27 | 62 | ||
28 | msgid "Updating poche" | 63 | msgid "Bookmarklet: drag & drop this link to your bookmarks bar" |
29 | msgstr "Mettre à jour poche" | 64 | msgstr "" |
30 | 65 | ||
31 | msgid "your version" | 66 | msgid "Upgrading wallabag" |
32 | msgstr "votre version" | 67 | msgstr "" |
33 | 68 | ||
34 | msgid "latest stable version" | 69 | #, fuzzy |
70 | msgid "Installed version" | ||
35 | msgstr "dernière version stable" | 71 | msgstr "dernière version stable" |
36 | 72 | ||
37 | msgid "a more recent stable version is available." | 73 | #, fuzzy |
74 | msgid "Latest stable version" | ||
75 | msgstr "dernière version stable" | ||
76 | |||
77 | #, fuzzy | ||
78 | msgid "A more recent stable version is available." | ||
38 | msgstr "une version stable plus récente est disponible." | 79 | msgstr "une version stable plus récente est disponible." |
39 | 80 | ||
40 | msgid "you are up to date." | 81 | #, fuzzy |
82 | msgid "You are up to date." | ||
41 | msgstr "vous êtes à jour." | 83 | msgstr "vous êtes à jour." |
42 | 84 | ||
43 | msgid "latest dev version" | 85 | #, fuzzy |
86 | msgid "Latest dev version" | ||
44 | msgstr "dernière version de développement" | 87 | msgstr "dernière version de développement" |
45 | 88 | ||
46 | msgid "a more recent development version is available." | 89 | #, fuzzy |
90 | msgid "A more recent development version is available." | ||
47 | msgstr "une version de développement plus récente est disponible." | 91 | msgstr "une version de développement plus récente est disponible." |
48 | 92 | ||
93 | msgid "Feeds" | ||
94 | msgstr "" | ||
95 | |||
96 | msgid "Your feed token is currently empty and must first be generated to enable feeds. Click <a href='?feed&action=generate'>here to generate it</a>." | ||
97 | msgstr "" | ||
98 | |||
99 | msgid "Unread feed" | ||
100 | msgstr "" | ||
101 | |||
102 | #, fuzzy | ||
103 | msgid "Favorites feed" | ||
104 | msgstr "favoris" | ||
105 | |||
106 | #, fuzzy | ||
107 | msgid "Archive feed" | ||
108 | msgstr "archive" | ||
109 | |||
110 | msgid "Your token:" | ||
111 | msgstr "" | ||
112 | |||
113 | msgid "Your user id:" | ||
114 | msgstr "" | ||
115 | |||
116 | msgid "You can regenerate your token: <a href='?feed&action=generate'>generate!</a>." | ||
117 | msgstr "" | ||
118 | |||
119 | #, fuzzy | ||
120 | msgid "Change your theme" | ||
121 | msgstr "Modifier votre mot de passe" | ||
122 | |||
123 | msgid "Theme:" | ||
124 | msgstr "" | ||
125 | |||
126 | msgid "Update" | ||
127 | msgstr "Mettre à jour" | ||
128 | |||
129 | #, fuzzy | ||
130 | msgid "Change your language" | ||
131 | msgstr "Modifier votre mot de passe" | ||
132 | |||
133 | msgid "Language:" | ||
134 | msgstr "" | ||
135 | |||
49 | msgid "Change your password" | 136 | msgid "Change your password" |
50 | msgstr "Modifier votre mot de passe" | 137 | msgstr "Modifier votre mot de passe" |
51 | 138 | ||
@@ -58,65 +145,68 @@ msgstr "Mot de passe" | |||
58 | msgid "Repeat your new password:" | 145 | msgid "Repeat your new password:" |
59 | msgstr "Répétez votre nouveau mot de passe :" | 146 | msgstr "Répétez votre nouveau mot de passe :" |
60 | 147 | ||
61 | msgid "Update" | ||
62 | msgstr "Mettre à jour" | ||
63 | |||
64 | msgid "Import" | 148 | msgid "Import" |
65 | msgstr "Importer" | 149 | msgstr "Importer" |
66 | 150 | ||
67 | msgid "Please execute the import script locally, it can take a very long time." | 151 | #, fuzzy |
152 | msgid "Please execute the import script locally as it can take a very long time." | ||
68 | msgstr "Merci d'exécuter l'import en local, cela peut prendre du temps." | 153 | msgstr "Merci d'exécuter l'import en local, cela peut prendre du temps." |
69 | 154 | ||
70 | msgid "More info in the official doc:" | 155 | #, fuzzy |
156 | msgid "More info in the official documentation:" | ||
71 | msgstr "Plus d'infos sur la documentation officielle" | 157 | msgstr "Plus d'infos sur la documentation officielle" |
72 | 158 | ||
73 | msgid "import from Pocket" | 159 | #, fuzzy |
160 | msgid "Import from Pocket" | ||
74 | msgstr "import depuis Pocket" | 161 | msgstr "import depuis Pocket" |
75 | 162 | ||
76 | msgid "import from Readability" | 163 | #, php-format |
164 | msgid "(you must have a %s file on your server)" | ||
165 | msgstr "" | ||
166 | |||
167 | #, fuzzy | ||
168 | msgid "Import from Readability" | ||
77 | msgstr "import depuis Readability" | 169 | msgstr "import depuis Readability" |
78 | 170 | ||
79 | msgid "import from Instapaper" | 171 | #, fuzzy |
172 | msgid "Import from Instapaper" | ||
80 | msgstr "import depuis Instapaper" | 173 | msgstr "import depuis Instapaper" |
81 | 174 | ||
82 | msgid "Export your poche data" | 175 | #, fuzzy |
176 | msgid "Import from wallabag" | ||
177 | msgstr "import depuis Readability" | ||
178 | |||
179 | #, fuzzy | ||
180 | msgid "Export your wallabag data" | ||
83 | msgstr "Exporter vos données de poche" | 181 | msgstr "Exporter vos données de poche" |
84 | 182 | ||
85 | msgid "Click here" | 183 | msgid "Click here" |
86 | msgstr "Cliquez-ici" | 184 | msgstr "Cliquez-ici" |
87 | 185 | ||
88 | msgid "to export your poche data." | 186 | msgid "to download your database." |
89 | msgstr "pour exporter vos données de poche." | 187 | msgstr "" |
90 | |||
91 | msgid "back to home" | ||
92 | msgstr "retour à l'accueil" | ||
93 | 188 | ||
94 | msgid "installation" | 189 | #, fuzzy |
95 | msgstr "installation" | 190 | msgid "to export your wallabag data." |
191 | msgstr "pour exporter vos données de poche." | ||
96 | 192 | ||
97 | msgid "install your poche" | 193 | msgid "Cache" |
98 | msgstr "installez votre poche" | 194 | msgstr "" |
99 | 195 | ||
100 | msgid "" | 196 | msgid "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>." | ||
104 | msgstr "" | 197 | msgstr "" |
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 | ||
109 | msgid "Login" | 199 | msgid "You can enter multiple tags, separated by commas." |
110 | msgstr "Nom d'utilisateur" | 200 | msgstr "" |
111 | 201 | ||
112 | msgid "Repeat your password" | 202 | msgid "return to article" |
113 | msgstr "Répétez votre mot de passe" | 203 | msgstr "" |
114 | 204 | ||
115 | msgid "Install" | 205 | msgid "plop" |
116 | msgstr "Installer" | 206 | msgstr "plop" |
117 | 207 | ||
118 | msgid "back to top" | 208 | msgid "You can <a href='wallabag_compatibility_test.php'>check your configuration here</a>." |
119 | msgstr "retour en haut de page" | 209 | msgstr "" |
120 | 210 | ||
121 | msgid "favoris" | 211 | msgid "favoris" |
122 | msgstr "favoris" | 212 | msgstr "favoris" |
@@ -145,10 +235,14 @@ msgstr "par titre" | |||
145 | msgid "by title desc" | 235 | msgid "by title desc" |
146 | msgstr "par titre desc" | 236 | msgstr "par titre desc" |
147 | 237 | ||
148 | msgid "No link available here!" | 238 | msgid "Tag" |
149 | msgstr "Aucun lien n'est disponible ici !" | 239 | msgstr "" |
150 | 240 | ||
151 | msgid "toggle mark as read" | 241 | msgid "No articles found." |
242 | msgstr "" | ||
243 | |||
244 | #, fuzzy | ||
245 | msgid "Toggle mark as read" | ||
152 | msgstr "marquer comme lu / non lu" | 246 | msgstr "marquer comme lu / non lu" |
153 | 247 | ||
154 | msgid "toggle favorite" | 248 | msgid "toggle favorite" |
@@ -160,13 +254,95 @@ msgstr "supprimer" | |||
160 | msgid "original" | 254 | msgid "original" |
161 | msgstr "original" | 255 | msgstr "original" |
162 | 256 | ||
257 | msgid "estimated reading time:" | ||
258 | msgstr "" | ||
259 | |||
260 | msgid "mark all the entries as read" | ||
261 | msgstr "" | ||
262 | |||
163 | msgid "results" | 263 | msgid "results" |
164 | msgstr "résultats" | 264 | msgstr "résultats" |
165 | 265 | ||
166 | msgid "tweet" | 266 | msgid "installation" |
267 | msgstr "installation" | ||
268 | |||
269 | #, fuzzy | ||
270 | msgid "install your wallabag" | ||
271 | msgstr "installez votre poche" | ||
272 | |||
273 | #, fuzzy | ||
274 | msgid "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>." | ||
275 | msgstr "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 | |||
277 | msgid "Login" | ||
278 | msgstr "Nom d'utilisateur" | ||
279 | |||
280 | msgid "Repeat your password" | ||
281 | msgstr "Répétez votre mot de passe" | ||
282 | |||
283 | msgid "Install" | ||
284 | msgstr "Installer" | ||
285 | |||
286 | #, fuzzy | ||
287 | msgid "login to your wallabag" | ||
288 | msgstr "se connecter à votre poche" | ||
289 | |||
290 | msgid "Login to wallabag" | ||
291 | msgstr "" | ||
292 | |||
293 | msgid "you are in demo mode, some features may be disabled." | ||
294 | msgstr "vous êtes en mode démo, certaines fonctionnalités peuvent être désactivées." | ||
295 | |||
296 | msgid "Username" | ||
297 | msgstr "" | ||
298 | |||
299 | msgid "Stay signed in" | ||
300 | msgstr "Rester connecté" | ||
301 | |||
302 | msgid "(Do not check on public computers)" | ||
303 | msgstr "(ne pas cocher sur un ordinateur public)" | ||
304 | |||
305 | msgid "Sign in" | ||
306 | msgstr "Se connecter" | ||
307 | |||
308 | msgid "favorites" | ||
309 | msgstr "favoris" | ||
310 | |||
311 | msgid "estimated reading time :" | ||
312 | msgstr "" | ||
313 | |||
314 | msgid "Mark all the entries as read" | ||
315 | msgstr "" | ||
316 | |||
317 | msgid "Return home" | ||
318 | msgstr "" | ||
319 | |||
320 | #, fuzzy | ||
321 | msgid "Back to top" | ||
322 | msgstr "retour en haut de page" | ||
323 | |||
324 | #, fuzzy | ||
325 | msgid "Mark as read" | ||
326 | msgstr "marquer comme lu / non lu" | ||
327 | |||
328 | #, fuzzy | ||
329 | msgid "Favorite" | ||
330 | msgstr "favoris" | ||
331 | |||
332 | #, fuzzy | ||
333 | msgid "Toggle favorite" | ||
334 | msgstr "marquer comme favori" | ||
335 | |||
336 | #, fuzzy | ||
337 | msgid "Delete" | ||
338 | msgstr "supprimer" | ||
339 | |||
340 | #, fuzzy | ||
341 | msgid "Tweet" | ||
167 | msgstr "tweet" | 342 | msgstr "tweet" |
168 | 343 | ||
169 | msgid "email" | 344 | #, fuzzy |
345 | msgid "Email" | ||
170 | msgstr "email" | 346 | msgstr "email" |
171 | 347 | ||
172 | msgid "shaarli" | 348 | msgid "shaarli" |
@@ -175,26 +351,24 @@ msgstr "shaarli" | |||
175 | msgid "flattr" | 351 | msgid "flattr" |
176 | msgstr "flattr" | 352 | msgstr "flattr" |
177 | 353 | ||
178 | msgid "this article appears wrong?" | 354 | #, fuzzy |
355 | msgid "Does this article appear wrong?" | ||
179 | msgstr "cet article s'affiche mal ?" | 356 | msgstr "cet article s'affiche mal ?" |
180 | 357 | ||
181 | msgid "create an issue" | 358 | msgid "tags:" |
182 | msgstr "créez un ticket" | 359 | msgstr "" |
183 | |||
184 | msgid "or" | ||
185 | msgstr "ou" | ||
186 | 360 | ||
187 | msgid "contact us by mail" | 361 | msgid "Edit tags" |
188 | msgstr "contactez-nous par email" | 362 | msgstr "" |
189 | 363 | ||
190 | msgid "plop" | 364 | msgid "save link!" |
191 | msgstr "plop" | 365 | msgstr "" |
192 | 366 | ||
193 | msgid "home" | 367 | msgid "home" |
194 | msgstr "accueil" | 368 | msgstr "accueil" |
195 | 369 | ||
196 | msgid "favorites" | 370 | msgid "tags" |
197 | msgstr "favoris" | 371 | msgstr "" |
198 | 372 | ||
199 | msgid "logout" | 373 | msgid "logout" |
200 | msgstr "déconnexion" | 374 | msgstr "déconnexion" |
@@ -205,24 +379,195 @@ msgstr "propulsé par" | |||
205 | msgid "debug mode is on so cache is off." | 379 | msgid "debug mode is on so cache is off." |
206 | msgstr "le mode de debug est actif, le cache est donc désactivé." | 380 | msgstr "le mode de debug est actif, le cache est donc désactivé." |
207 | 381 | ||
208 | msgid "your poche version:" | 382 | #, fuzzy |
209 | msgstr "votre version de poche :" | 383 | msgid "your wallabag version:" |
384 | msgstr "votre version" | ||
210 | 385 | ||
211 | msgid "storage:" | 386 | msgid "storage:" |
212 | msgstr "stockage :" | 387 | msgstr "stockage :" |
213 | 388 | ||
214 | msgid "login to your poche" | 389 | msgid "save a link" |
215 | msgstr "se connecter à votre poche" | 390 | msgstr "" |
216 | 391 | ||
217 | msgid "you are in demo mode, some features may be disabled." | 392 | msgid "back to home" |
393 | msgstr "retour à l'accueil" | ||
394 | |||
395 | msgid "toggle mark as read" | ||
396 | msgstr "marquer comme lu / non lu" | ||
397 | |||
398 | msgid "tweet" | ||
399 | msgstr "tweet" | ||
400 | |||
401 | msgid "email" | ||
402 | msgstr "email" | ||
403 | |||
404 | msgid "this article appears wrong?" | ||
405 | msgstr "cet article s'affiche mal ?" | ||
406 | |||
407 | msgid "No link available here!" | ||
408 | msgstr "Aucun lien n'est disponible ici !" | ||
409 | |||
410 | msgid "Poching a link" | ||
411 | msgstr "Pocher un lien" | ||
412 | |||
413 | msgid "by filling this field" | ||
414 | msgstr "en remplissant ce champ" | ||
415 | |||
416 | msgid "bookmarklet: drag & drop this link to your bookmarks bar" | ||
218 | msgstr "" | 417 | msgstr "" |
219 | "vous êtes en mode démo, certaines fonctionnalités peuvent être désactivées." | ||
220 | 418 | ||
221 | msgid "Stay signed in" | 419 | msgid "your version" |
222 | msgstr "Rester connecté" | 420 | msgstr "votre version" |
223 | 421 | ||
224 | msgid "(Do not check on public computers)" | 422 | msgid "latest stable version" |
225 | msgstr "(ne pas cocher sur un ordinateur public)" | 423 | msgstr "dernière version stable" |
226 | 424 | ||
227 | msgid "Sign in" | 425 | msgid "a more recent stable version is available." |
228 | msgstr "Se connecter" | 426 | msgstr "une version stable plus récente est disponible." |
427 | |||
428 | msgid "you are up to date." | ||
429 | msgstr "vous êtes à jour." | ||
430 | |||
431 | msgid "latest dev version" | ||
432 | msgstr "dernière version de développement" | ||
433 | |||
434 | msgid "a more recent development version is available." | ||
435 | msgstr "une version de développement plus récente est disponible." | ||
436 | |||
437 | msgid "Please execute the import script locally, it can take a very long time." | ||
438 | msgstr "Merci d'exécuter l'import en local, cela peut prendre du temps." | ||
439 | |||
440 | #, fuzzy | ||
441 | msgid "More infos in the official doc:" | ||
442 | msgstr "Plus d'infos sur la documentation officielle" | ||
443 | |||
444 | msgid "import from Pocket" | ||
445 | msgstr "import depuis Pocket" | ||
446 | |||
447 | msgid "import from Readability" | ||
448 | msgstr "import depuis Readability" | ||
449 | |||
450 | msgid "import from Instapaper" | ||
451 | msgstr "import depuis Instapaper" | ||
452 | |||
453 | msgid "Tags" | ||
454 | msgstr "" | ||
455 | |||
456 | #, fuzzy | ||
457 | msgid "Untitled" | ||
458 | msgstr "par titre" | ||
459 | |||
460 | msgid "the link has been added successfully" | ||
461 | msgstr "" | ||
462 | |||
463 | msgid "error during insertion : the link wasn't added" | ||
464 | msgstr "" | ||
465 | |||
466 | msgid "the link has been deleted successfully" | ||
467 | msgstr "" | ||
468 | |||
469 | msgid "the link wasn't deleted" | ||
470 | msgstr "" | ||
471 | |||
472 | msgid "Article not found!" | ||
473 | msgstr "" | ||
474 | |||
475 | msgid "previous" | ||
476 | msgstr "" | ||
477 | |||
478 | msgid "next" | ||
479 | msgstr "" | ||
480 | |||
481 | msgid "in demo mode, you can't update your password" | ||
482 | msgstr "" | ||
483 | |||
484 | msgid "your password has been updated" | ||
485 | msgstr "" | ||
486 | |||
487 | msgid "the two fields have to be filled & the password must be the same in the two fields" | ||
488 | msgstr "" | ||
489 | |||
490 | msgid "still using the \"" | ||
491 | msgstr "" | ||
492 | |||
493 | msgid "that theme does not seem to be installed" | ||
494 | msgstr "" | ||
495 | |||
496 | msgid "you have changed your theme preferences" | ||
497 | msgstr "" | ||
498 | |||
499 | msgid "that language does not seem to be installed" | ||
500 | msgstr "" | ||
501 | |||
502 | msgid "you have changed your language preferences" | ||
503 | msgstr "" | ||
504 | |||
505 | msgid "login failed: you have to fill all fields" | ||
506 | msgstr "" | ||
507 | |||
508 | msgid "welcome to your wallabag" | ||
509 | msgstr "" | ||
510 | |||
511 | msgid "login failed: bad login or password" | ||
512 | msgstr "" | ||
513 | |||
514 | #, fuzzy | ||
515 | msgid "import from instapaper completed" | ||
516 | msgstr "import depuis Instapaper" | ||
517 | |||
518 | #, fuzzy | ||
519 | msgid "import from pocket completed" | ||
520 | msgstr "import depuis Pocket" | ||
521 | |||
522 | #, fuzzy | ||
523 | msgid "import from Readability completed. " | ||
524 | msgstr "import depuis Readability" | ||
525 | |||
526 | #, fuzzy | ||
527 | msgid "import from Poche completed. " | ||
528 | msgstr "import depuis Pocket" | ||
529 | |||
530 | msgid "Unknown import provider." | ||
531 | msgstr "" | ||
532 | |||
533 | msgid "Incomplete inc/poche/define.inc.php file, please define \"" | ||
534 | msgstr "" | ||
535 | |||
536 | msgid "Could not find required \"" | ||
537 | msgstr "" | ||
538 | |||
539 | msgid "Uh, there is a problem while generating feeds." | ||
540 | msgstr "" | ||
541 | |||
542 | #, fuzzy | ||
543 | msgid "Cache deleted." | ||
544 | msgstr "supprimer" | ||
545 | |||
546 | msgid "Oops, it seems you don't have PHP 5." | ||
547 | msgstr "" | ||
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 @@ | |||
4 | msgid "" | 4 | msgid "" |
5 | msgstr "" | 5 | msgstr "" |
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 | |||
23 | msgid "wallabag, a read it later open source system" | ||
24 | msgstr "" | ||
25 | |||
26 | msgid "login failed: user doesn't exist" | ||
27 | msgstr "" | ||
28 | |||
29 | msgid "return home" | ||
30 | msgstr "" | ||
18 | 31 | ||
19 | msgid "config" | 32 | msgid "config" |
20 | msgstr "configurazione" | 33 | msgstr "configurazione" |
21 | 34 | ||
22 | msgid "Poching a link" | 35 | msgid "Saving articles" |
23 | msgstr "Pochare un link" | 36 | msgstr "" |
37 | |||
38 | msgid "There are several ways to save an article:" | ||
39 | msgstr "" | ||
24 | 40 | ||
25 | msgid "read the documentation" | 41 | msgid "read the documentation" |
26 | msgstr "leggi la documentazione" | 42 | msgstr "leggi la documentazione" |
27 | 43 | ||
28 | msgid "by filling this field" | 44 | msgid "download the extension" |
45 | msgstr "" | ||
46 | |||
47 | msgid "via F-Droid" | ||
48 | msgstr "" | ||
49 | |||
50 | msgid " or " | ||
51 | msgstr "" | ||
52 | |||
53 | msgid "via Google Play" | ||
54 | msgstr "" | ||
55 | |||
56 | msgid "download the application" | ||
57 | msgstr "" | ||
58 | |||
59 | #, fuzzy | ||
60 | msgid "By filling this field" | ||
29 | msgstr "compilando questo campo" | 61 | msgstr "compilando questo campo" |
30 | 62 | ||
31 | msgid "poche it!" | 63 | msgid "bag it!" |
32 | msgstr "pochalo!" | 64 | msgstr "" |
33 | 65 | ||
34 | msgid "Updating poche" | 66 | msgid "Bookmarklet: drag & drop this link to your bookmarks bar" |
35 | msgstr "Aggiornamento poche" | 67 | msgstr "" |
36 | 68 | ||
37 | msgid "your version" | 69 | msgid "Upgrading wallabag" |
38 | msgstr "la tua versione" | 70 | msgstr "" |
39 | 71 | ||
40 | msgid "latest stable version" | 72 | #, fuzzy |
73 | msgid "Installed version" | ||
41 | msgstr "ultima versione stabile" | 74 | msgstr "ultima versione stabile" |
42 | 75 | ||
43 | msgid "a more recent stable version is available." | 76 | #, fuzzy |
77 | msgid "Latest stable version" | ||
78 | msgstr "ultima versione stabile" | ||
79 | |||
80 | #, fuzzy | ||
81 | msgid "A more recent stable version is available." | ||
44 | msgstr "è disponibile una versione stabile più recente." | 82 | msgstr "è disponibile una versione stabile più recente." |
45 | 83 | ||
46 | msgid "you are up to date." | 84 | #, fuzzy |
85 | msgid "You are up to date." | ||
47 | msgstr "sei aggiornato." | 86 | msgstr "sei aggiornato." |
48 | 87 | ||
49 | msgid "latest dev version" | 88 | #, fuzzy |
89 | msgid "Latest dev version" | ||
50 | msgstr "ultima versione di sviluppo" | 90 | msgstr "ultima versione di sviluppo" |
51 | 91 | ||
52 | msgid "a more recent development version is available." | 92 | #, fuzzy |
93 | msgid "A more recent development version is available." | ||
53 | msgstr "è disponibile una versione di sviluppo più recente." | 94 | msgstr "è disponibile una versione di sviluppo più recente." |
54 | 95 | ||
96 | msgid "Feeds" | ||
97 | msgstr "" | ||
98 | |||
99 | msgid "Your feed token is currently empty and must first be generated to enable feeds. Click <a href='?feed&action=generate'>here to generate it</a>." | ||
100 | msgstr "" | ||
101 | |||
102 | msgid "Unread feed" | ||
103 | msgstr "" | ||
104 | |||
105 | #, fuzzy | ||
106 | msgid "Favorites feed" | ||
107 | msgstr "preferiti" | ||
108 | |||
109 | #, fuzzy | ||
110 | msgid "Archive feed" | ||
111 | msgstr "archivio" | ||
112 | |||
113 | msgid "Your token:" | ||
114 | msgstr "" | ||
115 | |||
116 | msgid "Your user id:" | ||
117 | msgstr "" | ||
118 | |||
119 | msgid "You can regenerate your token: <a href='?feed&action=generate'>generate!</a>." | ||
120 | msgstr "" | ||
121 | |||
122 | #, fuzzy | ||
123 | msgid "Change your theme" | ||
124 | msgstr "Cambia la tua password" | ||
125 | |||
126 | msgid "Theme:" | ||
127 | msgstr "" | ||
128 | |||
129 | msgid "Update" | ||
130 | msgstr "Aggiorna" | ||
131 | |||
132 | #, fuzzy | ||
133 | msgid "Change your language" | ||
134 | msgstr "Cambia la tua password" | ||
135 | |||
136 | msgid "Language:" | ||
137 | msgstr "" | ||
138 | |||
55 | msgid "Change your password" | 139 | msgid "Change your password" |
56 | msgstr "Cambia la tua password" | 140 | msgstr "Cambia la tua password" |
57 | 141 | ||
@@ -64,67 +148,68 @@ msgstr "Password" | |||
64 | msgid "Repeat your new password:" | 148 | msgid "Repeat your new password:" |
65 | msgstr "Ripeti la nuova password:" | 149 | msgstr "Ripeti la nuova password:" |
66 | 150 | ||
67 | msgid "Update" | ||
68 | msgstr "Aggiorna" | ||
69 | |||
70 | msgid "Import" | 151 | msgid "Import" |
71 | msgstr "Importa" | 152 | msgstr "Importa" |
72 | 153 | ||
73 | msgid "Please execute the import script locally, it can take a very long time." | 154 | #, fuzzy |
74 | msgstr "" | 155 | msgid "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ò " | 156 | msgstr "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 | ||
78 | msgid "More info in the official doc:" | 158 | #, fuzzy |
159 | msgid "More info in the official documentation:" | ||
79 | msgstr "Maggiori info nella documentazione ufficiale" | 160 | msgstr "Maggiori info nella documentazione ufficiale" |
80 | 161 | ||
81 | msgid "import from Pocket" | 162 | #, fuzzy |
163 | msgid "Import from Pocket" | ||
82 | msgstr "Importa da Pocket" | 164 | msgstr "Importa da Pocket" |
83 | 165 | ||
84 | msgid "import from Readability" | 166 | #, php-format |
167 | msgid "(you must have a %s file on your server)" | ||
168 | msgstr "" | ||
169 | |||
170 | #, fuzzy | ||
171 | msgid "Import from Readability" | ||
85 | msgstr "Importa da Readability" | 172 | msgstr "Importa da Readability" |
86 | 173 | ||
87 | msgid "import from Instapaper" | 174 | #, fuzzy |
175 | msgid "Import from Instapaper" | ||
88 | msgstr "Importa da Instapaper" | 176 | msgstr "Importa da Instapaper" |
89 | 177 | ||
90 | msgid "Export your poche data" | 178 | #, fuzzy |
179 | msgid "Import from wallabag" | ||
180 | msgstr "Importa da Readability" | ||
181 | |||
182 | #, fuzzy | ||
183 | msgid "Export your wallabag data" | ||
91 | msgstr "Esporta i tuoi dati di poche" | 184 | msgstr "Esporta i tuoi dati di poche" |
92 | 185 | ||
93 | msgid "Click here" | 186 | msgid "Click here" |
94 | msgstr "Fai clic qui" | 187 | msgstr "Fai clic qui" |
95 | 188 | ||
96 | msgid "to export your poche data." | 189 | msgid "to download your database." |
97 | msgstr "per esportare i tuoi dati di poche." | 190 | msgstr "" |
98 | |||
99 | msgid "back to home" | ||
100 | msgstr "torna alla home" | ||
101 | 191 | ||
102 | msgid "installation" | 192 | #, fuzzy |
103 | msgstr "installazione" | 193 | msgid "to export your wallabag data." |
194 | msgstr "per esportare i tuoi dati di poche." | ||
104 | 195 | ||
105 | msgid "install your poche" | 196 | msgid "Cache" |
106 | msgstr "installa il tuo poche" | 197 | msgstr "" |
107 | 198 | ||
108 | msgid "" | 199 | msgid "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>." | ||
112 | msgstr "" | 200 | msgstr "" |
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 | ||
117 | msgid "Login" | 202 | msgid "You can enter multiple tags, separated by commas." |
118 | msgstr "Nome utente" | 203 | msgstr "" |
119 | 204 | ||
120 | msgid "Repeat your password" | 205 | msgid "return to article" |
121 | msgstr "Ripeti la tua password" | 206 | msgstr "" |
122 | 207 | ||
123 | msgid "Install" | 208 | msgid "plop" |
124 | msgstr "Installa" | 209 | msgstr "plop" |
125 | 210 | ||
126 | msgid "back to top" | 211 | msgid "You can <a href='wallabag_compatibility_test.php'>check your configuration here</a>." |
127 | msgstr "torna a inizio pagina" | 212 | msgstr "" |
128 | 213 | ||
129 | msgid "favoris" | 214 | msgid "favoris" |
130 | msgstr "preferiti" | 215 | msgstr "preferiti" |
@@ -153,10 +238,14 @@ msgstr "per titolo" | |||
153 | msgid "by title desc" | 238 | msgid "by title desc" |
154 | msgstr "per titolo decr" | 239 | msgstr "per titolo decr" |
155 | 240 | ||
156 | msgid "No link available here!" | 241 | msgid "Tag" |
157 | msgstr "Nessun link disponibile!" | 242 | msgstr "" |
158 | 243 | ||
159 | msgid "toggle mark as read" | 244 | msgid "No articles found." |
245 | msgstr "" | ||
246 | |||
247 | #, fuzzy | ||
248 | msgid "Toggle mark as read" | ||
160 | msgstr "segna come letto / non letto" | 249 | msgstr "segna come letto / non letto" |
161 | 250 | ||
162 | msgid "toggle favorite" | 251 | msgid "toggle favorite" |
@@ -168,13 +257,95 @@ msgstr "elimina" | |||
168 | msgid "original" | 257 | msgid "original" |
169 | msgstr "originale" | 258 | msgstr "originale" |
170 | 259 | ||
260 | msgid "estimated reading time:" | ||
261 | msgstr "" | ||
262 | |||
263 | msgid "mark all the entries as read" | ||
264 | msgstr "" | ||
265 | |||
171 | msgid "results" | 266 | msgid "results" |
172 | msgstr "risultati" | 267 | msgstr "risultati" |
173 | 268 | ||
174 | msgid "tweet" | 269 | msgid "installation" |
270 | msgstr "installazione" | ||
271 | |||
272 | #, fuzzy | ||
273 | msgid "install your wallabag" | ||
274 | msgstr "installa il tuo poche" | ||
275 | |||
276 | #, fuzzy | ||
277 | msgid "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>." | ||
278 | msgstr "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 | |||
280 | msgid "Login" | ||
281 | msgstr "Nome utente" | ||
282 | |||
283 | msgid "Repeat your password" | ||
284 | msgstr "Ripeti la tua password" | ||
285 | |||
286 | msgid "Install" | ||
287 | msgstr "Installa" | ||
288 | |||
289 | #, fuzzy | ||
290 | msgid "login to your wallabag" | ||
291 | msgstr "accedi al tuo poche" | ||
292 | |||
293 | msgid "Login to wallabag" | ||
294 | msgstr "" | ||
295 | |||
296 | msgid "you are in demo mode, some features may be disabled." | ||
297 | msgstr "sei in modalità dimostrazione, alcune funzionalità potrebbero essere disattivate." | ||
298 | |||
299 | msgid "Username" | ||
300 | msgstr "" | ||
301 | |||
302 | msgid "Stay signed in" | ||
303 | msgstr "Resta connesso" | ||
304 | |||
305 | msgid "(Do not check on public computers)" | ||
306 | msgstr "(non selezionare su computer pubblici)" | ||
307 | |||
308 | msgid "Sign in" | ||
309 | msgstr "Accedi" | ||
310 | |||
311 | msgid "favorites" | ||
312 | msgstr "preferiti" | ||
313 | |||
314 | msgid "estimated reading time :" | ||
315 | msgstr "" | ||
316 | |||
317 | msgid "Mark all the entries as read" | ||
318 | msgstr "" | ||
319 | |||
320 | msgid "Return home" | ||
321 | msgstr "" | ||
322 | |||
323 | #, fuzzy | ||
324 | msgid "Back to top" | ||
325 | msgstr "torna a inizio pagina" | ||
326 | |||
327 | #, fuzzy | ||
328 | msgid "Mark as read" | ||
329 | msgstr "segna come letto / non letto" | ||
330 | |||
331 | #, fuzzy | ||
332 | msgid "Favorite" | ||
333 | msgstr "preferiti" | ||
334 | |||
335 | #, fuzzy | ||
336 | msgid "Toggle favorite" | ||
337 | msgstr "segna come preferito" | ||
338 | |||
339 | #, fuzzy | ||
340 | msgid "Delete" | ||
341 | msgstr "elimina" | ||
342 | |||
343 | #, fuzzy | ||
344 | msgid "Tweet" | ||
175 | msgstr "twitta" | 345 | msgstr "twitta" |
176 | 346 | ||
177 | msgid "email" | 347 | #, fuzzy |
348 | msgid "Email" | ||
178 | msgstr "email" | 349 | msgstr "email" |
179 | 350 | ||
180 | msgid "shaarli" | 351 | msgid "shaarli" |
@@ -183,26 +354,24 @@ msgstr "shaarli" | |||
183 | msgid "flattr" | 354 | msgid "flattr" |
184 | msgstr "flattr" | 355 | msgstr "flattr" |
185 | 356 | ||
186 | msgid "this article appears wrong?" | 357 | #, fuzzy |
358 | msgid "Does this article appear wrong?" | ||
187 | msgstr "articolo non visualizzato correttamente?" | 359 | msgstr "articolo non visualizzato correttamente?" |
188 | 360 | ||
189 | msgid "create an issue" | 361 | msgid "tags:" |
190 | msgstr "crea una segnalazione" | 362 | msgstr "" |
191 | |||
192 | msgid "or" | ||
193 | msgstr "oppure" | ||
194 | 363 | ||
195 | msgid "contact us by mail" | 364 | msgid "Edit tags" |
196 | msgstr "contattaci via email" | 365 | msgstr "" |
197 | 366 | ||
198 | msgid "plop" | 367 | msgid "save link!" |
199 | msgstr "plop" | 368 | msgstr "" |
200 | 369 | ||
201 | msgid "home" | 370 | msgid "home" |
202 | msgstr "home" | 371 | msgstr "home" |
203 | 372 | ||
204 | msgid "favorites" | 373 | msgid "tags" |
205 | msgstr "preferiti" | 374 | msgstr "" |
206 | 375 | ||
207 | msgid "logout" | 376 | msgid "logout" |
208 | msgstr "esci" | 377 | msgstr "esci" |
@@ -213,25 +382,187 @@ msgstr "realizzato con" | |||
213 | msgid "debug mode is on so cache is off." | 382 | msgid "debug mode is on so cache is off." |
214 | msgstr "modalità di debug attiva, cache disattivata." | 383 | msgstr "modalità di debug attiva, cache disattivata." |
215 | 384 | ||
216 | msgid "your poche version:" | 385 | #, fuzzy |
217 | msgstr "la tua versione di poche:" | 386 | msgid "your wallabag version:" |
387 | msgstr "la tua versione" | ||
218 | 388 | ||
219 | msgid "storage:" | 389 | msgid "storage:" |
220 | msgstr "memoria:" | 390 | msgstr "memoria:" |
221 | 391 | ||
222 | msgid "login to your poche" | 392 | msgid "save a link" |
223 | msgstr "accedi al tuo poche" | 393 | msgstr "" |
224 | 394 | ||
225 | msgid "you are in demo mode, some features may be disabled." | 395 | msgid "back to home" |
396 | msgstr "torna alla home" | ||
397 | |||
398 | msgid "toggle mark as read" | ||
399 | msgstr "segna come letto / non letto" | ||
400 | |||
401 | msgid "tweet" | ||
402 | msgstr "twitta" | ||
403 | |||
404 | msgid "email" | ||
405 | msgstr "email" | ||
406 | |||
407 | msgid "this article appears wrong?" | ||
408 | msgstr "articolo non visualizzato correttamente?" | ||
409 | |||
410 | msgid "No link available here!" | ||
411 | msgstr "Nessun link disponibile!" | ||
412 | |||
413 | msgid "Poching a link" | ||
414 | msgstr "Pochare un link" | ||
415 | |||
416 | msgid "by filling this field" | ||
417 | msgstr "compilando questo campo" | ||
418 | |||
419 | msgid "bookmarklet: drag & drop this link to your bookmarks bar" | ||
226 | msgstr "" | 420 | msgstr "" |
227 | "sei in modalità dimostrazione, alcune funzionalità potrebbero essere " | ||
228 | "disattivate." | ||
229 | 421 | ||
230 | msgid "Stay signed in" | 422 | msgid "your version" |
231 | msgstr "Resta connesso" | 423 | msgstr "la tua versione" |
232 | 424 | ||
233 | msgid "(Do not check on public computers)" | 425 | msgid "latest stable version" |
234 | msgstr "(non selezionare su computer pubblici)" | 426 | msgstr "ultima versione stabile" |
235 | 427 | ||
236 | msgid "Sign in" | 428 | msgid "a more recent stable version is available." |
237 | msgstr "Accedi" | 429 | msgstr "è disponibile una versione stabile più recente." |
430 | |||
431 | msgid "you are up to date." | ||
432 | msgstr "sei aggiornato." | ||
433 | |||
434 | msgid "latest dev version" | ||
435 | msgstr "ultima versione di sviluppo" | ||
436 | |||
437 | msgid "a more recent development version is available." | ||
438 | msgstr "è disponibile una versione di sviluppo più recente." | ||
439 | |||
440 | msgid "Please execute the import script locally, it can take a very long time." | ||
441 | msgstr "Si prega di eseguire lo script di importazione a livello locale, può richiedere un tempo molto lungo." | ||
442 | |||
443 | #, fuzzy | ||
444 | msgid "More infos in the official doc:" | ||
445 | msgstr "Maggiori info nella documentazione ufficiale" | ||
446 | |||
447 | msgid "import from Pocket" | ||
448 | msgstr "Importa da Pocket" | ||
449 | |||
450 | msgid "import from Readability" | ||
451 | msgstr "Importa da Readability" | ||
452 | |||
453 | msgid "import from Instapaper" | ||
454 | msgstr "Importa da Instapaper" | ||
455 | |||
456 | msgid "Tags" | ||
457 | msgstr "" | ||
458 | |||
459 | #, fuzzy | ||
460 | msgid "Untitled" | ||
461 | msgstr "per titolo" | ||
462 | |||
463 | msgid "the link has been added successfully" | ||
464 | msgstr "" | ||
465 | |||
466 | msgid "error during insertion : the link wasn't added" | ||
467 | msgstr "" | ||
468 | |||
469 | msgid "the link has been deleted successfully" | ||
470 | msgstr "" | ||
471 | |||
472 | msgid "the link wasn't deleted" | ||
473 | msgstr "" | ||
474 | |||
475 | msgid "Article not found!" | ||
476 | msgstr "" | ||
477 | |||
478 | msgid "previous" | ||
479 | msgstr "" | ||
480 | |||
481 | msgid "next" | ||
482 | msgstr "" | ||
483 | |||
484 | msgid "in demo mode, you can't update your password" | ||
485 | msgstr "" | ||
486 | |||
487 | msgid "your password has been updated" | ||
488 | msgstr "" | ||
489 | |||
490 | msgid "the two fields have to be filled & the password must be the same in the two fields" | ||
491 | msgstr "" | ||
492 | |||
493 | msgid "still using the \"" | ||
494 | msgstr "" | ||
495 | |||
496 | msgid "that theme does not seem to be installed" | ||
497 | msgstr "" | ||
498 | |||
499 | msgid "you have changed your theme preferences" | ||
500 | msgstr "" | ||
501 | |||
502 | msgid "that language does not seem to be installed" | ||
503 | msgstr "" | ||
504 | |||
505 | msgid "you have changed your language preferences" | ||
506 | msgstr "" | ||
507 | |||
508 | msgid "login failed: you have to fill all fields" | ||
509 | msgstr "" | ||
510 | |||
511 | msgid "welcome to your wallabag" | ||
512 | msgstr "" | ||
513 | |||
514 | msgid "login failed: bad login or password" | ||
515 | msgstr "" | ||
516 | |||
517 | #, fuzzy | ||
518 | msgid "import from instapaper completed" | ||
519 | msgstr "Importa da Instapaper" | ||
520 | |||
521 | #, fuzzy | ||
522 | msgid "import from pocket completed" | ||
523 | msgstr "Importa da Pocket" | ||
524 | |||
525 | #, fuzzy | ||
526 | msgid "import from Readability completed. " | ||
527 | msgstr "Importa da Readability" | ||
528 | |||
529 | #, fuzzy | ||
530 | msgid "import from Poche completed. " | ||
531 | msgstr "Importa da Pocket" | ||
532 | |||
533 | msgid "Unknown import provider." | ||
534 | msgstr "" | ||
535 | |||
536 | msgid "Incomplete inc/poche/define.inc.php file, please define \"" | ||
537 | msgstr "" | ||
538 | |||
539 | msgid "Could not find required \"" | ||
540 | msgstr "" | ||
541 | |||
542 | msgid "Uh, there is a problem while generating feeds." | ||
543 | msgstr "" | ||
544 | |||
545 | #, fuzzy | ||
546 | msgid "Cache deleted." | ||
547 | msgstr "elimina" | ||
548 | |||
549 | msgid "Oops, it seems you don't have PHP 5." | ||
550 | msgstr "" | ||
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 "" | |||
2 | msgstr "" | 2 | msgstr "" |
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 | ||
20 | msgid "poche, a read it later open source system" | 20 | msgid "poche, a read it later open source system" |
21 | msgstr "poche, serwis odrocznego czytania open source" | 21 | msgstr "poche, serwis odrocznego czytania open source" |
@@ -23,72 +23,163 @@ msgstr "poche, serwis odrocznego czytania open source" | |||
23 | msgid "login failed: user doesn't exist" | 23 | msgid "login failed: user doesn't exist" |
24 | msgstr "logowanie nie udało się: użytkownik nie istnieje" | 24 | msgstr "logowanie nie udało się: użytkownik nie istnieje" |
25 | 25 | ||
26 | msgid "Return home" | 26 | msgid "home" |
27 | msgstr "Wrocic do głównej" | 27 | msgstr "główna" |
28 | 28 | ||
29 | msgid "Back to top" | 29 | msgid "favorites" |
30 | msgstr "Wrócić na górę" | 30 | msgstr "ulubione" |
31 | 31 | ||
32 | msgid "original" | 32 | msgid "archive" |
33 | msgstr "oryginal" | 33 | msgstr "archiwum" |
34 | 34 | ||
35 | msgid "Mark as read" | 35 | msgid "tags" |
36 | msgstr "Zaznacz jako przeczytane" | 36 | msgstr "tagi" |
37 | 37 | ||
38 | msgid "Toggle mark as read" | 38 | msgid "config" |
39 | msgstr "Przełącz jako przeczytane" | 39 | msgstr "ustawienia" |
40 | 40 | ||
41 | msgid "Favorite" | 41 | msgid "logout" |
42 | msgstr "Ulubiony" | 42 | msgstr "wyloguj" |
43 | 43 | ||
44 | msgid "Toggle favorite" | 44 | msgid "back to home" |
45 | msgstr "Zaznacz jako ulubione" | 45 | msgstr "wrócić do głównej" |
46 | 46 | ||
47 | msgid "Delete" | 47 | msgid "Tags" |
48 | msgstr "Usuń" | 48 | msgstr "Tegi" |
49 | 49 | ||
50 | msgid "Tweet" | 50 | #, fuzzy |
51 | msgstr "Tweet" | 51 | msgid "Poching a link" |
52 | msgstr "Zapisywanie linków" | ||
52 | 53 | ||
53 | msgid "Email" | 54 | msgid "You can poche a link by several methods:" |
54 | msgstr "Wyslij email" | 55 | msgstr "Istnieje kilka sposobów aby zapisać link:" |
55 | 56 | ||
56 | msgid "shaarli" | 57 | msgid "read the documentation" |
57 | msgstr "shaarli" | 58 | msgstr "zapoznać się z dokumentacją" |
58 | 59 | ||
59 | msgid "flattr" | 60 | msgid "download the extension" |
60 | msgstr "flattr" | 61 | msgstr "pobrać rozszerzenie" |
61 | 62 | ||
62 | msgid "Does this article appear wrong?" | 63 | msgid "download the application" |
63 | msgstr "Czy ten artykuł wygląda nieprawidłowo?" | 64 | msgstr "pobrać aplikację" |
64 | 65 | ||
65 | msgid "tags:" | 66 | #, fuzzy |
66 | msgstr "tegi:" | 67 | msgid "by filling this field" |
68 | msgstr "Poprzez wypełnienie tego pola" | ||
67 | 69 | ||
68 | msgid "Edit tags" | 70 | msgid "poche it!" |
69 | msgstr "Redagowac tegi" | 71 | msgstr "zapisać!" |
70 | 72 | ||
71 | msgid "return home" | 73 | #, fuzzy |
72 | msgstr "wrócić do głównej" | 74 | msgid "bookmarklet: drag & drop this link to your bookmarks bar" |
75 | msgstr "Bookmarklet: przeciągnij i upucs ten link na pasek zakladek" | ||
73 | 76 | ||
74 | msgid "powered by" | 77 | msgid "Updating poche" |
75 | msgstr "zasilany przez" | 78 | msgstr "Aktualizacja poche" |
76 | 79 | ||
77 | msgid "debug mode is on so cache is off." | 80 | msgid "your version" |
78 | msgstr "tryb debugowania jest włączony, więc cash jest wyłączony." | 81 | msgstr "twoja wersja" |
79 | 82 | ||
80 | msgid "your poche version:" | 83 | #, fuzzy |
81 | msgstr "twoja wersja poche:" | 84 | msgid "latest stable version" |
85 | msgstr "Najnowsza stabilna wersja" | ||
82 | 86 | ||
83 | msgid "storage:" | 87 | #, fuzzy |
84 | msgstr "magazyn:" | 88 | msgid "a more recent stable version is available." |
89 | msgstr "Nowsza stabilna wersja jest dostępna." | ||
90 | |||
91 | msgid "you are up to date." | ||
92 | msgstr "masz wszystko najnowsze." | ||
93 | |||
94 | msgid "latest dev version" | ||
95 | msgstr "najnowsza wersja dev" | ||
96 | |||
97 | msgid "a more recent development version is available." | ||
98 | msgstr "Nowsza wersja rozwojowa jest dostępna." | ||
99 | |||
100 | msgid "Change your theme" | ||
101 | msgstr "Zmienic motyw" | ||
102 | |||
103 | msgid "Theme:" | ||
104 | msgstr "Motyw:" | ||
105 | |||
106 | msgid "Update" | ||
107 | msgstr "Aktualizacja" | ||
108 | |||
109 | msgid "Change your password" | ||
110 | msgstr "Zmień hasło" | ||
111 | |||
112 | msgid "New password:" | ||
113 | msgstr "Nowe hasło:" | ||
114 | |||
115 | msgid "Password" | ||
116 | msgstr "Hasło" | ||
117 | |||
118 | msgid "Repeat your new password:" | ||
119 | msgstr "Powtórz hasło jeszcze raz:" | ||
120 | |||
121 | msgid "Import" | ||
122 | msgstr "Import" | ||
123 | |||
124 | #, fuzzy | ||
125 | msgid "Please execute the import script locally, it can take a very long time." | ||
126 | msgstr "Proszę wykonać skrypt import lokalnie, gdyż moze to trwać bardzo długo." | ||
127 | |||
128 | #, fuzzy | ||
129 | msgid "More infos in the official doc:" | ||
130 | msgstr "Więcej informacji w oficjalnej dokumentacji:" | ||
131 | |||
132 | #, fuzzy | ||
133 | msgid "import from Pocket" | ||
134 | msgstr "Іmport z Pocket'a" | ||
135 | |||
136 | #, php-format | ||
137 | msgid "(you must have a %s file on your server)" | ||
138 | msgstr "(musisz mieć plik %s na serwerze)" | ||
139 | |||
140 | #, fuzzy | ||
141 | msgid "import from Readability" | ||
142 | msgstr "Import z Readability" | ||
143 | |||
144 | #, fuzzy | ||
145 | msgid "import from Instapaper" | ||
146 | msgstr "Import z Instapaper" | ||
147 | |||
148 | #, fuzzy | ||
149 | msgid "Export your poche datas" | ||
150 | msgstr "Eksportowac dane poche" | ||
151 | |||
152 | msgid "Click here" | ||
153 | msgstr "Kliknij tu" | ||
154 | |||
155 | #, fuzzy | ||
156 | msgid "to export your poche datas." | ||
157 | msgstr "aby eksportować dane poche." | ||
158 | |||
159 | msgid "plop" | ||
160 | msgstr "plop" | ||
161 | |||
162 | msgid "installation" | ||
163 | msgstr "instalacja" | ||
164 | |||
165 | msgid "install your wallabag" | ||
166 | msgstr "zainstalować wallabag" | ||
167 | |||
168 | msgid "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>." | ||
169 | msgstr "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 | |||
171 | msgid "Login" | ||
172 | msgstr "Login" | ||
173 | |||
174 | msgid "Repeat your password" | ||
175 | msgstr "Powtórz hasło" | ||
176 | |||
177 | msgid "Install" | ||
178 | msgstr "Instalowac" | ||
85 | 179 | ||
86 | msgid "favoris" | 180 | msgid "favoris" |
87 | msgstr "ulubione" | 181 | msgstr "ulubione" |
88 | 182 | ||
89 | msgid "archive" | ||
90 | msgstr "archiwum" | ||
91 | |||
92 | msgid "unread" | 183 | msgid "unread" |
93 | msgstr "nieprzeczytane" | 184 | msgstr "nieprzeczytane" |
94 | 185 | ||
@@ -110,8 +201,11 @@ msgstr "wg tytułu" | |||
110 | msgid "by title desc" | 201 | msgid "by title desc" |
111 | msgstr "według tytułu malejąco" | 202 | msgstr "według tytułu malejąco" |
112 | 203 | ||
113 | msgid "No articles found." | 204 | msgid "No link available here!" |
114 | msgstr "Nie znaleziono artykułów." | 205 | msgstr "Brak dostępnych linków!" |
206 | |||
207 | msgid "toggle mark as read" | ||
208 | msgstr "przełączyć znak jako przeczytane" | ||
115 | 209 | ||
116 | msgid "toggle favorite" | 210 | msgid "toggle favorite" |
117 | msgstr "przełączyc ulubione" | 211 | msgstr "przełączyc ulubione" |
@@ -119,39 +213,34 @@ msgstr "przełączyc ulubione" | |||
119 | msgid "delete" | 213 | msgid "delete" |
120 | msgstr "usunąć" | 214 | msgstr "usunąć" |
121 | 215 | ||
216 | msgid "original" | ||
217 | msgstr "oryginal" | ||
218 | |||
122 | msgid "estimated reading time:" | 219 | msgid "estimated reading time:" |
123 | msgstr "szacowany czas odczytu:" | 220 | msgstr "szacowany czas odczytu:" |
124 | 221 | ||
125 | msgid "results" | 222 | msgid "results" |
126 | msgstr "wyniki" | 223 | msgstr "wyniki" |
127 | 224 | ||
128 | msgid "home" | 225 | msgid "login to your wallabag" |
129 | msgstr "główna" | 226 | msgstr "zalogować się do swojego wallabag" |
130 | |||
131 | msgid "favorites" | ||
132 | msgstr "ulubione" | ||
133 | 227 | ||
134 | msgid "tags" | 228 | msgid "you are in demo mode, some features may be disabled." |
135 | msgstr "tagi" | 229 | msgstr "jesteś w trybie demo, niektóre funkcje mogą być niedostępne." |
136 | 230 | ||
137 | msgid "config" | 231 | msgid "Stay signed in" |
138 | msgstr "ustawienia" | 232 | msgstr "Pozostań zalogowany" |
139 | 233 | ||
140 | msgid "logout" | 234 | msgid "(Do not check on public computers)" |
141 | msgstr "wyloguj" | 235 | msgstr "(Nie sprawdzaj na publicznych komputerach" |
142 | 236 | ||
143 | msgid "Poching links" | 237 | msgid "Saving articles" |
144 | msgstr "Zapisywanie linków" | 238 | msgstr "Zapisywanie artykułów" |
145 | 239 | ||
146 | msgid "There are several ways to poche a link:" | 240 | #, fuzzy |
241 | msgid "There are several ways to save an article:" | ||
147 | msgstr "Istnieje kilka sposobów aby zapisać link:" | 242 | msgstr "Istnieje kilka sposobów aby zapisać link:" |
148 | 243 | ||
149 | msgid "read the documentation" | ||
150 | msgstr "zapoznać się z dokumentacją" | ||
151 | |||
152 | msgid "download the extension" | ||
153 | msgstr "pobrać rozszerzenie" | ||
154 | |||
155 | msgid "via F-Droid" | 244 | msgid "via F-Droid" |
156 | msgstr "przez F-Droid" | 245 | msgstr "przez F-Droid" |
157 | 246 | ||
@@ -161,20 +250,17 @@ msgstr "albo" | |||
161 | msgid "via Google Play" | 250 | msgid "via Google Play" |
162 | msgstr "przez Google Play" | 251 | msgstr "przez Google Play" |
163 | 252 | ||
164 | msgid "download the application" | ||
165 | msgstr "pobrać aplikację" | ||
166 | |||
167 | msgid "By filling this field" | 253 | msgid "By filling this field" |
168 | msgstr "Poprzez wypełnienie tego pola" | 254 | msgstr "Poprzez wypełnienie tego pola" |
169 | 255 | ||
170 | msgid "poche it!" | 256 | msgid "bag it!" |
171 | msgstr "zapisać!" | 257 | msgstr "zapisać!" |
172 | 258 | ||
173 | msgid "Bookmarklet: drag & drop this link to your bookmarks bar" | 259 | msgid "Bookmarklet: drag & drop this link to your bookmarks bar" |
174 | msgstr "Bookmarklet: przeciągnij i upucs ten link na pasek zakladek" | 260 | msgstr "Bookmarklet: przeciągnij i upucs ten link na pasek zakladek" |
175 | 261 | ||
176 | msgid "Updating poche" | 262 | msgid "Upgrading wallabag" |
177 | msgstr "Aktualizacja poche" | 263 | msgstr "Aktualizacja wallabag" |
178 | 264 | ||
179 | msgid "Installed version" | 265 | msgid "Installed version" |
180 | msgstr "Zainstalowana wersja " | 266 | msgstr "Zainstalowana wersja " |
@@ -188,15 +274,14 @@ msgstr "Nowsza stabilna wersja jest dostępna." | |||
188 | msgid "You are up to date." | 274 | msgid "You are up to date." |
189 | msgstr "Masz wszystko najnowsze." | 275 | msgstr "Masz wszystko najnowsze." |
190 | 276 | ||
191 | msgid "latest dev version" | 277 | #, fuzzy |
278 | msgid "Latest dev version" | ||
192 | msgstr "najnowsza wersja dev" | 279 | msgstr "najnowsza wersja dev" |
193 | 280 | ||
194 | msgid "a more recent development version is available." | 281 | #, fuzzy |
282 | msgid "A more recent development version is available." | ||
195 | msgstr "Nowsza wersja rozwojowa jest dostępna." | 283 | msgstr "Nowsza wersja rozwojowa jest dostępna." |
196 | 284 | ||
197 | msgid "you are up to date." | ||
198 | msgstr "masz wszystko najnowsze." | ||
199 | |||
200 | msgid "Feeds" | 285 | msgid "Feeds" |
201 | msgstr "Kanały (feeds)" | 286 | msgstr "Kanały (feeds)" |
202 | 287 | ||
@@ -221,78 +306,62 @@ msgstr "Twój id użytkownika (user id):" | |||
221 | msgid "You can regenerate your token: <a href='?feed&action=generate'>generate!</a>." | 306 | msgid "You can regenerate your token: <a href='?feed&action=generate'>generate!</a>." |
222 | msgstr "Mozna zgenerowac nowy znak: kliknij <a href='?feed&action=generate'>zgenerowac!</a>." | 307 | msgstr "Mozna zgenerowac nowy znak: kliknij <a href='?feed&action=generate'>zgenerowac!</a>." |
223 | 308 | ||
224 | msgid "Change your theme" | ||
225 | msgstr "Zmienic motyw" | ||
226 | |||
227 | msgid "Theme:" | ||
228 | msgstr "Motyw:" | ||
229 | |||
230 | msgid "Update" | ||
231 | msgstr "Aktualizacja" | ||
232 | |||
233 | msgid "Change your language" | 309 | msgid "Change your language" |
234 | msgstr "Zmienić język" | 310 | msgstr "Zmienić język" |
235 | 311 | ||
236 | msgid "Language:" | 312 | msgid "Language:" |
237 | msgstr "Język:" | 313 | msgstr "Język:" |
238 | 314 | ||
239 | msgid "Change your password" | ||
240 | msgstr "Zmień hasło" | ||
241 | |||
242 | msgid "New password:" | ||
243 | msgstr "Nowe hasło:" | ||
244 | |||
245 | msgid "Password" | ||
246 | msgstr "Hasło" | ||
247 | |||
248 | msgid "Repeat your new password:" | ||
249 | msgstr "Powtórz hasło jeszcze raz:" | ||
250 | |||
251 | msgid "Import" | ||
252 | msgstr "Import" | ||
253 | |||
254 | msgid "Please execute the import script locally as it can take a very long time." | 315 | msgid "Please execute the import script locally as it can take a very long time." |
255 | msgstr "Proszę wykonać skrypt import lokalnie, gdyż moze to trwać bardzo długo." | 316 | msgstr "Proszę wykonać skrypt import lokalnie, gdyż moze to trwać bardzo długo." |
256 | 317 | ||
257 | msgid "More info in the official docs:" | 318 | #, fuzzy |
319 | msgid "More info in the official documentation:" | ||
258 | msgstr "Więcej informacji w oficjalnej dokumentacji:" | 320 | msgstr "Więcej informacji w oficjalnej dokumentacji:" |
259 | 321 | ||
260 | msgid "Import from Pocket" | 322 | msgid "Import from Pocket" |
261 | msgstr "Іmport z Pocket'a" | 323 | msgstr "Іmport z Pocket'a" |
262 | 324 | ||
263 | #, php-format | ||
264 | msgid "(you must have a %s file on your server)" | ||
265 | msgstr "(musisz mieć plik %s na serwerze)" | ||
266 | |||
267 | msgid "Import from Readability" | 325 | msgid "Import from Readability" |
268 | msgstr "Import z Readability" | 326 | msgstr "Import z Readability" |
269 | 327 | ||
270 | msgid "Import from Instapaper" | 328 | msgid "Import from Instapaper" |
271 | msgstr "Import z Instapaper" | 329 | msgstr "Import z Instapaper" |
272 | 330 | ||
273 | msgid "Import from poche" | 331 | msgid "Import from wallabag" |
274 | msgstr "Import z poche" | 332 | msgstr "Import z wallabag" |
275 | 333 | ||
276 | msgid "Export your poche data" | 334 | msgid "Export your wallabag data" |
277 | msgstr "Eksportowac dane poche" | 335 | msgstr "Eksportowac dane wallabag" |
278 | |||
279 | msgid "Click here" | ||
280 | msgstr "Kliknij tu" | ||
281 | 336 | ||
282 | msgid "to download your database." | 337 | msgid "to download your database." |
283 | msgstr "aby pobrac bazę danych." | 338 | msgstr "aby pobrac bazę danych." |
284 | 339 | ||
285 | msgid "to export your poche data." | 340 | msgid "to export your wallabag data." |
286 | msgstr "aby eksportować dane poche." | 341 | msgstr "aby eksportować dane wallabag." |
287 | 342 | ||
288 | msgid "Tag" | 343 | msgid "Cache" |
289 | msgstr "Teg" | 344 | msgstr "Cache" |
290 | 345 | ||
291 | msgid "No link available here!" | 346 | msgid "to delete cache." |
292 | msgstr "Brak dostępnych linków!" | 347 | msgstr "aby wyczyścić cache." |
293 | 348 | ||
294 | msgid "toggle mark as read" | 349 | msgid "tweet" |
295 | msgstr "przełączyć znak jako przeczytane" | 350 | msgstr "tweet" |
351 | |||
352 | #, fuzzy | ||
353 | msgid "email" | ||
354 | msgstr "Wyslij email" | ||
355 | |||
356 | msgid "shaarli" | ||
357 | msgstr "shaarli" | ||
358 | |||
359 | msgid "flattr" | ||
360 | msgstr "flattr" | ||
361 | |||
362 | #, fuzzy | ||
363 | msgid "this article appears wrong?" | ||
364 | msgstr "Czy ten artykuł wygląda nieprawidłowo?" | ||
296 | 365 | ||
297 | msgid "You can enter multiple tags, separated by commas." | 366 | msgid "You can enter multiple tags, separated by commas." |
298 | msgstr "Mozna wprowadzić wiele tagów rozdzielajac je przecinkami." | 367 | msgstr "Mozna wprowadzić wiele tagów rozdzielajac je przecinkami." |
@@ -300,47 +369,90 @@ msgstr "Mozna wprowadzić wiele tagów rozdzielajac je przecinkami." | |||
300 | msgid "return to article" | 369 | msgid "return to article" |
301 | msgstr "wrócić do artykułu" | 370 | msgstr "wrócić do artykułu" |
302 | 371 | ||
303 | msgid "plop" | 372 | msgid "powered by" |
304 | msgstr "plop" | 373 | msgstr "zasilany przez" |
305 | 374 | ||
306 | msgid "You can <a href='wallabag_compatibility_test.php'>check your configuration here</a>." | 375 | msgid "debug mode is on so cache is off." |
307 | msgstr "Można <a href='wallabag_compatibility_test.php'>sprawdzić swoją konfigurację tu</a>." | 376 | msgstr "tryb debugowania jest włączony, więc cash jest wyłączony." |
308 | 377 | ||
309 | msgid "installation" | 378 | msgid "your wallabag version:" |
310 | msgstr "instalacja" | 379 | msgstr "twoja wersja wallabag:" |
311 | 380 | ||
312 | msgid "install your wallabag" | 381 | msgid "storage:" |
313 | msgstr "zainstalować wallabag" | 382 | msgstr "magazyn:" |
314 | 383 | ||
315 | msgid "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>." | 384 | msgid "save a link" |
316 | msgstr "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>." | 385 | msgstr "zapisać link" |
317 | 386 | ||
318 | msgid "Login" | 387 | msgid "return home" |
319 | msgstr "Login" | 388 | msgstr "wrócić do głównej" |
320 | 389 | ||
321 | msgid "Repeat your password" | 390 | msgid "You can <a href='wallabag_compatibility_test.php'>check your configuration here</a>." |
322 | msgstr "Powtórz hasło" | 391 | msgstr "Można <a href='wallabag_compatibility_test.php'>sprawdzić swoją konfigurację tu</a>." |
323 | 392 | ||
324 | msgid "Install" | 393 | msgid "Tag" |
325 | msgstr "Instalowac" | 394 | msgstr "Teg" |
326 | 395 | ||
327 | msgid "login to your wallabag" | 396 | msgid "No articles found." |
328 | msgstr "zalogować się do swojego wallabag" | 397 | msgstr "Nie znaleziono artykułów." |
398 | |||
399 | msgid "Toggle mark as read" | ||
400 | msgstr "Przełącz jako przeczytane" | ||
401 | |||
402 | msgid "mark all the entries as read" | ||
403 | msgstr "zaznaczyć wszystko jako przeczytane" | ||
329 | 404 | ||
330 | msgid "Login to wallabag" | 405 | msgid "Login to wallabag" |
331 | msgstr "Zalogować się do wallabag" | 406 | msgstr "Zalogować się do wallabag" |
332 | 407 | ||
333 | msgid "you are in demo mode, some features may be disabled." | ||
334 | msgstr "jesteś w trybie demo, niektóre funkcje mogą być niedostępne." | ||
335 | |||
336 | msgid "Username" | 408 | msgid "Username" |
337 | msgstr "Imię użytkownika" | 409 | msgstr "Imię użytkownika" |
338 | 410 | ||
339 | msgid "Stay signed in" | 411 | msgid "Sign in" |
340 | msgstr "Pozostań zalogowany" | 412 | msgstr "Login" |
341 | 413 | ||
342 | msgid "(Do not check on public computers)" | 414 | msgid "Return home" |
343 | msgstr "(Nie sprawdzaj na publicznych komputerach" | 415 | msgstr "Wrocic do głównej" |
416 | |||
417 | msgid "Back to top" | ||
418 | msgstr "Wrócić na górę" | ||
419 | |||
420 | msgid "Mark as read" | ||
421 | msgstr "Zaznacz jako przeczytane" | ||
422 | |||
423 | msgid "Favorite" | ||
424 | msgstr "Ulubiony" | ||
425 | |||
426 | msgid "Toggle favorite" | ||
427 | msgstr "Zaznacz jako ulubione" | ||
428 | |||
429 | msgid "Delete" | ||
430 | msgstr "Usuń" | ||
431 | |||
432 | msgid "Tweet" | ||
433 | msgstr "Tweet" | ||
434 | |||
435 | msgid "Email" | ||
436 | msgstr "Wyslij email" | ||
437 | |||
438 | msgid "Does this article appear wrong?" | ||
439 | msgstr "Czy ten artykuł wygląda nieprawidłowo?" | ||
440 | |||
441 | msgid "tags:" | ||
442 | msgstr "tegi:" | ||
443 | |||
444 | msgid "Edit tags" | ||
445 | msgstr "Redagowac tegi" | ||
446 | |||
447 | msgid "save link!" | ||
448 | msgstr "zapisz link!" | ||
449 | |||
450 | #, fuzzy | ||
451 | msgid "estimated reading time :" | ||
452 | msgstr "szacowany czas odczytu:" | ||
453 | |||
454 | msgid "Mark all the entries as read" | ||
455 | msgstr "zaznacz wszystko jako przeczytane" | ||
344 | 456 | ||
345 | msgid "Untitled" | 457 | msgid "Untitled" |
346 | msgstr "Bez nazwy" | 458 | msgstr "Bez nazwy" |
@@ -357,6 +469,9 @@ msgstr "link zostal pomyślnie usunięty" | |||
357 | msgid "the link wasn't deleted" | 469 | msgid "the link wasn't deleted" |
358 | msgstr "link nie został usunięty" | 470 | msgstr "link nie został usunięty" |
359 | 471 | ||
472 | msgid "Article not found!" | ||
473 | msgstr "Nie znaleziono artykułu." | ||
474 | |||
360 | msgid "previous" | 475 | msgid "previous" |
361 | msgstr "poprzednia" | 476 | msgstr "poprzednia" |
362 | 477 | ||
@@ -390,15 +505,12 @@ msgstr "ustawienia języka zostałe zmienione" | |||
390 | msgid "login failed: you have to fill all fields" | 505 | msgid "login failed: you have to fill all fields" |
391 | msgstr "logowanie nie powiodlo się: musisz wypełnić wszystkie pola" | 506 | msgstr "logowanie nie powiodlo się: musisz wypełnić wszystkie pola" |
392 | 507 | ||
393 | msgid "welcome to your poche" | 508 | msgid "welcome to your wallabag" |
394 | msgstr "witamy w poche" | 509 | msgstr "Witamy w wallabag" |
395 | 510 | ||
396 | msgid "login failed: bad login or password" | 511 | msgid "login failed: bad login or password" |
397 | msgstr "logowanie nie powiodlo się: zly login lub hasło" | 512 | msgstr "logowanie nie powiodlo się: zly login lub hasło" |
398 | 513 | ||
399 | msgid "see you soon!" | ||
400 | msgstr "do zobaczenia wkrótce!" | ||
401 | |||
402 | msgid "import from instapaper completed" | 514 | msgid "import from instapaper completed" |
403 | msgstr "import з instapaper'a zakończony" | 515 | msgstr "import з instapaper'a zakończony" |
404 | 516 | ||
@@ -423,6 +535,17 @@ msgstr "Nie znaleziono potrzebnego \"" | |||
423 | msgid "Uh, there is a problem while generating feeds." | 535 | msgid "Uh, there is a problem while generating feeds." |
424 | msgstr "Uh, jest problem podczas generowania kanałów (feeds)." | 536 | msgstr "Uh, jest problem podczas generowania kanałów (feeds)." |
425 | 537 | ||
538 | msgid "Cache deleted." | ||
539 | msgstr "Cache wyczyszczony." | ||
540 | |||
426 | msgid "Oops, it seems you don't have PHP 5." | 541 | msgid "Oops, it seems you don't have PHP 5." |
427 | msgstr "Oops, wygląda ze u was niema PHP 5." | 542 | msgstr "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 "" | |||
2 | msgstr "" | 2 | msgstr "" |
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 | ||
19 | msgid "poche, a read it later open source system" | 19 | msgid "wallabag, a read it later open source system" |
20 | msgstr "poche, сервис отложенного чтения с открытым исходным кодом" | 20 | msgstr "wallabag, сервис отложенного чтения с открытым исходным кодом" |
21 | 21 | ||
22 | msgid "login failed: user doesn't exist" | 22 | msgid "login failed: user doesn't exist" |
23 | msgstr "войти не удалось: пользователь не существует" | 23 | msgstr "войти не удалось: пользователь не существует" |
24 | 24 | ||
25 | msgid "Return home" | ||
26 | msgstr "На главную" | ||
27 | |||
28 | msgid "Back to top" | ||
29 | msgstr "Наверх" | ||
30 | |||
31 | msgid "original" | ||
32 | msgstr "источник" | ||
33 | |||
34 | msgid "Mark as read" | ||
35 | msgstr "Отметить как прочитанное" | ||
36 | |||
37 | msgid "Toggle mark as read" | ||
38 | msgstr "Изменить отметку 'прочитано'" | ||
39 | |||
40 | msgid "Favorite" | ||
41 | msgstr "Избранное" | ||
42 | |||
43 | msgid "Toggle favorite" | ||
44 | msgstr "Изменить метку избранного" | ||
45 | |||
46 | msgid "Delete" | ||
47 | msgstr "Удалить" | ||
48 | |||
49 | msgid "Tweet" | ||
50 | msgstr "Твитнуть" | ||
51 | |||
52 | msgid "Email" | ||
53 | msgstr "Отправить по почте" | ||
54 | |||
55 | msgid "shaarli" | ||
56 | msgstr "shaarli" | ||
57 | |||
58 | msgid "flattr" | ||
59 | msgstr "проспонсировать" | ||
60 | |||
61 | msgid "Does this article appear wrong?" | ||
62 | msgstr "Статья выглядит криво?" | ||
63 | |||
64 | msgid "tags:" | ||
65 | msgstr "теги:" | ||
66 | |||
67 | msgid "Edit tags" | ||
68 | msgstr "Редактировать теги" | ||
69 | |||
70 | msgid "return home" | 25 | msgid "return home" |
71 | msgstr "на главную" | 26 | msgstr "на главную" |
72 | 27 | ||
73 | msgid "powered by" | ||
74 | msgstr "при поддержке" | ||
75 | |||
76 | msgid "debug mode is on so cache is off." | ||
77 | msgstr "включён режим отладки - кеш выключен." | ||
78 | |||
79 | msgid "your poche version:" | ||
80 | msgstr "ваша версия poche:" | ||
81 | |||
82 | msgid "storage:" | ||
83 | msgstr "хранилище:" | ||
84 | |||
85 | msgid "favoris" | ||
86 | msgstr "избранное" | ||
87 | |||
88 | msgid "archive" | ||
89 | msgstr "архив" | ||
90 | |||
91 | msgid "unread" | ||
92 | msgstr "непрочитанное" | ||
93 | |||
94 | msgid "by date asc" | ||
95 | msgstr "по дате, сперва старые" | ||
96 | |||
97 | msgid "by date" | ||
98 | msgstr "по дате" | ||
99 | |||
100 | msgid "by date desc" | ||
101 | msgstr "по дате, сперва новые" | ||
102 | |||
103 | msgid "by title asc" | ||
104 | msgstr "по заголовку (прямой)" | ||
105 | |||
106 | msgid "by title" | ||
107 | msgstr "по заголовку" | ||
108 | |||
109 | msgid "by title desc" | ||
110 | msgstr "по заголовку (обратный)" | ||
111 | |||
112 | msgid "No articles found." | ||
113 | msgstr "Статей не найдено." | ||
114 | |||
115 | msgid "toggle favorite" | ||
116 | msgstr "изменить метку избранного" | ||
117 | |||
118 | msgid "delete" | ||
119 | msgstr "удалить" | ||
120 | |||
121 | msgid "estimated reading time:" | ||
122 | msgstr "ориентировочное время чтения:" | ||
123 | |||
124 | msgid "results" | ||
125 | msgstr "найдено" | ||
126 | |||
127 | msgid "home" | ||
128 | msgstr "главная" | ||
129 | |||
130 | msgid "favorites" | ||
131 | msgstr "избранное" | ||
132 | |||
133 | msgid "tags" | ||
134 | msgstr "теги" | ||
135 | |||
136 | msgid "config" | 28 | msgid "config" |
137 | msgstr "настройки" | 29 | msgstr "настройки" |
138 | 30 | ||
139 | msgid "logout" | 31 | msgid "Saving articles" |
140 | msgstr "выход" | 32 | msgstr "Сохранение статей" |
141 | |||
142 | msgid "Poching links" | ||
143 | msgstr "Сохранение ссылок" | ||
144 | 33 | ||
145 | msgid "There are several ways to poche a link:" | 34 | #, fuzzy |
35 | msgid "There are several ways to save an article:" | ||
146 | msgstr "Существует несколько способов сохранить ссылку:" | 36 | msgstr "Существует несколько способов сохранить ссылку:" |
147 | 37 | ||
148 | msgid "read the documentation" | 38 | msgid "read the documentation" |
@@ -166,14 +56,14 @@ msgstr "скачать приложение" | |||
166 | msgid "By filling this field" | 56 | msgid "By filling this field" |
167 | msgstr "Заполнением этого поля" | 57 | msgstr "Заполнением этого поля" |
168 | 58 | ||
169 | msgid "poche it!" | 59 | msgid "bag it!" |
170 | msgstr "прикарманить!" | 60 | msgstr "прикарманить!" |
171 | 61 | ||
172 | msgid "Bookmarklet: drag & drop this link to your bookmarks bar" | 62 | msgid "Bookmarklet: drag & drop this link to your bookmarks bar" |
173 | msgstr "Закладка: перетащите и опустите ссылку на панель закладок" | 63 | msgstr "Закладка: перетащите и опустите ссылку на панель закладок" |
174 | 64 | ||
175 | msgid "Updating poche" | 65 | msgid "Upgrading wallabag" |
176 | msgstr "Обновления poche" | 66 | msgstr "Обновление wallabag" |
177 | 67 | ||
178 | msgid "Installed version" | 68 | msgid "Installed version" |
179 | msgstr "Установленная версия" | 69 | msgstr "Установленная версия" |
@@ -187,15 +77,14 @@ msgstr "Доступна новая стабильная версия." | |||
187 | msgid "You are up to date." | 77 | msgid "You are up to date." |
188 | msgstr "У вас всё самое новое." | 78 | msgstr "У вас всё самое новое." |
189 | 79 | ||
190 | msgid "latest dev version" | 80 | #, fuzzy |
81 | msgid "Latest dev version" | ||
191 | msgstr "последняя версия в разработке" | 82 | msgstr "последняя версия в разработке" |
192 | 83 | ||
193 | msgid "a more recent development version is available." | 84 | #, fuzzy |
85 | msgid "A more recent development version is available." | ||
194 | msgstr "есть более свежая версия в разработке." | 86 | msgstr "есть более свежая версия в разработке." |
195 | 87 | ||
196 | msgid "you are up to date." | ||
197 | msgstr "у вас всё самое новое." | ||
198 | |||
199 | msgid "Feeds" | 88 | msgid "Feeds" |
200 | msgstr "Ленты (feeds)" | 89 | msgstr "Ленты (feeds)" |
201 | 90 | ||
@@ -253,7 +142,8 @@ msgstr "Импортировать" | |||
253 | msgid "Please execute the import script locally as it can take a very long time." | 142 | msgid "Please execute the import script locally as it can take a very long time." |
254 | msgstr "Пожалуйста, выполните сценарий импорта локально - это может занять слишком много времени." | 143 | msgstr "Пожалуйста, выполните сценарий импорта локально - это может занять слишком много времени." |
255 | 144 | ||
256 | msgid "More info in the official docs:" | 145 | #, fuzzy |
146 | msgid "More info in the official documentation:" | ||
257 | msgstr "Больше сведений в официальной документации:" | 147 | msgstr "Больше сведений в официальной документации:" |
258 | 148 | ||
259 | msgid "Import from Pocket" | 149 | msgid "Import from Pocket" |
@@ -269,11 +159,11 @@ msgstr "Импортировать из Readability" | |||
269 | msgid "Import from Instapaper" | 159 | msgid "Import from Instapaper" |
270 | msgstr "Импортировать из Instapaper" | 160 | msgstr "Импортировать из Instapaper" |
271 | 161 | ||
272 | msgid "Import from poche" | 162 | msgid "Import from wallabag" |
273 | msgstr "Импортировать из poche" | 163 | msgstr "Импортировать из wallabag" |
274 | 164 | ||
275 | msgid "Export your poche data" | 165 | msgid "Export your wallabag data" |
276 | msgstr "Экспортировать данные poche" | 166 | msgstr "Экспортировать данные wallabag" |
277 | 167 | ||
278 | msgid "Click here" | 168 | msgid "Click here" |
279 | msgstr "Кликните здесь" | 169 | msgstr "Кликните здесь" |
@@ -281,17 +171,14 @@ msgstr "Кликните здесь" | |||
281 | msgid "to download your database." | 171 | msgid "to download your database." |
282 | msgstr "чтобы скачать вашу базу данных" | 172 | msgstr "чтобы скачать вашу базу данных" |
283 | 173 | ||
284 | msgid "to export your poche data." | 174 | msgid "to export your wallabag data." |
285 | msgstr "чтобы экспортировать свои записи из poche." | 175 | msgstr "чтобы экспортировать свои записи из wallabag." |
286 | 176 | ||
287 | msgid "Tag" | 177 | msgid "Cache" |
288 | msgstr "Тег" | 178 | msgstr "Кэш" |
289 | |||
290 | msgid "No link available here!" | ||
291 | msgstr "Здесь нет ссылки!" | ||
292 | 179 | ||
293 | msgid "toggle mark as read" | 180 | msgid "to delete cache." |
294 | msgstr "измени оку 'роитно'" | 181 | msgstr "т сроить эш." |
295 | 182 | ||
296 | msgid "You can enter multiple tags, separated by commas." | 183 | msgid "You can enter multiple tags, separated by commas." |
297 | msgstr "Вы можете ввести несколько тегов, разделяя их запятой." | 184 | msgstr "Вы можете ввести несколько тегов, разделяя их запятой." |
@@ -305,6 +192,60 @@ msgstr "plop" | |||
305 | msgid "You can <a href='wallabag_compatibility_test.php'>check your configuration here</a>." | 192 | msgid "You can <a href='wallabag_compatibility_test.php'>check your configuration here</a>." |
306 | msgstr "Вы можете <a href='wallabag_compatibility_test.php'>проверить конфигурацию здесь</a>." | 193 | msgstr "Вы можете <a href='wallabag_compatibility_test.php'>проверить конфигурацию здесь</a>." |
307 | 194 | ||
195 | msgid "favoris" | ||
196 | msgstr "избранное" | ||
197 | |||
198 | msgid "archive" | ||
199 | msgstr "архив" | ||
200 | |||
201 | msgid "unread" | ||
202 | msgstr "непрочитанное" | ||
203 | |||
204 | msgid "by date asc" | ||
205 | msgstr "по дате, сперва старые" | ||
206 | |||
207 | msgid "by date" | ||
208 | msgstr "по дате" | ||
209 | |||
210 | msgid "by date desc" | ||
211 | msgstr "по дате, сперва новые" | ||
212 | |||
213 | msgid "by title asc" | ||
214 | msgstr "по заголовку (прямой)" | ||
215 | |||
216 | msgid "by title" | ||
217 | msgstr "по заголовку" | ||
218 | |||
219 | msgid "by title desc" | ||
220 | msgstr "по заголовку (обратный)" | ||
221 | |||
222 | msgid "Tag" | ||
223 | msgstr "Тег" | ||
224 | |||
225 | msgid "No articles found." | ||
226 | msgstr "Статей не найдено." | ||
227 | |||
228 | msgid "Toggle mark as read" | ||
229 | msgstr "Изменить отметку 'прочитано'" | ||
230 | |||
231 | msgid "toggle favorite" | ||
232 | msgstr "изменить метку избранного" | ||
233 | |||
234 | msgid "delete" | ||
235 | msgstr "удалить" | ||
236 | |||
237 | msgid "original" | ||
238 | msgstr "источник" | ||
239 | |||
240 | msgid "estimated reading time:" | ||
241 | msgstr "ориентировочное время чтения:" | ||
242 | |||
243 | msgid "mark all the entries as read" | ||
244 | msgstr "отметить все статьи как прочитанные " | ||
245 | |||
246 | msgid "results" | ||
247 | msgstr "найдено" | ||
248 | |||
308 | msgid "installation" | 249 | msgid "installation" |
309 | msgstr "установка" | 250 | msgstr "установка" |
310 | 251 | ||
@@ -341,6 +282,159 @@ msgstr "Запомнить меня" | |||
341 | msgid "(Do not check on public computers)" | 282 | msgid "(Do not check on public computers)" |
342 | msgstr "(Не отмечайте на чужих компьютерах)" | 283 | msgstr "(Не отмечайте на чужих компьютерах)" |
343 | 284 | ||
285 | msgid "Sign in" | ||
286 | msgstr "Зарегистрироваться" | ||
287 | |||
288 | msgid "favorites" | ||
289 | msgstr "избранное" | ||
290 | |||
291 | #, fuzzy | ||
292 | msgid "estimated reading time :" | ||
293 | msgstr "ориентировочное время чтения:" | ||
294 | |||
295 | msgid "Mark all the entries as read" | ||
296 | msgstr "Отметить все как прочитанное" | ||
297 | |||
298 | msgid "Return home" | ||
299 | msgstr "На главную" | ||
300 | |||
301 | msgid "Back to top" | ||
302 | msgstr "Наверх" | ||
303 | |||
304 | msgid "Mark as read" | ||
305 | msgstr "Отметить как прочитанное" | ||
306 | |||
307 | msgid "Favorite" | ||
308 | msgstr "Избранное" | ||
309 | |||
310 | msgid "Toggle favorite" | ||
311 | msgstr "Изменить метку избранного" | ||
312 | |||
313 | msgid "Delete" | ||
314 | msgstr "Удалить" | ||
315 | |||
316 | msgid "Tweet" | ||
317 | msgstr "Твитнуть" | ||
318 | |||
319 | msgid "Email" | ||
320 | msgstr "Отправить по почте" | ||
321 | |||
322 | msgid "shaarli" | ||
323 | msgstr "shaarli" | ||
324 | |||
325 | msgid "flattr" | ||
326 | msgstr "проспонсировать" | ||
327 | |||
328 | msgid "Does this article appear wrong?" | ||
329 | msgstr "Статья выглядит криво?" | ||
330 | |||
331 | msgid "tags:" | ||
332 | msgstr "теги:" | ||
333 | |||
334 | msgid "Edit tags" | ||
335 | msgstr "Редактировать теги" | ||
336 | |||
337 | msgid "save link!" | ||
338 | msgstr "сохранить ссылку!" | ||
339 | |||
340 | msgid "home" | ||
341 | msgstr "главная" | ||
342 | |||
343 | msgid "tags" | ||
344 | msgstr "теги" | ||
345 | |||
346 | msgid "logout" | ||
347 | msgstr "выход" | ||
348 | |||
349 | msgid "powered by" | ||
350 | msgstr "при поддержке" | ||
351 | |||
352 | msgid "debug mode is on so cache is off." | ||
353 | msgstr "включён режим отладки - кеш выключен." | ||
354 | |||
355 | msgid "your wallabag version:" | ||
356 | msgstr "Ваша версия wallabag:" | ||
357 | |||
358 | msgid "storage:" | ||
359 | msgstr "хранилище:" | ||
360 | |||
361 | msgid "save a link" | ||
362 | msgstr "сохранить ссылку" | ||
363 | |||
364 | msgid "back to home" | ||
365 | msgstr "домой" | ||
366 | |||
367 | msgid "toggle mark as read" | ||
368 | msgstr "изменить отметку 'прочитано'" | ||
369 | |||
370 | msgid "tweet" | ||
371 | msgstr "твитнуть" | ||
372 | |||
373 | msgid "email" | ||
374 | msgstr "email" | ||
375 | |||
376 | #, fuzzy | ||
377 | msgid "this article appears wrong?" | ||
378 | msgstr "Статья выглядит криво?" | ||
379 | |||
380 | msgid "No link available here!" | ||
381 | msgstr "Здесь нет ссылки!" | ||
382 | |||
383 | #, fuzzy | ||
384 | msgid "Poching a link" | ||
385 | msgstr "Сохранение ссылок" | ||
386 | |||
387 | #, fuzzy | ||
388 | msgid "by filling this field" | ||
389 | msgstr "Заполнением этого поля" | ||
390 | |||
391 | #, fuzzy | ||
392 | msgid "bookmarklet: drag & drop this link to your bookmarks bar" | ||
393 | msgstr "Закладка: перетащите и опустите ссылку на панель закладок" | ||
394 | |||
395 | msgid "your version" | ||
396 | msgstr "Ваша версия" | ||
397 | |||
398 | #, fuzzy | ||
399 | msgid "latest stable version" | ||
400 | msgstr "Последняя стабильная версия" | ||
401 | |||
402 | #, fuzzy | ||
403 | msgid "a more recent stable version is available." | ||
404 | msgstr "Доступна новая стабильная версия." | ||
405 | |||
406 | msgid "you are up to date." | ||
407 | msgstr "у вас всё самое новое." | ||
408 | |||
409 | msgid "latest dev version" | ||
410 | msgstr "последняя версия в разработке" | ||
411 | |||
412 | msgid "a more recent development version is available." | ||
413 | msgstr "есть более свежая версия в разработке." | ||
414 | |||
415 | #, fuzzy | ||
416 | msgid "Please execute the import script locally, it can take a very long time." | ||
417 | msgstr "Пожалуйста, выполните сценарий импорта локально - это может занять слишком много времени." | ||
418 | |||
419 | #, fuzzy | ||
420 | msgid "More infos in the official doc:" | ||
421 | msgstr "Больше сведений в официальной документации:" | ||
422 | |||
423 | #, fuzzy | ||
424 | msgid "import from Pocket" | ||
425 | msgstr "Импортировать из Pocket" | ||
426 | |||
427 | #, fuzzy | ||
428 | msgid "import from Readability" | ||
429 | msgstr "Импортировать из Readability" | ||
430 | |||
431 | #, fuzzy | ||
432 | msgid "import from Instapaper" | ||
433 | msgstr "Импортировать из Instapaper" | ||
434 | |||
435 | msgid "Tags" | ||
436 | msgstr "Теги" | ||
437 | |||
344 | msgid "Untitled" | 438 | msgid "Untitled" |
345 | msgstr "Без названия" | 439 | msgstr "Без названия" |
346 | 440 | ||
@@ -356,6 +450,9 @@ msgstr "ссылка успешно удалена" | |||
356 | msgid "the link wasn't deleted" | 450 | msgid "the link wasn't deleted" |
357 | msgstr "ссылка не удалена" | 451 | msgstr "ссылка не удалена" |
358 | 452 | ||
453 | msgid "Article not found!" | ||
454 | msgstr "Статью не найдено." | ||
455 | |||
359 | msgid "previous" | 456 | msgid "previous" |
360 | msgstr "предыдущая" | 457 | msgstr "предыдущая" |
361 | 458 | ||
@@ -389,15 +486,12 @@ msgstr "вы изменили свои настройки языка" | |||
389 | msgid "login failed: you have to fill all fields" | 486 | msgid "login failed: you have to fill all fields" |
390 | msgstr "войти не удалось: вы должны заполнить все поля" | 487 | msgstr "войти не удалось: вы должны заполнить все поля" |
391 | 488 | ||
392 | msgid "welcome to your poche" | 489 | msgid "welcome to your wallabag" |
393 | msgstr "добро пожаловать в ваш poche" | 490 | msgstr "добро пожаловать в wallabag" |
394 | 491 | ||
395 | msgid "login failed: bad login or password" | 492 | msgid "login failed: bad login or password" |
396 | msgstr "войти не удалось: неправильное имя пользователя или пароль" | 493 | msgstr "войти не удалось: неправильное имя пользователя или пароль" |
397 | 494 | ||
398 | msgid "see you soon!" | ||
399 | msgstr "увидимся!" | ||
400 | |||
401 | msgid "import from instapaper completed" | 495 | msgid "import from instapaper completed" |
402 | msgstr "импорт из instapaper завершен" | 496 | msgstr "импорт из instapaper завершен" |
403 | 497 | ||
@@ -422,14 +516,40 @@ msgstr "Не удалось найти требуемый \"" | |||
422 | msgid "Uh, there is a problem while generating feeds." | 516 | msgid "Uh, there is a problem while generating feeds." |
423 | msgstr "Ох, возникла проблема при создании ленты." | 517 | msgstr "Ох, возникла проблема при создании ленты." |
424 | 518 | ||
519 | msgid "Cache deleted." | ||
520 | msgstr "Кэш очищен. " | ||
521 | |||
425 | msgid "Oops, it seems you don't have PHP 5." | 522 | msgid "Oops, it seems you don't have PHP 5." |
426 | msgstr "Упс, кажется у вас не установлен PHP 5." | 523 | msgstr "Упс, кажется у вас не установлен 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 @@ | |||
4 | msgid "" | 4 | msgid "" |
5 | msgstr "" | 5 | msgstr "" |
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 | |||
23 | msgid "wallabag, a read it later open source system" | ||
24 | msgstr "" | ||
25 | |||
26 | msgid "login failed: user doesn't exist" | ||
27 | msgstr "" | ||
28 | |||
29 | msgid "return home" | ||
30 | msgstr "" | ||
19 | 31 | ||
20 | msgid "config" | 32 | msgid "config" |
21 | msgstr "nastavitve" | 33 | msgstr "nastavitve" |
22 | 34 | ||
23 | msgid "Poching a link" | 35 | msgid "Saving articles" |
24 | msgstr "Shrani povezavo" | 36 | msgstr "" |
37 | |||
38 | msgid "There are several ways to save an article:" | ||
39 | msgstr "" | ||
25 | 40 | ||
26 | msgid "read the documentation" | 41 | msgid "read the documentation" |
27 | msgstr "preberite dokumentacijo" | 42 | msgstr "preberite dokumentacijo" |
28 | 43 | ||
29 | msgid "by filling this field" | 44 | msgid "download the extension" |
45 | msgstr "" | ||
46 | |||
47 | msgid "via F-Droid" | ||
48 | msgstr "" | ||
49 | |||
50 | msgid " or " | ||
51 | msgstr "" | ||
52 | |||
53 | msgid "via Google Play" | ||
54 | msgstr "" | ||
55 | |||
56 | msgid "download the application" | ||
57 | msgstr "" | ||
58 | |||
59 | #, fuzzy | ||
60 | msgid "By filling this field" | ||
30 | msgstr "z vnosom v to polje" | 61 | msgstr "z vnosom v to polje" |
31 | 62 | ||
32 | msgid "poche it!" | 63 | msgid "bag it!" |
33 | msgstr "shrani!" | 64 | msgstr "" |
34 | 65 | ||
35 | msgid "Updating poche" | 66 | msgid "Bookmarklet: drag & drop this link to your bookmarks bar" |
36 | msgstr "Posodabljam Poche" | 67 | msgstr "" |
37 | 68 | ||
38 | msgid "your version" | 69 | msgid "Upgrading wallabag" |
39 | msgstr "vaša različica" | 70 | msgstr "" |
40 | 71 | ||
41 | msgid "latest stable version" | 72 | #, fuzzy |
73 | msgid "Installed version" | ||
42 | msgstr "zadnja stabilna različica" | 74 | msgstr "zadnja stabilna različica" |
43 | 75 | ||
44 | msgid "a more recent stable version is available." | 76 | #, fuzzy |
77 | msgid "Latest stable version" | ||
78 | msgstr "zadnja stabilna različica" | ||
79 | |||
80 | #, fuzzy | ||
81 | msgid "A more recent stable version is available." | ||
45 | msgstr "na voljo je nova stabilna različica." | 82 | msgstr "na voljo je nova stabilna različica." |
46 | 83 | ||
47 | msgid "you are up to date." | 84 | #, fuzzy |
85 | msgid "You are up to date." | ||
48 | msgstr "imate najnovejšo različico." | 86 | msgstr "imate najnovejšo različico." |
49 | 87 | ||
50 | msgid "latest dev version" | 88 | #, fuzzy |
89 | msgid "Latest dev version" | ||
51 | msgstr "zadnja razvojna različica" | 90 | msgstr "zadnja razvojna različica" |
52 | 91 | ||
53 | msgid "a more recent development version is available." | 92 | #, fuzzy |
93 | msgid "A more recent development version is available." | ||
54 | msgstr "na voljo je nova razvojna različica." | 94 | msgstr "na voljo je nova razvojna različica." |
55 | 95 | ||
96 | msgid "Feeds" | ||
97 | msgstr "" | ||
98 | |||
99 | msgid "Your feed token is currently empty and must first be generated to enable feeds. Click <a href='?feed&action=generate'>here to generate it</a>." | ||
100 | msgstr "" | ||
101 | |||
102 | msgid "Unread feed" | ||
103 | msgstr "" | ||
104 | |||
105 | #, fuzzy | ||
106 | msgid "Favorites feed" | ||
107 | msgstr "priljubljeni" | ||
108 | |||
109 | #, fuzzy | ||
110 | msgid "Archive feed" | ||
111 | msgstr "arhiv" | ||
112 | |||
113 | msgid "Your token:" | ||
114 | msgstr "" | ||
115 | |||
116 | msgid "Your user id:" | ||
117 | msgstr "" | ||
118 | |||
119 | msgid "You can regenerate your token: <a href='?feed&action=generate'>generate!</a>." | ||
120 | msgstr "" | ||
121 | |||
122 | #, fuzzy | ||
123 | msgid "Change your theme" | ||
124 | msgstr "Zamenjava gesla" | ||
125 | |||
126 | msgid "Theme:" | ||
127 | msgstr "" | ||
128 | |||
129 | msgid "Update" | ||
130 | msgstr "Posodobi" | ||
131 | |||
132 | #, fuzzy | ||
133 | msgid "Change your language" | ||
134 | msgstr "Zamenjava gesla" | ||
135 | |||
136 | msgid "Language:" | ||
137 | msgstr "" | ||
138 | |||
56 | msgid "Change your password" | 139 | msgid "Change your password" |
57 | msgstr "Zamenjava gesla" | 140 | msgstr "Zamenjava gesla" |
58 | 141 | ||
@@ -65,67 +148,69 @@ msgstr "Geslo" | |||
65 | msgid "Repeat your new password:" | 148 | msgid "Repeat your new password:" |
66 | msgstr "Ponovite novo geslo:" | 149 | msgstr "Ponovite novo geslo:" |
67 | 150 | ||
68 | msgid "Update" | ||
69 | msgstr "Posodobi" | ||
70 | |||
71 | msgid "Import" | 151 | msgid "Import" |
72 | msgstr "Uvozi" | 152 | msgstr "Uvozi" |
73 | 153 | ||
74 | msgid "Please execute the import script locally, it can take a very long time." | 154 | #, fuzzy |
75 | msgstr "" | 155 | msgid "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 " | 156 | msgstr "Prosimo poženite skripto za uvoz lokalno, saj lahko postopek traja precej časa." |
77 | "časa." | ||
78 | 157 | ||
79 | msgid "More infos in the official doc:" | 158 | #, fuzzy |
159 | msgid "More info in the official documentation:" | ||
80 | msgstr "Več informacij v uradni dokumentaciji:" | 160 | msgstr "Več informacij v uradni dokumentaciji:" |
81 | 161 | ||
82 | msgid "import from Pocket" | 162 | #, fuzzy |
163 | msgid "Import from Pocket" | ||
83 | msgstr "Uvoz iz aplikacije Pocket" | 164 | msgstr "Uvoz iz aplikacije Pocket" |
84 | 165 | ||
85 | msgid "import from Readability" | 166 | #, php-format |
167 | msgid "(you must have a %s file on your server)" | ||
168 | msgstr "" | ||
169 | |||
170 | #, fuzzy | ||
171 | msgid "Import from Readability" | ||
86 | msgstr "Uvoz iz aplikacije Readability" | 172 | msgstr "Uvoz iz aplikacije Readability" |
87 | 173 | ||
88 | msgid "import from Instapaper" | 174 | #, fuzzy |
175 | msgid "Import from Instapaper" | ||
89 | msgstr "Uvoz iz aplikacije Instapaper" | 176 | msgstr "Uvoz iz aplikacije Instapaper" |
90 | 177 | ||
91 | msgid "Export your poche datas" | 178 | #, fuzzy |
179 | msgid "Import from wallabag" | ||
180 | msgstr "Uvoz iz aplikacije Readability" | ||
181 | |||
182 | #, fuzzy | ||
183 | msgid "Export your wallabag data" | ||
92 | msgstr "Izvoz vsebine" | 184 | msgstr "Izvoz vsebine" |
93 | 185 | ||
94 | msgid "Click here" | 186 | msgid "Click here" |
95 | msgstr "Kliknite tukaj" | 187 | msgstr "Kliknite tukaj" |
96 | 188 | ||
97 | msgid "to export your poche datas." | 189 | #, fuzzy |
190 | msgid "to download your database." | ||
98 | msgstr "za izvoz vsebine aplikacije Poche." | 191 | msgstr "za izvoz vsebine aplikacije Poche." |
99 | 192 | ||
100 | msgid "back to home" | 193 | #, fuzzy |
101 | msgstr "Nazaj domov" | 194 | msgid "to export your wallabag data." |
102 | 195 | msgstr "za izvoz vsebine aplikacije Poche." | |
103 | msgid "installation" | ||
104 | msgstr "Namestitev" | ||
105 | 196 | ||
106 | msgid "install your poche" | 197 | msgid "Cache" |
107 | msgstr "Namestitev aplikacije Poche" | 198 | msgstr "" |
108 | 199 | ||
109 | msgid "" | 200 | msgid "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>." | ||
113 | msgstr "" | 201 | msgstr "" |
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 | ||
118 | msgid "Login" | 203 | msgid "You can enter multiple tags, separated by commas." |
119 | msgstr "Prijava" | 204 | msgstr "" |
120 | 205 | ||
121 | msgid "Repeat your password" | 206 | msgid "return to article" |
122 | msgstr "Ponovite geslo" | 207 | msgstr "" |
123 | 208 | ||
124 | msgid "Install" | 209 | msgid "plop" |
125 | msgstr "Namesti" | 210 | msgstr "štrbunk" |
126 | 211 | ||
127 | msgid "back to top" | 212 | msgid "You can <a href='wallabag_compatibility_test.php'>check your configuration here</a>." |
128 | msgstr "nazaj na vrh" | 213 | msgstr "" |
129 | 214 | ||
130 | msgid "favoris" | 215 | msgid "favoris" |
131 | msgstr "priljubljeni" | 216 | msgstr "priljubljeni" |
@@ -154,10 +239,14 @@ msgstr "po naslovu" | |||
154 | msgid "by title desc" | 239 | msgid "by title desc" |
155 | msgstr "po naslovu - padajoče" | 240 | msgstr "po naslovu - padajoče" |
156 | 241 | ||
157 | msgid "No link available here!" | 242 | msgid "Tag" |
158 | msgstr "Povezava ni na voljo!" | 243 | msgstr "" |
159 | 244 | ||
160 | msgid "toggle mark as read" | 245 | msgid "No articles found." |
246 | msgstr "" | ||
247 | |||
248 | #, fuzzy | ||
249 | msgid "Toggle mark as read" | ||
161 | msgstr "označi kot prebrano" | 250 | msgstr "označi kot prebrano" |
162 | 251 | ||
163 | msgid "toggle favorite" | 252 | msgid "toggle favorite" |
@@ -169,13 +258,95 @@ msgstr "zavrzi" | |||
169 | msgid "original" | 258 | msgid "original" |
170 | msgstr "izvirnik" | 259 | msgstr "izvirnik" |
171 | 260 | ||
261 | msgid "estimated reading time:" | ||
262 | msgstr "" | ||
263 | |||
264 | msgid "mark all the entries as read" | ||
265 | msgstr "" | ||
266 | |||
172 | msgid "results" | 267 | msgid "results" |
173 | msgstr "rezultati" | 268 | msgstr "rezultati" |
174 | 269 | ||
175 | msgid "tweet" | 270 | msgid "installation" |
271 | msgstr "Namestitev" | ||
272 | |||
273 | #, fuzzy | ||
274 | msgid "install your wallabag" | ||
275 | msgstr "Namestitev aplikacije Poche" | ||
276 | |||
277 | #, fuzzy | ||
278 | msgid "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>." | ||
279 | msgstr "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 | |||
281 | msgid "Login" | ||
282 | msgstr "Prijava" | ||
283 | |||
284 | msgid "Repeat your password" | ||
285 | msgstr "Ponovite geslo" | ||
286 | |||
287 | msgid "Install" | ||
288 | msgstr "Namesti" | ||
289 | |||
290 | #, fuzzy | ||
291 | msgid "login to your wallabag" | ||
292 | msgstr "prijavite se v svoj Poche" | ||
293 | |||
294 | msgid "Login to wallabag" | ||
295 | msgstr "" | ||
296 | |||
297 | msgid "you are in demo mode, some features may be disabled." | ||
298 | msgstr "uporabljate vzorčno različico programa, zato so lahko nekatere funkcije izklopljene." | ||
299 | |||
300 | msgid "Username" | ||
301 | msgstr "" | ||
302 | |||
303 | msgid "Stay signed in" | ||
304 | msgstr "Ostani prijavljen" | ||
305 | |||
306 | msgid "(Do not check on public computers)" | ||
307 | msgstr "(Ne označi na javnih napravah)" | ||
308 | |||
309 | msgid "Sign in" | ||
310 | msgstr "Prijava" | ||
311 | |||
312 | msgid "favorites" | ||
313 | msgstr "priljubljeni" | ||
314 | |||
315 | msgid "estimated reading time :" | ||
316 | msgstr "" | ||
317 | |||
318 | msgid "Mark all the entries as read" | ||
319 | msgstr "" | ||
320 | |||
321 | msgid "Return home" | ||
322 | msgstr "" | ||
323 | |||
324 | #, fuzzy | ||
325 | msgid "Back to top" | ||
326 | msgstr "nazaj na vrh" | ||
327 | |||
328 | #, fuzzy | ||
329 | msgid "Mark as read" | ||
330 | msgstr "označi kot prebrano" | ||
331 | |||
332 | #, fuzzy | ||
333 | msgid "Favorite" | ||
334 | msgstr "priljubljeni" | ||
335 | |||
336 | #, fuzzy | ||
337 | msgid "Toggle favorite" | ||
338 | msgstr "označi kot priljubljeno" | ||
339 | |||
340 | #, fuzzy | ||
341 | msgid "Delete" | ||
342 | msgstr "zavrzi" | ||
343 | |||
344 | #, fuzzy | ||
345 | msgid "Tweet" | ||
176 | msgstr "tvitni" | 346 | msgstr "tvitni" |
177 | 347 | ||
178 | msgid "email" | 348 | #, fuzzy |
349 | msgid "Email" | ||
179 | msgstr "pošlji po e-pošti" | 350 | msgstr "pošlji po e-pošti" |
180 | 351 | ||
181 | msgid "shaarli" | 352 | msgid "shaarli" |
@@ -184,26 +355,24 @@ msgstr "shaarli" | |||
184 | msgid "flattr" | 355 | msgid "flattr" |
185 | msgstr "flattr" | 356 | msgstr "flattr" |
186 | 357 | ||
187 | msgid "this article appears wrong?" | 358 | #, fuzzy |
359 | msgid "Does this article appear wrong?" | ||
188 | msgstr "napaka?" | 360 | msgstr "napaka?" |
189 | 361 | ||
190 | msgid "create an issue" | 362 | msgid "tags:" |
191 | msgstr "prijavi napako" | 363 | msgstr "" |
192 | |||
193 | msgid "or" | ||
194 | msgstr "ali" | ||
195 | 364 | ||
196 | msgid "contact us by mail" | 365 | msgid "Edit tags" |
197 | msgstr "pošlji e-pošto razvijalcem" | 366 | msgstr "" |
198 | 367 | ||
199 | msgid "plop" | 368 | msgid "save link!" |
200 | msgstr "štrbunk" | 369 | msgstr "" |
201 | 370 | ||
202 | msgid "home" | 371 | msgid "home" |
203 | msgstr "domov" | 372 | msgstr "domov" |
204 | 373 | ||
205 | msgid "favorites" | 374 | msgid "tags" |
206 | msgstr "priljubljeni" | 375 | msgstr "" |
207 | 376 | ||
208 | msgid "logout" | 377 | msgid "logout" |
209 | msgstr "odjava" | 378 | msgstr "odjava" |
@@ -212,28 +381,188 @@ msgid "powered by" | |||
212 | msgstr "stran poganja" | 381 | msgstr "stran poganja" |
213 | 382 | ||
214 | msgid "debug mode is on so cache is off." | 383 | msgid "debug mode is on so cache is off." |
215 | msgstr "" | 384 | msgstr "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 | ||
218 | msgid "your poche version:" | 386 | #, fuzzy |
219 | msgstr "vaša verzija Poche:" | 387 | msgid "your wallabag version:" |
388 | msgstr "vaša različica" | ||
220 | 389 | ||
221 | msgid "storage:" | 390 | msgid "storage:" |
222 | msgstr "pomnilnik:" | 391 | msgstr "pomnilnik:" |
223 | 392 | ||
224 | msgid "login to your poche" | 393 | msgid "save a link" |
225 | msgstr "prijavite se v svoj Poche" | 394 | msgstr "" |
226 | 395 | ||
227 | msgid "you are in demo mode, some features may be disabled." | 396 | msgid "back to home" |
397 | msgstr "Nazaj domov" | ||
398 | |||
399 | msgid "toggle mark as read" | ||
400 | msgstr "označi kot prebrano" | ||
401 | |||
402 | msgid "tweet" | ||
403 | msgstr "tvitni" | ||
404 | |||
405 | msgid "email" | ||
406 | msgstr "pošlji po e-pošti" | ||
407 | |||
408 | msgid "this article appears wrong?" | ||
409 | msgstr "napaka?" | ||
410 | |||
411 | msgid "No link available here!" | ||
412 | msgstr "Povezava ni na voljo!" | ||
413 | |||
414 | msgid "Poching a link" | ||
415 | msgstr "Shrani povezavo" | ||
416 | |||
417 | msgid "by filling this field" | ||
418 | msgstr "z vnosom v to polje" | ||
419 | |||
420 | msgid "bookmarklet: drag & drop this link to your bookmarks bar" | ||
228 | msgstr "" | 421 | msgstr "" |
229 | "uporabljate vzorčno različico programa, zato so lahko nekatere funkcije " | ||
230 | "izklopljene." | ||
231 | 422 | ||
232 | msgid "Stay signed in" | 423 | msgid "your version" |
233 | msgstr "Ostani prijavljen" | 424 | msgstr "vaša različica" |
234 | 425 | ||
235 | msgid "(Do not check on public computers)" | 426 | msgid "latest stable version" |
236 | msgstr "(Ne označi na javnih napravah)" | 427 | msgstr "zadnja stabilna različica" |
237 | 428 | ||
238 | msgid "Sign in" | 429 | msgid "a more recent stable version is available." |
239 | msgstr "Prijava" | 430 | msgstr "na voljo je nova stabilna različica." |
431 | |||
432 | msgid "you are up to date." | ||
433 | msgstr "imate najnovejšo različico." | ||
434 | |||
435 | msgid "latest dev version" | ||
436 | msgstr "zadnja razvojna različica" | ||
437 | |||
438 | msgid "a more recent development version is available." | ||
439 | msgstr "na voljo je nova razvojna različica." | ||
440 | |||
441 | msgid "Please execute the import script locally, it can take a very long time." | ||
442 | msgstr "Prosimo poženite skripto za uvoz lokalno, saj lahko postopek traja precej časa." | ||
443 | |||
444 | msgid "More infos in the official doc:" | ||
445 | msgstr "Več informacij v uradni dokumentaciji:" | ||
446 | |||
447 | msgid "import from Pocket" | ||
448 | msgstr "Uvoz iz aplikacije Pocket" | ||
449 | |||
450 | msgid "import from Readability" | ||
451 | msgstr "Uvoz iz aplikacije Readability" | ||
452 | |||
453 | msgid "import from Instapaper" | ||
454 | msgstr "Uvoz iz aplikacije Instapaper" | ||
455 | |||
456 | msgid "Tags" | ||
457 | msgstr "" | ||
458 | |||
459 | #, fuzzy | ||
460 | msgid "Untitled" | ||
461 | msgstr "po naslovu" | ||
462 | |||
463 | msgid "the link has been added successfully" | ||
464 | msgstr "" | ||
465 | |||
466 | msgid "error during insertion : the link wasn't added" | ||
467 | msgstr "" | ||
468 | |||
469 | msgid "the link has been deleted successfully" | ||
470 | msgstr "" | ||
471 | |||
472 | msgid "the link wasn't deleted" | ||
473 | msgstr "" | ||
474 | |||
475 | msgid "Article not found!" | ||
476 | msgstr "" | ||
477 | |||
478 | msgid "previous" | ||
479 | msgstr "" | ||
480 | |||
481 | msgid "next" | ||
482 | msgstr "" | ||
483 | |||
484 | msgid "in demo mode, you can't update your password" | ||
485 | msgstr "" | ||
486 | |||
487 | msgid "your password has been updated" | ||
488 | msgstr "" | ||
489 | |||
490 | msgid "the two fields have to be filled & the password must be the same in the two fields" | ||
491 | msgstr "" | ||
492 | |||
493 | msgid "still using the \"" | ||
494 | msgstr "" | ||
495 | |||
496 | msgid "that theme does not seem to be installed" | ||
497 | msgstr "" | ||
498 | |||
499 | msgid "you have changed your theme preferences" | ||
500 | msgstr "" | ||
501 | |||
502 | msgid "that language does not seem to be installed" | ||
503 | msgstr "" | ||
504 | |||
505 | msgid "you have changed your language preferences" | ||
506 | msgstr "" | ||
507 | |||
508 | msgid "login failed: you have to fill all fields" | ||
509 | msgstr "" | ||
510 | |||
511 | msgid "welcome to your wallabag" | ||
512 | msgstr "" | ||
513 | |||
514 | msgid "login failed: bad login or password" | ||
515 | msgstr "" | ||
516 | |||
517 | #, fuzzy | ||
518 | msgid "import from instapaper completed" | ||
519 | msgstr "Uvoz iz aplikacije Instapaper" | ||
520 | |||
521 | #, fuzzy | ||
522 | msgid "import from pocket completed" | ||
523 | msgstr "Uvoz iz aplikacije Pocket" | ||
524 | |||
525 | #, fuzzy | ||
526 | msgid "import from Readability completed. " | ||
527 | msgstr "Uvoz iz aplikacije Readability" | ||
528 | |||
529 | #, fuzzy | ||
530 | msgid "import from Poche completed. " | ||
531 | msgstr "Uvoz iz aplikacije Pocket" | ||
532 | |||
533 | msgid "Unknown import provider." | ||
534 | msgstr "" | ||
535 | |||
536 | msgid "Incomplete inc/poche/define.inc.php file, please define \"" | ||
537 | msgstr "" | ||
538 | |||
539 | msgid "Could not find required \"" | ||
540 | msgstr "" | ||
541 | |||
542 | msgid "Uh, there is a problem while generating feeds." | ||
543 | msgstr "" | ||
544 | |||
545 | #, fuzzy | ||
546 | msgid "Cache deleted." | ||
547 | msgstr "zavrzi" | ||
548 | |||
549 | msgid "Oops, it seems you don't have PHP 5." | ||
550 | msgstr "" | ||
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 "" | |||
2 | msgstr "" | 2 | msgstr "" |
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 | ||
20 | msgid "poche, a read it later open source system" | 20 | msgid "wallabag, a read it later open source system" |
21 | msgstr "poche, сервіс відкладеного читання з відкритим кодом" | 21 | msgstr "wallabag, сервіс відкладеного читання з відкритим кодом" |
22 | 22 | ||
23 | msgid "login failed: user doesn't exist" | 23 | msgid "login failed: user doesn't exist" |
24 | msgstr "увійти не вдалося: користувач не існує" | 24 | msgstr "увійти не вдалося: користувач не існує" |
25 | 25 | ||
26 | msgid "powered by" | 26 | msgid "return home" |
27 | msgstr "за підтримки" | 27 | msgstr "повернутися на головну" |
28 | |||
29 | msgid "debug mode is on so cache is off." | ||
30 | msgstr "режим відладки включено, отже кеш виключено." | ||
31 | |||
32 | msgid "your poche version:" | ||
33 | msgstr "версія вашої poche:" | ||
34 | |||
35 | msgid "storage:" | ||
36 | msgstr "сховище:" | ||
37 | |||
38 | msgid "home" | ||
39 | msgstr "головна" | ||
40 | |||
41 | msgid "favorites" | ||
42 | msgstr "вибране" | ||
43 | |||
44 | msgid "archive" | ||
45 | msgstr "архів" | ||
46 | |||
47 | msgid "tags" | ||
48 | msgstr "теги" | ||
49 | 28 | ||
50 | msgid "config" | 29 | msgid "config" |
51 | msgstr "налаштування" | 30 | msgstr "налаштування" |
52 | 31 | ||
53 | msgid "logout" | 32 | msgid "Saving articles" |
54 | msgstr "вихід" | ||
55 | |||
56 | msgid "return home" | ||
57 | msgstr "повернутися на головну" | ||
58 | |||
59 | msgid "Poching links" | ||
60 | msgstr "Зберігання посилань" | 33 | msgstr "Зберігання посилань" |
61 | 34 | ||
62 | msgid "There are several ways to poche a link:" | 35 | msgid "There are several ways to save an article:" |
63 | msgstr "Є кілька способів зберегти послнн:" | 36 | msgstr "Є кілька способів зберегти статю:" |
64 | 37 | ||
65 | msgid "read the documentation" | 38 | msgid "read the documentation" |
66 | msgstr "читати документацію" | 39 | msgstr "читати документацію" |
@@ -83,14 +56,14 @@ msgstr "завантажити додаток" | |||
83 | msgid "By filling this field" | 56 | msgid "By filling this field" |
84 | msgstr "Заповнивши це поле" | 57 | msgstr "Заповнивши це поле" |
85 | 58 | ||
86 | msgid "poche it!" | 59 | msgid "bag it!" |
87 | msgstr "зберегти!" | 60 | msgstr "зберегти!" |
88 | 61 | ||
89 | msgid "Bookmarklet: drag & drop this link to your bookmarks bar" | 62 | msgid "Bookmarklet: drag & drop this link to your bookmarks bar" |
90 | msgstr "З допомогою закладки: перетягніть і відпустіть посилання на панель закладок" | 63 | msgstr "З допомогою закладки: перетягніть і відпустіть посилання на панель закладок" |
91 | 64 | ||
92 | msgid "Updating poche" | 65 | msgid "Upgrading wallabag" |
93 | msgstr "Оновлення poche" | 66 | msgstr "Оновлення wallabag" |
94 | 67 | ||
95 | msgid "Installed version" | 68 | msgid "Installed version" |
96 | msgstr "Встановлено версію" | 69 | msgstr "Встановлено версію" |
@@ -104,14 +77,11 @@ msgstr "Є новіша стабільна версія." | |||
104 | msgid "You are up to date." | 77 | msgid "You are up to date." |
105 | msgstr "У вас остання версія." | 78 | msgstr "У вас остання версія." |
106 | 79 | ||
107 | msgid "latest dev version" | 80 | msgid "Latest dev version" |
108 | msgstr "остання версія в розробці" | 81 | msgstr "Остання версія в розробці" |
109 | |||
110 | msgid "a more recent development version is available." | ||
111 | msgstr "доступна новіша версія в розробці." | ||
112 | 82 | ||
113 | msgid "you are up to date." | 83 | msgid "A more recent development version is available." |
114 | msgstr "у с стнн версія." | 84 | msgstr "остун овша версія в розробці." |
115 | 85 | ||
116 | msgid "Feeds" | 86 | msgid "Feeds" |
117 | msgstr "Завантаження (feeds)" | 87 | msgstr "Завантаження (feeds)" |
@@ -170,8 +140,8 @@ msgstr "Імпортування" | |||
170 | msgid "Please execute the import script locally as it can take a very long time." | 140 | msgid "Please execute the import script locally as it can take a very long time." |
171 | msgstr "Будь ласка, виконайте сценарій імпорту локально, оскільки це може тривати досить довго." | 141 | msgstr "Будь ласка, виконайте сценарій імпорту локально, оскільки це може тривати досить довго." |
172 | 142 | ||
173 | msgid "More info in the official docs:" | 143 | msgid "More info in the official documentation:" |
174 | msgstr "Більш тальна інформаці в офіційній документації:" | 144 | msgstr "Більше інформаці в офіційній документації:" |
175 | 145 | ||
176 | msgid "Import from Pocket" | 146 | msgid "Import from Pocket" |
177 | msgstr "Імпорт з Pocket-а" | 147 | msgstr "Імпорт з Pocket-а" |
@@ -186,11 +156,11 @@ msgstr "Імпорт з Readability" | |||
186 | msgid "Import from Instapaper" | 156 | msgid "Import from Instapaper" |
187 | msgstr "Імпорт з Instapaper" | 157 | msgstr "Імпорт з Instapaper" |
188 | 158 | ||
189 | msgid "Import from poche" | 159 | msgid "Import from wallabag" |
190 | msgstr "Імпорт з poche" | 160 | msgstr "Імпорт з wallabag" |
191 | 161 | ||
192 | msgid "Export your poche data" | 162 | msgid "Export your wallabag data" |
193 | msgstr "Експортувати ваші дані з poche" | 163 | msgstr "Експортувати ваші дані з wallabag" |
194 | 164 | ||
195 | msgid "Click here" | 165 | msgid "Click here" |
196 | msgstr "Клікніть тут" | 166 | msgstr "Клікніть тут" |
@@ -198,32 +168,14 @@ msgstr "Клікніть тут" | |||
198 | msgid "to download your database." | 168 | msgid "to download your database." |
199 | msgstr "щоб завантажити вашу базу даних." | 169 | msgstr "щоб завантажити вашу базу даних." |
200 | 170 | ||
201 | msgid "to export your poche data." | 171 | msgid "to export your wallabag data." |
202 | msgstr "щоб експортувати ваші дані poche." | 172 | msgstr "щоб експортувати ваші дані wallabag." |
203 | 173 | ||
204 | msgid "Tag" | 174 | msgid "Cache" |
205 | msgstr "ег" | 175 | msgstr "еш" |
206 | 176 | ||
207 | msgid "No link available here!" | 177 | msgid "to delete cache." |
208 | msgstr "Немає доступних посилань!" | 178 | msgstr "щоб очистити кеш." |
209 | |||
210 | msgid "toggle mark as read" | ||
211 | msgstr "змінити мітку на прочитано" | ||
212 | |||
213 | msgid "toggle favorite" | ||
214 | msgstr "змінити мітку вибраного" | ||
215 | |||
216 | msgid "delete" | ||
217 | msgstr "видалити" | ||
218 | |||
219 | msgid "original" | ||
220 | msgstr "оригінал" | ||
221 | |||
222 | msgid "estimated reading time:" | ||
223 | msgstr "приблизний час читання:" | ||
224 | |||
225 | msgid "results" | ||
226 | msgstr "результат(ів)" | ||
227 | 179 | ||
228 | msgid "You can enter multiple tags, separated by commas." | 180 | msgid "You can enter multiple tags, separated by commas." |
229 | msgstr "Ви можете ввести декілька тегів, розділених комами." | 181 | msgstr "Ви можете ввести декілька тегів, розділених комами." |
@@ -240,6 +192,9 @@ msgstr "Ви можете <a href='wallabag_compatibility_test.php'>переві | |||
240 | msgid "favoris" | 192 | msgid "favoris" |
241 | msgstr "вибране" | 193 | msgstr "вибране" |
242 | 194 | ||
195 | msgid "archive" | ||
196 | msgstr "архів" | ||
197 | |||
243 | msgid "unread" | 198 | msgid "unread" |
244 | msgstr "непрочитане" | 199 | msgstr "непрочитане" |
245 | 200 | ||
@@ -261,12 +216,33 @@ msgstr "за назвою" | |||
261 | msgid "by title desc" | 216 | msgid "by title desc" |
262 | msgstr "за назвою по спаданню" | 217 | msgstr "за назвою по спаданню" |
263 | 218 | ||
219 | msgid "Tag" | ||
220 | msgstr "Тег" | ||
221 | |||
264 | msgid "No articles found." | 222 | msgid "No articles found." |
265 | msgstr "Статей не знайдено." | 223 | msgstr "Статей не знайдено." |
266 | 224 | ||
267 | msgid "Toggle mark as read" | 225 | msgid "Toggle mark as read" |
268 | msgstr "змінити мітку прочитаного" | 226 | msgstr "змінити мітку прочитаного" |
269 | 227 | ||
228 | msgid "toggle favorite" | ||
229 | msgstr "змінити мітку вибраного" | ||
230 | |||
231 | msgid "delete" | ||
232 | msgstr "видалити" | ||
233 | |||
234 | msgid "original" | ||
235 | msgstr "оригінал" | ||
236 | |||
237 | msgid "estimated reading time:" | ||
238 | msgstr "приблизний час читання:" | ||
239 | |||
240 | msgid "mark all the entries as read" | ||
241 | msgstr "відмітити всі статті як прочитані" | ||
242 | |||
243 | msgid "results" | ||
244 | msgstr "результат(ів)" | ||
245 | |||
270 | msgid "installation" | 246 | msgid "installation" |
271 | msgstr "інсталяція" | 247 | msgstr "інсталяція" |
272 | 248 | ||
@@ -303,6 +279,18 @@ msgstr "Запам'ятати мене" | |||
303 | msgid "(Do not check on public computers)" | 279 | msgid "(Do not check on public computers)" |
304 | msgstr "(Не відмічайте на загальнодоступних комп'ютерах)" | 280 | msgstr "(Не відмічайте на загальнодоступних комп'ютерах)" |
305 | 281 | ||
282 | msgid "Sign in" | ||
283 | msgstr "Увійти" | ||
284 | |||
285 | msgid "favorites" | ||
286 | msgstr "вибране" | ||
287 | |||
288 | msgid "estimated reading time :" | ||
289 | msgstr "приблизний час читання:" | ||
290 | |||
291 | msgid "Mark all the entries as read" | ||
292 | msgstr "Відмітити все як прочитане" | ||
293 | |||
306 | msgid "Return home" | 294 | msgid "Return home" |
307 | msgstr "Повернутися на головну" | 295 | msgstr "Повернутися на головну" |
308 | 296 | ||
@@ -342,11 +330,95 @@ msgstr "теги:" | |||
342 | msgid "Edit tags" | 330 | msgid "Edit tags" |
343 | msgstr "Редагувати теги" | 331 | msgstr "Редагувати теги" |
344 | 332 | ||
345 | msgid "previous" | 333 | msgid "save link!" |
346 | msgstr "ре" | 334 | msgstr "ерет лнк!" |
347 | 335 | ||
348 | msgid "next" | 336 | msgid "home" |
349 | msgstr "наступна" | 337 | msgstr "головна" |
338 | |||
339 | msgid "tags" | ||
340 | msgstr "теги" | ||
341 | |||
342 | msgid "logout" | ||
343 | msgstr "вихід" | ||
344 | |||
345 | msgid "powered by" | ||
346 | msgstr "за підтримки" | ||
347 | |||
348 | msgid "debug mode is on so cache is off." | ||
349 | msgstr "режим відладки включено, отже кеш виключено." | ||
350 | |||
351 | msgid "your wallabag version:" | ||
352 | msgstr "версія вашого wallabag:" | ||
353 | |||
354 | msgid "storage:" | ||
355 | msgstr "сховище:" | ||
356 | |||
357 | msgid "save a link" | ||
358 | msgstr "зберегти лінк" | ||
359 | |||
360 | msgid "back to home" | ||
361 | msgstr "назад на головну" | ||
362 | |||
363 | msgid "toggle mark as read" | ||
364 | msgstr "змінити мітку на прочитано" | ||
365 | |||
366 | msgid "tweet" | ||
367 | msgstr "твітнути" | ||
368 | |||
369 | msgid "email" | ||
370 | msgstr "email" | ||
371 | |||
372 | msgid "this article appears wrong?" | ||
373 | msgstr "ця стаття виглядає не так, як треба?" | ||
374 | |||
375 | msgid "No link available here!" | ||
376 | msgstr "Немає доступних посилань!" | ||
377 | |||
378 | msgid "Poching a link" | ||
379 | msgstr "Зберігання посилання" | ||
380 | |||
381 | msgid "by filling this field" | ||
382 | msgstr "заповнивши це поле" | ||
383 | |||
384 | msgid "bookmarklet: drag & drop this link to your bookmarks bar" | ||
385 | msgstr "з допомогою закладки: перетягніть і відпустіть посилання на панель закладок" | ||
386 | |||
387 | msgid "your version" | ||
388 | msgstr "ваша версія:" | ||
389 | |||
390 | msgid "latest stable version" | ||
391 | msgstr "остання стабільна версія" | ||
392 | |||
393 | msgid "a more recent stable version is available." | ||
394 | msgstr "є новіша стабільна версія." | ||
395 | |||
396 | msgid "you are up to date." | ||
397 | msgstr "у вас остання версія." | ||
398 | |||
399 | msgid "latest dev version" | ||
400 | msgstr "остання версія в розробці" | ||
401 | |||
402 | msgid "a more recent development version is available." | ||
403 | msgstr "доступна новіша версія в розробці." | ||
404 | |||
405 | msgid "Please execute the import script locally, it can take a very long time." | ||
406 | msgstr "Будь ласка, виконайте сценарій імпорту локально, оскільки це може тривати досить довго." | ||
407 | |||
408 | msgid "More infos in the official doc:" | ||
409 | msgstr "Більше інформації в офіційній документації:" | ||
410 | |||
411 | msgid "import from Pocket" | ||
412 | msgstr "імпорт з Pocket-а" | ||
413 | |||
414 | msgid "import from Readability" | ||
415 | msgstr "імпорт з Readability" | ||
416 | |||
417 | msgid "import from Instapaper" | ||
418 | msgstr "імпорт з Instapaper" | ||
419 | |||
420 | msgid "Tags" | ||
421 | msgstr "Теги" | ||
350 | 422 | ||
351 | msgid "Untitled" | 423 | msgid "Untitled" |
352 | msgstr "Без назви" | 424 | msgstr "Без назви" |
@@ -363,6 +435,15 @@ msgstr "посилання успішно видалено" | |||
363 | msgid "the link wasn't deleted" | 435 | msgid "the link wasn't deleted" |
364 | msgstr "посилання не було видалено" | 436 | msgstr "посилання не було видалено" |
365 | 437 | ||
438 | msgid "Article not found!" | ||
439 | msgstr "Статтю не знайдено!" | ||
440 | |||
441 | msgid "previous" | ||
442 | msgstr "попередня" | ||
443 | |||
444 | msgid "next" | ||
445 | msgstr "наступна" | ||
446 | |||
366 | msgid "in demo mode, you can't update your password" | 447 | msgid "in demo mode, you can't update your password" |
367 | msgstr "в демонстраційному режимі ви не можете змінювати свій пароль" | 448 | msgstr "в демонстраційному режимі ви не можете змінювати свій пароль" |
368 | 449 | ||
@@ -390,15 +471,12 @@ msgstr "ви змінили свої налаштування мови" | |||
390 | msgid "login failed: you have to fill all fields" | 471 | msgid "login failed: you have to fill all fields" |
391 | msgstr "увійти не вдалося: ви повинні заповнити всі поля" | 472 | msgstr "увійти не вдалося: ви повинні заповнити всі поля" |
392 | 473 | ||
393 | msgid "welcome to your poche" | 474 | msgid "welcome to your wallabag" |
394 | msgstr "ласкаво просимо до вашого poche" | 475 | msgstr "ласкаво просимо до вашого wallabag" |
395 | 476 | ||
396 | msgid "login failed: bad login or password" | 477 | msgid "login failed: bad login or password" |
397 | msgstr "увійти не вдалося: не вірний логін або пароль" | 478 | msgstr "увійти не вдалося: не вірний логін або пароль" |
398 | 479 | ||
399 | msgid "see you soon!" | ||
400 | msgstr "бувайте, ще побачимось!" | ||
401 | |||
402 | msgid "import from instapaper completed" | 480 | msgid "import from instapaper completed" |
403 | msgstr "імпорт з instapaper-а завершено" | 481 | msgstr "імпорт з instapaper-а завершено" |
404 | 482 | ||
@@ -423,6 +501,34 @@ msgstr "Не вдалося знайти потрібний \"" | |||
423 | msgid "Uh, there is a problem while generating feeds." | 501 | msgid "Uh, there is a problem while generating feeds." |
424 | msgstr "Ох, є проблема при створенні завантажень (feeds)." | 502 | msgstr "Ох, є проблема при створенні завантажень (feeds)." |
425 | 503 | ||
504 | msgid "Cache deleted." | ||
505 | msgstr "Кеш очищено." | ||
506 | |||
426 | msgid "Oops, it seems you don't have PHP 5." | 507 | msgid "Oops, it seems you don't have PHP 5." |
427 | msgstr "Упс, здається, у вас немає PHP 5." | 508 | msgstr "Упс, здається, у вас немає 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&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&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> |