WPGlobus – Multilingual Everything! - Version 2.2.22

Version Description

  • Added: (Core/Media) Media files support for the standard and Builder modes.
  • Added: (Vendor/Acf) Filter for the Url field type.
Download this release

Release Info

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

Code changes from version 2.2.21 to 2.2.22

Files changed (45) hide show
  1. includes/admin/media/class-wpglobus-media.php +98 -24
  2. includes/admin/media/wpglobus-media.php +38 -0
  3. includes/class-wpglobus.php +13 -18
  4. includes/js/wpglobus-media-post-php.js +36 -14
  5. includes/js/wpglobus-media-post-php.min.js +1 -1
  6. includes/wpglobus-controller.php +4 -0
  7. languages/wpglobus-ar.po +11 -11
  8. languages/wpglobus-be.po +11 -11
  9. languages/wpglobus-bg_BG.po +11 -11
  10. languages/wpglobus-de_CH.po +11 -11
  11. languages/wpglobus-de_DE.po +11 -11
  12. languages/wpglobus-el.po +11 -11
  13. languages/wpglobus-en_AU.po +11 -11
  14. languages/wpglobus-en_CA.po +11 -11
  15. languages/wpglobus-en_GB.po +11 -11
  16. languages/wpglobus-en_NZ.po +11 -11
  17. languages/wpglobus-en_US.po +11 -11
  18. languages/wpglobus-en_ZA.po +11 -11
  19. languages/wpglobus-es_AR.po +11 -11
  20. languages/wpglobus-es_CL.po +11 -11
  21. languages/wpglobus-es_CO.po +11 -11
  22. languages/wpglobus-es_CR.po +11 -11
  23. languages/wpglobus-es_ES.po +11 -11
  24. languages/wpglobus-es_GT.po +11 -11
  25. languages/wpglobus-es_MX.po +11 -11
  26. languages/wpglobus-es_PE.po +11 -11
  27. languages/wpglobus-es_PR.po +11 -11
  28. languages/wpglobus-es_VE.po +11 -11
  29. languages/wpglobus-et.po +11 -11
  30. languages/wpglobus-fr_BE.po +11 -11
  31. languages/wpglobus-fr_CA.po +11 -11
  32. languages/wpglobus-fr_FR.po +11 -11
  33. languages/wpglobus-id_ID.po +11 -11
  34. languages/wpglobus-ko_KR.po +11 -11
  35. languages/wpglobus-pl_PL.po +11 -11
  36. languages/wpglobus-pt_BR.po +11 -11
  37. languages/wpglobus-pt_PT.po +11 -11
  38. languages/wpglobus-ro_RO.po +11 -11
  39. languages/wpglobus-ru_RU.po +11 -11
  40. languages/wpglobus-sv_SE.po +11 -11
  41. languages/wpglobus-tr_TR.po +11 -11
  42. languages/wpglobus-uk.po +11 -11
  43. languages/wpglobus.pot +14 -14
  44. readme.txt +5 -0
  45. wpglobus.php +2 -2
includes/admin/media/class-wpglobus-media.php CHANGED
@@ -7,6 +7,7 @@
7
  * Class WPGlobus_Media.
8
  *
9
  * @since 1.7.3
 
10
  */
11
  if ( ! class_exists( 'WPGlobus_Media' ) ) :
12
 
@@ -25,9 +26,9 @@ if ( ! class_exists( 'WPGlobus_Media' ) ) :
25
  /**
26
  * Get instance.
27
  */
28
- public static function get_instance(){
29
  if( null == self::$instance ){
30
- self::$instance = new self();
31
  }
32
  return self::$instance;
33
  }
@@ -35,26 +36,57 @@ if ( ! class_exists( 'WPGlobus_Media' ) ) :
35
  /**
36
  * Constructor.
37
  */
38
- public function __construct() {
39
-
40
- $this->enabled_post_types[] = 'attachment';
41
 
42
  /**
43
  * @scope admin
44
  * @since 1.7.3
45
  */
46
- add_action( 'edit_form_after_editor', array(
47
  $this,
48
- 'language_tabs'
49
- ) );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
50
 
51
  /**
52
  * @scope admin
53
  * @since 1.7.3
54
  */
55
- add_action( 'admin_print_scripts', array(
56
  $this,
57
- 'media__admin_scripts'
58
  ) );
59
 
60
  /**
@@ -63,8 +95,8 @@ if ( ! class_exists( 'WPGlobus_Media' ) ) :
63
  */
64
  add_action( 'admin_print_scripts', array(
65
  $this,
66
- 'post_php__admin_scripts'
67
- ), 5 );
68
 
69
  /**
70
  * @scope admin
@@ -75,28 +107,19 @@ if ( ! class_exists( 'WPGlobus_Media' ) ) :
75
  'action__admin_styles'
76
  ) );
77
 
78
- /**
79
- * @scope admin
80
- * @see filter 'media_send_to_editor' in media.php
81
- * @since 1.7.3
82
- */
83
- add_filter( 'media_send_to_editor', array(
84
- $this,
85
- 'filter__media_send_to_editor'
86
- ), 5, 3 );
87
 
88
 
89
  }
90
 
91
  /**
92
- * Check for enabled post types.
93
  *
94
  * @scope admin
95
  * @since 1.7.3
96
  *
97
- * @param string $html HTML.
98
  * @param int $id Unused.
99
- * @param array $attachment Attachment.
100
  *
101
  * @return boolean
102
  */
@@ -186,6 +209,14 @@ if ( ! class_exists( 'WPGlobus_Media' ) ) :
186
  true
187
  );
188
  wp_enqueue_script( 'wpglobus-media-post-php' );
 
 
 
 
 
 
 
 
189
 
190
  }
191
 
@@ -333,6 +364,49 @@ if ( ! class_exists( 'WPGlobus_Media' ) ) :
333
  </div>
334
  <?php
335
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
336
 
337
  }
338
 
7
  * Class WPGlobus_Media.
8
  *
9
  * @since 1.7.3
10
+ * @since 2.2.22
11
  */
12
  if ( ! class_exists( 'WPGlobus_Media' ) ) :
13
 
26
  /**
27
  * Get instance.
28
  */
29
+ public static function get_instance($http_post_action = false, $http_post_actions = array()){
30
  if( null == self::$instance ){
31
+ self::$instance = new self($http_post_action, $http_post_actions);
32
  }
33
  return self::$instance;
34
  }
36
  /**
37
  * Constructor.
38
  */
39
+ public function __construct($http_post_action, $http_post_actions) {
 
 
40
 
41
  /**
42
  * @scope admin
43
  * @since 1.7.3
44
  */
45
+ add_action( 'admin_print_scripts', array(
46
  $this,
47
+ 'post_php__admin_scripts'
48
+ ), 5 );
49
+
50
+ if ( in_array($http_post_action, $http_post_actions) ) {
51
+
52
+ if ( 'send-attachment-to-editor' == $http_post_action ) {
53
+
54
+ /**
55
+ * @scope admin
56
+ * @see filter 'media_send_to_editor' in wp-admin\includes\media.php
57
+ * @since 1.7.3
58
+ */
59
+ add_filter( 'media_send_to_editor', array(
60
+ $this,
61
+ 'filter__media_send_to_editor'
62
+ ), 5, 3 );
63
+
64
+ } else if ( 'query-attachments' == $http_post_action ) {
65
+
66
+ /**
67
+ * @scope admin
68
+ * @see filter 'wp_prepare_attachment_for_js' in wp-includes\media.php
69
+ * @since 2.2.22
70
+ */
71
+ add_filter( 'wp_prepare_attachment_for_js', array(
72
+ $this,
73
+ 'filter__prepare_attachment_for_js'
74
+ ), 5, 3 );
75
+
76
+ }
77
+
78
+ return;
79
+ }
80
+
81
+ $this->enabled_post_types[] = 'attachment';
82
 
83
  /**
84
  * @scope admin
85
  * @since 1.7.3
86
  */
87
+ add_action( 'edit_form_after_editor', array(
88
  $this,
89
+ 'language_tabs'
90
  ) );
91
 
92
  /**
95
  */
96
  add_action( 'admin_print_scripts', array(
97
  $this,
98
+ 'media__admin_scripts'
99
+ ) );
100
 
101
  /**
102
  * @scope admin
107
  'action__admin_styles'
108
  ) );
109
 
 
 
 
 
 
 
 
 
 
110
 
111
 
112
  }
113
 
114
  /**
115
+ * Filters the HTML markup for a media item sent to the editor.
116
  *
117
  * @scope admin
118
  * @since 1.7.3
119
  *
120
+ * @param string $html HTML markup.
121
  * @param int $id Unused.
122
+ * @param array $attachment Array of attachment metadata.
123
  *
124
  * @return boolean
125
  */
209
  true
210
  );
211
  wp_enqueue_script( 'wpglobus-media-post-php' );
212
+ wp_localize_script(
213
+ 'wpglobus-media-post-php',
214
+ 'WPGlobusMediaInPost',
215
+ array(
216
+ 'version' => WPGLOBUS_VERSION,
217
+ 'builderID' => WPGlobus::Config()->builder->get_id(),
218
+ )
219
+ );
220
 
221
  }
222
 
364
  </div>
365
  <?php
366
  }
367
+
368
+ /**
369
+ * Filters the attachment data prepared for JavaScript.
370
+ *
371
+ * @since 2.2.22
372
+ *
373
+ * @param array $response Array of prepared attachment data.
374
+ * @param WP_Post $attachment Attachment object.
375
+ * @param array|false $meta Array of attachment meta data, or false if there is none.
376
+ */
377
+ public function filter__prepare_attachment_for_js( $response, $attachment, $meta ) {
378
+
379
+ if ( empty( $_POST['wpglobusPrepareAttachments'] ) ) { // WPCS: input var ok, sanitization ok.
380
+ return $response;
381
+ }
382
+
383
+ $fields = array(
384
+ 'alt',
385
+ 'description',
386
+ 'caption',
387
+ // @todo may be `uploadedToTitle` field
388
+ );
389
+
390
+ $current_language = WPGlobus::Config()->default_language;
391
+ if ( ! empty( $_POST['wpglobusLanguageTab'] ) ) { // WPCS: input var ok, sanitization ok.
392
+ /**
393
+ * See includes\js\wpglobus-media.js
394
+ */
395
+ $current_language = sanitize_text_field( wp_unslash( $_POST['wpglobusLanguageTab'] ) ); // WPCS: input var ok, sanitization ok.
396
+
397
+ if ( ! in_array( $current_language, WPGlobus::Config()->enabled_languages, true ) ) {
398
+ return $response;
399
+ }
400
+ }
401
+
402
+ foreach ( $fields as $field ) {
403
+ if ( ! empty( $response[ $field ] ) && WPGlobus_Core::has_translations( $response[ $field ] ) ) {
404
+ $response[ $field ] = WPGlobus_Core::text_filter( $response[ $field ], $current_language );
405
+ }
406
+ }
407
+
408
+ return $response;
409
+ }
410
 
411
  }
412
 
includes/admin/media/wpglobus-media.php ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * 1. Add multilingual Caption, Alternative Text, Description and post Title to media files.
4
+ * 2. Handling the inserting media in post.
5
+ *
6
+ * @since 2.2.22
7
+ * @package WPGlobus
8
+ */
9
+ if ( version_compare( $GLOBALS['wp_version'], '4.6.999', '>' ) ) :
10
+
11
+ $http_post_action = false;
12
+
13
+ if ( WPGlobus_WP::is_doing_ajax() ) {
14
+ if ( WPGlobus_WP::is_http_post_action('send-attachment-to-editor') ) {
15
+ $http_post_action = 'send-attachment-to-editor';
16
+ } else if ( WPGlobus_WP::is_http_post_action('query-attachments') ) {
17
+ /**
18
+ * Action for gutenberg.
19
+ */
20
+ $http_post_action = 'query-attachments';
21
+ }
22
+ }
23
+
24
+ /**
25
+ * Array of actions to handle the inserting media on post.php page.
26
+ */
27
+ $http_post_actions = array(
28
+ 'send-attachment-to-editor', // standard and builder mode (except gutenberg).
29
+ 'query-attachments' // gutenberg.
30
+ );
31
+
32
+ if ( WPGlobus_WP::is_pagenow( 'post.php' ) || $http_post_action ) {
33
+ if ( ! class_exists('WPGlobus_Media') ) {
34
+ require_once 'class-wpglobus-media.php';
35
+ }
36
+ WPGlobus_Media::get_instance($http_post_action, $http_post_actions);
37
+ }
38
+ endif;
includes/class-wpglobus.php CHANGED
@@ -459,6 +459,11 @@ class WPGlobus {
459
  require_once dirname( __FILE__ ) . '/builders/gutenberg/class-wpglobus-gutenberg.php';
460
  $builder = new WPGlobus_Gutenberg();
461
  require_once dirname( __FILE__ ) . '/vendor/wpglobus-vendors.php';
 
 
 
 
 
462
  }
463
 
464
  /**
@@ -529,6 +534,11 @@ class WPGlobus {
529
  }
530
  require_once dirname( __FILE__ ) . '/vendor/wpglobus-vendors.php';
531
 
 
 
 
 
 
532
  return;
533
  }
534
  }
@@ -671,26 +681,11 @@ class WPGlobus {
671
  }
672
  }
673
  }
674
-
675
  /**
676
- * Add multilingual Caption, Alternative Text, Description to media files.
677
- *
678
- * @since 1.7.3
679
  */
680
- if ( version_compare( $GLOBALS['wp_version'], '4.6.999', '>' ) ) :
681
- if (
682
- WPGlobus_WP::is_pagenow( 'post.php' ) ||
683
- ( WPGlobus_WP::is_doing_ajax() && WPGlobus_WP::is_http_post_action( 'send-attachment-to-editor' ) )
684
- ) {
685
- /**
686
- * @since 1.9.17
687
- */
688
- if ( ! self::Config()->builder->is_running() ) {
689
- require_once 'admin/media/class-wpglobus-media.php';
690
- WPGlobus_Media::get_instance();
691
- }
692
- }
693
- endif;
694
 
695
  } // endif $devmode
696
 
459
  require_once dirname( __FILE__ ) . '/builders/gutenberg/class-wpglobus-gutenberg.php';
460
  $builder = new WPGlobus_Gutenberg();
461
  require_once dirname( __FILE__ ) . '/vendor/wpglobus-vendors.php';
462
+
463
+ /**
464
+ * @since 2.2.22
465
+ */
466
+ require_once 'admin/media/wpglobus-media.php';
467
  }
468
 
469
  /**
534
  }
535
  require_once dirname( __FILE__ ) . '/vendor/wpglobus-vendors.php';
536
 
537
+ /**
538
+ * @since 2.2.22
539
+ */
540
+ require_once 'admin/media/wpglobus-media.php';
541
+
542
  return;
543
  }
544
  }
681
  }
682
  }
683
  }
684
+
685
  /**
686
+ * @since 2.2.22
 
 
687
  */
688
+ require_once 'admin/media/wpglobus-media.php';
 
 
 
 
 
 
 
 
 
 
 
 
 
689
 
690
  } // endif $devmode
691
 
includes/js/wpglobus-media-post-php.js CHANGED
@@ -3,31 +3,53 @@
3
  * Interface JS functions
4
  *
5
  * @since 1.7.3
 
6
  *
7
  * @package WPGlobus
8
  * @subpackage Media
9
  */
10
  /*jslint browser: true*/
11
- /*global jQuery, console, WPGlobusAdmin*/
12
  (function ($) {
13
  "use strict";
14
 
15
- $(document).on('wpglobus_after_post_edit', function (evnt) {
 
 
 
 
 
 
 
 
 
16
 
17
- $(document).ajaxSend(function (event, request, settings) {
18
- if ('undefined' === typeof settings.data) {
19
- return;
20
- }
21
 
22
- if ('undefined' === typeof WPGlobusAdmin) {
23
- return;
24
- }
25
 
26
- if (-1 != settings.data.indexOf('action=send-attachment-to-editor')) {
27
- settings.data = settings.data + '&wpglobusLanguageTab=' + WPGlobusAdmin.currentTab;
28
- }
29
- });
 
 
 
 
 
 
 
30
 
31
- });
 
 
 
 
 
32
 
33
  })(jQuery);
3
  * Interface JS functions
4
  *
5
  * @since 1.7.3
6
+ * @since 2.2.22
7
  *
8
  * @package WPGlobus
9
  * @subpackage Media
10
  */
11
  /*jslint browser: true*/
12
+ /*global jQuery, console, WPGlobusAdmin, WPGlobusMediaInPost*/
13
  (function ($) {
14
  "use strict";
15
 
16
+ if ( 'undefined' === typeof WPGlobusMediaInPost ) {
17
+ return;
18
+ }
19
+
20
+ var api = {
21
+ init: function() {
22
+ api.addListeners();
23
+ },
24
+ addListeners: function() {
25
+ $(document).on('wpglobus_after_post_edit', function (evnt) {
26
 
27
+ $(document).ajaxSend(function (event, request, settings) {
28
+ if ('undefined' === typeof settings.data) {
29
+ return;
30
+ }
31
 
32
+ if ('undefined' === typeof WPGlobusAdmin) {
33
+ return;
34
+ }
35
 
36
+ if ( WPGlobusAdmin.builder && 'gutenberg' == WPGlobusAdmin.builder.id ) {
37
+ if (-1 != settings.data.indexOf('action=query-attachments')) {
38
+ settings.data = settings.data + '&wpglobusLanguageTab=' + WPGlobusAdmin.currentTab;
39
+ settings.data = settings.data + '&wpglobusPrepareAttachments=true';
40
+ }
41
+ } else {
42
+ if (-1 != settings.data.indexOf('action=send-attachment-to-editor')) {
43
+ settings.data = settings.data + '&wpglobusLanguageTab=' + WPGlobusAdmin.currentTab;
44
+ }
45
+ }
46
+ });
47
 
48
+ });
49
+ }
50
+ }
51
+
52
+ WPGlobusMediaInPost = $.extend({}, WPGlobusMediaInPost, api);
53
+ WPGlobusMediaInPost.init();
54
 
55
  })(jQuery);
includes/js/wpglobus-media-post-php.min.js CHANGED
@@ -1 +1 @@
1
- !function(n){"use strict";n(document).on("wpglobus_after_post_edit",function(t){n(document).ajaxSend(function(t,n,a){void 0!==a.data&&"undefined"!=typeof WPGlobusAdmin&&-1!=a.data.indexOf("action=send-attachment-to-editor")&&(a.data=a.data+"&wpglobusLanguageTab="+WPGlobusAdmin.currentTab)})})}(jQuery);
1
+ !function(n){"use strict";if("undefined"!=typeof WPGlobusMediaInPost){var t={init:function(){t.addListeners()},addListeners:function(){n(document).on("wpglobus_after_post_edit",function(t){n(document).ajaxSend(function(t,n,a){void 0!==a.data&&"undefined"!=typeof WPGlobusAdmin&&(WPGlobusAdmin.builder&&"gutenberg"==WPGlobusAdmin.builder.id?-1!=a.data.indexOf("action=query-attachments")&&(a.data=a.data+"&wpglobusLanguageTab="+WPGlobusAdmin.currentTab,a.data=a.data+"&wpglobusPrepareAttachments=true"):-1!=a.data.indexOf("action=send-attachment-to-editor")&&(a.data=a.data+"&wpglobusLanguageTab="+WPGlobusAdmin.currentTab))})})}};WPGlobusMediaInPost=n.extend({},WPGlobusMediaInPost,t),WPGlobusMediaInPost.init()}}(jQuery);
includes/wpglobus-controller.php CHANGED
@@ -355,6 +355,10 @@ if ( WPGlobus_WP::is_doing_ajax() || ! is_admin() ) {
355
  add_filter( 'acf/load_value/type=text', array( 'WPGlobus_Filters', 'filter__text' ), 0 );
356
  add_filter( 'acf/load_value/type=textarea', array( 'WPGlobus_Filters', 'filter__text' ), 0 );
357
  add_filter( 'acf/load_value/type=wysiwyg', array( 'WPGlobus_Filters', 'filter__text' ), 0 );
 
 
 
 
358
  }
359
 
360
  /**
355
  add_filter( 'acf/load_value/type=text', array( 'WPGlobus_Filters', 'filter__text' ), 0 );
356
  add_filter( 'acf/load_value/type=textarea', array( 'WPGlobus_Filters', 'filter__text' ), 0 );
357
  add_filter( 'acf/load_value/type=wysiwyg', array( 'WPGlobus_Filters', 'filter__text' ), 0 );
358
+ /**
359
+ * @since 2.2.22
360
+ */
361
+ add_filter( 'acf/load_value/type=url', array( 'WPGlobus_Filters', 'filter__text' ), 0 );
362
  }
363
 
