Polylang - Version 1.0.4

Version Description

(2013-04-08) =

  • Add Estonian translation contributed by Ahto Naris
  • Now compatible with languages files stored in wp-content/languages/themes
  • Bug correction: page preview does not work when adding the language code to all urls
  • Bug correction: error when a post type or taxonomy label is not a string
  • Bug correction: admin text section of wpml-config.xml (introduced in 1.0.3)
  • Bug correction: infinite redirect loop when querying an unattached media and the language code is added to all urls
  • Bug correction: the text direction is not set from Polylang options when the language code is added to all urls
  • Bug correction: get_adjacent_post is filtered by language even for post types without language
  • Bug correction: the home url is not not in the correct language in wp-login.php
  • Bug correction: the language is not correctly set when using date and name permalinks (introduced in 1.0.3)
Download this release

Release Info

Developer Chouby
Plugin Icon 128x128 Polylang
Version 1.0.4
Comparing to
See all releases

Code changes from version 1.0.3 to 1.0.4

include/core.php CHANGED
@@ -232,7 +232,7 @@ class Polylang_Core extends Polylang_base {
232
  function pre_comment_on_post($post_id) {
233
  $this->curlang = $this->get_post_language($post_id);
234
  add_filter('page_link', array(&$this, 'page_link'), 10, 2); // useful when posting a comment on static front page in non default language
235
- $this->add_post_term_link_filters(); // useful to redirect to correct post comment url when adding the language to all url
236
  }
237
 
238
  // sets the language when it is always included in the url
@@ -241,7 +241,6 @@ class Polylang_Core extends Polylang_base {
241
  return;
242
 
243
  global $wp_rewrite;
244
-
245
  // special case for ajax request
246
  if (isset($_REQUEST['pll_load_front']))
247
  $this->curlang = empty($_REQUEST['lang']) ? $this->get_preferred_language() : $this->get_language($_REQUEST['lang']);
@@ -260,9 +259,14 @@ class Polylang_Core extends Polylang_base {
260
  // thanks to Gonçalo Peres for pointing out the issue with queries unknown to WP
261
  // http://wordpress.org/support/topic/plugin-polylang-language-homepage-redirection-problem-and-solution-but-incomplete?replies=4#post-2729566
262
  if (str_replace('www.', '', home_url('/')) == trailingslashit((is_ssl() ? 'https://' : 'http://').str_replace('www.', '', $_SERVER['HTTP_HOST']).str_replace(array($wp_rewrite->index, '?'.$_SERVER['QUERY_STRING']), array('', ''), $_SERVER['REQUEST_URI']))) {
263
- // take care to post preview http://wordpress.org/support/topic/static-frontpage-url-parameter-url-language-information
264
- if (isset($_GET['preview']) && isset($_GET['p']) && $lg = $this->get_post_language($_GET['p']))
265
- $this->curlang = $lg ? $lg : $this->get_language($this->options['default_lang']);
 
 
 
 
 
266
  else
267
  $this->home_requested();
268
  }
@@ -283,6 +287,7 @@ class Polylang_Core extends Polylang_base {
283
  add_action('wp', array(&$this, 'check_language_code_in_url')); // before Wordpress redirect_canonical
284
  }
285
 
 
286
  $GLOBALS['l10n']['pll_string'] = $this->mo_import($this->curlang);
287
  do_action('pll_language_defined');
288
  }
@@ -323,7 +328,7 @@ class Polylang_Core extends Polylang_base {
323
  // translates post types and taxonomies labels once the language is known
324
  function translate_labels($type) {
325
  foreach($type->labels as $key=>$label)
326
- if (isset($this->labels[$label]))
327
  $type->labels->$key = isset($this->labels[$label]['context']) ?
328
  _x($label, $this->labels[$label]['context'], $this->labels[$label]['domain']) :
329
  __($label, $this->labels[$label]['domain']);
@@ -355,9 +360,12 @@ class Polylang_Core extends Polylang_base {
355
 
356
  // now we can load text domains with the right language
357
  $new_locale = get_locale();
358
- foreach ($this->list_textdomains as $textdomain)
359
- load_textdomain( $textdomain['domain'], str_replace($this->default_locale, $new_locale, $textdomain['mo']));
360
-
 
 
 
361
  // reinitializes wp_locale for weekdays and months, as well as for text direction
362
  unset($GLOBALS['wp_locale']);
363
  $GLOBALS['wp_locale'] = new WP_Locale();
@@ -504,11 +512,10 @@ class Polylang_Core extends Polylang_base {
504
  }
505
  }
506
 
507
- // FIXME to generalize as I probably forget things
508
  $is_archive = (count($query->query) == 1 && !empty($qv['paged'])) ||
509
- !empty($qv['m']) || !empty($qv['year']) || // need to test year due to post rewrite rule conflict when using date and name permalinks
510
- !empty($qv['author']) ||
511
- (isset($qv['post_type']) && is_post_type_archive() && $is_post_type);
512
 
513
  // sets 404 when the language is not set for archives needing the language in the url
514
  if (!$this->options['hide_default'] && !isset($qv['lang']) && !$wp_rewrite->using_permalinks() && $is_archive)
@@ -731,7 +738,8 @@ class Polylang_Core extends Polylang_base {
731
  // modifies the sql request for wp_get_archives and get_adjacent_post to filter by the current language
732
  function posts_where($sql) {
733
  global $wpdb;
734
- return $sql . $wpdb->prepare(" AND pll_tr.term_taxonomy_id IN (%s)", $this->curlang->term_taxonomy_id);
 
735
  }
736
 
737
  // modifies the author and date links to add the language parameter (as well as feed link)
@@ -886,7 +894,7 @@ class Polylang_Core extends Polylang_base {
886
 
887
  // filters the home url to get the right language
888
  function home_url($url, $path) {
889
- if (!did_action('template_redirect') || rtrim($url,'/') != $this->home)
890
  return $url;
891
 
892
  $theme = get_theme_root();
@@ -902,7 +910,7 @@ class Polylang_Core extends Polylang_base {
902
  if ($trace['function'] == 'get_search_form')
903
  $is_get_search_form = true;
904
 
905
- if ($trace['function'] == 'wp_nav_menu' ||
906
  // direct call from the theme
907
  ( !$is_get_search_form && isset($trace['file']) && strpos($trace['file'], $theme) !== false && in_array($trace['function'], array('home_url', 'get_home_url', 'bloginfo', 'get_bloginfo')) ))
908
  // remove trailing slash if there is none in requested url
@@ -914,7 +922,7 @@ class Polylang_Core extends Polylang_base {
914
 
915
  // returns the home url in the right language
916
  function get_home_url($language = '', $is_search = false) {
917
- if ($language == '')
918
  $language = $this->curlang;
919
 
920
  if (isset($this->home_urls[$language->slug][$is_search]))
232
  function pre_comment_on_post($post_id) {
233
  $this->curlang = $this->get_post_language($post_id);
234
  add_filter('page_link', array(&$this, 'page_link'), 10, 2); // useful when posting a comment on static front page in non default language
235
+ $this->add_post_term_link_filters(); // useful to redirect to correct post comment url when adding the language to all url
236
  }
237
 
238
  // sets the language when it is always included in the url
241
  return;
242
 
243
  global $wp_rewrite;
 
244
  // special case for ajax request
245
  if (isset($_REQUEST['pll_load_front']))
246
  $this->curlang = empty($_REQUEST['lang']) ? $this->get_preferred_language() : $this->get_language($_REQUEST['lang']);
259
  // thanks to Gonçalo Peres for pointing out the issue with queries unknown to WP
260
  // http://wordpress.org/support/topic/plugin-polylang-language-homepage-redirection-problem-and-solution-but-incomplete?replies=4#post-2729566
261
  if (str_replace('www.', '', home_url('/')) == trailingslashit((is_ssl() ? 'https://' : 'http://').str_replace('www.', '', $_SERVER['HTTP_HOST']).str_replace(array($wp_rewrite->index, '?'.$_SERVER['QUERY_STRING']), array('', ''), $_SERVER['REQUEST_URI']))) {
262
+ // take care to post & page preview http://wordpress.org/support/topic/static-frontpage-url-parameter-url-language-information
263
+ if (isset($_GET['preview']) && ( (isset($_GET['p']) && $id = $_GET['p']) || (isset($_GET['page_id']) && $id = $_GET['page_id']) ))
264
+ $this->curlang = ($lg = $this->get_post_language($id)) ? $lg : $this->get_language($this->options['default_lang']);
265
+
266
+ // take care to (unattached) attachments
267
+ elseif (isset($_GET['attachment_id']) && $id = $_GET['attachment_id'])
268
+ $this->curlang = ($lg = $this->get_post_language($id)) ? $lg : $this->get_preferred_language();
269
+
270
  else
271
  $this->home_requested();
272
  }
287
  add_action('wp', array(&$this, 'check_language_code_in_url')); // before Wordpress redirect_canonical
288
  }
289
 
290
+ $GLOBALS['text_direction'] = get_metadata('term', $this->curlang->term_id, '_rtl', true) ? 'rtl' : 'ltr';
291
  $GLOBALS['l10n']['pll_string'] = $this->mo_import($this->curlang);
292
  do_action('pll_language_defined');
293
  }
328
  // translates post types and taxonomies labels once the language is known
329
  function translate_labels($type) {
330
  foreach($type->labels as $key=>$label)
331
+ if (is_string($label) && isset($this->labels[$label]))
332
  $type->labels->$key = isset($this->labels[$label]['context']) ?
333
  _x($label, $this->labels[$label]['context'], $this->labels[$label]['domain']) :
334
  __($label, $this->labels[$label]['domain']);
360
 
361
  // now we can load text domains with the right language
362
  $new_locale = get_locale();
363
+ foreach ($this->list_textdomains as $textdomain) {
364
+ $mo = str_replace("{$this->default_locale}.mo", "{$new_locale}.mo", $textdomain['mo']);
365
+ // since WP3.5 themes may store languages files in /wp-content/languages/themes
366
+ $mo = file_exists($mo) ? $mo : WP_LANG_DIR . "/themes/{$textdomain['domain']}-{$new_locale}.mo";
367
+ load_textdomain($textdomain['domain'], $mo);
368
+ }
369
  // reinitializes wp_locale for weekdays and months, as well as for text direction
370
  unset($GLOBALS['wp_locale']);
371
  $GLOBALS['wp_locale'] = new WP_Locale();
512
  }
513
  }
514
 
 
515
  $is_archive = (count($query->query) == 1 && !empty($qv['paged'])) ||
516
+ $query->is_date ||
517
+ $query->is_author ||
518
+ (isset($qv['post_type']) && $query->is_post_type_archive && $is_post_type);
519
 
520
  // sets 404 when the language is not set for archives needing the language in the url
521
  if (!$this->options['hide_default'] && !isset($qv['lang']) && !$wp_rewrite->using_permalinks() && $is_archive)
738
  // modifies the sql request for wp_get_archives and get_adjacent_post to filter by the current language
739
  function posts_where($sql) {
740
  global $wpdb;
741
+ preg_match("#post_type = '([^']+)'#", $sql, $matches); // find the queried post type
742
+ return !empty($matches[1]) && in_array($matches[1], $this->post_types) ? $sql . $wpdb->prepare(" AND pll_tr.term_taxonomy_id IN (%s)", $this->curlang->term_taxonomy_id) : $sql;
743
  }
744
 
745
  // modifies the author and date links to add the language parameter (as well as feed link)
894
 
895
  // filters the home url to get the right language
896
  function home_url($url, $path) {
897
+ if (!(did_action('template_redirect') || did_action('login_init')) || rtrim($url,'/') != $this->home)
898
  return $url;
899
 
900
  $theme = get_theme_root();
910
  if ($trace['function'] == 'get_search_form')
911
  $is_get_search_form = true;
912
 
913
+ if ($trace['function'] == 'wp_nav_menu' || $trace['function'] == 'login_footer' ||
914
  // direct call from the theme
915
  ( !$is_get_search_form && isset($trace['file']) && strpos($trace['file'], $theme) !== false && in_array($trace['function'], array('home_url', 'get_home_url', 'bloginfo', 'get_bloginfo')) ))
916
  // remove trailing slash if there is none in requested url
922
 
923
  // returns the home url in the right language
924
  function get_home_url($language = '', $is_search = false) {
925
+ if (empty($language))
926
  $language = $this->curlang;
927
 
928
  if (isset($this->home_urls[$language->slug][$is_search]))
include/wpml-compat.php CHANGED
@@ -366,7 +366,7 @@ class Polylang_WPML_Config {
366
  foreach ($options as $name=>$value) {
367
  if (isset($strings[$name])) {
368
  if (is_string($value) && $strings[$name] == 1)
369
- pll_register_string($option_name, $option); // FIXME ready to use $context
370
  elseif (is_array($value) && is_array($strings[$name]))
371
  $this->register_string_recursive($context, $strings[$name], $value);
372
  }
366
  foreach ($options as $name=>$value) {
367
  if (isset($strings[$name])) {
368
  if (is_string($value) && $strings[$name] == 1)
369
+ pll_register_string($name, $value); // FIXME ready to use $context
370
  elseif (is_array($value) && is_array($strings[$name]))
371
  $this->register_string_recursive($context, $strings[$name], $value);
372
  }
languages/polylang-be_BY.mo CHANGED
Binary file
languages/polylang-be_BY.po CHANGED
@@ -4,7 +4,7 @@ msgstr ""
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: \n"
6
  "PO-Revision-Date: \n"
7
- "Last-Translator: Alexander <alexander.markevitch@gmail.com>\n"
8
  "Language-Team: \n"
9
  "Language: ru_RU\n"
10
  "MIME-Version: 1.0\n"
@@ -16,26 +16,41 @@ msgstr ""
16
  "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
17
  "X-Poedit-Basepath: .\n"
18
  "X-Textdomain-Support: yes\n"
19
- "X-Generator: Poedit 1.5.4\n"
20
  "X-Poedit-SearchPath-0: ..\n"
21
 
22
  # @ polylang
23
  #: include/about.php:3
24
  #, php-format
25
- msgid "Polylang is provided with an extensive %sdocumentation%s (in English only). It includes information on how to set up your multilingual site and use it on a daily basis, a FAQ, as well as a documentation for programmers to adapt their plugins and themes."
 
 
 
 
26
  msgstr ""
 
 
 
27
 
28
  # @ polylang
29
  #: include/about.php:9
30
  #, php-format
31
- msgid "You will also find useful information in the %ssupport forum%s. However don't forget to make a search before posting a new topic."
 
 
32
  msgstr ""
 
 
33
 
34
  # @ polylang
35
  #: include/about.php:16
36
  #, php-format
37
- msgid "Polylang is free of charge and is released under the same license as WordPress, the %sGPL%s."
 
 
38
  msgstr ""
 
 
39
 
40
  # @ polylang
41
  #: include/about.php:22
@@ -45,17 +60,17 @@ msgstr "Аб тым, як вы можаце дапамагчы праэкту,
45
 
46
  # @ polylang
47
  #: include/about.php:27
48
- msgid "Finally if you like this plugin or if it helps your business, donations to the author are greatly appreciated."
 
 
49
  msgstr ""
 
 
50
 
51
  # @ polylang
52
- #: include/admin-base.php:55
53
- #: include/admin-base.php:185
54
- #: include/admin-filters.php:250
55
- #: include/admin.php:23
56
- #: include/admin.php:318
57
- #: include/list-table.php:46
58
- #: polylang.php:270
59
  msgid "Languages"
60
  msgstr "Мовы"
61
 
@@ -100,39 +115,29 @@ msgid "Show all languages"
100
  msgstr "Адлюстраваць усе мовы"
101
 
102
  # @ polylang
103
- #: include/admin-filters.php:188
104
- #: include/admin-filters.php:884
105
  msgid "Add new translation"
106
  msgstr "Дадаць новы пераклад"
107
 
108
  # @ polylang
109
- #: include/admin-filters.php:216
110
- #: include/admin-filters.php:274
111
- #: include/admin-filters.php:608
112
- #: include/admin-filters.php:824
113
- #: include/admin-filters.php:842
114
- #: include/list-table.php:45
115
- #: include/media-translations.php:5
116
- #: include/media-translations.php:43
117
- #: include/post-translations.php:8
118
- #: include/term-translations.php:15
119
  #: polylang.php:271
120
  msgid "Language"
121
  msgstr "Мова"
122
 
123
  # @ polylang
124
- #: include/admin-filters.php:623
125
- #: include/admin-filters.php:658
126
- #: include/list-table.php:120
127
- #: include/media-translations.php:40
128
- #: include/term-translations.php:6
129
- #: include/term-translations.php:11
130
  msgid "Translations"
131
  msgstr "Пераклады"
132
 
133
  # @ polylang
134
- #: include/admin-filters.php:826
135
- #: include/admin-filters.php:845
136
  msgid "Sets the language"
137
  msgstr "Вызначае мову"
138
 
@@ -144,8 +149,11 @@ msgstr "Разьмяшчэнне тэмы ды моў"
144
  # @ polylang
145
  #: include/admin-filters.php:1084
146
  #, php-format
147
- msgid "Please go to the %slanguages page%s to set theme locations and languages"
148
- msgstr "Калі ласка, перайдзіце на %slanguages page%s для таго, каб зазначыць разьмяшчэнне тэмы ды моў"
 
 
 
149
 
150
  # @ polylang
151
  #: include/admin-filters.php:1102
@@ -153,8 +161,7 @@ msgid "The widget is displayed for:"
153
  msgstr "Паказваць віджэт для"
154
 
155
  # @ polylang
156
- #: include/admin-filters.php:1106
157
- #: polylang.php:272
158
  msgid "All languages"
159
  msgstr "Усе мовы"
160
 
@@ -165,19 +172,18 @@ msgstr "Мова панэлі адміністратара"
165
 
166
  #: include/admin-filters.php:1135
167
  msgid "Wordpress default"
168
- msgstr ""
169
 
170
  # @ default
171
  # @ polylang
172
- #: include/admin-filters.php:1161
173
- #: include/admin.php:326
174
  msgid "Settings"
175
  msgstr "Наладкі"
176
 
177
  # @ polylang
178
  #: include/admin-filters.php:1167
179
  msgid "Upgrading language files&#8230;"
180
- msgstr ""
181
 
182
  # @ polylang
183
  #: include/admin.php:22
@@ -185,10 +191,9 @@ msgid "About Polylang"
185
  msgstr "Аб Polylang"
186
 
187
  # @ polylang
188
- #: include/admin.php:27
189
- #: include/list-table.php:92
190
  msgid "Strings translations"
191
- msgstr "Пераклад радкоў"
192
 
193
  # @ polylang
194
  #: include/admin.php:323
@@ -196,8 +201,7 @@ msgid "Menus"
196
  msgstr "Меню"
197
 
198
  # @ polylang
199
- #: include/admin.php:325
200
- #: include/list-table.php:91
201
  msgid "Strings translation"
202
  msgstr "Пераклад радкоў"
203
 
@@ -223,8 +227,12 @@ msgstr "Мова павінна мець назву"
223
 
224
  # @ polylang
225
  #: include/admin.php:349
226
- msgid "The language was created, but the WordPress language file was not downloaded. Please install it manually."
227
- msgstr "Мова была створана, але патрабуемые моўныя файлы не былі запампованы. Калі ласка, запампуйце ды устанавіце іх самастойна."
 
 
 
 
228
 
229
  # @ polylang
230
  #: include/admin.php:468
@@ -234,17 +242,17 @@ msgstr "Назва віджэту"
234
  # @ polylang
235
  #: include/base.php:339
236
  msgid "Taxonomies"
237
- msgstr ""
238
 
239
  # @ polylang
240
  #: include/base.php:340
241
  msgid "Custom fields"
242
- msgstr ""
243
 
244
  # @ polylang
245
  #: include/base.php:341
246
  msgid "Comment status"
247
- msgstr ""
248
 
249
  # @ polylang
250
  #: include/base.php:342
@@ -253,38 +261,39 @@ msgstr ""
253
 
254
  # @ polylang
255
  #: include/base.php:343
 
256
  msgid "Sticky posts"
257
- msgstr ""
258
 
259
  # @ polylang
260
  #: include/base.php:344
261
  msgid "Published date"
262
- msgstr ""
263
 
264
  # @ polylang
265
  #: include/base.php:345
266
  msgid "Post format"
267
- msgstr ""
268
 
269
  # @ polylang
270
  #: include/base.php:346
271
  msgid "Page parent"
272
- msgstr ""
273
 
274
  # @ polylang
275
  #: include/base.php:347
276
  msgid "Page template"
277
- msgstr ""
278
 
279
  # @ polylang
280
  #: include/base.php:348
281
  msgid "Page order"
282
- msgstr ""
283
 
284
  # @ polylang
285
  #: include/base.php:349
286
  msgid "Featured image"
287
- msgstr ""
288
 
289
  # @ polylang
290
  #: include/languages-form.php:43
@@ -292,8 +301,7 @@ msgid "Edit language"
292
  msgstr "Рэдагаваць мову"
293
 
294
  # @ polylang
295
- #: include/languages-form.php:43
296
- #: include/languages-form.php:124
297
  msgid "Add new language"
298
  msgstr "Дадаць новую мову"
299
 
@@ -308,8 +316,7 @@ msgid "You can choose a language in the list or directly edit it below."
308
  msgstr "Абярыце мову са сьпісу альбо ўкажыце самастойна."
309
 
310
  # @ polylang
311
- #: include/languages-form.php:83
312
- #: include/list-table.php:63
313
  msgid "Full name"
314
  msgstr "Поўная назва"
315
 
@@ -319,15 +326,18 @@ msgid "The name is how it is displayed on your site (for example: English)."
319
  msgstr "Назва для адлюстравання на сайце (напрыклад: Беларускі)."
320
 
321
  # @ polylang
322
- #: include/languages-form.php:89
323
- #: include/list-table.php:64
324
  msgid "Locale"
325
  msgstr "Лакаль"
326
 
327
  # @ polylang
328
  #: include/languages-form.php:94
329
- msgid "Wordpress Locale for the language (for example: en_US). You will need to install the .mo file for this language."
330
- msgstr "Лакаль Wordpress для мовы (напрыклад: be_BY). Вы павінны устанавіць файлы .mo для панэлі адміністратара ды выкарыстоўваемай тэмы."
 
 
 
 
331
 
332
  # @ polylang
333
  #: include/languages-form.php:98
@@ -357,18 +367,17 @@ msgstr "справа налева"
357
  # @ polylang
358
  #: include/languages-form.php:115
359
  msgid "Choose the text direction for the language"
360
- msgstr ""
361
 
362
  # @ polylang
363
- #: include/languages-form.php:119
364
- #: include/list-table.php:66
365
  msgid "Order"
366
- msgstr ""
367
 
368
  # @ polylang
369
  #: include/languages-form.php:121
370
  msgid "Position of the language in the language switcher"
371
- msgstr ""
372
 
373
  # @ polylang
374
  #: include/languages-form.php:180
@@ -378,11 +387,11 @@ msgstr "Выбар моў"
378
  # @ polylang
379
  #: include/languages-form.php:206
380
  msgid "Search translations"
381
- msgstr ""
382
 
383
  #: include/languages-form.php:215
384
  msgid "Clean strings translation database"
385
- msgstr ""
386
 
387
  # @ polylang
388
  #: include/languages-form.php:231
@@ -391,8 +400,12 @@ msgstr "Мова выкарыстання"
391
 
392
  # @ polylang
393
  #: include/languages-form.php:243
394
- msgid "There are posts, pages, categories or tags without language set. Do you want to set them all to default language ?"
395
- msgstr "Былі знойдзены запісы, старонкі, катэгорыі ды тагі без зазначэньня мовы. Вызначыць мову выкарыстання?"
 
 
 
 
396
 
397
  # @ polylang
398
  #: include/languages-form.php:251
@@ -401,7 +414,9 @@ msgstr "Вызначыць мову браузэра"
401
 
402
  # @ polylang
403
  #: include/languages-form.php:257
404
- msgid "When the front page is visited, set the language according to the browser preference"
 
 
405
  msgstr "Вызначыць мову сайта паводле наладак браузэра"
406
 
407
  # @ polylang
@@ -410,12 +425,20 @@ msgid "URL modifications"
410
  msgstr "Мадыфікацыі URL"
411
 
412
  #: include/languages-form.php:270
413
- msgid "The language is set from content. Posts, pages, categories and tags urls are not modified."
 
 
414
  msgstr ""
 
 
415
 
416
  #: include/languages-form.php:278
417
- msgid "The language code, for example /en/, is added to all urls when using pretty permalinks."
 
 
418
  msgstr ""
 
 
419
 
420
  # @ polylang
421
  #: include/languages-form.php:287
@@ -434,50 +457,51 @@ msgstr "Схаваць назву мовы з URL"
434
 
435
  #: include/languages-form.php:315
436
  #, php-format
437
- msgid "When using static front page, redirect the language page (example: %s) to the front page in the right language"
 
 
438
  msgstr ""
 
 
439
 
440
  # @ polylang
441
  #: include/languages-form.php:324
442
  msgid "Media"
443
- msgstr ""
444
 
445
  # @ polylang
446
  #: include/languages-form.php:330
447
  msgid "Activate languages and translations for media"
448
- msgstr ""
449
 
450
  #: include/languages-form.php:337
451
  msgid "Synchronization"
452
- msgstr ""
453
 
454
  # @ polylang
455
  #: include/languages-form.php:351
456
  msgid "Custom post types"
457
- msgstr ""
458
 
459
  # @ polylang
460
  #: include/languages-form.php:364
461
  msgid "Activate languages and translations for custom post types."
462
- msgstr ""
463
 
464
  # @ polylang
465
  #: include/languages-form.php:372
466
  msgid "Custom taxonomies"
467
- msgstr ""
468
 
469
  # @ polylang
470
  #: include/languages-form.php:385
471
  msgid "Activate languages and translations for custom taxonomies."
472
- msgstr ""
473
 
474
  # @ polylang
475
- #: include/list-table.php:55
476
- #: include/media-translations.php:22
477
- #: include/media-translations.php:60
478
- #: include/post-translations.php:10
479
- #: include/post-translations.php:33
480
- #: include/term-translations.php:18
481
  #: include/term-translations.php:80
482
  msgid "Edit"
483
  msgstr "Рэдагаваць"
@@ -513,17 +537,14 @@ msgid "String"
513
  msgstr "Радок"
514
 
515
  # @ polylang
516
- #: include/media-translations.php:6
517
- #: include/media-translations.php:44
518
  #: include/term-translations.php:16
519
  msgid "Translation"
520
  msgstr "Пераклад"
521
 
522
  # @ polylang
523
- #: include/media-translations.php:31
524
- #: include/media-translations.php:68
525
- #: include/post-translations.php:38
526
- #: include/term-translations.php:60
527
  msgid "Add new"
528
  msgstr "Дадаць новую"
529
 
@@ -550,7 +571,7 @@ msgstr "ID запісу"
550
  # @ polylang
551
  #: include/term-translations.php:48
552
  msgid "No untranslated term"
553
- msgstr ""
554
 
555
  # @ polylang
556
  #: include/widget.php:6
@@ -571,35 +592,41 @@ msgstr "Назва:"
571
  #. translators: plugin header field 'Description'
572
  #: polylang.php:0
573
  msgid "Adds multilingual capability to WordPress"
574
- msgstr ""
575
 
576
  # @ polylang
577
  #: polylang.php:118
578
  #, php-format
579
  msgid "You are using WordPress %s. Polylang requires at least WordPress %s."
580
- msgstr "Вы выкарыстоўваеце WordPress %s. Polylang патрабуе па меньшае WordPress %s."
 
581
 
582
  # @ polylang
583
  #: polylang.php:159
584
  msgid "For some reasons, Polylang could not create a table in your database."
585
- msgstr "Па некаторых прычынах, Polylang не мае магчымасьці стварыць табліцу ў базе даных."
 
 
586
 
587
  # @ polylang
588
  #: polylang.php:220
589
- msgid "Polylang has been deactivated because you upgraded from a too old version."
 
590
  msgstr ""
 
591
 
592
  # @ polylang
593
  #: polylang.php:222
594
  #, php-format
595
  msgid "Please upgrade first to %s before ugrading to %s."
596
- msgstr ""
597
 
598
  # @ polylang
599
  #~ msgid "Error: Restore of local flags failed!"
600
  #~ msgstr ""
601
  #~ "Памылка: Не атрымалася ўзнавіць карыстальніцкія іконкі-сьцягі з "
602
  #~ "рэзэрвовай копіі!"
 
603
  # @ polylang
604
  #, fuzzy
605
  #~ msgid "Please move your local flags from %s to %s"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: \n"
6
  "PO-Revision-Date: \n"
7
+ "Last-Translator: Alexander Markevitch <alexander.markevitch@gmail.com>\n"
8
  "Language-Team: \n"
9
  "Language: ru_RU\n"
10
  "MIME-Version: 1.0\n"
16
  "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
17
  "X-Poedit-Basepath: .\n"
18
  "X-Textdomain-Support: yes\n"
19
+ "X-Generator: Poedit 1.5.5\n"
20
  "X-Poedit-SearchPath-0: ..\n"
21
 
22
  # @ polylang
23
  #: include/about.php:3
24
  #, php-format
25
+ msgid ""
26
+ "Polylang is provided with an extensive %sdocumentation%s (in English only). "
27
+ "It includes information on how to set up your multilingual site and use it "
28
+ "on a daily basis, a FAQ, as well as a documentation for programmers to adapt "
29
+ "their plugins and themes."
30
  msgstr ""
31
+ "Polylang забяспечаны шырокай %sдакументацыяй%s (толькі на ангельскай мове). "
32
+ "У яе ўваходзіць інфармацыя пра наладу шматмоўнага блёга і яго паўсядзённае "
33
+ "выкарыстанне, адказы на частыя пытанні і дакументацыя для праграмістаў."
34
 
35
  # @ polylang
36
  #: include/about.php:9
37
  #, php-format
38
+ msgid ""
39
+ "You will also find useful information in the %ssupport forum%s. However "
40
+ "don't forget to make a search before posting a new topic."
41
  msgstr ""
42
+ "Таксама, вы можаце знайсьці карысную інфармацыю на %sфоруме%s. Зрэшты, не "
43
+ "забывайце сперш шукаць адказ, а потым пытаць."
44
 
45
  # @ polylang
46
  #: include/about.php:16
47
  #, php-format
48
+ msgid ""
49
+ "Polylang is free of charge and is released under the same license as "
50
+ "WordPress, the %sGPL%s."
51
  msgstr ""
52
+ "Polylang - бясплатны і распаўсюджваецца пад той жа ліцэнзіяй %sGPL%s, што і "
53
+ "WordPress."
54
 
55
  # @ polylang
56
  #: include/about.php:22
60
 
61
  # @ polylang
62
  #: include/about.php:27
63
+ msgid ""
64
+ "Finally if you like this plugin or if it helps your business, donations to "
65
+ "the author are greatly appreciated."
66
  msgstr ""
67
+ "І нарэшце, калі Polylang вам спадабаецца альбо дапамагае ў вашай працы, вы "
68
+ "заўседы можаце ахвяраваць грошаў аўтару праекта."
69
 
70
  # @ polylang
71
+ #: include/admin-base.php:55 include/admin-base.php:185
72
+ #: include/admin-filters.php:250 include/admin.php:23 include/admin.php:318
73
+ #: include/list-table.php:46 polylang.php:270
 
 
 
 
74
  msgid "Languages"
75
  msgstr "Мовы"
76
 
115
  msgstr "Адлюстраваць усе мовы"
116
 
117
  # @ polylang
118
+ #: include/admin-filters.php:188 include/admin-filters.php:884
 
119
  msgid "Add new translation"
120
  msgstr "Дадаць новы пераклад"
121
 
122
  # @ polylang
123
+ #: include/admin-filters.php:216 include/admin-filters.php:274
124
+ #: include/admin-filters.php:608 include/admin-filters.php:824
125
+ #: include/admin-filters.php:842 include/list-table.php:45
126
+ #: include/media-translations.php:5 include/media-translations.php:43
127
+ #: include/post-translations.php:8 include/term-translations.php:15
 
 
 
 
 
128
  #: polylang.php:271
129
  msgid "Language"
130
  msgstr "Мова"
131
 
132
  # @ polylang
133
+ #: include/admin-filters.php:623 include/admin-filters.php:658
134
+ #: include/list-table.php:120 include/media-translations.php:40
135
+ #: include/term-translations.php:6 include/term-translations.php:11
 
 
 
136
  msgid "Translations"
137
  msgstr "Пераклады"
138
 
139
  # @ polylang
140
+ #: include/admin-filters.php:826 include/admin-filters.php:845
 
141
  msgid "Sets the language"
142
  msgstr "Вызначае мову"
143
 
149
  # @ polylang
150
  #: include/admin-filters.php:1084
151
  #, php-format
152
+ msgid ""
153
+ "Please go to the %slanguages page%s to set theme locations and languages"
154
+ msgstr ""
155
+ "Калі ласка, перайдзіце на %slanguages page%s для таго, каб зазначыць "
156
+ "разьмяшчэнне тэмы ды моў"
157
 
158
  # @ polylang
159
  #: include/admin-filters.php:1102
161
  msgstr "Паказваць віджэт для"
162
 
163
  # @ polylang
164
+ #: include/admin-filters.php:1106 polylang.php:272
 
165
  msgid "All languages"
166
  msgstr "Усе мовы"
167
 
172
 
173
  #: include/admin-filters.php:1135
174
  msgid "Wordpress default"
175
+ msgstr "Па змаўчанню"
176
 
177
  # @ default
178
  # @ polylang
179
+ #: include/admin-filters.php:1161 include/admin.php:326
 
180
  msgid "Settings"
181
  msgstr "Наладкі"
182
 
183
  # @ polylang
184
  #: include/admin-filters.php:1167
185
  msgid "Upgrading language files&#8230;"
186
+ msgstr "Аднаўленне моўных файлаў."
187
 
188
  # @ polylang
189
  #: include/admin.php:22
191
  msgstr "Аб Polylang"
192
 
193
  # @ polylang
194
+ #: include/admin.php:27 include/list-table.php:92
 
195
  msgid "Strings translations"
196
+ msgstr "Пераклады радкоў"
197
 
198
  # @ polylang
199
  #: include/admin.php:323
201
  msgstr "Меню"
202
 
203
  # @ polylang
204
+ #: include/admin.php:325 include/list-table.php:91
 
205
  msgid "Strings translation"
206
  msgstr "Пераклад радкоў"
207
 
227
 
228
  # @ polylang
229
  #: include/admin.php:349
230
+ msgid ""
231
+ "The language was created, but the WordPress language file was not "
232
+ "downloaded. Please install it manually."
233
+ msgstr ""
234
+ "Мова была створана, але патрабуемые моўныя файлы не былі запампованы. Калі "
235
+ "ласка, запампуйце ды устанавіце іх самастойна."
236
 
237
  # @ polylang
238
  #: include/admin.php:468
242
  # @ polylang
243
  #: include/base.php:339
244
  msgid "Taxonomies"
245
+ msgstr "Успадкоўванні"
246
 
247
  # @ polylang
248
  #: include/base.php:340
249
  msgid "Custom fields"
250
+ msgstr "Адвольныя палі"
251
 
252
  # @ polylang
253
  #: include/base.php:341
254
  msgid "Comment status"
255
+ msgstr "Стан каментара"
256
 
257
  # @ polylang
258
  #: include/base.php:342
261
 
262
  # @ polylang
263
  #: include/base.php:343
264
+ #, fuzzy
265
  msgid "Sticky posts"
266
+ msgstr "Прымацаваныя запісы"
267
 
268
  # @ polylang
269
  #: include/base.php:344
270
  msgid "Published date"
271
+ msgstr "Дата публікацыі"
272
 
273
  # @ polylang
274
  #: include/base.php:345
275
  msgid "Post format"
276
+ msgstr "Фармат запісу"
277
 
278
  # @ polylang
279
  #: include/base.php:346
280
  msgid "Page parent"
281
+ msgstr "Зыходная старонка"
282
 
283
  # @ polylang
284
  #: include/base.php:347
285
  msgid "Page template"
286
+ msgstr "Шаблён старонкі"
287
 
288
  # @ polylang
289
  #: include/base.php:348
290
  msgid "Page order"
291
+ msgstr "Парадак старонак"
292
 
293
  # @ polylang
294
  #: include/base.php:349
295
  msgid "Featured image"
296
+ msgstr "Абраная выява"
297
 
298
  # @ polylang
299
  #: include/languages-form.php:43
301
  msgstr "Рэдагаваць мову"
302
 
303
  # @ polylang
304
+ #: include/languages-form.php:43 include/languages-form.php:124
 
305
  msgid "Add new language"
306
  msgstr "Дадаць новую мову"
307
 
316
  msgstr "Абярыце мову са сьпісу альбо ўкажыце самастойна."
317
 
318
  # @ polylang
319
+ #: include/languages-form.php:83 include/list-table.php:63
 
320
  msgid "Full name"
321
  msgstr "Поўная назва"
322
 
326
  msgstr "Назва для адлюстравання на сайце (напрыклад: Беларускі)."
327
 
328
  # @ polylang
329
+ #: include/languages-form.php:89 include/list-table.php:64
 
330
  msgid "Locale"
331
  msgstr "Лакаль"
332
 
333
  # @ polylang
334
  #: include/languages-form.php:94
335
+ msgid ""
336
+ "Wordpress Locale for the language (for example: en_US). You will need to "
337
+ "install the .mo file for this language."
338
+ msgstr ""
339
+ "Лакаль Wordpress для мовы (напрыклад: be_BY). Вы павінны устанавіць файлы ."
340
+ "mo для панэлі адміністратара ды выкарыстоўваемай тэмы."
341
 
342
  # @ polylang
343
  #: include/languages-form.php:98
367
  # @ polylang
368
  #: include/languages-form.php:115
369
  msgid "Choose the text direction for the language"
370
+ msgstr "Абярыце кірунак тэксту"
371
 
372
  # @ polylang
373
+ #: include/languages-form.php:119 include/list-table.php:66
 
374
  msgid "Order"
375
+ msgstr "Парадак"
376
 
377
  # @ polylang
378
  #: include/languages-form.php:121
379
  msgid "Position of the language in the language switcher"
380
+ msgstr "Месца мовы ў пераключальніку моў"
381
 
382
  # @ polylang
383
  #: include/languages-form.php:180
387
  # @ polylang
388
  #: include/languages-form.php:206
389
  msgid "Search translations"
390
+ msgstr "Пошук перакладаў"
391
 
392
  #: include/languages-form.php:215
393
  msgid "Clean strings translation database"
394
+ msgstr "Ачысціць базу дадзеных радкоў перакладу"
395
 
396
  # @ polylang
397
  #: include/languages-form.php:231
400
 
401
  # @ polylang
402
  #: include/languages-form.php:243
403
+ msgid ""
404
+ "There are posts, pages, categories or tags without language set. Do you want "
405
+ "to set them all to default language ?"
406
+ msgstr ""
407
+ "Былі знойдзены запісы, старонкі, катэгорыі ды тагі без зазначэньня мовы. "
408
+ "Вызначыць мову выкарыстання?"
409
 
410
  # @ polylang
411
  #: include/languages-form.php:251
414
 
415
  # @ polylang
416
  #: include/languages-form.php:257
417
+ msgid ""
418
+ "When the front page is visited, set the language according to the browser "
419
+ "preference"
420
  msgstr "Вызначыць мову сайта паводле наладак браузэра"
421
 
422
  # @ polylang
425
  msgstr "Мадыфікацыі URL"
426
 
427
  #: include/languages-form.php:270
428
+ msgid ""
429
+ "The language is set from content. Posts, pages, categories and tags urls are "
430
+ "not modified."
431
  msgstr ""
432
+ "Мова ўсталявана паводле змесціва. Запісы, старонкі, катэгорыі і тэгі "
433
+ "спасылак не змяняліся."
434
 
435
  #: include/languages-form.php:278
436
+ msgid ""
437
+ "The language code, for example /en/, is added to all urls when using pretty "
438
+ "permalinks."
439
  msgstr ""
440
+ "Код мовы, напрыклад /by/, дададзены ва ўсе спасылкі пры выкарыстанні pretty "
441
+ "permalinks."
442
 
443
  # @ polylang
444
  #: include/languages-form.php:287
457
 
458
  #: include/languages-form.php:315
459
  #, php-format
460
+ msgid ""
461
+ "When using static front page, redirect the language page (example: %s) to "
462
+ "the front page in the right language"
463
  msgstr ""
464
+ "Пры выкарыстанні статычнай старонкі, перанакіроўваць старонку (напрыклад: "
465
+ "%s) на галоўную старонку на правільнай мове."
466
 
467
  # @ polylang
468
  #: include/languages-form.php:324
469
  msgid "Media"
470
+ msgstr "Медыа"
471
 
472
  # @ polylang
473
  #: include/languages-form.php:330
474
  msgid "Activate languages and translations for media"
475
+ msgstr "Выкарыстоўваць мовы і пераклады для медыа-файлаў"
476
 
477
  #: include/languages-form.php:337
478
  msgid "Synchronization"
479
+ msgstr "Сінхранізацыя"
480
 
481
  # @ polylang
482
  #: include/languages-form.php:351
483
  msgid "Custom post types"
484
+ msgstr "Адвольны тып запісаў"
485
 
486
  # @ polylang
487
  #: include/languages-form.php:364
488
  msgid "Activate languages and translations for custom post types."
489
+ msgstr "Выкарыстоўваць мовы і пераклады для адвольных тыпаў запісаў."
490
 
491
  # @ polylang
492
  #: include/languages-form.php:372
493
  msgid "Custom taxonomies"
494
+ msgstr "Адвольныя успадкоўванні"
495
 
496
  # @ polylang
497
  #: include/languages-form.php:385
498
  msgid "Activate languages and translations for custom taxonomies."
499
+ msgstr "Выкарыстоўваць мовы і пераклады для адвольных успадкоўванняў."
500
 
501
  # @ polylang
502
+ #: include/list-table.php:55 include/media-translations.php:22
503
+ #: include/media-translations.php:60 include/post-translations.php:10
504
+ #: include/post-translations.php:33 include/term-translations.php:18
 
 
 
505
  #: include/term-translations.php:80
506
  msgid "Edit"
507
  msgstr "Рэдагаваць"
537
  msgstr "Радок"
538
 
539
  # @ polylang
540
+ #: include/media-translations.php:6 include/media-translations.php:44
 
541
  #: include/term-translations.php:16
542
  msgid "Translation"
543
  msgstr "Пераклад"
544
 
545
  # @ polylang
546
+ #: include/media-translations.php:31 include/media-translations.php:68
547
+ #: include/post-translations.php:38 include/term-translations.php:60
 
 
548
  msgid "Add new"
549
  msgstr "Дадаць новую"
550
 
571
  # @ polylang
572
  #: include/term-translations.php:48
573
  msgid "No untranslated term"
574
+ msgstr "Няма неперакладзеных слоў"
575
 
576
  # @ polylang
577
  #: include/widget.php:6
592
  #. translators: plugin header field 'Description'
593
  #: polylang.php:0
594
  msgid "Adds multilingual capability to WordPress"
595
+ msgstr "Дадае магчымасьць шматмоў'я ў Wordpress"
596
 
597
  # @ polylang
598
  #: polylang.php:118
599
  #, php-format
600
  msgid "You are using WordPress %s. Polylang requires at least WordPress %s."
601
+ msgstr ""
602
+ "Вы выкарыстоўваеце WordPress %s. Polylang патрабуе па меньшае WordPress %s."
603
 
604
  # @ polylang
605
  #: polylang.php:159
606
  msgid "For some reasons, Polylang could not create a table in your database."
607
+ msgstr ""
608
+ "Па некаторых прычынах, Polylang не мае магчымасьці стварыць табліцу ў базе "
609
+ "даных."
610
 
611
  # @ polylang
612
  #: polylang.php:220
613
+ msgid ""
614
+ "Polylang has been deactivated because you upgraded from a too old version."
615
  msgstr ""
616
+ "Polylang быў выключаны, таму што вы аднаўляецеся з немагчыма старой версіі."
617
 
618
  # @ polylang
619
  #: polylang.php:222
620
  #, php-format
621
  msgid "Please upgrade first to %s before ugrading to %s."
622
+ msgstr "Калі ласка, аднавіце перш да версіі %s, каб аднавіць да версіі %s."
623
 
624
  # @ polylang
625
  #~ msgid "Error: Restore of local flags failed!"
626
  #~ msgstr ""
627
  #~ "Памылка: Не атрымалася ўзнавіць карыстальніцкія іконкі-сьцягі з "
628
  #~ "рэзэрвовай копіі!"
629
+
630
  # @ polylang
631
  #, fuzzy
632
  #~ msgid "Please move your local flags from %s to %s"
languages/polylang-et.mo ADDED
Binary file
languages/polylang-et.po ADDED
@@ -0,0 +1,628 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Polylang\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: \n"
6
+ "PO-Revision-Date: 2013-04-08 17:34+0200\n"
7
+ "Language-Team: \n"
8
+ "MIME-Version: 1.0\n"
9
+ "Content-Type: text/plain; charset=UTF-8\n"
10
+ "Content-Transfer-Encoding: 8bit\n"
11
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
12
+ "X-Poedit-SourceCharset: utf-8\n"
13
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
14
+ "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
15
+ "X-Poedit-Basepath: ../\n"
16
+ "X-Textdomain-Support: yes\n"
17
+ "Last-Translator: Ahto Naris <ahto.naris@live.com>\n"
18
+ "X-Generator: Poedit 1.5.5\n"
19
+ "X-Poedit-SearchPath-0: .\n"
20
+
21
+ # @ polylang
22
+ #: include/about.php:3
23
+ #, php-format
24
+ msgid ""
25
+ "Polylang is provided with an extensive %sdocumentation%s (in English only). "
26
+ "It includes information on how to set up your multilingual site and use it "
27
+ "on a daily basis, a FAQ, as well as a documentation for programmers to adapt "
28
+ "their plugins and themes."
29
+ msgstr ""
30
+ "Polylang on varustatud ulatusliku %sdokumentatsiooniga%s (ainult inglise "
31
+ "keeles). See sisaldab teavet kuidas luua ja kasutada igapäevaselt oma "
32
+ "mitmekeelset kodulehte, KKK-d ning ka dokumentatsiooni programmeerijatele "
33
+ "kuidas kohandada oma pluginad ja teemad."
34
+
35
+ # @ polylang
36
+ #: include/about.php:9
37
+ #, php-format
38
+ msgid ""
39
+ "You will also find useful information in the %ssupport forum%s. However "
40
+ "don't forget to make a search before posting a new topic."
41
+ msgstr ""
42
+ "Kasulikku informatsiooni on võimalik ka leida %sfoorumist%s. Paljud teemad "
43
+ "on enne foorumis juba läbi arutatud, seega kasuta enne uue teema postitamist "
44
+ "otsingut."
45
+
46
+ # @ polylang
47
+ #: include/about.php:16
48
+ #, php-format
49
+ msgid ""
50
+ "Polylang is free of charge and is released under the same license as "
51
+ "WordPress, the %sGPL%s."
52
+ msgstr ""
53
+ "Polylang on tasuta ja avaldatud sama litsentsi alusel nagu WordPress - %sGPL"
54
+ "%s."
55
+
56
+ # @ polylang
57
+ #: include/about.php:22
58
+ #, php-format
59
+ msgid "If you wonder how you can help the project, just %sread this%s."
60
+ msgstr "Kui sul on isu selles projektis abiks olla alusta %ssiit%s."
61
+
62
+ # @ polylang
63
+ #: include/about.php:27
64
+ msgid ""
65
+ "Finally if you like this plugin or if it helps your business, donations to "
66
+ "the author are greatly appreciated."
67
+ msgstr ""
68
+ "Kui see plugin meeldib teile või aitab teie äri kaaluge autorile annetuse "
69
+ "tegemist."
70
+
71
+ # @ polylang
72
+ #: include/admin-base.php:55 include/admin-base.php:185
73
+ #: include/admin-filters.php:250 include/admin.php:23 include/admin.php:318
74
+ #: include/list-table.php:46 polylang.php:270
75
+ msgid "Languages"
76
+ msgstr "Keeled"
77
+
78
+ # @ polylang
79
+ #: include/admin-base.php:154
80
+ msgid "Displays language names"
81
+ msgstr "Näita keelte nimetusi"
82
+
83
+ # @ polylang
84
+ #: include/admin-base.php:155
85
+ msgid "Displays flags"
86
+ msgstr "Näita lippe"
87
+
88
+ # @ polylang
89
+ #: include/admin-base.php:156
90
+ msgid "Forces link to front page"
91
+ msgstr "Suuna viide avalehele"
92
+
93
+ # @ polylang
94
+ #: include/admin-base.php:157
95
+ msgid "Hides the current language"
96
+ msgstr "Peidab hetkel kasutusel oleva keele"
97
+
98
+ # @ polylang
99
+ #: include/admin-base.php:161
100
+ msgid "Displays a language switcher at the end of the menu"
101
+ msgstr "Näita keele valikut menüü lõpus"
102
+
103
+ # @ polylang
104
+ #: include/admin-base.php:162
105
+ msgid "Displays as dropdown"
106
+ msgstr "Näita rippmenüüna"
107
+
108
+ # @ polylang
109
+ #: include/admin-base.php:186
110
+ msgid "Filters content by language"
111
+ msgstr "Filtreerib sisu keele järgi"
112
+
113
+ # @ polylang
114
+ #: include/admin-base.php:193
115
+ msgid "Show all languages"
116
+ msgstr "Näita kõiki keeli"
117
+
118
+ # @ polylang
119
+ #: include/admin-filters.php:188 include/admin-filters.php:884
120
+ msgid "Add new translation"
121
+ msgstr "Lisa uus tõlge"
122
+
123
+ # @ polylang
124
+ #: include/admin-filters.php:216 include/admin-filters.php:274
125
+ #: include/admin-filters.php:608 include/admin-filters.php:824
126
+ #: include/admin-filters.php:842 include/list-table.php:45
127
+ #: include/media-translations.php:5 include/media-translations.php:43
128
+ #: include/post-translations.php:8 include/term-translations.php:15
129
+ #: polylang.php:271
130
+ msgid "Language"
131
+ msgstr "Keel"
132
+
133
+ # @ polylang
134
+ #: include/admin-filters.php:623 include/admin-filters.php:658
135
+ #: include/list-table.php:120 include/media-translations.php:40
136
+ #: include/term-translations.php:6 include/term-translations.php:11
137
+ msgid "Translations"
138
+ msgstr "Tõlked"
139
+
140
+ # @ polylang
141
+ #: include/admin-filters.php:826 include/admin-filters.php:845
142
+ msgid "Sets the language"
143
+ msgstr "Määrab keele"
144
+
145
+ # @ polylang
146
+ #: include/admin-filters.php:1078
147
+ msgid "Theme locations and languages"
148
+ msgstr "Teema menüüde asukohad ja keeled"
149
+
150
+ # @ polylang
151
+ #: include/admin-filters.php:1084
152
+ #, php-format
153
+ msgid ""
154
+ "Please go to the %slanguages page%s to set theme locations and languages"
155
+ msgstr ""
156
+ "Menüüde ja nende keelte seadistamiseks mine palun keelte %sseadete lehele%s"
157
+
158
+ # @ polylang
159
+ #: include/admin-filters.php:1102
160
+ msgid "The widget is displayed for:"
161
+ msgstr "Moodul kuvatakse:"
162
+
163
+ # @ polylang
164
+ #: include/admin-filters.php:1106 polylang.php:272
165
+ msgid "All languages"
166
+ msgstr "Kõik keeled"
167
+
168
+ # @ polylang
169
+ #: include/admin-filters.php:1130
170
+ msgid "Admin language"
171
+ msgstr "Halduri keel"
172
+
173
+ # @ polylang
174
+ #: include/admin-filters.php:1135
175
+ msgid "Wordpress default"
176
+ msgstr "Wordpressi vaikimisi väärtus"
177
+
178
+ # @ polylang
179
+ #: include/admin-filters.php:1161 include/admin.php:326
180
+ msgid "Settings"
181
+ msgstr "Sätted"
182
+
183
+ # @ polylang
184
+ #: include/admin-filters.php:1167
185
+ msgid "Upgrading language files&#8230;"
186
+ msgstr "Keelefailide uuendamine&#8230;"
187
+
188
+ # @ polylang
189
+ #: include/admin.php:22
190
+ msgid "About Polylang"
191
+ msgstr "Polylang info"
192
+
193
+ # @ polylang
194
+ #: include/admin.php:27 include/list-table.php:92
195
+ msgid "Strings translations"
196
+ msgstr "Sõnade tõlkimised"
197
+
198
+ # @ polylang
199
+ #: include/admin.php:323
200
+ msgid "Menus"
201
+ msgstr "Menüüd"
202
+
203
+ # @ polylang
204
+ #: include/admin.php:325 include/list-table.php:91
205
+ msgid "Strings translation"
206
+ msgstr "Sõnade tõlkimine"
207
+
208
+ # @ polylang
209
+ #: include/admin.php:345
210
+ msgid "Enter a valid WorPress locale"
211
+ msgstr "Sisesta määrustepärane WordPressi locale"
212
+
213
+ # @ polylang
214
+ #: include/admin.php:346
215
+ msgid "The language code must be 2 characters long"
216
+ msgstr "Keelekood peab olema 2 tähemärki pikk"
217
+
218
+ # @ polylang
219
+ #: include/admin.php:347
220
+ msgid "The language code must be unique"
221
+ msgstr "Keelekood peab olema unikaalne"
222
+
223
+ # @ polylang
224
+ #: include/admin.php:348
225
+ msgid "The language must have a name"
226
+ msgstr "Keelel peab olema nimetus"
227
+
228
+ # @ polylang
229
+ #: include/admin.php:349
230
+ msgid ""
231
+ "The language was created, but the WordPress language file was not "
232
+ "downloaded. Please install it manually."
233
+ msgstr ""
234
+ "Keel loodi, aga WordPressi keelefaili allalaadimine ebaõnnestus. Palun "
235
+ "paigalda see käsitsi."
236
+
237
+ # @ polylang
238
+ #: include/admin.php:468
239
+ msgid "Widget title"
240
+ msgstr "Mooduli pealkiri"
241
+
242
+ # @ polylang
243
+ #: include/base.php:339
244
+ msgid "Taxonomies"
245
+ msgstr "Taksonoomiad"
246
+
247
+ # @ polylang
248
+ #: include/base.php:340
249
+ msgid "Custom fields"
250
+ msgstr "Kohandatud väli"
251
+
252
+ # @ polylang
253
+ #: include/base.php:341
254
+ msgid "Comment status"
255
+ msgstr "Kommentaari seis"
256
+
257
+ # @ polylang
258
+ #: include/base.php:342
259
+ msgid "Ping status"
260
+ msgstr "Ping-i seis"
261
+
262
+ # @ polylang
263
+ #: include/base.php:343
264
+ msgid "Sticky posts"
265
+ msgstr "Esilehepostitused"
266
+
267
+ # @ polylang
268
+ #: include/base.php:344
269
+ msgid "Published date"
270
+ msgstr "Avaldamise kuupäev"
271
+
272
+ # @ polylang
273
+ #: include/base.php:345
274
+ msgid "Post format"
275
+ msgstr "Postituse vorming"
276
+
277
+ # @ polylang
278
+ #: include/base.php:346
279
+ msgid "Page parent"
280
+ msgstr "Ülemleht"
281
+
282
+ # @ polylang
283
+ #: include/base.php:347
284
+ msgid "Page template"
285
+ msgstr "Lehe mall"
286
+
287
+ # @ polylang
288
+ #: include/base.php:348
289
+ msgid "Page order"
290
+ msgstr "Lehe järjekorranr."
291
+
292
+ # @ polylang
293
+ #: include/base.php:349
294
+ msgid "Featured image"
295
+ msgstr "Tunnuspilt"
296
+
297
+ # @ polylang
298
+ #: include/languages-form.php:43
299
+ msgid "Edit language"
300
+ msgstr "Muuda keelt"
301
+
302
+ # @ polylang
303
+ #: include/languages-form.php:43 include/languages-form.php:124
304
+ msgid "Add new language"
305
+ msgstr "Lisa uus keel"
306
+
307
+ # @ polylang
308
+ #: include/languages-form.php:65
309
+ msgid "Choose a language"
310
+ msgstr "Vali keel"
311
+
312
+ # @ polylang
313
+ #: include/languages-form.php:79
314
+ msgid "You can choose a language in the list or directly edit it below."
315
+ msgstr ""
316
+ "Saate valida keele loendist või vahetult redigeerida allpool olevates "
317
+ "lahtrites."
318
+
319
+ # @ polylang
320
+ #: include/languages-form.php:83 include/list-table.php:63
321
+ msgid "Full name"
322
+ msgstr "Täisnimi"
323
+
324
+ # @ polylang
325
+ #: include/languages-form.php:85
326
+ msgid "The name is how it is displayed on your site (for example: English)."
327
+ msgstr "Täisnimi kuvatakse sinu lehel (näiteks: Eesti)."
328
+
329
+ # @ polylang
330
+ #: include/languages-form.php:89 include/list-table.php:64
331
+ msgid "Locale"
332
+ msgstr "Locale"
333
+
334
+ # @ polylang
335
+ #: include/languages-form.php:94
336
+ msgid ""
337
+ "Wordpress Locale for the language (for example: en_US). You will need to "
338
+ "install the .mo file for this language."
339
+ msgstr ""
340
+ "WordPress Locale keelele (näiteks: en_US). Peate paigaldama .mo tõlkefaili "
341
+ "selle keele jaoks."
342
+
343
+ # @ polylang
344
+ #: include/languages-form.php:98
345
+ msgid "Language code"
346
+ msgstr "Keelekood"
347
+
348
+ # @ polylang
349
+ #: include/languages-form.php:100
350
+ msgid "2-letters ISO 639-1 language code (for example: en)"
351
+ msgstr "2 täheline ISO 639-1 keelekood (näiteks: et)"
352
+
353
+ # @ polylang
354
+ #: include/languages-form.php:104
355
+ msgid "Text direction"
356
+ msgstr "Teksti suund"
357
+
358
+ # @ polylang
359
+ #: include/languages-form.php:108
360
+ msgid "left to right"
361
+ msgstr "vasakult paremale"
362
+
363
+ # @ polylang
364
+ #: include/languages-form.php:113
365
+ msgid "right to left"
366
+ msgstr "paremalt vasakule"
367
+
368
+ # @ polylang
369
+ #: include/languages-form.php:115
370
+ msgid "Choose the text direction for the language"
371
+ msgstr "Vali keele teksti suund "
372
+
373
+ # @ polylang
374
+ #: include/languages-form.php:119 include/list-table.php:66
375
+ msgid "Order"
376
+ msgstr "Järjekord"
377
+
378
+ # @ polylang
379
+ #: include/languages-form.php:121
380
+ msgid "Position of the language in the language switcher"
381
+ msgstr "Keele positsioon keele vahetajas"
382
+
383
+ # @ polylang
384
+ #: include/languages-form.php:180
385
+ msgid "Language switcher"
386
+ msgstr "Keele vahetaja"
387
+
388
+ # @ polylang
389
+ #: include/languages-form.php:206
390
+ msgid "Search translations"
391
+ msgstr "Otsi tõlkeid"
392
+
393
+ # @ polylang
394
+ #: include/languages-form.php:215
395
+ msgid "Clean strings translation database"
396
+ msgstr "Puhasta sõnade tõlkimise andmebaas"
397
+
398
+ # @ polylang
399
+ #: include/languages-form.php:231
400
+ msgid "Default language"
401
+ msgstr "Vaikimisi keel"
402
+
403
+ # @ polylang
404
+ #: include/languages-form.php:243
405
+ msgid ""
406
+ "There are posts, pages, categories or tags without language set. Do you want "
407
+ "to set them all to default language ?"
408
+ msgstr ""
409
+ "Leidub postitusi, lehti, rubriike või silte millel pole keel määratud. Kas "
410
+ "soovite neile määrata vaikimisi keele?"
411
+
412
+ # @ polylang
413
+ #: include/languages-form.php:251
414
+ msgid "Detect browser language"
415
+ msgstr "Tuvasta veebilehitseja keel"
416
+
417
+ # @ polylang
418
+ #: include/languages-form.php:257
419
+ msgid ""
420
+ "When the front page is visited, set the language according to the browser "
421
+ "preference"
422
+ msgstr ""
423
+ "Kui külastatakse esilehte, kasuta keele määramiseks veebilehitseja eelistusi"
424
+
425
+ # @ polylang
426
+ #: include/languages-form.php:264
427
+ msgid "URL modifications"
428
+ msgstr "aadressi (URL) modifikatsioon"
429
+
430
+ # @ polylang
431
+ #: include/languages-form.php:270
432
+ msgid ""
433
+ "The language is set from content. Posts, pages, categories and tags urls are "
434
+ "not modified."
435
+ msgstr ""
436
+ "Keel on määratud sisus. Postituste, lehtede, rubriikide ja siltide aadresse "
437
+ "ei muudeta."
438
+
439
+ # @ polylang
440
+ #: include/languages-form.php:278
441
+ msgid ""
442
+ "The language code, for example /en/, is added to all urls when using pretty "
443
+ "permalinks."
444
+ msgstr ""
445
+ "Keelekood (näiteks: /et/) lisatakse kõikidele aadressidele, kui kasutusel on "
446
+ "nn. ilusad püsiviited"
447
+
448
+ # @ polylang
449
+ #: include/languages-form.php:287
450
+ msgid "Remove /language/ in pretty permalinks. Example:"
451
+ msgstr "Eemalda /language/ nn. ilusatest püsiviidetest. Näiteks:"
452
+
453
+ # @ polylang
454
+ #: include/languages-form.php:296
455
+ msgid "Keep /language/ in pretty permalinks. Example:"
456
+ msgstr "Säilita /language/ nn. ilusates püsiviidetes. Näiteks:"
457
+
458
+ # @ polylang
459
+ #: include/languages-form.php:305
460
+ msgid "Hide URL language information for default language"
461
+ msgstr "Peida keeleinfo aadressides (URL-ides), kui on kasutusel vaikekeel."
462
+
463
+ # @ polylang
464
+ #: include/languages-form.php:315
465
+ #, php-format
466
+ msgid ""
467
+ "When using static front page, redirect the language page (example: %s) to "
468
+ "the front page in the right language"
469
+ msgstr ""
470
+ "Kui kasutusel on staatiline esileht suunata keeleleht (näitkes: %s) õige "
471
+ "keelse esilehe peale"
472
+
473
+ # @ polylang
474
+ #: include/languages-form.php:324
475
+ msgid "Media"
476
+ msgstr "Meedia"
477
+
478
+ # @ polylang
479
+ #: include/languages-form.php:330
480
+ msgid "Activate languages and translations for media"
481
+ msgstr "Aktiveeri keeled ja tõlked meedia jaoks."
482
+
483
+ # @ polylang
484
+ #: include/languages-form.php:337
485
+ msgid "Synchronization"
486
+ msgstr "Sünkroniseerimine"
487
+
488
+ # @ polylang
489
+ #: include/languages-form.php:351
490
+ msgid "Custom post types"
491
+ msgstr "Kohandatud postitusetüübid"
492
+
493
+ # @ polylang
494
+ #: include/languages-form.php:364
495
+ msgid "Activate languages and translations for custom post types."
496
+ msgstr "Aktiveeri keeled ja tõlked kohandatud postitusetüüpide jaoks."
497
+
498
+ # @ polylang
499
+ #: include/languages-form.php:372
500
+ msgid "Custom taxonomies"
501
+ msgstr "Kohandatud taksonoomiad"
502
+
503
+ # @ polylang
504
+ #: include/languages-form.php:385
505
+ msgid "Activate languages and translations for custom taxonomies."
506
+ msgstr "Aktiveeri keeled ja tõlked kohandatud taksonoomiate jaoks."
507
+
508
+ # @ polylang
509
+ #: include/list-table.php:55 include/media-translations.php:22
510
+ #: include/media-translations.php:60 include/post-translations.php:10
511
+ #: include/post-translations.php:33 include/term-translations.php:18
512
+ #: include/term-translations.php:80
513
+ msgid "Edit"
514
+ msgstr "Muuda"
515
+
516
+ # @ polylang
517
+ #: include/list-table.php:56
518
+ msgid "Delete"
519
+ msgstr "Kustuta"
520
+
521
+ # @ polylang
522
+ #: include/list-table.php:65
523
+ msgid "Code"
524
+ msgstr "Kood"
525
+
526
+ # @ polylang
527
+ #: include/list-table.php:67
528
+ msgid "Flag"
529
+ msgstr "Lipp"
530
+
531
+ # @ polylang
532
+ #: include/list-table.php:68
533
+ msgid "Posts"
534
+ msgstr "Postitused"
535
+
536
+ # @ polylang
537
+ #: include/list-table.php:118
538
+ msgid "Name"
539
+ msgstr "Nimi"
540
+
541
+ # @ polylang
542
+ #: include/list-table.php:119
543
+ msgid "String"
544
+ msgstr "Sõna(d)"
545
+
546
+ # @ polylang
547
+ #: include/media-translations.php:6 include/media-translations.php:44
548
+ #: include/term-translations.php:16
549
+ msgid "Translation"
550
+ msgstr "Tõlge"
551
+
552
+ # @ polylang
553
+ #: include/media-translations.php:31 include/media-translations.php:68
554
+ #: include/post-translations.php:38 include/term-translations.php:60
555
+ msgid "Add new"
556
+ msgstr "Lisa uus"
557
+
558
+ # @ polylang
559
+ #: include/post-translations.php:5
560
+ msgid "ID of pages in other languages:"
561
+ msgstr "Teistes keeltes olevate lehtede ID-d:"
562
+
563
+ # @ polylang
564
+ #: include/post-translations.php:5
565
+ msgid "ID of posts in other languages:"
566
+ msgstr "Teistes keeltes olevate postituste ID-d:"
567
+
568
+ # @ polylang
569
+ #: include/post-translations.php:9
570
+ msgid "Page ID"
571
+ msgstr "Lehe ID"
572
+
573
+ # @ polylang
574
+ #: include/post-translations.php:9
575
+ msgid "Post ID"
576
+ msgstr "Postituse ID"
577
+
578
+ # @ polylang
579
+ #: include/term-translations.php:48
580
+ msgid "No untranslated term"
581
+ msgstr "Pole tõlkimata termineid"
582
+
583
+ # @ polylang
584
+ #: include/widget.php:6
585
+ msgid "Language Switcher"
586
+ msgstr "Keele vahetaja"
587
+
588
+ # @ polylang
589
+ #: include/widget.php:6
590
+ msgid "Displays a language switcher"
591
+ msgstr "Näitab keele vahetajat"
592
+
593
+ # @ polylang
594
+ #: include/widget.php:69
595
+ msgid "Title:"
596
+ msgstr "Pealkiri:"
597
+
598
+ # @ polylang
599
+ #. translators: plugin header field 'Description'
600
+ #: polylang.php:0
601
+ msgid "Adds multilingual capability to WordPress"
602
+ msgstr "Lisab mitmekeelsuse WordPressile"
603
+
604
+ # @ polylang
605
+ #: polylang.php:118
606
+ #, php-format
607
+ msgid "You are using WordPress %s. Polylang requires at least WordPress %s."
608
+ msgstr ""
609
+ "Kasutusel on WordPress %s. Polylang vajab töötamiseks vähemalt WordPress "
610
+ "versiooni %s."
611
+
612
+ # @ polylang
613
+ #: polylang.php:159
614
+ msgid "For some reasons, Polylang could not create a table in your database."
615
+ msgstr "Mingil põhjusel Polylang ei suutnud andmebaasi luua tabelit."
616
+
617
+ # @ polylang
618
+ #: polylang.php:220
619
+ msgid ""
620
+ "Polylang has been deactivated because you upgraded from a too old version."
621
+ msgstr "Polylang on deaktiveeritud kuna uuendasite liiga vana versiooni pealt."
622
+
623
+ # @ polylang
624
+ #: polylang.php:222
625
+ #, php-format
626
+ msgid "Please upgrade first to %s before ugrading to %s."
627
+ msgstr ""
628
+ "Palun uuendage kõigepealt versioonile %s ja alles seejärel versioonile %s."
languages/polylang-sk_SK.mo CHANGED
Binary file
languages/polylang-sk_SK.po CHANGED
@@ -4,7 +4,7 @@ msgstr ""
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: \n"
6
  "PO-Revision-Date: \n"
7
- "Last-Translator: F. Demarle\n"
8
  "Language-Team: \n"
9
  "Language: \n"
10
  "MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
14
  "X-Poedit-SourceCharset: utf-8\n"
15
  "X-Poedit-KeywordsList: _e;__;_x\n"
16
  "X-Poedit-Basepath: .\n"
17
- "X-Generator: Poedit 1.5.4\n"
18
  "X-Poedit-SearchPath-0: ..\n"
19
  "X-Poedit-SearchPath-1: ../include\n"
20
 
@@ -353,7 +353,7 @@ msgstr "Jazyk je nastavená od obsahu. Príspevkov, stránok, kategórií a zna
353
 
354
  #: include/languages-form.php:278
355
  msgid "The language code, for example /en/, is added to all urls when using pretty permalinks."
356
- msgstr "Kód jazyka, napríklad/en /, sa pridá do všetky adresy URL, pri použití pekná permalinks."
357
 
358
  #: include/languages-form.php:287
359
  msgid "Remove /language/ in pretty permalinks. Example:"
@@ -518,10 +518,10 @@ msgstr ""
518
  #~ msgstr "Prosím presunúť svoje miestne vlajky od %s do %s"
519
 
520
  #~ msgid "%1$s %2$s"
521
- #~ msgstr "%1$ s %2$ s"
522
 
523
  #~ msgid "View posts for %1$s %2$s"
524
- #~ msgstr "Zobraziť príspevky pre %1$ s %2$ s"
525
 
526
  #~ msgid "Site Title"
527
  #~ msgstr "Názov lokality"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: \n"
6
  "PO-Revision-Date: \n"
7
+ "Last-Translator: Branco <brradenovich@gmail.com>\n"
8
  "Language-Team: \n"
9
  "Language: \n"
10
  "MIME-Version: 1.0\n"
14
  "X-Poedit-SourceCharset: utf-8\n"
15
  "X-Poedit-KeywordsList: _e;__;_x\n"
16
  "X-Poedit-Basepath: .\n"
17
+ "X-Generator: Poedit 1.5.5\n"
18
  "X-Poedit-SearchPath-0: ..\n"
19
  "X-Poedit-SearchPath-1: ../include\n"
20
 
353
 
354
  #: include/languages-form.php:278
355
  msgid "The language code, for example /en/, is added to all urls when using pretty permalinks."
356
+ msgstr "Kód jazyka, napríklad/en/, sa pridá do všetky adresy URL, pri použití pekná permalinks."
357
 
358
  #: include/languages-form.php:287
359
  msgid "Remove /language/ in pretty permalinks. Example:"
518
  #~ msgstr "Prosím presunúť svoje miestne vlajky od %s do %s"
519
 
520
  #~ msgid "%1$s %2$s"
521
+ #~ msgstr "%1$s %2$s"
522
 
523
  #~ msgid "View posts for %1$s %2$s"
524
+ #~ msgstr "View posts for %1$s %2$s"
525
 
526
  #~ msgid "Site Title"
527
  #~ msgstr "Názov lokality"
polylang.php CHANGED
@@ -2,7 +2,7 @@
2
  /*
3
  Plugin Name: Polylang
4
  Plugin URI: http://polylang.wordpress.com/
5
- Version: 1.0.3
6
  Author: F. Demarle
7
  Description: Adds multilingual capability to WordPress
8
  Text Domain: polylang
@@ -29,7 +29,7 @@ Domain Path: /languages
29
  *
30
  */
31
 
32
- define('POLYLANG_VERSION', '1.0.3');
33
  define('PLL_MIN_WP_VERSION', '3.1');
34
 
35
  define('POLYLANG_DIR', dirname(__FILE__)); // our directory
2
  /*
3
  Plugin Name: Polylang
4
  Plugin URI: http://polylang.wordpress.com/
5
+ Version: 1.0.4
6
  Author: F. Demarle
7
  Description: Adds multilingual capability to WordPress
8
  Text Domain: polylang
29
  *
30
  */
31
 
32
+ define('POLYLANG_VERSION', '1.0.4');
33
  define('PLL_MIN_WP_VERSION', '3.1');
34
 
35
  define('POLYLANG_DIR', dirname(__FILE__)); // our directory
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
4
  Tags: multilingual, bilingual, translate, translation, language, multilanguage, i18n, international, l10n, localization
5
  Requires at least: 3.1
6
  Tested up to: 3.5
7
- Stable tag: 1.0.3
8
  License: GPLv2 or later
9
 
10
  Polylang adds multilingual content management support to WordPress.
@@ -24,7 +24,7 @@ You write posts, pages and create categories and post tags as usual, and then de
24
 
25
  = Translators =
26
 
27
- The plugin admin interface is currently available in 25 languages: English, French, German contributed by [Christian Ries](http://www.singbyfoot.lu), Russian contributed by [yoyurec](http://yoyurec.in.ua) and unostar, Greek contributed by [theodotos](http://www.ubuntucy.org), Dutch contributed by [AlbertGn](http://wordpress.org/support/profile/albertgn), Hebrew contributed by [ArielK](http://www.arielk.net), Polish contributed by [Peter Paciorkiewicz](http://www.paciorkiewicz.pl), Latvian contributed by [@AndyDeGroo](http://twitter.com/AndyDeGroo), Italian contributed by [Luca Barbetti](http://wordpress.org/support/profile/lucabarbetti), Danish contributed by [Compute](http://wordpress.org/support/profile/compute), Spanish contributed by Curro, Portuguese contributed by [Vitor Carvalho](http://vcarvalho.com/), Lithuanian contributed by [Naglis Jonaitis](http://najo.lt/), Turkish contributed by [darchws](http://darch.ws/), Finnish contributed by [Jani Alha](http://www.wysiwyg.fi), Bulgarian contributed by [pavelsof](http://wordpress.org/support/profile/pavelsof), Belarusian contributed by [Alexander Markevitch](http://fourfeathers.by/), Afrikaans contributed by [Kobus Joubert](http://translate3d.com/), Hungarian contributed by Csaba Erdei, Norwegian contributed by [Tom Boersma](http://www.oransje.com/), Slovak contributed by [Branco (WebHostingGeeks.com)](http://webhostinggeeks.com/user-reviews/), Swedish contributed by [matsii](http://wordpress.org/support/profile/matsii), Catalan contributed by [Núria Martínez Berenguer](http://nuriamb.capa.webfactional.com), Ukrainian contributed by [cmd soft](http://www.cmd-soft.com/)
28
 
29
 
30
  Other [contributions](http://polylang.wordpress.com/documentation/contribute/) are welcome !
@@ -92,6 +92,19 @@ If you are using a version older than 0.8, please ugrade to 0.9.8 before ugradin
92
 
93
  == Changelog ==
94
 
 
 
 
 
 
 
 
 
 
 
 
 
 
95
  = 1.0.3 (2013-03-17) =
96
 
97
  * Add Catalan translation contributed by [Núria Martínez Berenguer](http://nuriamb.capa.webfactional.com)
4
  Tags: multilingual, bilingual, translate, translation, language, multilanguage, i18n, international, l10n, localization
5
  Requires at least: 3.1
6
  Tested up to: 3.5
7
+ Stable tag: 1.0.4
8
  License: GPLv2 or later
9
 
10
  Polylang adds multilingual content management support to WordPress.
24
 
25
  = Translators =
26
 
27
+ The plugin admin interface is currently available in 26 languages: English, French, German contributed by [Christian Ries](http://www.singbyfoot.lu), Russian contributed by [yoyurec](http://yoyurec.in.ua) and unostar, Greek contributed by [theodotos](http://www.ubuntucy.org), Dutch contributed by [AlbertGn](http://wordpress.org/support/profile/albertgn), Hebrew contributed by [ArielK](http://www.arielk.net), Polish contributed by [Peter Paciorkiewicz](http://www.paciorkiewicz.pl), Latvian contributed by [@AndyDeGroo](http://twitter.com/AndyDeGroo), Italian contributed by [Luca Barbetti](http://wordpress.org/support/profile/lucabarbetti), Danish contributed by [Compute](http://wordpress.org/support/profile/compute), Spanish contributed by Curro, Portuguese contributed by [Vitor Carvalho](http://vcarvalho.com/), Lithuanian contributed by [Naglis Jonaitis](http://najo.lt/), Turkish contributed by [darchws](http://darch.ws/), Finnish contributed by [Jani Alha](http://www.wysiwyg.fi), Bulgarian contributed by [pavelsof](http://wordpress.org/support/profile/pavelsof), Belarusian contributed by [Alexander Markevitch](http://fourfeathers.by/), Afrikaans contributed by [Kobus Joubert](http://translate3d.com/), Hungarian contributed by Csaba Erdei, Norwegian contributed by [Tom Boersma](http://www.oransje.com/), Slovak contributed by [Branco (WebHostingGeeks.com)](http://webhostinggeeks.com/user-reviews/), Swedish contributed by [matsii](http://wordpress.org/support/profile/matsii), Catalan contributed by [Núria Martínez Berenguer](http://nuriamb.capa.webfactional.com), Ukrainian contributed by [cmd soft](http://www.cmd-soft.com/), Estonian contributed by [Ahto Naris](http://profiles.wordpress.org/ahtonaris/)
28
 
29
 
30
  Other [contributions](http://polylang.wordpress.com/documentation/contribute/) are welcome !
92
 
93
  == Changelog ==
94
 
95
+ = 1.0.4 (2013-04-08) =
96
+
97
+ * Add Estonian translation contributed by [Ahto Naris](http://profiles.wordpress.org/ahtonaris/)
98
+ * Now compatible with languages files stored in wp-content/languages/themes
99
+ * Bug correction: page preview does not work when adding the language code to all urls
100
+ * Bug correction: error when a post type or taxonomy label is not a string
101
+ * Bug correction: admin text section of wpml-config.xml (introduced in 1.0.3)
102
+ * Bug correction: infinite redirect loop when querying an unattached media and the language code is added to all urls
103
+ * Bug correction: the text direction is not set from Polylang options when the language code is added to all urls
104
+ * Bug correction: get_adjacent_post is filtered by language even for post types without language
105
+ * Bug correction: the home url is not not in the correct language in wp-login.php
106
+ * Bug correction: the language is not correctly set when using date and name permalinks (introduced in 1.0.3)
107
+
108
  = 1.0.3 (2013-03-17) =
109
 
110
  * Add Catalan translation contributed by [Núria Martínez Berenguer](http://nuriamb.capa.webfactional.com)