WPGlobus – Multilingual Everything! - Version 2.7.9

Version Description

  • (Vendor/ACF) Added the current language name for the ACF fields metabox in the Builder mode.
  • (Vendor/ACF) Added filtering of the field array before it is updated.
  • (Core) Added language switcher to the admin bar for the posts in the Builder mode.
  • (POMO) Ukrainian translations completed (thanks go to Jack Willson)
Download this release

Release Info

Developer tivnet
Plugin Icon 128x128 WPGlobus – Multilingual Everything!
Version 2.7.9
Comparing to
See all releases

Code changes from version 2.7.8 to 2.7.9

Files changed (44) hide show
  1. includes/class-wpglobus.php +14 -6
  2. includes/js/wpglobus-vendor-acf.js +17 -1
  3. includes/js/wpglobus-vendor-acf.min.js +1 -1
  4. includes/vendor/acf/class-wpglobus-vendor-acf.php +36 -2
  5. languages/wpglobus-ar.po +2 -2
  6. languages/wpglobus-be.po +2 -2
  7. languages/wpglobus-bg_BG.po +2 -2
  8. languages/wpglobus-de_CH.po +2 -2
  9. languages/wpglobus-de_DE.po +2 -2
  10. languages/wpglobus-el.po +2 -2
  11. languages/wpglobus-en_AU.po +2 -2
  12. languages/wpglobus-en_CA.po +2 -2
  13. languages/wpglobus-en_GB.po +2 -2
  14. languages/wpglobus-en_NZ.po +2 -2
  15. languages/wpglobus-en_US.po +2 -2
  16. languages/wpglobus-en_ZA.po +2 -2
  17. languages/wpglobus-es_AR.po +2 -2
  18. languages/wpglobus-es_CL.po +2 -2
  19. languages/wpglobus-es_CO.po +2 -2
  20. languages/wpglobus-es_CR.po +2 -2
  21. languages/wpglobus-es_ES.po +2 -2
  22. languages/wpglobus-es_GT.po +2 -2
  23. languages/wpglobus-es_MX.po +2 -2
  24. languages/wpglobus-es_PE.po +2 -2
  25. languages/wpglobus-es_PR.po +2 -2
  26. languages/wpglobus-es_VE.po +2 -2
  27. languages/wpglobus-et.po +2 -2
  28. languages/wpglobus-fr_BE.po +2 -2
  29. languages/wpglobus-fr_CA.po +2 -2
  30. languages/wpglobus-fr_FR.po +2 -2
  31. languages/wpglobus-id_ID.po +2 -2
  32. languages/wpglobus-ko_KR.po +2 -2
  33. languages/wpglobus-pl_PL.po +2 -2
  34. languages/wpglobus-pt_BR.po +2 -2
  35. languages/wpglobus-pt_PT.po +2 -2
  36. languages/wpglobus-ro_RO.po +2 -2
  37. languages/wpglobus-ru_RU.po +2 -2
  38. languages/wpglobus-sv_SE.po +2 -2
  39. languages/wpglobus-tr_TR.po +2 -2
  40. languages/wpglobus-uk.mo +0 -0
  41. languages/wpglobus-uk.po +61 -25
  42. languages/wpglobus.pot +350 -3
  43. readme.txt +7 -4
  44. wpglobus.php +2 -2
includes/class-wpglobus.php CHANGED
@@ -517,6 +517,15 @@ class WPGlobus {
517
  'on__admin_title',
518
  ), 10, 2 );
519
 
 
 
 
 
 
 
 
 
 
520
  /**
521
  * @since 1.9.17
522
  */
@@ -660,10 +669,11 @@ class WPGlobus {
660
  'on_admin_menu',
661
  ), 10 );
662
 
663
- add_action( 'admin_bar_menu', array(
664
- $this,
665
- 'on_admin_bar_menu',
666
- ) );
 
667
 
668
  /**
669
  * @scope admin
@@ -4145,10 +4155,8 @@ class WPGlobus {
4145
  * @param WP_Admin_Bar $wp_admin_bar
4146
  */
4147
  public function on_admin_bar_menu( WP_Admin_Bar $wp_admin_bar ) {
4148
-
4149
  require_once dirname( __FILE__ ) . '/admin/class-wpglobus-admin-bar-menu.php';
4150
  WPGlobus_Admin_Bar_Menu::construct($wp_admin_bar);
4151
-
4152
  }
4153
 
4154
  /**
517
  'on__admin_title',
518
  ), 10, 2 );
519
 
520
+ /**
521
+ * Moved from below.
522
+ * @since 2.7.9
523
+ */
524
+ add_action( 'admin_bar_menu', array(
525
+ $this,
526
+ 'on_admin_bar_menu',
527
+ ) );
528
+
529
  /**
530
  * @since 1.9.17
531
  */
669
  'on_admin_menu',
670
  ), 10 );
671
 
672
+ // @since 2.7.9 moved above
673
+ //add_action( 'admin_bar_menu', array(
674
+ //$this,
675
+ //'on_admin_bar_menu',
676
+ //) );
677
 
678
  /**
679
  * @scope admin
4155
  * @param WP_Admin_Bar $wp_admin_bar
4156
  */
4157
  public function on_admin_bar_menu( WP_Admin_Bar $wp_admin_bar ) {
 
4158
  require_once dirname( __FILE__ ) . '/admin/class-wpglobus-admin-bar-menu.php';
4159
  WPGlobus_Admin_Bar_Menu::construct($wp_admin_bar);
 
4160
  }
4161
 
4162
  /**
includes/js/wpglobus-vendor-acf.js CHANGED
@@ -30,10 +30,11 @@ jQuery(document).ready(function ($) {
30
  vendorAcfFields: null,
31
  option: {},
32
  init: function (args) {
33
-
34
  // @since 2.6.6
35
  if ( api.isBuilder() && 'undefined' === typeof WPGlobusDialogApp ) {
36
  api.setTranslatableClass();
 
 
37
  return;
38
  }
39
 
@@ -53,6 +54,21 @@ jQuery(document).ready(function ($) {
53
  }
54
  api.attachListeners();
55
  },
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
56
  setTranslatableClass: function(){
57
  // @since 2.7.6
58
  setTimeout( function(){
30
  vendorAcfFields: null,
31
  option: {},
32
  init: function (args) {
 
33
  // @since 2.6.6
34
  if ( api.isBuilder() && 'undefined' === typeof WPGlobusDialogApp ) {
35
  api.setTranslatableClass();
36
+ // @since 2.7.9
37
+ api.setAcfPostboxTitle();
38
  return;
39
  }
40
 
54
  }
55
  api.attachListeners();
56
  },
57
+ setAcfPostboxTitle: function(){
58
+ // @since 2.7.9
59
+ if ( 'undefined' === typeof WPGlobusCoreData ) {
60
+ return;
61
+ }
62
+ setTimeout(function(){
63
+ var $postBoxes = $('.acf-postbox');
64
+ if ( $postBoxes.length > 0 ) {
65
+ $.each($postBoxes, function(i,elem){
66
+ var t = $(elem).find('h2.hndle').text();
67
+ $(elem).find('h2.hndle').text(t+' ('+WPGlobusCoreData.en_language_name[WPGlobusAcf.language]+')');
68
+ });
69
+ }
70
+ }, 1000);
71
+ },
72
  setTranslatableClass: function(){
73
  // @since 2.7.6
74
  setTimeout( function(){
includes/js/wpglobus-vendor-acf.min.js CHANGED
@@ -1 +1 @@
1
- jQuery(document).ready(function(l){"use strict";var s;"undefined"!=typeof WPGlobusAcf&&(s={parseBool:function(e){return!/^(false|0)$/i.test(e)&&!!e},isPro:function(){return s.parseBool(WPGlobusAcf.pro)},isBuilder:function(){return s.parseBool(WPGlobusAcf.builder_id)},vendorAcfFields:null,option:{},init:function(e){s.isBuilder()&&"undefined"==typeof WPGlobusDialogApp?s.setTranslatableClass():(s.option=l.extend(s.option,e),s.option.pro?(s.startAcf(".acf-field"),s.runActions()):(0<l(".acf_postbox .field").length&&s.startAcf(".acf_postbox .field"),0<l(".acf-postbox .acf-field").length&&s.startAcf(".acf-postbox .acf-field")),s.attachListeners())},setTranslatableClass:function(){setTimeout(function(){l.each(s.getVendorAcfFields(),function(e,i){l("#"+i).addClass(WPGlobusAcf.translatableClass)})},500)},runActions:function(){void 0!==WPGlobusAcf.actions.fixTextFields&&WPGlobusAcf.actions.fixTextFields&&s.fixTextFields()},fixTextFields:function(){l.each(WPGlobusAcf.fields,function(e,i){i=l('input[type="text"]#'+i);1!=i.length||1==(i=i.parent(".acf-input-wrap")).length&&i.hasClass("acf-input-wrap")&&i.css("height","auto")})},isDisabledField:function(t){var n=!1,s=l("#"+t).parents(".acf-field").attr("id");return void 0!==s&&l.each(WPGlobusAcf.disabledFields,function(e,i){i==s&&(n=!0)}),n||(l.each(WPGlobusAcf.disabledFields,function(e,i){i==t&&(n=!0)}),n)},startAcf:function(e){l(".acf_postbox").parents("#postbox-container-2").length,l(e).each(function(){var e,i,t=l(this);return t.hasClass("field_type-textarea")||t.hasClass("acf-field-textarea")?(e=t.find("textarea").attr("id"),s.registerField(e),!!s.isDisabledField(e)||(!s.isVendorAcfField(e)||(i=l("#"+e).height()+20,void WPGlobusDialogApp.addElement({id:e,dialogTitle:"Edit ACF field",style:"width:97%;float:left;",styleTextareaWrapper:"height:"+i+"px;",sbTitle:"Click for edit",onChangeClass:"wpglobus-on-change-acf-field"})))):t.hasClass("field_type-text")||t.hasClass("acf-field-text")?(e=t.find("input").attr("id"),s.registerField(e),!!s.isDisabledField(e)||(!s.isVendorAcfField(e)||void WPGlobusDialogApp.addElement({id:e,dialogTitle:"Edit ACF field",style:"width:97%;float:left;",sbTitle:"Click for edit",onChangeClass:"wpglobus-on-change-acf-field"}))):void 0})},registerField:function(e,i){var t=!1;return void 0!==e&&-1==e.indexOf("acfcloneindex")&&(s.isRegisteredField(e)||(t=!0,WPGlobusAcf.fields.push(e))),!!t&&e},getFields:function(){return WPGlobusAcf.fields},getDisabledFields:function(){return WPGlobusAcf.disabledFields},unificationField:function(e){return e=/acf\[/.test(e)?(e=e.replace(/\[/g,"-")).replace(/]/g,""):e},getVendorAcfFields:function(){if(null===s.vendorAcfFields){if("undefined"==typeof WPGlobusVendorAcfFields||""==WPGlobusVendorAcfFields)return s.vendorAcfFields=!1,s.vendorAcfFields;s.vendorAcfFields=WPGlobusVendorAcfFields.split(",")}return s.vendorAcfFields},isVendorAcfField:function(t){if(void 0===t)return!1;t=s.unificationField(t);var n=!1,e=s.getVendorAcfFields();return e&&l.each(e,function(e,i){if(i===t)return!(n=!0)}),n},isRegisteredField:function(i){var t=!1;return s.getFields().forEach(function(e){if(e==i)return!(t=!0)}),t},attachListeners:function(){var i;s.option.pro&&(i=this,acf.add_action&&acf.add_action("append",function(e){i.replaceCloneIndex(e)}))},replaceCloneIndex:function(e){var i=e.data("id");e.find('[data-source-id*="acfcloneindex"]').each(function(){l(this).attr("data-source-id",l(this).attr("data-source-id").replace("acfcloneindex",i))})}},(WPGlobusAcf=l.extend({},WPGlobusAcf,s)).init({pro:WPGlobusAcf.pro}))});
1
+ jQuery(document).ready(function(s){"use strict";var o;"undefined"!=typeof WPGlobusAcf&&(o={parseBool:function(e){return!/^(false|0)$/i.test(e)&&!!e},isPro:function(){return o.parseBool(WPGlobusAcf.pro)},isBuilder:function(){return o.parseBool(WPGlobusAcf.builder_id)},vendorAcfFields:null,option:{},init:function(e){if(o.isBuilder()&&"undefined"==typeof WPGlobusDialogApp)return o.setTranslatableClass(),void o.setAcfPostboxTitle();o.option=s.extend(o.option,e),o.option.pro?(o.startAcf(".acf-field"),o.runActions()):(0<s(".acf_postbox .field").length&&o.startAcf(".acf_postbox .field"),0<s(".acf-postbox .acf-field").length&&o.startAcf(".acf-postbox .acf-field")),o.attachListeners()},setAcfPostboxTitle:function(){"undefined"!=typeof WPGlobusCoreData&&setTimeout(function(){var e=s(".acf-postbox");0<e.length&&s.each(e,function(e,i){var t=s(i).find("h2.hndle").text();s(i).find("h2.hndle").text(t+" ("+WPGlobusCoreData.en_language_name[WPGlobusAcf.language]+")")})},1e3)},setTranslatableClass:function(){setTimeout(function(){s.each(o.getVendorAcfFields(),function(e,i){s("#"+i).addClass(WPGlobusAcf.translatableClass)})},500)},runActions:function(){void 0!==WPGlobusAcf.actions.fixTextFields&&WPGlobusAcf.actions.fixTextFields&&o.fixTextFields()},fixTextFields:function(){s.each(WPGlobusAcf.fields,function(e,i){i=s('input[type="text"]#'+i);1!=i.length||1==(i=i.parent(".acf-input-wrap")).length&&i.hasClass("acf-input-wrap")&&i.css("height","auto")})},isDisabledField:function(t){var n=!1,o=s("#"+t).parents(".acf-field").attr("id");return void 0!==o&&s.each(WPGlobusAcf.disabledFields,function(e,i){i==o&&(n=!0)}),n||(s.each(WPGlobusAcf.disabledFields,function(e,i){i==t&&(n=!0)}),n)},startAcf:function(e){s(".acf_postbox").parents("#postbox-container-2").length,s(e).each(function(){var e,i,t=s(this);return t.hasClass("field_type-textarea")||t.hasClass("acf-field-textarea")?(e=t.find("textarea").attr("id"),o.registerField(e),!!o.isDisabledField(e)||(!o.isVendorAcfField(e)||(i=s("#"+e).height()+20,void WPGlobusDialogApp.addElement({id:e,dialogTitle:"Edit ACF field",style:"width:97%;float:left;",styleTextareaWrapper:"height:"+i+"px;",sbTitle:"Click for edit",onChangeClass:"wpglobus-on-change-acf-field"})))):t.hasClass("field_type-text")||t.hasClass("acf-field-text")?(e=t.find("input").attr("id"),o.registerField(e),!!o.isDisabledField(e)||(!o.isVendorAcfField(e)||void WPGlobusDialogApp.addElement({id:e,dialogTitle:"Edit ACF field",style:"width:97%;float:left;",sbTitle:"Click for edit",onChangeClass:"wpglobus-on-change-acf-field"}))):void 0})},registerField:function(e,i){var t=!1;return void 0!==e&&-1==e.indexOf("acfcloneindex")&&(o.isRegisteredField(e)||(t=!0,WPGlobusAcf.fields.push(e))),!!t&&e},getFields:function(){return WPGlobusAcf.fields},getDisabledFields:function(){return WPGlobusAcf.disabledFields},unificationField:function(e){return e=/acf\[/.test(e)?(e=e.replace(/\[/g,"-")).replace(/]/g,""):e},getVendorAcfFields:function(){if(null===o.vendorAcfFields){if("undefined"==typeof WPGlobusVendorAcfFields||""==WPGlobusVendorAcfFields)return o.vendorAcfFields=!1,o.vendorAcfFields;o.vendorAcfFields=WPGlobusVendorAcfFields.split(",")}return o.vendorAcfFields},isVendorAcfField:function(t){if(void 0===t)return!1;t=o.unificationField(t);var n=!1,e=o.getVendorAcfFields();return e&&s.each(e,function(e,i){if(i===t)return!(n=!0)}),n},isRegisteredField:function(i){var t=!1;return o.getFields().forEach(function(e){if(e==i)return!(t=!0)}),t},attachListeners:function(){var i;o.option.pro&&(i=this,acf.add_action&&acf.add_action("append",function(e){i.replaceCloneIndex(e)}))},replaceCloneIndex:function(e){var i=e.data("id");e.find('[data-source-id*="acfcloneindex"]').each(function(){s(this).attr("data-source-id",s(this).attr("data-source-id").replace("acfcloneindex",i))})}},(WPGlobusAcf=s.extend({},WPGlobusAcf,o)).init({pro:WPGlobusAcf.pro}))});
includes/vendor/acf/class-wpglobus-vendor-acf.php CHANGED
@@ -34,7 +34,7 @@ if ( ! class_exists( 'WPGlobus_Vendor_Acf' ) ) :
34
  const MULTILINGUAL = 'multilingual';
35
 
36
  /**
37
- * Multilingual field name.
38
  */
39
  const MULTILINGUAL_FIELD_NAME = 'wpglobus_' . self::MULTILINGUAL . '_field';
40
 
@@ -139,6 +139,20 @@ if ( ! class_exists( 'WPGlobus_Vendor_Acf' ) ) :
139
  );
140
  // */
141
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
142
  /**
143
  * Filter on post, page and CPT except Edit Field Group page.
144
  *
@@ -358,7 +372,26 @@ if ( ! class_exists( 'WPGlobus_Vendor_Acf' ) ) :
358
 
359
  return $style;
360
  }
361
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
362
  /**
363
  * Callback for admin footer.
364
  *
@@ -451,6 +484,7 @@ if ( ! class_exists( 'WPGlobus_Vendor_Acf' ) ) :
451
  'disabledFields' => $disabled_fields,
452
  'source' => $_source,
453
  'builder_id' => WPGlobus::Config()->builder->get_id(),
 
454
  'translatableClass' => 'wpglobus-translatable',
455
  )
456
  );
34
  const MULTILINGUAL = 'multilingual';
35
 
36
  /**
37
+ * Multilingual field name (`wpglobus_multilingual_field`).
38
  */
39
  const MULTILINGUAL_FIELD_NAME = 'wpglobus_' . self::MULTILINGUAL . '_field';
40
 
139
  );
140
  // */
141
 