364
  /**
languages/wpglobus-ar.po CHANGED
@@ -297,7 +297,7 @@ msgstr ""
297
 
298
  #: includes/admin/class-wpglobus-customize-options.php:546,
299
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
300
- #: includes/class-wpglobus.php:1345, wpglobus.php:12, wpglobus.php:18
301
  msgid "WPGlobus"
302
  msgstr "WPGlobus"
303
 
@@ -816,7 +816,7 @@ msgid "To translate permalinks, please activate the module Slug."
816
  msgstr ""
817
 
818
  #: includes/builders/class-wpglobus-builder.php:277,
819
- #: includes/class-wpglobus.php:3611
820
  msgid "Save draft before using extra language."
821
  msgstr ""
822
 
@@ -897,40 +897,40 @@ msgid "Selector type"
897
  msgstr ""
898
 
899
  #. translators: ON/OFF status of WPGlobus on the edit pages.
900
- #: includes/class-wpglobus.php:1319
901
  msgid "OFF"
902
  msgstr ""
903
 
904
- #: includes/class-wpglobus.php:1320
905
  msgid "Turn on"
906
  msgstr ""
907
 
908
  #. translators: ON/OFF status of WPGlobus on the edit pages.
909
- #: includes/class-wpglobus.php:1324
910
  msgid "ON"
911
  msgstr ""
912
 
913
- #: includes/class-wpglobus.php:1325
914
  msgid "Turn off"
915
  msgstr ""
916
 
917
- #: includes/class-wpglobus.php:1508
918
  msgid "You cannot disable the main language."
919
  msgstr ""
920
 
921
- #: includes/class-wpglobus.php:1709
922
  msgid "*) Available after the menu is saved."
923
  msgstr ""
924
 
925
- #: includes/class-wpglobus.php:1726
926
  msgid "Need a multilingual slug?"
927
  msgstr ""
928
 
929
- #: includes/class-wpglobus.php:4050
930
  msgid "You must enable Pretty Permalinks to use WPGlobus."
931
  msgstr ""
932
 
933
- #: includes/class-wpglobus.php:4052
934
  msgid ""
935
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
936
  "default option."
297
 
298
  #: includes/admin/class-wpglobus-customize-options.php:546,
299
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
300
+ #: includes/class-wpglobus.php:1340, wpglobus.php:12, wpglobus.php:18
301
  msgid "WPGlobus"
302
  msgstr "WPGlobus"
303
 
816
  msgstr ""
817
 
818
  #: includes/builders/class-wpglobus-builder.php:277,
819
+ #: includes/class-wpglobus.php:3606
820
  msgid "Save draft before using extra language."
821
  msgstr ""
822
 
897
  msgstr ""
898
 
899
  #. translators: ON/OFF status of WPGlobus on the edit pages.
900
+ #: includes/class-wpglobus.php:1314
901
  msgid "OFF"
902
  msgstr ""
903
 
904
+ #: includes/class-wpglobus.php:1315
905
  msgid "Turn on"
906
  msgstr ""
907
 
908
  #. translators: ON/OFF status of WPGlobus on the edit pages.
909
+ #: includes/class-wpglobus.php:1319
910
  msgid "ON"
911
  msgstr ""
912
 
913
+ #: includes/class-wpglobus.php:1320
914
  msgid "Turn off"
915
  msgstr ""
916
 
917
+ #: includes/class-wpglobus.php:1503
918
  msgid "You cannot disable the main language."
919
  msgstr ""
920
 
921
+ #: includes/class-wpglobus.php:1704
922
  msgid "*) Available after the menu is saved."
923
  msgstr ""
924
 
925
+ #: includes/class-wpglobus.php:1721
926
  msgid "Need a multilingual slug?"
927
  msgstr ""
928
 
929
+ #: includes/class-wpglobus.php:4045
930
  msgid "You must enable Pretty Permalinks to use WPGlobus."
931
  msgstr ""
932
 
933
+ #: includes/class-wpglobus.php:4047
934
  msgid ""
935
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
936
  "default option."
languages/wpglobus-be.po CHANGED
@@ -322,7 +322,7 @@ msgstr "Сохранить и перезагрузить"
322
 
323
  #: includes/admin/class-wpglobus-customize-options.php:546,
324
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
325
- #: includes/class-wpglobus.php:1345, wpglobus.php:12, wpglobus.php:18
326
  msgid "WPGlobus"
327
  msgstr "WPGlobus"
328
 
@@ -867,7 +867,7 @@ msgid "To translate permalinks, please activate the module Slug."
867
  msgstr ""
868
 
869
  #: includes/builders/class-wpglobus-builder.php:277,
870
- #: includes/class-wpglobus.php:3611
871
  msgid "Save draft before using extra language."
872
  msgstr ""
873
 
@@ -948,42 +948,42 @@ msgid "Selector type"
948
  msgstr "Способ выбора языка"
949
 
950
  #. translators: ON/OFF status of WPGlobus on the edit pages.
951
- #: includes/class-wpglobus.php:1319
952
  msgid "OFF"
953
  msgstr ""
954
 
955
- #: includes/class-wpglobus.php:1320
956
  msgid "Turn on"
957
  msgstr ""
958
 
959
  #. translators: ON/OFF status of WPGlobus on the edit pages.
960
- #: includes/class-wpglobus.php:1324
961
  msgid "ON"
962
  msgstr ""
963
 
964
- #: includes/class-wpglobus.php:1325
965
  msgid "Turn off"
966
  msgstr ""
967
 
968
- #: includes/class-wpglobus.php:1508
969
  msgid "You cannot disable the main language."
970
  msgstr "Нельзя отключить основной язык."
971
 
972
- #: includes/class-wpglobus.php:1709
973
  msgid "*) Available after the menu is saved."
974
  msgstr "*) Доступно после сохранения меню."
975
 
976
- #: includes/class-wpglobus.php:1726
977
  msgid "Need a multilingual slug?"
978
  msgstr "Нужен мультиязычный ярлык?"
979
 
980
- #: includes/class-wpglobus.php:4050
981
  msgid "You must enable Pretty Permalinks to use WPGlobus."
982
  msgstr ""
983
  "Чтобы использовать плагин WPGlobus, необходимо включить ЧПУ - постоянные "
984
  "ссылки."
985
 
986
- #: includes/class-wpglobus.php:4052
987
  msgid ""
988
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
989
  "default option."
322
 
323
  #: includes/admin/class-wpglobus-customize-options.php:546,
324
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
325
+ #: includes/class-wpglobus.php:1340, wpglobus.php:12, wpglobus.php:18
326
  msgid "WPGlobus"
327
  msgstr "WPGlobus"
328
 
867
  msgstr ""
868
 
869
  #: includes/builders/class-wpglobus-builder.php:277,
870
+ #: includes/class-wpglobus.php:3606
871
  msgid "Save draft before using extra language."
872
  msgstr ""
873
 
948
  msgstr "Способ выбора языка"
949
 
950
  #. translators: ON/OFF status of WPGlobus on the edit pages.
951
+ #: includes/class-wpglobus.php:1314
952
  msgid "OFF"
953
  msgstr ""
954
 
955
+ #: includes/class-wpglobus.php:1315
956
  msgid "Turn on"
957
  msgstr ""
958
 
959
  #. translators: ON/OFF status of WPGlobus on the edit pages.
960
+ #: includes/class-wpglobus.php:1319
961
  msgid "ON"
962
  msgstr ""
963
 
964
+ #: includes/class-wpglobus.php:1320
965
  msgid "Turn off"
966
  msgstr ""
967
 
968
+ #: includes/class-wpglobus.php:1503
969
  msgid "You cannot disable the main language."
970
  msgstr "Нельзя отключить основной язык."
971
 
972
+ #: includes/class-wpglobus.php:1704
973
  msgid "*) Available after the menu is saved."
974
  msgstr "*) Доступно после сохранения меню."
975
 
976
+ #: includes/class-wpglobus.php:1721
977
  msgid "Need a multilingual slug?"
978
  msgstr "Нужен мультиязычный ярлык?"
979
 
980
+ #: includes/class-wpglobus.php:4045
981
  msgid "You must enable Pretty Permalinks to use WPGlobus."
982
  msgstr ""
983
  "Чтобы использовать плагин WPGlobus, необходимо включить ЧПУ - постоянные "
984
  "ссылки."
985
 
986
+ #: includes/class-wpglobus.php:4047
987
  msgid ""
988
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
989
  "default option."
languages/wpglobus-bg_BG.po CHANGED
@@ -273,7 +273,7 @@ msgstr ""
273
 
274
  #: includes/admin/class-wpglobus-customize-options.php:546,
275
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
276
- #: includes/class-wpglobus.php:1345, wpglobus.php:12, wpglobus.php:18
277
  msgid "WPGlobus"
278
  msgstr ""
279
 
@@ -792,7 +792,7 @@ msgid "To translate permalinks, please activate the module Slug."
792
  msgstr ""
793
 
794
  #: includes/builders/class-wpglobus-builder.php:277,
795
- #: includes/class-wpglobus.php:3611
796
  msgid "Save draft before using extra language."
797
  msgstr ""
798
 
@@ -873,40 +873,40 @@ msgid "Selector type"
873
  msgstr ""
874
 
875
  #. translators: ON/OFF status of WPGlobus on the edit pages.
876
- #: includes/class-wpglobus.php:1319
877
  msgid "OFF"
878
  msgstr ""
879
 
880
- #: includes/class-wpglobus.php:1320
881
  msgid "Turn on"
882
  msgstr ""
883
 
884
  #. translators: ON/OFF status of WPGlobus on the edit pages.
885
- #: includes/class-wpglobus.php:1324
886
  msgid "ON"
887
  msgstr ""
888
 
889
- #: includes/class-wpglobus.php:1325
890
  msgid "Turn off"
891
  msgstr ""
892
 
893
- #: includes/class-wpglobus.php:1508
894
  msgid "You cannot disable the main language."
895
  msgstr ""
896
 
897
- #: includes/class-wpglobus.php:1709
898
  msgid "*) Available after the menu is saved."
899
  msgstr ""
900
 
901
- #: includes/class-wpglobus.php:1726
902
  msgid "Need a multilingual slug?"
903
  msgstr ""
904
 
905
- #: includes/class-wpglobus.php:4050
906
  msgid "You must enable Pretty Permalinks to use WPGlobus."
907
  msgstr ""
908
 
909
- #: includes/class-wpglobus.php:4052
910
  msgid ""
911
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
912
  "default option."
273
 
274
  #: includes/admin/class-wpglobus-customize-options.php:546,
275
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
276
+ #: includes/class-wpglobus.php:1340, wpglobus.php:12, wpglobus.php:18
277
  msgid "WPGlobus"
278
  msgstr ""
279
 
792
  msgstr ""
793
 
794
  #: includes/builders/class-wpglobus-builder.php:277,
795
+ #: includes/class-wpglobus.php:3606
796
  msgid "Save draft before using extra language."
797
  msgstr ""
798
 
873
  msgstr ""
874
 
875
  #. translators: ON/OFF status of WPGlobus on the edit pages.
876
+ #: includes/class-wpglobus.php:1314
877
  msgid "OFF"
878
  msgstr ""
879
 
880
+ #: includes/class-wpglobus.php:1315
881
  msgid "Turn on"
882
  msgstr ""
883
 
884
  #. translators: ON/OFF status of WPGlobus on the edit pages.
885
+ #: includes/class-wpglobus.php:1319
886
  msgid "ON"
887
  msgstr ""
888
 
889
+ #: includes/class-wpglobus.php:1320
890
  msgid "Turn off"
891
  msgstr ""
892
 
893
+ #: includes/class-wpglobus.php:1503
894
  msgid "You cannot disable the main language."
895
  msgstr ""
896
 
897
+ #: includes/class-wpglobus.php:1704
898
  msgid "*) Available after the menu is saved."
899
  msgstr ""
900
 
901
+ #: includes/class-wpglobus.php:1721
902
  msgid "Need a multilingual slug?"
903
  msgstr ""
904
 
905
+ #: includes/class-wpglobus.php:4045
906
  msgid "You must enable Pretty Permalinks to use WPGlobus."
907
  msgstr ""
908
 
909
+ #: includes/class-wpglobus.php:4047
910
  msgid ""
911
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
912
  "default option."
languages/wpglobus-de_CH.po CHANGED
@@ -293,7 +293,7 @@ msgstr ""
293
 
294
  #: includes/admin/class-wpglobus-customize-options.php:546,
295
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
296
- #: includes/class-wpglobus.php:1345, wpglobus.php:12, wpglobus.php:18
297
  msgid "WPGlobus"
298
  msgstr "WPGlobus"
299
 
@@ -828,7 +828,7 @@ msgid "To translate permalinks, please activate the module Slug."
828
  msgstr ""
829
 
830
  #: includes/builders/class-wpglobus-builder.php:277,
831
- #: includes/class-wpglobus.php:3611
832
  msgid "Save draft before using extra language."
833
  msgstr ""
834
 
@@ -909,41 +909,41 @@ msgid "Selector type"
909
  msgstr "Selektor-Typ"
910
 
911
  #. translators: ON/OFF status of WPGlobus on the edit pages.
912
- #: includes/class-wpglobus.php:1319
913
  msgid "OFF"
914
  msgstr ""
915
 
916
- #: includes/class-wpglobus.php:1320
917
  msgid "Turn on"
918
  msgstr ""
919
 
920
  #. translators: ON/OFF status of WPGlobus on the edit pages.
921
- #: includes/class-wpglobus.php:1324
922
  msgid "ON"
923
  msgstr ""
924
 
925
- #: includes/class-wpglobus.php:1325
926
  msgid "Turn off"
927
  msgstr ""
928
 
929
- #: includes/class-wpglobus.php:1508
930
  msgid "You cannot disable the main language."
931
  msgstr "Die Hauptsprache kann nicht deaktiviert werden."
932
 
933
- #: includes/class-wpglobus.php:1709
934
  msgid "*) Available after the menu is saved."
935
  msgstr "*) Verfügbar nachdem das Menü gespeichert wurde."
936
 
937
- #: includes/class-wpglobus.php:1726
938
  msgid "Need a multilingual slug?"
939
  msgstr ""
940
 
941
- #: includes/class-wpglobus.php:4050
942
  msgid "You must enable Pretty Permalinks to use WPGlobus."
943
  msgstr ""
944
  "Sie müssen schöne Permalinks aktivieren um WPGlobus verwenden zu können."
945
 
946
- #: includes/class-wpglobus.php:4052
947
  msgid ""
948
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
949
  "default option."
293
 
294
  #: includes/admin/class-wpglobus-customize-options.php:546,
295
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
296
+ #: includes/class-wpglobus.php:1340, wpglobus.php:12, wpglobus.php:18
297
  msgid "WPGlobus"
298
  msgstr "WPGlobus"
299
 
828
  msgstr ""
829
 
830
  #: includes/builders/class-wpglobus-builder.php:277,
831
+ #: includes/class-wpglobus.php:3606
832
  msgid "Save draft before using extra language."
833
  msgstr ""
834
 
909
  msgstr "Selektor-Typ"
910
 
911
  #. translators: ON/OFF status of WPGlobus on the edit pages.
912
+ #: includes/class-wpglobus.php:1314
913
  msgid "OFF"
914
  msgstr ""
915
 
916
+ #: includes/class-wpglobus.php:1315
917
  msgid "Turn on"
918
  msgstr ""
919
 
920
  #. translators: ON/OFF status of WPGlobus on the edit pages.
921
+ #: includes/class-wpglobus.php:1319
922
  msgid "ON"
923
  msgstr ""
924
 
925
+ #: includes/class-wpglobus.php:1320
926
  msgid "Turn off"
927
  msgstr ""
928
 
929
+ #: includes/class-wpglobus.php:1503
930
  msgid "You cannot disable the main language."
931
  msgstr "Die Hauptsprache kann nicht deaktiviert werden."
932
 
933
+ #: includes/class-wpglobus.php:1704
934
  msgid "*) Available after the menu is saved."
935
  msgstr "*) Verfügbar nachdem das Menü gespeichert wurde."
936
 
937
+ #: includes/class-wpglobus.php:1721
938
  msgid "Need a multilingual slug?"
939
  msgstr ""
940
 
941
+ #: includes/class-wpglobus.php:4045
942
  msgid "You must enable Pretty Permalinks to use WPGlobus."
943
  msgstr ""
944
  "Sie müssen schöne Permalinks aktivieren um WPGlobus verwenden zu können."
945
 
946
+ #: includes/class-wpglobus.php:4047
947
  msgid ""
948
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
949
  "default option."
languages/wpglobus-de_DE.po CHANGED
@@ -293,7 +293,7 @@ msgstr ""
293
 
294
  #: includes/admin/class-wpglobus-customize-options.php:546,
295
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
296
- #: includes/class-wpglobus.php:1345, wpglobus.php:12, wpglobus.php:18
297
  msgid "WPGlobus"
298
  msgstr "WPGlobus"
299
 
@@ -829,7 +829,7 @@ msgid "To translate permalinks, please activate the module Slug."
829
  msgstr ""
830
 
831
  #: includes/builders/class-wpglobus-builder.php:277,
832
- #: includes/class-wpglobus.php:3611
833
  msgid "Save draft before using extra language."
834
  msgstr ""
835
 
@@ -910,41 +910,41 @@ msgid "Selector type"
910
  msgstr "Selektor-Typ"
911
 
912
  #. translators: ON/OFF status of WPGlobus on the edit pages.
913
- #: includes/class-wpglobus.php:1319
914
  msgid "OFF"
915
  msgstr "AUS"
916
 
917
- #: includes/class-wpglobus.php:1320
918
  msgid "Turn on"
919
  msgstr ""
920
 
921
  #. translators: ON/OFF status of WPGlobus on the edit pages.
922
- #: includes/class-wpglobus.php:1324
923
  msgid "ON"
924
  msgstr "EIN"
925
 
926
- #: includes/class-wpglobus.php:1325
927
  msgid "Turn off"
928
  msgstr ""
929
 
930
- #: includes/class-wpglobus.php:1508
931
  msgid "You cannot disable the main language."
932
  msgstr "Die Hauptsprache kann nicht deaktiviert werden."
933
 
934
- #: includes/class-wpglobus.php:1709
935
  msgid "*) Available after the menu is saved."
936
  msgstr "*) Verfügbar nachdem das Menü gespeichert wurde."
937
 
938
- #: includes/class-wpglobus.php:1726
939
  msgid "Need a multilingual slug?"
940
  msgstr ""
941
 
942
- #: includes/class-wpglobus.php:4050
943
  msgid "You must enable Pretty Permalinks to use WPGlobus."
944
  msgstr ""
945
  "Sie müssen schöne Permalinks aktivieren um WPGlobus verwenden zu können."
946
 
947
- #: includes/class-wpglobus.php:4052
948
  msgid ""
949
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
950
  "default option."
293
 
294
  #: includes/admin/class-wpglobus-customize-options.php:546,
295
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
296
+ #: includes/class-wpglobus.php:1340, wpglobus.php:12, wpglobus.php:18
297
  msgid "WPGlobus"
298
  msgstr "WPGlobus"
299
 
829
  msgstr ""
830
 
831
  #: includes/builders/class-wpglobus-builder.php:277,
832
+ #: includes/class-wpglobus.php:3606
833
  msgid "Save draft before using extra language."
834
  msgstr ""
835
 
910
  msgstr "Selektor-Typ"
911
 
912
  #. translators: ON/OFF status of WPGlobus on the edit pages.
913
+ #: includes/class-wpglobus.php:1314
914
  msgid "OFF"
915
  msgstr "AUS"
916
 
917
+ #: includes/class-wpglobus.php:1315
918
  msgid "Turn on"
919
  msgstr ""
920
 
921
  #. translators: ON/OFF status of WPGlobus on the edit pages.
922
+ #: includes/class-wpglobus.php:1319
923
  msgid "ON"
924
  msgstr "EIN"
925
 
926
+ #: includes/class-wpglobus.php:1320
927
  msgid "Turn off"
928
  msgstr ""
929
 
930
+ #: includes/class-wpglobus.php:1503
931
  msgid "You cannot disable the main language."
932
  msgstr "Die Hauptsprache kann nicht deaktiviert werden."
933
 
934
+ #: includes/class-wpglobus.php:1704
935
  msgid "*) Available after the menu is saved."
936
  msgstr "*) Verfügbar nachdem das Menü gespeichert wurde."
937
 
938
+ #: includes/class-wpglobus.php:1721
939
  msgid "Need a multilingual slug?"
940
  msgstr ""
941
 
942
+ #: includes/class-wpglobus.php:4045
943
  msgid "You must enable Pretty Permalinks to use WPGlobus."
944
  msgstr ""
945
  "Sie müssen schöne Permalinks aktivieren um WPGlobus verwenden zu können."
946
 
947
+ #: includes/class-wpglobus.php:4047
948
  msgid ""
949
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
950
  "default option."
languages/wpglobus-el.po CHANGED
@@ -274,7 +274,7 @@ msgstr ""
274
 
275
  #: includes/admin/class-wpglobus-customize-options.php:546,
276
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
277
- #: includes/class-wpglobus.php:1345, wpglobus.php:12, wpglobus.php:18
278
  msgid "WPGlobus"
279
  msgstr "WPGlobus"
280
 
@@ -793,7 +793,7 @@ msgid "To translate permalinks, please activate the module Slug."
793
  msgstr ""
794
 
795
  #: includes/builders/class-wpglobus-builder.php:277,
796
- #: includes/class-wpglobus.php:3611
797
  msgid "Save draft before using extra language."
798
  msgstr ""
799
 
@@ -874,40 +874,40 @@ msgid "Selector type"
874
  msgstr ""
875
 
876
  #. translators: ON/OFF status of WPGlobus on the edit pages.
877
- #: includes/class-wpglobus.php:1319
878
  msgid "OFF"
879
  msgstr ""
880
 
881
- #: includes/class-wpglobus.php:1320
882
  msgid "Turn on"
883
  msgstr ""
884
 
885
  #. translators: ON/OFF status of WPGlobus on the edit pages.
886
- #: includes/class-wpglobus.php:1324
887
  msgid "ON"
888
  msgstr ""
889
 
890
- #: includes/class-wpglobus.php:1325
891
  msgid "Turn off"
892
  msgstr ""
893
 
894
- #: includes/class-wpglobus.php:1508
895
  msgid "You cannot disable the main language."
896
  msgstr ""
897
 
898
- #: includes/class-wpglobus.php:1709
899
  msgid "*) Available after the menu is saved."
900
  msgstr ""
901
 
902
- #: includes/class-wpglobus.php:1726
903
  msgid "Need a multilingual slug?"
904
  msgstr ""
905
 
906
- #: includes/class-wpglobus.php:4050
907
  msgid "You must enable Pretty Permalinks to use WPGlobus."
908
  msgstr ""
909
 
910
- #: includes/class-wpglobus.php:4052
911
  msgid ""
912
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
913
  "default option."
274
 
275
  #: includes/admin/class-wpglobus-customize-options.php:546,
276
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
277
+ #: includes/class-wpglobus.php:1340, wpglobus.php:12, wpglobus.php:18
278
  msgid "WPGlobus"
279
  msgstr "WPGlobus"
280
 
793
  msgstr ""
794
 
795
  #: includes/builders/class-wpglobus-builder.php:277,
796
+ #: includes/class-wpglobus.php:3606
797
  msgid "Save draft before using extra language."
798
  msgstr ""
799
 
874
  msgstr ""
875
 
876
  #. translators: ON/OFF status of WPGlobus on the edit pages.
877
+ #: includes/class-wpglobus.php:1314
878
  msgid "OFF"
879
  msgstr ""
880
 
881
+ #: includes/class-wpglobus.php:1315
882
  msgid "Turn on"
883
  msgstr ""
884
 
885
  #. translators: ON/OFF status of WPGlobus on the edit pages.
886
+ #: includes/class-wpglobus.php:1319
887
  msgid "ON"
888
  msgstr ""
889
 
890
+ #: includes/class-wpglobus.php:1320
891
  msgid "Turn off"
892
  msgstr ""
893
 
894
+ #: includes/class-wpglobus.php:1503
895
  msgid "You cannot disable the main language."
896
  msgstr ""
897
 
898
+ #: includes/class-wpglobus.php:1704
899
  msgid "*) Available after the menu is saved."
900
  msgstr ""
901
 
902
+ #: includes/class-wpglobus.php:1721
903
  msgid "Need a multilingual slug?"
904
  msgstr ""
905
 
906
+ #: includes/class-wpglobus.php:4045
907
  msgid "You must enable Pretty Permalinks to use WPGlobus."
908
  msgstr ""
909
 
910
+ #: includes/class-wpglobus.php:4047
911
  msgid ""
912
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
913
  "default option."
languages/wpglobus-en_AU.po CHANGED
@@ -319,7 +319,7 @@ msgstr "Save &amp; Reload"
319
 
320
  #: includes/admin/class-wpglobus-customize-options.php:546,
321
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
322
- #: includes/class-wpglobus.php:1345, wpglobus.php:12, wpglobus.php:18
323
  msgid "WPGlobus"
324
  msgstr "WPGlobus"
325
 
@@ -867,7 +867,7 @@ msgid "To translate permalinks, please activate the module Slug."
867
  msgstr ""
868
 
869
  #: includes/builders/class-wpglobus-builder.php:277,
870
- #: includes/class-wpglobus.php:3611
871
  msgid "Save draft before using extra language."
872
  msgstr ""
873
 
@@ -948,40 +948,40 @@ msgid "Selector type"
948
  msgstr "Selector type"
949
 
950
  #. translators: ON/OFF status of WPGlobus on the edit pages.
951
- #: includes/class-wpglobus.php:1319
952
  msgid "OFF"
953
  msgstr ""
954
 
955
- #: includes/class-wpglobus.php:1320
956
  msgid "Turn on"
957
  msgstr ""
958
 
959
  #. translators: ON/OFF status of WPGlobus on the edit pages.
960
- #: includes/class-wpglobus.php:1324
961
  msgid "ON"
962
  msgstr ""
963
 
964
- #: includes/class-wpglobus.php:1325
965
  msgid "Turn off"
966
  msgstr ""
967
 
968
- #: includes/class-wpglobus.php:1508
969
  msgid "You cannot disable the main language."
970
  msgstr "You cannot disable the main language."
971
 
972
- #: includes/class-wpglobus.php:1709
973
  msgid "*) Available after the menu is saved."
974
  msgstr "*) Available after the menu is saved."
975
 
976
- #: includes/class-wpglobus.php:1726
977
  msgid "Need a multilingual slug?"
978
  msgstr "Need a multilingual slug?"
979
 
980
- #: includes/class-wpglobus.php:4050
981
  msgid "You must enable Pretty Permalinks to use WPGlobus."
982
  msgstr "You must enable Pretty Permalinks to use WPGlobus."
983
 
984
- #: includes/class-wpglobus.php:4052
985
  msgid ""
986
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
987
  "default option."
319
 
320
  #: includes/admin/class-wpglobus-customize-options.php:546,
321
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
322
+ #: includes/class-wpglobus.php:1340, wpglobus.php:12, wpglobus.php:18
323
  msgid "WPGlobus"
324
  msgstr "WPGlobus"
325
 
867
  msgstr ""
868
 
869
  #: includes/builders/class-wpglobus-builder.php:277,
870
+ #: includes/class-wpglobus.php:3606
871
  msgid "Save draft before using extra language."
872
  msgstr ""
873
 
948
  msgstr "Selector type"
949
 
950
  #. translators: ON/OFF status of WPGlobus on the edit pages.
951
+ #: includes/class-wpglobus.php:1314
952
  msgid "OFF"
953
  msgstr ""
954
 
955
+ #: includes/class-wpglobus.php:1315
956
  msgid "Turn on"
957
  msgstr ""
958
 
959
  #. translators: ON/OFF status of WPGlobus on the edit pages.
960
+ #: includes/class-wpglobus.php:1319
961
  msgid "ON"
962
  msgstr ""
963
 
964
+ #: includes/class-wpglobus.php:1320
965
  msgid "Turn off"
966
  msgstr ""
967
 
968
+ #: includes/class-wpglobus.php:1503
969
  msgid "You cannot disable the main language."
970
  msgstr "You cannot disable the main language."
971
 
972
+ #: includes/class-wpglobus.php:1704
973
  msgid "*) Available after the menu is saved."
974
  msgstr "*) Available after the menu is saved."
975
 
976
+ #: includes/class-wpglobus.php:1721
977
  msgid "Need a multilingual slug?"
978
  msgstr "Need a multilingual slug?"
979
 
980
+ #: includes/class-wpglobus.php:4045
981
  msgid "You must enable Pretty Permalinks to use WPGlobus."
982
  msgstr "You must enable Pretty Permalinks to use WPGlobus."
983
 
984
+ #: includes/class-wpglobus.php:4047
985
  msgid ""
986
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
987
  "default option."
languages/wpglobus-en_CA.po CHANGED
@@ -318,7 +318,7 @@ msgstr "Save &amp; Reload"
318
 
319
  #: includes/admin/class-wpglobus-customize-options.php:546,
320
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
321
- #: includes/class-wpglobus.php:1345, wpglobus.php:12, wpglobus.php:18
322
  msgid "WPGlobus"
323
  msgstr "WPGlobus"
324
 
@@ -866,7 +866,7 @@ msgid "To translate permalinks, please activate the module Slug."
866
  msgstr ""
867
 
868
  #: includes/builders/class-wpglobus-builder.php:277,
869
- #: includes/class-wpglobus.php:3611
870
  msgid "Save draft before using extra language."
871
  msgstr ""
872
 
@@ -947,40 +947,40 @@ msgid "Selector type"
947
  msgstr "Selector type"
948
 
949
  #. translators: ON/OFF status of WPGlobus on the edit pages.
950
- #: includes/class-wpglobus.php:1319
951
  msgid "OFF"
952
  msgstr ""
953
 
954
- #: includes/class-wpglobus.php:1320
955
  msgid "Turn on"
956
  msgstr ""
957
 
958
  #. translators: ON/OFF status of WPGlobus on the edit pages.
959
- #: includes/class-wpglobus.php:1324
960
  msgid "ON"
961
  msgstr ""
962
 
963
- #: includes/class-wpglobus.php:1325
964
  msgid "Turn off"
965
  msgstr ""
966
 
967
- #: includes/class-wpglobus.php:1508
968
  msgid "You cannot disable the main language."
969
  msgstr "You cannot disable the main language."
970
 
971
- #: includes/class-wpglobus.php:1709
972
  msgid "*) Available after the menu is saved."
973
  msgstr "*) Available after the menu is saved."
974
 
975
- #: includes/class-wpglobus.php:1726
976
  msgid "Need a multilingual slug?"
977
  msgstr "Need a multilingual slug?"
978
 
979
- #: includes/class-wpglobus.php:4050
980
  msgid "You must enable Pretty Permalinks to use WPGlobus."
981
  msgstr "You must enable Pretty Permalinks to use WPGlobus."
982
 
983
- #: includes/class-wpglobus.php:4052
984
  msgid ""
985
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
986
  "default option."
318
 
319
  #: includes/admin/class-wpglobus-customize-options.php:546,
320
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
321
+ #: includes/class-wpglobus.php:1340, wpglobus.php:12, wpglobus.php:18
322
  msgid "WPGlobus"
323
  msgstr "WPGlobus"
324
 
866
  msgstr ""
867
 
868
  #: includes/builders/class-wpglobus-builder.php:277,
869
+ #: includes/class-wpglobus.php:3606
870
  msgid "Save draft before using extra language."
871
  msgstr ""
872
 
947
  msgstr "Selector type"
948
 
949
  #. translators: ON/OFF status of WPGlobus on the edit pages.
950
+ #: includes/class-wpglobus.php:1314
951
  msgid "OFF"
952
  msgstr ""
953
 
954
+ #: includes/class-wpglobus.php:1315
955
  msgid "Turn on"
956
  msgstr ""
957
 
958
  #. translators: ON/OFF status of WPGlobus on the edit pages.
959
+ #: includes/class-wpglobus.php:1319
960
  msgid "ON"
961
  msgstr ""
962
 
963
+ #: includes/class-wpglobus.php:1320
964
  msgid "Turn off"
965
  msgstr ""
966
 
967
+ #: includes/class-wpglobus.php:1503
968
  msgid "You cannot disable the main language."
969
  msgstr "You cannot disable the main language."
970
 
971
+ #: includes/class-wpglobus.php:1704
972
  msgid "*) Available after the menu is saved."
973
  msgstr "*) Available after the menu is saved."
974
 
975
+ #: includes/class-wpglobus.php:1721
976
  msgid "Need a multilingual slug?"
977
  msgstr "Need a multilingual slug?"
978
 
979
+ #: includes/class-wpglobus.php:4045
980
  msgid "You must enable Pretty Permalinks to use WPGlobus."
981
  msgstr "You must enable Pretty Permalinks to use WPGlobus."
982
 
983
+ #: includes/class-wpglobus.php:4047
984
  msgid ""
985
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
986
  "default option."
languages/wpglobus-en_GB.po CHANGED
@@ -319,7 +319,7 @@ msgstr "Save &amp; Reload"
319
 
320
  #: includes/admin/class-wpglobus-customize-options.php:546,
321
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
322
- #: includes/class-wpglobus.php:1345, wpglobus.php:12, wpglobus.php:18
323
  msgid "WPGlobus"
324
  msgstr "WPGlobus"
325
 
@@ -867,7 +867,7 @@ msgid "To translate permalinks, please activate the module Slug."
867
  msgstr ""
868
 
869
  #: includes/builders/class-wpglobus-builder.php:277,
870
- #: includes/class-wpglobus.php:3611
871
  msgid "Save draft before using extra language."
872
  msgstr ""
873
 
@@ -948,40 +948,40 @@ msgid "Selector type"
948
  msgstr "Selector type"
949
 
950
  #. translators: ON/OFF status of WPGlobus on the edit pages.
951
- #: includes/class-wpglobus.php:1319
952
  msgid "OFF"
953
  msgstr "OFF"
954
 
955
- #: includes/class-wpglobus.php:1320
956
  msgid "Turn on"
957
  msgstr ""
958
 
959
  #. translators: ON/OFF status of WPGlobus on the edit pages.
960
- #: includes/class-wpglobus.php:1324
961
  msgid "ON"
962
  msgstr "ON"
963
 
964
- #: includes/class-wpglobus.php:1325
965
  msgid "Turn off"
966
  msgstr ""
967
 
968
- #: includes/class-wpglobus.php:1508
969
  msgid "You cannot disable the main language."
970
  msgstr "You cannot disable the main language."
971
 
972
- #: includes/class-wpglobus.php:1709
973
  msgid "*) Available after the menu is saved."
974
  msgstr "*) Available after the menu is saved."
975
 
976
- #: includes/class-wpglobus.php:1726
977
  msgid "Need a multilingual slug?"
978
  msgstr "Need a multilingual slug?"
979
 
980
- #: includes/class-wpglobus.php:4050
981
  msgid "You must enable Pretty Permalinks to use WPGlobus."
982
  msgstr "You must enable Pretty Permalinks to use WPGlobus."
983
 
984
- #: includes/class-wpglobus.php:4052
985
  msgid ""
986
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
987
  "default option."
319
 
320
  #: includes/admin/class-wpglobus-customize-options.php:546,
321
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
322
+ #: includes/class-wpglobus.php:1340, wpglobus.php:12, wpglobus.php:18
323
  msgid "WPGlobus"
324
  msgstr "WPGlobus"
325
 
867
  msgstr ""
868
 
869
  #: includes/builders/class-wpglobus-builder.php:277,
870
+ #: includes/class-wpglobus.php:3606
871
  msgid "Save draft before using extra language."
872
  msgstr ""
873
 
948
  msgstr "Selector type"
949
 
950
  #. translators: ON/OFF status of WPGlobus on the edit pages.
951
+ #: includes/class-wpglobus.php:1314
952
  msgid "OFF"
953
  msgstr "OFF"
954
 
955
+ #: includes/class-wpglobus.php:1315
956
  msgid "Turn on"
957
  msgstr ""
958
 
959
  #. translators: ON/OFF status of WPGlobus on the edit pages.
960
+ #: includes/class-wpglobus.php:1319
961
  msgid "ON"
962
  msgstr "ON"
963
 
964
+ #: includes/class-wpglobus.php:1320
965
  msgid "Turn off"
966
  msgstr ""
967
 
968
+ #: includes/class-wpglobus.php:1503
969
  msgid "You cannot disable the main language."
970
  msgstr "You cannot disable the main language."
971
 
972
+ #: includes/class-wpglobus.php:1704
973
  msgid "*) Available after the menu is saved."
974
  msgstr "*) Available after the menu is saved."
975
 
976
+ #: includes/class-wpglobus.php:1721
977
  msgid "Need a multilingual slug?"
978
  msgstr "Need a multilingual slug?"
979
 
980
+ #: includes/class-wpglobus.php:4045
981
  msgid "You must enable Pretty Permalinks to use WPGlobus."
982
  msgstr "You must enable Pretty Permalinks to use WPGlobus."
983
 
984
+ #: includes/class-wpglobus.php:4047
985
  msgid ""
986
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
987
  "default option."
languages/wpglobus-en_NZ.po CHANGED
@@ -318,7 +318,7 @@ msgstr "Save &amp; Reload"
318
 
319
  #: includes/admin/class-wpglobus-customize-options.php:546,
320
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
321
- #: includes/class-wpglobus.php:1345, wpglobus.php:12, wpglobus.php:18
322
  msgid "WPGlobus"
323
  msgstr "WPGlobus"
324
 
@@ -866,7 +866,7 @@ msgid "To translate permalinks, please activate the module Slug."
866
  msgstr ""
867
 
868
  #: includes/builders/class-wpglobus-builder.php:277,
869
- #: includes/class-wpglobus.php:3611
870
  msgid "Save draft before using extra language."
871
  msgstr ""
872
 
@@ -947,40 +947,40 @@ msgid "Selector type"
947
  msgstr "Selector type"
948
 
949
  #. translators: ON/OFF status of WPGlobus on the edit pages.
950
- #: includes/class-wpglobus.php:1319
951
  msgid "OFF"
952
  msgstr ""
953
 
954
- #: includes/class-wpglobus.php:1320
955
  msgid "Turn on"
956
  msgstr ""
957
 
958
  #. translators: ON/OFF status of WPGlobus on the edit pages.
959
- #: includes/class-wpglobus.php:1324
960
  msgid "ON"
961
  msgstr ""
962
 
963
- #: includes/class-wpglobus.php:1325
964
  msgid "Turn off"
965
  msgstr ""
966
 
967
- #: includes/class-wpglobus.php:1508
968
  msgid "You cannot disable the main language."
969
  msgstr "You cannot disable the main language."
970
 
971
- #: includes/class-wpglobus.php:1709
972
  msgid "*) Available after the menu is saved."
973
  msgstr "*) Available after the menu is saved."
974
 
975
- #: includes/class-wpglobus.php:1726
976
  msgid "Need a multilingual slug?"
977
  msgstr "Need a multilingual slug?"
978
 
979
- #: includes/class-wpglobus.php:4050
980
  msgid "You must enable Pretty Permalinks to use WPGlobus."
981
  msgstr "You must enable Pretty Permalinks to use WPGlobus."
982
 
983
- #: includes/class-wpglobus.php:4052
984
  msgid ""
985
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
986
  "default option."
318
 
319
  #: includes/admin/class-wpglobus-customize-options.php:546,
320
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
321
+ #: includes/class-wpglobus.php:1340, wpglobus.php:12, wpglobus.php:18
322
  msgid "WPGlobus"
323
  msgstr "WPGlobus"
324
 
866
  msgstr ""
867
 
868
  #: includes/builders/class-wpglobus-builder.php:277,
869
+ #: includes/class-wpglobus.php:3606
870
  msgid "Save draft before using extra language."
871
  msgstr ""
872
 
947
  msgstr "Selector type"
948
 
949
  #. translators: ON/OFF status of WPGlobus on the edit pages.
950
+ #: includes/class-wpglobus.php:1314
951
  msgid "OFF"
952
  msgstr ""
953
 
954
+ #: includes/class-wpglobus.php:1315
955
  msgid "Turn on"
956
  msgstr ""
957
 
958
  #. translators: ON/OFF status of WPGlobus on the edit pages.
959
+ #: includes/class-wpglobus.php:1319
960
  msgid "ON"
961
  msgstr ""
962
 
963
+ #: includes/class-wpglobus.php:1320
964
  msgid "Turn off"
965
  msgstr ""
966
 
967
+ #: includes/class-wpglobus.php:1503
968
  msgid "You cannot disable the main language."
969
  msgstr "You cannot disable the main language."
970
 
971
+ #: includes/class-wpglobus.php:1704
972
  msgid "*) Available after the menu is saved."
973
  msgstr "*) Available after the menu is saved."
974
 
975
+ #: includes/class-wpglobus.php:1721
976
  msgid "Need a multilingual slug?"
977
  msgstr "Need a multilingual slug?"
978
 
979
+ #: includes/class-wpglobus.php:4045
980
  msgid "You must enable Pretty Permalinks to use WPGlobus."
981
  msgstr "You must enable Pretty Permalinks to use WPGlobus."
982
 
983
+ #: includes/class-wpglobus.php:4047
984
  msgid ""
985
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
986
  "default option."
languages/wpglobus-en_US.po CHANGED
@@ -317,7 +317,7 @@ msgstr "Save &amp; Reload"
317
 
318
  #: includes/admin/class-wpglobus-customize-options.php:546,
319
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
320
- #: includes/class-wpglobus.php:1345, wpglobus.php:12, wpglobus.php:18
321
  msgid "WPGlobus"
322
  msgstr "WPGlobus"
323
 
@@ -870,7 +870,7 @@ msgid "To translate permalinks, please activate the module Slug."
870
  msgstr "To translate permalinks, please activate the module Slug."
871
 
872
  #: includes/builders/class-wpglobus-builder.php:277,
873
- #: includes/class-wpglobus.php:3611
874
  msgid "Save draft before using extra language."
875
  msgstr "Save draft before using extra language."
876
 
@@ -953,40 +953,40 @@ msgid "Selector type"
953
  msgstr "Selector type"
954
 
955
  #. translators: ON/OFF status of WPGlobus on the edit pages.
956
- #: includes/class-wpglobus.php:1319
957
  msgid "OFF"
958
  msgstr "OFF"
959
 
960
- #: includes/class-wpglobus.php:1320
961
  msgid "Turn on"
962
  msgstr "Turn on"
963
 
964
  #. translators: ON/OFF status of WPGlobus on the edit pages.
965
- #: includes/class-wpglobus.php:1324
966
  msgid "ON"
967
  msgstr "ON"
968
 
969
- #: includes/class-wpglobus.php:1325
970
  msgid "Turn off"
971
  msgstr "Turn off"
972
 
973
- #: includes/class-wpglobus.php:1508
974
  msgid "You cannot disable the main language."
975
  msgstr "You cannot disable the main language."
976
 
977
- #: includes/class-wpglobus.php:1709
978
  msgid "*) Available after the menu is saved."
979
  msgstr "*) Available after the menu is saved."
980
 
981
- #: includes/class-wpglobus.php:1726
982
  msgid "Need a multilingual slug?"
983
  msgstr "Need a multilingual slug?"
984
 
985
- #: includes/class-wpglobus.php:4050
986
  msgid "You must enable Pretty Permalinks to use WPGlobus."
987
  msgstr "You must enable Pretty Permalinks to use WPGlobus."
988
 
989
- #: includes/class-wpglobus.php:4052
990
  msgid ""
991
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
992
  "default option."
317
 
318
  #: includes/admin/class-wpglobus-customize-options.php:546,
319
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
320
+ #: includes/class-wpglobus.php:1340, wpglobus.php:12, wpglobus.php:18
321
  msgid "WPGlobus"
322
  msgstr "WPGlobus"
323
 
870
  msgstr "To translate permalinks, please activate the module Slug."
871
 
872
  #: includes/builders/class-wpglobus-builder.php:277,
873
+ #: includes/class-wpglobus.php:3606
874
  msgid "Save draft before using extra language."
875
  msgstr "Save draft before using extra language."
876
 
953
  msgstr "Selector type"
954
 
955
  #. translators: ON/OFF status of WPGlobus on the edit pages.
956
+ #: includes/class-wpglobus.php:1314
957
  msgid "OFF"
958
  msgstr "OFF"
959
 
960
+ #: includes/class-wpglobus.php:1315
961
  msgid "Turn on"
962
  msgstr "Turn on"
963
 
964
  #. translators: ON/OFF status of WPGlobus on the edit pages.
965
+ #: includes/class-wpglobus.php:1319
966
  msgid "ON"
967
  msgstr "ON"
968
 
969
+ #: includes/class-wpglobus.php:1320
970
  msgid "Turn off"
971
  msgstr "Turn off"
972
 
973
+ #: includes/class-wpglobus.php:1503
974
  msgid "You cannot disable the main language."
975
  msgstr "You cannot disable the main language."
976
 
977
+ #: includes/class-wpglobus.php:1704
978
  msgid "*) Available after the menu is saved."
979
  msgstr "*) Available after the menu is saved."
980
 
981
+ #: includes/class-wpglobus.php:1721
982
  msgid "Need a multilingual slug?"
983
  msgstr "Need a multilingual slug?"
984
 
985
+ #: includes/class-wpglobus.php:4045
986
  msgid "You must enable Pretty Permalinks to use WPGlobus."
987
  msgstr "You must enable Pretty Permalinks to use WPGlobus."
988
 
989
+ #: includes/class-wpglobus.php:4047
990
  msgid ""
991
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
992
  "default option."
languages/wpglobus-en_ZA.po CHANGED
@@ -318,7 +318,7 @@ msgstr "Save &amp; Reload"
318
 
319
  #: includes/admin/class-wpglobus-customize-options.php:546,
320
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
321
- #: includes/class-wpglobus.php:1345, wpglobus.php:12, wpglobus.php:18
322
  msgid "WPGlobus"
323
  msgstr "WPGlobus"
324
 
@@ -866,7 +866,7 @@ msgid "To translate permalinks, please activate the module Slug."
866
  msgstr ""
867
 
868
  #: includes/builders/class-wpglobus-builder.php:277,
869
- #: includes/class-wpglobus.php:3611
870
  msgid "Save draft before using extra language."
871
  msgstr ""
872
 
@@ -947,40 +947,40 @@ msgid "Selector type"
947
  msgstr "Selector type"
948
 
949
  #. translators: ON/OFF status of WPGlobus on the edit pages.
950
- #: includes/class-wpglobus.php:1319
951
  msgid "OFF"
952
  msgstr ""
953
 
954
- #: includes/class-wpglobus.php:1320
955
  msgid "Turn on"
956
  msgstr ""
957
 
958
  #. translators: ON/OFF status of WPGlobus on the edit pages.
959
- #: includes/class-wpglobus.php:1324
960
  msgid "ON"
961
  msgstr ""
962
 
963
- #: includes/class-wpglobus.php:1325
964
  msgid "Turn off"
965
  msgstr ""
966
 
967
- #: includes/class-wpglobus.php:1508
968
  msgid "You cannot disable the main language."
969
  msgstr "You cannot disable the main language."
970
 
971
- #: includes/class-wpglobus.php:1709
972
  msgid "*) Available after the menu is saved."
973
  msgstr "*) Available after the menu is saved."
974
 
975
- #: includes/class-wpglobus.php:1726
976
  msgid "Need a multilingual slug?"
977
  msgstr "Need a multilingual slug?"
978
 
979
- #: includes/class-wpglobus.php:4050
980
  msgid "You must enable Pretty Permalinks to use WPGlobus."
981
  msgstr "You must enable Pretty Permalinks to use WPGlobus."
982
 
983
- #: includes/class-wpglobus.php:4052
984
  msgid ""
985
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
986
  "default option."
318
 
319
  #: includes/admin/class-wpglobus-customize-options.php:546,
320
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
321
+ #: includes/class-wpglobus.php:1340, wpglobus.php:12, wpglobus.php:18
322
  msgid "WPGlobus"
323
  msgstr "WPGlobus"
324
 
866
  msgstr ""
867
 
868
  #: includes/builders/class-wpglobus-builder.php:277,
869
+ #: includes/class-wpglobus.php:3606
870
  msgid "Save draft before using extra language."
871
  msgstr ""
872
 
947
  msgstr "Selector type"
948
 
949
  #. translators: ON/OFF status of WPGlobus on the edit pages.
950
+ #: includes/class-wpglobus.php:1314
951
  msgid "OFF"
952
  msgstr ""
953
 
954
+ #: includes/class-wpglobus.php:1315
955
  msgid "Turn on"
956
  msgstr ""
957
 
958
  #. translators: ON/OFF status of WPGlobus on the edit pages.
959
+ #: includes/class-wpglobus.php:1319
960
  msgid "ON"
961
  msgstr ""
962
 
963
+ #: includes/class-wpglobus.php:1320
964
  msgid "Turn off"
965
  msgstr ""
966
 
967
+ #: includes/class-wpglobus.php:1503
968
  msgid "You cannot disable the main language."
969
  msgstr "You cannot disable the main language."
970
 
971
+ #: includes/class-wpglobus.php:1704
972
  msgid "*) Available after the menu is saved."
973
  msgstr "*) Available after the menu is saved."
974
 
975
+ #: includes/class-wpglobus.php:1721
976
  msgid "Need a multilingual slug?"
977
  msgstr "Need a multilingual slug?"
978
 
979
+ #: includes/class-wpglobus.php:4045
980
  msgid "You must enable Pretty Permalinks to use WPGlobus."
981
  msgstr "You must enable Pretty Permalinks to use WPGlobus."
982
 
983
+ #: includes/class-wpglobus.php:4047
984
  msgid ""
985
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
986
  "default option."
languages/wpglobus-es_AR.po CHANGED
@@ -290,7 +290,7 @@ msgstr ""
290
 
291
  #: includes/admin/class-wpglobus-customize-options.php:546,
292
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
293
- #: includes/class-wpglobus.php:1345, wpglobus.php:12, wpglobus.php:18
294
  msgid "WPGlobus"
295
  msgstr ""
296
 
@@ -827,7 +827,7 @@ msgid "To translate permalinks, please activate the module Slug."
827
  msgstr ""
828
 
829
  #: includes/builders/class-wpglobus-builder.php:277,
830
- #: includes/class-wpglobus.php:3611
831
  msgid "Save draft before using extra language."
832
  msgstr ""
833
 
@@ -908,41 +908,41 @@ msgid "Selector type"
908
  msgstr "Tipo de selector"
909
 
910
  #. translators: ON/OFF status of WPGlobus on the edit pages.
911
- #: includes/class-wpglobus.php:1319
912
  msgid "OFF"
913
  msgstr ""
914
 
915
- #: includes/class-wpglobus.php:1320
916
  msgid "Turn on"
917
  msgstr ""
918
 
919
  #. translators: ON/OFF status of WPGlobus on the edit pages.
920
- #: includes/class-wpglobus.php:1324
921
  msgid "ON"
922
  msgstr ""
923
 
924
- #: includes/class-wpglobus.php:1325
925
  msgid "Turn off"
926
  msgstr ""
927
 
928
- #: includes/class-wpglobus.php:1508
929
  msgid "You cannot disable the main language."
930
  msgstr "No se puede desactivar el idioma principal."
931
 
932
- #: includes/class-wpglobus.php:1709
933
  msgid "*) Available after the menu is saved."
934
  msgstr "No Se Puede Desactivar el director idioma."
935
 
936
- #: includes/class-wpglobus.php:1726
937
  msgid "Need a multilingual slug?"
938
  msgstr ""
939
 
940
- #: includes/class-wpglobus.php:4050
941
  msgid "You must enable Pretty Permalinks to use WPGlobus."
942
  msgstr ""
943
  "Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
944
 
945
- #: includes/class-wpglobus.php:4052
946
  msgid ""
947
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
948
  "default option."
290
 
291
  #: includes/admin/class-wpglobus-customize-options.php:546,
292
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
293
+ #: includes/class-wpglobus.php:1340, wpglobus.php:12, wpglobus.php:18
294
  msgid "WPGlobus"
295
  msgstr ""
296
 
827
  msgstr ""
828
 
829
  #: includes/builders/class-wpglobus-builder.php:277,
830
+ #: includes/class-wpglobus.php:3606
831
  msgid "Save draft before using extra language."
832
  msgstr ""
833
 
908
  msgstr "Tipo de selector"
909
 
910
  #. translators: ON/OFF status of WPGlobus on the edit pages.
911
+ #: includes/class-wpglobus.php:1314
912
  msgid "OFF"
913
  msgstr ""
914
 
915
+ #: includes/class-wpglobus.php:1315
916
  msgid "Turn on"
917
  msgstr ""
918
 
919
  #. translators: ON/OFF status of WPGlobus on the edit pages.
920
+ #: includes/class-wpglobus.php:1319
921
  msgid "ON"
922
  msgstr ""
923
 
924
+ #: includes/class-wpglobus.php:1320
925
  msgid "Turn off"
926
  msgstr ""
927
 
928
+ #: includes/class-wpglobus.php:1503
929
  msgid "You cannot disable the main language."
930
  msgstr "No se puede desactivar el idioma principal."
931
 
932
+ #: includes/class-wpglobus.php:1704
933
  msgid "*) Available after the menu is saved."
934
  msgstr "No Se Puede Desactivar el director idioma."
935
 
936
+ #: includes/class-wpglobus.php:1721
937
  msgid "Need a multilingual slug?"
938
  msgstr ""
939
 
940
+ #: includes/class-wpglobus.php:4045
941
  msgid "You must enable Pretty Permalinks to use WPGlobus."
942
  msgstr ""
943
  "Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
944
 
945
+ #: includes/class-wpglobus.php:4047
946
  msgid ""
947
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
948
  "default option."
languages/wpglobus-es_CL.po CHANGED
@@ -290,7 +290,7 @@ msgstr ""
290
 
291
  #: includes/admin/class-wpglobus-customize-options.php:546,
292
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
293
- #: includes/class-wpglobus.php:1345, wpglobus.php:12, wpglobus.php:18
294
  msgid "WPGlobus"
295
  msgstr ""
296
 
@@ -827,7 +827,7 @@ msgid "To translate permalinks, please activate the module Slug."
827
  msgstr ""
828
 
829
  #: includes/builders/class-wpglobus-builder.php:277,
830
- #: includes/class-wpglobus.php:3611
831
  msgid "Save draft before using extra language."
832
  msgstr ""
833
 
@@ -908,41 +908,41 @@ msgid "Selector type"
908
  msgstr "Tipo de selector"
909
 
910
  #. translators: ON/OFF status of WPGlobus on the edit pages.
911
- #: includes/class-wpglobus.php:1319
912
  msgid "OFF"
913
  msgstr ""
914
 
915
- #: includes/class-wpglobus.php:1320
916
  msgid "Turn on"
917
  msgstr ""
918
 
919
  #. translators: ON/OFF status of WPGlobus on the edit pages.
920
- #: includes/class-wpglobus.php:1324
921
  msgid "ON"
922
  msgstr ""
923
 
924
- #: includes/class-wpglobus.php:1325
925
  msgid "Turn off"
926
  msgstr ""
927
 
928
- #: includes/class-wpglobus.php:1508
929
  msgid "You cannot disable the main language."
930
  msgstr "No se puede desactivar el idioma principal."
931
 
932
- #: includes/class-wpglobus.php:1709
933
  msgid "*) Available after the menu is saved."
934
  msgstr "No Se Puede Desactivar el director idioma."
935
 
936
- #: includes/class-wpglobus.php:1726
937
  msgid "Need a multilingual slug?"
938
  msgstr ""
939
 
940
- #: includes/class-wpglobus.php:4050
941
  msgid "You must enable Pretty Permalinks to use WPGlobus."
942
  msgstr ""
943
  "Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
944
 
945
- #: includes/class-wpglobus.php:4052
946
  msgid ""
947
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
948
  "default option."
290
 
291
  #: includes/admin/class-wpglobus-customize-options.php:546,
292
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
293
+ #: includes/class-wpglobus.php:1340, wpglobus.php:12, wpglobus.php:18
294
  msgid "WPGlobus"
295
  msgstr ""
296
 
827
  msgstr ""
828
 
829
  #: includes/builders/class-wpglobus-builder.php:277,
830
+ #: includes/class-wpglobus.php:3606
831
  msgid "Save draft before using extra language."
832
  msgstr ""
833
 
908
  msgstr "Tipo de selector"
909
 
910
  #. translators: ON/OFF status of WPGlobus on the edit pages.
911
+ #: includes/class-wpglobus.php:1314
912
  msgid "OFF"
913
  msgstr ""
914
 
915
+ #: includes/class-wpglobus.php:1315
916
  msgid "Turn on"
917
  msgstr ""
918
 
919
  #. translators: ON/OFF status of WPGlobus on the edit pages.
920
+ #: includes/class-wpglobus.php:1319
921
  msgid "ON"
922
  msgstr ""
923
 
924
+ #: includes/class-wpglobus.php:1320
925
  msgid "Turn off"
926
  msgstr ""
927
 
928
+ #: includes/class-wpglobus.php:1503
929
  msgid "You cannot disable the main language."
930
  msgstr "No se puede desactivar el idioma principal."
931
 
932
+ #: includes/class-wpglobus.php:1704
933
  msgid "*) Available after the menu is saved."
934
  msgstr "No Se Puede Desactivar el director idioma."
935
 
936
+ #: includes/class-wpglobus.php:1721
937
  msgid "Need a multilingual slug?"
938
  msgstr ""
939
 
940
+ #: includes/class-wpglobus.php:4045
941
  msgid "You must enable Pretty Permalinks to use WPGlobus."
942
  msgstr ""
943
  "Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
944
 
945
+ #: includes/class-wpglobus.php:4047
946
  msgid ""
947
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
948
  "default option."
languages/wpglobus-es_CO.po CHANGED
@@ -290,7 +290,7 @@ msgstr ""
290
 
291
  #: includes/admin/class-wpglobus-customize-options.php:546,
292
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
293
- #: includes/class-wpglobus.php:1345, wpglobus.php:12, wpglobus.php:18
294
  msgid "WPGlobus"
295
  msgstr ""
296
 
@@ -827,7 +827,7 @@ msgid "To translate permalinks, please activate the module Slug."
827
  msgstr ""
828
 
829
  #: includes/builders/class-wpglobus-builder.php:277,
830
- #: includes/class-wpglobus.php:3611
831
  msgid "Save draft before using extra language."
832
  msgstr ""
833
 
@@ -908,41 +908,41 @@ msgid "Selector type"
908
  msgstr "Tipo de selector"
909
 
910
  #. translators: ON/OFF status of WPGlobus on the edit pages.
911
- #: includes/class-wpglobus.php:1319
912
  msgid "OFF"
913
  msgstr ""
914
 
915
- #: includes/class-wpglobus.php:1320
916
  msgid "Turn on"
917
  msgstr ""
918
 
919
  #. translators: ON/OFF status of WPGlobus on the edit pages.
920
- #: includes/class-wpglobus.php:1324
921
  msgid "ON"
922
  msgstr ""
923
 
924
- #: includes/class-wpglobus.php:1325
925
  msgid "Turn off"
926
  msgstr ""
927
 
928
- #: includes/class-wpglobus.php:1508
929
  msgid "You cannot disable the main language."
930
  msgstr "No se puede desactivar el idioma principal."
931
 
932
- #: includes/class-wpglobus.php:1709
933
  msgid "*) Available after the menu is saved."
934
  msgstr "No Se Puede Desactivar el director idioma."
935
 
936
- #: includes/class-wpglobus.php:1726
937
  msgid "Need a multilingual slug?"
938
  msgstr ""
939
 
940
- #: includes/class-wpglobus.php:4050
941
  msgid "You must enable Pretty Permalinks to use WPGlobus."
942
  msgstr ""
943
  "Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
944
 
945
- #: includes/class-wpglobus.php:4052
946
  msgid ""
947
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
948
  "default option."
290
 
291
  #: includes/admin/class-wpglobus-customize-options.php:546,
292
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
293
+ #: includes/class-wpglobus.php:1340, wpglobus.php:12, wpglobus.php:18
294
  msgid "WPGlobus"
295
  msgstr ""
296
 
827
  msgstr ""
828
 
829
  #: includes/builders/class-wpglobus-builder.php:277,
830
+ #: includes/class-wpglobus.php:3606
831
  msgid "Save draft before using extra language."
832
  msgstr ""
833
 
908
  msgstr "Tipo de selector"
909
 
910
  #. translators: ON/OFF status of WPGlobus on the edit pages.
911
+ #: includes/class-wpglobus.php:1314
912
  msgid "OFF"
913
  msgstr ""
914
 
915
+ #: includes/class-wpglobus.php:1315
916
  msgid "Turn on"
917
  msgstr ""
918
 
919
  #. translators: ON/OFF status of WPGlobus on the edit pages.
920
+ #: includes/class-wpglobus.php:1319
921
  msgid "ON"
922
  msgstr ""
923
 
924
+ #: includes/class-wpglobus.php:1320
925
  msgid "Turn off"
926
  msgstr ""
927
 
928
+ #: includes/class-wpglobus.php:1503
929
  msgid "You cannot disable the main language."
930
  msgstr "No se puede desactivar el idioma principal."
931
 
932
+ #: includes/class-wpglobus.php:1704
933
  msgid "*) Available after the menu is saved."
934
  msgstr "No Se Puede Desactivar el director idioma."
935
 
936
+ #: includes/class-wpglobus.php:1721
937
  msgid "Need a multilingual slug?"
938
  msgstr ""
939
 
940
+ #: includes/class-wpglobus.php:4045
941
  msgid "You must enable Pretty Permalinks to use WPGlobus."
942
  msgstr ""
943
  "Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
944
 
945
+ #: includes/class-wpglobus.php:4047
946
  msgid ""
947
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
948
  "default option."
languages/wpglobus-es_CR.po CHANGED
@@ -290,7 +290,7 @@ msgstr ""
290
 
291
  #: includes/admin/class-wpglobus-customize-options.php:546,
292
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
293
- #: includes/class-wpglobus.php:1345, wpglobus.php:12, wpglobus.php:18
294
  msgid "WPGlobus"
295
  msgstr ""
296
 
@@ -827,7 +827,7 @@ msgid "To translate permalinks, please activate the module Slug."
827
  msgstr ""
828
 
829
  #: includes/builders/class-wpglobus-builder.php:277,
830
- #: includes/class-wpglobus.php:3611
831
  msgid "Save draft before using extra language."
832
  msgstr ""
833
 
@@ -908,41 +908,41 @@ msgid "Selector type"
908
  msgstr "Tipo de selector"
909
 
910
  #. translators: ON/OFF status of WPGlobus on the edit pages.
911
- #: includes/class-wpglobus.php:1319
912
  msgid "OFF"
913
  msgstr ""
914
 
915
- #: includes/class-wpglobus.php:1320
916
  msgid "Turn on"
917
  msgstr ""
918
 
919
  #. translators: ON/OFF status of WPGlobus on the edit pages.
920
- #: includes/class-wpglobus.php:1324
921
  msgid "ON"
922
  msgstr ""
923
 
924
- #: includes/class-wpglobus.php:1325
925
  msgid "Turn off"
926
  msgstr ""
927
 
928
- #: includes/class-wpglobus.php:1508
929
  msgid "You cannot disable the main language."
930
  msgstr "No se puede desactivar el idioma principal."
931
 
932
- #: includes/class-wpglobus.php:1709
933
  msgid "*) Available after the menu is saved."
934
  msgstr "No Se Puede Desactivar el director idioma."
935
 
936
- #: includes/class-wpglobus.php:1726
937
  msgid "Need a multilingual slug?"
938
  msgstr ""
939
 
940
- #: includes/class-wpglobus.php:4050
941
  msgid "You must enable Pretty Permalinks to use WPGlobus."
942
  msgstr ""
943
  "Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
944
 
945
- #: includes/class-wpglobus.php:4052
946
  msgid ""
947
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
948
  "default option."
290
 
291
  #: includes/admin/class-wpglobus-customize-options.php:546,
292
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
293
+ #: includes/class-wpglobus.php:1340, wpglobus.php:12, wpglobus.php:18
294
  msgid "WPGlobus"
295
  msgstr ""
296
 
827
  msgstr ""
828
 
829
  #: includes/builders/class-wpglobus-builder.php:277,
830
+ #: includes/class-wpglobus.php:3606
831
  msgid "Save draft before using extra language."
832
  msgstr ""
833
 
908
  msgstr "Tipo de selector"
909
 
910
  #. translators: ON/OFF status of WPGlobus on the edit pages.
911
+ #: includes/class-wpglobus.php:1314
912
  msgid "OFF"
913
  msgstr ""
914
 
915
+ #: includes/class-wpglobus.php:1315
916
  msgid "Turn on"
917
  msgstr ""
918
 
919
  #. translators: ON/OFF status of WPGlobus on the edit pages.
920
+ #: includes/class-wpglobus.php:1319
921
  msgid "ON"
922
  msgstr ""
923
 
924
+ #: includes/class-wpglobus.php:1320
925
  msgid "Turn off"
926
  msgstr ""
927
 
928
+ #: includes/class-wpglobus.php:1503
929
  msgid "You cannot disable the main language."
930
  msgstr "No se puede desactivar el idioma principal."
931
 
932
+ #: includes/class-wpglobus.php:1704
933
  msgid "*) Available after the menu is saved."
934
  msgstr "No Se Puede Desactivar el director idioma."
935
 
936
+ #: includes/class-wpglobus.php:1721
937
  msgid "Need a multilingual slug?"
938
  msgstr ""
939
 
940
+ #: includes/class-wpglobus.php:4045
941
  msgid "You must enable Pretty Permalinks to use WPGlobus."
942
  msgstr ""
943
  "Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
944
 
945
+ #: includes/class-wpglobus.php:4047
946
  msgid ""
947
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
948
  "default option."
languages/wpglobus-es_ES.po CHANGED
@@ -290,7 +290,7 @@ msgstr ""
290
 
291
  #: includes/admin/class-wpglobus-customize-options.php:546,
292
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
293
- #: includes/class-wpglobus.php:1345, wpglobus.php:12, wpglobus.php:18
294
  msgid "WPGlobus"
295
  msgstr ""
296
 
@@ -827,7 +827,7 @@ msgid "To translate permalinks, please activate the module Slug."
827
  msgstr ""
828
 
829
  #: includes/builders/class-wpglobus-builder.php:277,
830
- #: includes/class-wpglobus.php:3611
831
  msgid "Save draft before using extra language."
832
  msgstr ""
833
 
@@ -908,41 +908,41 @@ msgid "Selector type"
908
  msgstr "Tipo de selector"
909
 
910
  #. translators: ON/OFF status of WPGlobus on the edit pages.
911
- #: includes/class-wpglobus.php:1319
912
  msgid "OFF"
913
  msgstr ""
914
 
915
- #: includes/class-wpglobus.php:1320
916
  msgid "Turn on"
917
  msgstr ""
918
 
919
  #. translators: ON/OFF status of WPGlobus on the edit pages.
920
- #: includes/class-wpglobus.php:1324
921
  msgid "ON"
922
  msgstr "ON"
923
 
924
- #: includes/class-wpglobus.php:1325
925
  msgid "Turn off"
926
  msgstr ""
927
 
928
- #: includes/class-wpglobus.php:1508
929
  msgid "You cannot disable the main language."
930
  msgstr "No se puede desactivar el idioma principal."
931
 
932
- #: includes/class-wpglobus.php:1709
933
  msgid "*) Available after the menu is saved."
934
  msgstr "No Se Puede Desactivar el director idioma."
935
 
936
- #: includes/class-wpglobus.php:1726
937
  msgid "Need a multilingual slug?"
938
  msgstr ""
939
 
940
- #: includes/class-wpglobus.php:4050
941
  msgid "You must enable Pretty Permalinks to use WPGlobus."
942
  msgstr ""
943
  "Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
944
 
945
- #: includes/class-wpglobus.php:4052
946
  msgid ""
947
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
948
  "default option."
290
 
291
  #: includes/admin/class-wpglobus-customize-options.php:546,
292
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
293
+ #: includes/class-wpglobus.php:1340, wpglobus.php:12, wpglobus.php:18
294
  msgid "WPGlobus"
295
  msgstr ""
296
 
827
  msgstr ""
828
 
829
  #: includes/builders/class-wpglobus-builder.php:277,
830
+ #: includes/class-wpglobus.php:3606
831
  msgid "Save draft before using extra language."
832
  msgstr ""
833
 
908
  msgstr "Tipo de selector"
909
 
910
  #. translators: ON/OFF status of WPGlobus on the edit pages.
911
+ #: includes/class-wpglobus.php:1314
912
  msgid "OFF"
913
  msgstr ""
914
 
915
+ #: includes/class-wpglobus.php:1315
916
  msgid "Turn on"
917
  msgstr ""
918
 
919
  #. translators: ON/OFF status of WPGlobus on the edit pages.
920
+ #: includes/class-wpglobus.php:1319
921
  msgid "ON"
922
  msgstr "ON"
923
 
924
+ #: includes/class-wpglobus.php:1320
925
  msgid "Turn off"
926
  msgstr ""
927
 
928
+ #: includes/class-wpglobus.php:1503
929
  msgid "You cannot disable the main language."
930
  msgstr "No se puede desactivar el idioma principal."
931
 
932
+ #: includes/class-wpglobus.php:1704
933
  msgid "*) Available after the menu is saved."
934
  msgstr "No Se Puede Desactivar el director idioma."
935
 
936
+ #: includes/class-wpglobus.php:1721
937
  msgid "Need a multilingual slug?"
938
  msgstr ""
939
 
940
+ #: includes/class-wpglobus.php:4045
941
  msgid "You must enable Pretty Permalinks to use WPGlobus."
942
  msgstr ""
943
  "Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
944
 
945
+ #: includes/class-wpglobus.php:4047
946
  msgid ""
947
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
948
  "default option."
languages/wpglobus-es_GT.po CHANGED
@@ -290,7 +290,7 @@ msgstr ""
290
 
291
  #: includes/admin/class-wpglobus-customize-options.php:546,
292
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
293
- #: includes/class-wpglobus.php:1345, wpglobus.php:12, wpglobus.php:18
294
  msgid "WPGlobus"
295
  msgstr ""
296
 
@@ -827,7 +827,7 @@ msgid "To translate permalinks, please activate the module Slug."
827
  msgstr ""
828
 
829
  #: includes/builders/class-wpglobus-builder.php:277,
830
- #: includes/class-wpglobus.php:3611
831
  msgid "Save draft before using extra language."
832
  msgstr ""
833
 
@@ -908,41 +908,41 @@ msgid "Selector type"
908
  msgstr "Tipo de selector"
909
 
910
  #. translators: ON/OFF status of WPGlobus on the edit pages.
911
- #: includes/class-wpglobus.php:1319
912
  msgid "OFF"
913
  msgstr ""
914
 
915
- #: includes/class-wpglobus.php:1320
916
  msgid "Turn on"
917
  msgstr ""
918
 
919
  #. translators: ON/OFF status of WPGlobus on the edit pages.
920
- #: includes/class-wpglobus.php:1324
921
  msgid "ON"
922
  msgstr ""
923
 
924
- #: includes/class-wpglobus.php:1325
925
  msgid "Turn off"
926
  msgstr ""
927
 
928
- #: includes/class-wpglobus.php:1508
929
  msgid "You cannot disable the main language."
930
  msgstr "No se puede desactivar el idioma principal."
931
 
932
- #: includes/class-wpglobus.php:1709
933
  msgid "*) Available after the menu is saved."
934
  msgstr "No Se Puede Desactivar el director idioma."
935
 
936
- #: includes/class-wpglobus.php:1726
937
  msgid "Need a multilingual slug?"
938
  msgstr ""
939
 
940
- #: includes/class-wpglobus.php:4050
941
  msgid "You must enable Pretty Permalinks to use WPGlobus."
942
  msgstr ""
943
  "Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
944
 
945
- #: includes/class-wpglobus.php:4052
946
  msgid ""
947
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
948
  "default option."
290
 
291
  #: includes/admin/class-wpglobus-customize-options.php:546,
292
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
293
+ #: includes/class-wpglobus.php:1340, wpglobus.php:12, wpglobus.php:18
294
  msgid "WPGlobus"
295
  msgstr ""
296
 
827
  msgstr ""
828
 
829
  #: includes/builders/class-wpglobus-builder.php:277,
830
+ #: includes/class-wpglobus.php:3606
831
  msgid "Save draft before using extra language."
832
  msgstr ""
833
 
908
  msgstr "Tipo de selector"
909
 
910
  #. translators: ON/OFF status of WPGlobus on the edit pages.
911
+ #: includes/class-wpglobus.php:1314
912
  msgid "OFF"
913
  msgstr ""
914
 
915
+ #: includes/class-wpglobus.php:1315
916
  msgid "Turn on"
917
  msgstr ""
918
 
919
  #. translators: ON/OFF status of WPGlobus on the edit pages.
920
+ #: includes/class-wpglobus.php:1319
921
  msgid "ON"
922
  msgstr ""
923
 
924
+ #: includes/class-wpglobus.php:1320
925
  msgid "Turn off"
926
  msgstr ""
927
 
928
+ #: includes/class-wpglobus.php:1503
929
  msgid "You cannot disable the main language."
930
  msgstr "No se puede desactivar el idioma principal."
931
 
932
+ #: includes/class-wpglobus.php:1704
933
  msgid "*) Available after the menu is saved."
934
  msgstr "No Se Puede Desactivar el director idioma."
935
 
936
+ #: includes/class-wpglobus.php:1721
937
  msgid "Need a multilingual slug?"
938
  msgstr ""
939
 
940
+ #: includes/class-wpglobus.php:4045
941
  msgid "You must enable Pretty Permalinks to use WPGlobus."
942
  msgstr ""
943
  "Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
944
 
945
+ #: includes/class-wpglobus.php:4047
946
  msgid ""
947
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
948
  "default option."
languages/wpglobus-es_MX.po CHANGED
@@ -290,7 +290,7 @@ msgstr ""
290
 
291
  #: includes/admin/class-wpglobus-customize-options.php:546,
292
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
293
- #: includes/class-wpglobus.php:1345, wpglobus.php:12, wpglobus.php:18
294
  msgid "WPGlobus"
295
  msgstr ""
296
 
@@ -827,7 +827,7 @@ msgid "To translate permalinks, please activate the module Slug."
827
  msgstr ""
828
 
829
  #: includes/builders/class-wpglobus-builder.php:277,
830
- #: includes/class-wpglobus.php:3611
831
  msgid "Save draft before using extra language."
832
  msgstr ""
833
 
@@ -908,41 +908,41 @@ msgid "Selector type"
908
  msgstr "Tipo de selector"
909
 
910
  #. translators: ON/OFF status of WPGlobus on the edit pages.
911
- #: includes/class-wpglobus.php:1319
912
  msgid "OFF"
913
  msgstr "APAGADO"
914
 
915
- #: includes/class-wpglobus.php:1320
916
  msgid "Turn on"
917
  msgstr ""
918
 
919
  #. translators: ON/OFF status of WPGlobus on the edit pages.
920
- #: includes/class-wpglobus.php:1324
921
  msgid "ON"
922
  msgstr "ON"
923
 
924
- #: includes/class-wpglobus.php:1325
925
  msgid "Turn off"
926
  msgstr ""
927
 
928
- #: includes/class-wpglobus.php:1508
929
  msgid "You cannot disable the main language."
930
  msgstr "No se puede desactivar el idioma principal."
931
 
932
- #: includes/class-wpglobus.php:1709
933
  msgid "*) Available after the menu is saved."
934
  msgstr "No Se Puede Desactivar el director idioma."
935
 
936
- #: includes/class-wpglobus.php:1726
937
  msgid "Need a multilingual slug?"
938
  msgstr ""
939
 
940
- #: includes/class-wpglobus.php:4050
941
  msgid "You must enable Pretty Permalinks to use WPGlobus."
942
  msgstr ""
943
  "Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
944
 
945
- #: includes/class-wpglobus.php:4052
946
  msgid ""
947
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
948
  "default option."
290
 
291
  #: includes/admin/class-wpglobus-customize-options.php:546,
292
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
293
+ #: includes/class-wpglobus.php:1340, wpglobus.php:12, wpglobus.php:18
294
  msgid "WPGlobus"
295
  msgstr ""
296
 
827
  msgstr ""
828
 
829
  #: includes/builders/class-wpglobus-builder.php:277,
830
+ #: includes/class-wpglobus.php:3606
831
  msgid "Save draft before using extra language."
832
  msgstr ""
833
 
908
  msgstr "Tipo de selector"
909
 
910
  #. translators: ON/OFF status of WPGlobus on the edit pages.
911
+ #: includes/class-wpglobus.php:1314
912
  msgid "OFF"
913
  msgstr "APAGADO"
914
 
915
+ #: includes/class-wpglobus.php:1315
916
  msgid "Turn on"
917
  msgstr ""
918
 
919
  #. translators: ON/OFF status of WPGlobus on the edit pages.
920
+ #: includes/class-wpglobus.php:1319
921
  msgid "ON"
922
  msgstr "ON"
923
 
924
+ #: includes/class-wpglobus.php:1320
925
  msgid "Turn off"
926
  msgstr ""
927
 
928
+ #: includes/class-wpglobus.php:1503
929
  msgid "You cannot disable the main language."
930
  msgstr "No se puede desactivar el idioma principal."
931
 
932
+ #: includes/class-wpglobus.php:1704
933
  msgid "*) Available after the menu is saved."
934
  msgstr "No Se Puede Desactivar el director idioma."
935
 
936
+ #: includes/class-wpglobus.php:1721
937
  msgid "Need a multilingual slug?"
938
  msgstr ""
939
 
940
+ #: includes/class-wpglobus.php:4045
941
  msgid "You must enable Pretty Permalinks to use WPGlobus."
942
  msgstr ""
943
  "Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
944
 
945
+ #: includes/class-wpglobus.php:4047
946
  msgid ""
947
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
948
  "default option."
languages/wpglobus-es_PE.po CHANGED
@@ -290,7 +290,7 @@ msgstr ""
290
 
291
  #: includes/admin/class-wpglobus-customize-options.php:546,
292
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
293
- #: includes/class-wpglobus.php:1345, wpglobus.php:12, wpglobus.php:18
294
  msgid "WPGlobus"
295
  msgstr ""
296
 
@@ -827,7 +827,7 @@ msgid "To translate permalinks, please activate the module Slug."
827
  msgstr ""
828
 
829
  #: includes/builders/class-wpglobus-builder.php:277,
830
- #: includes/class-wpglobus.php:3611
831
  msgid "Save draft before using extra language."
832
  msgstr ""
833
 
@@ -908,41 +908,41 @@ msgid "Selector type"
908
  msgstr "Tipo de selector"
909
 
910
  #. translators: ON/OFF status of WPGlobus on the edit pages.
911
- #: includes/class-wpglobus.php:1319
912
  msgid "OFF"
913
  msgstr ""
914
 
915
- #: includes/class-wpglobus.php:1320
916
  msgid "Turn on"
917
  msgstr ""
918
 
919
  #. translators: ON/OFF status of WPGlobus on the edit pages.
920
- #: includes/class-wpglobus.php:1324
921
  msgid "ON"
922
  msgstr ""
923
 
924
- #: includes/class-wpglobus.php:1325
925
  msgid "Turn off"
926
  msgstr ""
927
 
928
- #: includes/class-wpglobus.php:1508
929
  msgid "You cannot disable the main language."
930
  msgstr "No se puede desactivar el idioma principal."
931
 
932
- #: includes/class-wpglobus.php:1709
933
  msgid "*) Available after the menu is saved."
934
  msgstr "No Se Puede Desactivar el director idioma."
935
 
936
- #: includes/class-wpglobus.php:1726
937
  msgid "Need a multilingual slug?"
938
  msgstr ""
939
 
940
- #: includes/class-wpglobus.php:4050
941
  msgid "You must enable Pretty Permalinks to use WPGlobus."
942
  msgstr ""
943
  "Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
944
 
945
- #: includes/class-wpglobus.php:4052
946
  msgid ""
947
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
948
  "default option."
290
 
291
  #: includes/admin/class-wpglobus-customize-options.php:546,
292
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
293
+ #: includes/class-wpglobus.php:1340, wpglobus.php:12, wpglobus.php:18
294
  msgid "WPGlobus"
295
  msgstr ""
296
 
827
  msgstr ""
828
 
829
  #: includes/builders/class-wpglobus-builder.php:277,
830
+ #: includes/class-wpglobus.php:3606
831
  msgid "Save draft before using extra language."
832
  msgstr ""
833
 
908
  msgstr "Tipo de selector"
909
 
910
  #. translators: ON/OFF status of WPGlobus on the edit pages.
911
+ #: includes/class-wpglobus.php:1314
912
  msgid "OFF"
913
  msgstr ""
914
 
915
+ #: includes/class-wpglobus.php:1315
916
  msgid "Turn on"
917
  msgstr ""
918
 
919
  #. translators: ON/OFF status of WPGlobus on the edit pages.
920
+ #: includes/class-wpglobus.php:1319
921
  msgid "ON"
922
  msgstr ""
923
 
924
+ #: includes/class-wpglobus.php:1320
925
  msgid "Turn off"
926
  msgstr ""
927
 
928
+ #: includes/class-wpglobus.php:1503
929
  msgid "You cannot disable the main language."
930
  msgstr "No se puede desactivar el idioma principal."
931
 
932
+ #: includes/class-wpglobus.php:1704
933
  msgid "*) Available after the menu is saved."
934
  msgstr "No Se Puede Desactivar el director idioma."
935
 
936
+ #: includes/class-wpglobus.php:1721
937
  msgid "Need a multilingual slug?"
938
  msgstr ""
939
 
940
+ #: includes/class-wpglobus.php:4045
941
  msgid "You must enable Pretty Permalinks to use WPGlobus."
942
  msgstr ""
943
  "Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
944
 
945
+ #: includes/class-wpglobus.php:4047
946
  msgid ""
947
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
948
  "default option."
languages/wpglobus-es_PR.po CHANGED
@@ -290,7 +290,7 @@ msgstr ""
290
 
291
  #: includes/admin/class-wpglobus-customize-options.php:546,
292
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
293
- #: includes/class-wpglobus.php:1345, wpglobus.php:12, wpglobus.php:18
294
  msgid "WPGlobus"
295
  msgstr ""
296
 
@@ -827,7 +827,7 @@ msgid "To translate permalinks, please activate the module Slug."
827
  msgstr ""
828
 
829
  #: includes/builders/class-wpglobus-builder.php:277,
830
- #: includes/class-wpglobus.php:3611
831
  msgid "Save draft before using extra language."
832
  msgstr ""
833
 
@@ -908,41 +908,41 @@ msgid "Selector type"
908
  msgstr "Tipo de selector"
909
 
910
  #. translators: ON/OFF status of WPGlobus on the edit pages.
911
- #: includes/class-wpglobus.php:1319
912
  msgid "OFF"
913
  msgstr ""
914
 
915
- #: includes/class-wpglobus.php:1320
916
  msgid "Turn on"
917
  msgstr ""
918
 
919
  #. translators: ON/OFF status of WPGlobus on the edit pages.
920
- #: includes/class-wpglobus.php:1324
921
  msgid "ON"
922
  msgstr ""
923
 
924
- #: includes/class-wpglobus.php:1325
925
  msgid "Turn off"
926
  msgstr ""
927
 
928
- #: includes/class-wpglobus.php:1508
929
  msgid "You cannot disable the main language."
930
  msgstr "No se puede desactivar el idioma principal."
931
 
932
- #: includes/class-wpglobus.php:1709
933
  msgid "*) Available after the menu is saved."
934
  msgstr "No Se Puede Desactivar el director idioma."
935
 
936
- #: includes/class-wpglobus.php:1726
937
  msgid "Need a multilingual slug?"
938
  msgstr ""
939
 
940
- #: includes/class-wpglobus.php:4050
941
  msgid "You must enable Pretty Permalinks to use WPGlobus."
942
  msgstr ""
943
  "Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
944
 
945
- #: includes/class-wpglobus.php:4052
946
  msgid ""
947
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
948
  "default option."
290
 
291
  #: includes/admin/class-wpglobus-customize-options.php:546,
292
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
293
+ #: includes/class-wpglobus.php:1340, wpglobus.php:12, wpglobus.php:18
294
  msgid "WPGlobus"
295
  msgstr ""
296
 
827
  msgstr ""
828
 
829
  #: includes/builders/class-wpglobus-builder.php:277,
830
+ #: includes/class-wpglobus.php:3606
831
  msgid "Save draft before using extra language."
832
  msgstr ""
833
 
908
  msgstr "Tipo de selector"
909
 
910
  #. translators: ON/OFF status of WPGlobus on the edit pages.
911
+ #: includes/class-wpglobus.php:1314
912
  msgid "OFF"
913
  msgstr ""
914
 
915
+ #: includes/class-wpglobus.php:1315
916
  msgid "Turn on"
917
  msgstr ""
918
 
919
  #. translators: ON/OFF status of WPGlobus on the edit pages.
920
+ #: includes/class-wpglobus.php:1319
921
  msgid "ON"
922
  msgstr ""
923
 
924
+ #: includes/class-wpglobus.php:1320
925
  msgid "Turn off"
926
  msgstr ""
927
 
928
+ #: includes/class-wpglobus.php:1503
929
  msgid "You cannot disable the main language."
930
  msgstr "No se puede desactivar el idioma principal."
931
 
932
+ #: includes/class-wpglobus.php:1704
933
  msgid "*) Available after the menu is saved."
934
  msgstr "No Se Puede Desactivar el director idioma."
935
 
936
+ #: includes/class-wpglobus.php:1721
937
  msgid "Need a multilingual slug?"
938
  msgstr ""
939
 
940
+ #: includes/class-wpglobus.php:4045
941
  msgid "You must enable Pretty Permalinks to use WPGlobus."
942
  msgstr ""
943
  "Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
944
 
945
+ #: includes/class-wpglobus.php:4047
946
  msgid ""
947
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
948
  "default option."
languages/wpglobus-es_VE.po CHANGED
@@ -290,7 +290,7 @@ msgstr ""
290
 
291
  #: includes/admin/class-wpglobus-customize-options.php:546,
292
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
293
- #: includes/class-wpglobus.php:1345, wpglobus.php:12, wpglobus.php:18
294
  msgid "WPGlobus"
295
  msgstr ""
296
 
@@ -827,7 +827,7 @@ msgid "To translate permalinks, please activate the module Slug."
827
  msgstr ""
828
 
829
  #: includes/builders/class-wpglobus-builder.php:277,
830
- #: includes/class-wpglobus.php:3611
831
  msgid "Save draft before using extra language."
832
  msgstr ""
833
 
@@ -908,41 +908,41 @@ msgid "Selector type"
908
  msgstr "Tipo de selector"
909
 
910
  #. translators: ON/OFF status of WPGlobus on the edit pages.
911
- #: includes/class-wpglobus.php:1319
912
  msgid "OFF"
913
  msgstr ""
914
 
915
- #: includes/class-wpglobus.php:1320
916
  msgid "Turn on"
917
  msgstr ""
918
 
919
  #. translators: ON/OFF status of WPGlobus on the edit pages.
920
- #: includes/class-wpglobus.php:1324
921
  msgid "ON"
922
  msgstr ""
923
 
924
- #: includes/class-wpglobus.php:1325
925
  msgid "Turn off"
926
  msgstr ""
927
 
928
- #: includes/class-wpglobus.php:1508
929
  msgid "You cannot disable the main language."
930
  msgstr "No se puede desactivar el idioma principal."
931
 
932
- #: includes/class-wpglobus.php:1709
933
  msgid "*) Available after the menu is saved."
934
  msgstr "No Se Puede Desactivar el director idioma."
935
 
936
- #: includes/class-wpglobus.php:1726
937
  msgid "Need a multilingual slug?"
938
  msgstr ""
939
 
940
- #: includes/class-wpglobus.php:4050
941
  msgid "You must enable Pretty Permalinks to use WPGlobus."
942
  msgstr ""
943
  "Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
944
 
945
- #: includes/class-wpglobus.php:4052
946
  msgid ""
947
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
948
  "default option."
290
 
291
  #: includes/admin/class-wpglobus-customize-options.php:546,
292
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
293
+ #: includes/class-wpglobus.php:1340, wpglobus.php:12, wpglobus.php:18
294
  msgid "WPGlobus"
295
  msgstr ""
296
 
827
  msgstr ""
828
 
829
  #: includes/builders/class-wpglobus-builder.php:277,
830
+ #: includes/class-wpglobus.php:3606
831
  msgid "Save draft before using extra language."
832
  msgstr ""
833
 
908
  msgstr "Tipo de selector"
909
 
910
  #. translators: ON/OFF status of WPGlobus on the edit pages.
911
+ #: includes/class-wpglobus.php:1314
912
  msgid "OFF"
913
  msgstr ""
914
 
915
+ #: includes/class-wpglobus.php:1315
916
  msgid "Turn on"
917
  msgstr ""
918
 
919
  #. translators: ON/OFF status of WPGlobus on the edit pages.
920
+ #: includes/class-wpglobus.php:1319
921
  msgid "ON"
922
  msgstr ""
923
 
924
+ #: includes/class-wpglobus.php:1320
925
  msgid "Turn off"
926
  msgstr ""
927
 
928
+ #: includes/class-wpglobus.php:1503
929
  msgid "You cannot disable the main language."
930
  msgstr "No se puede desactivar el idioma principal."
931
 
932
+ #: includes/class-wpglobus.php:1704
933
  msgid "*) Available after the menu is saved."
934
  msgstr "No Se Puede Desactivar el director idioma."
935
 
936
+ #: includes/class-wpglobus.php:1721
937
  msgid "Need a multilingual slug?"
938
  msgstr ""
939
 
940
+ #: includes/class-wpglobus.php:4045
941
  msgid "You must enable Pretty Permalinks to use WPGlobus."
942
  msgstr ""
943
  "Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
944
 
945
+ #: includes/class-wpglobus.php:4047
946
  msgid ""
947
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
948
  "default option."
languages/wpglobus-et.po CHANGED
@@ -274,7 +274,7 @@ msgstr "Salvesta ja laadi uuesti"
274
 
275
  #: includes/admin/class-wpglobus-customize-options.php:546,
276
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
277
- #: includes/class-wpglobus.php:1345, wpglobus.php:12, wpglobus.php:18
278
  msgid "WPGlobus"
279
  msgstr "WPGlobus"
280
 
@@ -793,7 +793,7 @@ msgid "To translate permalinks, please activate the module Slug."
793
  msgstr ""
794
 
795
  #: includes/builders/class-wpglobus-builder.php:277,
796
- #: includes/class-wpglobus.php:3611
797
  msgid "Save draft before using extra language."
798
  msgstr ""
799
 
@@ -874,40 +874,40 @@ msgid "Selector type"
874
  msgstr ""
875
 
876
  #. translators: ON/OFF status of WPGlobus on the edit pages.
877
- #: includes/class-wpglobus.php:1319
878
  msgid "OFF"
879
  msgstr "VÄLJAS"
880
 
881
- #: includes/class-wpglobus.php:1320
882
  msgid "Turn on"
883
  msgstr "Lülita sisse"
884
 
885
  #. translators: ON/OFF status of WPGlobus on the edit pages.
886
- #: includes/class-wpglobus.php:1324
887
  msgid "ON"
888
  msgstr "SEES"
889
 
890
- #: includes/class-wpglobus.php:1325
891
  msgid "Turn off"
892
  msgstr "Lülita välja"
893
 
894
- #: includes/class-wpglobus.php:1508
895
  msgid "You cannot disable the main language."
896
  msgstr ""
897
 
898
- #: includes/class-wpglobus.php:1709
899
  msgid "*) Available after the menu is saved."
900
  msgstr ""
901
 
902
- #: includes/class-wpglobus.php:1726
903
  msgid "Need a multilingual slug?"
904
  msgstr ""
905
 
906
- #: includes/class-wpglobus.php:4050
907
  msgid "You must enable Pretty Permalinks to use WPGlobus."
908
  msgstr ""
909
 
910
- #: includes/class-wpglobus.php:4052
911
  msgid ""
912
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
913
  "default option."
274
 
275
  #: includes/admin/class-wpglobus-customize-options.php:546,
276
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
277
+ #: includes/class-wpglobus.php:1340, wpglobus.php:12, wpglobus.php:18
278
  msgid "WPGlobus"
279
  msgstr "WPGlobus"
280
 
793
  msgstr ""
794
 
795
  #: includes/builders/class-wpglobus-builder.php:277,
796
+ #: includes/class-wpglobus.php:3606
797
  msgid "Save draft before using extra language."
798
  msgstr ""
799
 
874
  msgstr ""
875
 
876
  #. translators: ON/OFF status of WPGlobus on the edit pages.
877
+ #: includes/class-wpglobus.php:1314
878
  msgid "OFF"
879
  msgstr "VÄLJAS"
880
 
881
+ #: includes/class-wpglobus.php:1315
882
  msgid "Turn on"
883
  msgstr "Lülita sisse"
884
 
885
  #. translators: ON/OFF status of WPGlobus on the edit pages.
886
+ #: includes/class-wpglobus.php:1319
887
  msgid "ON"
888
  msgstr "SEES"
889
 
890
+ #: includes/class-wpglobus.php:1320
891
  msgid "Turn off"
892
  msgstr "Lülita välja"
893
 
894
+ #: includes/class-wpglobus.php:1503
895
  msgid "You cannot disable the main language."
896
  msgstr ""
897
 
898
+ #: includes/class-wpglobus.php:1704
899
  msgid "*) Available after the menu is saved."
900
  msgstr ""
901
 
902
+ #: includes/class-wpglobus.php:1721
903
  msgid "Need a multilingual slug?"
904
  msgstr ""
905
 
906
+ #: includes/class-wpglobus.php:4045
907
  msgid "You must enable Pretty Permalinks to use WPGlobus."
908
  msgstr ""
909
 
910
+ #: includes/class-wpglobus.php:4047
911
  msgid ""
912
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
913
  "default option."
languages/wpglobus-fr_BE.po CHANGED
@@ -330,7 +330,7 @@ msgstr "Enregistrer & recharger"
330
 
331
  #: includes/admin/class-wpglobus-customize-options.php:546,
332
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
333
- #: includes/class-wpglobus.php:1345, wpglobus.php:12, wpglobus.php:18
334
  msgid "WPGlobus"
335
  msgstr "WPGlobus"
336
 
@@ -890,7 +890,7 @@ msgid "To translate permalinks, please activate the module Slug."
890
  msgstr ""
891
 
892
  #: includes/builders/class-wpglobus-builder.php:277,
893
- #: includes/class-wpglobus.php:3611
894
  msgid "Save draft before using extra language."
895
  msgstr ""
896
 
@@ -971,42 +971,42 @@ msgid "Selector type"
971
  msgstr "Type de sélecteur"
972
 
973
  #. translators: ON/OFF status of WPGlobus on the edit pages.
974
- #: includes/class-wpglobus.php:1319
975
  msgid "OFF"
976
  msgstr ""
977
 
978
- #: includes/class-wpglobus.php:1320
979
  msgid "Turn on"
980
  msgstr ""
981
 
982
  #. translators: ON/OFF status of WPGlobus on the edit pages.
983
- #: includes/class-wpglobus.php:1324
984
  msgid "ON"
985
  msgstr ""
986
 
987
- #: includes/class-wpglobus.php:1325
988
  msgid "Turn off"
989
  msgstr ""
990
 
991
- #: includes/class-wpglobus.php:1508
992
  msgid "You cannot disable the main language."
993
  msgstr "Vous ne pouvez pas désactiver la langue principale."
994
 
995
- #: includes/class-wpglobus.php:1709
996
  msgid "*) Available after the menu is saved."
997
  msgstr "*) Disponible après que le menu ait été enregistré."
998
 
999
- #: includes/class-wpglobus.php:1726
1000
  msgid "Need a multilingual slug?"
1001
  msgstr "Vous avez besoin d’un identifiant multilingue ?"
1002
 
1003
- #: includes/class-wpglobus.php:4050
1004
  msgid "You must enable Pretty Permalinks to use WPGlobus."
1005
  msgstr ""
1006
  "Vous devez activer les jolis permaliens pour pouvoir utiliser WPGlobus "
1007
  "correctement."
1008
 
1009
- #: includes/class-wpglobus.php:4052
1010
  msgid ""
1011
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
1012
  "default option."
330
 
331
  #: includes/admin/class-wpglobus-customize-options.php:546,
332
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
333
+ #: includes/class-wpglobus.php:1340, wpglobus.php:12, wpglobus.php:18
334
  msgid "WPGlobus"
335
  msgstr "WPGlobus"
336
 
890
  msgstr ""
891
 
892
  #: includes/builders/class-wpglobus-builder.php:277,
893
+ #: includes/class-wpglobus.php:3606
894
  msgid "Save draft before using extra language."
895
  msgstr ""
896
 
971
  msgstr "Type de sélecteur"
972
 
973
  #. translators: ON/OFF status of WPGlobus on the edit pages.
974
+ #: includes/class-wpglobus.php:1314
975
  msgid "OFF"
976
  msgstr ""
977
 
978
+ #: includes/class-wpglobus.php:1315
979
  msgid "Turn on"
980
  msgstr ""
981
 
982
  #. translators: ON/OFF status of WPGlobus on the edit pages.
983
+ #: includes/class-wpglobus.php:1319
984
  msgid "ON"
985
  msgstr ""
986
 
987
+ #: includes/class-wpglobus.php:1320
988
  msgid "Turn off"
989
  msgstr ""
990
 
991
+ #: includes/class-wpglobus.php:1503
992
  msgid "You cannot disable the main language."
993
  msgstr "Vous ne pouvez pas désactiver la langue principale."
994
 
995
+ #: includes/class-wpglobus.php:1704
996
  msgid "*) Available after the menu is saved."
997
  msgstr "*) Disponible après que le menu ait été enregistré."
998
 
999
+ #: includes/class-wpglobus.php:1721
1000
  msgid "Need a multilingual slug?"
1001
  msgstr "Vous avez besoin d’un identifiant multilingue ?"
1002
 
1003
+ #: includes/class-wpglobus.php:4045
1004
  msgid "You must enable Pretty Permalinks to use WPGlobus."
1005
  msgstr ""
1006
  "Vous devez activer les jolis permaliens pour pouvoir utiliser WPGlobus "
1007
  "correctement."
1008
 
1009
+ #: includes/class-wpglobus.php:4047
1010
  msgid ""
1011
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
1012
  "default option."
languages/wpglobus-fr_CA.po CHANGED
@@ -332,7 +332,7 @@ msgstr "Enregistrer & recharger"
332
 
333
  #: includes/admin/class-wpglobus-customize-options.php:546,
334
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
335
- #: includes/class-wpglobus.php:1345, wpglobus.php:12, wpglobus.php:18
336
  msgid "WPGlobus"
337
  msgstr "WPGlobus"
338
 
@@ -892,7 +892,7 @@ msgid "To translate permalinks, please activate the module Slug."
892
  msgstr ""
893
 
894
  #: includes/builders/class-wpglobus-builder.php:277,
895
- #: includes/class-wpglobus.php:3611
896
  msgid "Save draft before using extra language."
897
  msgstr ""
898
 
@@ -973,42 +973,42 @@ msgid "Selector type"
973
  msgstr "Type de sélecteur"
974
 
975
  #. translators: ON/OFF status of WPGlobus on the edit pages.
976
- #: includes/class-wpglobus.php:1319
977
  msgid "OFF"
978
  msgstr ""
979
 
980
- #: includes/class-wpglobus.php:1320
981
  msgid "Turn on"
982
  msgstr ""
983
 
984
  #. translators: ON/OFF status of WPGlobus on the edit pages.
985
- #: includes/class-wpglobus.php:1324
986
  msgid "ON"
987
  msgstr ""
988
 
989
- #: includes/class-wpglobus.php:1325
990
  msgid "Turn off"
991
  msgstr ""
992
 
993
- #: includes/class-wpglobus.php:1508
994
  msgid "You cannot disable the main language."
995
  msgstr "Vous ne pouvez pas désactiver la langue principale."
996
 
997
- #: includes/class-wpglobus.php:1709
998
  msgid "*) Available after the menu is saved."
999
  msgstr "*) Disponible après que le menu ait été enregistré."
1000
 
1001
- #: includes/class-wpglobus.php:1726
1002
  msgid "Need a multilingual slug?"
1003
  msgstr "Vous avez besoin d’un identifiant multilingue ?"
1004
 
1005
- #: includes/class-wpglobus.php:4050
1006
  msgid "You must enable Pretty Permalinks to use WPGlobus."
1007
  msgstr ""
1008
  "Vous devez activer les jolis permaliens pour pouvoir utiliser WPGlobus "
1009
  "correctement."
1010
 
1011
- #: includes/class-wpglobus.php:4052
1012
  msgid ""
1013
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
1014
  "default option."
332
 
333
  #: includes/admin/class-wpglobus-customize-options.php:546,
334
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
335
+ #: includes/class-wpglobus.php:1340, wpglobus.php:12, wpglobus.php:18
336
  msgid "WPGlobus"
337
  msgstr "WPGlobus"
338
 
892
  msgstr ""
893
 
894
  #: includes/builders/class-wpglobus-builder.php:277,
895
+ #: includes/class-wpglobus.php:3606
896
  msgid "Save draft before using extra language."
897
  msgstr ""
898
 
973
  msgstr "Type de sélecteur"
974
 
975
  #. translators: ON/OFF status of WPGlobus on the edit pages.
976
+ #: includes/class-wpglobus.php:1314
977
  msgid "OFF"
978
  msgstr ""
979
 
980
+ #: includes/class-wpglobus.php:1315
981
  msgid "Turn on"
982
  msgstr ""
983
 
984
  #. translators: ON/OFF status of WPGlobus on the edit pages.
985
+ #: includes/class-wpglobus.php:1319
986
  msgid "ON"
987
  msgstr ""
988
 
989
+ #: includes/class-wpglobus.php:1320
990
  msgid "Turn off"
991
  msgstr ""
992
 
993
+ #: includes/class-wpglobus.php:1503
994
  msgid "You cannot disable the main language."
995
  msgstr "Vous ne pouvez pas désactiver la langue principale."
996
 
997
+ #: includes/class-wpglobus.php:1704
998
  msgid "*) Available after the menu is saved."
999
  msgstr "*) Disponible après que le menu ait été enregistré."
1000
 
1001
+ #: includes/class-wpglobus.php:1721
1002
  msgid "Need a multilingual slug?"
1003
  msgstr "Vous avez besoin d’un identifiant multilingue ?"
1004
 
1005
+ #: includes/class-wpglobus.php:4045
1006
  msgid "You must enable Pretty Permalinks to use WPGlobus."
1007
  msgstr ""
1008
  "Vous devez activer les jolis permaliens pour pouvoir utiliser WPGlobus "
1009
  "correctement."
1010
 
1011
+ #: includes/class-wpglobus.php:4047
1012
  msgid ""
1013
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
1014
  "default option."
languages/wpglobus-fr_FR.po CHANGED
@@ -332,7 +332,7 @@ msgstr "Enregistrer & recharger"
332
 
333
  #: includes/admin/class-wpglobus-customize-options.php:546,
334
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
335
- #: includes/class-wpglobus.php:1345, wpglobus.php:12, wpglobus.php:18
336
  msgid "WPGlobus"
337
  msgstr "WPGlobus"
338
 
@@ -892,7 +892,7 @@ msgid "To translate permalinks, please activate the module Slug."
892
  msgstr ""
893
 
894
  #: includes/builders/class-wpglobus-builder.php:277,
895
- #: includes/class-wpglobus.php:3611
896
  msgid "Save draft before using extra language."
897
  msgstr ""
898
 
@@ -973,42 +973,42 @@ msgid "Selector type"
973
  msgstr "Type de sélecteur"
974
 
975
  #. translators: ON/OFF status of WPGlobus on the edit pages.
976
- #: includes/class-wpglobus.php:1319
977
  msgid "OFF"
978
  msgstr "NON"
979
 
980
- #: includes/class-wpglobus.php:1320
981
  msgid "Turn on"
982
  msgstr ""
983
 
984
  #. translators: ON/OFF status of WPGlobus on the edit pages.
985
- #: includes/class-wpglobus.php:1324
986
  msgid "ON"
987
  msgstr "OUI"
988
 
989
- #: includes/class-wpglobus.php:1325
990
  msgid "Turn off"
991
  msgstr ""
992
 
993
- #: includes/class-wpglobus.php:1508
994
  msgid "You cannot disable the main language."
995
  msgstr "Vous ne pouvez pas désactiver la langue principale."
996
 
997
- #: includes/class-wpglobus.php:1709
998
  msgid "*) Available after the menu is saved."
999
  msgstr "*) Disponible après que le menu ait été enregistré."
1000
 
1001
- #: includes/class-wpglobus.php:1726
1002
  msgid "Need a multilingual slug?"
1003
  msgstr "Vous avez besoin d’un identifiant multilingue ?"
1004
 
1005
- #: includes/class-wpglobus.php:4050
1006
  msgid "You must enable Pretty Permalinks to use WPGlobus."
1007
  msgstr ""
1008
  "Vous devez activer les jolis permaliens pour pouvoir utiliser WPGlobus "
1009
  "correctement."
1010
 
1011
- #: includes/class-wpglobus.php:4052
1012
  msgid ""
1013
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
1014
  "default option."
332
 
333
  #: includes/admin/class-wpglobus-customize-options.php:546,
334
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
335
+ #: includes/class-wpglobus.php:1340, wpglobus.php:12, wpglobus.php:18
336
  msgid "WPGlobus"
337
  msgstr "WPGlobus"
338
 
892
  msgstr ""
893
 
894
  #: includes/builders/class-wpglobus-builder.php:277,
895
+ #: includes/class-wpglobus.php:3606
896
  msgid "Save draft before using extra language."
897
  msgstr ""
898
 
973
  msgstr "Type de sélecteur"
974
 
975
  #. translators: ON/OFF status of WPGlobus on the edit pages.
976
+ #: includes/class-wpglobus.php:1314
977
  msgid "OFF"
978
  msgstr "NON"
979
 
980
+ #: includes/class-wpglobus.php:1315
981
  msgid "Turn on"
982
  msgstr ""
983
 
984
  #. translators: ON/OFF status of WPGlobus on the edit pages.
985
+ #: includes/class-wpglobus.php:1319
986
  msgid "ON"
987
  msgstr "OUI"
988
 
989
+ #: includes/class-wpglobus.php:1320
990
  msgid "Turn off"
991
  msgstr ""
992
 
993
+ #: includes/class-wpglobus.php:1503
994
  msgid "You cannot disable the main language."
995
  msgstr "Vous ne pouvez pas désactiver la langue principale."
996
 
997
+ #: includes/class-wpglobus.php:1704
998
  msgid "*) Available after the menu is saved."
999
  msgstr "*) Disponible après que le menu ait été enregistré."
1000
 
1001
+ #: includes/class-wpglobus.php:1721
1002
  msgid "Need a multilingual slug?"
1003
  msgstr "Vous avez besoin d’un identifiant multilingue ?"
1004
 
1005
+ #: includes/class-wpglobus.php:4045
1006
  msgid "You must enable Pretty Permalinks to use WPGlobus."
1007
  msgstr ""
1008
  "Vous devez activer les jolis permaliens pour pouvoir utiliser WPGlobus "
1009
  "correctement."
1010
 
1011
+ #: includes/class-wpglobus.php:4047
1012
  msgid ""
1013
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
1014
  "default option."
languages/wpglobus-id_ID.po CHANGED
@@ -321,7 +321,7 @@ msgstr "Simpan &amp; Reload"
321
 
322
  #: includes/admin/class-wpglobus-customize-options.php:546,
323
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
324
- #: includes/class-wpglobus.php:1345, wpglobus.php:12, wpglobus.php:18
325
  msgid "WPGlobus"
326
  msgstr "WPGlobus"
327
 
@@ -867,7 +867,7 @@ msgid "To translate permalinks, please activate the module Slug."
867
  msgstr ""
868
 
869
  #: includes/builders/class-wpglobus-builder.php:277,
870
- #: includes/class-wpglobus.php:3611
871
  msgid "Save draft before using extra language."
872
  msgstr ""
873
 
@@ -948,40 +948,40 @@ msgid "Selector type"
948
  msgstr "Jenis pemilih"
949
 
950
  #. translators: ON/OFF status of WPGlobus on the edit pages.
951
- #: includes/class-wpglobus.php:1319
952
  msgid "OFF"
953
  msgstr ""
954
 
955
- #: includes/class-wpglobus.php:1320
956
  msgid "Turn on"
957
  msgstr ""
958
 
959
  #. translators: ON/OFF status of WPGlobus on the edit pages.
960
- #: includes/class-wpglobus.php:1324
961
  msgid "ON"
962
  msgstr ""
963
 
964
- #: includes/class-wpglobus.php:1325
965
  msgid "Turn off"
966
  msgstr ""
967
 
968
- #: includes/class-wpglobus.php:1508
969
  msgid "You cannot disable the main language."
970
  msgstr "Anda tidak dapat menonaktifkan bahasa utama."
971
 
972
- #: includes/class-wpglobus.php:1709
973
  msgid "*) Available after the menu is saved."
974
  msgstr "*) Tersedia setelah menu tersebut disimpan."
975
 
976
- #: includes/class-wpglobus.php:1726
977
  msgid "Need a multilingual slug?"
978
  msgstr ""
979
 
980
- #: includes/class-wpglobus.php:4050
981
  msgid "You must enable Pretty Permalinks to use WPGlobus."
982
  msgstr "Anda harus mengaktifkan Permalinks Cukup menggunakan WPGlobus."
983
 
984
- #: includes/class-wpglobus.php:4052
985
  msgid ""
986
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
987
  "default option."
321
 
322
  #: includes/admin/class-wpglobus-customize-options.php:546,
323
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
324
+ #: includes/class-wpglobus.php:1340, wpglobus.php:12, wpglobus.php:18
325
  msgid "WPGlobus"
326
  msgstr "WPGlobus"
327
 
867
  msgstr ""
868
 
869
  #: includes/builders/class-wpglobus-builder.php:277,
870
+ #: includes/class-wpglobus.php:3606
871
  msgid "Save draft before using extra language."
872
  msgstr ""
873
 
948
  msgstr "Jenis pemilih"
949
 
950
  #. translators: ON/OFF status of WPGlobus on the edit pages.
951
+ #: includes/class-wpglobus.php:1314
952
  msgid "OFF"
953
  msgstr ""
954
 
955
+ #: includes/class-wpglobus.php:1315
956
  msgid "Turn on"
957
  msgstr ""
958
 
959
  #. translators: ON/OFF status of WPGlobus on the edit pages.
960
+ #: includes/class-wpglobus.php:1319
961
  msgid "ON"
962
  msgstr ""
963
 
964
+ #: includes/class-wpglobus.php:1320
965
  msgid "Turn off"
966
  msgstr ""
967
 
968
+ #: includes/class-wpglobus.php:1503
969
  msgid "You cannot disable the main language."
970
  msgstr "Anda tidak dapat menonaktifkan bahasa utama."
971
 
972
+ #: includes/class-wpglobus.php:1704
973
  msgid "*) Available after the menu is saved."
974
  msgstr "*) Tersedia setelah menu tersebut disimpan."
975
 
976
+ #: includes/class-wpglobus.php:1721
977
  msgid "Need a multilingual slug?"
978
  msgstr ""
979
 
980
+ #: includes/class-wpglobus.php:4045
981
  msgid "You must enable Pretty Permalinks to use WPGlobus."
982
  msgstr "Anda harus mengaktifkan Permalinks Cukup menggunakan WPGlobus."
983
 
984
+ #: includes/class-wpglobus.php:4047
985
  msgid ""
986
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
987
  "default option."
languages/wpglobus-ko_KR.po CHANGED
@@ -273,7 +273,7 @@ msgstr ""
273
 
274
  #: includes/admin/class-wpglobus-customize-options.php:546,
275
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
276
- #: includes/class-wpglobus.php:1345, wpglobus.php:12, wpglobus.php:18
277
  msgid "WPGlobus"
278
  msgstr ""
279
 
@@ -792,7 +792,7 @@ msgid "To translate permalinks, please activate the module Slug."
792
  msgstr ""
793
 
794
  #: includes/builders/class-wpglobus-builder.php:277,
795
- #: includes/class-wpglobus.php:3611
796
  msgid "Save draft before using extra language."
797
  msgstr ""
798
 
@@ -873,40 +873,40 @@ msgid "Selector type"
873
  msgstr ""
874
 
875
  #. translators: ON/OFF status of WPGlobus on the edit pages.
876
- #: includes/class-wpglobus.php:1319
877
  msgid "OFF"
878
  msgstr ""
879
 
880
- #: includes/class-wpglobus.php:1320
881
  msgid "Turn on"
882
  msgstr ""
883
 
884
  #. translators: ON/OFF status of WPGlobus on the edit pages.
885
- #: includes/class-wpglobus.php:1324
886
  msgid "ON"
887
  msgstr ""
888
 
889
- #: includes/class-wpglobus.php:1325
890
  msgid "Turn off"
891
  msgstr ""
892
 
893
- #: includes/class-wpglobus.php:1508
894
  msgid "You cannot disable the main language."
895
  msgstr ""
896
 
897
- #: includes/class-wpglobus.php:1709
898
  msgid "*) Available after the menu is saved."
899
  msgstr ""
900
 
901
- #: includes/class-wpglobus.php:1726
902
  msgid "Need a multilingual slug?"
903
  msgstr ""
904
 
905
- #: includes/class-wpglobus.php:4050
906
  msgid "You must enable Pretty Permalinks to use WPGlobus."
907
  msgstr ""
908
 
909
- #: includes/class-wpglobus.php:4052
910
  msgid ""
911
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
912
  "default option."
273
 
274
  #: includes/admin/class-wpglobus-customize-options.php:546,
275
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
276
+ #: includes/class-wpglobus.php:1340, wpglobus.php:12, wpglobus.php:18
277
  msgid "WPGlobus"
278
  msgstr ""
279
 
792
  msgstr ""
793
 
794
  #: includes/builders/class-wpglobus-builder.php:277,
795
+ #: includes/class-wpglobus.php:3606
796
  msgid "Save draft before using extra language."
797
  msgstr ""
798
 
873
  msgstr ""
874
 
875
  #. translators: ON/OFF status of WPGlobus on the edit pages.
876
+ #: includes/class-wpglobus.php:1314
877
  msgid "OFF"
878
  msgstr ""
879
 
880
+ #: includes/class-wpglobus.php:1315
881
  msgid "Turn on"
882
  msgstr ""
883
 
884
  #. translators: ON/OFF status of WPGlobus on the edit pages.
885
+ #: includes/class-wpglobus.php:1319
886
  msgid "ON"
887
  msgstr ""
888
 
889
+ #: includes/class-wpglobus.php:1320
890
  msgid "Turn off"
891
  msgstr ""
892
 
893
+ #: includes/class-wpglobus.php:1503
894
  msgid "You cannot disable the main language."
895
  msgstr ""
896
 
897
+ #: includes/class-wpglobus.php:1704
898
  msgid "*) Available after the menu is saved."
899
  msgstr ""
900
 
901
+ #: includes/class-wpglobus.php:1721
902
  msgid "Need a multilingual slug?"
903
  msgstr ""
904
 
905
+ #: includes/class-wpglobus.php:4045
906
  msgid "You must enable Pretty Permalinks to use WPGlobus."
907
  msgstr ""
908
 
909
+ #: includes/class-wpglobus.php:4047
910
  msgid ""
911
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
912
  "default option."
languages/wpglobus-pl_PL.po CHANGED
@@ -291,7 +291,7 @@ msgstr ""
291
 
292
  #: includes/admin/class-wpglobus-customize-options.php:546,
293
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
294
- #: includes/class-wpglobus.php:1345, wpglobus.php:12, wpglobus.php:18
295
  msgid "WPGlobus"
296
  msgstr "WPGlobus"
297
 
@@ -819,7 +819,7 @@ msgid "To translate permalinks, please activate the module Slug."
819
  msgstr ""
820
 
821
  #: includes/builders/class-wpglobus-builder.php:277,
822
- #: includes/class-wpglobus.php:3611
823
  msgid "Save draft before using extra language."
824
  msgstr ""
825
 
@@ -900,41 +900,41 @@ msgid "Selector type"
900
  msgstr "Sposób wyboru"
901
 
902
  #. translators: ON/OFF status of WPGlobus on the edit pages.
903
- #: includes/class-wpglobus.php:1319
904
  msgid "OFF"
905
  msgstr ""
906
 
907
- #: includes/class-wpglobus.php:1320
908
  msgid "Turn on"
909
  msgstr ""
910
 
911
  #. translators: ON/OFF status of WPGlobus on the edit pages.
912
- #: includes/class-wpglobus.php:1324
913
  msgid "ON"
914
  msgstr ""
915
 
916
- #: includes/class-wpglobus.php:1325
917
  msgid "Turn off"
918
  msgstr ""
919
 
920
- #: includes/class-wpglobus.php:1508
921
  msgid "You cannot disable the main language."
922
  msgstr "Nie możesz wyłączyć głównego języka."
923
 
924
- #: includes/class-wpglobus.php:1709
925
  msgid "*) Available after the menu is saved."
926
  msgstr "*) Dostępne po zapisaniu menu."
927
 
928
- #: includes/class-wpglobus.php:1726
929
  msgid "Need a multilingual slug?"
930
  msgstr ""
931
 
932
- #: includes/class-wpglobus.php:4050
933
  msgid "You must enable Pretty Permalinks to use WPGlobus."
934
  msgstr ""
935
  "Aby korzystać z WPGlobus'a, musisz ustawić przyjazne bezpośrednie odnośniki."
936
 
937
- #: includes/class-wpglobus.php:4052
938
  msgid ""
939
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
940
  "default option."
291
 
292
  #: includes/admin/class-wpglobus-customize-options.php:546,
293
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
294
+ #: includes/class-wpglobus.php:1340, wpglobus.php:12, wpglobus.php:18
295
  msgid "WPGlobus"
296
  msgstr "WPGlobus"
297
 
819
  msgstr ""
820
 
821
  #: includes/builders/class-wpglobus-builder.php:277,
822
+ #: includes/class-wpglobus.php:3606
823
  msgid "Save draft before using extra language."
824
  msgstr ""
825
 
900
  msgstr "Sposób wyboru"
901
 
902
  #. translators: ON/OFF status of WPGlobus on the edit pages.
903
+ #: includes/class-wpglobus.php:1314
904
  msgid "OFF"
905
  msgstr ""
906
 
907
+ #: includes/class-wpglobus.php:1315
908
  msgid "Turn on"
909
  msgstr ""
910
 
911
  #. translators: ON/OFF status of WPGlobus on the edit pages.
912
+ #: includes/class-wpglobus.php:1319
913
  msgid "ON"
914
  msgstr ""
915
 
916
+ #: includes/class-wpglobus.php:1320
917
  msgid "Turn off"
918
  msgstr ""
919
 
920
+ #: includes/class-wpglobus.php:1503
921
  msgid "You cannot disable the main language."
922
  msgstr "Nie możesz wyłączyć głównego języka."
923
 
924
+ #: includes/class-wpglobus.php:1704
925
  msgid "*) Available after the menu is saved."
926
  msgstr "*) Dostępne po zapisaniu menu."
927
 
928
+ #: includes/class-wpglobus.php:1721
929
  msgid "Need a multilingual slug?"
930
  msgstr ""
931
 
932
+ #: includes/class-wpglobus.php:4045
933
  msgid "You must enable Pretty Permalinks to use WPGlobus."
934
  msgstr ""
935
  "Aby korzystać z WPGlobus'a, musisz ustawić przyjazne bezpośrednie odnośniki."
936
 
937
+ #: includes/class-wpglobus.php:4047
938
  msgid ""
939
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
940
  "default option."
languages/wpglobus-pt_BR.po CHANGED
@@ -273,7 +273,7 @@ msgstr ""
273
 
274
  #: includes/admin/class-wpglobus-customize-options.php:546,
275
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
276
- #: includes/class-wpglobus.php:1345, wpglobus.php:12, wpglobus.php:18
277
  msgid "WPGlobus"
278
  msgstr ""
279
 
@@ -792,7 +792,7 @@ msgid "To translate permalinks, please activate the module Slug."
792
  msgstr ""
793
 
794
  #: includes/builders/class-wpglobus-builder.php:277,
795
- #: includes/class-wpglobus.php:3611
796
  msgid "Save draft before using extra language."
797
  msgstr ""
798
 
@@ -873,40 +873,40 @@ msgid "Selector type"
873
  msgstr ""
874
 
875
  #. translators: ON/OFF status of WPGlobus on the edit pages.
876
- #: includes/class-wpglobus.php:1319
877
  msgid "OFF"
878
  msgstr "DESLIGADO"
879
 
880
- #: includes/class-wpglobus.php:1320
881
  msgid "Turn on"
882
  msgstr ""
883
 
884
  #. translators: ON/OFF status of WPGlobus on the edit pages.
885
- #: includes/class-wpglobus.php:1324
886
  msgid "ON"
887
  msgstr "LIGADO"
888
 
889
- #: includes/class-wpglobus.php:1325
890
  msgid "Turn off"
891
  msgstr ""
892
 
893
- #: includes/class-wpglobus.php:1508
894
  msgid "You cannot disable the main language."
895
  msgstr ""
896
 
897
- #: includes/class-wpglobus.php:1709
898
  msgid "*) Available after the menu is saved."
899
  msgstr ""
900
 
901
- #: includes/class-wpglobus.php:1726
902
  msgid "Need a multilingual slug?"
903
  msgstr ""
904
 
905
- #: includes/class-wpglobus.php:4050
906
  msgid "You must enable Pretty Permalinks to use WPGlobus."
907
  msgstr ""
908
 
909
- #: includes/class-wpglobus.php:4052
910
  msgid ""
911
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
912
  "default option."
273
 
274
  #: includes/admin/class-wpglobus-customize-options.php:546,
275
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
276
+ #: includes/class-wpglobus.php:1340, wpglobus.php:12, wpglobus.php:18
277
  msgid "WPGlobus"
278
  msgstr ""
279
 
792
  msgstr ""
793
 
794
  #: includes/builders/class-wpglobus-builder.php:277,
795
+ #: includes/class-wpglobus.php:3606
796
  msgid "Save draft before using extra language."
797
  msgstr ""
798
 
873
  msgstr ""
874
 
875
  #. translators: ON/OFF status of WPGlobus on the edit pages.
876
+ #: includes/class-wpglobus.php:1314
877
  msgid "OFF"
878
  msgstr "DESLIGADO"
879
 
880
+ #: includes/class-wpglobus.php:1315
881
  msgid "Turn on"
882
  msgstr ""
883
 
884
  #. translators: ON/OFF status of WPGlobus on the edit pages.
885
+ #: includes/class-wpglobus.php:1319
886
  msgid "ON"
887
  msgstr "LIGADO"
888
 
889
+ #: includes/class-wpglobus.php:1320
890
  msgid "Turn off"
891
  msgstr ""
892
 
893
+ #: includes/class-wpglobus.php:1503
894
  msgid "You cannot disable the main language."
895
  msgstr ""
896
 
897
+ #: includes/class-wpglobus.php:1704
898
  msgid "*) Available after the menu is saved."
899
  msgstr ""
900
 
901
+ #: includes/class-wpglobus.php:1721
902
  msgid "Need a multilingual slug?"
903
  msgstr ""
904
 
905
+ #: includes/class-wpglobus.php:4045
906
  msgid "You must enable Pretty Permalinks to use WPGlobus."
907
  msgstr ""
908
 
909
+ #: includes/class-wpglobus.php:4047
910
  msgid ""
911
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
912
  "default option."
languages/wpglobus-pt_PT.po CHANGED
@@ -273,7 +273,7 @@ msgstr ""
273
 
274
  #: includes/admin/class-wpglobus-customize-options.php:546,
275
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
276
- #: includes/class-wpglobus.php:1345, wpglobus.php:12, wpglobus.php:18
277
  msgid "WPGlobus"
278
  msgstr ""
279
 
@@ -792,7 +792,7 @@ msgid "To translate permalinks, please activate the module Slug."
792
  msgstr ""
793
 
794
  #: includes/builders/class-wpglobus-builder.php:277,
795
- #: includes/class-wpglobus.php:3611
796
  msgid "Save draft before using extra language."
797
  msgstr ""
798
 
@@ -873,40 +873,40 @@ msgid "Selector type"
873
  msgstr ""
874
 
875
  #. translators: ON/OFF status of WPGlobus on the edit pages.
876
- #: includes/class-wpglobus.php:1319
877
  msgid "OFF"
878
  msgstr "Não"
879
 
880
- #: includes/class-wpglobus.php:1320
881
  msgid "Turn on"
882
  msgstr ""
883
 
884
  #. translators: ON/OFF status of WPGlobus on the edit pages.
885
- #: includes/class-wpglobus.php:1324
886
  msgid "ON"
887
  msgstr "Sim"
888
 
889
- #: includes/class-wpglobus.php:1325
890
  msgid "Turn off"
891
  msgstr ""
892
 
893
- #: includes/class-wpglobus.php:1508
894
  msgid "You cannot disable the main language."
895
  msgstr ""
896
 
897
- #: includes/class-wpglobus.php:1709
898
  msgid "*) Available after the menu is saved."
899
  msgstr ""
900
 
901
- #: includes/class-wpglobus.php:1726
902
  msgid "Need a multilingual slug?"
903
  msgstr ""
904
 
905
- #: includes/class-wpglobus.php:4050
906
  msgid "You must enable Pretty Permalinks to use WPGlobus."
907
  msgstr ""
908
 
909
- #: includes/class-wpglobus.php:4052
910
  msgid ""
911
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
912
  "default option."
273
 
274
  #: includes/admin/class-wpglobus-customize-options.php:546,
275
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
276
+ #: includes/class-wpglobus.php:1340, wpglobus.php:12, wpglobus.php:18
277
  msgid "WPGlobus"
278
  msgstr ""
279
 
792
  msgstr ""
793
 
794
  #: includes/builders/class-wpglobus-builder.php:277,
795
+ #: includes/class-wpglobus.php:3606
796
  msgid "Save draft before using extra language."
797
  msgstr ""
798
 
873
  msgstr ""
874
 
875
  #. translators: ON/OFF status of WPGlobus on the edit pages.
876
+ #: includes/class-wpglobus.php:1314
877
  msgid "OFF"
878
  msgstr "Não"
879
 
880
+ #: includes/class-wpglobus.php:1315
881
  msgid "Turn on"
882
  msgstr ""
883
 
884
  #. translators: ON/OFF status of WPGlobus on the edit pages.
885
+ #: includes/class-wpglobus.php:1319
886
  msgid "ON"
887
  msgstr "Sim"
888
 
889
+ #: includes/class-wpglobus.php:1320
890
  msgid "Turn off"
891
  msgstr ""
892
 
893
+ #: includes/class-wpglobus.php:1503
894
  msgid "You cannot disable the main language."
895
  msgstr ""
896
 
897
+ #: includes/class-wpglobus.php:1704
898
  msgid "*) Available after the menu is saved."
899
  msgstr ""
900
 
901
+ #: includes/class-wpglobus.php:1721
902
  msgid "Need a multilingual slug?"
903
  msgstr ""
904
 
905
+ #: includes/class-wpglobus.php:4045
906
  msgid "You must enable Pretty Permalinks to use WPGlobus."
907
  msgstr ""
908
 
909
+ #: includes/class-wpglobus.php:4047
910
  msgid ""
911
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
912
  "default option."
languages/wpglobus-ro_RO.po CHANGED
@@ -290,7 +290,7 @@ msgstr ""
290
 
291
  #: includes/admin/class-wpglobus-customize-options.php:546,
292
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
293
- #: includes/class-wpglobus.php:1345, wpglobus.php:12, wpglobus.php:18
294
  msgid "WPGlobus"
295
  msgstr "WPGlobus"
296
 
@@ -822,7 +822,7 @@ msgid "To translate permalinks, please activate the module Slug."
822
  msgstr ""
823
 
824
  #: includes/builders/class-wpglobus-builder.php:277,
825
- #: includes/class-wpglobus.php:3611
826
  msgid "Save draft before using extra language."
827
  msgstr ""
828
 
@@ -903,40 +903,40 @@ msgid "Selector type"
903
  msgstr "Tipul de selector"
904
 
905
  #. translators: ON/OFF status of WPGlobus on the edit pages.
906
- #: includes/class-wpglobus.php:1319
907
  msgid "OFF"
908
  msgstr ""
909
 
910
- #: includes/class-wpglobus.php:1320
911
  msgid "Turn on"
912
  msgstr ""
913
 
914
  #. translators: ON/OFF status of WPGlobus on the edit pages.
915
- #: includes/class-wpglobus.php:1324
916
  msgid "ON"
917
  msgstr ""
918
 
919
- #: includes/class-wpglobus.php:1325
920
  msgid "Turn off"
921
  msgstr ""
922
 
923
- #: includes/class-wpglobus.php:1508
924
  msgid "You cannot disable the main language."
925
  msgstr "Nu puteți dezactiva limba principală."
926
 
927
- #: includes/class-wpglobus.php:1709
928
  msgid "*) Available after the menu is saved."
929
  msgstr "*) Disponibil după ce meniul este salvat."
930
 
931
- #: includes/class-wpglobus.php:1726
932
  msgid "Need a multilingual slug?"
933
  msgstr ""
934
 
935
- #: includes/class-wpglobus.php:4050
936
  msgid "You must enable Pretty Permalinks to use WPGlobus."
937
  msgstr "Trebuie să activezi Pretty Permalinks pentru a folosi WPGlobus."
938
 
939
- #: includes/class-wpglobus.php:4052
940
  msgid ""
941
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
942
  "default option."
290
 
291
  #: includes/admin/class-wpglobus-customize-options.php:546,
292
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
293
+ #: includes/class-wpglobus.php:1340, wpglobus.php:12, wpglobus.php:18
294
  msgid "WPGlobus"
295
  msgstr "WPGlobus"
296
 
822
  msgstr ""
823
 
824
  #: includes/builders/class-wpglobus-builder.php:277,
825
+ #: includes/class-wpglobus.php:3606
826
  msgid "Save draft before using extra language."
827
  msgstr ""
828
 
903
  msgstr "Tipul de selector"
904
 
905
  #. translators: ON/OFF status of WPGlobus on the edit pages.
906
+ #: includes/class-wpglobus.php:1314
907
  msgid "OFF"
908
  msgstr ""
909
 
910
+ #: includes/class-wpglobus.php:1315
911
  msgid "Turn on"
912
  msgstr ""
913
 
914
  #. translators: ON/OFF status of WPGlobus on the edit pages.
915
+ #: includes/class-wpglobus.php:1319
916
  msgid "ON"
917
  msgstr ""
918
 
919
+ #: includes/class-wpglobus.php:1320
920
  msgid "Turn off"
921
  msgstr ""
922
 
923
+ #: includes/class-wpglobus.php:1503
924
  msgid "You cannot disable the main language."
925
  msgstr "Nu puteți dezactiva limba principală."
926
 
927
+ #: includes/class-wpglobus.php:1704
928
  msgid "*) Available after the menu is saved."
929
  msgstr "*) Disponibil după ce meniul este salvat."
930
 
931
+ #: includes/class-wpglobus.php:1721
932
  msgid "Need a multilingual slug?"
933
  msgstr ""
934
 
935
+ #: includes/class-wpglobus.php:4045
936
  msgid "You must enable Pretty Permalinks to use WPGlobus."
937
  msgstr "Trebuie să activezi Pretty Permalinks pentru a folosi WPGlobus."
938
 
939
+ #: includes/class-wpglobus.php:4047
940
  msgid ""
941
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
942
  "default option."
languages/wpglobus-ru_RU.po CHANGED
@@ -322,7 +322,7 @@ msgstr "Сохранить и перезагрузить"
322
 
323
  #: includes/admin/class-wpglobus-customize-options.php:546,
324
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
325
- #: includes/class-wpglobus.php:1345, wpglobus.php:12, wpglobus.php:18
326
  msgid "WPGlobus"
327
  msgstr "WPGlobus"
328
 
@@ -873,7 +873,7 @@ msgid "To translate permalinks, please activate the module Slug."
873
  msgstr "Для перевода ссылок необходимо активировать модуль УРЛ."
874
 
875
  #: includes/builders/class-wpglobus-builder.php:277,
876
- #: includes/class-wpglobus.php:3611
877
  msgid "Save draft before using extra language."
878
  msgstr "Сохраните черновик перед переключением на другой язык."
879
 
@@ -956,42 +956,42 @@ msgid "Selector type"
956
  msgstr "Способ выбора языка"
957
 
958
  #. translators: ON/OFF status of WPGlobus on the edit pages.
959
- #: includes/class-wpglobus.php:1319
960
  msgid "OFF"
961
  msgstr "ВЫКЛ"
962
 
963
- #: includes/class-wpglobus.php:1320
964
  msgid "Turn on"
965
  msgstr "Включить"
966
 
967
  #. translators: ON/OFF status of WPGlobus on the edit pages.
968
- #: includes/class-wpglobus.php:1324
969
  msgid "ON"
970
  msgstr "ВКЛ"
971
 
972
- #: includes/class-wpglobus.php:1325
973
  msgid "Turn off"
974
  msgstr "Выключить"
975
 
976
- #: includes/class-wpglobus.php:1508
977
  msgid "You cannot disable the main language."
978
  msgstr "Нельзя отключить основной язык."
979
 
980
- #: includes/class-wpglobus.php:1709
981
  msgid "*) Available after the menu is saved."
982
  msgstr "*) Доступно после сохранения меню."
983
 
984
- #: includes/class-wpglobus.php:1726
985
  msgid "Need a multilingual slug?"
986
  msgstr "Нужен мультиязычный ярлык?"
987
 
988
- #: includes/class-wpglobus.php:4050
989
  msgid "You must enable Pretty Permalinks to use WPGlobus."
990
  msgstr ""
991
  "Чтобы использовать плагин WPGlobus, необходимо включить ЧПУ - постоянные "
992
  "ссылки."
993
 
994
- #: includes/class-wpglobus.php:4052
995
  msgid ""
996
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
997
  "default option."
322
 
323
  #: includes/admin/class-wpglobus-customize-options.php:546,
324
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
325
+ #: includes/class-wpglobus.php:1340, wpglobus.php:12, wpglobus.php:18
326
  msgid "WPGlobus"
327
  msgstr "WPGlobus"
328
 
873
  msgstr "Для перевода ссылок необходимо активировать модуль УРЛ."
874
 
875
  #: includes/builders/class-wpglobus-builder.php:277,
876
+ #: includes/class-wpglobus.php:3606
877
  msgid "Save draft before using extra language."
878
  msgstr "Сохраните черновик перед переключением на другой язык."
879
 
956
  msgstr "Способ выбора языка"
957
 
958
  #. translators: ON/OFF status of WPGlobus on the edit pages.
959
+ #: includes/class-wpglobus.php:1314
960
  msgid "OFF"
961
  msgstr "ВЫКЛ"
962
 
963
+ #: includes/class-wpglobus.php:1315
964
  msgid "Turn on"
965
  msgstr "Включить"
966
 
967
  #. translators: ON/OFF status of WPGlobus on the edit pages.
968
+ #: includes/class-wpglobus.php:1319
969
  msgid "ON"
970
  msgstr "ВКЛ"
971
 
972
+ #: includes/class-wpglobus.php:1320
973
  msgid "Turn off"
974
  msgstr "Выключить"
975
 
976
+ #: includes/class-wpglobus.php:1503
977
  msgid "You cannot disable the main language."
978
  msgstr "Нельзя отключить основной язык."
979
 
980
+ #: includes/class-wpglobus.php:1704
981
  msgid "*) Available after the menu is saved."
982
  msgstr "*) Доступно после сохранения меню."
983
 
984
+ #: includes/class-wpglobus.php:1721
985
  msgid "Need a multilingual slug?"
986
  msgstr "Нужен мультиязычный ярлык?"
987
 
988
+ #: includes/class-wpglobus.php:4045
989
  msgid "You must enable Pretty Permalinks to use WPGlobus."
990
  msgstr ""
991
  "Чтобы использовать плагин WPGlobus, необходимо включить ЧПУ - постоянные "
992
  "ссылки."
993
 
994
+ #: includes/class-wpglobus.php:4047
995
  msgid ""
996
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
997
  "default option."
languages/wpglobus-sv_SE.po CHANGED
@@ -290,7 +290,7 @@ msgstr "Spara och ladda om"
290
 
291
  #: includes/admin/class-wpglobus-customize-options.php:546,
292
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
293
- #: includes/class-wpglobus.php:1345, wpglobus.php:12, wpglobus.php:18
294
  msgid "WPGlobus"
295
  msgstr "WPGlobus"
296
 
@@ -818,7 +818,7 @@ msgid "To translate permalinks, please activate the module Slug."
818
  msgstr ""
819
 
820
  #: includes/builders/class-wpglobus-builder.php:277,
821
- #: includes/class-wpglobus.php:3611
822
  msgid "Save draft before using extra language."
823
  msgstr "Spara utkast innan du använder extra språk."
824
 
@@ -899,40 +899,40 @@ msgid "Selector type"
899
  msgstr "Väljartyp"
900
 
901
  #. translators: ON/OFF status of WPGlobus on the edit pages.
902
- #: includes/class-wpglobus.php:1319
903
  msgid "OFF"
904
  msgstr "AV"
905
 
906
- #: includes/class-wpglobus.php:1320
907
  msgid "Turn on"
908
  msgstr ""
909
 
910
  #. translators: ON/OFF status of WPGlobus on the edit pages.
911
- #: includes/class-wpglobus.php:1324
912
  msgid "ON"
913
  msgstr "PÅ"
914
 
915
- #: includes/class-wpglobus.php:1325
916
  msgid "Turn off"
917
  msgstr "Stäng av"
918
 
919
- #: includes/class-wpglobus.php:1508
920
  msgid "You cannot disable the main language."
921
  msgstr "Du kan inte stänga av huvudspråk."
922
 
923
- #: includes/class-wpglobus.php:1709
924
  msgid "*) Available after the menu is saved."
925
  msgstr "*) Tillgängligt när menyn sparats."
926
 
927
- #: includes/class-wpglobus.php:1726
928
  msgid "Need a multilingual slug?"
929
  msgstr ""
930
 
931
- #: includes/class-wpglobus.php:4050
932
  msgid "You must enable Pretty Permalinks to use WPGlobus."
933
  msgstr "Du måste aktivera Vackra Permalänkar för att använda WPGlobus."
934
 
935
- #: includes/class-wpglobus.php:4052
936
  msgid ""
937
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
938
  "default option."
290
 
291
  #: includes/admin/class-wpglobus-customize-options.php:546,
292
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
293
+ #: includes/class-wpglobus.php:1340, wpglobus.php:12, wpglobus.php:18
294
  msgid "WPGlobus"
295
  msgstr "WPGlobus"
296
 
818
  msgstr ""
819
 
820
  #: includes/builders/class-wpglobus-builder.php:277,
821
+ #: includes/class-wpglobus.php:3606
822
  msgid "Save draft before using extra language."
823
  msgstr "Spara utkast innan du använder extra språk."
824
 
899
  msgstr "Väljartyp"
900
 
901
  #. translators: ON/OFF status of WPGlobus on the edit pages.
902
+ #: includes/class-wpglobus.php:1314
903
  msgid "OFF"
904
  msgstr "AV"
905
 
906
+ #: includes/class-wpglobus.php:1315
907
  msgid "Turn on"
908
  msgstr ""
909
 
910
  #. translators: ON/OFF status of WPGlobus on the edit pages.
911
+ #: includes/class-wpglobus.php:1319
912
  msgid "ON"
913
  msgstr "PÅ"
914
 
915
+ #: includes/class-wpglobus.php:1320
916
  msgid "Turn off"
917
  msgstr "Stäng av"
918
 
919
+ #: includes/class-wpglobus.php:1503
920
  msgid "You cannot disable the main language."
921
  msgstr "Du kan inte stänga av huvudspråk."
922
 
923
+ #: includes/class-wpglobus.php:1704
924
  msgid "*) Available after the menu is saved."
925
  msgstr "*) Tillgängligt när menyn sparats."
926
 
927
+ #: includes/class-wpglobus.php:1721
928
  msgid "Need a multilingual slug?"
929
  msgstr ""
930
 
931
+ #: includes/class-wpglobus.php:4045
932
  msgid "You must enable Pretty Permalinks to use WPGlobus."
933
  msgstr "Du måste aktivera Vackra Permalänkar för att använda WPGlobus."
934
 
935
+ #: includes/class-wpglobus.php:4047
936
  msgid ""
937
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
938
  "default option."
languages/wpglobus-tr_TR.po CHANGED
@@ -291,7 +291,7 @@ msgstr ""
291
 
292
  #: includes/admin/class-wpglobus-customize-options.php:546,
293
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
294
- #: includes/class-wpglobus.php:1345, wpglobus.php:12, wpglobus.php:18
295
  msgid "WPGlobus"
296
  msgstr ""
297
 
@@ -818,7 +818,7 @@ msgid "To translate permalinks, please activate the module Slug."
818
  msgstr ""
819
 
820
  #: includes/builders/class-wpglobus-builder.php:277,
821
- #: includes/class-wpglobus.php:3611
822
  msgid "Save draft before using extra language."
823
  msgstr ""
824
 
@@ -899,41 +899,41 @@ msgid "Selector type"
899
  msgstr "Değiştirici tipi"
900
 
901
  #. translators: ON/OFF status of WPGlobus on the edit pages.
902
- #: includes/class-wpglobus.php:1319
903
  msgid "OFF"
904
  msgstr "KAPALI"
905
 
906
- #: includes/class-wpglobus.php:1320
907
  msgid "Turn on"
908
  msgstr ""
909
 
910
  #. translators: ON/OFF status of WPGlobus on the edit pages.
911
- #: includes/class-wpglobus.php:1324
912
  msgid "ON"
913
  msgstr "AÇIK"
914
 
915
- #: includes/class-wpglobus.php:1325
916
  msgid "Turn off"
917
  msgstr ""
918
 
919
- #: includes/class-wpglobus.php:1508
920
  msgid "You cannot disable the main language."
921
  msgstr "Asıl dili etkisizleştiremezsiniz."
922
 
923
- #: includes/class-wpglobus.php:1709
924
  msgid "*) Available after the menu is saved."
925
  msgstr "*) Menü kaydedildikten sonra kullanılabilir."
926
 
927
- #: includes/class-wpglobus.php:1726
928
  msgid "Need a multilingual slug?"
929
  msgstr ""
930
 
931
- #: includes/class-wpglobus.php:4050
932
  msgid "You must enable Pretty Permalinks to use WPGlobus."
933
  msgstr ""
934
  "WPGlobus' u kullanabilmek için Pretty Permalinks' i etkinleştirmelisiniz."
935
 
936
- #: includes/class-wpglobus.php:4052
937
  msgid ""
938
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
939
  "default option."
291
 
292
  #: includes/admin/class-wpglobus-customize-options.php:546,
293
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
294
+ #: includes/class-wpglobus.php:1340, wpglobus.php:12, wpglobus.php:18
295
  msgid "WPGlobus"
296
  msgstr ""
297
 
818
  msgstr ""
819
 
820
  #: includes/builders/class-wpglobus-builder.php:277,
821
+ #: includes/class-wpglobus.php:3606
822
  msgid "Save draft before using extra language."
823
  msgstr ""
824
 
899
  msgstr "Değiştirici tipi"
900
 
901
  #. translators: ON/OFF status of WPGlobus on the edit pages.
902
+ #: includes/class-wpglobus.php:1314
903
  msgid "OFF"
904
  msgstr "KAPALI"
905
 
906
+ #: includes/class-wpglobus.php:1315
907
  msgid "Turn on"
908
  msgstr ""
909
 
910
  #. translators: ON/OFF status of WPGlobus on the edit pages.
911
+ #: includes/class-wpglobus.php:1319
912
  msgid "ON"
913
  msgstr "AÇIK"
914
 
915
+ #: includes/class-wpglobus.php:1320
916
  msgid "Turn off"
917
  msgstr ""
918
 
919
+ #: includes/class-wpglobus.php:1503
920
  msgid "You cannot disable the main language."
921
  msgstr "Asıl dili etkisizleştiremezsiniz."
922
 
923
+ #: includes/class-wpglobus.php:1704
924
  msgid "*) Available after the menu is saved."
925
  msgstr "*) Menü kaydedildikten sonra kullanılabilir."
926
 
927
+ #: includes/class-wpglobus.php:1721
928
  msgid "Need a multilingual slug?"
929
  msgstr ""
930
 
931
+ #: includes/class-wpglobus.php:4045
932
  msgid "You must enable Pretty Permalinks to use WPGlobus."
933
  msgstr ""
934
  "WPGlobus' u kullanabilmek için Pretty Permalinks' i etkinleştirmelisiniz."
935
 
936
+ #: includes/class-wpglobus.php:4047
937
  msgid ""
938
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
939
  "default option."
languages/wpglobus-uk.po CHANGED
@@ -310,7 +310,7 @@ msgstr "Зберегти та перезавантажити"
310
 
311
  #: includes/admin/class-wpglobus-customize-options.php:546,
312
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
313
- #: includes/class-wpglobus.php:1345, wpglobus.php:12, wpglobus.php:18
314
  msgid "WPGlobus"
315
  msgstr "WPGlobus"
316
 
@@ -850,7 +850,7 @@ msgid "To translate permalinks, please activate the module Slug."
850
  msgstr ""
851
 
852
  #: includes/builders/class-wpglobus-builder.php:277,
853
- #: includes/class-wpglobus.php:3611
854
  msgid "Save draft before using extra language."
855
  msgstr ""
856
 
@@ -931,42 +931,42 @@ msgid "Selector type"
931
  msgstr "Спосіб выбору мови"
932
 
933
  #. translators: ON/OFF status of WPGlobus on the edit pages.
934
- #: includes/class-wpglobus.php:1319
935
  msgid "OFF"
936
  msgstr ""
937
 
938
- #: includes/class-wpglobus.php:1320
939
  msgid "Turn on"
940
  msgstr ""
941
 
942
  #. translators: ON/OFF status of WPGlobus on the edit pages.
943
- #: includes/class-wpglobus.php:1324
944
  msgid "ON"
945
  msgstr ""
946
 
947
- #: includes/class-wpglobus.php:1325
948
  msgid "Turn off"
949
  msgstr ""
950
 
951
- #: includes/class-wpglobus.php:1508
952
  msgid "You cannot disable the main language."
953
  msgstr "Неможна відключити головну мову."
954
 
955
- #: includes/class-wpglobus.php:1709
956
  msgid "*) Available after the menu is saved."
957
  msgstr "*) Доступно після збереження меню."
958
 
959
- #: includes/class-wpglobus.php:1726
960
  msgid "Need a multilingual slug?"
961
  msgstr ""
962
 
963
- #: includes/class-wpglobus.php:4050
964
  msgid "You must enable Pretty Permalinks to use WPGlobus."
965
  msgstr ""
966
  "Щоб використовувати плагін WPGlobus, необхідно увімкнути SEF URLs - постійні "
967
  "посилання."
968
 
969
- #: includes/class-wpglobus.php:4052
970
  msgid ""
971
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
972
  "default option."
310
 
311
  #: includes/admin/class-wpglobus-customize-options.php:546,
312
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
313
+ #: includes/class-wpglobus.php:1340, wpglobus.php:12, wpglobus.php:18
314
  msgid "WPGlobus"
315
  msgstr "WPGlobus"
316
 
850
  msgstr ""
851
 
852
  #: includes/builders/class-wpglobus-builder.php:277,
853
+ #: includes/class-wpglobus.php:3606
854
  msgid "Save draft before using extra language."
855
  msgstr ""
856
 
931
  msgstr "Спосіб выбору мови"
932
 
933
  #. translators: ON/OFF status of WPGlobus on the edit pages.
934
+ #: includes/class-wpglobus.php:1314
935
  msgid "OFF"
936
  msgstr ""
937
 
938
+ #: includes/class-wpglobus.php:1315
939
  msgid "Turn on"
940
  msgstr ""
941
 
942
  #. translators: ON/OFF status of WPGlobus on the edit pages.
943
+ #: includes/class-wpglobus.php:1319
944
  msgid "ON"
945
  msgstr ""
946
 
947
+ #: includes/class-wpglobus.php:1320
948
  msgid "Turn off"
949
  msgstr ""
950
 
951
+ #: includes/class-wpglobus.php:1503
952
  msgid "You cannot disable the main language."
953
  msgstr "Неможна відключити головну мову."
954
 
955
+ #: includes/class-wpglobus.php:1704
956
  msgid "*) Available after the menu is saved."
957
  msgstr "*) Доступно після збереження меню."
958
 
959
+ #: includes/class-wpglobus.php:1721
960
  msgid "Need a multilingual slug?"
961
  msgstr ""
962
 
963
+ #: includes/class-wpglobus.php:4045
964
  msgid "You must enable Pretty Permalinks to use WPGlobus."
965
  msgstr ""
966
  "Щоб використовувати плагін WPGlobus, необхідно увімкнути SEF URLs - постійні "
967
  "посилання."
968
 
969
+ #: includes/class-wpglobus.php:4047
970
  msgid ""
971
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
972
  "default option."
languages/wpglobus.pot CHANGED
@@ -1,8 +1,8 @@
1
- # Copyright (C) 2019 WPGlobus 2.2.21
2
- # This file is distributed under the same license as the WPGlobus 2.2.21 package.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: WPGlobus 2.2.21\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -205,7 +205,7 @@ msgstr ""
205
  msgid "Save &amp; Reload"
206
  msgstr ""
207
 
208
- #: includes/admin/class-wpglobus-customize-options.php:546, includes/builders/gutenberg/class-wpglobus-gutenberg.php:538, includes/class-wpglobus.php:1345, wpglobus.php:12, wpglobus.php:18
209
  msgid "WPGlobus"
210
  msgstr ""
211
 
@@ -643,7 +643,7 @@ msgstr ""
643
  msgid "To translate permalinks, please activate the module Slug."
644
  msgstr ""
645
 
646
- #: includes/builders/class-wpglobus-builder.php:277, includes/class-wpglobus.php:3611
647
  msgid "Save draft before using extra language."
648
  msgstr ""
649
 
@@ -722,40 +722,40 @@ msgid "Selector type"
722
  msgstr ""
723
 
724
  #. translators: ON/OFF status of WPGlobus on the edit pages.
725
- #: includes/class-wpglobus.php:1319
726
  msgid "OFF"
727
  msgstr ""
728
 
729
- #: includes/class-wpglobus.php:1320
730
  msgid "Turn on"
731
  msgstr ""
732
 
733
  #. translators: ON/OFF status of WPGlobus on the edit pages.
734
- #: includes/class-wpglobus.php:1324
735
  msgid "ON"
736
  msgstr ""
737
 
738
- #: includes/class-wpglobus.php:1325
739
  msgid "Turn off"
740
  msgstr ""
741
 
742
- #: includes/class-wpglobus.php:1508
743
  msgid "You cannot disable the main language."
744
  msgstr ""
745
 
746
- #: includes/class-wpglobus.php:1709
747
  msgid "*) Available after the menu is saved."
748
  msgstr ""
749
 
750
- #: includes/class-wpglobus.php:1726
751
  msgid "Need a multilingual slug?"
752
  msgstr ""
753
 
754
- #: includes/class-wpglobus.php:4050
755
  msgid "You must enable Pretty Permalinks to use WPGlobus."
756
  msgstr ""
757
 
758
- #: includes/class-wpglobus.php:4052
759
  msgid "Please go to Settings > Permalinks > Common Settings and choose a non-default option."
760
  msgstr ""
761
 
1
+ # Copyright (C) 2019 WPGlobus 2.2.22
2
+ # This file is distributed under the same license as the WPGlobus 2.2.22 package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: WPGlobus 2.2.22\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
205
  msgid "Save &amp; Reload"
206
  msgstr ""
207
 
208
+ #: includes/admin/class-wpglobus-customize-options.php:546, includes/builders/gutenberg/class-wpglobus-gutenberg.php:538, includes/class-wpglobus.php:1340, wpglobus.php:12, wpglobus.php:18
209
  msgid "WPGlobus"
210
  msgstr ""
211
 
643
  msgid "To translate permalinks, please activate the module Slug."
644
  msgstr ""
645
 
646
+ #: includes/builders/class-wpglobus-builder.php:277, includes/class-wpglobus.php:3606
647
  msgid "Save draft before using extra language."
648
  msgstr ""
649
 
722
  msgstr ""
723
 
724
  #. translators: ON/OFF status of WPGlobus on the edit pages.
725
+ #: includes/class-wpglobus.php:1314
726
  msgid "OFF"
727
  msgstr ""
728
 
729
+ #: includes/class-wpglobus.php:1315
730
  msgid "Turn on"
731
  msgstr ""
732
 
733
  #. translators: ON/OFF status of WPGlobus on the edit pages.
734
+ #: includes/class-wpglobus.php:1319
735
  msgid "ON"
736
  msgstr ""
737
 
738
+ #: includes/class-wpglobus.php:1320
739
  msgid "Turn off"
740
  msgstr ""
741
 
742
+ #: includes/class-wpglobus.php:1503
743
  msgid "You cannot disable the main language."
744
  msgstr ""
745
 
746
+ #: includes/class-wpglobus.php:1704
747
  msgid "*) Available after the menu is saved."
748
  msgstr ""
749
 
750
+ #: includes/class-wpglobus.php:1721
751
  msgid "Need a multilingual slug?"
752
  msgstr ""
753
 
754
+ #: includes/class-wpglobus.php:4045
755
  msgid "You must enable Pretty Permalinks to use WPGlobus."
756
  msgstr ""
757
 
758
+ #: includes/class-wpglobus.php:4047
759
  msgid "Please go to Settings > Permalinks > Common Settings and choose a non-default option."
760
  msgstr ""
761
 
readme.txt CHANGED
@@ -218,6 +218,11 @@ WPGlobus Version 2 supports WordPress 5.x, with Gutenberg.
218
 
219
  == Changelog ==
220
 
 
 
 
 
 
221
  = 2.2.21 =
222
 
223
  * Fixed: (Core) Uncaught `TypeError: WPGlobusYoastSeo.init is not a function`.
218
 
219
  == Changelog ==
220
 
221
+ = 2.2.22 =
222
+
223
+ * Added: (Core/Media) Media files support for the standard and Builder modes.
224
+ * Added: (Vendor/Acf) Filter for the `Url` field type.
225
+
226
  = 2.2.21 =
227
 
228
  * Fixed: (Core) Uncaught `TypeError: WPGlobusYoastSeo.init is not a function`.
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.2.21
19
  * Author: WPGlobus
20
  * Author URI: https://wpglobus.com/
21
  * Network: false
@@ -42,7 +42,7 @@ if ( ! defined( 'ABSPATH' ) ) {
42
  exit;
43
  }
44
 
45
- define( 'WPGLOBUS_VERSION', '2.2.21' );
46
  define( 'WPGLOBUS_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
47
  define( 'WPGLOBUS_AJAX', 'wpglobus-ajax' );
48
 
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.2.22
19
  * Author: WPGlobus
20
  * Author URI: https://wpglobus.com/
21
  * Network: false
42
  exit;
43
  }
44
 
45
+ define( 'WPGLOBUS_VERSION', '2.2.22' );
46
  define( 'WPGLOBUS_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
47
  define( 'WPGLOBUS_AJAX', 'wpglobus-ajax' );
48