Polylang - Version 1.4.3

Version Description

(2014-03-22) =

  • Add: Serbian translation contributed by Sinisa
  • Add: Myanmar translation contributed by Sithu Thwin
  • Fix: comment form redirects to wp-admin when using multiple domains or subdomains.
  • Fix: fatal error with old versions of PHP (tested on PHP 5.2.4)
  • Fix: Bad gateway experienced by users hosted by wpengine.com
  • Fix: links got from tiny MCE link button are filtered with admin language filter instead of current post language
  • Fix: possibly wrong redirection in check_language_code_in_url when using domains or subdomains
Download this release

Release Info

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

Code changes from version 1.4.2 to 1.4.3

admin/admin-filters-post.php CHANGED
@@ -59,16 +59,14 @@ class PLL_Admin_Filters_Post {
59
  return;
60
  }
61
 
62
- // filters the list of media by language when uploading from post
63
- if ($this->options['media_support'] &&
64
- $GLOBALS['pagenow'] == 'admin-ajax.php' && isset($_REQUEST['action']) && $_REQUEST['action'] == 'query-attachments' && // WP 3.5+
65
- isset($_REQUEST['post_id']) && $lang = $this->model->get_post_language($_REQUEST['post_id']))
66
  $query->set('lang', $lang->slug);
67
 
68
- if (isset($qvars['post_type']) && $this->model->is_translated_post_type($qvars['post_type']) && !isset($qvars['lang']) && !empty($this->curlang))
69
  $qvars['lang'] = $this->curlang->slug;
70
 
71
- if ((isset($qvars['post_type']) && !$this->model->is_translated_post_type($qvars['post_type'])) || (isset($qvars['lang']) && $qvars['lang'] == 'all'))
72
  unset ($qvars['lang']);
73
  }
74
 
59
  return;
60
  }
61
 
62
+ // filters the list of media (or wp-links) by language when uploading from post
63
+ if (isset($qvars['post_type']) && isset($_REQUEST['pll_post_id']) && $lang = $this->model->get_post_language($_REQUEST['pll_post_id']))
 
 
64
  $query->set('lang', $lang->slug);
65
 
66
+ if (isset($qvars['post_type']) && !isset($qvars['lang']) && !empty($this->curlang))
67
  $qvars['lang'] = $this->curlang->slug;
68
 
69
+ if (isset($qvars['lang']) && $qvars['lang'] == 'all')
70
  unset ($qvars['lang']);
71
  }
72
 