142
+ /**
143
+ * Filters the $field array before it is updated.
144
+ *
145
+ * @since 2.7.9
146
+ * @see advanced-custom-fields\includes\acf-field-functions.php
147
+ */
148
+ add_filter(
149
+ 'acf/update_field',
150
+ array(
151
+ __CLASS__,
152
+ 'on__update_field'
153
+ ), 5, 1
154
+ );
155
+
156
  /**
157
  * Filter on post, page and CPT except Edit Field Group page.
158
  *
372
 
373
  return $style;
374
  }
375
+
376
+ /**
377
+ * Filters the field array before it is updated.
378
+ *
379
+ * @since 2.7.9
380
+ *
381
+ * @return array
382
+ */
383
+ public static function on__update_field( $field ) {
384
+
385
+ if ( (int) $field['ID'] == 0 && ! isset( $field[ self::MULTILINGUAL_FIELD_NAME ] ) ) {
386
+ // New field.
387
+ if ( self::is_multilingual_field( $field ) ) {
388
+ // We need to add MULTILINGUAL_FIELD_NAME for each new field.
389
+ $field[ self::MULTILINGUAL_FIELD_NAME ] = 1;
390
+ }
391
+ }
392
+ return $field;
393
+ }
394
+
395
  /**
396
  * Callback for admin footer.
397
  *
484
  'disabledFields' => $disabled_fields,
485
  'source' => $_source,
486
  'builder_id' => WPGlobus::Config()->builder->get_id(),
487
+ 'language' => WPGlobus::Config()->builder->get_language(),
488
  'translatableClass' => 'wpglobus-translatable',
489
  )
490
  );
languages/wpglobus-ar.po CHANGED
@@ -1,5 +1,5 @@
1
- # Copyright (C) 2021 WPGlobus 2.7.5
2
- # This file is distributed under the same license as the WPGlobus 2.7.5 package.
3
  # Translators:
4
  # Gregory Karpinsky <gregory@tiv.net>, 2018
5
  # 425467bb0c9da71484550c3c99a0865a_432023a <42ebb87f8d673776150a6c232428c0ac_329642>, 2017
1
+ # Copyright (C) 2021 WPGlobus 2.7.9
2
+ # This file is distributed under the same license as the WPGlobus 2.7.9 package.
3
  # Translators:
4
  # Gregory Karpinsky <gregory@tiv.net>, 2018
5
  # 425467bb0c9da71484550c3c99a0865a_432023a <42ebb87f8d673776150a6c232428c0ac_329642>, 2017
languages/wpglobus-be.po CHANGED
@@ -1,5 +1,5 @@
1
- # Copyright (C) 2021 WPGlobus 2.7.5
2
- # This file is distributed under the same license as the WPGlobus 2.7.5 package.
3
  # Translators:
4
  # Gregory Karpinsky <gregory@tiv.net>, 2018,2020
5
  msgid ""
1
+ # Copyright (C) 2021 WPGlobus 2.7.9
2
+ # This file is distributed under the same license as the WPGlobus 2.7.9 package.
3
  # Translators:
4
  # Gregory Karpinsky <gregory@tiv.net>, 2018,2020
5
  msgid ""
languages/wpglobus-bg_BG.po CHANGED
@@ -1,5 +1,5 @@
1
- # Copyright (C) 2021 WPGlobus 2.7.5
2
- # This file is distributed under the same license as the WPGlobus 2.7.5 package.
3
  # Translators:
4
  msgid ""
5
  msgstr ""
1
+ # Copyright (C) 2021 WPGlobus 2.7.9
2
+ # This file is distributed under the same license as the WPGlobus 2.7.9 package.
3
  # Translators:
4
  msgid ""
5
  msgstr ""
languages/wpglobus-de_CH.po CHANGED
@@ -1,5 +1,5 @@
1
- # Copyright (C) 2021 WPGlobus 2.7.5
2
- # This file is distributed under the same license as the WPGlobus 2.7.5 package.
3
  # Translators:
4
  # Tobias Hopp <toby.hopp@gmail.com>, 2015
5
  # Gregory Karpinsky <gregory@tiv.net>, 2015,2017
1
+ # Copyright (C) 2021 WPGlobus 2.7.9
2
+ # This file is distributed under the same license as the WPGlobus 2.7.9 package.
3
  # Translators:
4
  # Tobias Hopp <toby.hopp@gmail.com>, 2015
5
  # Gregory Karpinsky <gregory@tiv.net>, 2015,2017
languages/wpglobus-de_DE.po CHANGED
@@ -1,5 +1,5 @@
1
- # Copyright (C) 2021 WPGlobus 2.7.5
2
- # This file is distributed under the same license as the WPGlobus 2.7.5 package.
3
  # Translators:
4
  # Tobias Hopp <toby.hopp@gmail.com>, 2015
5
  # Gregory Karpinsky <gregory@tiv.net>, 2015,2017,2019
1
+ # Copyright (C) 2021 WPGlobus 2.7.9
2
+ # This file is distributed under the same license as the WPGlobus 2.7.9 package.
3
  # Translators:
4
  # Tobias Hopp <toby.hopp@gmail.com>, 2015
5
  # Gregory Karpinsky <gregory@tiv.net>, 2015,2017,2019
languages/wpglobus-el.po CHANGED
@@ -1,5 +1,5 @@
1
- # Copyright (C) 2021 WPGlobus 2.7.5
2
- # This file is distributed under the same license as the WPGlobus 2.7.5 package.
3
  # Translators:
4
  # Gregory Karpinsky <gregory@tiv.net>, 2017
5
  msgid ""
1
+ # Copyright (C) 2021 WPGlobus 2.7.9
2
+ # This file is distributed under the same license as the WPGlobus 2.7.9 package.
3
  # Translators:
4
  # Gregory Karpinsky <gregory@tiv.net>, 2017
5
  msgid ""
languages/wpglobus-en_AU.po CHANGED
@@ -1,5 +1,5 @@
1
- # Copyright (C) 2021 WPGlobus 2.7.5
2
- # This file is distributed under the same license as the WPGlobus 2.7.5 package.
3
  # Translators:
4
  # Gregory Karpinsky <gregory@tiv.net>, 2017
5
  # Stephen Edgar, 2017
1
+ # Copyright (C) 2021 WPGlobus 2.7.9
2
+ # This file is distributed under the same license as the WPGlobus 2.7.9 package.
3
  # Translators:
4
  # Gregory Karpinsky <gregory@tiv.net>, 2017
5
  # Stephen Edgar, 2017
languages/wpglobus-en_CA.po CHANGED
@@ -1,5 +1,5 @@
1
- # Copyright (C) 2021 WPGlobus 2.7.5
2
- # This file is distributed under the same license as the WPGlobus 2.7.5 package.
3
  # Translators:
4
  # Gregory Karpinsky <gregory@tiv.net>, 2017
5
  msgid ""
1
+ # Copyright (C) 2021 WPGlobus 2.7.9
2
+ # This file is distributed under the same license as the WPGlobus 2.7.9 package.
3
  # Translators:
4
  # Gregory Karpinsky <gregory@tiv.net>, 2017
5
  msgid ""
languages/wpglobus-en_GB.po CHANGED
@@ -1,5 +1,5 @@
1
- # Copyright (C) 2021 WPGlobus 2.7.5
2
- # This file is distributed under the same license as the WPGlobus 2.7.5 package.
3
  # Translators:
4
  # Andi Chandler <andi@gowling.com>, 2017
5
  # Gregory Karpinsky <gregory@tiv.net>, 2017
1
+ # Copyright (C) 2021 WPGlobus 2.7.9
2
+ # This file is distributed under the same license as the WPGlobus 2.7.9 package.
3
  # Translators:
4
  # Andi Chandler <andi@gowling.com>, 2017
5
  # Gregory Karpinsky <gregory@tiv.net>, 2017
languages/wpglobus-en_NZ.po CHANGED
@@ -1,5 +1,5 @@
1
- # Copyright (C) 2021 WPGlobus 2.7.5
2
- # This file is distributed under the same license as the WPGlobus 2.7.5 package.
3
  # Translators:
4
  # Gregory Karpinsky <gregory@tiv.net>, 2017
5
  msgid ""
1
+ # Copyright (C) 2021 WPGlobus 2.7.9
2
+ # This file is distributed under the same license as the WPGlobus 2.7.9 package.
3
  # Translators:
4
  # Gregory Karpinsky <gregory@tiv.net>, 2017
5
  msgid ""
languages/wpglobus-en_US.po CHANGED
@@ -1,5 +1,5 @@
1
- # Copyright (C) 2021 WPGlobus 2.7.5
2
- # This file is distributed under the same license as the WPGlobus 2.7.5 package.
3
  # Translators:
4
  msgid ""
5
  msgstr ""
1
+ # Copyright (C) 2021 WPGlobus 2.7.9
2
+ # This file is distributed under the same license as the WPGlobus 2.7.9 package.
3
  # Translators:
4
  msgid ""
5
  msgstr ""
languages/wpglobus-en_ZA.po CHANGED
@@ -1,5 +1,5 @@
1
- # Copyright (C) 2021 WPGlobus 2.7.5
2
- # This file is distributed under the same license as the WPGlobus 2.7.5 package.
3
  # Translators:
4
  # Gregory Karpinsky <gregory@tiv.net>, 2017
5
  msgid ""
1
+ # Copyright (C) 2021 WPGlobus 2.7.9
2
+ # This file is distributed under the same license as the WPGlobus 2.7.9 package.
3
  # Translators:
4
  # Gregory Karpinsky <gregory@tiv.net>, 2017
5
  msgid ""
languages/wpglobus-es_AR.po CHANGED
@@ -1,5 +1,5 @@
1
- # Copyright (C) 2021 WPGlobus 2.7.5
2
- # This file is distributed under the same license as the WPGlobus 2.7.5 package.
3
  # Translators:
4
  # FX Bénard <fxb@wp-translations.org>, 2015
5
  msgid ""
1
+ # Copyright (C) 2021 WPGlobus 2.7.9
2
+ # This file is distributed under the same license as the WPGlobus 2.7.9 package.
3
  # Translators:
4
  # FX Bénard <fxb@wp-translations.org>, 2015
5
  msgid ""
languages/wpglobus-es_CL.po CHANGED
@@ -1,5 +1,5 @@
1
- # Copyright (C) 2021 WPGlobus 2.7.5
2
- # This file is distributed under the same license as the WPGlobus 2.7.5 package.
3
  # Translators:
4
  # FX Bénard <fxb@wp-translations.org>, 2015
5
  msgid ""
1
+ # Copyright (C) 2021 WPGlobus 2.7.9
2
+ # This file is distributed under the same license as the WPGlobus 2.7.9 package.
3
  # Translators:
4
  # FX Bénard <fxb@wp-translations.org>, 2015
5
  msgid ""
languages/wpglobus-es_CO.po CHANGED
@@ -1,5 +1,5 @@
1
- # Copyright (C) 2021 WPGlobus 2.7.5
2
- # This file is distributed under the same license as the WPGlobus 2.7.5 package.
3
  # Translators:
4
  # FX Bénard <fxb@wp-translations.org>, 2015
5
  msgid ""
1
+ # Copyright (C) 2021 WPGlobus 2.7.9
2
+ # This file is distributed under the same license as the WPGlobus 2.7.9 package.
3
  # Translators:
4
  # FX Bénard <fxb@wp-translations.org>, 2015
5
  msgid ""
languages/wpglobus-es_CR.po CHANGED
@@ -1,5 +1,5 @@
1
- # Copyright (C) 2021 WPGlobus 2.7.5
2
- # This file is distributed under the same license as the WPGlobus 2.7.5 package.
3
  # Translators:
4
  # FX Bénard <fxb@wp-translations.org>, 2015
5
  msgid ""
1
+ # Copyright (C) 2021 WPGlobus 2.7.9
2
+ # This file is distributed under the same license as the WPGlobus 2.7.9 package.
3
  # Translators:
4
  # FX Bénard <fxb@wp-translations.org>, 2015
5
  msgid ""
languages/wpglobus-es_ES.po CHANGED
@@ -1,5 +1,5 @@
1
- # Copyright (C) 2021 WPGlobus 2.7.5
2
- # This file is distributed under the same license as the WPGlobus 2.7.5 package.
3
  # Translators:
4
  # FX Bénard <fxb@wp-translations.org>, 2015
5
  msgid ""
1
+ # Copyright (C) 2021 WPGlobus 2.7.9
2
+ # This file is distributed under the same license as the WPGlobus 2.7.9 package.
3
  # Translators:
4
  # FX Bénard <fxb@wp-translations.org>, 2015
5
  msgid ""
languages/wpglobus-es_GT.po CHANGED
@@ -1,5 +1,5 @@
1
- # Copyright (C) 2021 WPGlobus 2.7.5
2
- # This file is distributed under the same license as the WPGlobus 2.7.5 package.
3
  # Translators:
4
  # FX Bénard <fxb@wp-translations.org>, 2015
5
  msgid ""
1
+ # Copyright (C) 2021 WPGlobus 2.7.9
2
+ # This file is distributed under the same license as the WPGlobus 2.7.9 package.
3
  # Translators:
4
  # FX Bénard <fxb@wp-translations.org>, 2015
5
  msgid ""
languages/wpglobus-es_MX.po CHANGED
@@ -1,5 +1,5 @@
1
- # Copyright (C) 2021 WPGlobus 2.7.5
2
- # This file is distributed under the same license as the WPGlobus 2.7.5 package.
3
  # Translators:
4
  # FX Bénard <fxb@wp-translations.org>, 2015
5
  msgid ""
1
+ # Copyright (C) 2021 WPGlobus 2.7.9
2
+ # This file is distributed under the same license as the WPGlobus 2.7.9 package.
3
  # Translators:
4
  # FX Bénard <fxb@wp-translations.org>, 2015
5
  msgid ""
languages/wpglobus-es_PE.po CHANGED
@@ -1,5 +1,5 @@
1
- # Copyright (C) 2021 WPGlobus 2.7.5
2
- # This file is distributed under the same license as the WPGlobus 2.7.5 package.
3
  # Translators:
4
  # FX Bénard <fxb@wp-translations.org>, 2015
5
  msgid ""
1
+ # Copyright (C) 2021 WPGlobus 2.7.9
2
+ # This file is distributed under the same license as the WPGlobus 2.7.9 package.
3
  # Translators:
4
  # FX Bénard <fxb@wp-translations.org>, 2015
5
  msgid ""
languages/wpglobus-es_PR.po CHANGED
@@ -1,5 +1,5 @@
1
- # Copyright (C) 2021 WPGlobus 2.7.5
2
- # This file is distributed under the same license as the WPGlobus 2.7.5 package.
3
  # Translators:
4
  # FX Bénard <fxb@wp-translations.org>, 2015
5
  msgid ""
1
+ # Copyright (C) 2021 WPGlobus 2.7.9
2
+ # This file is distributed under the same license as the WPGlobus 2.7.9 package.
3
  # Translators:
4
  # FX Bénard <fxb@wp-translations.org>, 2015
5
  msgid ""
languages/wpglobus-es_VE.po CHANGED
@@ -1,5 +1,5 @@
1
- # Copyright (C) 2021 WPGlobus 2.7.5
2
- # This file is distributed under the same license as the WPGlobus 2.7.5 package.
3
  # Translators:
4
  # FX Bénard <fxb@wp-translations.org>, 2015
5
  msgid ""
1
+ # Copyright (C) 2021 WPGlobus 2.7.9
2
+ # This file is distributed under the same license as the WPGlobus 2.7.9 package.
3
  # Translators:
4
  # FX Bénard <fxb@wp-translations.org>, 2015
5
  msgid ""
languages/wpglobus-et.po CHANGED
@@ -1,5 +1,5 @@
1
- # Copyright (C) 2021 WPGlobus 2.7.5
2
- # This file is distributed under the same license as the WPGlobus 2.7.5 package.
3
  # Translators:
4
  # Rivo Zängov <eraser@eraser.ee>, 2018
5
  msgid ""
1
+ # Copyright (C) 2021 WPGlobus 2.7.9
2
+ # This file is distributed under the same license as the WPGlobus 2.7.9 package.
3
  # Translators:
4
  # Rivo Zängov <eraser@eraser.ee>, 2018
5
  msgid ""
languages/wpglobus-fr_BE.po CHANGED
@@ -1,5 +1,5 @@
1
- # Copyright (C) 2021 WPGlobus 2.7.5
2
- # This file is distributed under the same license as the WPGlobus 2.7.5 package.
3
  # Translators:
4
  # Gregory Karpinsky <gregory@tiv.net>, 2015
5
  msgid ""
1
+ # Copyright (C) 2021 WPGlobus 2.7.9
2
+ # This file is distributed under the same license as the WPGlobus 2.7.9 package.
3
  # Translators:
4
  # Gregory Karpinsky <gregory@tiv.net>, 2015
5
  msgid ""
languages/wpglobus-fr_CA.po CHANGED
@@ -1,5 +1,5 @@
1
- # Copyright (C) 2021 WPGlobus 2.7.5
2
- # This file is distributed under the same license as the WPGlobus 2.7.5 package.
3
  # Translators:
4
  # Franck, 2015
5
  # FX Bénard <fxb@wp-translations.org>, 2015
1
+ # Copyright (C) 2021 WPGlobus 2.7.9
2
+ # This file is distributed under the same license as the WPGlobus 2.7.9 package.
3
  # Translators:
4
  # Franck, 2015
5
  # FX Bénard <fxb@wp-translations.org>, 2015
languages/wpglobus-fr_FR.po CHANGED
@@ -1,5 +1,5 @@
1
- # Copyright (C) 2021 WPGlobus 2.7.5
2
- # This file is distributed under the same license as the WPGlobus 2.7.5 package.
3
  # Translators:
4
  # Franck, 2015-2017
5
  # FX Bénard <fxb@wp-translations.org>, 2015-2017
1
+ # Copyright (C) 2021 WPGlobus 2.7.9
2
+ # This file is distributed under the same license as the WPGlobus 2.7.9 package.
3
  # Translators:
4
  # Franck, 2015-2017
5
  # FX Bénard <fxb@wp-translations.org>, 2015-2017
languages/wpglobus-id_ID.po CHANGED
@@ -1,5 +1,5 @@
1
- # Copyright (C) 2021 WPGlobus 2.7.5
2
- # This file is distributed under the same license as the WPGlobus 2.7.5 package.
3
  # Translators:
4
  # ChameleonJohn.com, 2017
5
  # Gregory Karpinsky <gregory@tiv.net>, 2017,2020
1
+ # Copyright (C) 2021 WPGlobus 2.7.9
2
+ # This file is distributed under the same license as the WPGlobus 2.7.9 package.
3
  # Translators:
4
  # ChameleonJohn.com, 2017
5
  # Gregory Karpinsky <gregory@tiv.net>, 2017,2020
languages/wpglobus-ko_KR.po CHANGED
@@ -1,5 +1,5 @@
1
- # Copyright (C) 2021 WPGlobus 2.7.5
2
- # This file is distributed under the same license as the WPGlobus 2.7.5 package.
3
  # Translators:
4
  msgid ""
5
  msgstr ""
1
+ # Copyright (C) 2021 WPGlobus 2.7.9
2
+ # This file is distributed under the same license as the WPGlobus 2.7.9 package.
3
  # Translators:
4
  msgid ""
5
  msgstr ""
languages/wpglobus-pl_PL.po CHANGED
@@ -1,5 +1,5 @@
1
- # Copyright (C) 2021 WPGlobus 2.7.5
2
- # This file is distributed under the same license as the WPGlobus 2.7.5 package.
3
  # Translators:
4
  msgid ""
5
  msgstr ""
1
+ # Copyright (C) 2021 WPGlobus 2.7.9
2
+ # This file is distributed under the same license as the WPGlobus 2.7.9 package.
3
  # Translators:
4
  msgid ""
5
  msgstr ""
languages/wpglobus-pt_BR.po CHANGED
@@ -1,5 +1,5 @@
1
- # Copyright (C) 2021 WPGlobus 2.7.5
2
- # This file is distributed under the same license as the WPGlobus 2.7.5 package.
3
  # Translators:
4
  msgid ""
5
  msgstr ""
1
+ # Copyright (C) 2021 WPGlobus 2.7.9
2
+ # This file is distributed under the same license as the WPGlobus 2.7.9 package.
3
  # Translators:
4
  msgid ""
5
  msgstr ""
languages/wpglobus-pt_PT.po CHANGED
@@ -1,5 +1,5 @@
1
- # Copyright (C) 2021 WPGlobus 2.7.5
2
- # This file is distributed under the same license as the WPGlobus 2.7.5 package.
3
  # Translators:
4
  msgid ""
5
  msgstr ""
1
+ # Copyright (C) 2021 WPGlobus 2.7.9
2
+ # This file is distributed under the same license as the WPGlobus 2.7.9 package.
3
  # Translators:
4
  msgid ""
5
  msgstr ""
languages/wpglobus-ro_RO.po CHANGED
@@ -1,5 +1,5 @@
1
- # Copyright (C) 2021 WPGlobus 2.7.5
2
- # This file is distributed under the same license as the WPGlobus 2.7.5 package.
3
  # Translators:
4
  msgid ""
5
  msgstr ""
1
+ # Copyright (C) 2021 WPGlobus 2.7.9
2
+ # This file is distributed under the same license as the WPGlobus 2.7.9 package.
3
  # Translators:
4
  msgid ""
5
  msgstr ""
languages/wpglobus-ru_RU.po CHANGED
@@ -1,5 +1,5 @@
1
- # Copyright (C) 2021 WPGlobus 2.7.5
2
- # This file is distributed under the same license as the WPGlobus 2.7.5 package.
3
  # Translators:
4
  # Gregory Karpinsky <gregory@tiv.net>, 2015-2020
5
  # Irina Fedulova <istartlin@gmail.com>, 2020
1
+ # Copyright (C) 2021 WPGlobus 2.7.9
2
+ # This file is distributed under the same license as the WPGlobus 2.7.9 package.
3
  # Translators:
4
  # Gregory Karpinsky <gregory@tiv.net>, 2015-2020
5
  # Irina Fedulova <istartlin@gmail.com>, 2020
languages/wpglobus-sv_SE.po CHANGED
@@ -1,5 +1,5 @@
1
- # Copyright (C) 2021 WPGlobus 2.7.5
2
- # This file is distributed under the same license as the WPGlobus 2.7.5 package.
3
  # Translators:
4
  # e314000eb7822ddff37f90aedba9a07c_cdf5e13 <3d5ba02b5c1e3beabe9eb3fc79749b38_312842>, 2015
5
  # e314000eb7822ddff37f90aedba9a07c_cdf5e13 <3d5ba02b5c1e3beabe9eb3fc79749b38_312842>, 2015
1
+ # Copyright (C) 2021 WPGlobus 2.7.9
2
+ # This file is distributed under the same license as the WPGlobus 2.7.9 package.
3
  # Translators:
4
  # e314000eb7822ddff37f90aedba9a07c_cdf5e13 <3d5ba02b5c1e3beabe9eb3fc79749b38_312842>, 2015
5
  # e314000eb7822ddff37f90aedba9a07c_cdf5e13 <3d5ba02b5c1e3beabe9eb3fc79749b38_312842>, 2015
languages/wpglobus-tr_TR.po CHANGED
@@ -1,5 +1,5 @@
1
- # Copyright (C) 2021 WPGlobus 2.7.5
2
- # This file is distributed under the same license as the WPGlobus 2.7.5 package.
3
  # Translators:
4
  # BORAHAN CONKEROGLU <boracon@gmail.com>, 2015
5
  msgid ""
1
+ # Copyright (C) 2021 WPGlobus 2.7.9
2
+ # This file is distributed under the same license as the WPGlobus 2.7.9 package.
3
  # Translators:
4
  # BORAHAN CONKEROGLU <boracon@gmail.com>, 2015
5
  msgid ""
languages/wpglobus-uk.mo CHANGED
Binary file
languages/wpglobus-uk.po CHANGED
@@ -1,14 +1,14 @@
1
- # Copyright (C) 2021 WPGlobus 2.7.5
2
- # This file is distributed under the same license as the WPGlobus 2.7.5 package.
3
  # Translators:
4
  # Gregory Karpinsky <gregory@tiv.net>, 2016,2020
5
- # Jack Willson <666noob404@gmail.com>, 2019
6
  msgid ""
7
  msgstr ""
8
  "Project-Id-Version: WPGlobus Multilingual\n"
9
  "Report-Msgid-Bugs-To: support@wpglobus.com\n"
10
- "PO-Revision-Date: 2021-06-04 12:20+0000\n"
11
- "Last-Translator: Gregory Karpinsky <gregory@tiv.net>\n"
12
  "Language-Team: Ukrainian (http://www.transifex.com/wp-translations/wpglobus-"
13
  "multilingual/language/uk/)\n"
14
  "Language: uk\n"
@@ -193,12 +193,19 @@ msgid ""
193
  "runs without first verifying that WPGlobus is active, WordPress may die with "
194
  "a fatal error."
195
  msgstr ""
 
 
 
 
196
 
197
  #. translators: %1$s - language name, %2$s - language code. Do not remove.
198
  msgid ""
199
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
200
  "%1$s WILL BE DELETED! To change the main language, please go to {{settings}}."
201
  msgstr ""
 
 
 
202
 
203
  msgid "You are about to clean the content of the following database tables:"
204
  msgstr "Програма виконає очистку наступних таблиць бази даних:"
@@ -255,7 +262,7 @@ msgid "Show all sections"
255
  msgstr "Показати всі розділи"
256
 
257
  msgid "Check/Uncheck all"
258
- msgstr ""
259
 
260
  msgid "Save &amp; Reload"
261
  msgstr "Зберегти та перезавантажити"
@@ -569,9 +576,11 @@ msgid ""
569
  "If you have already purchased a WPGlobus premium extension, please read "
570
  "%1$sthe installation instructions here%2$s"
571
  msgstr ""
 
 
572
 
573
  msgid "Widgets with WPGlobus"
574
- msgstr ""
575
 
576
  msgid "Help Desk"
577
  msgstr "Підтримка"
@@ -671,15 +680,19 @@ msgstr "Переклад посилань можливий за допомого
671
  #. translators: %1$s - this plugin name. %2$s - the required PHP version.
672
  msgid "For %1$s to work correctly, PHP version %2$s or later is required."
673
  msgstr ""
 
 
674
 
675
  #. translators: %3$s - the current PHP version.
676
  msgid "The PHP version on your server is %3$s."
677
- msgstr ""
678
 
679
  #. translators: %1$s - this plugin name. %2$s - the required WordPress version.
680
  msgid ""
681
  "For %1$s to work correctly, WordPress version %2$s or later is required."
682
  msgstr ""
 
 
683
 
684
  msgid "Save draft before using extra language."
685
  msgstr "Збережіть чернетку перед перемиканням на іншу мову."
@@ -705,7 +718,7 @@ msgid "Turn on"
705
  msgstr "Увімкнути"
706
 
707
  msgid "Elementor"
708
- msgstr ""
709
 
710
  msgid "WPGlobus languages"
711
  msgstr "Мови WPGlobus"
@@ -717,6 +730,8 @@ msgid ""
717
  "WPGlobus provides multilingual support for Elementor only when the option "
718
  "%1$s%2$s%3$s is set to %4$s."
719
  msgstr ""
 
 
720
 
721
  msgid "Before switching the language, please save draft or publish."
722
  msgstr "Опублікуйте або збережіть чернетку перед перемиканням на іншу мову."
@@ -740,9 +755,11 @@ msgid ""
740
  "WPGlobus provides multilingual support for Elementor only when the option "
741
  "`CSS Print Method` is set to `External File`."
742
  msgstr ""
 
 
743
 
744
  msgid "Open Elementor Settings page"
745
- msgstr ""
746
 
747
  msgid "WPGlobus widget"
748
  msgstr "WPGlobus віджет"
@@ -785,11 +802,13 @@ msgstr "*) Доступно після збереження меню."
785
 
786
  #. translators: %s are for A tags.
787
  msgid "To have the %1$sImage%2$s widget varying by language,"
788
- msgstr ""
789
 
790
  #. translators: %s are for A tags.
791
  msgid "please use the %1$sWPGlobus language widgets%2$s add-on"
792
  msgstr ""
 
 
793
 
794
  msgid "You must enable Pretty Permalinks to use WPGlobus."
795
  msgstr ""
@@ -1128,64 +1147,77 @@ msgid ""
1128
  "With the current settings, you will see the following lines in the section "
1129
  "HEAD of your site pages"
1130
  msgstr ""
 
1131
 
1132
  msgid "(example for two languages)"
1133
- msgstr ""
1134
 
1135
  msgid ""
1136
  "Tell search engines about localized versions of your pages using the "
1137
  "hreflang tag"
1138
  msgstr ""
 
 
1139
 
1140
  msgid "Output the hreflang tag as"
1141
- msgstr ""
1142
 
1143
  msgid "Language- and region-specific (en-US, ru-RU, etc.)"
1144
- msgstr ""
1145
 
1146
  msgid "Language- and region-specific (en-us, ru-ru, etc.)"
1147
- msgstr ""
1148
 
1149
  msgid "Language code only (en, ru, etc.)"
1150
- msgstr ""
1151
 
1152
  msgid "Use the code `x-default` for the main language"
1153
- msgstr ""
1154
 
1155
  msgid "Multilingual SEO"
1156
- msgstr ""
1157
 
1158
  msgid "Multilingual SEO Options"
1159
- msgstr ""
1160
 
1161
  msgid ""
1162
  "With WPGlobus, you can get translations for posts and pages using REST API."
1163
  msgstr ""
 
 
1164
 
1165
  msgid "Go to %1$s%2$s%3$s to see the content in language: %4$s."
1166
  msgstr ""
 
1167
 
1168
  msgid ""
1169
  "For demonstration, you can try the first post that WordPress creates at the "
1170
  "initial installation."
1171
  msgstr ""
 
 
1172
 
1173
  msgid ""
1174
  "Please read the %1$sWordPress REST API documentation%2$s for more "
1175
  "information."
1176
  msgstr ""
 
 
1177
 
1178
  msgid ""
1179
  "In the REST API response, you can find the %1$stranslation%2$s field, which "
1180
  "shows whether translations exist for the fields %1$stitle%2$s, %1$scontent"
1181
  "%2$s and %1$sexcerpt%2$s or not, for each language. See the screenshot below:"
1182
  msgstr ""
 
 
 
1183
 
1184
  msgid "Description:"
1185
- msgstr ""
1186
 
1187
  msgid "REST API"
1188
- msgstr ""
1189
 
1190
  msgid "Translate strings"
1191
  msgstr "Переклади рядків"
@@ -1354,25 +1386,29 @@ msgstr "Встановіть WPGlobus Плюс прямо зараз!"
1354
 
1355
  #. translators: %s are for A tags.
1356
  msgid "Use as multilingual with %1$sWPGlobus%2$s"
1357
- msgstr ""
1358
 
1359
  msgid "Multilingual"
1360
- msgstr ""
1361
 
1362
  #. translators: %s are for A tags.
1363
  msgid "To use this field, please activate the %1$sACF Plus%2$s module"
1364
- msgstr ""
1365
 
1366
  msgid ""
1367
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1368
  "the current version."
1369
  msgstr ""
 
 
1370
 
1371
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1372
  msgstr ""
 
 
1373
 
1374
  msgid "WPGlobus warning: "
1375
- msgstr ""
1376
 
1377
  msgid "https://github.com/WPGlobus/WPGlobus"
1378
  msgstr "https://github.com/WPGlobus/WPGlobus"
1
+ # Copyright (C) 2021 WPGlobus 2.7.9
2
+ # This file is distributed under the same license as the WPGlobus 2.7.9 package.
3
  # Translators:
4
  # Gregory Karpinsky <gregory@tiv.net>, 2016,2020
5
+ # Jack Willson <666noob404@gmail.com>, 2019,2021
6
  msgid ""
7
  msgstr ""
8
  "Project-Id-Version: WPGlobus Multilingual\n"
9
  "Report-Msgid-Bugs-To: support@wpglobus.com\n"
10
+ "PO-Revision-Date: 2021-06-12 20:19+0000\n"
11
+ "Last-Translator: Jack Willson <666noob404@gmail.com>\n"
12
  "Language-Team: Ukrainian (http://www.transifex.com/wp-translations/wpglobus-"
13
  "multilingual/language/uk/)\n"
14
  "Language: uk\n"
193
  "runs without first verifying that WPGlobus is active, WordPress may die with "
194
  "a fatal error."
195
  msgstr ""
196
+ "Переконайтеся, що у вашій активній темі немає коду, пов’язаного з WPGlobus. "
197
+ "Який міг бути доданий вами або 3 стороннім розробником. Якщо такий код "
198
+ "виконується без перевірки, активованої WPGlobus, це може сприяти "
199
+ "нероботоспроможності всього веб-сайту."
200
 
201
  #. translators: %1$s - language name, %2$s - language code. Do not remove.
202
  msgid ""
203
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
204
  "%1$s WILL BE DELETED! To change the main language, please go to {{settings}}."
205
  msgstr ""
206
+ "В налаштуваннях WPGlobus зазначено, що основна мова %1$s (%2$s). Всі тексти, "
207
+ "крім %1$s будуть видалені! Щоб змінити основну мову, будь ласка, перейдіть в "
208
+ "{{settings}}."
209
 
210
  msgid "You are about to clean the content of the following database tables:"
211
  msgstr "Програма виконає очистку наступних таблиць бази даних:"
262
  msgstr "Показати всі розділи"
263
 
264
  msgid "Check/Uncheck all"
265
+ msgstr "Обрати/Скасувати всі"
266
 
267
  msgid "Save &amp; Reload"
268
  msgstr "Зберегти та перезавантажити"
576
  "If you have already purchased a WPGlobus premium extension, please read "
577
  "%1$sthe installation instructions here%2$s"
578
  msgstr ""
579
+ "Якщо ви вже придбали розширення WPGlobus premium, будь ласка, прочитайте "
580
+ "%1$sінструкції з встановлення тут%2$s"
581
 
582
  msgid "Widgets with WPGlobus"
583
+ msgstr "Віджети з WPGlobus"
584
 
585
  msgid "Help Desk"
586
  msgstr "Підтримка"
680
  #. translators: %1$s - this plugin name. %2$s - the required PHP version.
681
  msgid "For %1$s to work correctly, PHP version %2$s or later is required."
682
  msgstr ""
683
+ "Для коректної роботи %1$s потрібно використовувати PHP версії %2$s або "
684
+ "останню."
685
 
686
  #. translators: %3$s - the current PHP version.
687
  msgid "The PHP version on your server is %3$s."
688
+ msgstr "Версія PHP на вашому сервері %3$s."
689
 
690
  #. translators: %1$s - this plugin name. %2$s - the required WordPress version.
691
  msgid ""
692
  "For %1$s to work correctly, WordPress version %2$s or later is required."
693
  msgstr ""
694
+ "Для коректної роботи %1$s потрібно використовувати WordPress версії %2$s або "
695
+ "останню."
696
 
697
  msgid "Save draft before using extra language."
698
  msgstr "Збережіть чернетку перед перемиканням на іншу мову."
718
  msgstr "Увімкнути"
719
 
720
  msgid "Elementor"
721
+ msgstr "Elementor"
722
 
723
  msgid "WPGlobus languages"
724
  msgstr "Мови WPGlobus"
730
  "WPGlobus provides multilingual support for Elementor only when the option "
731
  "%1$s%2$s%3$s is set to %4$s."
732
  msgstr ""
733
+ "WPGlobus підтримує багатомовні сторінки для Elementor тільки з опцією %1$s "
734
+ "%2$s %3$s встановленої в %4$s."
735
 
736
  msgid "Before switching the language, please save draft or publish."
737
  msgstr "Опублікуйте або збережіть чернетку перед перемиканням на іншу мову."
755
  "WPGlobus provides multilingual support for Elementor only when the option "
756
  "`CSS Print Method` is set to `External File`."
757
  msgstr ""
758
+ "WPGlobus забезпечує багатомовну підтримку Elementor тільки якщо `CSS Print "
759
+ "Method` встановлений в` External File`."
760
 
761
  msgid "Open Elementor Settings page"
762
+ msgstr "Сторінка налаштувань Elementor"
763
 
764
  msgid "WPGlobus widget"
765
  msgstr "WPGlobus віджет"
802
 
803
  #. translators: %s are for A tags.
804
  msgid "To have the %1$sImage%2$s widget varying by language,"
805
+ msgstr "Щоб застосувати віджет%1$sЗображення%2$s для декількох мов"
806
 
807
  #. translators: %s are for A tags.
808
  msgid "please use the %1$sWPGlobus language widgets%2$s add-on"
809
  msgstr ""
810
+ "Ви також можете використовувати розширення %1$sWPGlobus для мовних віджетів"
811
+ "%2$s"
812
 
813
  msgid "You must enable Pretty Permalinks to use WPGlobus."
814
  msgstr ""
1147
  "With the current settings, you will see the following lines in the section "
1148
  "HEAD of your site pages"
1149
  msgstr ""
1150
+ "З поточними налаштуваннями ви побачите ці рядки в секції head ваших сторінок"
1151
 
1152
  msgid "(example for two languages)"
1153
+ msgstr "(Приклад для двох мов)"
1154
 
1155
  msgid ""
1156
  "Tell search engines about localized versions of your pages using the "
1157
  "hreflang tag"
1158
  msgstr ""
1159
+ "Повідомте пошуковим системам про локалізовані версії ваших сторінок за "
1160
+ "допомогою тегу hreflang"
1161
 
1162
  msgid "Output the hreflang tag as"
1163
+ msgstr "Вивести тег hreflang як"
1164
 
1165
  msgid "Language- and region-specific (en-US, ru-RU, etc.)"
1166
+ msgstr "Мова- і регіон в форматі (en-US, ru-RU, etc.)"
1167
 
1168
  msgid "Language- and region-specific (en-us, ru-ru, etc.)"
1169
+ msgstr "Мова- і регіон в форматі (en-us, ru-ru, etc.)"
1170
 
1171
  msgid "Language code only (en, ru, etc.)"
1172
+ msgstr "Тільки код мови (en, ru, etc.)"
1173
 
1174
  msgid "Use the code `x-default` for the main language"
1175
+ msgstr "Використовувати код `x-default` для мови за замовчуванням"
1176
 
1177
  msgid "Multilingual SEO"
1178
+ msgstr "Багатомовний SEO"
1179
 
1180
  msgid "Multilingual SEO Options"
1181
+ msgstr "Налаштування багатомовного SEO"
1182
 
1183
  msgid ""
1184
  "With WPGlobus, you can get translations for posts and pages using REST API."
1185
  msgstr ""
1186
+ "За допомогою WPGlobus ви можете отримувати переклади публікацій та сторінок "
1187
+ "за допомогою REST API."
1188
 
1189
  msgid "Go to %1$s%2$s%3$s to see the content in language: %4$s."
1190
  msgstr ""
1191
+ "Перейдіть по посиланню %1$s%2$s%3$s для отримання даних на мову: %4$ss."
1192
 
1193
  msgid ""
1194
  "For demonstration, you can try the first post that WordPress creates at the "
1195
  "initial installation."
1196
  msgstr ""
1197
+ "Для демонстрації ви можете спробувати перший допис, який WordPress створює "
1198
+ "під час початкової інсталяції."
1199
 
1200
  msgid ""
1201
  "Please read the %1$sWordPress REST API documentation%2$s for more "
1202
  "information."
1203
  msgstr ""
1204
+ "Для отримання додаткової інформації прочитайте %1$s документацію щодо API "
1205
+ "WordPress REST%2$s."
1206
 
1207
  msgid ""
1208
  "In the REST API response, you can find the %1$stranslation%2$s field, which "
1209
  "shows whether translations exist for the fields %1$stitle%2$s, %1$scontent"
1210
  "%2$s and %1$sexcerpt%2$s or not, for each language. See the screenshot below:"
1211
  msgstr ""
1212
+ "У відповіді REST API ви знайдете поле %1$stranslation%2$s, яке дає "
1213
+ "можливість перевірити, чи існують переклади полів%1$s title%2$s, %1$scontent"
1214
+ "%2$s і%1$sexcerpt%2$s для кожної мови. Дивіться.скріншот нижче:"
1215
 
1216
  msgid "Description:"
1217
+ msgstr "Опис:"
1218
 
1219
  msgid "REST API"
1220
+ msgstr "REST API"
1221
 
1222
  msgid "Translate strings"
1223
  msgstr "Переклади рядків"
1386
 
1387
  #. translators: %s are for A tags.
1388
  msgid "Use as multilingual with %1$sWPGlobus%2$s"
1389
+ msgstr "Використовувати як багатомовне з%1$sWPGlobus%2$s"
1390
 
1391
  msgid "Multilingual"
1392
+ msgstr "Багатомовне"
1393
 
1394
  #. translators: %s are for A tags.
1395
  msgid "To use this field, please activate the %1$sACF Plus%2$s module"
1396
+ msgstr "Для використання поля потрібно активувати модуль %1$sACF Plus%2$s"
1397
 
1398
  msgid ""
1399
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1400
  "the current version."
1401
  msgstr ""
1402
+ "Поточна версія не підтримує можливість масового редагування багатомовних "
1403
+ "заголовків і описів."
1404
 
1405
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1406
  msgstr ""
1407
+ "Тому, щоб уникнути втрати даних, ми не рекомендуємо використовувати цей "
1408
+ "режим."
1409
 
1410
  msgid "WPGlobus warning: "
1411
+ msgstr "Попередження WPGlobus:"
1412
 
1413
  msgid "https://github.com/WPGlobus/WPGlobus"
1414
  msgstr "https://github.com/WPGlobus/WPGlobus"
languages/wpglobus.pot CHANGED
@@ -1,8 +1,8 @@
1
- # Copyright (C) 2021 WPGlobus 2.7.8
2
- # This file is distributed under the same license as the WPGlobus 2.7.8 package.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: WPGlobus 2.7.8\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -10,1082 +10,1429 @@ msgstr ""
10
  "Report-Msgid-Bugs-To: support@wpglobus.com\n"
11
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
12
 
 
13
  msgid "Guide"
14
  msgstr ""
15
 
 
16
  msgid "WPGlobus Help Desk"
17
  msgstr ""
18
 
 
19
  msgid "Add-ons"
20
  msgstr ""
21
 
 
22
  msgid "Quick Start"
23
  msgstr ""
24
 
 
25
  msgid "FAQ"
26
  msgstr ""
27
 
 
28
  msgid "Attention: the Multibyte String PHP extension (`mbstring`) is not loaded!"
29
  msgstr ""
30
 
 
31
  msgid "The mbstring extension is required for the full UTF-8 compatibility and better performance. Without it, some parts of WordPress and WPGlobus may function incorrectly. Please contact your hosting company or systems administrator."
32
  msgstr ""
33
 
 
34
  msgid "Go to WPGlobus Settings"
35
  msgstr ""
36
 
 
37
  msgid "Easy as 1-2-3:"
38
  msgstr ""
39
 
 
40
  msgid "Go to WPGlobus admin menu and choose the countries / languages;"
41
  msgstr ""
42
 
 
43
  msgid "Enter the translations to the posts, pages, categories, tags and menus using a clean and simple interface."
44
  msgstr ""
45
 
 
46
  msgid "Switch languages at the front-end using a drop-down menu with language names and country flags."
47
  msgstr ""
48
 
 
49
  msgid "Links:"
50
  msgstr ""
51
 
 
52
  msgid "FAQs"
53
  msgstr ""
54
 
 
55
  msgid "Contact Us"
56
  msgstr ""
57
 
 
58
  msgid "Please give us 5 stars!"
59
  msgstr ""
60
 
 
61
  msgid "WPGlobus does not translate texts automatically!"
62
  msgstr ""
63
 
 
64
  msgid "There are many translation companies and individual translators who can help you write and proofread the texts."
65
  msgstr ""
66
 
 
67
  msgid "When you choose a translator, please look at their native language, country of residence, specialization and knowledge of WordPress."
68
  msgstr ""
69
 
70
  #. translators: %s are used to insert HTML link. Keep them in place.
 
71
  msgid "We are planning to maintain a %s list of translators %s on the WPGlobus website. This is not an endorsement, just a courtesy. Please contact them directly and let us know how did it work for you!"
72
  msgstr ""
73
 
 
74
  msgid "Important notes:"
75
  msgstr ""
76
 
 
77
  msgid "WPGlobus only supports the localization URLs in the form of <code>example.com/xx/page/</code>. We do not plan to support subdomains <code>xx.example.com</code> and language queries <code>example.com?lang=xx</code>."
78
  msgstr ""
79
 
 
80
  msgid "Some themes and plugins are <strong>not multilingual-ready</strong>."
81
  msgstr ""
82
 
 
83
  msgid "They might display some texts with no translation, or with all languages mixed together."
84
  msgstr ""
85
 
86
  #. translators: %s are used to insert HTML link. Keep them in place.
 
87
  msgid "Please contact the theme / plugin author. If they are unable to assist, consider %s hiring the WPGlobus Team %s to write a custom code for you."
88
  msgstr ""
89
 
 
90
  msgid "Language was set on your profile page"
91
  msgstr ""
92
 
 
93
  msgid "Add"
94
  msgstr ""
95
 
 
96
  msgid "Multilingual Everything!"
97
  msgstr ""
98
 
 
99
  msgid "WPGlobus is a family of WordPress plugins assisting you in making multilingual WordPress blogs and sites."
100
  msgstr ""
101
 
 
102
  msgid "Remove the WPGlobus settings (not recommended)"
103
  msgstr ""
104
 
 
105
  msgid "Clean-up Tool"
106
  msgstr ""
107
 
 
108
  msgid "Support"
109
  msgstr ""
110
 
 
111
  msgid "WARNING: this operation is non-reversible. It is strongly recommended that you backup your database before proceeding."
112
  msgstr ""
113
 
 
114
  msgid "This tool should be used only if you plan to completely uninstall WPGlobus. By running it, you will remove ALL translations you have entered to your post, pages, etc., keeping only the MAIN language texts. Please make sure that all entries have some content in the main language. Otherwise, you might end up with empty titles, no content, no excerpts, blank comments and so on."
115
  msgstr ""
116
 
 
117
  msgid "Make sure that your active theme does not have any code related to WPGlobus. Such code could be added by you or by a 3rd party developer. If that code runs without first verifying that WPGlobus is active, WordPress may die with a fatal error."
118
  msgstr ""
119
 
120
  #. translators: %1$s - language name, %2$s - language code. Do not remove.
 
121
  msgid "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN %1$s WILL BE DELETED! To change the main language, please go to {{settings}}."
122
  msgstr ""
123
 
 
124
  msgid "You are about to clean the content of the following database tables:"
125
  msgstr ""
126
 
 
127
  msgid "The operations log"
128
  msgstr ""
129
 
 
130
  msgid "We are going to write a detailed log of all the database changes performed. It should help in the case you need to restore something important. The log will be written to the file:"
131
  msgstr ""
132
 
 
133
  msgid "Uncheck if you do not want to write the operations log (we recommend to keep it checked)"
134
  msgstr ""
135
 
 
136
  msgid "You have been warned..."
137
  msgstr ""
138
 
 
139
  msgid "Please confirm by checking the box below:"
140
  msgstr ""
141
 
 
142
  msgid "I have read and understood everything written on this page. I am aware that by using this tool I may loose some content of my website. I have made a database backup and know how to restore it if necessary. I am fully responsible for the results."
143
  msgstr ""
144
 
 
145
  msgid "YES, I CONFIRM"
146
  msgstr ""
147
 
 
148
  msgid "Process with the Clean-up"
149
  msgstr ""
150
 
 
151
  msgid "Default"
152
  msgstr ""
153
 
 
154
  msgid "Section"
155
  msgstr ""
156
 
 
157
  msgid "Show all sections"
158
  msgstr ""
159
 
 
160
  msgid "Check/Uncheck all"
161
  msgstr ""
162
 
 
163
  msgid "Save &amp; Reload"
164
  msgstr ""
165
 
 
166
  msgid "WPGlobus"
167
  msgstr ""
168
 
 
169
  msgid "You need to update WordPress to 4.5 or later to get Fields Settings section"
170
  msgstr ""
171
 
 
172
  msgid "Fields Settings"
173
  msgstr ""
174
 
 
175
  msgid "WPGlobus Settings"
176
  msgstr ""
177
 
 
178
  msgid "Help"
179
  msgstr ""
180
 
 
181
  msgid "Languages"
182
  msgstr ""
183
 
 
184
  msgid "Enabled Languages"
185
  msgstr ""
186
 
 
187
  msgid "These languages are currently enabled on your site."
188
  msgstr ""
189
 
 
190
  msgid "Choose a language you would like to enable."
191
  msgstr ""
192
 
 
193
  msgid "Press the [Save & Publish] button to confirm."
194
  msgstr ""
195
 
196
  #. translators: %1$s and %2$s - placeholders to insert HTML link around 'here'
197
  #. translators: %1$s and %2$s - placeholders to insert HTML link around 'here'.
 
198
  msgid "or Add new Language %1$s here %2$s"
199
  msgstr ""
200
 
 
201
  msgid "Add Languages"
202
  msgstr ""
203
 
 
204
  msgid "Language Selector Mode"
205
  msgstr ""
206
 
 
207
  msgid "Two-letter Code with flag (en, ru, it, etc.)"
208
  msgstr ""
209
 
 
210
  msgid "Full Name (English, Russian, Italian, etc.)"
211
  msgstr ""
212
 
 
213
  msgid "Full Name with flag (English, Russian, Italian, etc.)"
214
  msgstr ""
215
 
 
216
  msgid "Flags only"
217
  msgstr ""
218
 
 
219
  msgid "Choose the way language name and country flag are shown in the drop-down menu"
220
  msgstr ""
221
 
 
222
  msgid "select navigation menu"
223
  msgstr ""
224
 
 
225
  msgid "Language Selector Menu"
226
  msgstr ""
227
 
 
228
  msgid "Choose the navigation menu where the language selector will be shown"
229
  msgstr ""
230
 
 
231
  msgid "No menus have been created yet. Create some."
232
  msgstr ""
233
 
 
234
  msgid "\"All Pages\" menus Language selector"
235
  msgstr ""
236
 
 
237
  msgid "Adds language selector to the menus that automatically list all existing pages (using `wp_list_pages`)"
238
  msgstr ""
239
 
 
240
  msgid "Custom CSS"
241
  msgstr ""
242
 
 
243
  msgid "Here you can enter the CSS rules to adjust the language selector menu for your theme. Look at the examples in the `style-samples.css` file."
244
  msgstr ""
245
 
 
246
  msgid "Post types"
247
  msgstr ""
248
 
 
249
  msgid "Uncheck to disable WPGlobus"
250
  msgstr ""
251
 
 
252
  msgid "Redirect"
253
  msgstr ""
254
 
 
255
  msgid "Choose the language automatically, based on:"
256
  msgstr ""
257
 
 
258
  msgid "Preferred language set in the browser"
259
  msgstr ""
260
 
 
261
  msgid "When a user comes to the site for the first time, try to find the best matching language version of the page."
262
  msgstr ""
263
 
 
264
  msgid "Custom JS Code"
265
  msgstr ""
266
 
 
267
  msgid "Title"
268
  msgstr ""
269
 
 
270
  msgid "(Paste your JS code here.)"
271
  msgstr ""
272
 
 
273
  msgid "To add a Custom JS Code in Customizer, you need to upgrade WordPress to version 4.9 or later."
274
  msgstr ""
275
 
 
276
  msgid "With your version of WordPress, please use the"
277
  msgstr ""
278
 
 
279
  msgid "WPGlobus Settings page"
280
  msgstr ""
281
 
 
282
  msgid "Label"
283
  msgstr ""
284
 
 
285
  msgid "Description"
286
  msgstr ""
287
 
 
288
  msgid "Here you can specify which fields should be considered multilingual by WPGlobus. To exclude a field, uncheck it and then press the button %s below."
289
  msgstr ""
290
 
 
291
  msgid "Thank you for installing WPGlobus!"
292
  msgstr ""
293
 
 
294
  msgid "Read About WPGlobus"
295
  msgstr ""
296
 
 
297
  msgid "Click the <strong>[Languages]</strong> tab at the left to setup the options."
298
  msgstr ""
299
 
 
300
  msgid "Should you have any questions or comments, please do not hesitate to contact us."
301
  msgstr ""
302
 
 
303
  msgid "Sincerely Yours,"
304
  msgstr ""
305
 
 
306
  msgid "The WPGlobus Team"
307
  msgstr ""
308
 
309
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
310
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
 
311
  msgid "We would hate to see you go. If something goes wrong, do not uninstall WPGlobus yet. Please %1$stalk to us%2$s and let us help!"
312
  msgstr ""
313
 
 
314
  msgid "Please note that if you deactivate WPGlobus, your site will show all the languages together, mixed up. You will need to remove all translations, keeping only one language."
315
  msgstr ""
316
 
317
  #. translators: %s: link to the Clean-up Tool
318
  #. translators: %s: link to the Clean-up Tool.
 
319
  msgid "If there are just a few places, you should edit them manually. To automatically remove all translations at once, you can use the %s. WARNING: The clean-up operation is irreversible, so use it only if you need to completely uninstall WPGlobus."
320
  msgstr ""
321
 
322
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
323
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
 
324
  msgid "%1$sClean-up Tool%2$s"
325
  msgstr ""
326
 
327
  #. translators: %s: name of current theme
 
328
  msgid "Sorry, WPGlobus customizer doesn't support current theme %s."
329
  msgstr ""
330
 
331
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
 
332
  msgid "Please use %1$sWPGlobus options page%2$s instead."
333
  msgstr ""
334
 
 
335
  msgid "Expand/Shrink"
336
  msgstr ""
337
 
 
338
  msgid "WPGlobus News"
339
  msgstr ""
340
 
 
341
  msgid "Options updated"
342
  msgstr ""
343
 
 
344
  msgid "Please enter a language code!"
345
  msgstr ""
346
 
 
347
  msgid "Language code already exists!"
348
  msgstr ""
349
 
 
350
  msgid "Please specify the language flag!"
351
  msgstr ""
352
 
 
353
  msgid "Please enter the language name!"
354
  msgstr ""
355
 
 
356
  msgid "Please enter the language name in English!"
357
  msgstr ""
358
 
 
359
  msgid "Please enter the locale!"
360
  msgstr ""
361
 
 
362
  msgid "Add Language"
363
  msgstr ""
364
 
 
365
  msgid "Delete Language"
366
  msgstr ""
367
 
 
368
  msgid "Edit Language"
369
  msgstr ""
370
 
 
371
  msgid "Language Code"
372
  msgstr ""
373
 
 
374
  msgid "2-Letter ISO Language Code for the Language you want to insert. (Example: en)"
375
  msgstr ""
376
 
 
377
  msgid "Language flag"
378
  msgstr ""
379
 
 
380
  msgid "Name"
381
  msgstr ""
382
 
 
383
  msgid "The name of the language in its native alphabet. (Examples: English, Русский)"
384
  msgstr ""
385
 
 
386
  msgid "Name in English"
387
  msgstr ""
388
 
 
389
  msgid "The name of the language in English"
390
  msgstr ""
391
 
 
392
  msgid "Locale"
393
  msgstr ""
394
 
 
395
  msgid "PHP/WordPress Locale of the language. (Examples: en_US, ru_RU)"
396
  msgstr ""
397
 
 
398
  msgid "Are you sure you want to delete?"
399
  msgstr ""
400
 
 
401
  msgid "Save Changes"
402
  msgstr ""
403
 
 
404
  msgid "Back to the WPGlobus Settings"
405
  msgstr ""
406
 
 
407
  msgid "Current Version"
408
  msgstr ""
409
 
 
410
  msgid "Premium add-on"
411
  msgstr ""
412
 
 
413
  msgid "Installed"
414
  msgstr ""
415
 
 
416
  msgid "Get it now!"
417
  msgstr ""
418
 
419
  #. translators: placeholders are for the HTML tags.
 
420
  msgid "If you have already purchased a WPGlobus premium extension, please read %1$sthe installation instructions here%2$s"
421
  msgstr ""
422
 
 
423
  msgid "Widgets with WPGlobus"
424
  msgstr ""
425
 
 
426
  msgid "Help Desk"
427
  msgstr ""
428
 
 
429
  msgid "Email not sent. Please fill in the entire form."
430
  msgstr ""
431
 
 
432
  msgid "Email not sent. Please verify that your name and email are entered correctly."
433
  msgstr ""
434
 
 
435
  msgid "Email sent."
436
  msgstr ""
437
 
 
438
  msgid "Thank you for using WPGlobus!"
439
  msgstr ""
440
 
 
441
  msgid "Our Support Team is here to answer your questions or concerns."
442
  msgstr ""
443
 
 
444
  msgid "To help us serve you better:"
445
  msgstr ""
446
 
 
447
  msgid "Please check if the problem persists if you switch to a standard WordPress theme."
448
  msgstr ""
449
 
 
450
  msgid "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
451
  msgstr ""
452
 
 
453
  msgid "Please fill in and submit the contact form:"
454
  msgstr ""
455
 
 
456
  msgid "Please make sure the email address is correct."
457
  msgstr ""
458
 
 
459
  msgid "Subject"
460
  msgstr ""
461
 
 
462
  msgid "Short description of the problem"
463
  msgstr ""
464
 
 
465
  msgid "Detailed description"
466
  msgstr ""
467
 
 
468
  msgid "Technical Information"
469
  msgstr ""
470
 
 
471
  msgid "This information helps us to find the problem source"
472
  msgstr ""
473
 
 
474
  msgid "Alternatively, please email %s. Do not forget to copy and paste the technical information to your email message."
475
  msgstr ""
476
 
 
477
  msgid "WPGlobus Recommends:"
478
  msgstr ""
479
 
 
480
  msgid "WPGlobus for WooCommerce"
481
  msgstr ""
482
 
 
483
  msgid "Translate product titles and descriptions, product categories, tags and attributes."
484
  msgstr ""
485
 
 
486
  msgid "Get it now:"
487
  msgstr ""
488
 
 
489
  msgid "WooCommerce Multi-Currency"
490
  msgstr ""
491
 
 
492
  msgid "Accept multiple currencies in your online store!"
493
  msgstr ""
494
 
 
495
  msgid "Check it out:"
496
  msgstr ""
497
 
 
498
  msgid "To translate permalinks, please activate the module Slug."
499
  msgstr ""
500
 
 
501
  msgid "Translate permalinks with our premium add-on, WPGlobus Plus!"
502
  msgstr ""
503
 
504
  #. translators: %1$s - this plugin name. %2$s - the required PHP version.
 
505
  msgid "For %1$s to work correctly, PHP version %2$s or later is required."
506
  msgstr ""
507
 
508
  #. translators: %3$s - the current PHP version.
 
509
  msgid "The PHP version on your server is %3$s."
510
  msgstr ""
511
 
512
  #. translators: %1$s - this plugin name. %2$s - the required WordPress version.
 
513
  msgid "For %1$s to work correctly, WordPress version %2$s or later is required."
514
  msgstr ""
515
 
 
516
  msgid "Save draft before using extra language."
517
  msgstr ""
518
 
 
519
  msgid "Builder"
520
  msgstr ""
521
 
 
522
  msgid "Сompatibility Settings"
523
  msgstr ""
524
 
525
  #. translators: ON/OFF status of WPGlobus on the edit pages.
526
  #. translators: ON/OFF status of WPGlobus on the edit pages.
 
527
  msgid "ON"
528
  msgstr ""
529
 
 
530
  msgid "Turn off"
531
  msgstr ""
532
 
 
533
  msgid "OFF"
534
  msgstr ""
535
 
 
536
  msgid "Turn on"
537
  msgstr ""
538
 
 
539
  msgid "Elementor"
540
  msgstr ""
541
 
 
542
  msgid "WPGlobus languages"
543
  msgstr ""
544
 
 
545
  msgid "current"
546
  msgstr ""
547
 
 
548
  msgid "WPGlobus provides multilingual support for Elementor only when the option %1$s%2$s%3$s is set to %4$s."
549
  msgstr ""
550
 
 
551
  msgid "Before switching the language, please save draft or publish."
552
  msgstr ""
553
 
554
  #. translators: Metabox title FOR language.
 
555
  msgctxt "filter__seo_meta_box_title"
556
  msgid "for"
557
  msgstr ""
558
 
 
559
  msgid "Page is being reloaded. Please wait..."
560
  msgstr ""
561
 
 
562
  msgid "Before switching the language, please save draft or publish, then reload page."
563
  msgstr ""
564
 
 
565
  msgid "WPGlobus provides multilingual support for Elementor only when the option `CSS Print Method` is set to `External File`."
566
  msgstr ""
567
 
 
568
  msgid "Open Elementor Settings page"
569
  msgstr ""
570
 
 
571
  msgid "WPGlobus widget"
572
  msgstr ""
573
 
 
574
  msgid "Add language switcher"
575
  msgstr ""
576
 
 
577
  msgid "Flags"
578
  msgstr ""
579
 
 
580
  msgid "List"
581
  msgstr ""
582
 
 
583
  msgid "List with flags"
584
  msgstr ""
585
 
 
586
  msgid "Select"
587
  msgstr ""
588
 
 
589
  msgid "Select with language code"
590
  msgstr ""
591
 
 
592
  msgid "Dropdown"
593
  msgstr ""
594
 
 
595
  msgid "Dropdown with flags"
596
  msgstr ""
597
 
 
598
  msgid "Selector type"
599
  msgstr ""
600
 
 
601
  msgid "You cannot disable the main language."
602
  msgstr ""
603
 
 
604
  msgid "Need a multilingual slug?"
605
  msgstr ""
606
 
 
607
  msgid "*) Available after the menu is saved."
608
  msgstr ""
609
 
610
  #. translators: %s are for A tags.
 
611
  msgid "To have the %1$sImage%2$s widget varying by language,"
612
  msgstr ""
613
 
614
  #. translators: %s are for A tags.
 
615
  msgid "please use the %1$sWPGlobus language widgets%2$s add-on"
616
  msgstr ""
617
 
 
618
  msgid "You must enable Pretty Permalinks to use WPGlobus."
619
  msgstr ""
620
 
 
621
  msgid "Please go to Settings > Permalinks > Common Settings and choose a non-default option."
622
  msgstr ""
623
 
 
624
  msgid "Language Selector Menu Style"
625
  msgstr ""
626
 
 
627
  msgid "WPGlobus Plus"
628
  msgstr ""
629
 
 
630
  msgid "Drop-down languages menu or Flat (in one line)"
631
  msgstr ""
632
 
 
633
  msgid "Do not change"
634
  msgstr ""
635
 
 
636
  msgid "Drop-down (vertical)"
637
  msgstr ""
638
 
 
639
  msgid "Flat (horizontal)"
640
  msgstr ""
641
 
 
642
  msgid "If you see this message then your browser may not display the WPGlobus Settings panel properly. Please try another browser."
643
  msgstr ""
644
 
 
645
  msgid "Сompatibility"
646
  msgstr ""
647
 
648
  #. translators: placeholders for "strong" tags.
 
649
  msgid "Click the %1$s[Languages]%2$s tab at the left to setup the options."
650
  msgstr ""
651
 
652
  #. translators: placeholders for "strong" tags.
 
653
  msgid "Use the %1$s[Languages Table]%2$s section to add a new language or to edit the language attributes: name, code, flag icon, etc."
654
  msgstr ""
655
 
 
656
  msgid "Important notes"
657
  msgstr ""
658
 
659
  #. translators: placeholders for "strong" tags.
 
660
  msgid "Version %1$s1.9.17%2$s "
661
  msgstr ""
662
 
663
  #. translators: placeholders for "strong" tags.
 
664
  msgid "Starting from this version, %1$sWPGlobus%2$s operates in two modes"
665
  msgstr ""
666
 
667
  #. translators: placeholders for "strong" tags; compatibility tab link.
 
668
  msgid "%1$sBuilder mode%2$s: WPGlobus turns this mode on automatically when it discovers any of the plugins/add-ons listed on the %1$s[%3$s]%2$s tab."
669
  msgstr ""
670
 
671
  #. translators: placeholders for "strong" tags; compatibility tab link.
 
672
  msgid "%1$sStandard/Classic mode%2$s: is used when there are no plugins `Builder` or if you explicitly turned off builder support on the %1$s[%3$s]%2$s tab."
673
  msgstr ""
674
 
675
  #. translators: placeholders for "strong" tags.
 
676
  msgid "Version %1$s2.2.11%2$s "
677
  msgstr ""
678
 
 
679
  msgid "Starting from this version"
680
  msgstr ""
681
 
682
  #. translators: placeholders for "strong" tags.
 
683
  msgid "The %1$sBuilder mode%2$s is turned OFF by default for all custom post types (CPT)."
684
  msgstr ""
685
 
686
  #. translators: placeholders for "strong" tags.
 
687
  msgid "To turn on the %1$sBuilder mode%2$s for specific post types, please visit the %1$s[%3$s]%2$s tab."
688
  msgstr ""
689
 
 
690
  msgid "Welcome!"
691
  msgstr ""
692
 
 
693
  msgid "Deactivating / Uninstalling"
694
  msgstr ""
695
 
 
696
  msgid "Uninstall"
697
  msgstr ""
698
 
 
699
  msgid "All add-ons"
700
  msgstr ""
701
 
 
702
  msgid "Mobile Menu"
703
  msgstr ""
704
 
 
705
  msgid "Language Widgets"
706
  msgstr ""
707
 
 
708
  msgid "We Recommend..."
709
  msgstr ""
710
 
 
711
  msgid "Our premium add-on, WPGlobus Plus, will add several features to your website, such as:"
712
  msgstr ""
713
 
 
714
  msgid "- Ability to write a post in one language and immediately publish it, not waiting for the translation to other languages;"
715
  msgstr ""
716
 
 
717
  msgid "- Set different URLs for each translation;"
718
  msgstr ""
719
 
 
720
  msgid "- In Yoast SEO, set the focus keyword and do the Page Analysis separately for each translation;"
721
  msgstr ""
722
 
 
723
  msgid "- and more..."
724
  msgstr ""
725
 
 
726
  msgid "Click here to download"
727
  msgstr ""
728
 
 
729
  msgid "Thanks for installing WPGlobus! Now you have a multilingual website and can translate your blog posts and pages to many languages."
730
  msgstr ""
731
 
 
732
  msgid "The next step is to translate your WooCommerce-based store!"
733
  msgstr ""
734
 
 
735
  msgid "With the WPGlobus for WooCommerce premium add-on, you will be able to translate product titles and descriptions, categories, tags and attributes."
736
  msgstr ""
737
 
 
738
  msgid "Multi-currency"
739
  msgstr ""
740
 
 
741
  msgid "Your WooCommerce-powered store is set to show prices and accept payments in a single currency only."
742
  msgstr ""
743
 
 
744
  msgid "With WPGlobus, you can add multiple currencies to your store and charge UK customers in Pounds, US customers in Dollars, Spanish clients in Euros, etc. Accepting multiple currencies will strengthen your competitive edge and positioning for global growth!"
745
  msgstr ""
746
 
 
747
  msgid "The WPGlobus Multi-Currency premium add-on provides switching currencies and re-calculating prices on-the-fly."
748
  msgstr ""
749
 
 
750
  msgid "WPGlobus Premium Add-ons"
751
  msgstr ""
752
 
 
753
  msgid "We have written several Premium add-ons for WPGlobus. With those add-ons, you will be able to:"
754
  msgstr ""
755
 
 
756
  msgid "<strong>Translate URLs</strong> (/my-page/ translates to /fr/ma-page, /ru/моя-страница and so on);"
757
  msgstr ""
758
 
 
759
  msgid "Postpone translation to some languages and <strong>publish only the translated texts</strong>;"
760
  msgstr ""
761
 
 
762
  msgid "Maintain <strong>separate menus and widgets for each language</strong>;"
763
  msgstr ""
764
 
 
765
  msgid "<strong>Translate WooCommerce</strong> products and taxonomies;"
766
  msgstr ""
767
 
 
768
  msgid "Enter separate focus keywords for each language in the <strong>Yoast SEO</strong>;"
769
  msgstr ""
770
 
 
771
  msgid "...and more."
772
  msgstr ""
773
 
 
774
  msgid "Click here to visit the WPGlobus Store"
775
  msgstr ""
776
 
 
777
  msgid "Select a language"
778
  msgstr ""
779
 
780
  #. translators: %3$s placeholder for the icon (actual picture).
 
781
  msgid "Place the %1$smain language%2$s of your site at the top of the list by dragging the %3$s icons."
782
  msgstr ""
783
 
784
  #. translators: placeholders for the "strong" HTML tags.
 
785
  msgid "%1$sUncheck%2$s the languages you do not plan to use."
786
  msgstr ""
787
 
788
  #. translators: placeholders for the "strong" HTML tags.
 
789
  msgid "%1$sAdd%2$s more languages using the section below."
790
  msgstr ""
791
 
 
792
  msgid "When done, click the [Save Changes] button."
793
  msgstr ""
794
 
795
  #. translators: %s - placeholder for the "Save Changes" button text.
 
796
  msgid "Press the %s button to confirm."
797
  msgstr ""
798
 
799
  #. translators: dropdown option meaning that none of the navigation menus should show the language selector.
 
800
  msgid "-- none --"
801
  msgstr ""
802
 
 
803
  msgid "All menus"
804
  msgstr ""
805
 
 
806
  msgid "Instructions:"
807
  msgstr ""
808
 
 
809
  msgid "(Found in some themes)"
810
  msgstr ""
811
 
 
812
  msgid "Enable"
813
  msgstr ""
814
 
 
815
  msgid "Languages table"
816
  msgstr ""
817
 
 
818
  msgid "Use this table to add, edit or delete languages."
819
  msgstr ""
820
 
 
821
  msgid "NOTE: you cannot remove the main language."
822
  msgstr ""
823
 
 
824
  msgid "WPGlobus is enabled on these Post Types"
825
  msgstr ""
826
 
 
827
  msgid "Uncheck to disable"
828
  msgstr ""
829
 
 
830
  msgid "Please note that there are post types, which status is managed by other plugins and cannot be changed here."
831
  msgstr ""
832
 
 
833
  msgid "Post Types"
834
  msgstr ""
835
 
 
836
  msgid "You should put here only the code provided by WPGlobus Support. Do not write anything else in the sections below as it might break the functionality of your website!"
837
  msgstr ""
838
 
 
839
  msgid "Custom Code"
840
  msgstr ""
841
 
 
842
  msgid "Enabled"
843
  msgstr ""
844
 
 
845
  msgid "Builders support"
846
  msgstr ""
847
 
 
848
  msgid "Builder mode is enabled on these Post Types"
849
  msgstr ""
850
 
 
851
  msgid "Old fashioned language switcher"
852
  msgstr ""
853
 
 
854
  msgid "Block Editor"
855
  msgstr ""
856
 
 
857
  msgid "Block Editor Options"
858
  msgstr ""
859
 
 
860
  msgid "With the current settings, you will see the following lines in the section HEAD of your site pages"
861
  msgstr ""
862
 
 
863
  msgid "(example for two languages)"
864
  msgstr ""
865
 
 
866
  msgid "Tell search engines about localized versions of your pages using the hreflang tag"
867
  msgstr ""
868
 
 
869
  msgid "Output the hreflang tag as"
870
  msgstr ""
871
 
 
872
  msgid "Language- and region-specific (en-US, ru-RU, etc.)"
873
  msgstr ""
874
 
 
875
  msgid "Language- and region-specific (en-us, ru-ru, etc.)"
876
  msgstr ""
877
 
 
878
  msgid "Language code only (en, ru, etc.)"
879
  msgstr ""
880
 
 
881
  msgid "Use the code `x-default` for the main language"
882
  msgstr ""
883
 
 
884
  msgid "Multilingual SEO"
885
  msgstr ""
886
 
 
887
  msgid "Multilingual SEO Options"
888
  msgstr ""
889
 
 
890
  msgid "With WPGlobus, you can get translations for posts and pages using REST API."
891
  msgstr ""
892
 
 
893
  msgid "Go to %1$s%2$s%3$s to see the content in language: %4$s."
894
  msgstr ""
895
 
 
896
  msgid "For demonstration, you can try the first post that WordPress creates at the initial installation."
897
  msgstr ""
898
 
 
899
  msgid "Please read the %1$sWordPress REST API documentation%2$s for more information."
900
  msgstr ""
901
 
 
902
  msgid "In the REST API response, you can find the %1$stranslation%2$s field, which shows whether translations exist for the fields %1$stitle%2$s, %1$scontent%2$s and %1$sexcerpt%2$s or not, for each language. See the screenshot below:"
903
  msgstr ""
904
 
 
905
  msgid "Description:"
906
  msgstr ""
907
 
 
908
  msgid "REST API"
909
  msgstr ""
910
 
 
911
  msgid "Translate strings"
912
  msgstr ""
913
 
 
914
  msgid "item"
915
  msgstr ""
916
 
 
917
  msgid "items"
918
  msgstr ""
919
 
 
920
  msgid "Code"
921
  msgstr ""
922
 
 
923
  msgid "Edit"
924
  msgstr ""
925
 
 
926
  msgid "Delete"
927
  msgstr ""
928
 
 
929
  msgid "File"
930
  msgstr ""
931
 
 
932
  msgid "Flag"
933
  msgstr ""
934
 
 
935
  msgid "Language name"
936
  msgstr ""
937
 
 
938
  msgid "English language name"
939
  msgstr ""
940
 
 
941
  msgid "No items found"
942
  msgstr ""
943
 
 
944
  msgid "Add new Language"
945
  msgstr ""
946
 
 
947
  msgid "No items of this type were found."
948
  msgstr ""
949
 
 
950
  msgid "Select an item"
951
  msgstr ""
952
 
 
953
  msgid "Multilingual support of this add-on is currently in Beta stage."
954
  msgstr ""
955
 
 
956
  msgid "We do not recommend using it on production sites."
957
  msgstr ""
958
 
 
959
  msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
960
  msgstr ""
961
 
 
962
  msgid "WordPress version"
963
  msgstr ""
964
 
 
965
  msgid "In the WordPress core"
966
  msgstr ""
967
 
 
968
  msgid "Core"
969
  msgstr ""
970
 
 
971
  msgid "Current version"
972
  msgstr ""
973
 
 
974
  msgid "Stage"
975
  msgstr ""
976
 
 
977
  msgid "Status"
978
  msgstr ""
979
 
 
980
  msgid "Block editor"
981
  msgstr ""
982
 
 
983
  msgid "production"
984
  msgstr ""
985
 
 
986
  msgid "List of supported add-ons"
987
  msgstr ""
988
 
 
989
  msgid "Add-on"
990
  msgstr ""
991
 
 
992
  msgid "Supported minimum version"
993
  msgstr ""
994
 
 
995
  msgid "Not installed"
996
  msgstr ""
997
 
 
998
  msgid "Installed, inactive"
999
  msgstr ""
1000
 
 
1001
  msgid "Active"
1002
  msgstr ""
1003
 
 
1004
  msgid "WPGlobus Customizer is integrated into the Customize Theme panel"
1005
  msgstr ""
1006
 
 
1007
  msgid "However, some themes do not follow all WordPress standards strictly."
1008
  msgstr ""
1009
 
 
1010
  msgid "WPGlobus Customizer may behave incorrectly with those themes."
1011
  msgstr ""
1012
 
 
1013
  msgid "To avoid conflicts, you can switch the WPGlobus Customizer off:"
1014
  msgstr ""
1015
 
 
1016
  msgid "Below is the list of themes that do not support the WPGlobus Customizer. With those themes, WPGlobus Customizer is switched off by default"
1017
  msgstr ""
1018
 
 
1019
  msgid "The currently active theme is"
1020
  msgstr ""
1021
 
 
1022
  msgid "In the current version, WPGlobus Customizer does not support"
1023
  msgstr ""
1024
 
 
1025
  msgid "translation of the navigation menus"
1026
  msgstr ""
1027
 
 
1028
  msgid "to translate, please go to"
1029
  msgstr ""
1030
 
 
1031
  msgid "Go to Customizer"
1032
  msgstr ""
1033
 
 
1034
  msgid "is undefined"
1035
  msgstr ""
1036
 
 
1037
  msgid "is set to"
1038
  msgstr ""
1039
 
 
1040
  msgid "by adding to the file wp-config.php"
1041
  msgstr ""
1042
 
 
1043
  msgid "now"
1044
  msgstr ""
1045
 
 
1046
  msgid "We rely on your support!"
1047
  msgstr ""
1048
 
 
1049
  msgid "Please consider a small donation to support the future development."
1050
  msgstr ""
1051
 
 
1052
  msgid "Thank you!"
1053
  msgstr ""
1054
 
 
1055
  msgid "WPGlobus Plus!"
1056
  msgstr ""
1057
 
 
1058
  msgid "Advanced features and tweaks: URL translation, multilingual SEO analysis, separate publishing and more! "
1059
  msgstr ""
1060
 
 
1061
  msgid "Get WPGlobus Plus now!"
1062
  msgstr ""
1063
 
1064
  #. translators: %s are for A tags.
 
1065
  msgid "Use as multilingual with %1$sWPGlobus%2$s"
1066
  msgstr ""
1067
 
 
1068
  msgid "Multilingual"
1069
  msgstr ""
1070
 
1071
  #. translators: %s are for A tags.
 
1072
  msgid "To use this field, please activate the %1$sACF Plus%2$s module"
1073
  msgstr ""
1074
 
 
1075
  msgid "Bulk editing of the multilingual titles and descriptions is not supported by the current version."
1076
  msgstr ""
1077
 
 
1078
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1079
  msgstr ""
1080
 
 
1081
  msgid "WPGlobus warning: "
1082
  msgstr ""
1083
 
 
1084
  msgid "https://github.com/WPGlobus/WPGlobus"
1085
  msgstr ""
1086
 
 
1087
  msgid "A WordPress Globalization / Multilingual Plugin. Posts, pages, menus, widgets and even custom fields - in multiple languages!"
1088
  msgstr ""
1089
 
 
1090
  msgid "https://wpglobus.com/"
1091
  msgstr ""
1
+ # Copyright (C) 2021 WPGlobus 2.7.9
2
+ # This file is distributed under the same license as the WPGlobus 2.7.9 package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: WPGlobus 2.7.9\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
10
  "Report-Msgid-Bugs-To: support@wpglobus.com\n"
11
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
12
 
13
+ #: includes/admin/central/class-wpglobus-admin-central.php:122, includes/admin/class-wpglobus-about.php:42, includes/admin/class-wpglobus-about.php:117, includes/admin/class-wpglobus-clean.php:600, includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:43
14
  msgid "Guide"
15
  msgstr ""
16
 
17
+ #: includes/admin/central/class-wpglobus-admin-central.php:142, includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:102
18
  msgid "WPGlobus Help Desk"
19
  msgstr ""
20
 
21
+ #: includes/admin/central/class-wpglobus-admin-central.php:157, includes/admin/class-wpglobus-about.php:36, includes/admin/class-wpglobus-admin-menu.php:22, includes/admin/class-wpglobus-clean.php:606, includes/admin/class-wpglobus-customize-options.php:1329, includes/admin/class-wpglobus-customize-options.php:1297, includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:37
22
  msgid "Add-ons"
23
  msgstr ""
24
 
25
+ #: includes/admin/class-wpglobus-about.php:26
26
  msgid "Quick Start"
27
  msgstr ""
28
 
29
+ #: includes/admin/class-wpglobus-about.php:48, includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:49
30
  msgid "FAQ"
31
  msgstr ""
32
 
33
+ #: includes/admin/class-wpglobus-about.php:59
34
  msgid "Attention: the Multibyte String PHP extension (`mbstring`) is not loaded!"
35
  msgstr ""
36
 
37
+ #: includes/admin/class-wpglobus-about.php:60
38
  msgid "The mbstring extension is required for the full UTF-8 compatibility and better performance. Without it, some parts of WordPress and WPGlobus may function incorrectly. Please contact your hosting company or systems administrator."
39
  msgstr ""
40
 
41
+ #: includes/admin/class-wpglobus-about.php:87
42
  msgid "Go to WPGlobus Settings"
43
  msgstr ""
44
 
45
+ #: includes/admin/class-wpglobus-about.php:98
46
  msgid "Easy as 1-2-3:"
47
  msgstr ""
48
 
49
+ #: includes/admin/class-wpglobus-about.php:101
50
  msgid "Go to WPGlobus admin menu and choose the countries / languages;"
51
  msgstr ""
52
 
53
+ #: includes/admin/class-wpglobus-about.php:102
54
  msgid "Enter the translations to the posts, pages, categories, tags and menus using a clean and simple interface."
55
  msgstr ""
56
 
57
+ #: includes/admin/class-wpglobus-about.php:103
58
  msgid "Switch languages at the front-end using a drop-down menu with language names and country flags."
59
  msgstr ""
60
 
61
+ #: includes/admin/class-wpglobus-about.php:111
62
  msgid "Links:"
63
  msgstr ""
64
 
65
+ #: includes/admin/class-wpglobus-about.php:119
66
  msgid "FAQs"
67
  msgstr ""
68
 
69
+ #: includes/admin/class-wpglobus-about.php:121
70
  msgid "Contact Us"
71
  msgstr ""
72
 
73
+ #: includes/admin/class-wpglobus-about.php:123
74
  msgid "Please give us 5 stars!"
75
  msgstr ""
76
 
77
+ #: includes/admin/class-wpglobus-about.php:133
78
  msgid "WPGlobus does not translate texts automatically!"
79
  msgstr ""
80
 
81
+ #: includes/admin/class-wpglobus-about.php:136
82
  msgid "There are many translation companies and individual translators who can help you write and proofread the texts."
83
  msgstr ""
84
 
85
+ #: includes/admin/class-wpglobus-about.php:137
86
  msgid "When you choose a translator, please look at their native language, country of residence, specialization and knowledge of WordPress."
87
  msgstr ""
88
 
89
  #. translators: %s are used to insert HTML link. Keep them in place.
90
+ #: includes/admin/class-wpglobus-about.php:143
91
  msgid "We are planning to maintain a %s list of translators %s on the WPGlobus website. This is not an endorsement, just a courtesy. Please contact them directly and let us know how did it work for you!"
92
  msgstr ""
93
 
94
+ #: includes/admin/class-wpglobus-about.php:154
95
  msgid "Important notes:"
96
  msgstr ""
97
 
98
+ #: includes/admin/class-wpglobus-about.php:159
99
  msgid "WPGlobus only supports the localization URLs in the form of <code>example.com/xx/page/</code>. We do not plan to support subdomains <code>xx.example.com</code> and language queries <code>example.com?lang=xx</code>."
100
  msgstr ""
101
 
102
+ #: includes/admin/class-wpglobus-about.php:162
103
  msgid "Some themes and plugins are <strong>not multilingual-ready</strong>."
104
  msgstr ""
105
 
106
+ #: includes/admin/class-wpglobus-about.php:163
107
  msgid "They might display some texts with no translation, or with all languages mixed together."
108
  msgstr ""
109
 
110
  #. translators: %s are used to insert HTML link. Keep them in place.
111
+ #: includes/admin/class-wpglobus-about.php:167
112
  msgid "Please contact the theme / plugin author. If they are unable to assist, consider %s hiring the WPGlobus Team %s to write a custom code for you."
113
  msgstr ""
114
 
115
+ #: includes/admin/class-wpglobus-admin-bar-menu.php:124
116
  msgid "Language was set on your profile page"
117
  msgstr ""
118
 
119
+ #: includes/admin/class-wpglobus-admin-bar-menu.php:194
120
  msgid "Add"
121
  msgstr ""
122
 
123
+ #: includes/admin/class-wpglobus-admin-page.php:32, includes/admin/class-wpglobus-clean.php:585
124
  msgid "Multilingual Everything!"
125
  msgstr ""
126
 
127
+ #: includes/admin/class-wpglobus-admin-page.php:34, includes/admin/class-wpglobus-clean.php:588
128
  msgid "WPGlobus is a family of WordPress plugins assisting you in making multilingual WordPress blogs and sites."
129
  msgstr ""
130
 
131
+ #: includes/admin/class-wpglobus-clean.php:232
132
  msgid "Remove the WPGlobus settings (not recommended)"
133
  msgstr ""
134
 
135
+ #: includes/admin/class-wpglobus-clean.php:595
136
  msgid "Clean-up Tool"
137
  msgstr ""
138
 
139
+ #: includes/admin/class-wpglobus-clean.php:609
140
  msgid "Support"
141
  msgstr ""
142
 
143
+ #: includes/admin/class-wpglobus-clean.php:614
144
  msgid "WARNING: this operation is non-reversible. It is strongly recommended that you backup your database before proceeding."
145
  msgstr ""
146
 
147
+ #: includes/admin/class-wpglobus-clean.php:619
148
  msgid "This tool should be used only if you plan to completely uninstall WPGlobus. By running it, you will remove ALL translations you have entered to your post, pages, etc., keeping only the MAIN language texts. Please make sure that all entries have some content in the main language. Otherwise, you might end up with empty titles, no content, no excerpts, blank comments and so on."
149
  msgstr ""
150
 
151
+ #: includes/admin/class-wpglobus-clean.php:622
152
  msgid "Make sure that your active theme does not have any code related to WPGlobus. Such code could be added by you or by a 3rd party developer. If that code runs without first verifying that WPGlobus is active, WordPress may die with a fatal error."
153
  msgstr ""
154
 
155
  #. translators: %1$s - language name, %2$s - language code. Do not remove.
156
+ #: includes/admin/class-wpglobus-clean.php:630
157
  msgid "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN %1$s WILL BE DELETED! To change the main language, please go to {{settings}}."
158
  msgstr ""
159
 
160
+ #: includes/admin/class-wpglobus-clean.php:641
161
  msgid "You are about to clean the content of the following database tables:"
162
  msgstr ""
163
 
164
+ #: includes/admin/class-wpglobus-clean.php:649
165
  msgid "The operations log"
166
  msgstr ""
167
 
168
+ #: includes/admin/class-wpglobus-clean.php:652
169
  msgid "We are going to write a detailed log of all the database changes performed. It should help in the case you need to restore something important. The log will be written to the file:"
170
  msgstr ""
171
 
172
+ #: includes/admin/class-wpglobus-clean.php:662
173
  msgid "Uncheck if you do not want to write the operations log (we recommend to keep it checked)"
174
  msgstr ""
175
 
176
+ #: includes/admin/class-wpglobus-clean.php:667
177
  msgid "You have been warned..."
178
  msgstr ""
179
 
180
+ #: includes/admin/class-wpglobus-clean.php:669
181
  msgid "Please confirm by checking the box below:"
182
  msgstr ""
183
 
184
+ #: includes/admin/class-wpglobus-clean.php:671
185
  msgid "I have read and understood everything written on this page. I am aware that by using this tool I may loose some content of my website. I have made a database backup and know how to restore it if necessary. I am fully responsible for the results."
186
  msgstr ""
187
 
188
+ #: includes/admin/class-wpglobus-clean.php:674
189
  msgid "YES, I CONFIRM"
190
  msgstr ""
191
 
192
+ #: includes/admin/class-wpglobus-clean.php:678
193
  msgid "Process with the Clean-up"
194
  msgstr ""
195
 
196
+ #: includes/admin/class-wpglobus-customize-options.php:75, includes/admin/class-wpglobus-customize-options.php:102, includes/admin/class-wpglobus-customize-options.php:147, includes/admin/class-wpglobus-customize-options.php:185
197
  msgid "Default"
198
  msgstr ""
199
 
200
+ #: includes/admin/class-wpglobus-customize-options.php:266
201
  msgid "Section"
202
  msgstr ""
203
 
204
+ #: includes/admin/class-wpglobus-customize-options.php:279
205
  msgid "Show all sections"
206
  msgstr ""
207
 
208
+ #: includes/admin/class-wpglobus-customize-options.php:289
209
  msgid "Check/Uncheck all"
210
  msgstr ""
211
 
212
+ #: includes/admin/class-wpglobus-customize-options.php:291, includes/admin/class-wpglobus-customize-options.php:1383
213
  msgid "Save &amp; Reload"
214
  msgstr ""
215
 
216
+ #: includes/admin/class-wpglobus-customize-options.php:585, includes/builders/gutenberg/class-wpglobus-gutenberg.php:585, includes/class-wpglobus.php:1312, wpglobus.php:12, wpglobus.php:18
217
  msgid "WPGlobus"
218
  msgstr ""
219
 
220
+ #: includes/admin/class-wpglobus-customize-options.php:636
221
  msgid "You need to update WordPress to 4.5 or later to get Fields Settings section"
222
  msgstr ""
223
 
224
+ #: includes/admin/class-wpglobus-customize-options.php:646
225
  msgid "Fields Settings"
226
  msgstr ""
227
 
228
+ #: includes/admin/class-wpglobus-customize-options.php:691
229
  msgid "WPGlobus Settings"
230
  msgstr ""
231
 
232
+ #: includes/admin/class-wpglobus-customize-options.php:759
233
  msgid "Help"
234
  msgstr ""
235
 
236
+ #: includes/admin/class-wpglobus-customize-options.php:781, includes/options/class-wpglobus-options.php:1176
237
  msgid "Languages"
238
  msgstr ""
239
 
240
+ #: includes/admin/class-wpglobus-customize-options.php:801, includes/options/class-wpglobus-options.php:1189
241
  msgid "Enabled Languages"
242
  msgstr ""
243
 
244
+ #: includes/admin/class-wpglobus-customize-options.php:803, includes/options/class-wpglobus-options.php:1190
245
  msgid "These languages are currently enabled on your site."
246
  msgstr ""
247
 
248
+ #: includes/admin/class-wpglobus-customize-options.php:831, includes/options/class-wpglobus-options.php:1148
249
  msgid "Choose a language you would like to enable."
250
  msgstr ""
251
 
252
+ #: includes/admin/class-wpglobus-customize-options.php:833
253
  msgid "Press the [Save & Publish] button to confirm."
254
  msgstr ""
255
 
256
  #. translators: %1$s and %2$s - placeholders to insert HTML link around 'here'
257
  #. translators: %1$s and %2$s - placeholders to insert HTML link around 'here'.
258
+ #: includes/admin/class-wpglobus-customize-options.php:837, includes/options/class-wpglobus-options.php:1154
259
  msgid "or Add new Language %1$s here %2$s"
260
  msgstr ""
261
 
262
+ #: includes/admin/class-wpglobus-customize-options.php:849, includes/options/class-wpglobus-options.php:1203
263
  msgid "Add Languages"
264
  msgstr ""
265
 
266
+ #: includes/admin/class-wpglobus-customize-options.php:869, includes/options/class-wpglobus-options.php:1211
267
  msgid "Language Selector Mode"
268
  msgstr ""
269
 
270
+ #: includes/admin/class-wpglobus-customize-options.php:874, includes/options/class-wpglobus-options.php:1214
271
  msgid "Two-letter Code with flag (en, ru, it, etc.)"
272
  msgstr ""
273
 
274
+ #: includes/admin/class-wpglobus-customize-options.php:875, includes/options/class-wpglobus-options.php:1215
275
  msgid "Full Name (English, Russian, Italian, etc.)"
276
  msgstr ""
277
 
278
+ #: includes/admin/class-wpglobus-customize-options.php:877, includes/options/class-wpglobus-options.php:1216
279
  msgid "Full Name with flag (English, Russian, Italian, etc.)"
280
  msgstr ""
281
 
282
+ #: includes/admin/class-wpglobus-customize-options.php:878, includes/options/class-wpglobus-options.php:1217
283
  msgid "Flags only"
284
  msgstr ""
285
 
286
+ #: includes/admin/class-wpglobus-customize-options.php:880, includes/options/class-wpglobus-options.php:1212
287
  msgid "Choose the way language name and country flag are shown in the drop-down menu"
288
  msgstr ""
289
 
290
+ #: includes/admin/class-wpglobus-customize-options.php:915
291
  msgid "select navigation menu"
292
  msgstr ""
293
 
294
+ #: includes/admin/class-wpglobus-customize-options.php:951, includes/admin/class-wpglobus-customize-options.php:924, includes/options/class-wpglobus-options.php:1230
295
  msgid "Language Selector Menu"
296
  msgstr ""
297
 
298
+ #: includes/admin/class-wpglobus-customize-options.php:956, includes/admin/class-wpglobus-customize-options.php:935, includes/options/class-wpglobus-options.php:1231
299
  msgid "Choose the navigation menu where the language selector will be shown"
300
  msgstr ""
301
 
302
+ #: includes/admin/class-wpglobus-customize-options.php:934
303
  msgid "No menus have been created yet. Create some."
304
  msgstr ""
305
 
306
+ #: includes/admin/class-wpglobus-customize-options.php:976, includes/options/class-wpglobus-options.php:1241
307
  msgid "\"All Pages\" menus Language selector"
308
  msgstr ""
309
 
310
+ #: includes/admin/class-wpglobus-customize-options.php:979, includes/options/class-wpglobus-options.php:1243
311
  msgid "Adds language selector to the menus that automatically list all existing pages (using `wp_list_pages`)"
312
  msgstr ""
313
 
314
+ #: includes/admin/class-wpglobus-customize-options.php:996, includes/options/class-wpglobus-options.php:1356
315
  msgid "Custom CSS"
316
  msgstr ""
317
 
318
+ #: includes/admin/class-wpglobus-customize-options.php:1000
319
  msgid "Here you can enter the CSS rules to adjust the language selector menu for your theme. Look at the examples in the `style-samples.css` file."
320
  msgstr ""
321
 
322
+ #: includes/admin/class-wpglobus-customize-options.php:1019
323
  msgid "Post types"
324
  msgstr ""
325
 
326
+ #: includes/admin/class-wpglobus-customize-options.php:1127
327
  msgid "Uncheck to disable WPGlobus"
328
  msgstr ""
329
 
330
+ #: includes/admin/class-wpglobus-customize-options.php:1161, includes/options/class-wpglobus-options.php:1424
331
  msgid "Redirect"
332
  msgstr ""
333
 
334
+ #: includes/admin/class-wpglobus-customize-options.php:1186, includes/options/class-wpglobus-options.php:1419
335
  msgid "Choose the language automatically, based on:"
336
  msgstr ""
337
 
338
+ #: includes/admin/class-wpglobus-customize-options.php:1188, includes/options/class-wpglobus-options.php:1409
339
  msgid "Preferred language set in the browser"
340
  msgstr ""
341
 
342
+ #: includes/admin/class-wpglobus-customize-options.php:1189, includes/options/class-wpglobus-options.php:1396
343
  msgid "When a user comes to the site for the first time, try to find the best matching language version of the page."
344
  msgstr ""
345
 
346
+ #: includes/admin/class-wpglobus-customize-options.php:1250, includes/admin/class-wpglobus-customize-options.php:1270, includes/admin/class-wpglobus-customize-options.php:1228, includes/options/class-wpglobus-options.php:1368
347
  msgid "Custom JS Code"
348
  msgstr ""
349
 
350
+ #: includes/admin/class-wpglobus-customize-options.php:1268, includes/admin/class-wpglobus-customize-options.php:1312
351
  msgid "Title"
352
  msgstr ""
353
 
354
+ #: includes/admin/class-wpglobus-customize-options.php:1271
355
  msgid "(Paste your JS code here.)"
356
  msgstr ""
357
 
358
+ #: includes/admin/class-wpglobus-customize-options.php:1220
359
  msgid "To add a Custom JS Code in Customizer, you need to upgrade WordPress to version 4.9 or later."
360
  msgstr ""
361
 
362
+ #: includes/admin/class-wpglobus-customize-options.php:1222
363
  msgid "With your version of WordPress, please use the"
364
  msgstr ""
365
 
366
+ #: includes/admin/class-wpglobus-customize-options.php:1224
367
  msgid "WPGlobus Settings page"
368
  msgstr ""
369
 
370
+ #: includes/admin/class-wpglobus-customize-options.php:1313
371
  msgid "Label"
372
  msgstr ""
373
 
374
+ #: includes/admin/class-wpglobus-customize-options.php:1317
375
  msgid "Description"
376
  msgstr ""
377
 
378
+ #: includes/admin/class-wpglobus-customize-options.php:1382
379
  msgid "Here you can specify which fields should be considered multilingual by WPGlobus. To exclude a field, uncheck it and then press the button %s below."
380
  msgstr ""
381
 
382
+ #: includes/admin/class-wpglobus-customize-options.php:1390, includes/options/class-wpglobus-options.php:608
383
  msgid "Thank you for installing WPGlobus!"
384
  msgstr ""
385
 
386
+ #: includes/admin/class-wpglobus-customize-options.php:1394, includes/options/class-wpglobus-options.php:612
387
  msgid "Read About WPGlobus"
388
  msgstr ""
389
 
390
+ #: includes/admin/class-wpglobus-customize-options.php:1397
391
  msgid "Click the <strong>[Languages]</strong> tab at the left to setup the options."
392
  msgstr ""
393
 
394
+ #: includes/admin/class-wpglobus-customize-options.php:1402, includes/options/class-wpglobus-options.php:648
395
  msgid "Should you have any questions or comments, please do not hesitate to contact us."
396
  msgstr ""
397
 
398
+ #: includes/admin/class-wpglobus-customize-options.php:1406, includes/options/class-wpglobus-options.php:652
399
  msgid "Sincerely Yours,"
400
  msgstr ""
401
 
402
+ #: includes/admin/class-wpglobus-customize-options.php:1408, includes/options/class-wpglobus-options.php:654, includes/options/wpglobus-options-header.php:34
403
  msgid "The WPGlobus Team"
404
  msgstr ""
405
 
406
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
407
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
408
+ #: includes/admin/class-wpglobus-customize-options.php:1427, includes/options/class-wpglobus-options.php:689
409
  msgid "We would hate to see you go. If something goes wrong, do not uninstall WPGlobus yet. Please %1$stalk to us%2$s and let us help!"
410
  msgstr ""
411
 
412
+ #: includes/admin/class-wpglobus-customize-options.php:1434, includes/options/class-wpglobus-options.php:696
413
  msgid "Please note that if you deactivate WPGlobus, your site will show all the languages together, mixed up. You will need to remove all translations, keeping only one language."
414
  msgstr ""
415
 
416
  #. translators: %s: link to the Clean-up Tool
417
  #. translators: %s: link to the Clean-up Tool.
418
+ #: includes/admin/class-wpglobus-customize-options.php:1439, includes/options/class-wpglobus-options.php:700
419
  msgid "If there are just a few places, you should edit them manually. To automatically remove all translations at once, you can use the %s. WARNING: The clean-up operation is irreversible, so use it only if you need to completely uninstall WPGlobus."
420
  msgstr ""
421
 
422
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
423
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
424
+ #: includes/admin/class-wpglobus-customize-options.php:1442, includes/options/class-wpglobus-options.php:677
425
  msgid "%1$sClean-up Tool%2$s"
426
  msgstr ""
427
 
428
  #. translators: %s: name of current theme
429
+ #: includes/admin/class-wpglobus-customize-options.php:1454
430
  msgid "Sorry, WPGlobus customizer doesn't support current theme %s."
431
  msgstr ""
432
 
433
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
434
+ #: includes/admin/class-wpglobus-customize-options.php:1460
435
  msgid "Please use %1$sWPGlobus options page%2$s instead."
436
  msgstr ""
437
 
438
+ #: includes/admin/class-wpglobus-customize-options.php:1524
439
  msgid "Expand/Shrink"
440
  msgstr ""
441
 
442
+ #: includes/admin/class-wpglobus-dashboard-news.php:43, includes/admin/class-wpglobus-dashboard-news.php:59
443
  msgid "WPGlobus News"
444
  msgstr ""
445
 
446
+ #: includes/admin/class-wpglobus-language-edit.php:197, includes/admin/class-wpglobus-language-edit.php:192
447
  msgid "Options updated"
448
  msgstr ""
449
 
450
+ #: includes/admin/class-wpglobus-language-edit.php:272
451
  msgid "Please enter a language code!"
452
  msgstr ""
453
 
454
+ #: includes/admin/class-wpglobus-language-edit.php:276
455
  msgid "Language code already exists!"
456
  msgstr ""
457
 
458
+ #: includes/admin/class-wpglobus-language-edit.php:280
459
  msgid "Please specify the language flag!"
460
  msgstr ""
461
 
462
+ #: includes/admin/class-wpglobus-language-edit.php:284
463
  msgid "Please enter the language name!"
464
  msgstr ""
465
 
466
+ #: includes/admin/class-wpglobus-language-edit.php:288
467
  msgid "Please enter the language name in English!"
468
  msgstr ""
469
 
470
+ #: includes/admin/class-wpglobus-language-edit.php:292
471
  msgid "Please enter the locale!"
472
  msgstr ""
473
 
474
+ #: includes/admin/class-wpglobus-language-edit.php:354
475
  msgid "Add Language"
476
  msgstr ""
477
 
478
+ #: includes/admin/class-wpglobus-language-edit.php:351, includes/admin/class-wpglobus-language-edit.php:462, includes/admin/class-wpglobus-language-edit.php:455
479
  msgid "Delete Language"
480
  msgstr ""
481
 
482
+ #: includes/admin/class-wpglobus-language-edit.php:349
483
  msgid "Edit Language"
484
  msgstr ""
485
 
486
+ #: includes/admin/class-wpglobus-language-edit.php:384
487
  msgid "Language Code"
488
  msgstr ""
489
 
490
+ #: includes/admin/class-wpglobus-language-edit.php:391
491
  msgid "2-Letter ISO Language Code for the Language you want to insert. (Example: en)"
492
  msgstr ""
493
 
494
+ #: includes/admin/class-wpglobus-language-edit.php:396
495
  msgid "Language flag"
496
  msgstr ""
497
 
498
+ #: includes/admin/class-wpglobus-language-edit.php:412
499
  msgid "Name"
500
  msgstr ""
501
 
502
+ #: includes/admin/class-wpglobus-language-edit.php:417
503
  msgid "The name of the language in its native alphabet. (Examples: English, Русский)"
504
  msgstr ""
505
 
506
+ #: includes/admin/class-wpglobus-language-edit.php:422
507
  msgid "Name in English"
508
  msgstr ""
509
 
510
+ #: includes/admin/class-wpglobus-language-edit.php:427
511
  msgid "The name of the language in English"
512
  msgstr ""
513
 
514
+ #: includes/admin/class-wpglobus-language-edit.php:432, includes/options/fields/table/class-wpglobus-languages-table.php:115
515
  msgid "Locale"
516
  msgstr ""
517
 
518
+ #: includes/admin/class-wpglobus-language-edit.php:437
519
  msgid "PHP/WordPress Locale of the language. (Examples: en_US, ru_RU)"
520
  msgstr ""
521
 
522
+ #: includes/admin/class-wpglobus-language-edit.php:460
523
  msgid "Are you sure you want to delete?"
524
  msgstr ""
525
 
526
+ #: includes/admin/class-wpglobus-language-edit.php:447
527
  msgid "Save Changes"
528
  msgstr ""
529
 
530
+ #: includes/admin/class-wpglobus-language-edit.php:470
531
  msgid "Back to the WPGlobus Settings"
532
  msgstr ""
533
 
534
+ #: includes/admin/class-wpglobus-plugin-install.php:322
535
  msgid "Current Version"
536
  msgstr ""
537
 
538
+ #: includes/admin/class-wpglobus-plugin-install.php:323
539
  msgid "Premium add-on"
540
  msgstr ""
541
 
542
+ #: includes/admin/class-wpglobus-plugin-install.php:324, includes/options/fields/table/class-wpglobus-languages-table.php:472
543
  msgid "Installed"
544
  msgstr ""
545
 
546
+ #: includes/admin/class-wpglobus-plugin-install.php:331
547
  msgid "Get it now!"
548
  msgstr ""
549
 
550
  #. translators: placeholders are for the HTML tags.
551
+ #: includes/admin/class-wpglobus-plugin-install.php:339
552
  msgid "If you have already purchased a WPGlobus premium extension, please read %1$sthe installation instructions here%2$s"
553
  msgstr ""
554
 
555
+ #: includes/admin/gutenberg/class-wpglobus-admin-gutenberg.php:54, includes/admin/gutenberg/class-wpglobus-admin-gutenberg.php:55
556
  msgid "Widgets with WPGlobus"
557
  msgstr ""
558
 
559
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:103, includes/options/class-wpglobus-options.php:726
560
  msgid "Help Desk"
561
  msgstr ""
562
 
563
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:185
564
  msgid "Email not sent. Please fill in the entire form."
565
  msgstr ""
566
 
567
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:195
568
  msgid "Email not sent. Please verify that your name and email are entered correctly."
569
  msgstr ""
570
 
571
+ #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:216
572
  msgid "Email sent."
573
  msgstr ""
574
 
575
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:68
576
  msgid "Thank you for using WPGlobus!"
577
  msgstr ""
578
 
579
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:69
580
  msgid "Our Support Team is here to answer your questions or concerns."
581
  msgstr ""
582
 
583
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:71
584
  msgid "To help us serve you better:"
585
  msgstr ""
586
 
587
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:73
588
  msgid "Please check if the problem persists if you switch to a standard WordPress theme."
589
  msgstr ""
590
 
591
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:74
592
  msgid "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
593
  msgstr ""
594
 
595
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:77
596
  msgid "Please fill in and submit the contact form:"
597
  msgstr ""
598
 
599
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:97
600
  msgid "Please make sure the email address is correct."
601
  msgstr ""
602
 
603
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:103
604
  msgid "Subject"
605
  msgstr ""
606
 
607
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:108
608
  msgid "Short description of the problem"
609
  msgstr ""
610
 
611
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:113
612
  msgid "Detailed description"
613
  msgstr ""
614
 
615
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:120
616
  msgid "Technical Information"
617
  msgstr ""
618
 
619
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:127
620
  msgid "This information helps us to find the problem source"
621
  msgstr ""
622
 
623
+ #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:161
624
  msgid "Alternatively, please email %s. Do not forget to copy and paste the technical information to your email message."
625
  msgstr ""
626
 
627
+ #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:104
628
  msgid "WPGlobus Recommends:"
629
  msgstr ""
630
 
631
+ #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:113, includes/options/class-wpglobus-options.php:933
632
  msgid "WPGlobus for WooCommerce"
633
  msgstr ""
634
 
635
+ #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:117
636
  msgid "Translate product titles and descriptions, product categories, tags and attributes."
637
  msgstr ""
638
 
639
+ #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:122
640
  msgid "Get it now:"
641
  msgstr ""
642
 
643
+ #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:132
644
  msgid "WooCommerce Multi-Currency"
645
  msgstr ""
646
 
647
+ #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:136
648
  msgid "Accept multiple currencies in your online store!"
649
  msgstr ""
650
 
651
+ #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:141, includes/admin/recommendations/class-wpglobus-admin-recommendations.php:200
652
  msgid "Check it out:"
653
  msgstr ""
654
 
655
+ #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:210
656
  msgid "To translate permalinks, please activate the module Slug."
657
  msgstr ""
658
 
659
+ #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:198
660
  msgid "Translate permalinks with our premium add-on, WPGlobus Plus!"
661
  msgstr ""
662
 
663
  #. translators: %1$s - this plugin name. %2$s - the required PHP version.
664
+ #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:282
665
  msgid "For %1$s to work correctly, PHP version %2$s or later is required."
666
  msgstr ""
667
 
668
  #. translators: %3$s - the current PHP version.
669
+ #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:284
670
  msgid "The PHP version on your server is %3$s."
671
  msgstr ""
672
 
673
  #. translators: %1$s - this plugin name. %2$s - the required WordPress version.
674
+ #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:299
675
  msgid "For %1$s to work correctly, WordPress version %2$s or later is required."
676
  msgstr ""
677
 
678
+ #: includes/builders/class-wpglobus-builder.php:278, includes/class-wpglobus.php:3591
679
  msgid "Save draft before using extra language."
680
  msgstr ""
681
 
682
+ #: includes/builders/class-wpglobus-builder.php:371
683
  msgid "Builder"
684
  msgstr ""
685
 
686
+ #: includes/builders/class-wpglobus-builder.php:395
687
  msgid "Сompatibility Settings"
688
  msgstr ""
689
 
690
  #. translators: ON/OFF status of WPGlobus on the edit pages.
691
  #. translators: ON/OFF status of WPGlobus on the edit pages.
692
+ #: includes/builders/elementor/class-wpglobus-elementor.php:255, includes/class-wpglobus.php:1291
693
  msgid "ON"
694
  msgstr ""
695
 
696
+ #: includes/builders/elementor/class-wpglobus-elementor.php:256, includes/class-wpglobus.php:1292
697
  msgid "Turn off"
698
  msgstr ""
699
 
700
+ #: includes/builders/elementor/class-wpglobus-elementor.php:250, includes/class-wpglobus.php:1286
701
  msgid "OFF"
702
  msgstr ""
703
 
704
+ #: includes/builders/elementor/class-wpglobus-elementor.php:251, includes/class-wpglobus.php:1287
705
  msgid "Turn on"
706
  msgstr ""
707
 
708
+ #: includes/builders/elementor/class-wpglobus-elementor.php:281
709
  msgid "Elementor"
710
  msgstr ""
711
 
712
+ #: includes/builders/elementor/class-wpglobus-elementor.php:508
713
  msgid "WPGlobus languages"
714
  msgstr ""
715
 
716
+ #: includes/builders/elementor/class-wpglobus-elementor.php:514
717
  msgid "current"
718
  msgstr ""
719
 
720
+ #: includes/builders/elementor/class-wpglobus-elementor.php:675
721
  msgid "WPGlobus provides multilingual support for Elementor only when the option %1$s%2$s%3$s is set to %4$s."
722
  msgstr ""
723
 
724
+ #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:228
725
  msgid "Before switching the language, please save draft or publish."
726
  msgstr ""
727
 
728
  #. translators: Metabox title FOR language.
729
+ #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:318
730
  msgctxt "filter__seo_meta_box_title"
731
  msgid "for"
732
  msgstr ""
733
 
734
+ #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:392
735
  msgid "Page is being reloaded. Please wait..."
736
  msgstr ""
737
 
738
+ #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:393
739
  msgid "Before switching the language, please save draft or publish, then reload page."
740
  msgstr ""
741
 
742
+ #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:438
743
  msgid "WPGlobus provides multilingual support for Elementor only when the option `CSS Print Method` is set to `External File`."
744
  msgstr ""
745
 
746
+ #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:439
747
  msgid "Open Elementor Settings page"
748
  msgstr ""
749
 
750
+ #: includes/class-wpglobus-widget.php:27
751
  msgid "WPGlobus widget"
752
  msgstr ""
753
 
754
+ #: includes/class-wpglobus-widget.php:29
755
  msgid "Add language switcher"
756
  msgstr ""
757
 
758
+ #: includes/class-wpglobus-widget.php:32
759
  msgid "Flags"
760
  msgstr ""
761
 
762
+ #: includes/class-wpglobus-widget.php:33
763
  msgid "List"
764
  msgstr ""
765
 
766
+ #: includes/class-wpglobus-widget.php:34
767
  msgid "List with flags"
768
  msgstr ""
769
 
770
+ #: includes/class-wpglobus-widget.php:35
771
  msgid "Select"
772
  msgstr ""
773
 
774
+ #: includes/class-wpglobus-widget.php:36
775
  msgid "Select with language code"
776
  msgstr ""
777
 
778
+ #: includes/class-wpglobus-widget.php:37
779
  msgid "Dropdown"
780
  msgstr ""
781
 
782
+ #: includes/class-wpglobus-widget.php:38
783
  msgid "Dropdown with flags"
784
  msgstr ""
785
 
786
+ #: includes/class-wpglobus-widget.php:264
787
  msgid "Selector type"
788
  msgstr ""
789
 
790
+ #: includes/class-wpglobus.php:1475
791
  msgid "You cannot disable the main language."
792
  msgstr ""
793
 
794
+ #: includes/class-wpglobus.php:1700
795
  msgid "Need a multilingual slug?"
796
  msgstr ""
797
 
798
+ #: includes/class-wpglobus.php:1683
799
  msgid "*) Available after the menu is saved."
800
  msgstr ""
801
 
802
  #. translators: %s are for A tags.
803
+ #: includes/class-wpglobus.php:2070
804
  msgid "To have the %1$sImage%2$s widget varying by language,"
805
  msgstr ""
806
 
807
  #. translators: %s are for A tags.
808
+ #: includes/class-wpglobus.php:2076
809
  msgid "please use the %1$sWPGlobus language widgets%2$s add-on"
810
  msgstr ""
811
 
812
+ #: includes/class-wpglobus.php:4053
813
  msgid "You must enable Pretty Permalinks to use WPGlobus."
814
  msgstr ""
815
 
816
+ #: includes/class-wpglobus.php:4055
817
  msgid "Please go to Settings > Permalinks > Common Settings and choose a non-default option."
818
  msgstr ""
819
 
820
+ #: includes/options/class-wpglobus-options.php:281
821
  msgid "Language Selector Menu Style"
822
  msgstr ""
823
 
824
+ #: includes/options/class-wpglobus-options.php:282, includes/options/class-wpglobus-options.php:802, includes/options/class-wpglobus-options.php:871
825
  msgid "WPGlobus Plus"
826
  msgstr ""
827
 
828
+ #: includes/options/class-wpglobus-options.php:283
829
  msgid "Drop-down languages menu or Flat (in one line)"
830
  msgstr ""
831
 
832
+ #: includes/options/class-wpglobus-options.php:286
833
  msgid "Do not change"
834
  msgstr ""
835
 
836
+ #: includes/options/class-wpglobus-options.php:287
837
  msgid "Drop-down (vertical)"
838
  msgstr ""
839
 
840
+ #: includes/options/class-wpglobus-options.php:288
841
  msgid "Flat (horizontal)"
842
  msgstr ""
843
 
844
+ #: includes/options/class-wpglobus-options.php:343
845
  msgid "If you see this message then your browser may not display the WPGlobus Settings panel properly. Please try another browser."
846
  msgstr ""
847
 
848
+ #: includes/options/class-wpglobus-options.php:599, includes/options/class-wpglobus-options.php:1577
849
  msgid "Сompatibility"
850
  msgstr ""
851
 
852
  #. translators: placeholders for "strong" tags.
853
+ #: includes/options/class-wpglobus-options.php:616
854
  msgid "Click the %1$s[Languages]%2$s tab at the left to setup the options."
855
  msgstr ""
856
 
857
  #. translators: placeholders for "strong" tags.
858
+ #: includes/options/class-wpglobus-options.php:619
859
  msgid "Use the %1$s[Languages Table]%2$s section to add a new language or to edit the language attributes: name, code, flag icon, etc."
860
  msgstr ""
861
 
862
+ #: includes/options/class-wpglobus-options.php:622
863
  msgid "Important notes"
864
  msgstr ""
865
 
866
  #. translators: placeholders for "strong" tags.
867
+ #: includes/options/class-wpglobus-options.php:624
868
  msgid "Version %1$s1.9.17%2$s "
869
  msgstr ""
870
 
871
  #. translators: placeholders for "strong" tags.
872
+ #: includes/options/class-wpglobus-options.php:627
873
  msgid "Starting from this version, %1$sWPGlobus%2$s operates in two modes"
874
  msgstr ""
875
 
876
  #. translators: placeholders for "strong" tags; compatibility tab link.
877
+ #: includes/options/class-wpglobus-options.php:630
878
  msgid "%1$sBuilder mode%2$s: WPGlobus turns this mode on automatically when it discovers any of the plugins/add-ons listed on the %1$s[%3$s]%2$s tab."
879
  msgstr ""
880
 
881
  #. translators: placeholders for "strong" tags; compatibility tab link.
882
+ #: includes/options/class-wpglobus-options.php:633
883
  msgid "%1$sStandard/Classic mode%2$s: is used when there are no plugins `Builder` or if you explicitly turned off builder support on the %1$s[%3$s]%2$s tab."
884
  msgstr ""
885
 
886
  #. translators: placeholders for "strong" tags.
887
+ #: includes/options/class-wpglobus-options.php:637
888
  msgid "Version %1$s2.2.11%2$s "
889
  msgstr ""
890
 
891
+ #: includes/options/class-wpglobus-options.php:639
892
  msgid "Starting from this version"
893
  msgstr ""
894
 
895
  #. translators: placeholders for "strong" tags.
896
+ #: includes/options/class-wpglobus-options.php:642
897
  msgid "The %1$sBuilder mode%2$s is turned OFF by default for all custom post types (CPT)."
898
  msgstr ""
899
 
900
  #. translators: placeholders for "strong" tags.
901
+ #: includes/options/class-wpglobus-options.php:645
902
  msgid "To turn on the %1$sBuilder mode%2$s for specific post types, please visit the %1$s[%3$s]%2$s tab."
903
  msgstr ""
904
 
905
+ #: includes/options/class-wpglobus-options.php:662
906
  msgid "Welcome!"
907
  msgstr ""
908
 
909
+ #: includes/options/class-wpglobus-options.php:685
910
  msgid "Deactivating / Uninstalling"
911
  msgstr ""
912
 
913
+ #: includes/options/class-wpglobus-options.php:711
914
  msgid "Uninstall"
915
  msgstr ""
916
 
917
+ #: includes/options/class-wpglobus-options.php:741
918
  msgid "All add-ons"
919
  msgstr ""
920
 
921
+ #: includes/options/class-wpglobus-options.php:756
922
  msgid "Mobile Menu"
923
  msgstr ""
924
 
925
+ #: includes/options/class-wpglobus-options.php:771
926
  msgid "Language Widgets"
927
  msgstr ""
928
 
929
+ #: includes/options/class-wpglobus-options.php:841
930
  msgid "We Recommend..."
931
  msgstr ""
932
 
933
+ #: includes/options/class-wpglobus-options.php:873
934
  msgid "Our premium add-on, WPGlobus Plus, will add several features to your website, such as:"
935
  msgstr ""
936
 
937
+ #: includes/options/class-wpglobus-options.php:876
938
  msgid "- Ability to write a post in one language and immediately publish it, not waiting for the translation to other languages;"
939
  msgstr ""
940
 
941
+ #: includes/options/class-wpglobus-options.php:879
942
  msgid "- Set different URLs for each translation;"
943
  msgstr ""
944
 
945
+ #: includes/options/class-wpglobus-options.php:882
946
  msgid "- In Yoast SEO, set the focus keyword and do the Page Analysis separately for each translation;"
947
  msgstr ""
948
 
949
+ #: includes/options/class-wpglobus-options.php:885
950
  msgid "- and more..."
951
  msgstr ""
952
 
953
+ #: includes/options/class-wpglobus-options.php:888, includes/options/class-wpglobus-options.php:945, includes/options/class-wpglobus-options.php:1003
954
  msgid "Click here to download"
955
  msgstr ""
956
 
957
+ #: includes/options/class-wpglobus-options.php:936
958
  msgid "Thanks for installing WPGlobus! Now you have a multilingual website and can translate your blog posts and pages to many languages."
959
  msgstr ""
960
 
961
+ #: includes/options/class-wpglobus-options.php:939
962
  msgid "The next step is to translate your WooCommerce-based store!"
963
  msgstr ""
964
 
965
+ #: includes/options/class-wpglobus-options.php:942
966
  msgid "With the WPGlobus for WooCommerce premium add-on, you will be able to translate product titles and descriptions, categories, tags and attributes."
967
  msgstr ""
968
 
969
+ #: includes/options/class-wpglobus-options.php:989
970
  msgid "Multi-currency"
971
  msgstr ""
972
 
973
+ #: includes/options/class-wpglobus-options.php:992
974
  msgid "Your WooCommerce-powered store is set to show prices and accept payments in a single currency only."
975
  msgstr ""
976
 
977
+ #: includes/options/class-wpglobus-options.php:996
978
  msgid "With WPGlobus, you can add multiple currencies to your store and charge UK customers in Pounds, US customers in Dollars, Spanish clients in Euros, etc. Accepting multiple currencies will strengthen your competitive edge and positioning for global growth!"
979
  msgstr ""
980
 
981
+ #: includes/options/class-wpglobus-options.php:1000
982
  msgid "The WPGlobus Multi-Currency premium add-on provides switching currencies and re-calculating prices on-the-fly."
983
  msgstr ""
984
 
985
+ #: includes/options/class-wpglobus-options.php:1037
986
  msgid "WPGlobus Premium Add-ons"
987
  msgstr ""
988
 
989
+ #: includes/options/class-wpglobus-options.php:1039
990
  msgid "We have written several Premium add-ons for WPGlobus. With those add-ons, you will be able to:"
991
  msgstr ""
992
 
993
+ #: includes/options/class-wpglobus-options.php:1044
994
  msgid "<strong>Translate URLs</strong> (/my-page/ translates to /fr/ma-page, /ru/моя-страница and so on);"
995
  msgstr ""
996
 
997
+ #: includes/options/class-wpglobus-options.php:1047
998
  msgid "Postpone translation to some languages and <strong>publish only the translated texts</strong>;"
999
  msgstr ""
1000
 
1001
+ #: includes/options/class-wpglobus-options.php:1050
1002
  msgid "Maintain <strong>separate menus and widgets for each language</strong>;"
1003
  msgstr ""
1004
 
1005
+ #: includes/options/class-wpglobus-options.php:1053
1006
  msgid "<strong>Translate WooCommerce</strong> products and taxonomies;"
1007
  msgstr ""
1008
 
1009
+ #: includes/options/class-wpglobus-options.php:1056
1010
  msgid "Enter separate focus keywords for each language in the <strong>Yoast SEO</strong>;"
1011
  msgstr ""
1012
 
1013
+ #: includes/options/class-wpglobus-options.php:1060
1014
  msgid "...and more."
1015
  msgstr ""
1016
 
1017
+ #: includes/options/class-wpglobus-options.php:1063
1018
  msgid "Click here to visit the WPGlobus Store"
1019
  msgstr ""
1020
 
1021
+ #: includes/options/class-wpglobus-options.php:1104
1022
  msgid "Select a language"
1023
  msgstr ""
1024
 
1025
  #. translators: %3$s placeholder for the icon (actual picture).
1026
+ #: includes/options/class-wpglobus-options.php:1133
1027
  msgid "Place the %1$smain language%2$s of your site at the top of the list by dragging the %3$s icons."
1028
  msgstr ""
1029
 
1030
  #. translators: placeholders for the "strong" HTML tags.
1031
+ #: includes/options/class-wpglobus-options.php:1136
1032
  msgid "%1$sUncheck%2$s the languages you do not plan to use."
1033
  msgstr ""
1034
 
1035
  #. translators: placeholders for the "strong" HTML tags.
1036
+ #: includes/options/class-wpglobus-options.php:1139
1037
  msgid "%1$sAdd%2$s more languages using the section below."
1038
  msgstr ""
1039
 
1040
+ #: includes/options/class-wpglobus-options.php:1140
1041
  msgid "When done, click the [Save Changes] button."
1042
  msgstr ""
1043
 
1044
  #. translators: %s - placeholder for the "Save Changes" button text.
1045
+ #: includes/options/class-wpglobus-options.php:1151
1046
  msgid "Press the %s button to confirm."
1047
  msgstr ""
1048
 
1049
  #. translators: dropdown option meaning that none of the navigation menus should show the language selector.
1050
+ #: includes/options/class-wpglobus-options.php:1168
1051
  msgid "-- none --"
1052
  msgstr ""
1053
 
1054
+ #: includes/options/class-wpglobus-options.php:1169
1055
  msgid "All menus"
1056
  msgstr ""
1057
 
1058
+ #: includes/options/class-wpglobus-options.php:1182
1059
  msgid "Instructions:"
1060
  msgstr ""
1061
 
1062
+ #: includes/options/class-wpglobus-options.php:1242
1063
  msgid "(Found in some themes)"
1064
  msgstr ""
1065
 
1066
+ #: includes/options/class-wpglobus-options.php:1244
1067
  msgid "Enable"
1068
  msgstr ""
1069
 
1070
+ #: includes/options/class-wpglobus-options.php:1259
1071
  msgid "Languages table"
1072
  msgstr ""
1073
 
1074
+ #: includes/options/class-wpglobus-options.php:1265
1075
  msgid "Use this table to add, edit or delete languages."
1076
  msgstr ""
1077
 
1078
+ #: includes/options/class-wpglobus-options.php:1266
1079
  msgid "NOTE: you cannot remove the main language."
1080
  msgstr ""
1081
 
1082
+ #: includes/options/class-wpglobus-options.php:1314
1083
  msgid "WPGlobus is enabled on these Post Types"
1084
  msgstr ""
1085
 
1086
+ #: includes/options/class-wpglobus-options.php:1315
1087
  msgid "Uncheck to disable"
1088
  msgstr ""
1089
 
1090
+ #: includes/options/class-wpglobus-options.php:1316
1091
  msgid "Please note that there are post types, which status is managed by other plugins and cannot be changed here."
1092
  msgstr ""
1093
 
1094
+ #: includes/options/class-wpglobus-options.php:1321
1095
  msgid "Post Types"
1096
  msgstr ""
1097
 
1098
+ #: includes/options/class-wpglobus-options.php:1337
1099
  msgid "You should put here only the code provided by WPGlobus Support. Do not write anything else in the sections below as it might break the functionality of your website!"
1100
  msgstr ""
1101
 
1102
+ #: includes/options/class-wpglobus-options.php:1378
1103
  msgid "Custom Code"
1104
  msgstr ""
1105
 
1106
+ #: includes/options/class-wpglobus-options.php:1486, includes/options/class-wpglobus-options.php:1618, includes/options/class-wpglobus-options.php:1729
1107
  msgid "Enabled"
1108
  msgstr ""
1109
 
1110
+ #: includes/options/class-wpglobus-options.php:1499
1111
  msgid "Builders support"
1112
  msgstr ""
1113
 
1114
+ #: includes/options/class-wpglobus-options.php:1551
1115
  msgid "Builder mode is enabled on these Post Types"
1116
  msgstr ""
1117
 
1118
+ #: includes/options/class-wpglobus-options.php:1617
1119
  msgid "Old fashioned language switcher"
1120
  msgstr ""
1121
 
1122
+ #: includes/options/class-wpglobus-options.php:1623
1123
  msgid "Block Editor"
1124
  msgstr ""
1125
 
1126
+ #: includes/options/class-wpglobus-options.php:1624
1127
  msgid "Block Editor Options"
1128
  msgstr ""
1129
 
1130
+ #: includes/options/class-wpglobus-options.php:1653
1131
  msgid "With the current settings, you will see the following lines in the section HEAD of your site pages"
1132
  msgstr ""
1133
 
1134
+ #: includes/options/class-wpglobus-options.php:1655
1135
  msgid "(example for two languages)"
1136
  msgstr ""
1137
 
1138
+ #: includes/options/class-wpglobus-options.php:1702
1139
  msgid "Tell search engines about localized versions of your pages using the hreflang tag"
1140
  msgstr ""
1141
 
1142
+ #: includes/options/class-wpglobus-options.php:1711
1143
  msgid "Output the hreflang tag as"
1144
  msgstr ""
1145
 
1146
+ #: includes/options/class-wpglobus-options.php:1714
1147
  msgid "Language- and region-specific (en-US, ru-RU, etc.)"
1148
  msgstr ""
1149
 
1150
+ #: includes/options/class-wpglobus-options.php:1715
1151
  msgid "Language- and region-specific (en-us, ru-ru, etc.)"
1152
  msgstr ""
1153
 
1154
+ #: includes/options/class-wpglobus-options.php:1716
1155
  msgid "Language code only (en, ru, etc.)"
1156
  msgstr ""
1157
 
1158
+ #: includes/options/class-wpglobus-options.php:1728
1159
  msgid "Use the code `x-default` for the main language"
1160
  msgstr ""
1161
 
1162
+ #: includes/options/class-wpglobus-options.php:1734
1163
  msgid "Multilingual SEO"
1164
  msgstr ""
1165
 
1166
+ #: includes/options/class-wpglobus-options.php:1735
1167
  msgid "Multilingual SEO Options"
1168
  msgstr ""
1169
 
1170
+ #: includes/options/class-wpglobus-options.php:1772
1171
  msgid "With WPGlobus, you can get translations for posts and pages using REST API."
1172
  msgstr ""
1173
 
1174
+ #: includes/options/class-wpglobus-options.php:1800, includes/options/class-wpglobus-options.php:1808, includes/options/class-wpglobus-options.php:1780, includes/options/class-wpglobus-options.php:1789
1175
  msgid "Go to %1$s%2$s%3$s to see the content in language: %4$s."
1176
  msgstr ""
1177
 
1178
+ #: includes/options/class-wpglobus-options.php:1777
1179
  msgid "For demonstration, you can try the first post that WordPress creates at the initial installation."
1180
  msgstr ""
1181
 
1182
+ #: includes/options/class-wpglobus-options.php:1819
1183
  msgid "Please read the %1$sWordPress REST API documentation%2$s for more information."
1184
  msgstr ""
1185
 
1186
+ #: includes/options/class-wpglobus-options.php:1826
1187
  msgid "In the REST API response, you can find the %1$stranslation%2$s field, which shows whether translations exist for the fields %1$stitle%2$s, %1$scontent%2$s and %1$sexcerpt%2$s or not, for each language. See the screenshot below:"
1188
  msgstr ""
1189
 
1190
+ #: includes/options/class-wpglobus-options.php:1839
1191
  msgid "Description:"
1192
  msgstr ""
1193
 
1194
+ #: includes/options/class-wpglobus-options.php:1846, includes/options/class-wpglobus-options.php:1847
1195
  msgid "REST API"
1196
  msgstr ""
1197
 
1198
+ #: includes/options/class-wpglobus-options.php:2180
1199
  msgid "Translate strings"
1200
  msgstr ""
1201
 
1202
+ #: includes/options/fields/table/class-wpglobus-languages-table.php:66
1203
  msgid "item"
1204
  msgstr ""
1205
 
1206
+ #: includes/options/fields/table/class-wpglobus-languages-table.php:68
1207
  msgid "items"
1208
  msgstr ""
1209
 
1210
+ #: includes/options/fields/table/class-wpglobus-languages-table.php:88
1211
  msgid "Code"
1212
  msgstr ""
1213
 
1214
+ #: includes/options/fields/table/class-wpglobus-languages-table.php:94
1215
  msgid "Edit"
1216
  msgstr ""
1217
 
1218
+ #: includes/options/fields/table/class-wpglobus-languages-table.php:99
1219
  msgid "Delete"
1220
  msgstr ""
1221
 
1222
+ #: includes/options/fields/table/class-wpglobus-languages-table.php:105
1223
  msgid "File"
1224
  msgstr ""
1225
 
1226
+ #: includes/options/fields/table/class-wpglobus-languages-table.php:110
1227
  msgid "Flag"
1228
  msgstr ""
1229
 
1230
+ #: includes/options/fields/table/class-wpglobus-languages-table.php:120
1231
  msgid "Language name"
1232
  msgstr ""
1233
 
1234
+ #: includes/options/fields/table/class-wpglobus-languages-table.php:125
1235
  msgid "English language name"
1236
  msgstr ""
1237
 
1238
+ #: includes/options/fields/table/class-wpglobus-languages-table.php:151
1239
  msgid "No items found"
1240
  msgstr ""
1241
 
1242
+ #: includes/options/fields/table/class-wpglobus-languages-table.php:164
1243
  msgid "Add new Language"
1244
  msgstr ""
1245
 
1246
+ #: includes/options/fields/wpglobus_select/field_wpglobus_select.php:164
1247
  msgid "No items of this type were found."
1248
  msgstr ""
1249
 
1250
+ #: includes/options/fields/wpglobus_select/field_wpglobus_select.php:107
1251
  msgid "Select an item"
1252
  msgstr ""
1253
 
1254
+ #: includes/options/templates/compatibility-beta.php:15
1255
  msgid "Multilingual support of this add-on is currently in Beta stage."
1256
  msgstr ""
1257
 
1258
+ #: includes/options/templates/compatibility-beta.php:17
1259
  msgid "We do not recommend using it on production sites."
1260
  msgstr ""
1261
 
1262
+ #: includes/options/templates/compatibility-beta.php:23
1263
  msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
1264
  msgstr ""
1265
 
1266
+ #: includes/options/templates/compatibility.php:69
1267
  msgid "WordPress version"
1268
  msgstr ""
1269
 
1270
+ #: includes/options/templates/compatibility.php:44
1271
  msgid "In the WordPress core"
1272
  msgstr ""
1273
 
1274
+ #: includes/options/templates/compatibility.php:46
1275
  msgid "Core"
1276
  msgstr ""
1277
 
1278
+ #: includes/options/templates/compatibility.php:52, includes/options/templates/compatibility.php:79
1279
  msgid "Current version"
1280
  msgstr ""
1281
 
1282
+ #: includes/options/templates/compatibility.php:53, includes/options/templates/compatibility.php:81
1283
  msgid "Stage"
1284
  msgstr ""
1285
 
1286
+ #: includes/options/templates/compatibility.php:54, includes/options/templates/compatibility.php:82
1287
  msgid "Status"
1288
  msgstr ""
1289
 
1290
+ #: includes/options/templates/compatibility.php:60
1291
  msgid "Block editor"
1292
  msgstr ""
1293
 
1294
+ #: includes/options/templates/compatibility.php:62
1295
  msgid "production"
1296
  msgstr ""
1297
 
1298
+ #: includes/options/templates/compatibility.php:73
1299
  msgid "List of supported add-ons"
1300
  msgstr ""
1301
 
1302
+ #: includes/options/templates/compatibility.php:78
1303
  msgid "Add-on"
1304
  msgstr ""
1305
 
1306
+ #: includes/options/templates/compatibility.php:80
1307
  msgid "Supported minimum version"
1308
  msgstr ""
1309
 
1310
+ #: includes/options/templates/compatibility.php:105
1311
  msgid "Not installed"
1312
  msgstr ""
1313
 
1314
+ #: includes/options/templates/compatibility.php:102
1315
  msgid "Installed, inactive"
1316
  msgstr ""
1317
 
1318
+ #: includes/options/templates/compatibility.php:100
1319
  msgid "Active"
1320
  msgstr ""
1321
 
1322
+ #: includes/options/templates/customize-intro.php:35
1323
  msgid "WPGlobus Customizer is integrated into the Customize Theme panel"
1324
  msgstr ""
1325
 
1326
+ #: includes/options/templates/customize-intro.php:39
1327
  msgid "However, some themes do not follow all WordPress standards strictly."
1328
  msgstr ""
1329
 
1330
+ #: includes/options/templates/customize-intro.php:41
1331
  msgid "WPGlobus Customizer may behave incorrectly with those themes."
1332
  msgstr ""
1333
 
1334
+ #: includes/options/templates/customize-intro.php:45
1335
  msgid "To avoid conflicts, you can switch the WPGlobus Customizer off:"
1336
  msgstr ""
1337
 
1338
+ #: includes/options/templates/customize-intro.php:53
1339
  msgid "Below is the list of themes that do not support the WPGlobus Customizer. With those themes, WPGlobus Customizer is switched off by default"
1340
  msgstr ""
1341
 
1342
+ #: includes/options/templates/customize-intro.php:60
1343
  msgid "The currently active theme is"
1344
  msgstr ""
1345
 
1346
+ #: includes/options/templates/customize-intro.php:66
1347
  msgid "In the current version, WPGlobus Customizer does not support"
1348
  msgstr ""
1349
 
1350
+ #: includes/options/templates/customize-intro.php:70
1351
  msgid "translation of the navigation menus"
1352
  msgstr ""
1353
 
1354
+ #: includes/options/templates/customize-intro.php:72
1355
  msgid "to translate, please go to"
1356
  msgstr ""
1357
 
1358
+ #: includes/options/templates/customize-intro.php:81
1359
  msgid "Go to Customizer"
1360
  msgstr ""
1361
 
1362
+ #: includes/options/templates/customize-intro.php:88
1363
  msgid "is undefined"
1364
  msgstr ""
1365
 
1366
+ #: includes/options/templates/customize-intro.php:85
1367
  msgid "is set to"
1368
  msgstr ""
1369
 
1370
+ #: includes/options/templates/customize-intro.php:94
1371
  msgid "by adding to the file wp-config.php"
1372
  msgstr ""
1373
 
1374
+ #: includes/options/templates/customize-intro.php:96
1375
  msgid "now"
1376
  msgstr ""
1377
 
1378
+ #: includes/options/wpglobus-options-header.php:25
1379
  msgid "We rely on your support!"
1380
  msgstr ""
1381
 
1382
+ #: includes/options/wpglobus-options-header.php:28
1383
  msgid "Please consider a small donation to support the future development."
1384
  msgstr ""
1385
 
1386
+ #: includes/options/wpglobus-options-header.php:32
1387
  msgid "Thank you!"
1388
  msgstr ""
1389
 
1390
+ #: includes/options/wpglobus-options-header.php:55
1391
  msgid "WPGlobus Plus!"
1392
  msgstr ""
1393
 
1394
+ #: includes/options/wpglobus-options-header.php:58
1395
  msgid "Advanced features and tweaks: URL translation, multilingual SEO analysis, separate publishing and more! "
1396
  msgstr ""
1397
 
1398
+ #: includes/options/wpglobus-options-header.php:64
1399
  msgid "Get WPGlobus Plus now!"
1400
  msgstr ""
1401
 
1402
  #. translators: %s are for A tags.
1403
+ #: includes/vendor/acf/class-wpglobus-vendor-acf.php:271
1404
  msgid "Use as multilingual with %1$sWPGlobus%2$s"
1405
  msgstr ""
1406
 
1407
+ #: includes/vendor/acf/class-wpglobus-vendor-acf.php:280
1408
  msgid "Multilingual"
1409
  msgstr ""
1410
 
1411
  #. translators: %s are for A tags.
1412
+ #: includes/vendor/acf/class-wpglobus-vendor-acf.php:519
1413
  msgid "To use this field, please activate the %1$sACF Plus%2$s module"
1414
  msgstr ""
1415
 
1416
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:1248
1417
  msgid "Bulk editing of the multilingual titles and descriptions is not supported by the current version."
1418
  msgstr ""
1419
 
1420
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:1249
1421
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1422
  msgstr ""
1423
 
1424
+ #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:1252
1425
  msgid "WPGlobus warning: "
1426
  msgstr ""
1427
 
1428
+ #: wpglobus.php:13
1429
  msgid "https://github.com/WPGlobus/WPGlobus"
1430
  msgstr ""
1431
 
1432
+ #: wpglobus.php:14
1433
  msgid "A WordPress Globalization / Multilingual Plugin. Posts, pages, menus, widgets and even custom fields - in multiple languages!"
1434
  msgstr ""
1435
 
1436
+ #: wpglobus.php:19
1437
  msgid "https://wpglobus.com/"
1438
  msgstr ""
readme.txt CHANGED
@@ -145,7 +145,7 @@ WPGlobus may not work correctly on development servers having URLs like `//local
145
  * `ru_RU` by [The WPGlobus Team](https://wpglobus.com/ru/) ~ [WPGlobus - это коллекция плагинов ВордПресс для создания мультиязычных сайтов](https://ru.wordpress.org/plugins/wpglobus/)
146
  * `sv_SE` by [Elger Lindgren](http://bilddigital.se/) ~ [WPGlobus är en familj av WordPress-tillägg som hjälper dig att göra flerspråkiga Wordpressbloggar och webbplatser.](https://sv.wordpress.org/plugins/wpglobus/)
147
  * `tr_TR` by [Borahan Conkeroglu](https://twitter.com/boracon68) ~ [WPGlobus WordPress bloglarını ve sitelerini çokdilli yapmakta size yardım eden bir WordPress eklentileri ailesidir.](https://tr.wordpress.org/plugins/wpglobus/)
148
- * `uk` by [Pavlo Novak](https://plus.google.com/u/0/114797816817149043222) ~ ["WPGlobus - це колекція ВордПресс плагінів для створення багатомовних сайтів."](https://uk.wordpress.org/plugins/wpglobus/)
149
 
150
  == Installation ==
151
 
@@ -220,6 +220,12 @@ WPGlobus Version 2 supports WordPress 5.x, with Gutenberg.
220
 
221
  == Changelog ==
222
 
 
 
 
 
 
 
223
  = 2.7.8 =
224
  * (Vendor/ACF) Fixed an issue with empty ACF fields.
225
 
@@ -234,9 +240,6 @@ WPGlobus Version 2 supports WordPress 5.x, with Gutenberg.
234
  * (Vendor/ACF) Set `translatableClass` for elements in Builder mode.
235
  * (Vendor/ACF) Perform a global search and replace in JS.
236
 
237
- = 2.7.5 =
238
- * (Customizer) Added check/uncheck all fields option in Fields Settings section.
239
-
240
  = Earlier versions and Add-ons =
241
 
242
  * [See the complete changelog here](https://github.com/WPGlobus/WPGlobus/blob/master/CHANGELOG.md)
145
  * `ru_RU` by [The WPGlobus Team](https://wpglobus.com/ru/) ~ [WPGlobus - это коллекция плагинов ВордПресс для создания мультиязычных сайтов](https://ru.wordpress.org/plugins/wpglobus/)
146
  * `sv_SE` by [Elger Lindgren](http://bilddigital.se/) ~ [WPGlobus är en familj av WordPress-tillägg som hjälper dig att göra flerspråkiga Wordpressbloggar och webbplatser.](https://sv.wordpress.org/plugins/wpglobus/)
147
  * `tr_TR` by [Borahan Conkeroglu](https://twitter.com/boracon68) ~ [WPGlobus WordPress bloglarını ve sitelerini çokdilli yapmakta size yardım eden bir WordPress eklentileri ailesidir.](https://tr.wordpress.org/plugins/wpglobus/)
148
+ * `uk` by Pavlo Novak and Jack Willson ~ ["WPGlobus - це колекція ВордПресс плагінів для створення багатомовних сайтів."](https://uk.wordpress.org/plugins/wpglobus/)
149
 
150
  == Installation ==
151
 
220
 
221
  == Changelog ==
222
 
223
+ = 2.7.9 =
224
+ * (Vendor/ACF) Added the current language name for the ACF fields metabox in the Builder mode.
225
+ * (Vendor/ACF) Added filtering of the field array before it is updated.
226
+ * (Core) Added language switcher to the admin bar for the posts in the Builder mode.
227
+ * (POMO) Ukrainian translations completed (thanks go to Jack Willson)
228
+
229
  = 2.7.8 =
230
  * (Vendor/ACF) Fixed an issue with empty ACF fields.
231
 
240
  * (Vendor/ACF) Set `translatableClass` for elements in Builder mode.
241
  * (Vendor/ACF) Perform a global search and replace in JS.
242
 
 
 
 
243
  = Earlier versions and Add-ons =
244
 
245
  * [See the complete changelog here](https://github.com/WPGlobus/WPGlobus/blob/master/CHANGELOG.md)
wpglobus.php CHANGED
@@ -15,7 +15,7 @@
15
  * Description: A WordPress Globalization / Multilingual Plugin. Posts, pages, menus, widgets and even custom fields - in multiple languages!
16
  * Text Domain: wpglobus
17
  * Domain Path: /languages/
18
- * Version: 2.7.8
19
  * Author: WPGlobus
20
  * Author URI: https://wpglobus.com/
21
  * Network: false
@@ -44,7 +44,7 @@ if ( ! defined( 'ABSPATH' ) ) {
44
  exit;
45
  }
46
 
47
- define( 'WPGLOBUS_VERSION', '2.7.8' );
48
  define( 'WPGLOBUS_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
49
  define( 'WPGLOBUS_AJAX', 'wpglobus-ajax' );
50
 
15
  * Description: A WordPress Globalization / Multilingual Plugin. Posts, pages, menus, widgets and even custom fields - in multiple languages!
16
  * Text Domain: wpglobus
17
  * Domain Path: /languages/
18
+ * Version: 2.7.9
19
  * Author: WPGlobus
20
  * Author URI: https://wpglobus.com/
21
  * Network: false
44
  exit;
45
  }
46
 
47
+ define( 'WPGLOBUS_VERSION', '2.7.9' );
48
  define( 'WPGLOBUS_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
49
  define( 'WPGLOBUS_AJAX', 'wpglobus-ajax' );
50