admin/admin.php CHANGED
@@ -113,17 +113,26 @@ class PLL_Admin extends PLL_Base {
113
  *
114
  * @since 1.4
115
  */
116
- public function admin_print_footer_scripts() { ?>
 
 
 
 
 
 
 
 
117
 
 
118
  <script type="text/javascript">
119
  if (typeof jQuery != 'undefined') {
120
  (function($){
121
  $.ajaxPrefilter(function (options, originalOptions, jqXHR) {
122
  if (typeof options.data == 'string') {
123
- options.data = 'pll_ajax_backend=1&'+options.data;
124
  }
125
  else {
126
- options.data = $.extend(options.data, {pll_ajax_backend: true});
127
  }
128
  });
129
  })(jQuery)
@@ -164,6 +173,9 @@ class PLL_Admin extends PLL_Base {
164
  * @since 1.2.3
165
  */
166
  public function init_user() {
 
 
 
167
  // language for admin language filter: may be empty
168
  // $_GET['lang'] is numeric when editing a language, not when selecting a new language in the filter
169
  if (!defined('DOING_AJAX') && !empty($_GET['lang']) && !is_numeric($_GET['lang']))
@@ -175,9 +187,6 @@ class PLL_Admin extends PLL_Base {
175
  $this->pref_lang = empty($this->curlang) ? $this->model->get_language($this->options['default_lang']) : $this->curlang;
176
  $this->pref_lang = apply_filters('pll_admin_preferred_language', $this->pref_lang);
177
 
178
- // backend locale
179
- add_filter('locale', array(&$this, 'get_locale'));
180
-
181
  // inform that the admin language has been set
182
  // only if the admin language is one of the Polylang defined language
183
  if ($curlang = $this->model->get_language(get_locale())) {
113
  *
114
  * @since 1.4
115
  */
116
+ public function admin_print_footer_scripts() {
117
+ global $post_ID;
118
+ $str = 'pll_ajax_backend=1&';
119
+ $arr = 'pll_ajax_backend: true';
120
+
121
+ if (!empty($post_ID)) {
122
+ $str .= 'pll_post_id=' . (int) $post_ID . '&';
123
+ $arr .= ', pll_post_id: ' . (int) $post_ID;
124
+ }
125
 
126
+ ?>
127
  <script type="text/javascript">
128
  if (typeof jQuery != 'undefined') {
129
  (function($){
130
  $.ajaxPrefilter(function (options, originalOptions, jqXHR) {
131
  if (typeof options.data == 'string') {
132
+ options.data = '<?php echo $str;?>'+options.data;
133
  }
134
  else {
135
+ options.data = $.extend(options.data, {<?php echo $arr;?>});
136
  }
137
  });
138
  })(jQuery)
173
  * @since 1.2.3
174
  */
175
  public function init_user() {
176
+ // backend locale
177
+ add_filter('locale', array(&$this, 'get_locale'));
178
+
179
  // language for admin language filter: may be empty
180
  // $_GET['lang'] is numeric when editing a language, not when selecting a new language in the filter
181
  if (!defined('DOING_AJAX') && !empty($_GET['lang']) && !is_numeric($_GET['lang']))
187
  $this->pref_lang = empty($this->curlang) ? $this->model->get_language($this->options['default_lang']) : $this->curlang;
188
  $this->pref_lang = apply_filters('pll_admin_preferred_language', $this->pref_lang);
189
 
 
 
 
190
  // inform that the admin language has been set
191
  // only if the admin language is one of the Polylang defined language
192
  if ($curlang = $this->model->get_language(get_locale())) {
frontend/choose-lang-url.php CHANGED
@@ -82,12 +82,9 @@ class PLL_Choose_Lang_Url extends PLL_Choose_lang {
82
 
83
  // the language is not correctly set so let's redirect to the correct url for this object
84
  if (!empty($language) && (empty($this->curlang) || $language->slug != $this->curlang->slug)) {
85
- $root = $this->options['rewrite'] ? '/' : '/language/';
86
- foreach ($this->model->get_languages_list() as $lang)
87
- $languages[] = $root . $lang->slug;
88
-
89
- $requested_url = (is_ssl() ? 'https://' : 'http://') . $_SERVER['HTTP_HOST'] . str_replace($languages, '', $_SERVER['REQUEST_URI']);
90
- $redirect_url = $this->links_model->add_language_to_link($requested_url, $language);
91
 
92
  if ($requested_url != $redirect_url) {
93
  wp_redirect($redirect_url, 301);
82
 
83
  // the language is not correctly set so let's redirect to the correct url for this object
84
  if (!empty($language) && (empty($this->curlang) || $language->slug != $this->curlang->slug)) {
85
+ $requested_url = (is_ssl() ? 'https://' : 'http://') . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'];
86
+ $redirect_url = $this->links_model->remove_language_from_link($requested_url);
87
+ $redirect_url = $this->links_model->add_language_to_link($redirect_url, $language);
 
 
 
88
 
89
  if ($requested_url != $redirect_url) {
90
  wp_redirect($redirect_url, 301);
frontend/frontend-links.php CHANGED
@@ -25,6 +25,11 @@ class PLL_Frontend_Links extends PLL_Links {
25
  $this->page_for_posts = get_option('page_for_posts');
26
 
27
  add_action('pll_language_defined', array(&$this, 'pll_language_defined'), 10, 2);
 
 
 
 
 
28
  }
29
 
30
  /*
@@ -64,6 +69,19 @@ class PLL_Frontend_Links extends PLL_Links {
64
  add_filter('home_url', array(&$this, 'home_url'), 10, 2);
65
  }
66
 
 
 
 
 
 
 
 
 
 
 
 
 
 
67
  /*
68
  * modifies the author and date links to add the language parameter (as well as feed link)
69
  *
25
  $this->page_for_posts = get_option('page_for_posts');
26
 
27
  add_action('pll_language_defined', array(&$this, 'pll_language_defined'), 10, 2);
28
+
29
+ // adds the domain of the current language to allowed hosts for safe redirection
30
+ // only when using domains or subdomains
31
+ if ($this->options['force_lang'] > 1)
32
+ add_filter('allowed_redirect_hosts', array(&$this, 'allowed_redirect_hosts'));
33
  }
34
 
35
  /*
69
  add_filter('home_url', array(&$this, 'home_url'), 10, 2);
70
  }
71
 
72
+ /*
73
+ * adds the domain of the current language to allowed hosts for safe redirection
74
+ *
75
+ * @since 1.4.3
76
+ *
77
+ * @param array $hosts allowed hosts
78
+ * @return array
79
+ */
80
+ public function allowed_redirect_hosts($hosts) {
81
+ $hosts[] = preg_replace('#https?://#', '', $this->get_home_url());
82
+ return $hosts;
83
+ }
84
+
85
  /*
86
  * modifies the author and date links to add the language parameter (as well as feed link)
87
  *
include/model.php CHANGED
@@ -148,7 +148,10 @@ class PLL_Model {
148
  array() : array_combine(wp_list_pluck($term_languages, 'name'), $term_languages);
149
 
150
  if (!empty($languages) && !empty($term_languages)) {
151
- array_walk($languages, create_function('&$v, $k, $term_languages', '$v = new PLL_Language($v, $term_languages[$v->name]);'), $term_languages);
 
 
 
152
  }
153
  else {
154
  $languages = array(); // in case something went wrong
148
  array() : array_combine(wp_list_pluck($term_languages, 'name'), $term_languages);
149
 
150
  if (!empty($languages) && !empty($term_languages)) {
151
+ // don't use array_map + create_function to instantiate an autoloaded class as it breaks badly in old versions of PHP
152
+ foreach ($languages as $k => $v) {
153
+ $languages[$k] = new PLL_Language($v, $term_languages[$v->name]);
154
+ }
155
  }
156
  else {
157
  $languages = array(); // in case something went wrong
include/plugins-compat.php CHANGED
@@ -179,6 +179,7 @@ class PLL_Plugins_Compat {
179
  */
180
  public function twenty_fourteen_widgets_init() {
181
  // overwrites the Twenty Fourteen Ephemera widget to allow translating strings when setting the language by content
 
182
  if (class_exists('Twenty_Fourteen_Ephemera_Widget')) {
183
  unregister_widget('Twenty_Fourteen_Ephemera_Widget');
184
  register_widget('PLL_Widget_Twenty_Fourteen_Ephemera');
179
  */
180
  public function twenty_fourteen_widgets_init() {
181
  // overwrites the Twenty Fourteen Ephemera widget to allow translating strings when setting the language by content
182
+ // FIXME should be removed when WP >= 3.9 See http://core.trac.wordpress.org/ticket/27069
183
  if (class_exists('Twenty_Fourteen_Ephemera_Widget')) {
184
  unregister_widget('Twenty_Fourteen_Ephemera_Widget');
185
  register_widget('PLL_Widget_Twenty_Fourteen_Ephemera');
languages/polylang-my_MM.mo ADDED
Binary file
languages/polylang-my_MM.po ADDED
@@ -0,0 +1,633 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Polylang v1.3\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: \n"
6
+ "PO-Revision-Date: 2014-03-14 13:22+0630\n"
7
+ "Last-Translator: Sithu Thwin <sithu@thwin.net>\n"
8
+ "Language-Team: \n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
+ "X-Poedit-SourceCharset: utf-8\n"
14
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_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
+ "X-Poedit-SearchPath-0: .\n"
18
+
19
+ #@ polylang
20
+ #: admin/view-about.php:3
21
+ #, php-format
22
+ 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."
23
+ msgstr "ပိုမိုပြည့်စံုသော %sလမ်းညွှန်ချက်စာတမ်း%s (အင်္ဂလိပ် ဘာသာြဖင့်သာလျှင်) အား Polylang မှ ပံ့ပိုးပေးထားသည်။ ဤလမ်းညွှန်ချက်စာတမ်းတွင် ဘာသာစကားစံု ဆိုဒ်တစ်ခုအား ပြင်ဆင်လွှင့်တင်ရန် နည်းလမ်းများနှင့် နေ့စဉ်သံုး လိုအပ်သော အချက်အလက်များပါဝင်ပါသည်။ FAQ အပြင် ပရိုဂရမ် ရေးသားသူများအတွက် ၎င်းတို့၏ ပလပ်အင်များ အခင်းအကျင်းများအား လိုအပ်သလို ပြုပြင်နိုင်သည့် နည်းလမ်းများလည်း ပါဝင်သည်။"
24
+
25
+ #@ polylang
26
+ #: admin/view-about.php:9
27
+ #, php-format
28
+ 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."
29
+ msgstr "%sအကူအညီ ဖိုရမ်%s တွင်လည်း အသံုးဝင်သော အချက်အလက်များ ရှာဖွေနိုင်သည်။ သို့သော် ခေါင်းစဉ်အသစ်တစ်ခု ဖွင့်လှစ် မမေမြန်းခင် အရင် ရှာဖွေကြည့်ရန် မမေ့ပါနှင့်။"
30
+
31
+ #@ polylang
32
+ #: admin/view-about.php:16
33
+ #, php-format
34
+ msgid "Polylang is free of charge and is released under the same license as WordPress, the %sGPL%s."
35
+ msgstr "Polylang အား WordPress ၏ လိုင်စင်အတိုင်း %sGPL%s လိုင်စင်ဖြင့်သာ အခမဲ့ ဖြန့်ချိပါသည်။"
36
+
37
+ #@ polylang
38
+ #: admin/view-about.php:22
39
+ #, php-format
40
+ msgid "If you wonder how you can help the project, just %sread this%s."
41
+ msgstr "ပရောဂျက်အား မည်သို့ကူညီနိုင်မည်ကို သိလိုပါက %sဒါကိုဖတ်ပါ။%s "
42
+
43
+ #@ polylang
44
+ #: admin/view-about.php:27
45
+ msgid "Finally if you like this plugin or if it helps your business, donations to the author are greatly appreciated."
46
+ msgstr "ဒီပလပ်အင်ကို နှစ်သက်လျှင် သို့မဟုတ် သင့်လုပ်ငန်းအား အထောက်အကူဖြစ်လျှင် ရေးသူအား လှူဒါန်းမှုအား ကျေးဇူးအထူး တင်ရှိမည်ဖြစ်သည်။"
47
+
48
+ #@ polylang
49
+ #: admin/admin-filters-post.php:81
50
+ #: admin/admin.php:76
51
+ #: admin/settings.php:42
52
+ #: admin/settings.php:57
53
+ #: include/model.php:501
54
+ msgid "Languages"
55
+ msgstr "ဘာသာစကားများ"
56
+
57
+ #@ polylang
58
+ #: include/switcher.php:22
59
+ msgid "Displays language names"
60
+ msgstr "ဘာသာစကားအမည်များ ဖော်ြပပါ"
61
+
62
+ #@ polylang
63
+ #: include/switcher.php:23
64
+ msgid "Displays flags"
65
+ msgstr "အလံများ ဖော်ြပပါ"
66
+
67
+ #@ polylang
68
+ #: include/switcher.php:24
69
+ msgid "Forces link to front page"
70
+ msgstr "လိပ်စာများအား ရှေ့စာမျက်နှာသို့ ညွှန်းပါ"
71
+
72
+ #@ polylang
73
+ #: include/switcher.php:25
74
+ msgid "Hides the current language"
75
+ msgstr "ယခုအသံုးပြုထားသော ဘာသာစကားအား ဖျောက်ထားပါ"
76
+
77
+ #@ polylang
78
+ #: include/switcher.php:29
79
+ msgid "Displays as dropdown"
80
+ msgstr "ဆွဲချဇယားအဖြစ်ပြပါ"
81
+
82
+ #@ polylang
83
+ #: admin/admin.php:212
84
+ msgid "Filters content by language"
85
+ msgstr "အကြောင်းအရာများအား ဘာသာစကားဖြင့် စစ်ထုတ်ပါ"
86
+
87
+ #@ polylang
88
+ #: admin/admin.php:199
89
+ msgid "Show all languages"
90
+ msgstr "ဘာသာစကားအားလံုးြပပါ"
91
+
92
+ #@ polylang
93
+ #: admin/admin-filters-columns.php:126
94
+ #: admin/admin-filters-columns.php:218
95
+ msgid "Add new translation"
96
+ msgstr "ဘာသာစကားအသစ်ထည့်ရန်"
97
+
98
+ #@ polylang
99
+ #: admin/admin-filters-columns.php:160
100
+ #: admin/admin-filters-media.php:57
101
+ #: admin/admin-filters-post.php:114
102
+ #: admin/admin-filters-term.php:73
103
+ #: admin/admin-filters-term.php:110
104
+ #: admin/view-translations-media.php:7
105
+ #: admin/view-translations-media.php:45
106
+ #: admin/view-translations-post.php:8
107
+ #: admin/view-translations-term.php:15
108
+ #: include/model.php:502
109
+ msgid "Language"
110
+ msgstr "ဘာသာစကား"
111
+
112
+ #@ polylang
113
+ #: admin/admin-filters-media.php:72
114
+ #: admin/admin-filters-media.php:111
115
+ #: admin/table-string.php:111
116
+ #: admin/view-translations-media.php:42
117
+ #: admin/view-translations-term.php:6
118
+ #: admin/view-translations-term.php:11
119
+ msgid "Translations"
120
+ msgstr "ဘာသာပြန်များ"
121
+
122
+ #@ polylang
123
+ #: admin/admin-filters-term.php:75
124
+ #: admin/admin-filters-term.php:112
125
+ msgid "Sets the language"
126
+ msgstr "ဘာသာစကား သတ်မှတ်ရန်"
127
+
128
+ #@ polylang
129
+ #: admin/admin-filters.php:59
130
+ msgid "The widget is displayed for:"
131
+ msgstr "ဝစ်ဂျစ်ဖော်ပြမှု :"
132
+
133
+ #@ polylang
134
+ #: admin/admin-filters.php:62
135
+ #: include/model.php:503
136
+ msgid "All languages"
137
+ msgstr "ဘာသာစကားအားလံုး"
138
+
139
+ #@ polylang
140
+ #: admin/admin-filters.php:123
141
+ msgid "Admin language"
142
+ msgstr "ထိန်းချုပ်ခလုပ်ခံု ဘာသာစကား"
143
+
144
+ #@ polylang
145
+ #: admin/admin-filters.php:126
146
+ msgid "Wordpress default"
147
+ msgstr "WordPress မူလဘာသာစကား"
148
+
149
+ #@ polylang
150
+ #: admin/admin.php:116
151
+ #: admin/settings.php:62
152
+ msgid "Settings"
153
+ msgstr "သတ်မှတ်ချက်များ"
154
+
155
+ #@ polylang
156
+ #: admin/admin-filters.php:156
157
+ msgid "Upgrading language files&#8230;"
158
+ msgstr "ဘာသာစကားဖိုင်များ အသစ်ဖြည့်စွက်နေသည်&#8230;"
159
+
160
+ #@ polylang
161
+ #: admin/settings.php:38
162
+ msgid "About Polylang"
163
+ msgstr "Polylang အကြောင်း"
164
+
165
+ #@ polylang
166
+ #: admin/settings.php:46
167
+ msgid "Strings translations"
168
+ msgstr "စာကြောင်းဘာသာပြန်များ"
169
+
170
+ #@ polylang
171
+ #: admin/settings.php:61
172
+ msgid "Strings translation"
173
+ msgstr "စာကြောင်းဘာသာပြန်"
174
+
175
+ #@ polylang
176
+ #: admin/settings.php:74
177
+ msgid "Enter a valid WordPress locale"
178
+ msgstr "သင့်လျှော်မှန်ကန်သော WordPressဘသာစကား သင်္ကေတကို ဖြည့်သွင်းပါ"
179
+
180
+ #@ polylang
181
+ #: admin/settings.php:76
182
+ msgid "The language code must be unique"
183
+ msgstr "ဘာသာစကားကုတ်မှာ တစ်မျိုးစီ သီးသန့်ဖြစ်ရမည်"
184
+
185
+ #@ polylang
186
+ #: admin/settings.php:77
187
+ msgid "The language must have a name"
188
+ msgstr "ဘာသာစကားတွင် အမည်ရှိရမည်"
189
+
190
+ #@ polylang
191
+ #: admin/settings.php:78
192
+ msgid "The language was created, but the WordPress language file was not downloaded. Please install it manually."
193
+ msgstr "ဘာသာစကားအား ဖန်တီးပြီးပါြပီ။ သို့သော် ဘာသာစကားဖိုင်များ ဆွဲချရယူမှု မပြီးမြောက်သေးပါ။ ကိုယ်တိုင် ထည့်သွင်းပေးပါ။"
194
+
195
+ #@ polylang
196
+ #: admin/settings.php:308
197
+ msgid "Widget title"
198
+ msgstr "ဝစ်ဂျက်ခေါင်းစဉ်"
199
+
200
+ #@ polylang
201
+ #: admin/settings.php:326
202
+ msgid "Taxonomies"
203
+ msgstr "ဝေါဟာရအုပ်စုများ"
204
+
205
+ #@ polylang
206
+ #: admin/settings.php:327
207
+ msgid "Custom fields"
208
+ msgstr "စိတ်ကြိုက်ဖြည့်ရန်"
209
+
210
+ #@ polylang
211
+ #: admin/settings.php:328
212
+ msgid "Comment status"
213
+ msgstr "မှတ်ချက် အခြေအ"
214
+
215
+ #@ polylang
216
+ #: admin/settings.php:329
217
+ msgid "Ping status"
218
+ msgstr "ချိတ်ဆက်မှု အခြေအ"
219
+
220
+ #@ polylang
221
+ #: admin/settings.php:330
222
+ msgid "Sticky posts"
223
+ msgstr "ဦးစားပေးစာမူ"
224
+
225
+ #@ polylang
226
+ #: admin/settings.php:331
227
+ msgid "Published date"
228
+ msgstr "ထုတ်ဝေခဲ့သောနေ့စွဲ"
229
+
230
+ #@ polylang
231
+ #: admin/settings.php:332
232
+ msgid "Post format"
233
+ msgstr "စာမူပံုစံ"
234
+
235
+ #@ polylang
236
+ #: admin/settings.php:333
237
+ msgid "Page parent"
238
+ msgstr "စာမျက်နှာပင်"
239
+
240
+ #@ polylang
241
+ #: admin/settings.php:334
242
+ msgid "Page template"
243
+ msgstr "စာမျက်နှာ စံပံုစံ"
244
+
245
+ #@ polylang
246
+ #: admin/settings.php:335
247
+ msgid "Page order"
248
+ msgstr "စာမျက်နှာ အစီအစဉ်"
249
+
250
+ #@ polylang
251
+ #: admin/settings.php:336
252
+ msgid "Featured image"
253
+ msgstr "သရုပ်ဖော် ရုပ်ပံု"
254
+
255
+ #@ polylang
256
+ #: admin/view-languages.php:42
257
+ msgid "Edit language"
258
+ msgstr "ဘာသာစကား ပြုပြင်ရန်"
259
+
260
+ #@ polylang
261
+ #: admin/view-languages.php:42
262
+ #: admin/view-languages.php:117
263
+ msgid "Add new language"
264
+ msgstr "ဘာသာစကားအသစ်ထည့်ရန်"
265
+
266
+ #@ polylang
267
+ #: admin/view-languages.php:58
268
+ msgid "Choose a language"
269
+ msgstr "ဘာသာစကားရွေးရန်"
270
+
271
+ #@ polylang
272
+ #: admin/view-languages.php:72
273
+ msgid "You can choose a language in the list or directly edit it below."
274
+ msgstr "စာရင်းအတွင်းရှိ ဘာသာစကားတစ်ခုအားရွေးပါ သို့မဟုတ် အောက်တွင် တိုက်ရိုက် ပြုပြင်ပါ။"
275
+
276
+ #@ polylang
277
+ #: admin/table-languages.php:74
278
+ #: admin/view-languages.php:76
279
+ msgid "Full name"
280
+ msgstr "အမည်အပြည့်အစံု"
281
+
282
+ #@ polylang
283
+ #: admin/view-languages.php:78
284
+ msgid "The name is how it is displayed on your site (for example: English)."
285
+ msgstr "သင့်ဆိုဒ်တွင် ဖော်ပြမည့်အမည်။ (ဥပမာ။ ။ အင်္ဂလိပ်)။"
286
+
287
+ #@ polylang
288
+ #: admin/table-languages.php:75
289
+ #: admin/view-languages.php:82
290
+ msgid "Locale"
291
+ msgstr "ေဒသန္တရဘာသာစကားအုပ်စု"
292
+
293
+ #@ polylang
294
+ #: admin/view-languages.php:87
295
+ msgid "Wordpress Locale for the language (for example: en_US). You will need to install the .mo file for this language."
296
+ msgstr "WordPress ဘာသာစကားသင်္ကေတ ( ဥပမာ။ ။ en_US ) ။ ဤဘာသာစကားအတွက် .mo ဖိုင်အား ထည့်သွင်းပေးရန်လိုအပ်ပါသည်။"
297
+
298
+ #@ polylang
299
+ #: admin/view-languages.php:91
300
+ msgid "Language code"
301
+ msgstr "ဘာသာစကားကုတ်"
302
+
303
+ #@ polylang
304
+ #: admin/view-languages.php:93
305
+ msgid "2-letters ISO 639-1 language code (for example: en)"
306
+ msgstr "အက္ခရာ ၂ လံုးပါဝင်သော ISO 639-1 ဘာသာစကားကုတ် ( ဥပမာ။ ။ en ၊) "
307
+
308
+ #@ polylang
309
+ #: admin/view-languages.php:97
310
+ msgid "Text direction"
311
+ msgstr "စာသားဦးတည်ရာ"
312
+
313
+ #@ polylang
314
+ #: admin/view-languages.php:101
315
+ msgid "left to right"
316
+ msgstr "ဘယ်မှ ညာ"
317
+
318
+ #@ polylang
319
+ #: admin/view-languages.php:106
320
+ msgid "right to left"
321
+ msgstr "ညာမှ ဘယ်"
322
+
323
+ #@ polylang
324
+ #: admin/view-languages.php:108
325
+ msgid "Choose the text direction for the language"
326
+ msgstr "ဘာသာစကားအတွက် စာသားဦးတည်ရာကို ရွေးပါ"
327
+
328
+ #@ polylang
329
+ #: admin/table-languages.php:77
330
+ #: admin/view-languages.php:112
331
+ msgid "Order"
332
+ msgstr "အစီအစဉ်"
333
+
334
+ #@ polylang
335
+ #: admin/view-languages.php:114
336
+ msgid "Position of the language in the language switcher"
337
+ msgstr "ဘာသာစကားပြောင်းခလုပ်ရှိ နေရာ"
338
+
339
+ #@ polylang
340
+ #: admin/admin-nav-menu.php:52
341
+ #: admin/admin-nav-menu.php:90
342
+ #: admin/admin-nav-menu.php:93
343
+ #: admin/admin-nav-menu.php:124
344
+ #: admin/admin-nav-menu.php:181
345
+ #: include/upgrade.php:298
346
+ msgid "Language switcher"
347
+ msgstr "ဘာသာစကားပြောင်းခလုပ်"
348
+
349
+ #@ polylang
350
+ #: admin/view-languages.php:143
351
+ msgid "Search translations"
352
+ msgstr "ဘာသာပြန်များရှာရန်"
353
+
354
+ #@ polylang
355
+ #: admin/view-languages.php:146
356
+ msgid "Clean strings translation database"
357
+ msgstr "ဘာသာပြန် ဒေတာဗေ့စ်အား ရှင်းပါ"
358
+
359
+ #@ polylang
360
+ #: admin/view-languages.php:165
361
+ msgid "Default language"
362
+ msgstr "မူလ ဘာသာစကား"
363
+
364
+ #@ polylang
365
+ #: admin/view-languages.php:180
366
+ msgid "There are posts, pages, categories or tags without language set. Do you want to set them all to default language ?"
367
+ msgstr "ဘာသာစကားသတ်မှတ်မှု မရှိသေးသော စာမူများ၊ စာမျက်နှာများ၊ ကဏ္ဍများ သို့မဟုတ် စကားစုတွဲများ ရှိနေပါသည်။ မူလဘာသာစကားဖြင့် သတ်မှတ်ပေးလိုပါသလား။"
368
+
369
+ #@ polylang
370
+ #: admin/view-languages.php:189
371
+ msgid "Detect browser language"
372
+ msgstr "ဘရောက်ဇာ ဘာသာစကားအား စစ်ဆေးရန်"
373
+
374
+ #@ polylang
375
+ #: admin/view-languages.php:195
376
+ msgid "When the front page is visited, set the language according to the browser preference"
377
+ msgstr "ပင်မစာမျက်နှာသို့ လာရောက်လည်ပတ်သောအခါ ဘရောက်ဇာသတ်မှတ်ချက်ကို မူတည်၍ ဘာသာစကားအား သတ်မှတ်ဖော်ပြပါ"
378
+
379
+ #@ polylang
380
+ #: admin/view-languages.php:202
381
+ msgid "URL modifications"
382
+ msgstr "URL ပြုပြင်ခြင်း"
383
+
384
+ #@ polylang
385
+ #: admin/view-languages.php:259
386
+ msgid "Hide URL language information for default language"
387
+ msgstr "မူလဘာသာစကားအတွက် URL မှ ဘာသာစကား အချက်အလက်အား ဖျောက်ထားရန်"
388
+
389
+ #@ polylang
390
+ #: admin/view-languages.php:312
391
+ msgid "Media"
392
+ msgstr "မီဒီယာ"
393
+
394
+ #@ polylang
395
+ #: admin/view-languages.php:318
396
+ msgid "Activate languages and translations for media"
397
+ msgstr "မီဒီယာအတွက် ဘာသာစကားနှင့် ဘာသာပြန်များ ဖွင့်ထားရန်"
398
+
399
+ #@ polylang
400
+ #: admin/view-languages.php:365
401
+ msgid "Synchronization"
402
+ msgstr "တိုက်ရိုက်ကူးယူချိတ်ဆက်ခြင်း"
403
+
404
+ #@ polylang
405
+ #: admin/view-languages.php:326
406
+ msgid "Custom post types"
407
+ msgstr "စိတ်ကြိုက် စာမူအမျိုးအစား"
408
+
409
+ #@ polylang
410
+ #: admin/view-languages.php:339
411
+ msgid "Activate languages and translations for custom post types."
412
+ msgstr "စိတ်ကြိုက်စာမူအများအစားများအတွက် ဘာသာစကားနှင့် ဘာသာပြန်များဖွင့်ထားရန်"
413
+
414
+ #@ polylang
415
+ #: admin/view-languages.php:346
416
+ msgid "Custom taxonomies"
417
+ msgstr "စိတ်ကြိုက်ဝေါဟာရများ"
418
+
419
+ #@ polylang
420
+ #: admin/view-languages.php:359
421
+ msgid "Activate languages and translations for custom taxonomies."
422
+ msgstr "စိတ်ကြိုက်ဝေါဟာရများအတွက် ဘာသာစကားနှင့် ဘာသာပြန်များဖွင့်ရန်"
423
+
424
+ #@ polylang
425
+ #: admin/table-languages.php:54
426
+ #: admin/view-translations-media.php:24
427
+ #: admin/view-translations-media.php:62
428
+ #: admin/view-translations-post.php:10
429
+ #: admin/view-translations-post.php:39
430
+ #: admin/view-translations-term.php:18
431
+ #: admin/view-translations-term.php:78
432
+ msgid "Edit"
433
+ msgstr "ပြုပြင်"
434
+
435
+ #@ polylang
436
+ #: admin/table-languages.php:60
437
+ #: admin/table-string.php:167
438
+ msgid "Delete"
439
+ msgstr "ဖျက်"
440
+
441
+ #@ polylang
442
+ #: admin/table-languages.php:76
443
+ msgid "Code"
444
+ msgstr "ကုဒ်"
445
+
446
+ #@ polylang
447
+ #: admin/table-languages.php:78
448
+ msgid "Flag"
449
+ msgstr "အလံ"
450
+
451
+ #@ polylang
452
+ #: admin/table-languages.php:79
453
+ msgid "Posts"
454
+ msgstr "စာမူများ"
455
+
456
+ #@ polylang
457
+ #: admin/table-string.php:109
458
+ msgid "Name"
459
+ msgstr "အမည်"
460
+
461
+ #@ polylang
462
+ #: admin/table-string.php:110
463
+ msgid "String"
464
+ msgstr "စာကြောင်း"
465
+
466
+ #@ polylang
467
+ #: admin/view-translations-media.php:8
468
+ #: admin/view-translations-media.php:46
469
+ #: admin/view-translations-term.php:16
470
+ msgid "Translation"
471
+ msgstr "ဘာသာပြန်"
472
+
473
+ #@ polylang
474
+ #: admin/view-translations-media.php:33
475
+ #: admin/view-translations-media.php:70
476
+ #: admin/view-translations-post.php:44
477
+ #: admin/view-translations-term.php:61
478
+ msgid "Add new"
479
+ msgstr "အသစ်"
480
+
481
+ #@ polylang
482
+ #: admin/view-translations-post.php:5
483
+ msgid "ID of pages in other languages:"
484
+ msgstr "အခြားဘာသာစကားများဖြင့်ရေးသားထားသော စာမျက်နှာများ၏ ID :"
485
+
486
+ #@ polylang
487
+ #: admin/view-translations-post.php:5
488
+ msgid "ID of posts in other languages:"
489
+ msgstr "အခြားဘာသာစကားများဖြင့်ရေးသားထားသော စာမူများ၏ ID :"
490
+
491
+ #@ polylang
492
+ #: admin/view-translations-post.php:9
493
+ msgid "Page ID"
494
+ msgstr "စာမျက်နှာ ID"
495
+
496
+ #@ polylang
497
+ #: admin/view-translations-post.php:9
498
+ msgid "Post ID"
499
+ msgstr "စာမူ ID"
500
+
501
+ #@ polylang
502
+ #: admin/view-translations-term.php:48
503
+ msgid "No untranslated term"
504
+ msgstr "ဘာသာမပြန်ရသေးသော ဝေါဟာရမရှိ"
505
+
506
+ #@ polylang
507
+ #: include/widget-languages.php:16
508
+ msgid "Language Switcher"
509
+ msgstr "ဘာသာစကားပြောင်းခလုပ်"
510
+
511
+ #@ polylang
512
+ #: include/widget-languages.php:16
513
+ msgid "Displays a language switcher"
514
+ msgstr "ဘာသာစားပြောင်းခလုပ်ဖော်ပြရန်"
515
+
516
+ #@ polylang
517
+ #: include/widget-languages.php:100
518
+ msgid "Title:"
519
+ msgstr "ခေါင်းစဉ် :"
520
+
521
+ #@ polylang
522
+ #. translators: plugin header field 'Description'
523
+ #: polylang.php:0
524
+ msgid "Adds multilingual capability to WordPress"
525
+ msgstr "ဘာသာစကားပေါင်းစံုစနစ်အား WordPress အတွင်းထည့်သွင်းရန်"
526
+
527
+ #@ polylang
528
+ #: polylang.php:159
529
+ #, php-format
530
+ msgid "You are using WordPress %s. Polylang requires at least WordPress %s."
531
+ msgstr "သင် WordPress %s အား အသံုးပြုနေသည်။ WordPress %s အား Polylang မှ လိုအပ်ပါသည်။"
532
+
533
+ #@ polylang
534
+ #: include/upgrade.php:76
535
+ msgid "Polylang has been deactivated because you upgraded from a too old version."
536
+ msgstr "အလွန်ဟောင်းလွန်းသော ဗားရှင်းမှ အဆင့်မြှင့်တင်ခြင်းပြုလုပ်ခဲ့သဖြင့် Polylang အား ပိတ်ထားလိုက်သည်။"
537
+
538
+ #@ polylang
539
+ #: include/upgrade.php:78
540
+ #, php-format
541
+ msgid "Please upgrade first to %s before ugrading to %s."
542
+ msgstr "%sသို့ အဆင့်မြှင့်တင်ပြီးမှ %s သို့ အဆင့်မြှင့်ပါ။"
543
+
544
+ #@ polylang
545
+ #: admin/table-string.php:108
546
+ msgid "Group"
547
+ msgstr "အုပ်စု"
548
+
549
+ #@ polylang
550
+ #: admin/table-string.php:186
551
+ msgid "View all groups"
552
+ msgstr "အုပ်စုအားလံုးကိုကြည့်ရန်"
553
+
554
+ #@ polylang
555
+ #: admin/table-languages.php:59
556
+ msgid "You are about to permanently delete this language. Are you sure?"
557
+ msgstr "ဒီဘာသာစကားကို အပြီးဖျက်တော့မည်။ တကယ်သေချာရဲ့လား။"
558
+
559
+ #@ polylang
560
+ #: admin/view-languages.php:147
561
+ msgid "Use this to remove unused strings from database, for example after a plugin has been uninstalled."
562
+ msgstr "အသံုးမပြုသောစာကြောင်းများအား ဒေတာဗေ့စ်မှ ဖျက်ရန် ဒါကိုသံုးပါ။ ဥပမာ ပလပ်အင်တစ်ခုအား ဖျက်ထုတ်လိုက်သောအခါ။"
563
+
564
+ #@ polylang
565
+ #: admin/view-languages.php:314
566
+ msgid "The synchronization options allow to maintain exact same values (or translations in the case of taxonomies and page parent) of meta content between the translations of a post or page."
567
+ msgstr "တိုက်ရိုက်ကူးယူချိတ်ဆက်ခြင်းကိုသံုးခြင်းဖြင့် ဘာသာပြန်ထားသော စာမူသို့မဟုတ် စာမျက်နှာတစ်ခု၏ မီတာအကြောင်းအရာများ၏ တန်ဖိုးများ (သို့မဟုတ် စာမျက်နှာပင်မ နှင့် ဝေါဟာရအုပ်စုများတွင် ဘာသာပြန်များ)အား တူညီမှု ရှိစေရန် ထိန်းသိမ်းဆောင်ရွက်ပေးသည်။"
568
+
569
+ #@ polylang
570
+ #: admin/settings.php:75
571
+ msgid "The language code contains invalid characters"
572
+ msgstr "ဘာသာစကားကုဒ်တွင် သင့်လျှော်မှုမရှိသော အက္ခရာများပါဝင်နေသည်။"
573
+
574
+ #@ polylang
575
+ #: admin/view-languages.php:208
576
+ msgid "The language is set from content"
577
+ msgstr "အကြောင်းအရာအပေါ်မူတည်၍ ဘာသာစကားအား သတ်မှတ်ရန်"
578
+
579
+ #@ polylang
580
+ #: admin/view-languages.php:211
581
+ msgid "Posts, pages, categories and tags urls are not modified."
582
+ msgstr "စာမူများ၊ စာမျက်နှာများ၊ ကဏ္ဍများနှင့် စကားစုတွဲများအတွက် URL များအား မပြုပြင်ပါ။"
583
+
584
+ #@ polylang
585
+ #: admin/view-languages.php:217
586
+ msgid "The language is set from the directory name in pretty permalinks"
587
+ msgstr "ချိတ်ဆက်လိပ်စာတွင် တည်နေရာညွှန်းအမည်ဖြင့် ဘာသာစကားအား သတ်မှတ်ရန်"
588
+
589
+ #@ polylang
590
+ #: admin/view-languages.php:220
591
+ #: admin/view-languages.php:229
592
+ #: admin/view-languages.php:276
593
+ #: admin/view-languages.php:285
594
+ msgid "Example:"
595
+ msgstr "ဥပမာ။ ။"
596
+
597
+ #@ polylang
598
+ #: admin/view-languages.php:226
599
+ msgid "The language is set from the subdomain name in pretty permalinks"
600
+ msgstr "ချိတ်ဆက်လိပ်စာတွင် ဒိုမိန်းခွဲအမည်ဖြင့် ဘာသာစကားအား သတ်မှတ်ရန်"
601
+
602
+ #@ polylang
603
+ #: admin/view-languages.php:235
604
+ msgid "The language is set from different domains"
605
+ msgstr "မတူညီသော ဒိုမိန်းများမှ ဘာသာစကားအား သတ်မှတ်သည်"
606
+
607
+ #@ polylang
608
+ #: admin/view-languages.php:273
609
+ msgid "Remove /language/ in pretty permalinks"
610
+ msgstr "ချိတ်ဆက်လိပ်စာမှ /language/ အား ဖယ်ရှားရန်"
611
+
612
+ #@ polylang
613
+ #: admin/view-languages.php:282
614
+ msgid "Keep /language/ in pretty permalinks"
615
+ msgstr "ချိတ်ဆက်လိပ်စာတွင် /language/ အား ဖော်ပြထားရန်"
616
+
617
+ #@ polylang
618
+ #: admin/view-languages.php:297
619
+ msgid "The front page url contains the language code instead of the page name or page id"
620
+ msgstr "ပင်မစာမျက်နှာ URL တွင် စာမျက်နှာအမည် သို့မဟုတ် စာမျက်နှာ id အစား ဘာသာစကားကုဒ်ပါဝင်သည်"
621
+
622
+ #@ polylang
623
+ #: admin/admin-filters-term.php:141
624
+ #, php-format
625
+ msgid "A translation does already exist for %s"
626
+ msgstr "%s အတွက် ဘာသာပြန် ရှိပြီးဖြစ်သည်။"
627
+
628
+ #@ polylang
629
+ #: admin/view-languages.php:302
630
+ #, php-format
631
+ msgid "Example: %s instead of %s"
632
+ msgstr "ဥပမာ။ ။ %s သည် %s ၏ အစားဖြစ်သည်။"
633
+
languages/polylang-sr_RS.mo ADDED
Binary file
languages/polylang-sr_RS.po ADDED
@@ -0,0 +1,671 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Polylang v1.3\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: \n"
6
+ "PO-Revision-Date: 2014-02-25 05:40+0100\n"
7
+ "Last-Translator: \n"
8
+ "Language-Team: \n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
+ "X-Poedit-SourceCharset: utf-8\n"
14
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
15
+ "_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"
16
+ "X-Poedit-Basepath: ../\n"
17
+ "X-Textdomain-Support: yes\n"
18
+ "Language: sr_RS\n"
19
+ "X-Generator: Poedit 1.6.4\n"
20
+ "X-Poedit-SearchPath-0: .\n"
21
+
22
+ # @ polylang
23
+ #: admin/view-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 sadrži obimnu %sdokumentaciju%s (in English only). Ona sadrži "
32
+ "informacije kako da instališete vašu višejezičku stranicu i koristite je "
33
+ "svakodnevno, Pitanja i Odgovore (FAQ), kao i dokumentaciju za programere da "
34
+ "modifikuju njihove plugin-ove i teme."
35
+
36
+ # @ polylang
37
+ #: admin/view-about.php:9
38
+ #, php-format
39
+ msgid ""
40
+ "You will also find useful information in the %ssupport forum%s. However "
41
+ "don't forget to make a search before posting a new topic."
42
+ msgstr ""
43
+ "Takođe, moći ćete da nađete korisne informacije na %ssupport forum%s. "
44
+ "Nemojte da zaboravite da prvo pretražite forum pre nego što postavite "
45
+ "pitanje."
46
+
47
+ # @ polylang
48
+ #: admin/view-about.php:16
49
+ #, php-format
50
+ msgid ""
51
+ "Polylang is free of charge and is released under the same license as "
52
+ "WordPress, the %sGPL%s."
53
+ msgstr ""
54
+ "Polilang je besplatan i objavljen pod istom licencom kao WordPress, %sGPL%s."
55
+
56
+ # @ polylang
57
+ #: admin/view-about.php:22
58
+ #, php-format
59
+ msgid "If you wonder how you can help the project, just %sread this%s."
60
+ msgstr ""
61
+ "Ako se pitate kako možete pomoći ovaj projekat, samo %spročitajte ovo%s."
62
+
63
+ # @ polylang
64
+ #: admin/view-about.php:27
65
+ msgid ""
66
+ "Finally if you like this plugin or if it helps your business, donations to "
67
+ "the author are greatly appreciated."
68
+ msgstr ""
69
+ "Na kraju, ako želite ovaj plugin, ili ako vam pomaže u poslu, donacije "
70
+ "autoru će biti veoma cenjene."
71
+
72
+ # @ polylang
73
+ #: admin/admin-filters-post.php:81 admin/admin.php:76 admin/settings.php:42
74
+ #: admin/settings.php:57 include/model.php:501
75
+ msgid "Languages"
76
+ msgstr "Jezici"
77
+
78
+ # @ polylang
79
+ #: include/switcher.php:22
80
+ msgid "Displays language names"
81
+ msgstr "Prikazuje imena jezika"
82
+
83
+ # @ polylang
84
+ #: include/switcher.php:23
85
+ msgid "Displays flags"
86
+ msgstr "Prikazuje zastave"
87
+
88
+ # @ polylang
89
+ #: include/switcher.php:24
90
+ msgid "Forces link to front page"
91
+ msgstr "Forsira link ka naslovnoj stranici (home page)"
92
+
93
+ # @ polylang
94
+ #: include/switcher.php:25
95
+ msgid "Hides the current language"
96
+ msgstr "Skriva trenutni jezik"
97
+
98
+ # @ polylang
99
+ #: include/switcher.php:29
100
+ msgid "Displays as dropdown"
101
+ msgstr "Prikazuje se u opadajućem meniju"
102
+
103
+ # @ polylang
104
+ #: admin/admin.php:212
105
+ msgid "Filters content by language"
106
+ msgstr "Filteriše sadržaj prema jeziku"
107
+
108
+ # @ polylang
109
+ #: admin/admin.php:199
110
+ msgid "Show all languages"
111
+ msgstr "Prikaži sve jezike"
112
+
113
+ # @ polylang
114
+ #: admin/admin-filters-columns.php:126 admin/admin-filters-columns.php:218
115
+ msgid "Add new translation"
116
+ msgstr "Dodaj novi prevod"
117
+
118
+ # @ polylang
119
+ #: admin/admin-filters-columns.php:160 admin/admin-filters-media.php:57
120
+ #: admin/admin-filters-post.php:114 admin/admin-filters-term.php:73
121
+ #: admin/admin-filters-term.php:110 admin/view-translations-media.php:7
122
+ #: admin/view-translations-media.php:45 admin/view-translations-post.php:8
123
+ #: admin/view-translations-term.php:15 include/model.php:502
124
+ msgid "Language"
125
+ msgstr "Jezik"
126
+
127
+ # @ polylang
128
+ #: admin/admin-filters-media.php:72 admin/admin-filters-media.php:111
129
+ #: admin/table-string.php:111 admin/view-translations-media.php:42
130
+ #: admin/view-translations-term.php:6 admin/view-translations-term.php:11
131
+ msgid "Translations"
132
+ msgstr "Prevodi"
133
+
134
+ # @ polylang
135
+ #: admin/admin-filters-term.php:75 admin/admin-filters-term.php:112
136
+ msgid "Sets the language"
137
+ msgstr "Postavlja jezik"
138
+
139
+ # @ polylang
140
+ #: admin/admin-filters.php:59
141
+ msgid "The widget is displayed for:"
142
+ msgstr "Vidžet je prikazan za:"
143
+
144
+ # @ polylang
145
+ #: admin/admin-filters.php:62 include/model.php:503
146
+ msgid "All languages"
147
+ msgstr "Svi jezici"
148
+
149
+ # @ polylang
150
+ #: admin/admin-filters.php:123
151
+ msgid "Admin language"
152
+ msgstr "Jezik Administratora"
153
+
154
+ # @ polylang
155
+ #: admin/admin-filters.php:126
156
+ msgid "Wordpress default"
157
+ msgstr "Podrazumevani (originalni) Wordpress (Wordpress default)"
158
+
159
+ # @ polylang
160
+ #: admin/admin.php:116 admin/settings.php:62
161
+ msgid "Settings"
162
+ msgstr "Podešavanja"
163
+
164
+ # @ polylang
165
+ #: admin/admin-filters.php:156
166
+ msgid "Upgrading language files&#8230;"
167
+ msgstr "Nadogradnja jezičke datoteke&#8230;"
168
+
169
+ # @ polylang
170
+ #: admin/settings.php:38
171
+ msgid "About Polylang"
172
+ msgstr "O Polylangu"
173
+
174
+ # @ polylang
175
+ #: admin/settings.php:46
176
+ msgid "Strings translations"
177
+ msgstr "Prevod veza (Strings translation)"
178
+
179
+ # @ polylang
180
+ #: admin/settings.php:61
181
+ msgid "Strings translation"
182
+ msgstr "Prevod veze (Strings translation)"
183
+
184
+ # @ polylang
185
+ #: admin/settings.php:74
186
+ msgid "Enter a valid WordPress locale"
187
+ msgstr "Unesite važeći WordPress lokal (Enter a valid WordPress locale)"
188
+
189
+ # @ polylang
190
+ #: admin/settings.php:76
191
+ msgid "The language code must be unique"
192
+ msgstr "Kod jezika mora biti jedinstven"
193
+
194
+ # @ polylang
195
+ #: admin/settings.php:77
196
+ msgid "The language must have a name"
197
+ msgstr "Jezik (novi) mora imati ime"
198
+
199
+ # @ polylang
200
+ #: admin/settings.php:78
201
+ msgid ""
202
+ "The language was created, but the WordPress language file was not "
203
+ "downloaded. Please install it manually."
204
+ msgstr ""
205
+ "Jezik je kreiran, ali WordPress jezička datoteka nije preuzeta. Molimo "
206
+ "instalirajte je ručno"
207
+
208
+ # @ polylang
209
+ #: admin/settings.php:308
210
+ msgid "Widget title"
211
+ msgstr "Naslov Vidžeta (Widget title)"
212
+
213
+ # @ polylang
214
+ #: admin/settings.php:326
215
+ msgid "Taxonomies"
216
+ msgstr "Taksonomije"
217
+
218
+ # @ polylang
219
+ #: admin/settings.php:327
220
+ msgid "Custom fields"
221
+ msgstr "Prilagođena polja"
222
+
223
+ # @ polylang
224
+ #: admin/settings.php:328
225
+ msgid "Comment status"
226
+ msgstr "Status komentara"
227
+
228
+ # @ polylang
229
+ #: admin/settings.php:329
230
+ msgid "Ping status"
231
+ msgstr "Ping status"
232
+
233
+ # @ polylang
234
+ #: admin/settings.php:330
235
+ msgid "Sticky posts"
236
+ msgstr "Lepljivi članak-ci (Sticky posts)"
237
+
238
+ # @ polylang
239
+ #: admin/settings.php:331
240
+ msgid "Published date"
241
+ msgstr "Datum objave"
242
+
243
+ # @ polylang
244
+ #: admin/settings.php:332
245
+ msgid "Post format"
246
+ msgstr "Format članka"
247
+
248
+ # @ polylang
249
+ #: admin/settings.php:333
250
+ msgid "Page parent"
251
+ msgstr "Roditelj stranice "
252
+
253
+ # @ polylang
254
+ #: admin/settings.php:334
255
+ msgid "Page template"
256
+ msgstr " Izgled (šablon) stranica"
257
+
258
+ # @ polylang
259
+ #: admin/settings.php:335
260
+ msgid "Page order"
261
+ msgstr "Redosled stranica"
262
+
263
+ # @ polylang
264
+ #: admin/settings.php:336
265
+ msgid "Featured image"
266
+ msgstr "Odabrana slika (Featured image)"
267
+
268
+ # @ polylang
269
+ #: admin/view-languages.php:42
270
+ msgid "Edit language"
271
+ msgstr "Izmeni jezik"
272
+
273
+ # @ polylang
274
+ #: admin/view-languages.php:42 admin/view-languages.php:117
275
+ msgid "Add new language"
276
+ msgstr "Dodaj novi jezik"
277
+
278
+ # @ polylang
279
+ #: admin/view-languages.php:58
280
+ msgid "Choose a language"
281
+ msgstr "Izaberite jezik"
282
+
283
+ # @ polylang
284
+ #: admin/view-languages.php:72
285
+ msgid "You can choose a language in the list or directly edit it below."
286
+ msgstr "Možete odabrati neki od jezika u listi ili ga direktno izmenite ispod."
287
+
288
+ # @ polylang
289
+ #: admin/table-languages.php:74 admin/view-languages.php:76
290
+ msgid "Full name"
291
+ msgstr "Puno ime"
292
+
293
+ # @ polylang
294
+ #: admin/view-languages.php:78
295
+ msgid "The name is how it is displayed on your site (for example: English)."
296
+ msgstr "Ime je kako se prikazuju na vašem sajtu (na primer : engleski) "
297
+
298
+ # @ polylang
299
+ #: admin/table-languages.php:75 admin/view-languages.php:82
300
+ msgid "Locale"
301
+ msgstr "Lokalno"
302
+
303
+ # @ polylang
304
+ #: admin/view-languages.php:87
305
+ msgid ""
306
+ "Wordpress Locale for the language (for example: en_US). You will need to "
307
+ "install the .mo file for this language."
308
+ msgstr ""
309
+ "Wordpress (lokalni) prostor za jezik (na primer: en_US ). Moraćete da "
310
+ "instalirate Mo datoteku za taj jezik"
311
+
312
+ # @ polylang
313
+ #: admin/view-languages.php:91
314
+ msgid "Language code"
315
+ msgstr "Jezički kod"
316
+
317
+ # @ polylang
318
+ #: admin/view-languages.php:93
319
+ msgid "2-letters ISO 639-1 language code (for example: en)"
320
+ msgstr "2-slova ISO 639-1 jezički kod (na primer: en)"
321
+
322
+ # @ polylang
323
+ #: admin/view-languages.php:97
324
+ msgid "Text direction"
325
+ msgstr "Pravac teksta"
326
+
327
+ # @ polylang
328
+ #: admin/view-languages.php:101
329
+ msgid "left to right"
330
+ msgstr "Sa leva na desno"
331
+
332
+ # @ polylang
333
+ #: admin/view-languages.php:106
334
+ msgid "right to left"
335
+ msgstr "Sa desna nalevo"
336
+
337
+ # @ polylang
338
+ #: admin/view-languages.php:108
339
+ msgid "Choose the text direction for the language"
340
+ msgstr "Odaberite smer teksta za jezik"
341
+
342
+ # @ polylang
343
+ #: admin/table-languages.php:77 admin/view-languages.php:112
344
+ msgid "Order"
345
+ msgstr "Redosled"
346
+
347
+ # @ polylang
348
+ #: admin/view-languages.php:114
349
+ msgid "Position of the language in the language switcher"
350
+ msgstr "Položaj jezika u izmenjivaču redosleda jezika"
351
+
352
+ # @ polylang
353
+ #: admin/admin-nav-menu.php:52 admin/admin-nav-menu.php:90
354
+ #: admin/admin-nav-menu.php:93 admin/admin-nav-menu.php:124
355
+ #: admin/admin-nav-menu.php:181 include/upgrade.php:298
356
+ msgid "Language switcher"
357
+ msgstr "Promena jezika"
358
+
359
+ # @ polylang
360
+ #: admin/view-languages.php:143
361
+ msgid "Search translations"
362
+ msgstr "Pretraži prevode"
363
+
364
+ # @ polylang
365
+ #: admin/view-languages.php:146
366
+ msgid "Clean strings translation database"
367
+ msgstr "Očisti svojstva prevoda databaze (Clean strings translation database)"
368
+
369
+ # @ polylang
370
+ #: admin/view-languages.php:165
371
+ msgid "Default language"
372
+ msgstr "Podrazumevani jezik "
373
+
374
+ # @ polylang
375
+ #: admin/view-languages.php:180
376
+ msgid ""
377
+ "There are posts, pages, categories or tags without language set. Do you want "
378
+ "to set them all to default language ?"
379
+ msgstr ""
380
+ "Postoje članci, stranice, kategorije ili tagovi-oznake bez podešenog jezika. "
381
+ "Da li želite da ih postavite na podrazumevani jezik ?"
382
+
383
+ # @ polylang
384
+ #: admin/view-languages.php:189
385
+ msgid "Detect browser language"
386
+ msgstr "Detektuj jezik pretrživača (na pr: Google Chrome. Firefox...)"
387
+
388
+ # @ polylang
389
+ #: admin/view-languages.php:195
390
+ msgid ""
391
+ "When the front page is visited, set the language according to the browser "
392
+ "preference"
393
+ msgstr ""
394
+ "Kada je naslovna strana posetćena , podesite jezik na osnovu preferenca "
395
+ "pretraživača - brovzera (na pr: Google Chrome. Firefox...)"
396
+
397
+ # @ polylang
398
+ #: admin/view-languages.php:202
399
+ msgid "URL modifications"
400
+ msgstr "URL izmene - modifikacije"
401
+
402
+ # @ polylang
403
+ #: admin/view-languages.php:259
404
+ msgid "Hide URL language information for default language"
405
+ msgstr "Sakrij Informacije URL jezika za podrazumevani jezik"
406
+
407
+ # @ polylang
408
+ #: admin/view-languages.php:312
409
+ msgid "Media"
410
+ msgstr "Mediji"
411
+
412
+ # @ polylang
413
+ #: admin/view-languages.php:318
414
+ msgid "Activate languages and translations for media"
415
+ msgstr "Aktivirajte jezike i prevode za medije"
416
+
417
+ # @ polylang
418
+ #: admin/view-languages.php:365
419
+ msgid "Synchronization"
420
+ msgstr "Sinhronizacija"
421
+
422
+ # @ polylang
423
+ #: admin/view-languages.php:326
424
+ msgid "Custom post types"
425
+ msgstr "Izmenjeni članci"
426
+
427
+ # @ polylang
428
+ #: admin/view-languages.php:339
429
+ msgid "Activate languages and translations for custom post types."
430
+ msgstr ""
431
+ "Aktivirajte jezike i prevode za izmenjene tipove članka. (Activate languages "
432
+ "and translations for custom post types.)"
433
+
434
+ # @ polylang
435
+ #: admin/view-languages.php:346
436
+ msgid "Custom taxonomies"
437
+ msgstr "Prilagođene nomenklature (Custom taxonomies)"
438
+
439
+ # @ polylang
440
+ #: admin/view-languages.php:359
441
+ msgid "Activate languages and translations for custom taxonomies."
442
+ msgstr ""
443
+ "Aktivirajte jezike i prevode za prilagođene nomenklature. (Activate "
444
+ "languages and translations for custom taxonomies.)"
445
+
446
+ # @ polylang
447
+ #: admin/table-languages.php:54 admin/view-translations-media.php:24
448
+ #: admin/view-translations-media.php:62 admin/view-translations-post.php:10
449
+ #: admin/view-translations-post.php:39 admin/view-translations-term.php:18
450
+ #: admin/view-translations-term.php:78
451
+ msgid "Edit"
452
+ msgstr "Izmeni"
453
+
454
+ # @ polylang
455
+ #: admin/table-languages.php:60 admin/table-string.php:167
456
+ msgid "Delete"
457
+ msgstr "Obriši"
458
+
459
+ # @ polylang
460
+ #: admin/table-languages.php:76
461
+ msgid "Code"
462
+ msgstr "Kod"
463
+
464
+ # @ polylang
465
+ #: admin/table-languages.php:78
466
+ msgid "Flag"
467
+ msgstr "Zastava"
468
+
469
+ # @ polylang
470
+ #: admin/table-languages.php:79
471
+ msgid "Posts"
472
+ msgstr "Članak"
473
+
474
+ # @ polylang
475
+ #: admin/table-string.php:109
476
+ msgid "Name"
477
+ msgstr "Ime"
478
+
479
+ # @ polylang
480
+ #: admin/table-string.php:110
481
+ msgid "String"
482
+ msgstr "Veza"
483
+
484
+ # @ polylang
485
+ #: admin/view-translations-media.php:8 admin/view-translations-media.php:46
486
+ #: admin/view-translations-term.php:16
487
+ msgid "Translation"
488
+ msgstr "Prevod"
489
+
490
+ # @ polylang
491
+ #: admin/view-translations-media.php:33 admin/view-translations-media.php:70
492
+ #: admin/view-translations-post.php:44 admin/view-translations-term.php:61
493
+ msgid "Add new"
494
+ msgstr "Dodaj nov"
495
+
496
+ # @ polylang
497
+ #: admin/view-translations-post.php:5
498
+ msgid "ID of pages in other languages:"
499
+ msgstr "ID stranica drugih jezika"
500
+
501
+ # @ polylang
502
+ #: admin/view-translations-post.php:5
503
+ msgid "ID of posts in other languages:"
504
+ msgstr "ID člankova drugih jezika"
505
+
506
+ # @ polylang
507
+ #: admin/view-translations-post.php:9
508
+ msgid "Page ID"
509
+ msgstr "ID Stranice"
510
+
511
+ # @ polylang
512
+ #: admin/view-translations-post.php:9
513
+ msgid "Post ID"
514
+ msgstr "ID članka"
515
+
516
+ # @ polylang
517
+ #: admin/view-translations-term.php:48
518
+ msgid "No untranslated term"
519
+ msgstr "Nema termina kiji nisu prevedeni (No untranslated term)"
520
+
521
+ # @ polylang
522
+ #: include/widget-languages.php:16
523
+ msgid "Language Switcher"
524
+ msgstr "Izmena/Promena jezika"
525
+
526
+ # @ polylang
527
+ #: include/widget-languages.php:16
528
+ msgid "Displays a language switcher"
529
+ msgstr "Prikazuje izmenu jezika (Displays a language switcher)"
530
+
531
+ # @ polylang
532
+ #: include/widget-languages.php:100
533
+ msgid "Title:"
534
+ msgstr "Naslov:"
535
+
536
+ # @ polylang
537
+ #. translators: plugin header field 'Description'
538
+ #: polylang.php:0
539
+ msgid "Adds multilingual capability to WordPress"
540
+ msgstr "Dodaje višejezičku sposobnost za WordPress"
541
+
542
+ # @ polylang
543
+ #: polylang.php:159
544
+ #, php-format
545
+ msgid "You are using WordPress %s. Polylang requires at least WordPress %s."
546
+ msgstr "Vi koristite WordPress %s. Polylang zahteva najmanje WordPress %s."
547
+
548
+ # @ polylang
549
+ #: include/upgrade.php:76
550
+ msgid ""
551
+ "Polylang has been deactivated because you upgraded from a too old version."
552
+ msgstr "Polilang je deaktiviran jer ste nadogradili sa veoma stare verzije ."
553
+
554
+ # @ polylang
555
+ #: include/upgrade.php:78
556
+ #, php-format
557
+ msgid "Please upgrade first to %s before ugrading to %s."
558
+ msgstr "Molimo nadogradite prvo na %s pre nego nadogradite %s."
559
+
560
+ # @ polylang
561
+ #: admin/table-string.php:108
562
+ msgid "Group"
563
+ msgstr "Grupa"
564
+
565
+ # @ polylang
566
+ #: admin/table-string.php:186
567
+ msgid "View all groups"
568
+ msgstr "Pogledaj sve grupe"
569
+
570
+ # @ polylang
571
+ #: admin/table-languages.php:59
572
+ msgid "You are about to permanently delete this language. Are you sure?"
573
+ msgstr "Vi hoćete da trajno izbrišete ovaj jezik. Da li ste sigurni?"
574
+
575
+ # @ polylang
576
+ #: admin/view-languages.php:147
577
+ msgid ""
578
+ "Use this to remove unused strings from database, for example after a plugin "
579
+ "has been uninstalled."
580
+ msgstr ""
581
+ "Koristite ovo za uklanjanje neiskorišćenih žica iz baze podataka, na primer "
582
+ "kada je plugin deinstaliran. (Use this to remove unused strings from "
583
+ "database, for example after a plugin has been uninstalled.)"
584
+
585
+ # @ polylang
586
+ #: admin/view-languages.php:314
587
+ msgid ""
588
+ "The synchronization options allow to maintain exact same values (or "
589
+ "translations in the case of taxonomies and page parent) of meta content "
590
+ "between the translations of a post or page."
591
+ msgstr ""
592
+ "Opcije sinhronizacije omogućavaju da se održe potpuno iste vrednosti (ili "
593
+ "prevode u slučaju nomenklaturama i stranice roditelja ) od meta sadržaja "
594
+ "između prevoda članka ili stranice."
595
+
596
+ # @ polylang
597
+ #: admin/settings.php:75
598
+ msgid "The language code contains invalid characters"
599
+ msgstr "Jezički kod sadrži nevažeće znakove/slova"
600
+
601
+ # @ polylang
602
+ #: admin/view-languages.php:208
603
+ msgid "The language is set from content"
604
+ msgstr "Jezik je postavljen iz sadržaja (The language is set from content)"
605
+
606
+ # @ polylang
607
+ #: admin/view-languages.php:211
608
+ msgid "Posts, pages, categories and tags urls are not modified."
609
+ msgstr ""
610
+ "Članci, stranice, kategorije i tagovi nisu modifikovani (Posts, pages, "
611
+ "categories and tags urls are not modified.)"
612
+
613
+ # @ polylang
614
+ #: admin/view-languages.php:217
615
+ msgid "The language is set from the directory name in pretty permalinks"
616
+ msgstr ""
617
+ "Jezik je podešen u imenu direktorijuma u lepim permalinkovima (The language "
618
+ "is set from the directory name in pretty permalinks)"
619
+
620
+ # @ polylang
621
+ #: admin/view-languages.php:220 admin/view-languages.php:229
622
+ #: admin/view-languages.php:276 admin/view-languages.php:285
623
+ msgid "Example:"
624
+ msgstr "Primer:"
625
+
626
+ # @ polylang
627
+ #: admin/view-languages.php:226
628
+ msgid "The language is set from the subdomain name in pretty permalinks"
629
+ msgstr ""
630
+ "Jezik je namešten od sub-imena u lepim permalinkovima (The language is set "
631
+ "from the subdomain name in pretty permalinks)"
632
+
633
+ # @ polylang
634
+ #: admin/view-languages.php:235
635
+ msgid "The language is set from different domains"
636
+ msgstr ""
637
+ "Jezik je namešten za različito web ime (The language is set from different "
638
+ "domains )"
639
+
640
+ # @ polylang
641
+ #: admin/view-languages.php:273
642
+ msgid "Remove /language/ in pretty permalinks"
643
+ msgstr ""
644
+ "Uklonite /ljezik/ u lepim permalinkovima ( Remove /language/ in pretty "
645
+ "permalinks) "
646
+
647
+ # @ polylang
648
+ #: admin/view-languages.php:282
649
+ msgid "Keep /language/ in pretty permalinks"
650
+ msgstr "Sačuvajte /jezik/ u lepim permalinkovima (in pretty permalinks)"
651
+
652
+ # @ polylang
653
+ #: admin/view-languages.php:297
654
+ msgid ""
655
+ "The front page url contains the language code instead of the page name or "
656
+ "page id"
657
+ msgstr ""
658
+ "Url naslovne stranice sadrži jezičkii kod umesto imena stranice ili id "
659
+ "stranice"
660
+
661
+ # @ polylang
662
+ #: admin/admin-filters-term.php:141
663
+ #, php-format
664
+ msgid "A translation does already exist for %s"
665
+ msgstr "Prevod već postoji za %s"
666
+
667
+ # @ polylang
668
+ #: admin/view-languages.php:302
669
+ #, php-format
670
+ msgid "Example: %s instead of %s"
671
+ msgstr "Primer: %s umesto %s"
polylang.php CHANGED
@@ -2,7 +2,7 @@
2
  /*
3
  Plugin Name: Polylang
4
  Plugin URI: http://polylang.wordpress.com/
5
- Version: 1.4.2
6
  Author: Frédéric 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.4.2');
33
  define('PLL_MIN_WP_VERSION', '3.5');
34
 
35
  define('POLYLANG_BASENAME', plugin_basename(__FILE__)); // plugin name as known by WP
2
  /*
3
  Plugin Name: Polylang
4
  Plugin URI: http://polylang.wordpress.com/
5
+ Version: 1.4.3
6
  Author: Frédéric Demarle
7
  Description: Adds multilingual capability to WordPress
8
  Text Domain: polylang
29
  *
30
  */
31
 
32
+ define('POLYLANG_VERSION', '1.4.3');
33
  define('PLL_MIN_WP_VERSION', '3.5');
34
 
35
  define('POLYLANG_BASENAME', plugin_basename(__FILE__)); // plugin name as known by WP
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, international, localization
5
  Requires at least: 3.5
6
  Tested up to: 3.8
7
- Stable tag: 1.4.2
8
  License: GPLv2 or later
9
 
10
  Polylang adds multilingual content management support to WordPress.
@@ -24,7 +24,7 @@ Polylang allows you to create a bilingual or multilingual WordPress site. You wr
24
 
25
  = Translators =
26
 
27
- The plugin admin interface is currently available in 32 languages: English, French, German by [Christian Ries](http://www.singbyfoot.lu), Russian by [yoyurec](http://yoyurec.in.ua) and unostar, Greek by [theodotos](http://www.ubuntucy.org), Dutch by [AlbertGn](http://wordpress.org/support/profile/albertgn), Hebrew by [ArielK](http://www.arielk.net), Polish by [Peter Paciorkiewicz](http://www.paciorkiewicz.pl) and [Bartosz](http://www.dfactory.eu/), Latvian by [@AndyDeGroo](http://twitter.com/AndyDeGroo), Italian by [Luca Barbetti](http://wordpress.org/support/profile/lucabarbetti), Danish by [Compute](http://wordpress.org/support/profile/compute), Spanish by Curro, Portuguese by [Vitor Carvalho](http://vcarvalho.com/), Lithuanian by [Naglis Jonaitis](http://najo.lt/), Turkish by [darchws](http://darch.ws/), Finnish by [Jani Alha](http://www.wysiwyg.fi), Bulgarian by [pavelsof](http://wordpress.org/support/profile/pavelsof), Belarusian by [Alexander Markevitch](http://fourfeathers.by/), Afrikaans by [Kobus Joubert](http://translate3d.com/), Hungarian by Csaba Erdei, Norwegian by [Tom Boersma](http://www.oransje.com/), Slovak by [Branco (WebHostingGeeks.com)](http://webhostinggeeks.com/user-reviews/), Swedish by [matsii](http://wordpress.org/support/profile/matsii) and [Jon Täng](http://jontang.se), Catalan by [Núria Martínez Berenguer](http://www.linkedin.com/profile/view?id=127867004&trk=nav_responsive_tab_profile&locale=en_US), Ukrainian by [cmd soft](http://www.cmd-soft.com/), Estonian by [Ahto Naris](http://profiles.wordpress.org/ahtonaris/), Venetian by Michele Brunelli, simplified Chinese by [Changmeng Hu](http://www.wpdaxue.com), Indonesian by [ajoull](http://www.ajoull.com/), Arabic by [Anas Sulaiman](http://ahs.pw/), Traditional Chinese by [香腸](http://sofree.cc/), Czech by [Přemysl Karbula](http://www.premyslkarbula.cz)
28
 
29
  = Credits =
30
 
@@ -69,6 +69,16 @@ Polylang 1.2 introduced major internal changes. More than ever, make a database
69
 
70
  == Changelog ==
71
 
 
 
 
 
 
 
 
 
 
 
72
  = 1.4.2 (2014-02-24) =
73
 
74
  * Add: check multiple post types in PLL_Model::count_posts
@@ -88,7 +98,6 @@ Polylang 1.2 introduced major internal changes. More than ever, make a database
88
  * Fix: notice when using taxonomies in wpml-config.xml
89
  * Fix: incorrect post format link
90
  * Fix: Twenty Fourteen Ephemera widget strings are not translated
91
- * Fix: Bad gateway experienced by users hosted by wpengine.com
92
 
93
  = 1.4 (2014-01-22) =
94
 
4
  Tags: multilingual, bilingual, translate, translation, language, multilanguage, international, localization
5
  Requires at least: 3.5
6
  Tested up to: 3.8
7
+ Stable tag: 1.4.3
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 34 languages: English, French, German by [Christian Ries](http://www.singbyfoot.lu), Russian by [yoyurec](http://yoyurec.in.ua) and unostar, Greek by [theodotos](http://www.ubuntucy.org), Dutch by [AlbertGn](http://wordpress.org/support/profile/albertgn), Hebrew by [ArielK](http://www.arielk.net), Polish by [Peter Paciorkiewicz](http://www.paciorkiewicz.pl) and [Bartosz](http://www.dfactory.eu/), Latvian by [@AndyDeGroo](http://twitter.com/AndyDeGroo), Italian by [Luca Barbetti](http://wordpress.org/support/profile/lucabarbetti), Danish by [Compute](http://wordpress.org/support/profile/compute), Spanish by Curro, Portuguese by [Vitor Carvalho](http://vcarvalho.com/), Lithuanian by [Naglis Jonaitis](http://najo.lt/), Turkish by [darchws](http://darch.ws/), Finnish by [Jani Alha](http://www.wysiwyg.fi), Bulgarian by [pavelsof](http://wordpress.org/support/profile/pavelsof), Belarusian by [Alexander Markevitch](http://fourfeathers.by/), Afrikaans by [Kobus Joubert](http://translate3d.com/), Hungarian by Csaba Erdei, Norwegian by [Tom Boersma](http://www.oransje.com/), Slovak by [Branco (WebHostingGeeks.com)](http://webhostinggeeks.com/user-reviews/), Swedish by [matsii](http://wordpress.org/support/profile/matsii) and [Jon Täng](http://jontang.se), Catalan by [Núria Martínez Berenguer](http://www.linkedin.com/profile/view?id=127867004&trk=nav_responsive_tab_profile&locale=en_US), Ukrainian by [cmd soft](http://www.cmd-soft.com/), Estonian by [Ahto Naris](http://profiles.wordpress.org/ahtonaris/), Venetian by Michele Brunelli, simplified Chinese by [Changmeng Hu](http://www.wpdaxue.com), Indonesian by [ajoull](http://www.ajoull.com/), Arabic by [Anas Sulaiman](http://ahs.pw/), Traditional Chinese by [香腸](http://sofree.cc/), Czech by [Přemysl Karbula](http://www.premyslkarbula.cz), Serbian by Sinisa, Myanmar by Sithu Thwin
28
 
29
  = Credits =
30
 
69
 
70
  == Changelog ==
71
 
72
+ = 1.4.3 (2014-03-22) =
73
+
74
+ * Add: Serbian translation contributed by Sinisa
75
+ * Add: Myanmar translation contributed by Sithu Thwin
76
+ * Fix: comment form redirects to wp-admin when using multiple domains or subdomains.
77
+ * Fix: fatal error with old versions of PHP (tested on PHP 5.2.4)
78
+ * Fix: Bad gateway experienced by users hosted by wpengine.com
79
+ * Fix: links got from tiny MCE link button are filtered with admin language filter instead of current post language
80
+ * Fix: possibly wrong redirection in check_language_code_in_url when using domains or subdomains
81
+
82
  = 1.4.2 (2014-02-24) =
83
 
84
  * Add: check multiple post types in PLL_Model::count_posts
98
  * Fix: notice when using taxonomies in wpml-config.xml
99
  * Fix: incorrect post format link
100
  * Fix: Twenty Fourteen Ephemera widget strings are not translated
 
101
 
102
  = 1.4 (2014-01-22) =
103