WPGlobus – Multilingual Everything! - Version 2.4.0

Version Description

  • (Vendor/Yoast) Added support Yoast SEO from v.14.
  • (Core) Code clean-up.
  • (Core) Interface improvements on the post.php page.
  • (Core/Builder) Interface improvements on the post.php page.
  • (Core/AdminPost) Localized the Preview Changes link.
  • (Core/Meta) Removed caching meta data.
  • (Builders/Gutenberg) Prevent multiple clicking on language switcher.
Download this release

Release Info

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

Code changes from version 2.3.12 to 2.4.0

Files changed (56) hide show
  1. includes/admin/class-wpglobus-admin-post.php +57 -0
  2. includes/admin/meta/class-wpglobus-meta.php +4 -7
  3. includes/admin/wpglobus-admin.php +7 -0
  4. includes/builders/class-wpglobus-builder.php +6 -1
  5. includes/builders/gutenberg/assets/css/dist/wpglobus-switcher.css +66 -0
  6. includes/builders/gutenberg/assets/js/wpglobus-gutenberg.js +4 -0
  7. includes/builders/gutenberg/assets/js/wpglobus-gutenberg.min.js +1 -1
  8. includes/class-wpglobus.php +8 -63
  9. includes/css/wpglobus-admin-tabs.css +1 -1
  10. includes/css/wpglobus-admin-tabs.css.map +1 -1
  11. includes/css/wpglobus-admin-tabs.scss +5 -1
  12. includes/js/wpglobus-admin-51.js +14 -0
  13. includes/js/wpglobus-admin-51.min.js +1 -1
  14. includes/js/wpglobus-yoastseo-140.js +156 -0
  15. includes/js/wpglobus-yoastseo-140.min.js +1 -0
  16. includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php +759 -0
  17. includes/wpglobus-yoastseo.php +16 -10
  18. languages/wpglobus-ar.po +14 -14
  19. languages/wpglobus-be.po +14 -14
  20. languages/wpglobus-bg_BG.po +14 -14
  21. languages/wpglobus-de_CH.po +14 -14
  22. languages/wpglobus-de_DE.po +14 -14
  23. languages/wpglobus-el.po +14 -14
  24. languages/wpglobus-en_AU.po +14 -14
  25. languages/wpglobus-en_CA.po +14 -14
  26. languages/wpglobus-en_GB.po +14 -14
  27. languages/wpglobus-en_NZ.po +14 -14
  28. languages/wpglobus-en_US.po +14 -14
  29. languages/wpglobus-en_ZA.po +14 -14
  30. languages/wpglobus-es_AR.po +14 -14
  31. languages/wpglobus-es_CL.po +14 -14
  32. languages/wpglobus-es_CO.po +14 -14
  33. languages/wpglobus-es_CR.po +14 -14
  34. languages/wpglobus-es_ES.po +14 -14
  35. languages/wpglobus-es_GT.po +14 -14
  36. languages/wpglobus-es_MX.po +14 -14
  37. languages/wpglobus-es_PE.po +14 -14
  38. languages/wpglobus-es_PR.po +14 -14
  39. languages/wpglobus-es_VE.po +14 -14
  40. languages/wpglobus-et.po +14 -14
  41. languages/wpglobus-fr_BE.po +14 -14
  42. languages/wpglobus-fr_CA.po +14 -14
  43. languages/wpglobus-fr_FR.po +14 -14
  44. languages/wpglobus-id_ID.po +14 -14
  45. languages/wpglobus-ko_KR.po +14 -14
  46. languages/wpglobus-pl_PL.po +14 -14
  47. languages/wpglobus-pt_BR.po +14 -14
  48. languages/wpglobus-pt_PT.po +14 -14
  49. languages/wpglobus-ro_RO.po +14 -14
  50. languages/wpglobus-ru_RU.po +14 -14
  51. languages/wpglobus-sv_SE.po +14 -14
  52. languages/wpglobus-tr_TR.po +14 -14
  53. languages/wpglobus-uk.po +14 -14
  54. languages/wpglobus.pot +16 -16
  55. readme.txt +10 -4
  56. wpglobus.php +2 -2
includes/admin/class-wpglobus-admin-post.php ADDED
@@ -0,0 +1,57 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * File: class-wpglobus-admin-post.php
4
+ * Class for post.php page.
5
+ *
6
+ * @package WPGlobus\Admin
7
+ * @author Alex Gor(alexgff)
8
+ * @since 2.4
9
+ */
10
+ if ( ! class_exists( 'WPGlobus_Admin_Post' ) ) :
11
+
12
+ /**
13
+ * Class WPGlobus_Admin_Menu.
14
+ */
15
+ class WPGlobus_Admin_Post {
16
+
17
+ /**
18
+ * Static constructor.
19
+ */
20
+ public static function construct() {
21
+
22
+ if ( ! WPGlobus_WP::is_pagenow('post.php') ) {
23
+ return;
24
+ }
25
+
26
+ if ( 'off' == WPGlobus::Config()->toggle ) {
27
+ return;
28
+ }
29
+
30
+ add_filter( 'preview_post_link', array( __CLASS__, 'filter__preview_post_link' ), 5, 2 );
31
+ }
32
+
33
+ /**
34
+ * Filters the URL used for a post preview in builder mode.
35
+ * @see wp-includes/link-template.php
36
+ *
37
+ * @param string $preview_link URL used for the post preview.
38
+ * @param WP_Post $post Post object.
39
+ */
40
+ public static function filter__preview_post_link( $preview_link, $post ) {
41
+
42
+ if ( ! WPGlobus::Config()->builder->is_builder_page() ) {
43
+ return $preview_link;
44
+ }
45
+
46
+ if ( WPGlobus::Config()->builder->is_default_language() ) {
47
+ return $preview_link;
48
+
49
+ }
50
+
51
+ return WPGlobus_Utils::localize_url( $preview_link, WPGlobus::Config()->builder->get_language() );
52
+ }
53
+ }
54
+
55
+ endif;
56
+
57
+ # --- EOF
includes/admin/meta/class-wpglobus-meta.php CHANGED
@@ -363,10 +363,6 @@ if ( ! class_exists( 'WPGlobus_Meta' ) ) :
363
  */
364
  public static function filter__post_metadata( $check, $object_id, $meta_key, $single ) {
365
 
366
- if ( ! is_admin() ) {
367
- return $check;
368
- }
369
-
370
  if ( empty( self::$meta_fields ) ) {
371
  return $check;
372
  }
@@ -407,9 +403,10 @@ if ( ! class_exists( 'WPGlobus_Meta' ) ) :
407
  * May be called many times on one page. Let's cache.
408
  */
409
  static $_cache;
410
- if ( isset( $_cache[ $_cache_meta_key ][ $object_id ][ $return_value ] ) ) {
411
- return $_cache[ $_cache_meta_key ][ $object_id ][ $return_value ];
412
- }
 
413
 
414
  $meta_type = 'post';
415
 
363
  */
364
  public static function filter__post_metadata( $check, $object_id, $meta_key, $single ) {
365
 
 
 
 
 
366
  if ( empty( self::$meta_fields ) ) {
367
  return $check;
368
  }
403
  * May be called many times on one page. Let's cache.
404
  */
405
  static $_cache;
406
+ //if ( isset( $_cache[ $_cache_meta_key ][ $object_id ][ $return_value ] ) ) {
407
+ // @since 2.4
408
+ //return $_cache[ $_cache_meta_key ][ $object_id ][ $return_value ];
409
+ //}
410
 
411
  $meta_type = 'post';
412
 
includes/admin/wpglobus-admin.php CHANGED
@@ -18,6 +18,12 @@ WPGlobus_Admin_Central::construct();
18
  require_once dirname( __FILE__ ) . '/register-post-types/class-wpglobus-register-post-types.php';
19
  WPGlobus_Register_Post_Types::construct();
20
 
 
 
 
 
 
 
21
  if ( isset( $_GET['wpglobus-debug'] ) ) { // WPCS: input var ok, sanitization ok.
22
  /**
23
  * To load debug info
@@ -29,3 +35,4 @@ if ( isset( $_GET['wpglobus-debug'] ) ) { // WPCS: input var ok, sanitization ok
29
  WPGlobus_Admin_Debug::get_instance();
30
  }
31
 
 
18
  require_once dirname( __FILE__ ) . '/register-post-types/class-wpglobus-register-post-types.php';
19
  WPGlobus_Register_Post_Types::construct();
20
 
21
+ /**
22
+ * @since 2.4
23
+ */
24
+ require_once dirname( __FILE__ ) . '/class-wpglobus-admin-post.php';
25
+ WPGlobus_Admin_Post::construct();
26
+
27
  if ( isset( $_GET['wpglobus-debug'] ) ) { // WPCS: input var ok, sanitization ok.
28
  /**
29
  * To load debug info
35
  WPGlobus_Admin_Debug::get_instance();
36
  }
37
 
38
+ # --- EOF
includes/builders/class-wpglobus-builder.php CHANGED
@@ -270,6 +270,7 @@ if ( ! class_exists( 'WPGlobus_Builder' ) ) :
270
  $classes['ui-tabs-active'] = 'ui-tabs-active';
271
  $classes['ui-tabs-loading'] = 'ui-tabs-loading';
272
 
 
273
  $link_style = array();
274
  $link_title = '';
275
  if ( 'post-new.php' === $pagenow ) {
@@ -295,12 +296,15 @@ if ( ! class_exists( 'WPGlobus_Builder' ) ) :
295
 
296
  $_classes = $classes;
297
 
 
298
  $_link_style = $link_style;
299
 
300
  if ( 'post-new.php' === $pagenow && WPGLobus::Config()->default_language === $language ) {
301
  $_link_style['cursor'] = '';
302
  }
303
-
 
 
304
  if ( $language === $this->language ) {
305
  $_classes[] = 'ui-state-active';
306
  }
@@ -319,6 +323,7 @@ if ( ! class_exists( 'WPGlobus_Builder' ) ) :
319
  <!--<a href="#tab-<?php echo esc_attr( $tab_suffix ); ?>"><?php echo esc_html( WPGlobus::Config()->en_language_name[ $language ] ); ?></a>-->
320
  <a style="<?php echo esc_attr( implode( ';', $_link_style ) ); ?>"
321
  title="<?php echo esc_attr( $_link_title ); ?>"
 
322
  href="<?php echo esc_url( $link ); ?>"><?php echo esc_html( WPGlobus::Config()->en_language_name[ $language ] ); ?></a>
323
  </li>
324
  <?php
270
  $classes['ui-tabs-active'] = 'ui-tabs-active';
271
  $classes['ui-tabs-loading'] = 'ui-tabs-loading';
272
 
273
+ $link_class = array();
274
  $link_style = array();
275
  $link_title = '';
276
  if ( 'post-new.php' === $pagenow ) {
296
 
297
  $_classes = $classes;
298
 
299
+ $_link_class = $link_class;
300
  $_link_style = $link_style;
301
 
302
  if ( 'post-new.php' === $pagenow && WPGLobus::Config()->default_language === $language ) {
303
  $_link_style['cursor'] = '';
304
  }
305
+
306
+ $_link_class['tab-link-active'] = WPGlobus::Config()->builder->get_language() === $language ? 'wpglobus-tab-link-active' : '';
307
+
308
  if ( $language === $this->language ) {
309
  $_classes[] = 'ui-state-active';
310
  }
323
  <!--<a href="#tab-<?php echo esc_attr( $tab_suffix ); ?>"><?php echo esc_html( WPGlobus::Config()->en_language_name[ $language ] ); ?></a>-->
324
  <a style="<?php echo esc_attr( implode( ';', $_link_style ) ); ?>"
325
  title="<?php echo esc_attr( $_link_title ); ?>"
326
+ class="<?php echo esc_attr( implode( ' ', $_link_class ) ); ?>"
327
  href="<?php echo esc_url( $link ); ?>"><?php echo esc_html( WPGlobus::Config()->en_language_name[ $language ] ); ?></a>
328
  </li>
329
  <?php
includes/builders/gutenberg/assets/css/dist/wpglobus-switcher.css CHANGED
@@ -15,10 +15,76 @@
15
  z-index:10;width:90%;position:absolute;border:2px solid #ff8100;margin:5px 10px;padding:5px;border-radius:6px;background-color:#ff8100;
16
  font-size:14px;color:#000;font-weight:500;text-align:center;
17
  }
 
 
 
 
 
 
 
 
18
  .wpglobus-switcher-pulsate-radio {
19
  -webkit-animation: pulsate-radio 0.5s ease-in-out infinite both;
20
  animation: pulsate-radio 0.5s ease-in-out infinite both;
21
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
22
  /** animation pulsate-radio */
23
  @-webkit-keyframes pulsate-radio {
24
  0% {
15
  z-index:10;width:90%;position:absolute;border:2px solid #ff8100;margin:5px 10px;padding:5px;border-radius:6px;background-color:#ff8100;
16
  font-size:14px;color:#000;font-weight:500;text-align:center;
17
  }
18
+ .wpglobus-switcher-pulsate-radio-on {
19
+ -webkit-animation: pulsate-radio-on 0.3s ease-in-out both;
20
+ animation: pulsate-radio-on 0.3s ease-in-out both;
21
+ }
22
+ .wpglobus-switcher-pulsate-radio-off {
23
+ -webkit-animation: pulsate-radio-off 0.3s ease-in-out both;
24
+ animation: pulsate-radio-off 0.3s ease-in-out both;
25
+ }
26
  .wpglobus-switcher-pulsate-radio {
27
  -webkit-animation: pulsate-radio 0.5s ease-in-out infinite both;
28
  animation: pulsate-radio 0.5s ease-in-out infinite both;
29
  }
30
+ /** animation pulsate-radio-on */
31
+ @-webkit-keyframes pulsate-radio-on {
32
+ 0% {
33
+ -webkit-transform: scale(0);
34
+ transform: scale(0);
35
+ }
36
+ 50% {
37
+ -webkit-transform: scale(0.7);
38
+ transform: scale(0.7);
39
+ }
40
+ 100% {
41
+ -webkit-transform: scale(1.1);
42
+ transform: scale(1.1);
43
+ }
44
+ }
45
+ @keyframes pulsate-radio-on {
46
+ 0% {
47
+ -webkit-transform: scale(0);
48
+ transform: scale(0);
49
+ }
50
+ 50% {
51
+ -webkit-transform: scale(0.7);
52
+ transform: scale(0.7);
53
+ }
54
+ 100% {
55
+ -webkit-transform: scale(1.1);
56
+ transform: scale(1.1);
57
+ }
58
+ }
59
+ /** animation pulsate-radio-off */
60
+ @-webkit-keyframes pulsate-radio-off {
61
+ 0% {
62
+ -webkit-transform: scale(1.1);
63
+ transform: scale(1.1);
64
+ }
65
+ 50% {
66
+ -webkit-transform: scale(0.7);
67
+ transform: scale(0.7);
68
+ }
69
+ 100% {
70
+ -webkit-transform: scale(0);
71
+ transform: scale(0);
72
+ }
73
+ }
74
+ @keyframes pulsate-radio-off {
75
+ 0% {
76
+ -webkit-transform: scale(1.1);
77
+ transform: scale(1.1);
78
+ }
79
+ 50% {
80
+ -webkit-transform: scale(0.7);
81
+ transform: scale(0.7);
82
+ }
83
+ 100% {
84
+ -webkit-transform: scale(0);
85
+ transform: scale(0);
86
+ }
87
+ }
88
  /** animation pulsate-radio */
89
  @-webkit-keyframes pulsate-radio {
90
  0% {
includes/builders/gutenberg/assets/js/wpglobus-gutenberg.js CHANGED
@@ -288,12 +288,16 @@ jQuery(document).ready(function ($) {
288
  elems.forEach(function(elem) {
289
  elem.classList.add(elem.value);
290
  elem.classList.remove('wpglobus-switcher-pulsate-radio');
 
291
  });
292
  var elem = document.querySelector('.wpglobus-switcher-components-radio-control .'+promisedPluginButtonType);
 
293
  elem.classList.add('wpglobus-switcher-pulsate-radio');
294
  } else {
295
  elems.forEach(function(elem) {
296
  elem.classList.remove('wpglobus-switcher-pulsate-radio');
 
 
297
  });
298
  }
299
  }
288
  elems.forEach(function(elem) {
289
  elem.classList.add(elem.value);
290
  elem.classList.remove('wpglobus-switcher-pulsate-radio');
291
+ elem.classList.add('wpglobus-switcher-pulsate-radio-off');
292
  });
293
  var elem = document.querySelector('.wpglobus-switcher-components-radio-control .'+promisedPluginButtonType);
294
+ elem.classList.remove('wpglobus-switcher-pulsate-radio-off');
295
  elem.classList.add('wpglobus-switcher-pulsate-radio');
296
  } else {
297
  elems.forEach(function(elem) {
298
  elem.classList.remove('wpglobus-switcher-pulsate-radio');
299
+ elem.classList.remove('wpglobus-switcher-pulsate-radio-off');
300
+ elem.classList.add('wpglobus-switcher-pulsate-radio-on');
301
  });
302
  }
303
  }
includes/builders/gutenberg/assets/js/wpglobus-gutenberg.min.js CHANGED
@@ -1 +1 @@
1
- "use strict";jQuery(document).ready(function(D){var I={counter:0,noticeOn:!1,initDone:!1,languageSelectorBoxDelta:0,oldLanguageSelector:!1,languageSelectorEnabled:!0,parseBool:function(e){return!/^(false|0)$/i.test(e)&&!!e},getCounter:function(){return I.counter},getOptionKey:function(e){return e=e||"",WPGlobusGutenberg.keyOption[e]},getOptions:function(){return WPGlobusGutenberg.options},isOldLanguageSelector:function(){return I.oldLanguageSelector},isPostDisabled:function(){return WPGlobusGutenberg.__post.disabled},isEnabledTab:function(e){void 0===e&&(e="options");var t=!1;return"options"==e&&I.parseBool(WPGlobusGutenberg.enabledOptionsTab)&&(t=!0),t},init:function(){WPGlobusGutenberg.yoastSeo=I.parseBool(WPGlobusGutenberg.yoastSeo),I.isPostDisabled()||(I.initListeners(),I.setTabs(),I.formHandler(),I.attachListeners())},initListeners:function(){WPGlobusGutenberg.yoastSeo&&1==D(".yoast.wpseo-metabox").length&&D(window).on("beforeunload",function(e){e.stopImmediatePropagation()})},formHandler:function(){var e=D(".metabox-base-form #referredby").attr("value");void 0!==e&&(e=-1==e.indexOf("language=en")?e+"&language="+WPGlobusGutenberg.language:e.replace("language=en","language="+WPGlobusGutenberg.language),D(".metabox-base-form #referredby").attr("value",e)),void 0!==(e=D('input[name="_wp_original_http_referer"]').attr("value"))&&(e=-1==e.indexOf("language=en")?e+"&language="+WPGlobusGutenberg.language:e.replace("language=en","language="+WPGlobusGutenberg.language),D('input[name="_wp_original_http_referer"]').attr("value",e))},setTabs:function(){if(0!=WPGlobusGutenberg.tabs.length){I.oldLanguageSelector=!0;var t=setInterval(function(){var e=D(".edit-post-header__settings");1==e.length&&(e.before(WPGlobusGutenberg.tabs),clearInterval(t))},200)}else I.WPGlobusSwitcherPlugin()},setSelectorStatus:function(){if(I.isOldLanguageSelector()){D(".wpglobus-gutenberg-selector-box").css({opacity:"0.2"}).attr("onclick","return false;"),I.languageSelectorEnabled=!1;var e=setInterval(function(){if(0==D(".is-saving").length){if(clearInterval(e),WPGlobusGutenberg.pagenow==WPGlobusGutenberg.postNewPage&&-1!=location.pathname.indexOf(WPGlobusGutenberg.postEditPage))return WPGlobusGutenberg.pagenow=WPGlobusGutenberg.postEditPage,D(".wpglobus-gutenberg-selector-box").css({opacity:"1"}).attr("onclick",""),void I.reloadPage();I.languageSelectorEnabled=!0,D(".wpglobus-gutenberg-selector-box").css({opacity:"1"}).attr("onclick","")}},400)}},reloadPage:function(){D(".wpglobus-selector-grid").css({"grid-template-columns":"10% 90%"}),D(".wpglobus-gutenberg-selector-text").text(WPGlobusGutenberg.i18n.reload),function e(){D(".wpglobus-gutenberg-selector").fadeOut(500).fadeIn(500,e)}(),setTimeout(function(){location.reload()},500)},attachListeners:function(){I.isOldLanguageSelector()&&(D(document).on("mouseenter",".wpglobus-gutenberg-selector",function(e){I.languageSelectorEnabled&&(D(".wpglobus-gutenberg-selector-dropdown").css({display:"block"}),I.languageSelectorBoxDelta=e.screenY,D(".edit-post-header").css({"z-index":"100000"}),D(".wpglobus-gutenberg-selector-box").css({"z-index":"100001"}))}),D(document).on("mouseleave",".wpglobus-gutenberg-selector",function(e){0!=I.languageSelectorBoxDelta&&e.screenY-I.languageSelectorBoxDelta<=0&&(D(".wpglobus-gutenberg-selector-dropdown").css({display:"none"}),D(".edit-post-header").css({"z-index":"9989"}),D(".wpglobus-gutenberg-selector-box").css({"z-index":"100"}))}),D(document).on("mouseleave",".wpglobus-gutenberg-selector-dropdown",function(e){D(".wpglobus-gutenberg-selector-dropdown").css({display:"none"}),D(".edit-post-header").css({"z-index":"9989"}),D(".wpglobus-gutenberg-selector-box").css({"z-index":"10000"})}),D(document).on("click",".editor-post-save-draft",function(){I.setSelectorStatus()}),D(document).on("click",".editor-post-publish-button",function(){I.setSelectorStatus()}))},WPGlobusSwitcherPlugin:function(){if(void 0!==wp.editPost&&void 0!==wp.plugins){var e=WPGlobusGutenberg.language,t=WPGlobusCoreData.enabled_languages,n=WPGlobusCoreData.en_language_name,o=WPGlobusGutenberg.flags_url,a="WPGlobus Switcher",s=location.href,l={};for(var u in t)-1==s.indexOf("language="+e)?l[t[u]]=s+"&language="+t[u]:l[t[u]]=s.replace("language="+e,"language="+t[u]);var r=wp.i18n.__,i=wp.element.createElement,g=wp.element.Fragment,c=wp.components.TabPanel,b=wp.compose.withState,p=wp.components.RadioControl,d=wp.components.Notice,w=wp.components.Button,m=wp.editPost.PluginSidebarMoreMenuItem,f=wp.components.PanelBody,G=wp.editPost.PluginSidebar,h=wp.plugins.registerPlugin,P=D(".components-panel__header.edit-post-sidebar-header button.components-icon-button").eq(0),v={flagOnly:'<img height="20px" width="20px" src="'+WPGlobusGutenberg.flags_url[WPGlobusGutenberg.language]+'" />',flagLanguage:'<img height="20px" width="20px" src="'+WPGlobusGutenberg.flags_url[WPGlobusGutenberg.language]+'" />&nbsp;'+WPGlobusAdmin.data.en_language_name[WPGlobusGutenberg.language],flagCode:'<img height="20px" width="20px" src="'+WPGlobusGutenberg.flags_url[WPGlobusGutenberg.language]+'" />&nbsp;'+WPGlobusGutenberg.language,languageOnly:"&nbsp;"+WPGlobusAdmin.data.en_language_name[WPGlobusGutenberg.language],languageCode:"&nbsp;"+WPGlobusGutenberg.language},_="",W="",x=I.getOptionKey("switcherButtonType");S(WPGlobusGutenberg.options[x]),W=L(),D(document).on("click",P,function(){B()});var y=b({value:W})(function(e){e.value;var t=e.setState;return i(p,{label:"",help:"Select type of switcher language button.",selected:W,className:"wpglobus-switcher-components-radio-control",options:[{label:"Flag only",value:"flagOnly"},{label:"Flag with language",value:"flagLanguage"},{label:"Flag with language code",value:"flagCode"},{label:"Language only",value:"languageOnly"},{label:"Language code",value:"languageCode"}],onChange:function(e){t({value:W=e}),T(x,e)}})});h("wpglobus-switcher",{icon:"",render:function(){return B(),i(g,{},i(m,{target:"wpglobus-switcher-sidebar",icon:"admin-site"},r("WPGlobus")),i(G,{name:"wpglobus-switcher-sidebar",title:O(),className:"wpglobus-switcher-components-panel"},i("div",{className:"wpglobus-switcher-message wpglobus-switcher-error-message hidden",style:{}},""),i(f,{className:"wpglobus-switcher-panel__body"},(e=[{name:"switcher",title:"Languages",className:"wpglobus-panel-tab wpglobus-panel-tab-selector edit-post-sidebar__panel-tab"}],WPGlobusGutenberg.isEnabledTab("options")&&e.push({name:"options",title:"Options",className:"wpglobus-panel-tab wpglobus-panel-tab-options edit-post-sidebar__panel-tab"}),i(c,{name:"WPGlobusSwitcherTabPanel",className:"wpglobus-tab-panel",activeClass:"is-active",tabs:e},C)))));var e}})}function S(e){_=e=e||"flagLanguage"}function L(){return _}function O(){return a}function N(e){void 0===e&&(e=!0);var t=document.querySelectorAll(".wpglobus-switcher-components-radio-control .components-radio-control__input");0!=t.length&&(e?(t.forEach(function(e){e.classList.add(e.value),e.classList.remove("wpglobus-switcher-pulsate-radio")}),document.querySelector(".wpglobus-switcher-components-radio-control ."+W).classList.add("wpglobus-switcher-pulsate-radio")):t.forEach(function(e){e.classList.remove("wpglobus-switcher-pulsate-radio")}))}function k(e,t){void 0===e||I.noticeOn||(I.noticeOn=!0,e.innerText=t,e.classList.remove("hidden"),setTimeout(function(){e.classList.add("hidden"),I.noticeOn=!1},3e3))}function T(e,t){t=t||"",x==(e=e||"")&&(N(!0),function(e,t){if(""==(e=e||""))return;var n={sender:"WPGlobusGutenberg",_action:"saveOption",is_admin:1};return n.counter=I.counter++,n.options={},n.options[e]=t,wp.ajax.post(WPGlobusGutenberg.wpglobusAjax,{data:n})}(e,t).then(function(e){"success"==e.result&&(S(t),B(WPGlobusGutenberg.options[x]=t))}).fail(function(e){var t=document.getElementsByClassName("wpglobus-switcher-error-message");void 0!==t[0]&&("error"==e.result?k(t[0],e.message):400==e.status&&k(t[0],"Error: "+e.status+" ("+e.statusText+")"),W=L());var n=document.getElementsByClassName("wpglobus-panel-tab-options");void 0!==n[0]&&-1!=n[0].classList.value.indexOf("is-active")&&n[0].click()}).always(function(){N(!1)}))}function E(e){return void 0===v[e]&&(e=_),v[e]}function B(n){void 0!==n&&void 0!==v[n]||(n=_),setTimeout(function(){var e=document.querySelector('[aria-label="'+O()+'"]');if(null!=e)if(void 0===e.dataset.status){var t=e.innerHTML;e.innerHTML=t+E(n),e.dataset.status="init"}else e.innerHTML=E(n),e.dataset.status="changed"},300)}function C(e){return"switcher"==e.name?i("div",{className:"wpglobus-tab-content wpglobus-selector-tab-content"},i(d,{className:"wpglobus-switcher-panel__notice",status:"informational",isDismissible:!1},r("Select language")),i("div",{className:"wpglobus-switcher-panel__switcher-box"},WPGlobusGutenberg.pagenow==WPGlobusGutenberg.postNewPage?i("div",{style:{marginBottom:"20px"},className:"wpglobus-switcher-panel__switcher-notice"},WPGlobusGutenberg.i18n.save_post):i("ul",{className:"language-list"},t.map(function(e){return i("li",{key:e,className:"language-item"},i("img",{style:{marginRight:"7px"},className:"wpglobus-switcher-panel__flag",height:"20px",width:"20px",src:o[e]}),i(w,{href:l[e],isSmall:!0,isPrimary:!0},n[e]))}))),i(w,{className:"wpglobus-switcher-panel__button-link wpglobus-switcher-panel__info",href:WPGlobusGutenberg.store_link,isLink:!0,target:"_blank"},r("WPGlobus Premium Add-ons")),i(w,{className:"wpglobus-switcher-panel__button-link wpglobus-switcher-panel__settings-link",href:WPGlobusGutenberg.block_editor_tab_url,isLink:!0},r("Settings"))):"options"==e.name?i("div",{className:"wpglobus-tab-content wpglobus-options-tab-content"},i(d,{className:"wpglobus-switcher-panel__notice",status:"informational",isDismissible:!1},r("Select type")),i(y,null)):void 0}}};WPGlobusGutenberg=D.extend({},WPGlobusGutenberg,I),WPGlobusGutenberg.init()});
1
+ "use strict";jQuery(document).ready(function(D){var I={counter:0,noticeOn:!1,initDone:!1,languageSelectorBoxDelta:0,oldLanguageSelector:!1,languageSelectorEnabled:!0,parseBool:function(e){return!/^(false|0)$/i.test(e)&&!!e},getCounter:function(){return I.counter},getOptionKey:function(e){return e=e||"",WPGlobusGutenberg.keyOption[e]},getOptions:function(){return WPGlobusGutenberg.options},isOldLanguageSelector:function(){return I.oldLanguageSelector},isPostDisabled:function(){return WPGlobusGutenberg.__post.disabled},isEnabledTab:function(e){void 0===e&&(e="options");var t=!1;return"options"==e&&I.parseBool(WPGlobusGutenberg.enabledOptionsTab)&&(t=!0),t},init:function(){WPGlobusGutenberg.yoastSeo=I.parseBool(WPGlobusGutenberg.yoastSeo),I.isPostDisabled()||(I.initListeners(),I.setTabs(),I.formHandler(),I.attachListeners())},initListeners:function(){WPGlobusGutenberg.yoastSeo&&1==D(".yoast.wpseo-metabox").length&&D(window).on("beforeunload",function(e){e.stopImmediatePropagation()})},formHandler:function(){var e=D(".metabox-base-form #referredby").attr("value");void 0!==e&&(e=-1==e.indexOf("language=en")?e+"&language="+WPGlobusGutenberg.language:e.replace("language=en","language="+WPGlobusGutenberg.language),D(".metabox-base-form #referredby").attr("value",e)),void 0!==(e=D('input[name="_wp_original_http_referer"]').attr("value"))&&(e=-1==e.indexOf("language=en")?e+"&language="+WPGlobusGutenberg.language:e.replace("language=en","language="+WPGlobusGutenberg.language),D('input[name="_wp_original_http_referer"]').attr("value",e))},setTabs:function(){if(0!=WPGlobusGutenberg.tabs.length){I.oldLanguageSelector=!0;var t=setInterval(function(){var e=D(".edit-post-header__settings");1==e.length&&(e.before(WPGlobusGutenberg.tabs),clearInterval(t))},200)}else I.WPGlobusSwitcherPlugin()},setSelectorStatus:function(){if(I.isOldLanguageSelector()){D(".wpglobus-gutenberg-selector-box").css({opacity:"0.2"}).attr("onclick","return false;"),I.languageSelectorEnabled=!1;var e=setInterval(function(){if(0==D(".is-saving").length){if(clearInterval(e),WPGlobusGutenberg.pagenow==WPGlobusGutenberg.postNewPage&&-1!=location.pathname.indexOf(WPGlobusGutenberg.postEditPage))return WPGlobusGutenberg.pagenow=WPGlobusGutenberg.postEditPage,D(".wpglobus-gutenberg-selector-box").css({opacity:"1"}).attr("onclick",""),void I.reloadPage();I.languageSelectorEnabled=!0,D(".wpglobus-gutenberg-selector-box").css({opacity:"1"}).attr("onclick","")}},400)}},reloadPage:function(){D(".wpglobus-selector-grid").css({"grid-template-columns":"10% 90%"}),D(".wpglobus-gutenberg-selector-text").text(WPGlobusGutenberg.i18n.reload),function e(){D(".wpglobus-gutenberg-selector").fadeOut(500).fadeIn(500,e)}(),setTimeout(function(){location.reload()},500)},attachListeners:function(){I.isOldLanguageSelector()&&(D(document).on("mouseenter",".wpglobus-gutenberg-selector",function(e){I.languageSelectorEnabled&&(D(".wpglobus-gutenberg-selector-dropdown").css({display:"block"}),I.languageSelectorBoxDelta=e.screenY,D(".edit-post-header").css({"z-index":"100000"}),D(".wpglobus-gutenberg-selector-box").css({"z-index":"100001"}))}),D(document).on("mouseleave",".wpglobus-gutenberg-selector",function(e){0!=I.languageSelectorBoxDelta&&e.screenY-I.languageSelectorBoxDelta<=0&&(D(".wpglobus-gutenberg-selector-dropdown").css({display:"none"}),D(".edit-post-header").css({"z-index":"9989"}),D(".wpglobus-gutenberg-selector-box").css({"z-index":"100"}))}),D(document).on("mouseleave",".wpglobus-gutenberg-selector-dropdown",function(e){D(".wpglobus-gutenberg-selector-dropdown").css({display:"none"}),D(".edit-post-header").css({"z-index":"9989"}),D(".wpglobus-gutenberg-selector-box").css({"z-index":"10000"})}),D(document).on("click",".editor-post-save-draft",function(){I.setSelectorStatus()}),D(document).on("click",".editor-post-publish-button",function(){I.setSelectorStatus()}))},WPGlobusSwitcherPlugin:function(){if(void 0!==wp.editPost&&void 0!==wp.plugins){var e=WPGlobusGutenberg.language,t=WPGlobusCoreData.enabled_languages,n=WPGlobusCoreData.en_language_name,o=WPGlobusGutenberg.flags_url,a="WPGlobus Switcher",s=location.href,l={};for(var u in t)-1==s.indexOf("language="+e)?l[t[u]]=s+"&language="+t[u]:l[t[u]]=s.replace("language="+e,"language="+t[u]);var i=wp.i18n.__,r=wp.element.createElement,g=wp.element.Fragment,c=wp.components.TabPanel,b=wp.compose.withState,p=wp.components.RadioControl,d=wp.components.Notice,w=wp.components.Button,m=wp.editPost.PluginSidebarMoreMenuItem,f=wp.components.PanelBody,G=wp.editPost.PluginSidebar,h=wp.plugins.registerPlugin,P=D(".components-panel__header.edit-post-sidebar-header button.components-icon-button").eq(0),v={flagOnly:'<img height="20px" width="20px" src="'+WPGlobusGutenberg.flags_url[WPGlobusGutenberg.language]+'" />',flagLanguage:'<img height="20px" width="20px" src="'+WPGlobusGutenberg.flags_url[WPGlobusGutenberg.language]+'" />&nbsp;'+WPGlobusAdmin.data.en_language_name[WPGlobusGutenberg.language],flagCode:'<img height="20px" width="20px" src="'+WPGlobusGutenberg.flags_url[WPGlobusGutenberg.language]+'" />&nbsp;'+WPGlobusGutenberg.language,languageOnly:"&nbsp;"+WPGlobusAdmin.data.en_language_name[WPGlobusGutenberg.language],languageCode:"&nbsp;"+WPGlobusGutenberg.language},_="",W="",x=I.getOptionKey("switcherButtonType");S(WPGlobusGutenberg.options[x]),W=L(),D(document).on("click",P,function(){B()});var y=b({value:W})(function(e){e.value;var t=e.setState;return r(p,{label:"",help:"Select type of switcher language button.",selected:W,className:"wpglobus-switcher-components-radio-control",options:[{label:"Flag only",value:"flagOnly"},{label:"Flag with language",value:"flagLanguage"},{label:"Flag with language code",value:"flagCode"},{label:"Language only",value:"languageOnly"},{label:"Language code",value:"languageCode"}],onChange:function(e){t({value:W=e}),T(x,e)}})});h("wpglobus-switcher",{icon:"",render:function(){return B(),r(g,{},r(m,{target:"wpglobus-switcher-sidebar",icon:"admin-site"},i("WPGlobus")),r(G,{name:"wpglobus-switcher-sidebar",title:O(),className:"wpglobus-switcher-components-panel"},r("div",{className:"wpglobus-switcher-message wpglobus-switcher-error-message hidden",style:{}},""),r(f,{className:"wpglobus-switcher-panel__body"},(e=[{name:"switcher",title:"Languages",className:"wpglobus-panel-tab wpglobus-panel-tab-selector edit-post-sidebar__panel-tab"}],WPGlobusGutenberg.isEnabledTab("options")&&e.push({name:"options",title:"Options",className:"wpglobus-panel-tab wpglobus-panel-tab-options edit-post-sidebar__panel-tab"}),r(c,{name:"WPGlobusSwitcherTabPanel",className:"wpglobus-tab-panel",activeClass:"is-active",tabs:e},C)))));var e}})}function S(e){_=e=e||"flagLanguage"}function L(){return _}function O(){return a}function N(e){void 0===e&&(e=!0);var t=document.querySelectorAll(".wpglobus-switcher-components-radio-control .components-radio-control__input");if(0!=t.length)if(e){t.forEach(function(e){e.classList.add(e.value),e.classList.remove("wpglobus-switcher-pulsate-radio"),e.classList.add("wpglobus-switcher-pulsate-radio-off")});var n=document.querySelector(".wpglobus-switcher-components-radio-control ."+W);n.classList.remove("wpglobus-switcher-pulsate-radio-off"),n.classList.add("wpglobus-switcher-pulsate-radio")}else t.forEach(function(e){e.classList.remove("wpglobus-switcher-pulsate-radio"),e.classList.remove("wpglobus-switcher-pulsate-radio-off"),e.classList.add("wpglobus-switcher-pulsate-radio-on")})}function k(e,t){void 0===e||I.noticeOn||(I.noticeOn=!0,e.innerText=t,e.classList.remove("hidden"),setTimeout(function(){e.classList.add("hidden"),I.noticeOn=!1},3e3))}function T(e,t){t=t||"",x==(e=e||"")&&(N(!0),function(e,t){if(""==(e=e||""))return;var n={sender:"WPGlobusGutenberg",_action:"saveOption",is_admin:1};return n.counter=I.counter++,n.options={},n.options[e]=t,wp.ajax.post(WPGlobusGutenberg.wpglobusAjax,{data:n})}(e,t).then(function(e){"success"==e.result&&(S(t),B(WPGlobusGutenberg.options[x]=t))}).fail(function(e){var t=document.getElementsByClassName("wpglobus-switcher-error-message");void 0!==t[0]&&("error"==e.result?k(t[0],e.message):400==e.status&&k(t[0],"Error: "+e.status+" ("+e.statusText+")"),W=L());var n=document.getElementsByClassName("wpglobus-panel-tab-options");void 0!==n[0]&&-1!=n[0].classList.value.indexOf("is-active")&&n[0].click()}).always(function(){N(!1)}))}function E(e){return void 0===v[e]&&(e=_),v[e]}function B(n){void 0!==n&&void 0!==v[n]||(n=_),setTimeout(function(){var e=document.querySelector('[aria-label="'+O()+'"]');if(null!=e)if(void 0===e.dataset.status){var t=e.innerHTML;e.innerHTML=t+E(n),e.dataset.status="init"}else e.innerHTML=E(n),e.dataset.status="changed"},300)}function C(e){return"switcher"==e.name?r("div",{className:"wpglobus-tab-content wpglobus-selector-tab-content"},r(d,{className:"wpglobus-switcher-panel__notice",status:"informational",isDismissible:!1},i("Select language")),r("div",{className:"wpglobus-switcher-panel__switcher-box"},WPGlobusGutenberg.pagenow==WPGlobusGutenberg.postNewPage?r("div",{style:{marginBottom:"20px"},className:"wpglobus-switcher-panel__switcher-notice"},WPGlobusGutenberg.i18n.save_post):r("ul",{className:"language-list"},t.map(function(e){return r("li",{key:e,className:"language-item"},r("img",{style:{marginRight:"7px"},className:"wpglobus-switcher-panel__flag",height:"20px",width:"20px",src:o[e]}),r(w,{href:l[e],isSmall:!0,isPrimary:!0},n[e]))}))),r(w,{className:"wpglobus-switcher-panel__button-link wpglobus-switcher-panel__info",href:WPGlobusGutenberg.store_link,isLink:!0,target:"_blank"},i("WPGlobus Premium Add-ons")),r(w,{className:"wpglobus-switcher-panel__button-link wpglobus-switcher-panel__settings-link",href:WPGlobusGutenberg.block_editor_tab_url,isLink:!0},i("Settings"))):"options"==e.name?r("div",{className:"wpglobus-tab-content wpglobus-options-tab-content"},r(d,{className:"wpglobus-switcher-panel__notice",status:"informational",isDismissible:!1},i("Select type")),r(y,null)):void 0}}};WPGlobusGutenberg=D.extend({},WPGlobusGutenberg,I),WPGlobusGutenberg.init()});
includes/class-wpglobus.php CHANGED
@@ -562,74 +562,11 @@ class WPGlobus {
562
  'on_add_wp_editors',
563
  ), 10 );
564
 
565
- /**
566
- * Moved to another place.
567
- *
568
- * @since 1.9.17
569
- * @todo remove after test.
570
- */
571
- /*
572
- add_action( 'edit_form_after_editor', array(
573
- $this,
574
- 'on_add_language_tabs'
575
- ) );
576
- // */
577
-
578
- /**
579
- * Moved to another place.
580
- *
581
- * @since 1.9.17
582
- * @todo remove after test.
583
- */
584
- /*
585
- add_action( 'edit_form_after_title', array(
586
- $this,
587
- 'on_add_title_fields'
588
- ) );
589
- // */
590
-
591
- /**
592
- * Moved to another place.
593
- *
594
- * @since 1.9.17
595
- * @todo remove after test.
596
- */
597
- /*
598
- add_action( 'admin_print_scripts', array(
599
- $this,
600
- 'on_admin_scripts'
601
- ) );
602
- // */
603
-
604
  add_action( 'admin_print_scripts', array(
605
  $this,
606
  'on_admin_enqueue_scripts',
607
  ), 99 );
608
 
609
- /**
610
- * Moved to another place.
611
- *
612
- * @since 1.9.17
613
- * @todo remove after test.
614
- */
615
- // add_action( 'admin_footer', array(
616
- // $this,
617
- // 'on__admin_footer'
618
- // ) );
619
-
620
- /**
621
- * @see browser tab on post.php page.
622
- *
623
- * Moved to another place.
624
- * @since 1.9.17
625
- * @todo remove after test.
626
- *
627
- */
628
- // add_filter( 'admin_title', array(
629
- // $this,
630
- // 'on__admin_title'
631
- // ), 10, 2 );
632
-
633
  if (
634
  $this->vendors_scripts['AIOSEOP'] && WPGlobus_WP::is_pagenow( array(
635
  'post.php',
@@ -3569,6 +3506,8 @@ class WPGlobus {
3569
  $link_class[] = 'ui-state-disabled';
3570
  $link_style['cursor'] = 'cursor:not-allowed';
3571
  $link_title = esc_html__( 'Save draft before using extra language.', 'wpglobus' );
 
 
3572
  }
3573
 
3574
  if (
@@ -3598,7 +3537,13 @@ class WPGlobus {
3598
  $_link_style = $link_style;
3599
  $_link_title = $link_title;
3600
  $_onclick = 'onclick="return false;"';
 
 
3601
  }
 
 
 
 
3602
  ?>
3603
  <li id="link-tab-<?php echo esc_attr( $tab_suffix ); ?>"
3604
  data-language="<?php echo esc_attr( $language ); ?>"
562
  'on_add_wp_editors',
563
  ), 10 );
564
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
565
  add_action( 'admin_print_scripts', array(
566
  $this,
567
  'on_admin_enqueue_scripts',
568
  ), 99 );
569
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
570
  if (
571
  $this->vendors_scripts['AIOSEOP'] && WPGlobus_WP::is_pagenow( array(
572
  'post.php',
3506
  $link_class[] = 'ui-state-disabled';
3507
  $link_style['cursor'] = 'cursor:not-allowed';
3508
  $link_title = esc_html__( 'Save draft before using extra language.', 'wpglobus' );
3509
+ } else {
3510
+ $link_class['tab-link'] = 'wpglobus-tab-link';
3511
  }
3512
 
3513
  if (
3537
  $_link_style = $link_style;
3538
  $_link_title = $link_title;
3539
  $_onclick = 'onclick="return false;"';
3540
+ } else {
3541
+ $_link_class = $link_class;
3542
  }
3543
+
3544
+ if ( WPGlobus::Config()->language === $language ) {
3545
+ $_link_class['tab-link-active'] = 'wpglobus-tab-link-active';
3546
+ }
3547
  ?>
3548
  <li id="link-tab-<?php echo esc_attr( $tab_suffix ); ?>"
3549
  data-language="<?php echo esc_attr( $language ); ?>"
includes/css/wpglobus-admin-tabs.css CHANGED
@@ -1,3 +1,3 @@
1
- .wpglobus-wp-admin #post-body .wpglobus-post-body-tabs .ui-widget-content input.like-default-title{padding:3px 8px;font-size:1.7em;line-height:100%;width:100%;outline:none}.wpglobus-wp-admin .wpglobus-post-body-tabs .titlediv{margin-bottom:20px}.wpglobus-wp-admin .wpglobus-post-body-tabs .mceIframeContainer iframe{min-height:150px !important}.wpglobus-wp-admin .wpglobus-post-body-tabs .wp-editor-container{border:1px solid #ccc}.wpglobus-wp-admin .wpglobus-post-body-tabs .titlediv-wpglobus{position:relative}.wpglobus-wp-admin .wpglobus-post-body-tabs .tabs-nav ul,.wpglobus-wp-admin #wpglobus-aioseop-tabs .tabs-nav ul,.wpglobus-wp-admin #wpglobus-wpseo-tabs .tabs-nav ul,.wpglobus-wp-admin .wpglobus-wpseo-tabs .tabs-nav ul,.wpglobus-wp-admin .wpglobus-taxonomy-tabs .tabs-nav ul{list-style-type:none;margin:0 10px;padding:0}.wpglobus-wp-admin .wpglobus-post-body-tabs li a,.wpglobus-wp-admin .wpglobus-post-body-tabs ul li,.wpglobus-wp-admin #wpglobus-aioseop-tabs li a,.wpglobus-wp-admin #wpglobus-aioseop-tabs ul li,.wpglobus-wp-admin #wpglobus-wpseo-tabs li a,.wpglobus-wp-admin #wpglobus-wpseo-tabs ul li,.wpglobus-wp-admin .wpglobus-wpseo-tabs li a,.wpglobus-wp-admin .wpglobus-wpseo-tabs ul li,.wpglobus-wp-admin .wpglobus-taxonomy-tabs li a,.wpglobus-wp-admin .wpglobus-taxonomy-tabs ul li{float:left;margin:0}.wpglobus-wp-admin .wpglobus-post-body-tabs li.ui-state-default,.wpglobus-wp-admin #wpglobus-aioseop-tabs li.ui-state-default,.wpglobus-wp-admin #wpglobus-wpseo-tabs li.ui-state-default,.wpglobus-wp-admin .wpglobus-wpseo-tabs li.ui-state-default,.wpglobus-wp-admin .wpglobus-taxonomy-tabs li.ui-state-default{border:0;background:transparent}.wpglobus-wp-admin .wpglobus-post-body-tabs ul li.ui-state-default a,.wpglobus-wp-admin #wpglobus-aioseop-tabs ul li.ui-state-default a,.wpglobus-wp-admin #wpglobus-wpseo-tabs ul li.ui-state-default a,.wpglobus-wp-admin .wpglobus-wpseo-tabs ul li.ui-state-default a,.wpglobus-wp-admin .wpglobus-taxonomy-tabs ul li.ui-state-default a{display:block;color:#777;background:#ebebeb;border:1px solid #e5e5e5;border-bottom:0;font-weight:normal;height:2em;line-height:2em;margin-right:5px;padding:0 10px;text-decoration:none}.wpglobus-wp-admin .wpglobus-post-body-tabs ul li.ui-state-active a,.wpglobus-wp-admin #wpglobus-aioseop-tabs ul li.ui-state-active a,.wpglobus-wp-admin #wpglobus-wpseo-tabs ul li.ui-state-active a,.wpglobus-wp-admin .wpglobus-wpseo-tabs ul li.ui-state-active a,.wpglobus-wp-admin .wpglobus-taxonomy-tabs ul li.ui-state-active a{background:#fff;border:1px solid #e5e5e5;border-bottom-color:#fff;color:#000;margin-bottom:-1px;font-weight:700}.wpglobus-wp-admin .wpglobus-post-body-tabs ul li a:hover,.wpglobus-wp-admin #wpglobus-aioseop-tabs ul li a:hover,.wpglobus-wp-admin #wpglobus-wpseo-tabs ul li a:hover,.wpglobus-wp-admin .wpglobus-wpseo-tabs ul li a:hover,.wpglobus-wp-admin .wpglobus-taxonomy-tabs ul li a:hover{color:#000}.wpglobus-wp-admin .wpglobus-post-body-tabs ul li a:focus,.wpglobus-wp-admin #wpglobus-aioseop-tabs ul li a:focus,.wpglobus-wp-admin #wpglobus-wpseo-tabs ul li a:focus,.wpglobus-wp-admin .wpglobus-wpseo-tabs ul li a:focus,.wpglobus-wp-admin .wpglobus-taxonomy-tabs ul li a:focus{box-shadow:none}.wpglobus-wp-admin .wpglobus-post-body-tabs .wpglobus-post-body-tabs-list,.wpglobus-wp-admin .wpglobus-post-body-tabs .wpglobus-wpseo-tabs-list,.wpglobus-wp-admin .wpglobus-post-body-tabs .wpglobus-aioseop-tabs-list,.wpglobus-wp-admin #wpglobus-aioseop-tabs .wpglobus-post-body-tabs-list,.wpglobus-wp-admin #wpglobus-aioseop-tabs .wpglobus-wpseo-tabs-list,.wpglobus-wp-admin #wpglobus-aioseop-tabs .wpglobus-aioseop-tabs-list,.wpglobus-wp-admin #wpglobus-wpseo-tabs .wpglobus-post-body-tabs-list,.wpglobus-wp-admin #wpglobus-wpseo-tabs .wpglobus-wpseo-tabs-list,.wpglobus-wp-admin #wpglobus-wpseo-tabs .wpglobus-aioseop-tabs-list,.wpglobus-wp-admin .wpglobus-wpseo-tabs .wpglobus-post-body-tabs-list,.wpglobus-wp-admin .wpglobus-wpseo-tabs .wpglobus-wpseo-tabs-list,.wpglobus-wp-admin .wpglobus-wpseo-tabs .wpglobus-aioseop-tabs-list,.wpglobus-wp-admin .wpglobus-taxonomy-tabs .wpglobus-post-body-tabs-list,.wpglobus-wp-admin .wpglobus-taxonomy-tabs .wpglobus-wpseo-tabs-list,.wpglobus-wp-admin .wpglobus-taxonomy-tabs .wpglobus-aioseop-tabs-list{border:none;border-bottom:1px solid #dddddd;background:transparent;min-height:3em}.wpglobus-wp-admin .wpglobus-post-body-tabs .ui-corner-all,.wpglobus-wp-admin #wpglobus-aioseop-tabs .ui-corner-all,.wpglobus-wp-admin #wpglobus-wpseo-tabs .ui-corner-all,.wpglobus-wp-admin .wpglobus-wpseo-tabs .ui-corner-all,.wpglobus-wp-admin .wpglobus-taxonomy-tabs .ui-corner-all{border-bottom-right-radius:0;border-bottom-left-radius:0;border-top-right-radius:0;border-top-left-radius:0}.wpglobus-wp-admin .wpglobus-post-body-tabs.ui-widget-content,.wpglobus-wp-admin #wpglobus-aioseop-tabs.ui-widget-content,.wpglobus-wp-admin #wpglobus-wpseo-tabs.ui-widget-content,.wpglobus-wp-admin .wpglobus-wpseo-tabs.ui-widget-content,.wpglobus-wp-admin .wpglobus-taxonomy-tabs.ui-widget-content{border:none;background:transparent;color:inherit}.wpglobus-wp-admin .wpglobus-post-body-tabs.ui-widget,.wpglobus-wp-admin #wpglobus-aioseop-tabs.ui-widget,.wpglobus-wp-admin #wpglobus-wpseo-tabs.ui-widget,.wpglobus-wp-admin .wpglobus-wpseo-tabs.ui-widget,.wpglobus-wp-admin .wpglobus-taxonomy-tabs.ui-widget{font-family:inherit;font-size:inherit}.wpglobus-wp-admin .wpglobus-post-body-tabs.ui-tabs,.wpglobus-wp-admin #wpglobus-aioseop-tabs.ui-tabs,.wpglobus-wp-admin #wpglobus-wpseo-tabs.ui-tabs,.wpglobus-wp-admin .wpglobus-wpseo-tabs.ui-tabs,.wpglobus-wp-admin .wpglobus-taxonomy-tabs.ui-tabs{padding:inherit}.wpglobus-wp-admin .wpglobus-post-body-tabs.ui-tabs .ui-tabs-nav,.wpglobus-wp-admin #wpglobus-aioseop-tabs.ui-tabs .ui-tabs-nav,.wpglobus-wp-admin #wpglobus-wpseo-tabs.ui-tabs .ui-tabs-nav,.wpglobus-wp-admin .wpglobus-wpseo-tabs.ui-tabs .ui-tabs-nav,.wpglobus-wp-admin .wpglobus-taxonomy-tabs.ui-tabs .ui-tabs-nav{margin:0 0 1em 0;padding:0}.wpglobus-wp-admin .wpglobus-post-body-tabs.ui-tabs .ui-tabs-panel,.wpglobus-wp-admin #wpglobus-aioseop-tabs.ui-tabs .ui-tabs-panel,.wpglobus-wp-admin #wpglobus-wpseo-tabs.ui-tabs .ui-tabs-panel,.wpglobus-wp-admin .wpglobus-wpseo-tabs.ui-tabs .ui-tabs-panel,.wpglobus-wp-admin .wpglobus-taxonomy-tabs.ui-tabs .ui-tabs-panel{border-width:0;padding:inherit;background:inherit}.wpglobus-wp-admin #edittag #cat-tabs .form-field{margin:0 0 10px;padding:8px}.wpglobus-wp-admin #edittag #cat-tabs .form-field p{font-size:12px;font-style:italic;font-family:sans-serif;color:#666;margin:4px 0 5px}.wpglobus-wp-admin #edittag #cat-tabs label{display:block}.wpglobus-wp-admin .post-excerpt{margin:0;height:4em;width:98%}.wpglobus-wp-admin .titlediv-wpglobus .title_wpglobus{background-color:#fff;font-size:1.7em;height:1.7em;line-height:100%;margin:0;outline:-moz-use-text-color none 0;padding:3px 8px;width:100%}.wpglobus-wp-admin .postdivrich-wpglobus .wp-editor-tools{background-color:#f1f1f1;padding-top:20px}.wpglobus-wp-admin .wpglobus-edit-slug-box{height:24px}.wpglobus-wp-admin #wpglobus-wpseo-tabs .wpglobus-wpseosnippet{font-family:Arial, Helvetica, sans-serif;font-style:normal}.wpglobus-wp-admin #wpglobus-wpseo-tabs .wpglobus-wpseosnippet .title{color:#1e0fbe;display:block;font-size:18px !important;line-height:1.2;overflow-x:hidden;overflow-y:hidden;text-overflow:ellipsis;white-space:nowrap;width:512px}.wpglobus-wp-admin #wpglobus-wpseo-tabs .wpglobus-wpseosnippet .url{color:#006621;font-size:13px;line-height:16px}.wpglobus-wp-admin #wpglobus-wpseo-tabs .wpglobus-wpseosnippet .desc{font-size:small;line-height:1.4;word-wrap:break-word}.wpglobus-wp-admin #wpglobus-wpseo-tabs .wpglobus-focuskwresults ul{margin:0}.wpglobus-wp-admin #wpglobus-wpseo-tabs .wpglobus-focuskwresults li{float:none !important;list-style-type:disc;margin:0 0 0 20px !important}.wpglobus-wp-admin #wpglobus-wpseo-tabs .wpglobus-focuskwresults li,.wpglobus-wp-admin #wpglobus-wpseo-tabs .wpglobus-focuskwresults p{font-size:13px !important}.wpglobus-wp-admin #wpglobus-wpseo-tabs .wpglobus-snippet_container [contenteditable=true]:hover{background:url(images/edit.svg) right top no-repeat #bbdefb;cursor:pointer}.wpglobus-wp-admin .wpglobus-wpseo-meta-section .wpseotab .yoast-section ul[role="list"] li,.wpglobus-wp-admin .wpglobus-wpseo-meta-section .wpseotab .yoast-section ul[role="list"] li a{float:none !important}
2
 
3
  /*# sourceMappingURL=wpglobus-admin-tabs.css.map */
1
+ .wpglobus-wp-admin #post-body .wpglobus-post-body-tabs .ui-widget-content input.like-default-title{padding:3px 8px;font-size:1.7em;line-height:100%;width:100%;outline:none}.wpglobus-wp-admin .wpglobus-post-body-tabs .titlediv{margin-bottom:20px}.wpglobus-wp-admin .wpglobus-post-body-tabs .mceIframeContainer iframe{min-height:150px !important}.wpglobus-wp-admin .wpglobus-post-body-tabs .wp-editor-container{border:1px solid #ccc}.wpglobus-wp-admin .wpglobus-post-body-tabs .titlediv-wpglobus{position:relative}.wpglobus-wp-admin .wpglobus-post-body-tabs .tabs-nav ul,.wpglobus-wp-admin #wpglobus-aioseop-tabs .tabs-nav ul,.wpglobus-wp-admin #wpglobus-wpseo-tabs .tabs-nav ul,.wpglobus-wp-admin .wpglobus-wpseo-tabs .tabs-nav ul,.wpglobus-wp-admin .wpglobus-taxonomy-tabs .tabs-nav ul{list-style-type:none;margin:0 10px;padding:0}.wpglobus-wp-admin .wpglobus-post-body-tabs li a,.wpglobus-wp-admin .wpglobus-post-body-tabs ul li,.wpglobus-wp-admin #wpglobus-aioseop-tabs li a,.wpglobus-wp-admin #wpglobus-aioseop-tabs ul li,.wpglobus-wp-admin #wpglobus-wpseo-tabs li a,.wpglobus-wp-admin #wpglobus-wpseo-tabs ul li,.wpglobus-wp-admin .wpglobus-wpseo-tabs li a,.wpglobus-wp-admin .wpglobus-wpseo-tabs ul li,.wpglobus-wp-admin .wpglobus-taxonomy-tabs li a,.wpglobus-wp-admin .wpglobus-taxonomy-tabs ul li{float:left;margin:0}.wpglobus-wp-admin .wpglobus-post-body-tabs li.ui-state-default,.wpglobus-wp-admin #wpglobus-aioseop-tabs li.ui-state-default,.wpglobus-wp-admin #wpglobus-wpseo-tabs li.ui-state-default,.wpglobus-wp-admin .wpglobus-wpseo-tabs li.ui-state-default,.wpglobus-wp-admin .wpglobus-taxonomy-tabs li.ui-state-default{border:0;background:transparent}.wpglobus-wp-admin .wpglobus-post-body-tabs ul li.ui-state-default a,.wpglobus-wp-admin #wpglobus-aioseop-tabs ul li.ui-state-default a,.wpglobus-wp-admin #wpglobus-wpseo-tabs ul li.ui-state-default a,.wpglobus-wp-admin .wpglobus-wpseo-tabs ul li.ui-state-default a,.wpglobus-wp-admin .wpglobus-taxonomy-tabs ul li.ui-state-default a{display:block;color:#777;background:#ebebeb;border:1px solid #e5e5e5;border-bottom:0;font-weight:normal;height:2em;line-height:2em;margin-right:5px;padding:0 10px;text-decoration:none}.wpglobus-wp-admin .wpglobus-post-body-tabs ul li.ui-state-active a,.wpglobus-wp-admin #wpglobus-aioseop-tabs ul li.ui-state-active a,.wpglobus-wp-admin #wpglobus-wpseo-tabs ul li.ui-state-active a,.wpglobus-wp-admin .wpglobus-wpseo-tabs ul li.ui-state-active a,.wpglobus-wp-admin .wpglobus-taxonomy-tabs ul li.ui-state-active a{background:#fff;border:1px solid #e5e5e5;border-bottom-color:#fff;color:#000;margin-bottom:-1px;font-weight:700}.wpglobus-wp-admin .wpglobus-post-body-tabs ul li a:hover,.wpglobus-wp-admin #wpglobus-aioseop-tabs ul li a:hover,.wpglobus-wp-admin #wpglobus-wpseo-tabs ul li a:hover,.wpglobus-wp-admin .wpglobus-wpseo-tabs ul li a:hover,.wpglobus-wp-admin .wpglobus-taxonomy-tabs ul li a:hover{color:#000}.wpglobus-wp-admin .wpglobus-post-body-tabs ul li a:focus,.wpglobus-wp-admin #wpglobus-aioseop-tabs ul li a:focus,.wpglobus-wp-admin #wpglobus-wpseo-tabs ul li a:focus,.wpglobus-wp-admin .wpglobus-wpseo-tabs ul li a:focus,.wpglobus-wp-admin .wpglobus-taxonomy-tabs ul li a:focus{box-shadow:none}.wpglobus-wp-admin .wpglobus-post-body-tabs .wpglobus-post-body-tabs-list,.wpglobus-wp-admin .wpglobus-post-body-tabs .wpglobus-wpseo-tabs-list,.wpglobus-wp-admin .wpglobus-post-body-tabs .wpglobus-aioseop-tabs-list,.wpglobus-wp-admin #wpglobus-aioseop-tabs .wpglobus-post-body-tabs-list,.wpglobus-wp-admin #wpglobus-aioseop-tabs .wpglobus-wpseo-tabs-list,.wpglobus-wp-admin #wpglobus-aioseop-tabs .wpglobus-aioseop-tabs-list,.wpglobus-wp-admin #wpglobus-wpseo-tabs .wpglobus-post-body-tabs-list,.wpglobus-wp-admin #wpglobus-wpseo-tabs .wpglobus-wpseo-tabs-list,.wpglobus-wp-admin #wpglobus-wpseo-tabs .wpglobus-aioseop-tabs-list,.wpglobus-wp-admin .wpglobus-wpseo-tabs .wpglobus-post-body-tabs-list,.wpglobus-wp-admin .wpglobus-wpseo-tabs .wpglobus-wpseo-tabs-list,.wpglobus-wp-admin .wpglobus-wpseo-tabs .wpglobus-aioseop-tabs-list,.wpglobus-wp-admin .wpglobus-taxonomy-tabs .wpglobus-post-body-tabs-list,.wpglobus-wp-admin .wpglobus-taxonomy-tabs .wpglobus-wpseo-tabs-list,.wpglobus-wp-admin .wpglobus-taxonomy-tabs .wpglobus-aioseop-tabs-list{border:none;border-bottom:1px solid #dddddd;background:transparent;min-height:3em}.wpglobus-wp-admin .wpglobus-post-body-tabs .wpglobus-post-body-tabs-list .wpglobus-tab-link-active,.wpglobus-wp-admin #wpglobus-aioseop-tabs .wpglobus-post-body-tabs-list .wpglobus-tab-link-active,.wpglobus-wp-admin #wpglobus-wpseo-tabs .wpglobus-post-body-tabs-list .wpglobus-tab-link-active,.wpglobus-wp-admin .wpglobus-wpseo-tabs .wpglobus-post-body-tabs-list .wpglobus-tab-link-active,.wpglobus-wp-admin .wpglobus-taxonomy-tabs .wpglobus-post-body-tabs-list .wpglobus-tab-link-active{border-top:2px solid #00f}.wpglobus-wp-admin .wpglobus-post-body-tabs .ui-corner-all,.wpglobus-wp-admin #wpglobus-aioseop-tabs .ui-corner-all,.wpglobus-wp-admin #wpglobus-wpseo-tabs .ui-corner-all,.wpglobus-wp-admin .wpglobus-wpseo-tabs .ui-corner-all,.wpglobus-wp-admin .wpglobus-taxonomy-tabs .ui-corner-all{border-bottom-right-radius:0;border-bottom-left-radius:0;border-top-right-radius:0;border-top-left-radius:0}.wpglobus-wp-admin .wpglobus-post-body-tabs.ui-widget-content,.wpglobus-wp-admin #wpglobus-aioseop-tabs.ui-widget-content,.wpglobus-wp-admin #wpglobus-wpseo-tabs.ui-widget-content,.wpglobus-wp-admin .wpglobus-wpseo-tabs.ui-widget-content,.wpglobus-wp-admin .wpglobus-taxonomy-tabs.ui-widget-content{border:none;background:transparent;color:inherit}.wpglobus-wp-admin .wpglobus-post-body-tabs.ui-widget,.wpglobus-wp-admin #wpglobus-aioseop-tabs.ui-widget,.wpglobus-wp-admin #wpglobus-wpseo-tabs.ui-widget,.wpglobus-wp-admin .wpglobus-wpseo-tabs.ui-widget,.wpglobus-wp-admin .wpglobus-taxonomy-tabs.ui-widget{font-family:inherit;font-size:inherit}.wpglobus-wp-admin .wpglobus-post-body-tabs.ui-tabs,.wpglobus-wp-admin #wpglobus-aioseop-tabs.ui-tabs,.wpglobus-wp-admin #wpglobus-wpseo-tabs.ui-tabs,.wpglobus-wp-admin .wpglobus-wpseo-tabs.ui-tabs,.wpglobus-wp-admin .wpglobus-taxonomy-tabs.ui-tabs{padding:inherit}.wpglobus-wp-admin .wpglobus-post-body-tabs.ui-tabs .ui-tabs-nav,.wpglobus-wp-admin #wpglobus-aioseop-tabs.ui-tabs .ui-tabs-nav,.wpglobus-wp-admin #wpglobus-wpseo-tabs.ui-tabs .ui-tabs-nav,.wpglobus-wp-admin .wpglobus-wpseo-tabs.ui-tabs .ui-tabs-nav,.wpglobus-wp-admin .wpglobus-taxonomy-tabs.ui-tabs .ui-tabs-nav{margin:0 0 1em 0;padding:0}.wpglobus-wp-admin .wpglobus-post-body-tabs.ui-tabs .ui-tabs-panel,.wpglobus-wp-admin #wpglobus-aioseop-tabs.ui-tabs .ui-tabs-panel,.wpglobus-wp-admin #wpglobus-wpseo-tabs.ui-tabs .ui-tabs-panel,.wpglobus-wp-admin .wpglobus-wpseo-tabs.ui-tabs .ui-tabs-panel,.wpglobus-wp-admin .wpglobus-taxonomy-tabs.ui-tabs .ui-tabs-panel{border-width:0;padding:inherit;background:inherit}.wpglobus-wp-admin #edittag #cat-tabs .form-field{margin:0 0 10px;padding:8px}.wpglobus-wp-admin #edittag #cat-tabs .form-field p{font-size:12px;font-style:italic;font-family:sans-serif;color:#666;margin:4px 0 5px}.wpglobus-wp-admin #edittag #cat-tabs label{display:block}.wpglobus-wp-admin .post-excerpt{margin:0;height:4em;width:98%}.wpglobus-wp-admin .titlediv-wpglobus .title_wpglobus{background-color:#fff;font-size:1.7em;height:1.7em;line-height:100%;margin:0;outline:-moz-use-text-color none 0;padding:3px 8px;width:100%}.wpglobus-wp-admin .postdivrich-wpglobus .wp-editor-tools{background-color:#f1f1f1;padding-top:20px}.wpglobus-wp-admin .wpglobus-edit-slug-box{height:24px}.wpglobus-wp-admin #wpglobus-wpseo-tabs .wpglobus-wpseosnippet{font-family:Arial, Helvetica, sans-serif;font-style:normal}.wpglobus-wp-admin #wpglobus-wpseo-tabs .wpglobus-wpseosnippet .title{color:#1e0fbe;display:block;font-size:18px !important;line-height:1.2;overflow-x:hidden;overflow-y:hidden;text-overflow:ellipsis;white-space:nowrap;width:512px}.wpglobus-wp-admin #wpglobus-wpseo-tabs .wpglobus-wpseosnippet .url{color:#006621;font-size:13px;line-height:16px}.wpglobus-wp-admin #wpglobus-wpseo-tabs .wpglobus-wpseosnippet .desc{font-size:small;line-height:1.4;word-wrap:break-word}.wpglobus-wp-admin #wpglobus-wpseo-tabs .wpglobus-focuskwresults ul{margin:0}.wpglobus-wp-admin #wpglobus-wpseo-tabs .wpglobus-focuskwresults li{float:none !important;list-style-type:disc;margin:0 0 0 20px !important}.wpglobus-wp-admin #wpglobus-wpseo-tabs .wpglobus-focuskwresults li,.wpglobus-wp-admin #wpglobus-wpseo-tabs .wpglobus-focuskwresults p{font-size:13px !important}.wpglobus-wp-admin #wpglobus-wpseo-tabs .wpglobus-snippet_container [contenteditable=true]:hover{background:url(images/edit.svg) right top no-repeat #bbdefb;cursor:pointer}.wpglobus-wp-admin .wpglobus-wpseo-meta-section .wpseotab .yoast-section ul[role="list"] li,.wpglobus-wp-admin .wpglobus-wpseo-meta-section .wpseotab .yoast-section ul[role="list"] li a{float:none !important}
2
 
3
  /*# sourceMappingURL=wpglobus-admin-tabs.css.map */
includes/css/wpglobus-admin-tabs.css.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"sources":["wpglobus-admin-tabs.scss"],"names":[],"mappings":"AAKA,mGAII,eAAgB,CAChB,eAAgB,CAChB,gBAAiB,CACjB,UAAW,CACX,YAAa,CARjB,sDAcM,kBAAmB,CAdzB,uEAkBM,2BAA4B,CAlBlC,iEAsBM,qBAAsB,CAtB5B,+DA0BM,iBAAkB,CA1BxB,kRAkCM,oBAAqB,CACrB,aAAc,CACd,SAAU,CApChB,ydAwCM,UAAW,CACX,QAAS,CAzCf,qTA6CM,QAAS,CACT,sBAAuB,CA9C7B,8UAkDM,aAAc,CACd,UAAW,CACX,kBAAmB,CACnB,wBAAyB,CACzB,eAAgB,CAChB,kBAAmB,CACnB,UAAW,CACX,eAAgB,CAChB,gBAAiB,CACjB,cAAe,CACf,oBAAqB,CA5D3B,yUAgEM,eAAgB,CAChB,wBAAyB,CACzB,wBAAyB,CACzB,UAAW,CACX,kBAAmB,CACnB,eAAgB,CArEtB,uRA0EQ,UAAW,CA1EnB,uRA6EQ,eAAgB,CA7ExB,uhCAkFM,WAAY,CACZ,+BAAgC,CAChC,sBAAuB,CAGvB,cAAe,CAvFrB,4RA2FM,4BAA6B,CAC7B,2BAA4B,CAC5B,yBAA0B,CAC1B,wBAAyB,CA9F/B,2SAkGM,WAAY,CACZ,sBAAuB,CACvB,aAAc,CApGpB,mQAwGM,mBAAoB,CACpB,iBAAkB,CAzGxB,yPA6GM,eAAgB,CA7GtB,0TA+GQ,gBAAiB,CACjB,SAAU,CAhHlB,oUAmHQ,cAAe,CACf,eAAgB,CAChB,kBAAmB,CArH3B,kDA6HI,eAAgB,CAChB,WAAY,CA9HhB,oDAkII,cAAe,CACf,iBAAkB,CAClB,sBAAuB,CACvB,UAAW,CACX,gBAAiB,CAtIrB,4CA0II,aAAc,CA1IlB,iCA8II,QAAS,CACT,UAAW,CACX,SAAU,CAhJd,sDAoJI,qBAAsB,CACtB,eAAgB,CAChB,YAAa,CACb,gBAAiB,CACjB,QAAS,CACT,kCAAmC,CACnC,eAAgB,CAChB,UAAW,CA3Jf,0DA+JI,wBAAyB,CACzB,gBAAiB,CAhKrB,2CAoKI,WAAY,CApKhB,+DA2KM,wCAAyC,CACzC,iBAAkB,CA5KxB,sEAgLM,aAAc,CACd,aAAc,CACd,yBAA0B,CAC1B,eAAgB,CAChB,iBAAkB,CAClB,iBAAkB,CAClB,sBAAuB,CACvB,kBAAmB,CACnB,WAAY,CAxLlB,oEA4LM,aAAc,CACd,cAAe,CACf,gBAAiB,CA9LvB,qEAkMM,eAAgB,CAChB,eAAgB,CAChB,oBAAqB,CApM3B,oEAwMM,QAAS,CAxMf,oEA4MM,qBAAsB,CACtB,oBAAqB,CACrB,4BAA6B,CA9MnC,uIAkNM,yBAA0B,CAlNhC,iGAsNM,2DAA4D,CAC5D,cAAe,CAvNrB,0LAkPY,qBAAsB","file":"wpglobus-admin-tabs.css"}
1
+ {"version":3,"sources":["wpglobus-admin-tabs.scss"],"names":[],"mappings":"AAKA,mGAII,eAAgB,CAChB,eAAgB,CAChB,gBAAiB,CACjB,UAAW,CACX,YAAa,CARjB,sDAcM,kBAAmB,CAdzB,uEAkBM,2BAA4B,CAlBlC,iEAsBM,qBAAsB,CAtB5B,+DA0BM,iBAAkB,CA1BxB,kRAkCM,oBAAqB,CACrB,aAAc,CACd,SAAU,CApChB,ydAwCM,UAAW,CACX,QAAS,CAzCf,qTA6CM,QAAS,CACT,sBAAuB,CA9C7B,8UAkDM,aAAc,CACd,UAAW,CACX,kBAAmB,CACnB,wBAAyB,CACzB,eAAgB,CAChB,kBAAmB,CACnB,UAAW,CACX,eAAgB,CAChB,gBAAiB,CACjB,cAAe,CACf,oBAAqB,CA5D3B,yUAgEM,eAAgB,CAChB,wBAAyB,CACzB,wBAAyB,CACzB,UAAW,CACX,kBAAmB,CACnB,eAAgB,CArEtB,uRA0EQ,UAAW,CA1EnB,uRA6EQ,eAAgB,CA7ExB,uhCAkFM,WAAY,CACZ,+BAAgC,CAChC,sBAAuB,CAGvB,cAAe,CAvFrB,yeA2FG,yBAAyB,CA3F5B,4RA+FM,4BAA6B,CAC7B,2BAA4B,CAC5B,yBAA0B,CAC1B,wBAAyB,CAlG/B,2SAsGM,WAAY,CACZ,sBAAuB,CACvB,aAAc,CAxGpB,mQA4GM,mBAAoB,CACpB,iBAAkB,CA7GxB,yPAiHM,eAAgB,CAjHtB,0TAmHQ,gBAAiB,CACjB,SAAU,CApHlB,oUAuHQ,cAAe,CACf,eAAgB,CAChB,kBAAmB,CAzH3B,kDAiII,eAAgB,CAChB,WAAY,CAlIhB,oDAsII,cAAe,CACf,iBAAkB,CAClB,sBAAuB,CACvB,UAAW,CACX,gBAAiB,CA1IrB,4CA8II,aAAc,CA9IlB,iCAkJI,QAAS,CACT,UAAW,CACX,SAAU,CApJd,sDAwJI,qBAAsB,CACtB,eAAgB,CAChB,YAAa,CACb,gBAAiB,CACjB,QAAS,CACT,kCAAmC,CACnC,eAAgB,CAChB,UAAW,CA/Jf,0DAmKI,wBAAyB,CACzB,gBAAiB,CApKrB,2CAwKI,WAAY,CAxKhB,+DA+KM,wCAAyC,CACzC,iBAAkB,CAhLxB,sEAoLM,aAAc,CACd,aAAc,CACd,yBAA0B,CAC1B,eAAgB,CAChB,iBAAkB,CAClB,iBAAkB,CAClB,sBAAuB,CACvB,kBAAmB,CACnB,WAAY,CA5LlB,oEAgMM,aAAc,CACd,cAAe,CACf,gBAAiB,CAlMvB,qEAsMM,eAAgB,CAChB,eAAgB,CAChB,oBAAqB,CAxM3B,oEA4MM,QAAS,CA5Mf,oEAgNM,qBAAsB,CACtB,oBAAqB,CACrB,4BAA6B,CAlNnC,uIAsNM,yBAA0B,CAtNhC,iGA0NM,2DAA4D,CAC5D,cAAe,CA3NrB,0LAsPY,qBAAsB","file":"wpglobus-admin-tabs.css"}
includes/css/wpglobus-admin-tabs.scss CHANGED
@@ -92,7 +92,11 @@
92
  // To guarantee some space at the bottom
93
  min-height: 3em;
94
  }
95
-
 
 
 
 
96
  .ui-corner-all {
97
  border-bottom-right-radius: 0;
98
  border-bottom-left-radius: 0;
92
  // To guarantee some space at the bottom
93
  min-height: 3em;
94
  }
95
+
96
+ .wpglobus-post-body-tabs-list .wpglobus-tab-link-active {
97
+ border-top:2px solid #00f;
98
+ }
99
+
100
  .ui-corner-all {
101
  border-bottom-right-radius: 0;
102
  border-bottom-left-radius: 0;
includes/js/wpglobus-admin-51.js CHANGED
@@ -1335,6 +1335,13 @@ jQuery(document).ready(function () {
1335
 
1336
  var otab = ui.oldTab[0].id.replace('link-tab-','');
1337
  var ntab = ui.newTab[0].id.replace('link-tab-','');
 
 
 
 
 
 
 
1338
  if ( 'default' == otab ) {
1339
  otab = WPGlobusCoreData.default_language;
1340
  }
@@ -1573,6 +1580,13 @@ jQuery(document).ready(function () {
1573
  WPGlobusAdmin.currentTab = ui.newTab[0].dataset.language;
1574
  });
1575
 
 
 
 
 
 
 
 
1576
  $(document).triggerHandler('wpglobus_after_post_edit');
1577
 
1578
  },
1335
 
1336
  var otab = ui.oldTab[0].id.replace('link-tab-','');
1337
  var ntab = ui.newTab[0].id.replace('link-tab-','');
1338
+
1339
+ /**
1340
+ * @since 2.4
1341
+ */
1342
+ $('.wpglobus-tab-link').removeClass('wpglobus-tab-link-active');
1343
+ $('#link-tab-'+ntab+' .wpglobus-tab-link').addClass('wpglobus-tab-link-active');
1344
+
1345
  if ( 'default' == otab ) {
1346
  otab = WPGlobusCoreData.default_language;
1347
  }
1580
  WPGlobusAdmin.currentTab = ui.newTab[0].dataset.language;
1581
  });
1582
 
1583
+ /**
1584
+ * Add translatable class.
1585
+ * @since 2.4
1586
+ */
1587
+ $('#titlewrap input').addClass('wpglobus-translatable');
1588
+ $('.title_wpglobus').addClass('wpglobus-translatable');
1589
+
1590
  $(document).triggerHandler('wpglobus_after_post_edit');
1591
 
1592
  },
includes/js/wpglobus-admin-51.min.js CHANGED
@@ -1 +1 @@
1
- var WPGlobusCore,WPGlobusDialogApp;!function(i){var d;d=WPGlobusCore={strpos:function(t,a,e){var o=(t=""+t).indexOf(a,e);return 0<=o&&o},TextFilter:function(t,a,e){if(void 0===t||""===t)return t;var o,n,i=[],l=!1;a=""==a?"en":a,e=void 0===e||""==e?"RETURN_IN_DEFAULT_LANGUAGE":e,i[0]=[],i[0].start=WPGlobusCoreData.locale_tag_start.replace("%s",a),i[0].end=WPGlobusCoreData.locale_tag_end,i[1]=[],i[1].start="\x3c!--:"+a+"--\x3e",i[1].end="\x3c!--:--\x3e",i[2]=[],i[2].start="[:"+a+"]",i[2].end="[:";for(var s=0;s<3;s++)if(!1!==(o=d.strpos(t,i[s].start))){o+=i[s].start.length,t=!1===(n=d.strpos(t,i[s].end,o))?t.substr(o):t.substr(o,n-o),l=!0;break}return l||("RETURN_EMPTY"==e?a==WPGlobusCoreData.default_language&&!/(\{:|\[:|<!--:)[a-z]{2}/.test(t)||(t=""):a==WPGlobusCoreData.default_language?/(\{:|\[:|<!--:)[a-z]{2}/.test(t)&&(t=""):t=d.TextFilter(t,WPGlobusCoreData.default_language)),t},addLocaleMarks:function(t,a){return WPGlobusCoreData.locale_tag_start.replace("%s",a)+t+WPGlobusCoreData.locale_tag_end},getTranslations:function(e){var o,n={};return i.each(WPGlobusCoreData.enabled_languages,function(t,a){o=a==WPGlobusCoreData.default_language?"RETURN_IN_DEFAULT_LANGUAGE":"RETURN_EMPTY",n[a]=d.TextFilter(e,a,o)}),n},getString:function(t,a,e){if(void 0===t)return t;void 0===a&&(a=""),void 0===e&&(e=WPGlobusCoreData.language),(t=d.getTranslations(t))[e]=a;var o="";return i.each(t,function(t,a){""!=a&&t!=WPGlobusCoreData.default_language&&(o+=d.addLocaleMarks(a,t))}),""!=t[WPGlobusCoreData.default_language]&&(o=""==o?t[WPGlobusCoreData.default_language]:d.addLocaleMarks(t[WPGlobusCoreData.default_language],WPGlobusCoreData.default_language)+o),o}}}(jQuery),function(m){var f;f=WPGlobusDialogApp={option:{listenClass:".wpglobus_dialog_start",settingsClass:".wpglobus_dialog_settings",dialogTabs:"#wpglobus-dialog-tabs",dialogTitle:"",customData:null,callback:function(){},dialogOptions:{title:"",placeholder:"",formFooter:"",beforeOpen:function(){},afterOpen:function(){},afterSave:function(){},close:function(){}},dialog:{}},form:void 0,element:void 0,element_by:"id",id:"",clone_id:"",wpglobus_id:"",type:"textarea",source:"",order:{},value:{},request:"core",attrs:{},dialogTitle:"",trClass:"wpglobus-translatable",startButton:['<span id="wpglobus-dialog-start-{{clone_id}}" ','style="{{style}}" ','data-type="control" data-dialog-title="{{title}}" ','data-source-type="" data-source-id="{{id}}" data-source-name="{{name}}" ','data-nodename="{{nodename}}"',"{{sbTitle}} ",'class="{{classes}}"></span>'].join(""),startButtonClass:"wpglobus_dialog_start wpglobus_dialog_icon",clicks:0,init:function(t){f.option.dialog=f.option.dialogOptions,f.option=m.extend(f.option,t),m(f.option.dialogTabs).tabs(),f.dialogTitle=f.option.dialogTitle,this.attachListener(),null!=f.option.customData&&void 0!==f.option.customData.addElements&&m.each(f.option.customData.addElements,function(t,a){f.addElement(a)})},convertToId:function(t){return t=(t=t.replace(/\]/g,"")).replace(/\[/g,"-")},addElement:function(t){var a={id:null,style:"",styleTextareaWrapper:"",sbTitle:"",onChangeClass:"",dialogTitle:"",dialog:f.option.dialogOptions};if("string"==typeof t)a.id=t;else{if("object"!=typeof t)return;a=m.extend(a,t)}var e,o,n,i=null,l=null,s=null,d=null,u=f.startButton,r="";if(f.element_by="name",0==(d=document.getElementsByName(a.id)).length&&(f.element_by="id",d=document.getElementById(a.id)),null!==d){if(l=a.id,s=void 0===(i="id"==f.element_by?m("#"+l):(r=(r=d[0].nodeName).toLowerCase(),m(r+'[name="'+l+'"]'))).attr("name")||""==i.attr("name")?l:i.attr("name"),f.clone_id=f.convertToId(l),-1!=s.indexOf("wpglobus")||-1!=f.clone_id.indexOf("wpglobus"))return!1;if(0<m("#wpglobus-"+f.clone_id).length)return!1;if(0<m(r+'[name="wpglobus-'+s+'"]').length)return!1;e=m(i.clone()),n=i.attr("style")||"",i.attr("style","display:none;"),e.attr("id","wpglobus-"+f.clone_id).attr("name","wpglobus-"+s),e.addClass(f.trClass),""!=a.onChangeClass&&e.addClass(a.onChangeClass),"id"==f.element_by?e.attr("data-source-id",l).attr("data-source-name","").attr("data-source-get-by",f.element_by):e.attr("data-source-id","").attr("data-source-name",s).attr("data-source-get-by",f.element_by),"textarea"==r?(o=WPGlobusCore.getTranslations(i.val())[WPGlobusCoreData.language],e.val(o),e.attr("data-nodename","textarea"),""==a.style?e.attr("style",n+";width:95%;float:left;"):e.attr("style",n+";"+a.style)):(o=WPGlobusCore.getTranslations(i.val())[WPGlobusCoreData.language],e.attr("value",o),e.attr("data-nodename","input"),""!=a.style&&e.attr("style",n+";"+a.style)),""!=a.dialog&&e.attr("data-dialog",JSON.stringify(a.dialog)),u=u.replace(/{{clone_id}}/g,f.clone_id),u="id"==f.element_by?(u=(u=u.replace(/{{id}}/g,f.clone_id)).replace(/{{name}}/g,"")).replace(/{{nodename}}/g,""):(u=(u=u.replace(/{{id}}/g,"")).replace(/{{name}}/g,s)).replace(/{{nodename}}/g,r),u="textarea"==r?u.replace("{{style}}","float:left;margin-top:0;"):u.replace("{{style}}","");var c="textarea"==r?f.startButtonClass+" wpglobus-textarea wpglobus-textarea-"+f.clone_id:f.startButtonClass;u=u.replace("{{classes}}",c),u=""==a.dialogTitle?u.replace("{{title}}",f.dialogTitle):u.replace("{{title}}",a.dialogTitle),u=""==a.sbTitle?u.replace("{{sbTitle}}",a.sbTitle):u.replace("{{sbTitle}}",'title="'+a.sbTitle+'"'),m(u).insertAfter(i),m(e).insertAfter(i),"textarea"==r&&(m("#wpglobus-"+f.clone_id).addClass("wpglobus-textarea-"+f.clone_id),m(".wpglobus-textarea-"+f.clone_id).wrapAll('<div class="wpglobus-textarea-wrapper" style="'+a.styleTextareaWrapper+'"></div>'));var g,b=!1;if(""==a.onChangeClass)g="#wpglobus-"+f.clone_id;else{g="."+a.onChangeClass;var p=m._data(m(document)[0],"events");void 0===p?b=!0:void 0!==p.change&&m.each(p.change,function(t,a){if(a.selector==g)return!(b=!0)})}return b?!0:(m(document).on("change",g,function(){var t=m(this),a=t.data("source-id");a=""==a?t.data("nodename")+'[name="'+t.data("source-name")+'"]':"#"+a,m(a).val(WPGlobusCore.getString(m(a).val(),t.val()))}),!0)}},saveDialog:function(){var e,o,n,i="",l="",s="";m(".wpglobus_dialog_textarea").each(function(t,a){e=m(a),o=e.val(),(n=e.data("language"))==WPGlobusAdmin.data.language&&(s=o),""!=o&&(i+=WPGlobusCore.addLocaleMarks(o,n),n==WPGlobusCoreData.default_language&&(l=o))}),i=i.length==l.length+8?l:i,m(f.id).val(i),i=""==s?l:s,m(f.wpglobus_id).val(i),f.runCallback(f.option.dialog.afterSave)},dialog:m("#wpglobus-dialog-wrapper").dialog({autoOpen:!1,width:650,modal:!0,dialogClass:"wpglobus-dialog",buttons:[{text:"Save",class:"wpglobus-button-save",click:function(){f.saveDialog(),f.dialog.dialog("close")}},{text:"Cancel",class:"wpglobus-button-cancel",click:function(){f.dialog.dialog("close")}}],open:function(t,a){var e=f.dialogTitle;void 0!==f.attrs.maxlength&&(m(".wpglobus_dialog_textarea").attr("maxlength",f.attrs.maxlength),e+=" | maxlength="+f.attrs.maxlength),m(".wpglobus-dialog .ui-dialog-title").text(e),m(this).removeClass("hidden")},close:function(){m(this).addClass("hidden"),f.runCallback(f.option.dialog.close),f.form[0].reset()}}),attachListener:function(){m(document).on("click",f.option.settingsClass,function(){m(".wpglobus_dialog_options_wrapper").hasClass("hidden")?m(".wpglobus_dialog_options_wrapper").removeClass("hidden"):m(".wpglobus_dialog_options_wrapper").addClass("hidden")}),m(document).on("click",".wpglobus_dialog_option",function(t){var a=m(this),e=a.data("object");f.order.action="save_post_meta_settings",f.order.post_type=WPGlobusAdmin.data.post_type,f.order.checked=a.prop("checked"),f.order.id=a.attr("id"),f.order.meta_key=a.data("meta-key"),f.ajax(f.order).done(function(t){"ok"==t.result&&("true"==t.checked?m(e).removeClass("wpglobus_dialog_start_hidden"):m(e).addClass("wpglobus_dialog_start_hidden"))}).fail(function(t){}).always(function(t,a){})}),m(document).on("click",f.option.listenClass,function(a){f.element=m(this),f.id=f.element.data("source-id"),""==f.id?(f.id=f.element.data("nodename")+'[name="'+f.element.data("source-name")+'"]',f.wpglobus_id="#wpglobus-"+f.convertToId(f.element.data("source-name"))):(f.wpglobus_id="#wpglobus-"+f.id,f.id="#"+f.id),f.clicks++,1==f.clicks&&setTimeout(function(){if(1==f.clicks)f.onClick(a);else{var t=m(f.id);t.hasClass("hidden")?t.removeClass("hidden").attr("style","display:block;"):t.addClass("hidden").attr("style","display:none;")}f.clicks=0},200)}),f.form=f.dialog.find("form#wpglobus-dialog-form").on("submit",function(t){t.preventDefault(),f.saveDialog()})},ajax:function(t){return m.ajax({type:"POST",url:WPGlobusAdmin.ajaxurl,data:{action:WPGlobusAdmin.process_ajax,order:t},dataType:"json",async:!1})},onClick:function(t){void 0===f.element.data("dialog-title")||""==f.element.data("dialog-title")?f.dialogTitle=f.option.dialogTitle:f.dialogTitle=f.element.data("dialog-title"),void 0!==f.id&&(f.attrs.maxlength=m(f.id).attr("maxlength")),f.source=f.element.data("source-value"),void 0===f.source&&(f.source=m(f.id).val(),"ajax"==f.request||(f.value=WPGlobusCore.getTranslations(f.source))),f.option.dialog=m.extend({},f.option.dialogOptions,m(f.wpglobus_id).data("dialog")),""!=f.option.dialog.title&&(f.dialogTitle=f.option.dialog.title),m.each(f.value,function(t,a){var e=m("#wpglobus-dialog-"+t);e.val(a),e.attr("placeholder",WPGlobusCore.TextFilter(f.option.dialog.placeholder,t,"RETURN_IN_DEFAULT_LANGUAGE"))}),m("#wpglobus-dialog-form-footer").html(f.option.dialog.formFooter),f.runCallback(f.option.dialog.beforeOpen),f.dialog.dialog("open"),f.runCallback(f.option.dialog.afterOpen)},runCallback:function(t){if("object"==typeof t){var a=Object.keys(t)[0],e=t[Object.keys(t)[0]];"window"===a?"function"==typeof window[e]&&window[e](t[Object.keys(t)[1]]):"function"==typeof window[a][e]&&window[a][e](t[Object.keys(t)[1]])}else"string"==typeof t?"function"==typeof window[t]&&window[t]():"function"==typeof t&&t()}}}(jQuery),jQuery(document).ready(function(){"use strict";var t,c;window.WPGlobusAdminApp=(t=window.WPGlobusAdminApp||{},c=jQuery,t.App=function(t){void 0===window.WPGlobusAdminApp&&(this.config={debug:!1,version:WPGlobusAdmin.version},this.status="ok","undefined"==typeof WPGlobusAdmin?(this.status="error",this.config.debug&&console.log("WPGlobus: error options loading")):this.config.debug&&console.dir(WPGlobusAdmin),this.config.disable_first_language=['<div id="disable_first_language" style="display:block;" class="redux-field-errors notice-red">',"<strong>","<span>&nbsp;</span>",WPGlobusAdmin.i18n.cannot_disable_language,"</strong>","</div>"].join(""),c.extend(this.config,t),"ok"===this.status&&this.init())},t.App.prototype={$document:c(document),init:function(){WPGlobusCoreData.multisite=this.parseBool(WPGlobusCoreData.multisite),this.adminInit(),c("#content").addClass("wpglobus-editor").attr("data-language",WPGlobusAdmin.data.default_language),c("textarea[id^=content_]").each(function(t,a){var e=c(a).attr("id").replace("content_","");c(a).attr("data-language",e)}),"post.php"===WPGlobusAdmin.page?(this.postEdit(),this.set_dialog(),"undefined"!=typeof WPGlobusAioseop&&WPGlobusAioseop.init()):"menu-edit"===WPGlobusAdmin.page?(WPGlobusDialogApp.init({dialogTitle:"Edit description"}),this.navMenus()):"taxonomy-edit"===WPGlobusAdmin.page?WPGlobusAdmin.data.tag_id&&this.taxonomyEdit():"taxonomy-quick-edit"===WPGlobusAdmin.page?this.quickEdit("taxonomy"):"edit.php"===WPGlobusAdmin.page?(this.quickEdit("post"),0<_.size(WPGlobusAdmin.$_get)&&WPGlobusDialogApp.init()):"options-general.php"==WPGlobusAdmin.page?(this.optionsGeneral(),WPGlobusDialogApp.init({customData:WPGlobusCoreData.page_custom_data})):"widgets.php"==WPGlobusAdmin.page?(WPGlobusWidgets.init(),WPGlobusDialogApp.init({dialogTitle:"Edit text"})):"wpglobus_options"==WPGlobusAdmin.page?this.start():"wpglobusAdminCentral"==WPGlobusAdmin.page?this.adminCentral():WPGlobusDialogApp.init({customData:WPGlobusCoreData.page_custom_data})},parseBool:function(t){return!/^(false|0)$/i.test(t)&&!!t},getCurrentTab:function(){return c(".wpglobus-post-body-tabs-list .ui-tabs-active").data("language")},adminInit:function(){var t=c(".wpglobus-addons-group a").data("key");if(void 0!==t)if(0<=window.location.search.indexOf("page=wpglobus_options&tab="+t))WPGlobusCoreData.multisite?window.location=WPGlobusCoreData.pluginInstallLocation.multisite:window.location=WPGlobusCoreData.pluginInstallLocation.single;else{var a=c("#toplevel_page_wpglobus_options li").eq(t+1);WPGlobusCoreData.multisite?c(a).find("a").attr("href",WPGlobusCoreData.pluginInstallLocation.multisite).attr("onclick","window.location=jQuery(this).attr('href');return false;"):c(a).find("a").attr("href",WPGlobusCoreData.pluginInstallLocation.single).attr("onclick","window.location=jQuery(this).attr('href');return false;")}},optionsGeneral:function(){var o=c("#blogname"),t=c("body");o.addClass("hidden"),c("#wpglobus-blogname").insertAfter(o).removeClass("hidden"),t.on("blur",".wpglobus-blogname",function(){c(".wpglobus-blogname").each(function(t,a){var e=c(a);o.val(WPGlobusCore.getString(o.val(),e.val(),e.data("language")))})});var n=c("#blogdescription");n.addClass("hidden"),c("#wpglobus-blogdescription").insertAfter(n).removeClass("hidden"),t.on("blur",".wpglobus-blogdesc",function(){c(".wpglobus-blogdesc").each(function(t,a){var e=c(a);n.val(WPGlobusCore.getString(n.val(),e.val(),e.data("language")))})})},quickEdit:function(n){if(void 0!==WPGlobusAdmin.data.has_items&&WPGlobusAdmin.data.has_items){var o="",l=0;c(document).ajaxComplete(function(t,a,e){void 0!==e.data&&""!=o&&0<=e.data.indexOf("action=inline-save-tax&")&&(c("#"+o+" a.row-title").text(WPGlobusAdmin.qedit_titles[l][WPGlobusAdmin.data.language].name),c("#"+o+" .description").text(WPGlobusAdmin.qedit_titles[l][WPGlobusAdmin.data.language].description))});var i={};c("#the-list tr").each(function(t,a){var e=c(a),o="post"===n?"post-":"tag-";l=e.attr("id").replace(o,""),i[l]={},"post"===n?i[l].source=e.find(".post_title").text():"taxonomy"===n&&(i[l].source=c("#inline_"+l+" .name").text())});var t={action:"get_titles"};t.type=n,t.taxonomy=void 0!==WPGlobusAdmin.data.taxonomy&&WPGlobusAdmin.data.taxonomy,t.title=i,c.ajax({type:"POST",url:WPGlobusAdmin.ajaxurl,data:{action:WPGlobusAdmin.process_ajax,order:t},dataType:"json"}).done(function(t){WPGlobusAdmin.qedit_titles=t.qedit_titles,c.each(t.bulkedit_post_titles,function(t,a){c("#inline_"+t+" .post_title").text(a[WPGlobusAdmin.data.language].name)})}).fail(function(t){}).always(function(t,a){}),c("body").on("change",".wpglobus-quick-edit-title",function(){var n="",i=[];c(".wpglobus-quick-edit-title").each(function(t,a){var e=c(a),o=e.data("language");""!==e.val()&&(n=WPGlobusCore.getString(n,e.val(),o)),WPGlobusAdmin.qedit_titles[l][o].name=e.val(),i[t]=o});var t=c(document).triggerHandler("wpglobus_get_translations",{string:n,lang:i,id:l});void 0!==t&&(n=t),c("input.ptitle").eq(0).attr("value",n),WPGlobusAdmin.qedit_titles[l].source=n}),void 0!==WPGlobusAdmin.data.tags&&c.each(WPGlobusAdmin.data.tags,function(t,a){WPGlobusAdmin.data.value[a].post_id={}}),c("button.save, input#bulk_edit").on("mouseenter",function(t){void 0!==WPGlobusAdmin.data.tags&&("bulk_edit"==t.currentTarget.id?c("input#bulk_edit").unbind("click"):c("button.save").unbind("click"),c("button.save, input#bulk_edit").on("click",function(a){var t=c.when(),e=(c(this),c.Deferred());e.resolve(function(t){t.next(".spinner").css({visibility:"visible"}),"bulk_edit"!=a.currentTarget.id&&c.ajaxSetup({async:!1});var o,n,i,l=t.parents("tr"),s=l.attr("id").replace("edit-","");c.each(WPGlobusAdmin.data.tags,function(t,a){if(0==(o=l.find("textarea[name='"+WPGlobusAdmin.data.names[a]+"']")).length)return!0;WPGlobusAdmin.data.value[a].post_id[s]=o.val(),n=WPGlobusAdmin.data.value[a].post_id[s].split(","),i=[];for(var e=0;e<n.length;e++)n[e]=n[e].trim(" "),""!=n[e]&&(void 0===WPGlobusAdmin.data.tag[a][n[e]]?i[e]=n[e]:i[e]=WPGlobusAdmin.data.tag[a][n[e]]);o.val(i.join(", "))})}(c(this))),t=t.then(function(){return c.when(e.done())}).then(function(){"bulk_edit"!=a.currentTarget.id&&setTimeout(function(){inlineEditPost.save(l),c.ajaxSetup({async:!0})},50)})}))}),c("#the-list").on("click",".editinline",function(){var t=c(this);if(o=t.parents("tr").attr("id"),"post"===n)l=o.replace("post-","");else{if("taxonomy"!==n)return;l=o.replace("tag-","")}"post"===n&&void 0!==WPGlobusAdmin.data.tags&&c.each(WPGlobusAdmin.data.tags,function(t,a){if(""!=WPGlobusAdmin.data.value[a]){var e,o=c("#edit-"+l+' textarea[name="'+WPGlobusAdmin.data.names[a]+'"]').val();void 0!==o&&(e=o.split(","),c.each(e,function(t,a){o=o.replace(a,WPGlobusCore.TextFilter(a,WPGlobusCoreData.language))}),c("#edit-"+l+' textarea[name="'+WPGlobusAdmin.data.names[a]+'"]').val(o))}});var a=c("#edit-"+l+" input.ptitle").eq(0),e=a.parents("label");a.val(WPGlobusAdmin.qedit_titles[l].source),a.addClass("hidden"),c(WPGlobusAdmin.data.template).insertAfter(e),void 0===WPGlobusAdmin.qedit_titles[l]&&(WPGlobusAdmin.qedit_titles[l]={},WPGlobusAdmin.qedit_titles[l].source=c("#"+o+" .name a.row-title").text(),c(WPGlobusAdmin.data.enabled_languages).each(function(t,a){WPGlobusAdmin.qedit_titles[l][a]={},a==WPGlobusAdmin.data.default_language?WPGlobusAdmin.qedit_titles[l][a].name=WPGlobusAdmin.qedit_titles[l].source:WPGlobusAdmin.qedit_titles[l][a].name="",WPGlobusAdmin.qedit_titles[l][a].description=""})),c(".wpglobus-quick-edit-title").each(function(t,a){var e=c(a),o=e.data("language");e.attr("id",o+l),void 0!==WPGlobusAdmin.qedit_titles[l][o]&&(WPGlobusAdmin.qedit_titles[l][o].name=WPGlobusAdmin.qedit_titles[l][o].name.replace(/\\\'/g,"'"),WPGlobusAdmin.qedit_titles[l][o].name=WPGlobusAdmin.qedit_titles[l][o].name.replace(/\\\"/g,'"'),e.attr("value",WPGlobusAdmin.qedit_titles[l][o].name),WPGlobusAdmin.qedit_titles[l].source=WPGlobusCore.getString(WPGlobusAdmin.qedit_titles[l].source,WPGlobusAdmin.qedit_titles[l][o].name,o))}),c("input.ptitle").eq(0).attr("value",WPGlobusAdmin.qedit_titles[l].source)})}},taxonomyEdit:function(){var a=[];a[0]="name",a[1]="description",c.each(WPGlobusCoreData.enabled_languages,function(t,u){c.each(a,function(t,a){var e,o,n,i,l,s,d;o=u,i=c("#"+(e=a)),l=i.clone(),s=i.attr("name"),d="wpglobus-element wpglobus-element_"+e+" wpglobus-element_"+o+" wpglobus-translatable",n=(n=document.getElementById(e)).nodeName,c(l).attr("id",e+"_"+o),c(l).attr("name",s+"_"+o),o!==WPGlobusCoreData.default_language&&(d+=" hidden"),c(l).attr("class",d),c(l).attr("data-save-to",e),c(l).attr("data-language",o),"INPUT"==n?c(l).attr("value",c("#wpglobus-link-tab-"+o).data(e)):"TEXTAREA"==n&&c(l).text(c("#wpglobus-link-tab-"+o).data(e)),i.addClass("hidden"),0==c(".wpglobus-element_"+e).length?c(l).insertAfter(i):c(l).insertAfter(c(".wpglobus-element_"+e).last())})}),c(".wpglobus-taxonomy-tabs").insertAfter("#ajax-response"),c(".wrap").tabs(),c("body").on("click",".wpglobus-taxonomy-tabs li",function(t){var a=c(this).data("language");c(".wpglobus-element").addClass("hidden"),c(".wpglobus-element_"+a).removeClass("hidden")}),c(".wpglobus-element").on("change",function(){var n=c(this).data("save-to"),i="";c(".wpglobus-element").each(function(t,a){var e=c(a),o=e.val();e.data("save-to")==n&&""!==o&&(i+=WPGlobusCore.addLocaleMarks(o,e.data("language")))}),c("#"+n).val(i)}),c(WPGlobusAdmin.data.multilingualSlug.title).insertAfter(".term-slug-wrap th label")},navMenus:function(){function e(){n!==c(i).length&&(clearInterval(o),c(i).each(function(t,a){var e=c(a);if(!e.hasClass("wpglobus-menu-item")){var l=c(a).attr("id");c.each(["input.edit-menu-item-title","input.edit-menu-item-attr-title"],function(t,a){var e=c("#"+l+" "+a),o=c(e);if(!o.hasClass("wpglobus-hidden")){o.addClass("wpglobus-hidden"),o.css("display","none");var n=o.parent("label"),i=o.parents("p");c(i).css("height","80px"),c(n).append('<div style="color:#f00;">'+WPGlobusAdmin.i18n.save_nav_menu+"</div>")}}),e.addClass("wpglobus-menu-item")}}))}var o,n,i="#menu-to-edit .menu-item";c.ajaxSetup({beforeSend:function(t,a){void 0!==a.data&&0<=a.data.indexOf("action=add-menu-item")&&(n=c(i).length,o=setInterval(e,500))}}),c(i).each(function(t,a){var e=c(a).attr("id"),u=e.replace("menu-item-","");c.each(["input.edit-menu-item-title","input.edit-menu-item-attr-title"],function(n,i){var l=c("#"+e+" "+i);l.val()!=WPGlobusAdmin.data.items[u][i].source&&l.val(WPGlobusAdmin.data.items[u][i].source);var s=c("#"+e+" "+i).parents("p"),d=0;c.each(WPGlobusAdmin.data.open_languages,function(t,a){var e=l.clone();e.attr("id",l.attr("id")+"-"+a),e.attr("name",l.attr("id")+"-"+a),e.attr("data-language",a),e.attr("data-item-id",u),e.attr("placeholder",WPGlobusAdmin.data.en_language_name[a]);var o=WPGlobusAdmin.data.items[u][a][i].class;0===n&&a===WPGlobusAdmin.data.default_language?e.attr("class",o+" edit-menu-item-title"):e.attr("class",o),""!=WPGlobusAdmin.data.items[u][a][i].caption?e.attr("value",WPGlobusAdmin.data.items[u][a][i].caption):e.attr("value",""),e.css("margin-bottom","0.6em"),c(s).append(e),d=t}),d=40*(d+1),l.css("display","none").attr("class","").addClass("widefat wpglobus-hidden"),c(s).css("height",d+"px").addClass("wpglobus-menu-item-box")}),c(a).addClass("wpglobus-menu-item")}),c(".menus-move-left, .menus-move-right").each(function(t,a){var e,o=c(a),n=(o.parents("li").attr("id").replace("menu-item-",""),o.attr("title"));void 0!==n&&c.each(WPGlobusAdmin.data.post_titles,function(t,a){0<=n.indexOf(t)&&(e=n.replace(t,a),o.attr("title",e),o.text(e))})}),c(".edit-menu-item-title").trigger("change"),wpNavMenu.refreshAdvancedAccessibility(),wpNavMenu.menusChanged=!1,c(".wpglobus-menu-item").on("change",function(){var t,a,e=c(this),o=e.data("item-id");e.hasClass("wpglobus-item-title")&&(t=WPGlobusCore.getString(c("input#edit-menu-item-title-"+o).val(),e.val(),e.data("language")),void 0!==(a=c(document).triggerHandler("wpglobus_get_menu_translations",{string:t,lang:WPGlobusCoreData.open_languages,id:o,type:"input.edit-menu-item-title"}))&&(t=a),c("input#edit-menu-item-title-"+o).val(t)),e.hasClass("wpglobus-item-attr")&&(t=WPGlobusCore.getString(c("input#edit-menu-item-attr-title-"+o).val(),e.val(),e.data("language")),void 0!==(a=c(document).triggerHandler("wpglobus_get_menu_translations",{string:t,lang:WPGlobusCoreData.open_languages,id:o,type:"input.edit-menu-item-attr-title"}))&&(t=a),c("input#edit-menu-item-attr-title-"+o).val(t))});var a=[];setTimeout(function(){c(".edit-menu-item-description").each(function(){var t=c(this).attr("id");a.push(t),WPGlobusDialogApp.addElement(t)}),c(".wpglobus_dialog_start").each(function(){c(this).css({"font-style":"normal"}),c(this).after("<br />")});var t={action:"getNavMenuItemsDescription"};t.menuItems=a,c.ajax({type:"POST",url:WPGlobusAdmin.ajaxurl,data:{action:WPGlobusAdmin.process_ajax,order:t},dataType:"json"}).done(function(t){"object"==typeof t&&c.each(t,function(t,a){""!=a&&(c("#"+t).val(a),c("#wpglobus-"+t).val(WPGlobusCore.TextFilter(a,WPGlobus.language,"RETURN_EMPTY")))})}).fail(function(t){}).always(function(t,a){})},1e3)},postEdit:function(){c(document).on("heartbeat-send",function(t,o){void 0!==o.wp_autosave&&(o.wpglobus_heartbeat="wpglobus",c.each(WPGlobusAdmin.data.open_languages,function(t,a){var e=c("#title_"+a).val()||"";""!=(e=c.trim(e))&&(o.wp_autosave["post_title_"+a]=e),e=c("#content_"+a).val()||"",""!=(e=c.trim(e))&&(o.wp_autosave["content_"+a]=e)}))});var e="#postdivrich",o=!0,a="#post-body-content";if(!1===WPGlobusAdmin.data.support.editor&&(o=!(e="#titlediv")),!1===WPGlobusAdmin.data.support.title&&(o=!1),c(a).prepend(c(".wpglobus-post-body-tabs-list")),c.each(WPGlobusAdmin.tabs,function(t,a){"default"===a?(c(e).wrap('<div id="tab-default"></div>'),o&&c(c("#titlediv")).insertBefore(e)):(c(e+"-"+a).wrap('<div id="tab-'+a+'"></div>'),o&&c(c("#titlediv-"+a)).insertBefore(e+"-"+a))}),setTimeout(function(){var i=!1;c(a).addClass("wpglobus-post-body-tabs").tabs({beforeActivate:function(t,a){!function(){if(!i){var t=c("#wp-content-editor-container .mce-btn-group").eq(0),a=t.children("div");if(0!=t.length&&0!=a.length){var l=t.attr("style"),s=a.attr("style");c.each(WPGlobusCoreData.enabled_languages,function(t,a){if(a!=WPGlobusCoreData.default_language){var e=c("#wp-content_"+a+"-editor-container .mce-btn-group").eq(0),o=e.children("div");if(0==e.length||0==o.length)return!0;var n=e.attr("style"),i=o.attr("style");l!=n&&e.attr("style",l),s!=i&&o.attr("style",s)}}),i=!0}}}();var e=a.oldTab[0].id.replace("link-tab-",""),o=a.newTab[0].id.replace("link-tab-","");"default"==e&&(e=WPGlobusCoreData.default_language),"default"==o&&(o=WPGlobusCoreData.default_language);var n=c(document).triggerHandler("wpglobus_post_body_tabs",[e,o]);return!(!n&&void 0!==n)}})},500),c("#title").val(WPGlobusAdmin.title),c("#content").text(WPGlobusAdmin.content),"undefined"!=typeof WPGlobusVendor&&WPGlobusVendor.vendor.WPSEO&&("undefined"!=typeof wpglobus_wpseo?wpglobus_wpseo():"undefined"!=typeof WPGlobusYoastSeo&&("undefined"!=typeof WPGlobusYoastSeoPremium&&WPGlobusYoastSeoPremium&&"function"==typeof WPGlobusYoastSeoPremium.init&&WPGlobusYoastSeoPremium.init(),"function"==typeof WPGlobusYoastSeo.init&&WPGlobusYoastSeo.init())),WPGlobusAdmin.data.modify_excerpt){var n=c("#excerpt");n.addClass("hidden").css({display:"none"}),c(WPGlobusAdmin.data.template).insertAfter(n),c("body").on("change",".wpglobus-excerpt",function(){var t=c(this);n.val(WPGlobusCore.getString(n.val(),t.val(),t.data("language")))})}if(void 0!==wp.utils&&void 0!==wp.utils.WordCounter){WPGlobusCoreData.wordCounter={};var l=this,s={};c.each(WPGlobusCoreData.enabled_languages,function(t,a){if(a==WPGlobusCoreData.default_language)return!0;var n,e,i;s[t]="content_"+a,n=jQuery,e=new wp.utils.WordCounter,i=a,WPGlobusCoreData.wordCounter[i]={},WPGlobusCoreData.wordCounter[i].counter=e,n(function(){function o(t){var a,e;"object"==typeof t&&(t="tinymce"==t?l.getCurrentTab():t.target.id.replace("content_","")),void 0!==WPGlobusCoreData.wordCounter[t]&&(a=!WPGlobusCoreData.wordCounter[t].contentEditor||WPGlobusCoreData.wordCounter[t].contentEditor.isHidden()?WPGlobusCoreData.wordCounter[t].content.val():WPGlobusCoreData.wordCounter[t].contentEditor.getContent({format:"raw"}),(e=WPGlobusCoreData.wordCounter[t].counter.count(a))!==WPGlobusCoreData.wordCounter[t].prevCount&&WPGlobusCoreData.wordCounter[t].count.text(e),WPGlobusCoreData.wordCounter[t].prevCount=e)}WPGlobusCoreData.wordCounter[i].content=n("#content_"+i),WPGlobusCoreData.wordCounter[i].count=n("#wp-word-count-"+i).find(".word-count-"+i),WPGlobusCoreData.wordCounter[i].prevCount=0,n(document).on("tinymce-editor-init",function(t,a){if(-1!=n.inArray(a.id,s)){var e=a.id.replace("content_","");(WPGlobusCoreData.wordCounter[e].contentEditor=a).on("nodechange keyup",_.debounce(o,1e3))}}),WPGlobusCoreData.wordCounter[i].content.on("input keyup",_.debounce(o,1e3)),o(i)})})}c(document).on("click","#publish, #save-post",function(){if(1<WPGlobusAdmin.data.open_languages.length){c(document).triggerHandler("wpglobus_before_save_post",{content_tabs_id:a});var t,e=c("#title").val(),o="",n="";0==e.length&&(t=WPGlobusAdmin.data.open_languages.indexOf(WPGlobusAdmin.data.default_language),WPGlobusAdmin.data.open_languages.splice(t,1),c(WPGlobusAdmin.data.open_languages).each(function(t,a){n=0==t?"":"-",0<(e=c("#title_"+a).val()).length&&(0==o.length&&(n=""),o=o+n+e)})),0<o.length&&c("#title").val(o)}void 0===WPGlobusAdmin.data.tagsdiv||WPGlobusAdmin.data.tagsdiv.length<1||c(WPGlobusAdmin.data.tagsdiv).each(function(t,a){if(0==c("#"+a).length)return!0;var e=a.replace("tagsdiv-","");if("undefined"===e)return!0;if(0==c("#tax-input-"+e).length)return!0;var o,n=[];c("#tagsdiv-"+e+" .tagchecklist li").each(function(t,a){o=(o=c(a).html()).replace(/<button.*<\/button>&nbsp;/,""),void 0===WPGlobusAdmin.data.tag[e][o]?n[t]=o:n[t]=WPGlobusAdmin.data.tag[e][o]}),c("#tax-input-"+e).val(n.join(", "))})}),c(".ui-state-default").on("click",function(){"link-tab-default"===c(this).attr("id")&&(c(window).scrollTop(c(window).scrollTop()+1),c(window).scrollTop(c(window).scrollTop()-1))}),c(document).on("tabsactivate",a,function(t,a){WPGlobusAdmin.currentTab=a.newTab[0].dataset.language}),c(document).triggerHandler("wpglobus_after_post_edit")},adminCentral:function(){c(".wpglobus-admin-central-tab").css({display:"none"}),1<c(".nav-tab-active").length&&c(".wpglobus-about-wrap .nav-tab-wrapper a").removeClass("nav-tab-active");var e=!0;0==location.hash.indexOf("#")&&c(".wpglobus-about-wrap .nav-tab-wrapper a").each(function(t,a){c(a).attr("href")==location.hash&&(e=!1,c(a).addClass("nav-tab-active"))}),e&&c(".wpglobus-about-wrap .nav-tab-wrapper a").eq(0).addClass("nav-tab-active");var t=c(".wpglobus-about-wrap .nav-tab-active").data("tab-id");""!=t&&c("#"+t).css({display:"block"}),c(document).on("click",".wpglobus-about-wrap .nav-tab",function(t){var a=c(this);a.hasClass("nav-tab-active")||(c(".wpglobus-admin-central-tab").css({display:"none"}),c(".wpglobus-about-wrap .nav-tab").removeClass("nav-tab-active"),a.addClass("nav-tab-active"),""!=a.data("tab-id")&&c("#"+a.data("tab-id")).css({display:"block"}))})},start:function(){var a=this;c("#wpglobus_flags").select2({formatResult:this.format,formatSelection:this.format,minimumResultsForSearch:-1,escapeMarkup:function(t){return t}}),c("body").on("click","#enabled_languages-list li:first input",function(t){return t.preventDefault(),c(".redux-save-warn").css({display:"none"}),c("#enabled_languages-list").find("li:first > input").val("1"),0===c("#disable_first_language").length&&c(a.config.disable_first_language).insertAfter("#info_bar"),!1})},format:function(t){return'<img class="wpglobus_flag" src="'+WPGlobusAdmin.flag_url+t.text+'"/>&nbsp;&nbsp;'+t.text},set_dialog:function(){if(void 0===WPGlobusAdmin.data.customFieldsEnabled||(WPGlobusAdmin.data.customFieldsEnabled=this.parseBool(WPGlobusAdmin.data.customFieldsEnabled),WPGlobusAdmin.data.customFieldsEnabled)){void 0===WPGlobusAdmin.data.excludeCustomFields&&(WPGlobusAdmin.data.excludeCustomFields=!1);var o,a=!1,n=function(t){var s,d,u,r="wpglobus_dialog_start wpglobus_dialog_icon";u=['<div class="wpglobus_dialog_options_wrapper hidden">','<input style="width:initial;" id="wpglobus-cb-{{id}}" data-object="#wpglobus-dialog-start-{{id}}" data-meta-key="{{meta-key}}" class="wpglobus_dialog_option wpglobus_dialog_cb" type="checkbox" {{checked}} />',"</div>"].join(""),c(void 0===t?"#the-list tr":"#the-list tr#"+t).each(function(){var t,a,e,o=c(this),n=o.attr("id"),i=o.find("textarea"),l=r;return void 0===(s=i.attr("id"))||(e=c("#"+n+"-key").val(),!(!WPGlobusAdmin.data.excludeCustomFields||-1==c.inArray(e,WPGlobusAdmin.data.excludeCustomFields))||(t=c("#"+s).clone(),c(i).addClass("wpglobus-dialog-field-source hidden"),a=i.attr("name"),c(t).attr("id","wpglobus-"+s),c(t).attr("name","wpglobus-"+a),c(t).attr("data-source-id",s),c(t).attr("class","wpglobus-dialog-field"),c(t).val(WPGlobusCore.TextFilter(c(i).val(),WPGlobusCoreData.language)),c(t).insertAfter(i),d=(d=u.replace(/{{id}}/g,s)).replace(/{{meta-key}}/g,e),void 0===WPGlobusAdmin.data.post_meta_settings[WPGlobusAdmin.data.post_type]?d=d.replace(/{{checked}}/,"checked"):l=void 0!==WPGlobusAdmin.data.post_meta_settings[WPGlobusAdmin.data.post_type][e]&&"false"==WPGlobusAdmin.data.post_meta_settings[WPGlobusAdmin.data.post_type][e]?(d=d.replace(/{{checked}}/,""),r+" wpglobus_dialog_start_hidden"):(d=d.replace(/{{checked}}/,"checked"),r),void o.append('<td style="width:20px;"><div id="wpglobus-dialog-start-'+s+'" data-type="control" data-source-type="textarea" data-source-id="'+s+'" class="'+l+'"></div>'+d+"</td>")))}),!a&&0<c("#list-table .wpglobus_dialog_start").length&&(c("#list-table thead tr").append('<th class="wpglobus-control-head"><div class="wpglobus_dialog_settings wpglobus_dialog_icon"></div></th>'),a=!0)};n(),c("body").on("change",".wpglobus-dialog-field",function(){var e,o,n=c(this),t="#"+n.data("source-id"),i="";e=c(t).val(),/(\{:|\[:|<!--:)[a-z]{2}/.test(e)?(c.each(WPGlobusCoreData.enabled_languages,function(t,a){""!=(o=a==WPGlobusCoreData.language?n.val():WPGlobusCore.TextFilter(e,a,"RETURN_EMPTY"))&&(i+=WPGlobusCore.addLocaleMarks(o,a))}),c(t).val(i)):c(t).val(n.val())}),c(document).ajaxSend(function(t,a,e){"add-meta"==e.action&&(o=e.element)}),c(document).ajaxComplete(function(t,a,e){"add-meta"==e.action&&void 0!==a.responseXML&&n("newmeta"==o?"meta-"+c(a.responseXML.documentElement.outerHTML).find("meta").attr("id"):o)}),WPGlobusDialogApp.init({dialogTitle:"Edit meta"})}}},new t.App,t)});
1
+ var WPGlobusCore,WPGlobusDialogApp;!function(i){var d;d=WPGlobusCore={strpos:function(t,a,e){var o=(t=""+t).indexOf(a,e);return 0<=o&&o},TextFilter:function(t,a,e){if(void 0===t||""===t)return t;var o,n,i=[],l=!1;a=""==a?"en":a,e=void 0===e||""==e?"RETURN_IN_DEFAULT_LANGUAGE":e,i[0]=[],i[0].start=WPGlobusCoreData.locale_tag_start.replace("%s",a),i[0].end=WPGlobusCoreData.locale_tag_end,i[1]=[],i[1].start="\x3c!--:"+a+"--\x3e",i[1].end="\x3c!--:--\x3e",i[2]=[],i[2].start="[:"+a+"]",i[2].end="[:";for(var s=0;s<3;s++)if(!1!==(o=d.strpos(t,i[s].start))){o+=i[s].start.length,t=!1===(n=d.strpos(t,i[s].end,o))?t.substr(o):t.substr(o,n-o),l=!0;break}return l||("RETURN_EMPTY"==e?a==WPGlobusCoreData.default_language&&!/(\{:|\[:|<!--:)[a-z]{2}/.test(t)||(t=""):a==WPGlobusCoreData.default_language?/(\{:|\[:|<!--:)[a-z]{2}/.test(t)&&(t=""):t=d.TextFilter(t,WPGlobusCoreData.default_language)),t},addLocaleMarks:function(t,a){return WPGlobusCoreData.locale_tag_start.replace("%s",a)+t+WPGlobusCoreData.locale_tag_end},getTranslations:function(e){var o,n={};return i.each(WPGlobusCoreData.enabled_languages,function(t,a){o=a==WPGlobusCoreData.default_language?"RETURN_IN_DEFAULT_LANGUAGE":"RETURN_EMPTY",n[a]=d.TextFilter(e,a,o)}),n},getString:function(t,a,e){if(void 0===t)return t;void 0===a&&(a=""),void 0===e&&(e=WPGlobusCoreData.language),(t=d.getTranslations(t))[e]=a;var o="";return i.each(t,function(t,a){""!=a&&t!=WPGlobusCoreData.default_language&&(o+=d.addLocaleMarks(a,t))}),""!=t[WPGlobusCoreData.default_language]&&(o=""==o?t[WPGlobusCoreData.default_language]:d.addLocaleMarks(t[WPGlobusCoreData.default_language],WPGlobusCoreData.default_language)+o),o}}}(jQuery),function(m){var f;f=WPGlobusDialogApp={option:{listenClass:".wpglobus_dialog_start",settingsClass:".wpglobus_dialog_settings",dialogTabs:"#wpglobus-dialog-tabs",dialogTitle:"",customData:null,callback:function(){},dialogOptions:{title:"",placeholder:"",formFooter:"",beforeOpen:function(){},afterOpen:function(){},afterSave:function(){},close:function(){}},dialog:{}},form:void 0,element:void 0,element_by:"id",id:"",clone_id:"",wpglobus_id:"",type:"textarea",source:"",order:{},value:{},request:"core",attrs:{},dialogTitle:"",trClass:"wpglobus-translatable",startButton:['<span id="wpglobus-dialog-start-{{clone_id}}" ','style="{{style}}" ','data-type="control" data-dialog-title="{{title}}" ','data-source-type="" data-source-id="{{id}}" data-source-name="{{name}}" ','data-nodename="{{nodename}}"',"{{sbTitle}} ",'class="{{classes}}"></span>'].join(""),startButtonClass:"wpglobus_dialog_start wpglobus_dialog_icon",clicks:0,init:function(t){f.option.dialog=f.option.dialogOptions,f.option=m.extend(f.option,t),m(f.option.dialogTabs).tabs(),f.dialogTitle=f.option.dialogTitle,this.attachListener(),null!=f.option.customData&&void 0!==f.option.customData.addElements&&m.each(f.option.customData.addElements,function(t,a){f.addElement(a)})},convertToId:function(t){return t=(t=t.replace(/\]/g,"")).replace(/\[/g,"-")},addElement:function(t){var a={id:null,style:"",styleTextareaWrapper:"",sbTitle:"",onChangeClass:"",dialogTitle:"",dialog:f.option.dialogOptions};if("string"==typeof t)a.id=t;else{if("object"!=typeof t)return;a=m.extend(a,t)}var e,o,n,i=null,l=null,s=null,d=null,u=f.startButton,r="";if(f.element_by="name",0==(d=document.getElementsByName(a.id)).length&&(f.element_by="id",d=document.getElementById(a.id)),null!==d){if(l=a.id,s=void 0===(i="id"==f.element_by?m("#"+l):(r=(r=d[0].nodeName).toLowerCase(),m(r+'[name="'+l+'"]'))).attr("name")||""==i.attr("name")?l:i.attr("name"),f.clone_id=f.convertToId(l),-1!=s.indexOf("wpglobus")||-1!=f.clone_id.indexOf("wpglobus"))return!1;if(0<m("#wpglobus-"+f.clone_id).length)return!1;if(0<m(r+'[name="wpglobus-'+s+'"]').length)return!1;e=m(i.clone()),n=i.attr("style")||"",i.attr("style","display:none;"),e.attr("id","wpglobus-"+f.clone_id).attr("name","wpglobus-"+s),e.addClass(f.trClass),""!=a.onChangeClass&&e.addClass(a.onChangeClass),"id"==f.element_by?e.attr("data-source-id",l).attr("data-source-name","").attr("data-source-get-by",f.element_by):e.attr("data-source-id","").attr("data-source-name",s).attr("data-source-get-by",f.element_by),"textarea"==r?(o=WPGlobusCore.getTranslations(i.val())[WPGlobusCoreData.language],e.val(o),e.attr("data-nodename","textarea"),""==a.style?e.attr("style",n+";width:95%;float:left;"):e.attr("style",n+";"+a.style)):(o=WPGlobusCore.getTranslations(i.val())[WPGlobusCoreData.language],e.attr("value",o),e.attr("data-nodename","input"),""!=a.style&&e.attr("style",n+";"+a.style)),""!=a.dialog&&e.attr("data-dialog",JSON.stringify(a.dialog)),u=u.replace(/{{clone_id}}/g,f.clone_id),u="id"==f.element_by?(u=(u=u.replace(/{{id}}/g,f.clone_id)).replace(/{{name}}/g,"")).replace(/{{nodename}}/g,""):(u=(u=u.replace(/{{id}}/g,"")).replace(/{{name}}/g,s)).replace(/{{nodename}}/g,r),u="textarea"==r?u.replace("{{style}}","float:left;margin-top:0;"):u.replace("{{style}}","");var c="textarea"==r?f.startButtonClass+" wpglobus-textarea wpglobus-textarea-"+f.clone_id:f.startButtonClass;u=u.replace("{{classes}}",c),u=""==a.dialogTitle?u.replace("{{title}}",f.dialogTitle):u.replace("{{title}}",a.dialogTitle),u=""==a.sbTitle?u.replace("{{sbTitle}}",a.sbTitle):u.replace("{{sbTitle}}",'title="'+a.sbTitle+'"'),m(u).insertAfter(i),m(e).insertAfter(i),"textarea"==r&&(m("#wpglobus-"+f.clone_id).addClass("wpglobus-textarea-"+f.clone_id),m(".wpglobus-textarea-"+f.clone_id).wrapAll('<div class="wpglobus-textarea-wrapper" style="'+a.styleTextareaWrapper+'"></div>'));var g,b=!1;if(""==a.onChangeClass)g="#wpglobus-"+f.clone_id;else{g="."+a.onChangeClass;var p=m._data(m(document)[0],"events");void 0===p?b=!0:void 0!==p.change&&m.each(p.change,function(t,a){if(a.selector==g)return!(b=!0)})}return b?!0:(m(document).on("change",g,function(){var t=m(this),a=t.data("source-id");a=""==a?t.data("nodename")+'[name="'+t.data("source-name")+'"]':"#"+a,m(a).val(WPGlobusCore.getString(m(a).val(),t.val()))}),!0)}},saveDialog:function(){var e,o,n,i="",l="",s="";m(".wpglobus_dialog_textarea").each(function(t,a){e=m(a),o=e.val(),(n=e.data("language"))==WPGlobusAdmin.data.language&&(s=o),""!=o&&(i+=WPGlobusCore.addLocaleMarks(o,n),n==WPGlobusCoreData.default_language&&(l=o))}),i=i.length==l.length+8?l:i,m(f.id).val(i),i=""==s?l:s,m(f.wpglobus_id).val(i),f.runCallback(f.option.dialog.afterSave)},dialog:m("#wpglobus-dialog-wrapper").dialog({autoOpen:!1,width:650,modal:!0,dialogClass:"wpglobus-dialog",buttons:[{text:"Save",class:"wpglobus-button-save",click:function(){f.saveDialog(),f.dialog.dialog("close")}},{text:"Cancel",class:"wpglobus-button-cancel",click:function(){f.dialog.dialog("close")}}],open:function(t,a){var e=f.dialogTitle;void 0!==f.attrs.maxlength&&(m(".wpglobus_dialog_textarea").attr("maxlength",f.attrs.maxlength),e+=" | maxlength="+f.attrs.maxlength),m(".wpglobus-dialog .ui-dialog-title").text(e),m(this).removeClass("hidden")},close:function(){m(this).addClass("hidden"),f.runCallback(f.option.dialog.close),f.form[0].reset()}}),attachListener:function(){m(document).on("click",f.option.settingsClass,function(){m(".wpglobus_dialog_options_wrapper").hasClass("hidden")?m(".wpglobus_dialog_options_wrapper").removeClass("hidden"):m(".wpglobus_dialog_options_wrapper").addClass("hidden")}),m(document).on("click",".wpglobus_dialog_option",function(t){var a=m(this),e=a.data("object");f.order.action="save_post_meta_settings",f.order.post_type=WPGlobusAdmin.data.post_type,f.order.checked=a.prop("checked"),f.order.id=a.attr("id"),f.order.meta_key=a.data("meta-key"),f.ajax(f.order).done(function(t){"ok"==t.result&&("true"==t.checked?m(e).removeClass("wpglobus_dialog_start_hidden"):m(e).addClass("wpglobus_dialog_start_hidden"))}).fail(function(t){}).always(function(t,a){})}),m(document).on("click",f.option.listenClass,function(a){f.element=m(this),f.id=f.element.data("source-id"),""==f.id?(f.id=f.element.data("nodename")+'[name="'+f.element.data("source-name")+'"]',f.wpglobus_id="#wpglobus-"+f.convertToId(f.element.data("source-name"))):(f.wpglobus_id="#wpglobus-"+f.id,f.id="#"+f.id),f.clicks++,1==f.clicks&&setTimeout(function(){if(1==f.clicks)f.onClick(a);else{var t=m(f.id);t.hasClass("hidden")?t.removeClass("hidden").attr("style","display:block;"):t.addClass("hidden").attr("style","display:none;")}f.clicks=0},200)}),f.form=f.dialog.find("form#wpglobus-dialog-form").on("submit",function(t){t.preventDefault(),f.saveDialog()})},ajax:function(t){return m.ajax({type:"POST",url:WPGlobusAdmin.ajaxurl,data:{action:WPGlobusAdmin.process_ajax,order:t},dataType:"json",async:!1})},onClick:function(t){void 0===f.element.data("dialog-title")||""==f.element.data("dialog-title")?f.dialogTitle=f.option.dialogTitle:f.dialogTitle=f.element.data("dialog-title"),void 0!==f.id&&(f.attrs.maxlength=m(f.id).attr("maxlength")),f.source=f.element.data("source-value"),void 0===f.source&&(f.source=m(f.id).val(),"ajax"==f.request||(f.value=WPGlobusCore.getTranslations(f.source))),f.option.dialog=m.extend({},f.option.dialogOptions,m(f.wpglobus_id).data("dialog")),""!=f.option.dialog.title&&(f.dialogTitle=f.option.dialog.title),m.each(f.value,function(t,a){var e=m("#wpglobus-dialog-"+t);e.val(a),e.attr("placeholder",WPGlobusCore.TextFilter(f.option.dialog.placeholder,t,"RETURN_IN_DEFAULT_LANGUAGE"))}),m("#wpglobus-dialog-form-footer").html(f.option.dialog.formFooter),f.runCallback(f.option.dialog.beforeOpen),f.dialog.dialog("open"),f.runCallback(f.option.dialog.afterOpen)},runCallback:function(t){if("object"==typeof t){var a=Object.keys(t)[0],e=t[Object.keys(t)[0]];"window"===a?"function"==typeof window[e]&&window[e](t[Object.keys(t)[1]]):"function"==typeof window[a][e]&&window[a][e](t[Object.keys(t)[1]])}else"string"==typeof t?"function"==typeof window[t]&&window[t]():"function"==typeof t&&t()}}}(jQuery),jQuery(document).ready(function(){"use strict";var t,c;window.WPGlobusAdminApp=(t=window.WPGlobusAdminApp||{},c=jQuery,t.App=function(t){void 0===window.WPGlobusAdminApp&&(this.config={debug:!1,version:WPGlobusAdmin.version},this.status="ok","undefined"==typeof WPGlobusAdmin?(this.status="error",this.config.debug&&console.log("WPGlobus: error options loading")):this.config.debug&&console.dir(WPGlobusAdmin),this.config.disable_first_language=['<div id="disable_first_language" style="display:block;" class="redux-field-errors notice-red">',"<strong>","<span>&nbsp;</span>",WPGlobusAdmin.i18n.cannot_disable_language,"</strong>","</div>"].join(""),c.extend(this.config,t),"ok"===this.status&&this.init())},t.App.prototype={$document:c(document),init:function(){WPGlobusCoreData.multisite=this.parseBool(WPGlobusCoreData.multisite),this.adminInit(),c("#content").addClass("wpglobus-editor").attr("data-language",WPGlobusAdmin.data.default_language),c("textarea[id^=content_]").each(function(t,a){var e=c(a).attr("id").replace("content_","");c(a).attr("data-language",e)}),"post.php"===WPGlobusAdmin.page?(this.postEdit(),this.set_dialog(),"undefined"!=typeof WPGlobusAioseop&&WPGlobusAioseop.init()):"menu-edit"===WPGlobusAdmin.page?(WPGlobusDialogApp.init({dialogTitle:"Edit description"}),this.navMenus()):"taxonomy-edit"===WPGlobusAdmin.page?WPGlobusAdmin.data.tag_id&&this.taxonomyEdit():"taxonomy-quick-edit"===WPGlobusAdmin.page?this.quickEdit("taxonomy"):"edit.php"===WPGlobusAdmin.page?(this.quickEdit("post"),0<_.size(WPGlobusAdmin.$_get)&&WPGlobusDialogApp.init()):"options-general.php"==WPGlobusAdmin.page?(this.optionsGeneral(),WPGlobusDialogApp.init({customData:WPGlobusCoreData.page_custom_data})):"widgets.php"==WPGlobusAdmin.page?(WPGlobusWidgets.init(),WPGlobusDialogApp.init({dialogTitle:"Edit text"})):"wpglobus_options"==WPGlobusAdmin.page?this.start():"wpglobusAdminCentral"==WPGlobusAdmin.page?this.adminCentral():WPGlobusDialogApp.init({customData:WPGlobusCoreData.page_custom_data})},parseBool:function(t){return!/^(false|0)$/i.test(t)&&!!t},getCurrentTab:function(){return c(".wpglobus-post-body-tabs-list .ui-tabs-active").data("language")},adminInit:function(){var t=c(".wpglobus-addons-group a").data("key");if(void 0!==t)if(0<=window.location.search.indexOf("page=wpglobus_options&tab="+t))WPGlobusCoreData.multisite?window.location=WPGlobusCoreData.pluginInstallLocation.multisite:window.location=WPGlobusCoreData.pluginInstallLocation.single;else{var a=c("#toplevel_page_wpglobus_options li").eq(t+1);WPGlobusCoreData.multisite?c(a).find("a").attr("href",WPGlobusCoreData.pluginInstallLocation.multisite).attr("onclick","window.location=jQuery(this).attr('href');return false;"):c(a).find("a").attr("href",WPGlobusCoreData.pluginInstallLocation.single).attr("onclick","window.location=jQuery(this).attr('href');return false;")}},optionsGeneral:function(){var o=c("#blogname"),t=c("body");o.addClass("hidden"),c("#wpglobus-blogname").insertAfter(o).removeClass("hidden"),t.on("blur",".wpglobus-blogname",function(){c(".wpglobus-blogname").each(function(t,a){var e=c(a);o.val(WPGlobusCore.getString(o.val(),e.val(),e.data("language")))})});var n=c("#blogdescription");n.addClass("hidden"),c("#wpglobus-blogdescription").insertAfter(n).removeClass("hidden"),t.on("blur",".wpglobus-blogdesc",function(){c(".wpglobus-blogdesc").each(function(t,a){var e=c(a);n.val(WPGlobusCore.getString(n.val(),e.val(),e.data("language")))})})},quickEdit:function(n){if(void 0!==WPGlobusAdmin.data.has_items&&WPGlobusAdmin.data.has_items){var o="",l=0;c(document).ajaxComplete(function(t,a,e){void 0!==e.data&&""!=o&&0<=e.data.indexOf("action=inline-save-tax&")&&(c("#"+o+" a.row-title").text(WPGlobusAdmin.qedit_titles[l][WPGlobusAdmin.data.language].name),c("#"+o+" .description").text(WPGlobusAdmin.qedit_titles[l][WPGlobusAdmin.data.language].description))});var i={};c("#the-list tr").each(function(t,a){var e=c(a),o="post"===n?"post-":"tag-";l=e.attr("id").replace(o,""),i[l]={},"post"===n?i[l].source=e.find(".post_title").text():"taxonomy"===n&&(i[l].source=c("#inline_"+l+" .name").text())});var t={action:"get_titles"};t.type=n,t.taxonomy=void 0!==WPGlobusAdmin.data.taxonomy&&WPGlobusAdmin.data.taxonomy,t.title=i,c.ajax({type:"POST",url:WPGlobusAdmin.ajaxurl,data:{action:WPGlobusAdmin.process_ajax,order:t},dataType:"json"}).done(function(t){WPGlobusAdmin.qedit_titles=t.qedit_titles,c.each(t.bulkedit_post_titles,function(t,a){c("#inline_"+t+" .post_title").text(a[WPGlobusAdmin.data.language].name)})}).fail(function(t){}).always(function(t,a){}),c("body").on("change",".wpglobus-quick-edit-title",function(){var n="",i=[];c(".wpglobus-quick-edit-title").each(function(t,a){var e=c(a),o=e.data("language");""!==e.val()&&(n=WPGlobusCore.getString(n,e.val(),o)),WPGlobusAdmin.qedit_titles[l][o].name=e.val(),i[t]=o});var t=c(document).triggerHandler("wpglobus_get_translations",{string:n,lang:i,id:l});void 0!==t&&(n=t),c("input.ptitle").eq(0).attr("value",n),WPGlobusAdmin.qedit_titles[l].source=n}),void 0!==WPGlobusAdmin.data.tags&&c.each(WPGlobusAdmin.data.tags,function(t,a){WPGlobusAdmin.data.value[a].post_id={}}),c("button.save, input#bulk_edit").on("mouseenter",function(t){void 0!==WPGlobusAdmin.data.tags&&("bulk_edit"==t.currentTarget.id?c("input#bulk_edit").unbind("click"):c("button.save").unbind("click"),c("button.save, input#bulk_edit").on("click",function(a){var t=c.when(),e=(c(this),c.Deferred());e.resolve(function(t){t.next(".spinner").css({visibility:"visible"}),"bulk_edit"!=a.currentTarget.id&&c.ajaxSetup({async:!1});var o,n,i,l=t.parents("tr"),s=l.attr("id").replace("edit-","");c.each(WPGlobusAdmin.data.tags,function(t,a){if(0==(o=l.find("textarea[name='"+WPGlobusAdmin.data.names[a]+"']")).length)return!0;WPGlobusAdmin.data.value[a].post_id[s]=o.val(),n=WPGlobusAdmin.data.value[a].post_id[s].split(","),i=[];for(var e=0;e<n.length;e++)n[e]=n[e].trim(" "),""!=n[e]&&(void 0===WPGlobusAdmin.data.tag[a][n[e]]?i[e]=n[e]:i[e]=WPGlobusAdmin.data.tag[a][n[e]]);o.val(i.join(", "))})}(c(this))),t=t.then(function(){return c.when(e.done())}).then(function(){"bulk_edit"!=a.currentTarget.id&&setTimeout(function(){inlineEditPost.save(l),c.ajaxSetup({async:!0})},50)})}))}),c("#the-list").on("click",".editinline",function(){var t=c(this);if(o=t.parents("tr").attr("id"),"post"===n)l=o.replace("post-","");else{if("taxonomy"!==n)return;l=o.replace("tag-","")}"post"===n&&void 0!==WPGlobusAdmin.data.tags&&c.each(WPGlobusAdmin.data.tags,function(t,a){if(""!=WPGlobusAdmin.data.value[a]){var e,o=c("#edit-"+l+' textarea[name="'+WPGlobusAdmin.data.names[a]+'"]').val();void 0!==o&&(e=o.split(","),c.each(e,function(t,a){o=o.replace(a,WPGlobusCore.TextFilter(a,WPGlobusCoreData.language))}),c("#edit-"+l+' textarea[name="'+WPGlobusAdmin.data.names[a]+'"]').val(o))}});var a=c("#edit-"+l+" input.ptitle").eq(0),e=a.parents("label");a.val(WPGlobusAdmin.qedit_titles[l].source),a.addClass("hidden"),c(WPGlobusAdmin.data.template).insertAfter(e),void 0===WPGlobusAdmin.qedit_titles[l]&&(WPGlobusAdmin.qedit_titles[l]={},WPGlobusAdmin.qedit_titles[l].source=c("#"+o+" .name a.row-title").text(),c(WPGlobusAdmin.data.enabled_languages).each(function(t,a){WPGlobusAdmin.qedit_titles[l][a]={},a==WPGlobusAdmin.data.default_language?WPGlobusAdmin.qedit_titles[l][a].name=WPGlobusAdmin.qedit_titles[l].source:WPGlobusAdmin.qedit_titles[l][a].name="",WPGlobusAdmin.qedit_titles[l][a].description=""})),c(".wpglobus-quick-edit-title").each(function(t,a){var e=c(a),o=e.data("language");e.attr("id",o+l),void 0!==WPGlobusAdmin.qedit_titles[l][o]&&(WPGlobusAdmin.qedit_titles[l][o].name=WPGlobusAdmin.qedit_titles[l][o].name.replace(/\\\'/g,"'"),WPGlobusAdmin.qedit_titles[l][o].name=WPGlobusAdmin.qedit_titles[l][o].name.replace(/\\\"/g,'"'),e.attr("value",WPGlobusAdmin.qedit_titles[l][o].name),WPGlobusAdmin.qedit_titles[l].source=WPGlobusCore.getString(WPGlobusAdmin.qedit_titles[l].source,WPGlobusAdmin.qedit_titles[l][o].name,o))}),c("input.ptitle").eq(0).attr("value",WPGlobusAdmin.qedit_titles[l].source)})}},taxonomyEdit:function(){var a=[];a[0]="name",a[1]="description",c.each(WPGlobusCoreData.enabled_languages,function(t,u){c.each(a,function(t,a){var e,o,n,i,l,s,d;o=u,i=c("#"+(e=a)),l=i.clone(),s=i.attr("name"),d="wpglobus-element wpglobus-element_"+e+" wpglobus-element_"+o+" wpglobus-translatable",n=(n=document.getElementById(e)).nodeName,c(l).attr("id",e+"_"+o),c(l).attr("name",s+"_"+o),o!==WPGlobusCoreData.default_language&&(d+=" hidden"),c(l).attr("class",d),c(l).attr("data-save-to",e),c(l).attr("data-language",o),"INPUT"==n?c(l).attr("value",c("#wpglobus-link-tab-"+o).data(e)):"TEXTAREA"==n&&c(l).text(c("#wpglobus-link-tab-"+o).data(e)),i.addClass("hidden"),0==c(".wpglobus-element_"+e).length?c(l).insertAfter(i):c(l).insertAfter(c(".wpglobus-element_"+e).last())})}),c(".wpglobus-taxonomy-tabs").insertAfter("#ajax-response"),c(".wrap").tabs(),c("body").on("click",".wpglobus-taxonomy-tabs li",function(t){var a=c(this).data("language");c(".wpglobus-element").addClass("hidden"),c(".wpglobus-element_"+a).removeClass("hidden")}),c(".wpglobus-element").on("change",function(){var n=c(this).data("save-to"),i="";c(".wpglobus-element").each(function(t,a){var e=c(a),o=e.val();e.data("save-to")==n&&""!==o&&(i+=WPGlobusCore.addLocaleMarks(o,e.data("language")))}),c("#"+n).val(i)}),c(WPGlobusAdmin.data.multilingualSlug.title).insertAfter(".term-slug-wrap th label")},navMenus:function(){function e(){n!==c(i).length&&(clearInterval(o),c(i).each(function(t,a){var e=c(a);if(!e.hasClass("wpglobus-menu-item")){var l=c(a).attr("id");c.each(["input.edit-menu-item-title","input.edit-menu-item-attr-title"],function(t,a){var e=c("#"+l+" "+a),o=c(e);if(!o.hasClass("wpglobus-hidden")){o.addClass("wpglobus-hidden"),o.css("display","none");var n=o.parent("label"),i=o.parents("p");c(i).css("height","80px"),c(n).append('<div style="color:#f00;">'+WPGlobusAdmin.i18n.save_nav_menu+"</div>")}}),e.addClass("wpglobus-menu-item")}}))}var o,n,i="#menu-to-edit .menu-item";c.ajaxSetup({beforeSend:function(t,a){void 0!==a.data&&0<=a.data.indexOf("action=add-menu-item")&&(n=c(i).length,o=setInterval(e,500))}}),c(i).each(function(t,a){var e=c(a).attr("id"),u=e.replace("menu-item-","");c.each(["input.edit-menu-item-title","input.edit-menu-item-attr-title"],function(n,i){var l=c("#"+e+" "+i);l.val()!=WPGlobusAdmin.data.items[u][i].source&&l.val(WPGlobusAdmin.data.items[u][i].source);var s=c("#"+e+" "+i).parents("p"),d=0;c.each(WPGlobusAdmin.data.open_languages,function(t,a){var e=l.clone();e.attr("id",l.attr("id")+"-"+a),e.attr("name",l.attr("id")+"-"+a),e.attr("data-language",a),e.attr("data-item-id",u),e.attr("placeholder",WPGlobusAdmin.data.en_language_name[a]);var o=WPGlobusAdmin.data.items[u][a][i].class;0===n&&a===WPGlobusAdmin.data.default_language?e.attr("class",o+" edit-menu-item-title"):e.attr("class",o),""!=WPGlobusAdmin.data.items[u][a][i].caption?e.attr("value",WPGlobusAdmin.data.items[u][a][i].caption):e.attr("value",""),e.css("margin-bottom","0.6em"),c(s).append(e),d=t}),d=40*(d+1),l.css("display","none").attr("class","").addClass("widefat wpglobus-hidden"),c(s).css("height",d+"px").addClass("wpglobus-menu-item-box")}),c(a).addClass("wpglobus-menu-item")}),c(".menus-move-left, .menus-move-right").each(function(t,a){var e,o=c(a),n=(o.parents("li").attr("id").replace("menu-item-",""),o.attr("title"));void 0!==n&&c.each(WPGlobusAdmin.data.post_titles,function(t,a){0<=n.indexOf(t)&&(e=n.replace(t,a),o.attr("title",e),o.text(e))})}),c(".edit-menu-item-title").trigger("change"),wpNavMenu.refreshAdvancedAccessibility(),wpNavMenu.menusChanged=!1,c(".wpglobus-menu-item").on("change",function(){var t,a,e=c(this),o=e.data("item-id");e.hasClass("wpglobus-item-title")&&(t=WPGlobusCore.getString(c("input#edit-menu-item-title-"+o).val(),e.val(),e.data("language")),void 0!==(a=c(document).triggerHandler("wpglobus_get_menu_translations",{string:t,lang:WPGlobusCoreData.open_languages,id:o,type:"input.edit-menu-item-title"}))&&(t=a),c("input#edit-menu-item-title-"+o).val(t)),e.hasClass("wpglobus-item-attr")&&(t=WPGlobusCore.getString(c("input#edit-menu-item-attr-title-"+o).val(),e.val(),e.data("language")),void 0!==(a=c(document).triggerHandler("wpglobus_get_menu_translations",{string:t,lang:WPGlobusCoreData.open_languages,id:o,type:"input.edit-menu-item-attr-title"}))&&(t=a),c("input#edit-menu-item-attr-title-"+o).val(t))});var a=[];setTimeout(function(){c(".edit-menu-item-description").each(function(){var t=c(this).attr("id");a.push(t),WPGlobusDialogApp.addElement(t)}),c(".wpglobus_dialog_start").each(function(){c(this).css({"font-style":"normal"}),c(this).after("<br />")});var t={action:"getNavMenuItemsDescription"};t.menuItems=a,c.ajax({type:"POST",url:WPGlobusAdmin.ajaxurl,data:{action:WPGlobusAdmin.process_ajax,order:t},dataType:"json"}).done(function(t){"object"==typeof t&&c.each(t,function(t,a){""!=a&&(c("#"+t).val(a),c("#wpglobus-"+t).val(WPGlobusCore.TextFilter(a,WPGlobus.language,"RETURN_EMPTY")))})}).fail(function(t){}).always(function(t,a){})},1e3)},postEdit:function(){c(document).on("heartbeat-send",function(t,o){void 0!==o.wp_autosave&&(o.wpglobus_heartbeat="wpglobus",c.each(WPGlobusAdmin.data.open_languages,function(t,a){var e=c("#title_"+a).val()||"";""!=(e=c.trim(e))&&(o.wp_autosave["post_title_"+a]=e),e=c("#content_"+a).val()||"",""!=(e=c.trim(e))&&(o.wp_autosave["content_"+a]=e)}))});var e="#postdivrich",o=!0,a="#post-body-content";if(!1===WPGlobusAdmin.data.support.editor&&(o=!(e="#titlediv")),!1===WPGlobusAdmin.data.support.title&&(o=!1),c(a).prepend(c(".wpglobus-post-body-tabs-list")),c.each(WPGlobusAdmin.tabs,function(t,a){"default"===a?(c(e).wrap('<div id="tab-default"></div>'),o&&c(c("#titlediv")).insertBefore(e)):(c(e+"-"+a).wrap('<div id="tab-'+a+'"></div>'),o&&c(c("#titlediv-"+a)).insertBefore(e+"-"+a))}),setTimeout(function(){var i=!1;c(a).addClass("wpglobus-post-body-tabs").tabs({beforeActivate:function(t,a){!function(){if(!i){var t=c("#wp-content-editor-container .mce-btn-group").eq(0),a=t.children("div");if(0!=t.length&&0!=a.length){var l=t.attr("style"),s=a.attr("style");c.each(WPGlobusCoreData.enabled_languages,function(t,a){if(a!=WPGlobusCoreData.default_language){var e=c("#wp-content_"+a+"-editor-container .mce-btn-group").eq(0),o=e.children("div");if(0==e.length||0==o.length)return!0;var n=e.attr("style"),i=o.attr("style");l!=n&&e.attr("style",l),s!=i&&o.attr("style",s)}}),i=!0}}}();var e=a.oldTab[0].id.replace("link-tab-",""),o=a.newTab[0].id.replace("link-tab-","");c(".wpglobus-tab-link").removeClass("wpglobus-tab-link-active"),c("#link-tab-"+o+" .wpglobus-tab-link").addClass("wpglobus-tab-link-active"),"default"==e&&(e=WPGlobusCoreData.default_language),"default"==o&&(o=WPGlobusCoreData.default_language);var n=c(document).triggerHandler("wpglobus_post_body_tabs",[e,o]);return!(!n&&void 0!==n)}})},500),c("#title").val(WPGlobusAdmin.title),c("#content").text(WPGlobusAdmin.content),"undefined"!=typeof WPGlobusVendor&&WPGlobusVendor.vendor.WPSEO&&("undefined"!=typeof wpglobus_wpseo?wpglobus_wpseo():"undefined"!=typeof WPGlobusYoastSeo&&("undefined"!=typeof WPGlobusYoastSeoPremium&&WPGlobusYoastSeoPremium&&"function"==typeof WPGlobusYoastSeoPremium.init&&WPGlobusYoastSeoPremium.init(),"function"==typeof WPGlobusYoastSeo.init&&WPGlobusYoastSeo.init())),WPGlobusAdmin.data.modify_excerpt){var n=c("#excerpt");n.addClass("hidden").css({display:"none"}),c(WPGlobusAdmin.data.template).insertAfter(n),c("body").on("change",".wpglobus-excerpt",function(){var t=c(this);n.val(WPGlobusCore.getString(n.val(),t.val(),t.data("language")))})}if(void 0!==wp.utils&&void 0!==wp.utils.WordCounter){WPGlobusCoreData.wordCounter={};var l=this,s={};c.each(WPGlobusCoreData.enabled_languages,function(t,a){if(a==WPGlobusCoreData.default_language)return!0;var n,e,i;s[t]="content_"+a,n=jQuery,e=new wp.utils.WordCounter,i=a,WPGlobusCoreData.wordCounter[i]={},WPGlobusCoreData.wordCounter[i].counter=e,n(function(){function o(t){var a,e;"object"==typeof t&&(t="tinymce"==t?l.getCurrentTab():t.target.id.replace("content_","")),void 0!==WPGlobusCoreData.wordCounter[t]&&(a=!WPGlobusCoreData.wordCounter[t].contentEditor||WPGlobusCoreData.wordCounter[t].contentEditor.isHidden()?WPGlobusCoreData.wordCounter[t].content.val():WPGlobusCoreData.wordCounter[t].contentEditor.getContent({format:"raw"}),(e=WPGlobusCoreData.wordCounter[t].counter.count(a))!==WPGlobusCoreData.wordCounter[t].prevCount&&WPGlobusCoreData.wordCounter[t].count.text(e),WPGlobusCoreData.wordCounter[t].prevCount=e)}WPGlobusCoreData.wordCounter[i].content=n("#content_"+i),WPGlobusCoreData.wordCounter[i].count=n("#wp-word-count-"+i).find(".word-count-"+i),WPGlobusCoreData.wordCounter[i].prevCount=0,n(document).on("tinymce-editor-init",function(t,a){if(-1!=n.inArray(a.id,s)){var e=a.id.replace("content_","");(WPGlobusCoreData.wordCounter[e].contentEditor=a).on("nodechange keyup",_.debounce(o,1e3))}}),WPGlobusCoreData.wordCounter[i].content.on("input keyup",_.debounce(o,1e3)),o(i)})})}c(document).on("click","#publish, #save-post",function(){if(1<WPGlobusAdmin.data.open_languages.length){c(document).triggerHandler("wpglobus_before_save_post",{content_tabs_id:a});var t,e=c("#title").val(),o="",n="";0==e.length&&(t=WPGlobusAdmin.data.open_languages.indexOf(WPGlobusAdmin.data.default_language),WPGlobusAdmin.data.open_languages.splice(t,1),c(WPGlobusAdmin.data.open_languages).each(function(t,a){n=0==t?"":"-",0<(e=c("#title_"+a).val()).length&&(0==o.length&&(n=""),o=o+n+e)})),0<o.length&&c("#title").val(o)}void 0===WPGlobusAdmin.data.tagsdiv||WPGlobusAdmin.data.tagsdiv.length<1||c(WPGlobusAdmin.data.tagsdiv).each(function(t,a){if(0==c("#"+a).length)return!0;var e=a.replace("tagsdiv-","");if("undefined"===e)return!0;if(0==c("#tax-input-"+e).length)return!0;var o,n=[];c("#tagsdiv-"+e+" .tagchecklist li").each(function(t,a){o=(o=c(a).html()).replace(/<button.*<\/button>&nbsp;/,""),void 0===WPGlobusAdmin.data.tag[e][o]?n[t]=o:n[t]=WPGlobusAdmin.data.tag[e][o]}),c("#tax-input-"+e).val(n.join(", "))})}),c(".ui-state-default").on("click",function(){"link-tab-default"===c(this).attr("id")&&(c(window).scrollTop(c(window).scrollTop()+1),c(window).scrollTop(c(window).scrollTop()-1))}),c(document).on("tabsactivate",a,function(t,a){WPGlobusAdmin.currentTab=a.newTab[0].dataset.language}),c("#titlewrap input").addClass("wpglobus-translatable"),c(".title_wpglobus").addClass("wpglobus-translatable"),c(document).triggerHandler("wpglobus_after_post_edit")},adminCentral:function(){c(".wpglobus-admin-central-tab").css({display:"none"}),1<c(".nav-tab-active").length&&c(".wpglobus-about-wrap .nav-tab-wrapper a").removeClass("nav-tab-active");var e=!0;0==location.hash.indexOf("#")&&c(".wpglobus-about-wrap .nav-tab-wrapper a").each(function(t,a){c(a).attr("href")==location.hash&&(e=!1,c(a).addClass("nav-tab-active"))}),e&&c(".wpglobus-about-wrap .nav-tab-wrapper a").eq(0).addClass("nav-tab-active");var t=c(".wpglobus-about-wrap .nav-tab-active").data("tab-id");""!=t&&c("#"+t).css({display:"block"}),c(document).on("click",".wpglobus-about-wrap .nav-tab",function(t){var a=c(this);a.hasClass("nav-tab-active")||(c(".wpglobus-admin-central-tab").css({display:"none"}),c(".wpglobus-about-wrap .nav-tab").removeClass("nav-tab-active"),a.addClass("nav-tab-active"),""!=a.data("tab-id")&&c("#"+a.data("tab-id")).css({display:"block"}))})},start:function(){var a=this;c("#wpglobus_flags").select2({formatResult:this.format,formatSelection:this.format,minimumResultsForSearch:-1,escapeMarkup:function(t){return t}}),c("body").on("click","#enabled_languages-list li:first input",function(t){return t.preventDefault(),c(".redux-save-warn").css({display:"none"}),c("#enabled_languages-list").find("li:first > input").val("1"),0===c("#disable_first_language").length&&c(a.config.disable_first_language).insertAfter("#info_bar"),!1})},format:function(t){return'<img class="wpglobus_flag" src="'+WPGlobusAdmin.flag_url+t.text+'"/>&nbsp;&nbsp;'+t.text},set_dialog:function(){if(void 0===WPGlobusAdmin.data.customFieldsEnabled||(WPGlobusAdmin.data.customFieldsEnabled=this.parseBool(WPGlobusAdmin.data.customFieldsEnabled),WPGlobusAdmin.data.customFieldsEnabled)){void 0===WPGlobusAdmin.data.excludeCustomFields&&(WPGlobusAdmin.data.excludeCustomFields=!1);var o,a=!1,n=function(t){var s,d,u,r="wpglobus_dialog_start wpglobus_dialog_icon";u=['<div class="wpglobus_dialog_options_wrapper hidden">','<input style="width:initial;" id="wpglobus-cb-{{id}}" data-object="#wpglobus-dialog-start-{{id}}" data-meta-key="{{meta-key}}" class="wpglobus_dialog_option wpglobus_dialog_cb" type="checkbox" {{checked}} />',"</div>"].join(""),c(void 0===t?"#the-list tr":"#the-list tr#"+t).each(function(){var t,a,e,o=c(this),n=o.attr("id"),i=o.find("textarea"),l=r;return void 0===(s=i.attr("id"))||(e=c("#"+n+"-key").val(),!(!WPGlobusAdmin.data.excludeCustomFields||-1==c.inArray(e,WPGlobusAdmin.data.excludeCustomFields))||(t=c("#"+s).clone(),c(i).addClass("wpglobus-dialog-field-source hidden"),a=i.attr("name"),c(t).attr("id","wpglobus-"+s),c(t).attr("name","wpglobus-"+a),c(t).attr("data-source-id",s),c(t).attr("class","wpglobus-dialog-field"),c(t).val(WPGlobusCore.TextFilter(c(i).val(),WPGlobusCoreData.language)),c(t).insertAfter(i),d=(d=u.replace(/{{id}}/g,s)).replace(/{{meta-key}}/g,e),void 0===WPGlobusAdmin.data.post_meta_settings[WPGlobusAdmin.data.post_type]?d=d.replace(/{{checked}}/,"checked"):l=void 0!==WPGlobusAdmin.data.post_meta_settings[WPGlobusAdmin.data.post_type][e]&&"false"==WPGlobusAdmin.data.post_meta_settings[WPGlobusAdmin.data.post_type][e]?(d=d.replace(/{{checked}}/,""),r+" wpglobus_dialog_start_hidden"):(d=d.replace(/{{checked}}/,"checked"),r),void o.append('<td style="width:20px;"><div id="wpglobus-dialog-start-'+s+'" data-type="control" data-source-type="textarea" data-source-id="'+s+'" class="'+l+'"></div>'+d+"</td>")))}),!a&&0<c("#list-table .wpglobus_dialog_start").length&&(c("#list-table thead tr").append('<th class="wpglobus-control-head"><div class="wpglobus_dialog_settings wpglobus_dialog_icon"></div></th>'),a=!0)};n(),c("body").on("change",".wpglobus-dialog-field",function(){var e,o,n=c(this),t="#"+n.data("source-id"),i="";e=c(t).val(),/(\{:|\[:|<!--:)[a-z]{2}/.test(e)?(c.each(WPGlobusCoreData.enabled_languages,function(t,a){""!=(o=a==WPGlobusCoreData.language?n.val():WPGlobusCore.TextFilter(e,a,"RETURN_EMPTY"))&&(i+=WPGlobusCore.addLocaleMarks(o,a))}),c(t).val(i)):c(t).val(n.val())}),c(document).ajaxSend(function(t,a,e){"add-meta"==e.action&&(o=e.element)}),c(document).ajaxComplete(function(t,a,e){"add-meta"==e.action&&void 0!==a.responseXML&&n("newmeta"==o?"meta-"+c(a.responseXML.documentElement.outerHTML).find("meta").attr("id"):o)}),WPGlobusDialogApp.init({dialogTitle:"Edit meta"})}}},new t.App,t)});
includes/js/wpglobus-yoastseo-140.js ADDED
@@ -0,0 +1,156 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /**
2
+ * WPGlobus for YoastSeo v.14
3
+ * Interface JS functions
4
+ *
5
+ * @since 2.4
6
+ *
7
+ * @package WPGlobus
8
+ */
9
+ /*jslint browser: true*/
10
+ /*global jQuery, console, wpseoReplaceVarsL10n, WPGlobusVendor, WPGlobusCoreData*/
11
+
12
+ jQuery(document).ready( function ($) {
13
+ 'use strict';
14
+
15
+ if ( typeof wpseoReplaceVarsL10n === 'undefined' ) {
16
+ return;
17
+ }
18
+
19
+ if ( typeof WPGlobusCoreData === 'undefined' ) {
20
+ return;
21
+ }
22
+
23
+ if ( typeof WPGlobusVendor === 'undefined' ) {
24
+ return;
25
+ }
26
+
27
+ var api = {
28
+ initSeoAnalysis: false,
29
+ initReadability: false,
30
+ parseBool: function(b) {
31
+ return !(/^(false|0)$/i).test(b) && !!b;
32
+ },
33
+ moduleState: function(){
34
+ if ( 'string' === typeof WPGlobusYoastSeo.plus_module ) {
35
+ if ( '' != WPGlobusYoastSeo.plus_module ) {
36
+ return WPGlobusYoastSeo.plus_module;
37
+ }
38
+ }
39
+ return api.parseBool(WPGlobusYoastSeo.plus_access);
40
+ },
41
+ isPremium: function(){
42
+ return WPGlobusVendor.vendor['WPSEO_PREMIUM'];
43
+ },
44
+ isDefaultLanguage: function(){
45
+ return api.parseBool(WPGlobusYoastSeo.is_default_language);
46
+ },
47
+ isBuilderPage: function(){
48
+ return api.parseBool(WPGlobusYoastSeo.builder_page);
49
+ },
50
+ getSuggest: function(type){
51
+ var suggest = '';
52
+ if ( 'undefined' === typeof type ) {
53
+ return suggest;
54
+ }
55
+ if ( 'inactive' === api.moduleState() ) {
56
+ if ( 'keyword' == type ) {
57
+ suggest = WPGlobusVendor.i18n.yoastseo_plus_meta_keywords_inactive;
58
+ } else if( 'analysis' == type ) {
59
+ suggest = WPGlobusVendor.i18n.yoastseo_plus_page_analysis_inactive;
60
+ } else if( 'readability' == type ) {
61
+ suggest = WPGlobusVendor.i18n.yoastseo_plus_readability_inactive;
62
+ }
63
+ } else if( 'boolean' == typeof api.moduleState() && ! api.moduleState() ) {
64
+ if ( 'keyword' == type ) {
65
+ suggest = WPGlobusVendor.i18n.yoastseo_plus_meta_keywords_access;
66
+ } else if( 'analysis' == type ) {
67
+ suggest = WPGlobusVendor.i18n.yoastseo_plus_page_analysis_access;
68
+ } else if( 'readability' == type ) {
69
+ suggest = WPGlobusVendor.i18n.yoastseo_plus_readability_access;
70
+ }
71
+ }
72
+ suggest = '<div class="wpglobus-suggest" style="font-weight:bold;border:1px solid rgb(221, 221, 221);height:35px;width:90%;padding:8px 10px;">'+suggest+'</div>';
73
+ return suggest;
74
+ },
75
+ init: function() {
76
+ if ( api.isBuilderPage() ) {
77
+ api.start();
78
+ }
79
+ },
80
+ start: function() {
81
+ api.setMetaBoxTitle();
82
+ if ( ! api.isDefaultLanguage() ) {
83
+ if ( 'inactive' == api.moduleState() || ! api.moduleState() ) {
84
+ api.setKeywordField();
85
+ api.setSeoAnalysis();
86
+ api.setReadability();
87
+ }
88
+ }
89
+ },
90
+ setKeywordField: function() {
91
+ setTimeout( function(){
92
+ var box = $('#focus-keyword-input-metabox').parent('div');
93
+ if ( box.length == 1 ) {
94
+ box.empty().append( api.getSuggest('keyword') );
95
+ }
96
+ }, 2000);
97
+ },
98
+ setReadability: function() {
99
+ var selector = $('.yoast-aria-tabs li').eq(1);
100
+ $(document).on('click', selector, function(ev) {
101
+ if ( ! api.initReadability ) {
102
+ setTimeout( function(){
103
+ $('#wpseo-meta-section-readability div').each(function(i, elm){
104
+ var $elm = $(elm);
105
+ if ( -1 !== $elm.attr('class').indexOf('ContentAnalysis__ContentAnalysisContainer') ) {
106
+ $elm.empty().append( api.getSuggest('readability') );
107
+ return false;
108
+ }
109
+ });
110
+ api.initReadability = true;
111
+ }, 100);
112
+ }
113
+ });
114
+ },
115
+ setSeoAnalysis: function() {
116
+ var container;
117
+ setTimeout( function(){
118
+ var containers = $('#yoast-seo-analysis-collapsible-metabox').parents('div');
119
+ if ( 'undefined' !== typeof containers[0] ) {
120
+ container = containers[0];
121
+ }
122
+ }, 500);
123
+ $(document).on('click', container, function(ev) {
124
+ setTimeout( function(){
125
+ var boxAnalysis = false;
126
+ $('#wpseo-metabox-root span').each(function(i, elm){
127
+ var $elm = $(elm);
128
+ if ( -1 !== $elm.attr('class').indexOf('SeoAnalysis__') ) {
129
+ var _class = $elm.attr('class').split(' ')[0];
130
+ boxAnalysis = $('.'+_class).next();
131
+ return false;
132
+ }
133
+ });
134
+ if ( boxAnalysis ) {
135
+ boxAnalysis.empty().append( api.getSuggest('analysis') );
136
+ }
137
+ }, 300);
138
+ });
139
+ },
140
+ setMetaBoxTitle: function() {
141
+ var box = $('#wpseo_meta .hndle'); // post.php
142
+ if ( box.length == 1 ) {
143
+ var content = box.text();
144
+ box.text(content+' ('+WPGlobusCoreData.en_language_name[ WPGlobusYoastSeo.language ]+')');
145
+ return;
146
+ }
147
+ box = $('#wpseo_meta > h2 > span'); // term.php
148
+ if ( box.length == 1 ) {
149
+ var content = box.text();
150
+ box.text(content+' ('+WPGlobusCoreData.en_language_name[ WPGlobusYoastSeo.language ]+')');
151
+ }
152
+ }
153
+ }
154
+ WPGlobusYoastSeo = $.extend({}, WPGlobusYoastSeo, api);
155
+ WPGlobusYoastSeo.init();
156
+ });
includes/js/wpglobus-yoastseo-140.min.js ADDED
@@ -0,0 +1 @@
 
1
+ jQuery(document).ready(function(n){"use strict";if("undefined"!=typeof wpseoReplaceVarsL10n&&"undefined"!=typeof WPGlobusCoreData&&"undefined"!=typeof WPGlobusVendor){var a={initSeoAnalysis:!1,initReadability:!1,parseBool:function(e){return!/^(false|0)$/i.test(e)&&!!e},moduleState:function(){return"string"==typeof WPGlobusYoastSeo.plus_module&&""!=WPGlobusYoastSeo.plus_module?WPGlobusYoastSeo.plus_module:a.parseBool(WPGlobusYoastSeo.plus_access)},isPremium:function(){return WPGlobusVendor.vendor.WPSEO_PREMIUM},isDefaultLanguage:function(){return a.parseBool(WPGlobusYoastSeo.is_default_language)},isBuilderPage:function(){return a.parseBool(WPGlobusYoastSeo.builder_page)},getSuggest:function(e){var t="";return void 0===e?t:("inactive"===a.moduleState()?"keyword"==e?t=WPGlobusVendor.i18n.yoastseo_plus_meta_keywords_inactive:"analysis"==e?t=WPGlobusVendor.i18n.yoastseo_plus_page_analysis_inactive:"readability"==e&&(t=WPGlobusVendor.i18n.yoastseo_plus_readability_inactive):"boolean"!=typeof a.moduleState()||a.moduleState()||("keyword"==e?t=WPGlobusVendor.i18n.yoastseo_plus_meta_keywords_access:"analysis"==e?t=WPGlobusVendor.i18n.yoastseo_plus_page_analysis_access:"readability"==e&&(t=WPGlobusVendor.i18n.yoastseo_plus_readability_access)),t='<div class="wpglobus-suggest" style="font-weight:bold;border:1px solid rgb(221, 221, 221);height:35px;width:90%;padding:8px 10px;">'+t+"</div>")},init:function(){a.isBuilderPage()&&a.start()},start:function(){a.setMetaBoxTitle(),a.isDefaultLanguage()||"inactive"!=a.moduleState()&&a.moduleState()||(a.setKeywordField(),a.setSeoAnalysis(),a.setReadability())},setKeywordField:function(){setTimeout(function(){var e=n("#focus-keyword-input-metabox").parent("div");1==e.length&&e.empty().append(a.getSuggest("keyword"))},2e3)},setReadability:function(){var e=n(".yoast-aria-tabs li").eq(1);n(document).on("click",e,function(e){a.initReadability||setTimeout(function(){n("#wpseo-meta-section-readability div").each(function(e,t){var o=n(t);if(-1!==o.attr("class").indexOf("ContentAnalysis__ContentAnalysisContainer"))return o.empty().append(a.getSuggest("readability")),!1}),a.initReadability=!0},100)})},setSeoAnalysis:function(){var t;setTimeout(function(){var e=n("#yoast-seo-analysis-collapsible-metabox").parents("div");void 0!==e[0]&&(t=e[0])},500),n(document).on("click",t,function(e){setTimeout(function(){var s=!1;n("#wpseo-metabox-root span").each(function(e,t){var o=n(t);if(-1!==o.attr("class").indexOf("SeoAnalysis__")){var a=o.attr("class").split(" ")[0];return s=n("."+a).next(),!1}}),s&&s.empty().append(a.getSuggest("analysis"))},300)})},setMetaBoxTitle:function(){var e=n("#wpseo_meta .hndle");if(1!=e.length){if(1==(e=n("#wpseo_meta > h2 > span")).length){t=e.text();e.text(t+" ("+WPGlobusCoreData.en_language_name[WPGlobusYoastSeo.language]+")")}}else{var t=e.text();e.text(t+" ("+WPGlobusCoreData.en_language_name[WPGlobusYoastSeo.language]+")")}}};WPGlobusYoastSeo=n.extend({},WPGlobusYoastSeo,a),WPGlobusYoastSeo.init()}});
includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php ADDED
@@ -0,0 +1,759 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Support of Yoast SEO 14.0
4
+ *
5
+ * @package WPGlobus\Vendor\YoastSEO
6
+ * @since 2.4
7
+ */
8
+
9
+ /**
10
+ * Class WPGlobus_YoastSEO.
11
+ */
12
+ class WPGlobus_YoastSEO {
13
+
14
+ /**
15
+ * Yoast SEO separator.
16
+ *
17
+ * @var string
18
+ */
19
+ public static $yoastseo_separator = '';
20
+
21
+ /**
22
+ * Name of the script.
23
+ *
24
+ * @var string
25
+ */
26
+ public static $handle_script = 'wpglobus-yoastseo';
27
+
28
+ /**
29
+ * Name of the premium script.
30
+ *
31
+ * @since 1.7.2
32
+ * @var string
33
+ */
34
+ public static $handle_script_premium = 'wpglobus-yoastseo-premium';
35
+
36
+ /**
37
+ * Current version yoast seo.
38
+ *
39
+ * @since 1.8
40
+ * @var string
41
+ */
42
+ protected static $version = '';
43
+
44
+ /**
45
+ * Contains wpseo meta.
46
+ *
47
+ * @since 2.2.16
48
+ * @var null|array
49
+ */
50
+ protected static $wpseo_meta = null;
51
+
52
+ /**
53
+ * Plus access.
54
+ *
55
+ * @since 2.2.20
56
+ * @var boolean|string
57
+ */
58
+ protected static $plus_module = false;
59
+
60
+ /**
61
+ * Static "controller"
62
+ */
63
+ public static function controller($version, $plus_module = false) {
64
+
65
+ self::$version = $version;
66
+ self::$plus_module = $plus_module;
67
+
68
+ if ( is_admin() ) {
69
+
70
+ /**
71
+ * @since 2.2.20
72
+ */
73
+ add_action( 'admin_print_scripts', array(
74
+ __CLASS__,
75
+ 'action__admin_print_scripts'
76
+ ) );
77
+
78
+ if ( WPGlobus_WP::is_pagenow( 'edit.php' ) ) {
79
+
80
+ /**
81
+ * To translate Yoast columns on `edit.php` page.
82
+ * @since 2.2.16
83
+ */
84
+ add_filter( 'wpseo_title', array(
85
+ __CLASS__,
86
+ 'filter__wpseo_title'
87
+ ), 5 );
88
+
89
+
90
+ add_filter( 'wpseo_metadesc', array(
91
+ __CLASS__,
92
+ 'filter__wpseo_metadesc'
93
+ ), 5 );
94
+ }
95
+
96
+ } else {
97
+
98
+ /**
99
+ * Frontend.
100
+ */
101
+
102
+ /**
103
+ * Filter SEO title and meta description on front only, when the page header HTML tags are generated.
104
+ * AJAX is probably not required (waiting for a case).
105
+ */
106
+ add_filter( 'wpseo_title', array( __CLASS__, 'filter__title' ), PHP_INT_MAX );
107
+ /**
108
+ * Filter opengraph title.
109
+ * @since 2.4
110
+ */
111
+ add_filter( 'wpseo_opengraph_title', array( __CLASS__, 'filter_front__title' ), 5, 2 );
112
+
113
+ /**
114
+ * Filter meta description.
115
+ * @since 2.4
116
+ */
117
+ add_filter( 'wpseo_metadesc', array( __CLASS__, 'filter_front__description' ), 5, 2 );
118
+ add_filter( 'wpseo_opengraph_desc', array( __CLASS__, 'filter_front__description' ), 5, 2 );
119
+
120
+ /**
121
+ * Filter canonical URL and open graph URL
122
+ * @since 2.4
123
+ */
124
+ add_filter( 'wpseo_canonical', array( __CLASS__, 'filter_front__localize_url' ), 5, 2 );
125
+ add_filter( 'wpseo_opengraph_url', array( __CLASS__, 'filter_front__localize_url' ), 5, 2 );
126
+
127
+ /**
128
+ * @since 2.4 @W.I.P
129
+ */
130
+ //add_filter( 'wpseo_breadcrumb_output', array( __CLASS__, 'filter__breadcrumb_output' ), 5, 2 );
131
+
132
+ /**
133
+ * @todo check for '_yoast_wpseo_title' meta
134
+ * @see <title> view-source:http://test/test-post-seo/
135
+ * @see <title> view-source:http://test/ru/test-post-seo/
136
+ */
137
+ add_filter( 'get_post_metadata', array( __CLASS__, 'filter__get_post_metadata' ), 6, 4 );
138
+
139
+ /**
140
+ * Filter meta keywords.
141
+ * @from 1.8.8
142
+ */
143
+ add_filter( 'wpseo_metakeywords', array( __CLASS__, 'filter__metakeywords' ), 0 );
144
+
145
+ }
146
+ }
147
+
148
+ /**
149
+ * Filter Yoast post meta title.
150
+ *
151
+ * @scope front
152
+ * @since 1.9.18
153
+ *
154
+ * @param string $title Post title.
155
+ *
156
+ * @return string.
157
+ */
158
+ public static function filter__title( $title ) {
159
+ /**
160
+ * In some cases we can get $title like {:en}En title{:}{:ru}Ru title{:}{:fr}Fr title{:} - SiteTitle
161
+ * so, let's filter.
162
+ */
163
+ if ( WPGlobus_Core::has_translations($title) ) {
164
+ return WPGlobus_Core::extract_text( $title, WPGlobus::Config()->language );
165
+ }
166
+ return $title;
167
+ }
168
+
169
+ /**
170
+ * Filter wpseo title.
171
+ *
172
+ * @see wordpress-seo\src\presenters\open-graph\title-presenter.php
173
+ * @scope front
174
+ * @since 2.4
175
+ *
176
+ * @param string $title The title.
177
+ * @param Indexable_Presentation $presentation The presentation of an indexable.
178
+ *
179
+ * @return string
180
+ */
181
+ public static function filter_front__title( $title, $presentation ) {
182
+
183
+ if ( WPGlobus::Config()->language == WPGlobus::Config()->default_language ) {
184
+ return $title;
185
+ }
186
+
187
+ if ( empty( $title ) ) {
188
+ return $title;
189
+ }
190
+
191
+ return self::filter__title( $title );
192
+ }
193
+
194
+ /**
195
+ * Filter post meta.
196
+ *
197
+ * @since 1.9.21
198
+ * @since 2.1.3
199
+ * @see function function get_value() in wordpress-seo\inc\class-wpseo-meta.php
200
+ */
201
+ public static function filter__get_post_metadata( $check, $object_id, $meta_key, $single ) {
202
+
203
+ global $post;
204
+
205
+ if ( $single ) {
206
+ return $check;
207
+ }
208
+
209
+ if ( ! is_object($post) ) {
210
+ return $check;
211
+ }
212
+
213
+ if ( $object_id != $post->ID ) {
214
+ return $check;
215
+ }
216
+
217
+ /**
218
+ * May be called many times on one page. Let's cache.
219
+ */
220
+ static $_done = null;
221
+ if ( ! is_null($_done) ) {
222
+ return $check;
223
+ }
224
+
225
+ $meta_type = 'post';
226
+
227
+ $meta_cache = wp_cache_get($object_id, $meta_type . '_meta');
228
+
229
+ if ( ! empty($meta_cache['_yoast_wpseo_title'][0]) ) {
230
+ $meta_cache['_yoast_wpseo_title'][0] = WPGlobus_Core::text_filter( $meta_cache['_yoast_wpseo_title'][0], WPGlobus::Config()->language, WPGlobus::RETURN_EMPTY );
231
+ wp_cache_replace( $object_id, $meta_cache, $meta_type . '_meta' );
232
+ }
233
+
234
+ /**
235
+ * @since 2.2.33
236
+ */
237
+ if ( ! empty($meta_cache['_yoast_wpseo_focuskw'][0]) ) {
238
+ $meta_cache['_yoast_wpseo_focuskw'][0] = WPGlobus_Core::text_filter( $meta_cache['_yoast_wpseo_focuskw'][0], WPGlobus::Config()->language, WPGlobus::RETURN_EMPTY );
239
+ wp_cache_replace( $object_id, $meta_cache, $meta_type . '_meta' );
240
+ }
241
+
242
+ $_done = true;
243
+
244
+ return $check;
245
+
246
+ }
247
+
248
+ /**
249
+ * Filter Yoast post meta keywords.
250
+ *
251
+ * @scope front
252
+ * @since 1.8.8
253
+ *
254
+ * @param string $keywords Multilingual keywords.
255
+ *
256
+ * @return string.
257
+ */
258
+ public static function filter__metakeywords( $keywords ) {
259
+ if ( WPGlobus::Config()->language != WPGlobus::Config()->default_language ) {
260
+ return '';
261
+ }
262
+ return WPGlobus_Core::text_filter($keywords, WPGlobus::Config()->language, WPGlobus::RETURN_EMPTY);
263
+ }
264
+
265
+ /**
266
+ * @obsolete
267
+ *
268
+ * Fix empty yoast_wpseo_focuskw while saving/updating post with active extra language.
269
+ *
270
+ * @since 1.6.3
271
+ * @since 1.7.7
272
+ * @see filter 'wpseo_save_compare_data' wordpress-seo\admin\metabox\class-metabox.php
273
+ *
274
+ * @param WP_Post Object $post Current post.
275
+ */
276
+ public static function action__save_compare_data( $post ) {
277
+ // @see wpglobus\includes\vendor\yoast-seo\class-wpglobus-yoastseo120.php
278
+ }
279
+
280
+ /**
281
+ * @obsolete
282
+ *
283
+ * Filter to get yoast seo separator.
284
+ *
285
+ * @since 1.5.3
286
+ *
287
+ * @param array $sep Contains separator.
288
+ *
289
+ * @return string
290
+ */
291
+ public static function filter__get_separator( $sep ) {
292
+ // @see wpglobus\includes\vendor\yoast-seo\class-wpglobus-yoastseo120.php
293
+ }
294
+
295
+ /**
296
+ * @obsolete
297
+ *
298
+ * Filter which editor should be displayed by default.
299
+ *
300
+ * @since 1.4.8
301
+ *
302
+ * @param array $editors An array of editors. Accepts 'tinymce', 'html', 'test'.
303
+ *
304
+ * @return string
305
+ */
306
+ public static function set_default_editor(
307
+ /** @noinspection PhpUnusedParameterInspection */
308
+ $editors
309
+ ) {
310
+ // @see wpglobus\includes\vendor\yoast-seo\class-wpglobus-yoastseo120.php
311
+ }
312
+
313
+ /**
314
+ * Filter wpseo meta description.
315
+ *
316
+ * @see wordpress-seo\src\presenters\meta-description-presenter.php
317
+ * @see wordpress-seo\src\presenters\open-graph\description-presenter.php
318
+ * @scope front
319
+ * @since 2.4
320
+ *
321
+ * @param string $meta_description Value from @see `description` field in `wp_yoast_indexable` table.
322
+ * @param Indexable_Presentation $presentation The presentation of an indexable.
323
+ *
324
+ * @return string
325
+ */
326
+ public static function filter_front__description( $meta_description, $presentation ) {
327
+
328
+ /**
329
+ * $meta_description is received from `description` field in `wp_yoast_indexable` table.
330
+ */
331
+
332
+ /**
333
+ * Key to define that `wpseo_metadesc` filter was already fired earlier.
334
+ */
335
+ static $meta_description_presenter_was_fired = false;
336
+
337
+ if ( $meta_description_presenter_was_fired ) {
338
+ /**
339
+ * Set meta description to empty value for `wpseo_opengraph_desc` filter like for empty $meta_description in `wpseo_metadesc` filter.
340
+ */
341
+ $meta_description = '';
342
+ } else {
343
+ if ( empty($meta_description) ) {
344
+ $meta_description_presenter_was_fired = true;
345
+ }
346
+ }
347
+
348
+ return self::get_meta( '_yoast_wpseo_metadesc', $meta_description );
349
+ }
350
+
351
+ /**
352
+ * Filter canonical URL and open graph URL put out by Yoast SEO.
353
+ *
354
+ * @see wordpress-seo\src\presenters\canonical-presenter.php
355
+ * @see wordpress-seo\src\presenters\open-graph\url-presenter.php
356
+ * @scope front
357
+ * @since 2.4
358
+ *
359
+ * @param string $url The canonical URL or open graph URL.
360
+ * @param Indexable_Presentation $presentation The presentation of an indexable.
361
+ *
362
+ * @return string
363
+ */
364
+ public static function filter_front__localize_url( $url, $presentation ) {
365
+ /**
366
+ * URL is received from `permalink` field in `wp_yoast_indexable` table.
367
+ */
368
+ if ( WPGlobus::Config()->language == WPGlobus::Config()->default_language ) {
369
+ return $url;
370
+ }
371
+
372
+ if ( ! is_singular() ) {
373
+ return $url;
374
+ }
375
+
376
+ return WPGlobus_Utils::localize_current_url( WPGlobus::Config()->language );
377
+ }
378
+
379
+ /**
380
+ * @scope front
381
+ * @since 2.4
382
+ * @W.I.P
383
+ */
384
+ public static function filter__breadcrumb_output( $output, $presentation ) {
385
+ return $output;
386
+ }
387
+
388
+
389
+ /**
390
+ * Filter wpseo meta description.
391
+ *
392
+ * @see wordpress-seo\admin\class-meta-columns.php
393
+ * @scope admin
394
+ * @since 2.2.16
395
+ *
396
+ * @param string $metadesc_val Value in default language.
397
+ *
398
+ * @return string
399
+ */
400
+ public static function filter__wpseo_metadesc( $metadesc_val ) {
401
+
402
+ if ( empty($metadesc_val) ) {
403
+ return $metadesc_val;
404
+ }
405
+
406
+ if ( WPGlobus::Config()->language == WPGlobus::Config()->default_language ) {
407
+ return $metadesc_val;
408
+ }
409
+
410
+ return self::get_meta( '_yoast_wpseo_metadesc', $metadesc_val );
411
+ }
412
+
413
+ /**
414
+ * To translate Yoast `column-wpseo-title`.
415
+ *
416
+ * @see wordpress-seo\admin\class-meta-columns.php
417
+ * @scope admin
418
+ * @since 2.2.16
419
+ *
420
+ * @param string $title
421
+ *
422
+ * @return string
423
+ */
424
+ public static function filter__wpseo_title( $title ) {
425
+ return WPGlobus_Core::extract_text( $title, WPGlobus::Config()->language );
426
+ }
427
+
428
+ /**
429
+ * Get meta for extra language.
430
+ *
431
+ * @scope admin
432
+ * @since 2.2.16
433
+ */
434
+ protected static function get_meta( $meta_key, $meta_value = '' ) {
435
+
436
+ if ( is_null(self::$wpseo_meta) ) {
437
+ self::get_wpseo_meta();
438
+ }
439
+
440
+ if ( empty( self::$wpseo_meta[ $meta_key ] ) ) {
441
+ return '';
442
+ }
443
+
444
+ /** @global WP_Post $post */
445
+ global $post;
446
+
447
+ if ( empty( $meta_value ) ) {
448
+ /**
449
+ * Try get meta by post ID.
450
+ */
451
+ if ( ! $post instanceof WP_Post ) {
452
+ return '';
453
+ }
454
+ if ( empty( self::$wpseo_meta[$meta_key][$post->ID] ) ) {
455
+ return '';
456
+ }
457
+
458
+ return WPGlobus_Core::text_filter( self::$wpseo_meta[$meta_key][$post->ID], WPGlobus::Config()->language, WPGlobus::RETURN_EMPTY );
459
+ }
460
+
461
+ $_return_value = '';
462
+ foreach( self::$wpseo_meta[ $meta_key ] as $_meta_value ) {
463
+ if ( false !== strpos( $_meta_value, $meta_value ) ) {
464
+ $_return_value = WPGlobus_Core::text_filter( $_meta_value, WPGlobus::Config()->language, WPGlobus::RETURN_EMPTY );
465
+ break;
466
+ }
467
+ }
468
+
469
+ return $_return_value;
470
+ }
471
+
472
+ /**
473
+ * Get `_yoast_wpseo_metadesc`, `_yoast_wpseo_focuskw` meta.
474
+ *
475
+ * @scope admin
476
+ * @since 2.4
477
+ */
478
+ protected static function get_wpseo_meta() {
479
+
480
+ /** @global wpdb $wpdb */
481
+ global $wpdb;
482
+
483
+ $post_type = 'post';
484
+ if ( ! empty( $_GET['post_type'] ) ) {
485
+ $post_type = sanitize_text_field( $_GET['post_type'] ); // phpcs:ignore WordPress.CSRF.NonceVerification
486
+ }
487
+
488
+ $query = $wpdb->prepare(
489
+ "SELECT p.ID, p.post_type, pm.meta_key, pm.meta_value FROM {$wpdb->prefix}posts AS p JOIN {$wpdb->prefix}postmeta AS pm ON p.ID = pm.post_id WHERE p.post_type = %s AND (pm.meta_key = %s OR pm.meta_key = %s)",
490
+ $post_type,
491
+ '_yoast_wpseo_metadesc',
492
+ '_yoast_wpseo_focuskw'
493
+ );
494
+
495
+ $metas = $wpdb->get_results( $query, ARRAY_A );
496
+
497
+ if ( ! empty( $metas ) ) {
498
+ foreach( $metas as $_meta ) {
499
+ if ( ! isset( self::$wpseo_meta[ $_meta['meta_key'] ] ) ) {
500
+ self::$wpseo_meta[ $_meta['meta_key'] ] = array();
501
+ }
502
+ self::$wpseo_meta[ $_meta['meta_key'] ][ $_meta['ID'] ] = $_meta['meta_value'];
503
+ }
504
+ }
505
+
506
+ }
507
+
508
+ /**
509
+ * @obsolete
510
+ *
511
+ * To translate Yoast columns
512
+ * @see WPSEO_Meta_Columns::column_content
513
+ * @scope admin
514
+ *
515
+ * @param string $text
516
+ *
517
+ * @return string
518
+ * @todo Yoast said things might change in the next version. See the pull request
519
+ * @link https://github.com/Yoast/wordpress-seo/pull/1946
520
+ */
521
+ public static function filter__wpseo_columns( $text ) {
522
+ // @see wpglobus\includes\vendor\yoast-seo\class-wpglobus-yoastseo120.php
523
+ }
524
+
525
+ /**
526
+ * Enqueue JS for YoastSEO support.
527
+ * @since 1.4.0
528
+ * @since 2.2.20
529
+ */
530
+ public static function action__admin_print_scripts() {
531
+
532
+ if ( 'off' === WPGlobus::Config()->toggle ) {
533
+ return;
534
+ }
535
+
536
+ if ( self::disabled_entity() ) {
537
+ return;
538
+ }
539
+
540
+ /** @global string $pagenow */
541
+ global $pagenow;
542
+
543
+ $enabled_pages = array(
544
+ 'post.php',
545
+ 'post-new.php',
546
+ 'edit-tags.php',
547
+ 'term.php'
548
+ );
549
+
550
+ if ( WPGlobus_WP::is_pagenow( $enabled_pages ) ) {
551
+
552
+ WPGlobus::O()->vendors_scripts['WPSEO'] = true;
553
+
554
+ if ( defined( 'WPSEO_PREMIUM_PLUGIN_FILE' ) ) {
555
+ /**
556
+ * @see wordpress-seo-premium\wp-seo-premium.php
557
+ */
558
+ WPGlobus::O()->vendors_scripts['WPSEO_PREMIUM'] = true;
559
+ }
560
+
561
+ $yoastseo_plus_readability_access = '';
562
+ $yoastseo_plus_readability_inactive = '';
563
+
564
+ $yoastseo_plus_page_analysis_access = '';
565
+ $yoastseo_plus_page_analysis_inactive = '';
566
+
567
+ $yoastseo_plus_meta_keywords_access = '';
568
+ $yoastseo_plus_meta_keywords_inactive = '';
569
+
570
+ if ( WPGlobus::Config()->builder->is_builder_page() ) {
571
+
572
+ $_url = '#';
573
+ if ( class_exists('WPGlobusPlus') ) {
574
+ /**
575
+ * @see wpglobus-plus\includes\wpglobus-plus-main.php
576
+ */
577
+ $_url = add_query_arg(
578
+ array(
579
+ 'page' => 'wpglobus-plus-options'
580
+ ),
581
+ admin_url('admin.php')
582
+ );
583
+ }
584
+
585
+ $yoastseo_plus_readability_access = sprintf(
586
+ __( 'Please see %1s to get access to Analysis results in %2s with YoastSEO.', '' ),
587
+ '<a href="https://wpglobus.com/product/wpglobus-plus/#yoastseo" target="_blank">WPGlobus Plus</a>',
588
+ WPGlobus::Config()->en_language_name[ WPGlobus::Config()->builder->get_language() ]
589
+ );
590
+ $yoastseo_plus_readability_inactive = sprintf(
591
+ __( 'Please activate %1sYoast SEO Plus%2s module to get access to Analysis results in %3s with YoastSEO.', '' ),
592
+ '<a href="'.$_url.'">',
593
+ '</a>',
594
+ WPGlobus::Config()->en_language_name[ WPGlobus::Config()->builder->get_language() ]
595
+ );
596
+
597
+ $yoastseo_plus_page_analysis_access = sprintf(
598
+ __( 'Please see %1s to get access to Analysis results in %2s with YoastSEO.', '' ),
599
+ '<a href="https://wpglobus.com/product/wpglobus-plus/#yoastseo" target="_blank">WPGlobus Plus</a>',
600
+ WPGlobus::Config()->en_language_name[ WPGlobus::Config()->builder->get_language() ]
601
+ );
602
+ $yoastseo_plus_page_analysis_inactive = sprintf(
603
+ __( 'Please activate %1sYoast SEO Plus%2s module to get access to Analysis results in %3s with YoastSEO.', '' ),
604
+ '<a href="'.$_url.'">',
605
+ '</a>',
606
+ WPGlobus::Config()->en_language_name[ WPGlobus::Config()->builder->get_language() ]
607
+ );
608
+
609
+ $yoastseo_plus_meta_keywords_access = sprintf(
610
+ __( 'Please see %1s to get access to Focus keyphrase in %2s with YoastSEO.', '' ),
611
+ '<a href="https://wpglobus.com/product/wpglobus-plus/#yoastseo" target="_blank">WPGlobus Plus</a>',
612
+ WPGlobus::Config()->en_language_name[ WPGlobus::Config()->builder->get_language() ]
613
+ );
614
+ $yoastseo_plus_meta_keywords_inactive = sprintf(
615
+ __( 'Please activate %1sYoast SEO Plus%2s module to get access to Focus keyphrase in %1s with YoastSEO.', '' ),
616
+ '<a href="'.$_url.'">',
617
+ '</a>',
618
+ WPGlobus::Config()->en_language_name[ WPGlobus::Config()->builder->get_language() ]
619
+ );
620
+ }
621
+
622
+ $i18n = array(
623
+ 'yoastseo_plus_readability_access' => $yoastseo_plus_readability_access,
624
+ 'yoastseo_plus_readability_inactive' => $yoastseo_plus_readability_inactive,
625
+ 'yoastseo_plus_page_analysis_access' => $yoastseo_plus_page_analysis_access,
626
+ 'yoastseo_plus_page_analysis_inactive' => $yoastseo_plus_page_analysis_inactive,
627
+ 'yoastseo_plus_meta_keywords_access' => $yoastseo_plus_meta_keywords_access,
628
+ 'yoastseo_plus_meta_keywords_inactive' => $yoastseo_plus_meta_keywords_inactive
629
+ );
630
+
631
+ $src_version = false;
632
+ $src_version_premium = false;
633
+
634
+ if ( ! WPGlobus::O()->vendors_scripts['WPSEO_PREMIUM'] ) {
635
+
636
+ /** @noinspection PhpInternalEntityUsedInspection */
637
+ $src_version = version_compare( WPSEO_VERSION, '4.0', '>=' ) ? '40' : $src_version;
638
+ /** @noinspection PhpInternalEntityUsedInspection */
639
+ $src_version = version_compare( WPSEO_VERSION, '4.1', '>=' ) ? '41' : $src_version;
640
+ /** @noinspection PhpInternalEntityUsedInspection */
641
+ $src_version = version_compare( WPSEO_VERSION, '4.4', '>=' ) ? '44' : $src_version;
642
+ if (
643
+ /** @noinspection PhpInternalEntityUsedInspection */
644
+ version_compare( WPSEO_VERSION, '4.8', '>=' )
645
+ ) {
646
+ $src_version = self::$version;
647
+ }
648
+
649
+ } else {
650
+ /**
651
+ * Start with Yoast SEO Premium.
652
+ */
653
+
654
+ /**
655
+ * Version of file yoast seo must be latest.
656
+ */
657
+ /** @noinspection PhpInternalEntityUsedInspection */
658
+ $src_version = version_compare( WPSEO_VERSION, '3.9', '>=' ) ? self::$version : $src_version;
659
+ /** @noinspection PhpInternalEntityUsedInspection */
660
+ $src_version_premium = version_compare( WPSEO_VERSION, '3.9', '>=' ) ? '39' : $src_version_premium;
661
+ /**
662
+ * @since WPGlobus 2.2.17
663
+ */
664
+ $src_version_premium = version_compare( WPSEO_VERSION, '12.0', '>=' ) ? $src_version : $src_version_premium;
665
+
666
+ }
667
+
668
+ if ( $src_version ) :
669
+
670
+ $handle = self::$handle_script;
671
+
672
+ $src = WPGlobus::$PLUGIN_DIR_URL . 'includes/js/' .
673
+ $handle . '-' . $src_version .
674
+ WPGlobus::SCRIPT_SUFFIX() . '.js';
675
+
676
+ wp_register_script(
677
+ $handle,
678
+ $src,
679
+ array( 'jquery', 'underscore' ),
680
+ WPGLOBUS_VERSION,
681
+ true
682
+ );
683
+
684
+ wp_enqueue_script($handle);
685
+
686
+ wp_localize_script(
687
+ $handle,
688
+ 'WPGlobusYoastSeo',
689
+ array(
690
+ 'version' => WPGLOBUS_VERSION,
691
+ 'wpseo_version' => WPSEO_VERSION,
692
+ 'src_version' => $src_version,
693
+ 'builder_id' => WPGlobus::Config()->builder->get('id'),
694
+ 'builder_page' => WPGlobus::Config()->builder->is_builder_page() ? 'true' : 'false',
695
+ 'language' => WPGlobus::Config()->builder->get_language(),
696
+ 'is_default_language' => WPGlobus::Config()->builder->is_default_language() ? true : false,
697
+ 'src_version_premium' => $src_version_premium,
698
+ 'plus_module' => self::$plus_module,
699
+ )
700
+ );
701
+
702
+ wp_localize_script(
703
+ $handle,
704
+ 'WPGlobusVendor',
705
+ array(
706
+ 'version' => WPGLOBUS_VERSION,
707
+ 'vendor' => WPGlobus::O()->vendors_scripts,
708
+ 'pagenow' => $pagenow,
709
+ 'i18n' => $i18n
710
+ )
711
+ );
712
+
713
+ endif;
714
+
715
+ }
716
+
717
+ }
718
+
719
+ /**
720
+ * @obsolete
721
+ *
722
+ * Add language tabs to wpseo metabox ( .wpseo-metabox-tabs-div )
723
+ */
724
+ public static function action__wpseo_tab_content() {
725
+ // @see wpglobus\includes\vendor\yoast-seo\class-wpglobus-yoastseo120.php
726
+ }
727
+
728
+ /**
729
+ * Check disabled entity.
730
+ *
731
+ * @since 1.7.3
732
+ * @return boolean
733
+ */
734
+ public static function disabled_entity() {
735
+
736
+ if ( WPGlobus_WP::is_pagenow( array( 'edit-tags.php', 'term.php' ) ) ) :
737
+ /**
738
+ * Don't check page when editing taxonomy.
739
+ */
740
+ return false;
741
+ endif;
742
+
743
+ /** @global WP_Post $post */
744
+ global $post;
745
+
746
+ $result = false;
747
+ if ( WPGlobus_WP::is_pagenow( array( 'post.php', 'post-new.php' ) ) ) :
748
+ if ( empty( $post ) ) {
749
+ $result = true;
750
+ } else if ( WPGlobus::O()->disabled_entity( $post->post_type ) ) {
751
+ $result = true;
752
+ }
753
+ endif;
754
+ return $result;
755
+ }
756
+
757
+ } // class
758
+
759
+ # --- EOF
includes/wpglobus-yoastseo.php CHANGED
@@ -21,7 +21,11 @@
21
  * @since 2.2.20
22
  * 16.10.2019 - 120
23
  */
24
- $wpglobus_yoastseo_latest_version = '120';
 
 
 
 
25
 
26
  /**
27
  * @since 2.2.20
@@ -70,23 +74,25 @@ if ( defined('WPSEO_VERSION') && defined('WPSEO_PREMIUM_PLUGIN_FILE') ) {
70
  if ( version_compare( WPSEO_VERSION, '4.0', '>=' ) ) {
71
 
72
  $version = '40';
73
- $version = version_compare( WPSEO_VERSION, '4.1', '>=' ) ? '41' : $version;
74
- $version = version_compare( WPSEO_VERSION, '4.4', '>=' ) ? '44' : $version;
75
- $version = version_compare( WPSEO_VERSION, '4.8', '>=' ) ? '48' : $version;
76
- $version = version_compare( WPSEO_VERSION, '5.9', '>=' ) ? '59' : $version;
77
- $version = version_compare( WPSEO_VERSION, '7.3', '>=' ) ? '73' : $version;
78
- $version = version_compare( WPSEO_VERSION, '7.7', '>=' ) ? '77' : $version;
79
- $version = version_compare( WPSEO_VERSION, '8.0', '>=' ) ? $wpglobus_yoastseo_latest_version : $version;
 
 
80
 
81
  if ( $version == '77' && is_admin() ) {
82
 
83
  // Don't start support here.
84
 
85
  } elseif ( version_compare( WPSEO_VERSION, '8.0', '>=' ) ) {
86
-
87
  require_once "vendor/yoast-seo/class-wpglobus-yoastseo$version.php";
88
  WPGlobus_YoastSEO::controller($version, $wpglobus_yoastseo_plus_access);
89
-
90
  } else {
91
 
92
  require_once "vendor/class-wpglobus-yoastseo$version.php";
21
  * @since 2.2.20
22
  * 16.10.2019 - 120
23
  */
24
+ /**
25
+ * @since 2.4
26
+ * 28.04.2020 - 140
27
+ */
28
+ $wpglobus_yoastseo_latest_version = '140';
29
 
30
  /**
31
  * @since 2.2.20
74
  if ( version_compare( WPSEO_VERSION, '4.0', '>=' ) ) {
75
 
76
  $version = '40';
77
+ $version = version_compare( WPSEO_VERSION, '4.1', '>=' ) ? '41' : $version;
78
+ $version = version_compare( WPSEO_VERSION, '4.4', '>=' ) ? '44' : $version;
79
+ $version = version_compare( WPSEO_VERSION, '4.8', '>=' ) ? '48' : $version;
80
+ $version = version_compare( WPSEO_VERSION, '5.9', '>=' ) ? '59' : $version;
81
+ $version = version_compare( WPSEO_VERSION, '7.3', '>=' ) ? '73' : $version;
82
+ $version = version_compare( WPSEO_VERSION, '7.7', '>=' ) ? '77' : $version;
83
+ $version = version_compare( WPSEO_VERSION, '8.0', '>=' ) ? '80' : $version;
84
+ $version = version_compare( WPSEO_VERSION, '12.0', '>=' ) ? '120' : $version;
85
+ $version = version_compare( WPSEO_VERSION, '14.0-RC6', '>=' ) ? $wpglobus_yoastseo_latest_version : $version;
86
 
87
  if ( $version == '77' && is_admin() ) {
88
 
89
  // Don't start support here.
90
 
91
  } elseif ( version_compare( WPSEO_VERSION, '8.0', '>=' ) ) {
92
+
93
  require_once "vendor/yoast-seo/class-wpglobus-yoastseo$version.php";
94
  WPGlobus_YoastSEO::controller($version, $wpglobus_yoastseo_plus_access);
95
+
96
  } else {
97
 
98
  require_once "vendor/class-wpglobus-yoastseo$version.php";
languages/wpglobus-ar.po CHANGED
@@ -297,7 +297,7 @@ msgstr ""
297
 
298
  #: includes/admin/class-wpglobus-customize-options.php:553,
299
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
300
- #: includes/class-wpglobus.php:1298, wpglobus.php:12, wpglobus.php:18
301
  msgid "WPGlobus"
302
  msgstr "WPGlobus"
303
 
@@ -815,16 +815,16 @@ msgstr ""
815
  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:3571
820
  msgid "Save draft before using extra language."
821
  msgstr ""
822
 
823
- #: includes/builders/class-wpglobus-builder.php:366
824
  msgid "Builder"
825
  msgstr "البانى"
826
 
827
- #: includes/builders/class-wpglobus-builder.php:390
828
  msgid "Сompatibility Settings"
829
  msgstr ""
830
 
@@ -903,40 +903,40 @@ msgid "Selector type"
903
  msgstr ""
904
 
905
  #. translators: ON/OFF status of WPGlobus on the edit pages.
906
- #: includes/class-wpglobus.php:1272
907
  msgid "OFF"
908
  msgstr ""
909
 
910
- #: includes/class-wpglobus.php:1273
911
  msgid "Turn on"
912
  msgstr ""
913
 
914
  #. translators: ON/OFF status of WPGlobus on the edit pages.
915
- #: includes/class-wpglobus.php:1277
916
  msgid "ON"
917
  msgstr ""
918
 
919
- #: includes/class-wpglobus.php:1278
920
  msgid "Turn off"
921
  msgstr ""
922
 
923
- #: includes/class-wpglobus.php:1461
924
  msgid "You cannot disable the main language."
925
  msgstr ""
926
 
927
- #: includes/class-wpglobus.php:1669
928
  msgid "*) Available after the menu is saved."
929
  msgstr ""
930
 
931
- #: includes/class-wpglobus.php:1686
932
  msgid "Need a multilingual slug?"
933
  msgstr ""
934
 
935
- #: includes/class-wpglobus.php:4010
936
  msgid "You must enable Pretty Permalinks to use WPGlobus."
937
  msgstr ""
938
 
939
- #: includes/class-wpglobus.php:4012
940
  msgid ""
941
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
942
  "default option."
297
 
298
  #: includes/admin/class-wpglobus-customize-options.php:553,
299
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
300
+ #: includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
301
  msgid "WPGlobus"
302
  msgstr "WPGlobus"
303
 
815
  msgid "To translate permalinks, please activate the module Slug."
816
  msgstr ""
817
 
818
+ #: includes/builders/class-wpglobus-builder.php:278,
819
+ #: includes/class-wpglobus.php:3508
820
  msgid "Save draft before using extra language."
821
  msgstr ""
822
 
823
+ #: includes/builders/class-wpglobus-builder.php:371
824
  msgid "Builder"
825
  msgstr "البانى"
826
 
827
+ #: includes/builders/class-wpglobus-builder.php:395
828
  msgid "Сompatibility Settings"
829
  msgstr ""
830
 
903
  msgstr ""
904
 
905
  #. translators: ON/OFF status of WPGlobus on the edit pages.
906
+ #: includes/class-wpglobus.php:1209
907
  msgid "OFF"
908
  msgstr ""
909
 
910
+ #: includes/class-wpglobus.php:1210
911
  msgid "Turn on"
912
  msgstr ""
913
 
914
  #. translators: ON/OFF status of WPGlobus on the edit pages.
915
+ #: includes/class-wpglobus.php:1214
916
  msgid "ON"
917
  msgstr ""
918
 
919
+ #: includes/class-wpglobus.php:1215
920
  msgid "Turn off"
921
  msgstr ""
922
 
923
+ #: includes/class-wpglobus.php:1398
924
  msgid "You cannot disable the main language."
925
  msgstr ""
926
 
927
+ #: includes/class-wpglobus.php:1606
928
  msgid "*) Available after the menu is saved."
929
  msgstr ""
930
 
931
+ #: includes/class-wpglobus.php:1623
932
  msgid "Need a multilingual slug?"
933
  msgstr ""
934
 
935
+ #: includes/class-wpglobus.php:3955
936
  msgid "You must enable Pretty Permalinks to use WPGlobus."
937
  msgstr ""
938
 
939
+ #: includes/class-wpglobus.php:3957
940
  msgid ""
941
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
942
  "default option."
languages/wpglobus-be.po CHANGED
@@ -322,7 +322,7 @@ msgstr "Сохранить и перезагрузить"
322
 
323
  #: includes/admin/class-wpglobus-customize-options.php:553,
324
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
325
- #: includes/class-wpglobus.php:1298, wpglobus.php:12, wpglobus.php:18
326
  msgid "WPGlobus"
327
  msgstr "WPGlobus"
328
 
@@ -866,16 +866,16 @@ msgstr ""
866
  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:3571
871
  msgid "Save draft before using extra language."
872
  msgstr ""
873
 
874
- #: includes/builders/class-wpglobus-builder.php:366
875
  msgid "Builder"
876
  msgstr ""
877
 
878
- #: includes/builders/class-wpglobus-builder.php:390
879
  msgid "Сompatibility Settings"
880
  msgstr ""
881
 
@@ -954,42 +954,42 @@ msgid "Selector type"
954
  msgstr "Способ выбора языка"
955
 
956
  #. translators: ON/OFF status of WPGlobus on the edit pages.
957
- #: includes/class-wpglobus.php:1272
958
  msgid "OFF"
959
  msgstr ""
960
 
961
- #: includes/class-wpglobus.php:1273
962
  msgid "Turn on"
963
  msgstr ""
964
 
965
  #. translators: ON/OFF status of WPGlobus on the edit pages.
966
- #: includes/class-wpglobus.php:1277
967
  msgid "ON"
968
  msgstr ""
969
 
970
- #: includes/class-wpglobus.php:1278
971
  msgid "Turn off"
972
  msgstr ""
973
 
974
- #: includes/class-wpglobus.php:1461
975
  msgid "You cannot disable the main language."
976
  msgstr "Нельзя отключить основной язык."
977
 
978
- #: includes/class-wpglobus.php:1669
979
  msgid "*) Available after the menu is saved."
980
  msgstr "*) Доступно после сохранения меню."
981
 
982
- #: includes/class-wpglobus.php:1686
983
  msgid "Need a multilingual slug?"
984
  msgstr "Нужен мультиязычный ярлык?"
985
 
986
- #: includes/class-wpglobus.php:4010
987
  msgid "You must enable Pretty Permalinks to use WPGlobus."
988
  msgstr ""
989
  "Чтобы использовать плагин WPGlobus, необходимо включить ЧПУ - постоянные "
990
  "ссылки."
991
 
992
- #: includes/class-wpglobus.php:4012
993
  msgid ""
994
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
995
  "default option."
322
 
323
  #: includes/admin/class-wpglobus-customize-options.php:553,
324
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
325
+ #: includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
326
  msgid "WPGlobus"
327
  msgstr "WPGlobus"
328
 
866
  msgid "To translate permalinks, please activate the module Slug."
867
  msgstr ""
868
 
869
+ #: includes/builders/class-wpglobus-builder.php:278,
870
+ #: includes/class-wpglobus.php:3508
871
  msgid "Save draft before using extra language."
872
  msgstr ""
873
 
874
+ #: includes/builders/class-wpglobus-builder.php:371
875
  msgid "Builder"
876
  msgstr ""
877
 
878
+ #: includes/builders/class-wpglobus-builder.php:395
879
  msgid "Сompatibility Settings"
880
  msgstr ""
881
 
954
  msgstr "Способ выбора языка"
955
 
956
  #. translators: ON/OFF status of WPGlobus on the edit pages.
957
+ #: includes/class-wpglobus.php:1209
958
  msgid "OFF"
959
  msgstr ""
960
 
961
+ #: includes/class-wpglobus.php:1210
962
  msgid "Turn on"
963
  msgstr ""
964
 
965
  #. translators: ON/OFF status of WPGlobus on the edit pages.
966
+ #: includes/class-wpglobus.php:1214
967
  msgid "ON"
968
  msgstr ""
969
 
970
+ #: includes/class-wpglobus.php:1215
971
  msgid "Turn off"
972
  msgstr ""
973
 
974
+ #: includes/class-wpglobus.php:1398
975
  msgid "You cannot disable the main language."
976
  msgstr "Нельзя отключить основной язык."
977
 
978
+ #: includes/class-wpglobus.php:1606
979
  msgid "*) Available after the menu is saved."
980
  msgstr "*) Доступно после сохранения меню."
981
 
982
+ #: includes/class-wpglobus.php:1623
983
  msgid "Need a multilingual slug?"
984
  msgstr "Нужен мультиязычный ярлык?"
985
 
986
+ #: includes/class-wpglobus.php:3955
987
  msgid "You must enable Pretty Permalinks to use WPGlobus."
988
  msgstr ""
989
  "Чтобы использовать плагин WPGlobus, необходимо включить ЧПУ - постоянные "
990
  "ссылки."
991
 
992
+ #: includes/class-wpglobus.php:3957
993
  msgid ""
994
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
995
  "default option."
languages/wpglobus-bg_BG.po CHANGED
@@ -273,7 +273,7 @@ msgstr ""
273
 
274
  #: includes/admin/class-wpglobus-customize-options.php:553,
275
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
276
- #: includes/class-wpglobus.php:1298, wpglobus.php:12, wpglobus.php:18
277
  msgid "WPGlobus"
278
  msgstr ""
279
 
@@ -791,16 +791,16 @@ msgstr ""
791
  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:3571
796
  msgid "Save draft before using extra language."
797
  msgstr ""
798
 
799
- #: includes/builders/class-wpglobus-builder.php:366
800
  msgid "Builder"
801
  msgstr ""
802
 
803
- #: includes/builders/class-wpglobus-builder.php:390
804
  msgid "Сompatibility Settings"
805
  msgstr ""
806
 
@@ -879,40 +879,40 @@ msgid "Selector type"
879
  msgstr ""
880
 
881
  #. translators: ON/OFF status of WPGlobus on the edit pages.
882
- #: includes/class-wpglobus.php:1272
883
  msgid "OFF"
884
  msgstr ""
885
 
886
- #: includes/class-wpglobus.php:1273
887
  msgid "Turn on"
888
  msgstr ""
889
 
890
  #. translators: ON/OFF status of WPGlobus on the edit pages.
891
- #: includes/class-wpglobus.php:1277
892
  msgid "ON"
893
  msgstr ""
894
 
895
- #: includes/class-wpglobus.php:1278
896
  msgid "Turn off"
897
  msgstr ""
898
 
899
- #: includes/class-wpglobus.php:1461
900
  msgid "You cannot disable the main language."
901
  msgstr ""
902
 
903
- #: includes/class-wpglobus.php:1669
904
  msgid "*) Available after the menu is saved."
905
  msgstr ""
906
 
907
- #: includes/class-wpglobus.php:1686
908
  msgid "Need a multilingual slug?"
909
  msgstr ""
910
 
911
- #: includes/class-wpglobus.php:4010
912
  msgid "You must enable Pretty Permalinks to use WPGlobus."
913
  msgstr ""
914
 
915
- #: includes/class-wpglobus.php:4012
916
  msgid ""
917
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
918
  "default option."
273
 
274
  #: includes/admin/class-wpglobus-customize-options.php:553,
275
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
276
+ #: includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
277
  msgid "WPGlobus"
278
  msgstr ""
279
 
791
  msgid "To translate permalinks, please activate the module Slug."
792
  msgstr ""
793
 
794
+ #: includes/builders/class-wpglobus-builder.php:278,
795
+ #: includes/class-wpglobus.php:3508
796
  msgid "Save draft before using extra language."
797
  msgstr ""
798
 
799
+ #: includes/builders/class-wpglobus-builder.php:371
800
  msgid "Builder"
801
  msgstr ""
802
 
803
+ #: includes/builders/class-wpglobus-builder.php:395
804
  msgid "Сompatibility Settings"
805
  msgstr ""
806
 
879
  msgstr ""
880
 
881
  #. translators: ON/OFF status of WPGlobus on the edit pages.
882
+ #: includes/class-wpglobus.php:1209
883
  msgid "OFF"
884
  msgstr ""
885
 
886
+ #: includes/class-wpglobus.php:1210
887
  msgid "Turn on"
888
  msgstr ""
889
 
890
  #. translators: ON/OFF status of WPGlobus on the edit pages.
891
+ #: includes/class-wpglobus.php:1214
892
  msgid "ON"
893
  msgstr ""
894
 
895
+ #: includes/class-wpglobus.php:1215
896
  msgid "Turn off"
897
  msgstr ""
898
 
899
+ #: includes/class-wpglobus.php:1398
900
  msgid "You cannot disable the main language."
901
  msgstr ""
902
 
903
+ #: includes/class-wpglobus.php:1606
904
  msgid "*) Available after the menu is saved."
905
  msgstr ""
906
 
907
+ #: includes/class-wpglobus.php:1623
908
  msgid "Need a multilingual slug?"
909
  msgstr ""
910
 
911
+ #: includes/class-wpglobus.php:3955
912
  msgid "You must enable Pretty Permalinks to use WPGlobus."
913
  msgstr ""
914
 
915
+ #: includes/class-wpglobus.php:3957
916
  msgid ""
917
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
918
  "default option."
languages/wpglobus-de_CH.po CHANGED
@@ -293,7 +293,7 @@ msgstr ""
293
 
294
  #: includes/admin/class-wpglobus-customize-options.php:553,
295
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
296
- #: includes/class-wpglobus.php:1298, wpglobus.php:12, wpglobus.php:18
297
  msgid "WPGlobus"
298
  msgstr "WPGlobus"
299
 
@@ -827,16 +827,16 @@ msgstr ""
827
  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:3571
832
  msgid "Save draft before using extra language."
833
  msgstr ""
834
 
835
- #: includes/builders/class-wpglobus-builder.php:366
836
  msgid "Builder"
837
  msgstr ""
838
 
839
- #: includes/builders/class-wpglobus-builder.php:390
840
  msgid "Сompatibility Settings"
841
  msgstr ""
842
 
@@ -915,41 +915,41 @@ msgid "Selector type"
915
  msgstr "Selektor-Typ"
916
 
917
  #. translators: ON/OFF status of WPGlobus on the edit pages.
918
- #: includes/class-wpglobus.php:1272
919
  msgid "OFF"
920
  msgstr ""
921
 
922
- #: includes/class-wpglobus.php:1273
923
  msgid "Turn on"
924
  msgstr ""
925
 
926
  #. translators: ON/OFF status of WPGlobus on the edit pages.
927
- #: includes/class-wpglobus.php:1277
928
  msgid "ON"
929
  msgstr ""
930
 
931
- #: includes/class-wpglobus.php:1278
932
  msgid "Turn off"
933
  msgstr ""
934
 
935
- #: includes/class-wpglobus.php:1461
936
  msgid "You cannot disable the main language."
937
  msgstr "Die Hauptsprache kann nicht deaktiviert werden."
938
 
939
- #: includes/class-wpglobus.php:1669
940
  msgid "*) Available after the menu is saved."
941
  msgstr "*) Verfügbar nachdem das Menü gespeichert wurde."
942
 
943
- #: includes/class-wpglobus.php:1686
944
  msgid "Need a multilingual slug?"
945
  msgstr ""
946
 
947
- #: includes/class-wpglobus.php:4010
948
  msgid "You must enable Pretty Permalinks to use WPGlobus."
949
  msgstr ""
950
  "Sie müssen schöne Permalinks aktivieren um WPGlobus verwenden zu können."
951
 
952
- #: includes/class-wpglobus.php:4012
953
  msgid ""
954
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
955
  "default option."
293
 
294
  #: includes/admin/class-wpglobus-customize-options.php:553,
295
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
296
+ #: includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
297
  msgid "WPGlobus"
298
  msgstr "WPGlobus"
299
 
827
  msgid "To translate permalinks, please activate the module Slug."
828
  msgstr ""
829
 
830
+ #: includes/builders/class-wpglobus-builder.php:278,
831
+ #: includes/class-wpglobus.php:3508
832
  msgid "Save draft before using extra language."
833
  msgstr ""
834
 
835
+ #: includes/builders/class-wpglobus-builder.php:371
836
  msgid "Builder"
837
  msgstr ""
838
 
839
+ #: includes/builders/class-wpglobus-builder.php:395
840
  msgid "Сompatibility Settings"
841
  msgstr ""
842
 
915
  msgstr "Selektor-Typ"
916
 
917
  #. translators: ON/OFF status of WPGlobus on the edit pages.
918
+ #: includes/class-wpglobus.php:1209
919
  msgid "OFF"
920
  msgstr ""
921
 
922
+ #: includes/class-wpglobus.php:1210
923
  msgid "Turn on"
924
  msgstr ""
925
 
926
  #. translators: ON/OFF status of WPGlobus on the edit pages.
927
+ #: includes/class-wpglobus.php:1214
928
  msgid "ON"
929
  msgstr ""
930
 
931
+ #: includes/class-wpglobus.php:1215
932
  msgid "Turn off"
933
  msgstr ""
934
 
935
+ #: includes/class-wpglobus.php:1398
936
  msgid "You cannot disable the main language."
937
  msgstr "Die Hauptsprache kann nicht deaktiviert werden."
938
 
939
+ #: includes/class-wpglobus.php:1606
940
  msgid "*) Available after the menu is saved."
941
  msgstr "*) Verfügbar nachdem das Menü gespeichert wurde."
942
 
943
+ #: includes/class-wpglobus.php:1623
944
  msgid "Need a multilingual slug?"
945
  msgstr ""
946
 
947
+ #: includes/class-wpglobus.php:3955
948
  msgid "You must enable Pretty Permalinks to use WPGlobus."
949
  msgstr ""
950
  "Sie müssen schöne Permalinks aktivieren um WPGlobus verwenden zu können."
951
 
952
+ #: includes/class-wpglobus.php:3957
953
  msgid ""
954
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
955
  "default option."
languages/wpglobus-de_DE.po CHANGED
@@ -293,7 +293,7 @@ msgstr ""
293
 
294
  #: includes/admin/class-wpglobus-customize-options.php:553,
295
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
296
- #: includes/class-wpglobus.php:1298, wpglobus.php:12, wpglobus.php:18
297
  msgid "WPGlobus"
298
  msgstr "WPGlobus"
299
 
@@ -828,16 +828,16 @@ msgstr ""
828
  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:3571
833
  msgid "Save draft before using extra language."
834
  msgstr ""
835
 
836
- #: includes/builders/class-wpglobus-builder.php:366
837
  msgid "Builder"
838
  msgstr ""
839
 
840
- #: includes/builders/class-wpglobus-builder.php:390
841
  msgid "Сompatibility Settings"
842
  msgstr ""
843
 
@@ -916,41 +916,41 @@ msgid "Selector type"
916
  msgstr "Selektor-Typ"
917
 
918
  #. translators: ON/OFF status of WPGlobus on the edit pages.
919
- #: includes/class-wpglobus.php:1272
920
  msgid "OFF"
921
  msgstr "AUS"
922
 
923
- #: includes/class-wpglobus.php:1273
924
  msgid "Turn on"
925
  msgstr ""
926
 
927
  #. translators: ON/OFF status of WPGlobus on the edit pages.
928
- #: includes/class-wpglobus.php:1277
929
  msgid "ON"
930
  msgstr "EIN"
931
 
932
- #: includes/class-wpglobus.php:1278
933
  msgid "Turn off"
934
  msgstr ""
935
 
936
- #: includes/class-wpglobus.php:1461
937
  msgid "You cannot disable the main language."
938
  msgstr "Die Hauptsprache kann nicht deaktiviert werden."
939
 
940
- #: includes/class-wpglobus.php:1669
941
  msgid "*) Available after the menu is saved."
942
  msgstr "*) Verfügbar nachdem das Menü gespeichert wurde."
943
 
944
- #: includes/class-wpglobus.php:1686
945
  msgid "Need a multilingual slug?"
946
  msgstr ""
947
 
948
- #: includes/class-wpglobus.php:4010
949
  msgid "You must enable Pretty Permalinks to use WPGlobus."
950
  msgstr ""
951
  "Sie müssen schöne Permalinks aktivieren um WPGlobus verwenden zu können."
952
 
953
- #: includes/class-wpglobus.php:4012
954
  msgid ""
955
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
956
  "default option."
293
 
294
  #: includes/admin/class-wpglobus-customize-options.php:553,
295
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
296
+ #: includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
297
  msgid "WPGlobus"
298
  msgstr "WPGlobus"
299
 
828
  msgid "To translate permalinks, please activate the module Slug."
829
  msgstr ""
830
 
831
+ #: includes/builders/class-wpglobus-builder.php:278,
832
+ #: includes/class-wpglobus.php:3508
833
  msgid "Save draft before using extra language."
834
  msgstr ""
835
 
836
+ #: includes/builders/class-wpglobus-builder.php:371
837
  msgid "Builder"
838
  msgstr ""
839
 
840
+ #: includes/builders/class-wpglobus-builder.php:395
841
  msgid "Сompatibility Settings"
842
  msgstr ""
843
 
916
  msgstr "Selektor-Typ"
917
 
918
  #. translators: ON/OFF status of WPGlobus on the edit pages.
919
+ #: includes/class-wpglobus.php:1209
920
  msgid "OFF"
921
  msgstr "AUS"
922
 
923
+ #: includes/class-wpglobus.php:1210
924
  msgid "Turn on"
925
  msgstr ""
926
 
927
  #. translators: ON/OFF status of WPGlobus on the edit pages.
928
+ #: includes/class-wpglobus.php:1214
929
  msgid "ON"
930
  msgstr "EIN"
931
 
932
+ #: includes/class-wpglobus.php:1215
933
  msgid "Turn off"
934
  msgstr ""
935
 
936
+ #: includes/class-wpglobus.php:1398
937
  msgid "You cannot disable the main language."
938
  msgstr "Die Hauptsprache kann nicht deaktiviert werden."
939
 
940
+ #: includes/class-wpglobus.php:1606
941
  msgid "*) Available after the menu is saved."
942
  msgstr "*) Verfügbar nachdem das Menü gespeichert wurde."
943
 
944
+ #: includes/class-wpglobus.php:1623
945
  msgid "Need a multilingual slug?"
946
  msgstr ""
947
 
948
+ #: includes/class-wpglobus.php:3955
949
  msgid "You must enable Pretty Permalinks to use WPGlobus."
950
  msgstr ""
951
  "Sie müssen schöne Permalinks aktivieren um WPGlobus verwenden zu können."
952
 
953
+ #: includes/class-wpglobus.php:3957
954
  msgid ""
955
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
956
  "default option."
languages/wpglobus-el.po CHANGED
@@ -274,7 +274,7 @@ msgstr ""
274
 
275
  #: includes/admin/class-wpglobus-customize-options.php:553,
276
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
277
- #: includes/class-wpglobus.php:1298, wpglobus.php:12, wpglobus.php:18
278
  msgid "WPGlobus"
279
  msgstr "WPGlobus"
280
 
@@ -792,16 +792,16 @@ msgstr ""
792
  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:3571
797
  msgid "Save draft before using extra language."
798
  msgstr ""
799
 
800
- #: includes/builders/class-wpglobus-builder.php:366
801
  msgid "Builder"
802
  msgstr ""
803
 
804
- #: includes/builders/class-wpglobus-builder.php:390
805
  msgid "Сompatibility Settings"
806
  msgstr ""
807
 
@@ -880,40 +880,40 @@ msgid "Selector type"
880
  msgstr ""
881
 
882
  #. translators: ON/OFF status of WPGlobus on the edit pages.
883
- #: includes/class-wpglobus.php:1272
884
  msgid "OFF"
885
  msgstr ""
886
 
887
- #: includes/class-wpglobus.php:1273
888
  msgid "Turn on"
889
  msgstr ""
890
 
891
  #. translators: ON/OFF status of WPGlobus on the edit pages.
892
- #: includes/class-wpglobus.php:1277
893
  msgid "ON"
894
  msgstr ""
895
 
896
- #: includes/class-wpglobus.php:1278
897
  msgid "Turn off"
898
  msgstr ""
899
 
900
- #: includes/class-wpglobus.php:1461
901
  msgid "You cannot disable the main language."
902
  msgstr ""
903
 
904
- #: includes/class-wpglobus.php:1669
905
  msgid "*) Available after the menu is saved."
906
  msgstr ""
907
 
908
- #: includes/class-wpglobus.php:1686
909
  msgid "Need a multilingual slug?"
910
  msgstr ""
911
 
912
- #: includes/class-wpglobus.php:4010
913
  msgid "You must enable Pretty Permalinks to use WPGlobus."
914
  msgstr ""
915
 
916
- #: includes/class-wpglobus.php:4012
917
  msgid ""
918
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
919
  "default option."
274
 
275
  #: includes/admin/class-wpglobus-customize-options.php:553,
276
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
277
+ #: includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
278
  msgid "WPGlobus"
279
  msgstr "WPGlobus"
280
 
792
  msgid "To translate permalinks, please activate the module Slug."
793
  msgstr ""
794
 
795
+ #: includes/builders/class-wpglobus-builder.php:278,
796
+ #: includes/class-wpglobus.php:3508
797
  msgid "Save draft before using extra language."
798
  msgstr ""
799
 
800
+ #: includes/builders/class-wpglobus-builder.php:371
801
  msgid "Builder"
802
  msgstr ""
803
 
804
+ #: includes/builders/class-wpglobus-builder.php:395
805
  msgid "Сompatibility Settings"
806
  msgstr ""
807
 
880
  msgstr ""
881
 
882
  #. translators: ON/OFF status of WPGlobus on the edit pages.
883
+ #: includes/class-wpglobus.php:1209
884
  msgid "OFF"
885
  msgstr ""
886
 
887
+ #: includes/class-wpglobus.php:1210
888
  msgid "Turn on"
889
  msgstr ""
890
 
891
  #. translators: ON/OFF status of WPGlobus on the edit pages.
892
+ #: includes/class-wpglobus.php:1214
893
  msgid "ON"
894
  msgstr ""
895
 
896
+ #: includes/class-wpglobus.php:1215
897
  msgid "Turn off"
898
  msgstr ""
899
 
900
+ #: includes/class-wpglobus.php:1398
901
  msgid "You cannot disable the main language."
902
  msgstr ""
903
 
904
+ #: includes/class-wpglobus.php:1606
905
  msgid "*) Available after the menu is saved."
906
  msgstr ""
907
 
908
+ #: includes/class-wpglobus.php:1623
909
  msgid "Need a multilingual slug?"
910
  msgstr ""
911
 
912
+ #: includes/class-wpglobus.php:3955
913
  msgid "You must enable Pretty Permalinks to use WPGlobus."
914
  msgstr ""
915
 
916
+ #: includes/class-wpglobus.php:3957
917
  msgid ""
918
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
919
  "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:553,
321
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
322
- #: includes/class-wpglobus.php:1298, wpglobus.php:12, wpglobus.php:18
323
  msgid "WPGlobus"
324
  msgstr "WPGlobus"
325
 
@@ -866,16 +866,16 @@ msgstr ""
866
  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:3571
871
  msgid "Save draft before using extra language."
872
  msgstr ""
873
 
874
- #: includes/builders/class-wpglobus-builder.php:366
875
  msgid "Builder"
876
  msgstr ""
877
 
878
- #: includes/builders/class-wpglobus-builder.php:390
879
  msgid "Сompatibility Settings"
880
  msgstr ""
881
 
@@ -954,40 +954,40 @@ msgid "Selector type"
954
  msgstr "Selector type"
955
 
956
  #. translators: ON/OFF status of WPGlobus on the edit pages.
957
- #: includes/class-wpglobus.php:1272
958
  msgid "OFF"
959
  msgstr ""
960
 
961
- #: includes/class-wpglobus.php:1273
962
  msgid "Turn on"
963
  msgstr ""
964
 
965
  #. translators: ON/OFF status of WPGlobus on the edit pages.
966
- #: includes/class-wpglobus.php:1277
967
  msgid "ON"
968
  msgstr ""
969
 
970
- #: includes/class-wpglobus.php:1278
971
  msgid "Turn off"
972
  msgstr ""
973
 
974
- #: includes/class-wpglobus.php:1461
975
  msgid "You cannot disable the main language."
976
  msgstr "You cannot disable the main language."
977
 
978
- #: includes/class-wpglobus.php:1669
979
  msgid "*) Available after the menu is saved."
980
  msgstr "*) Available after the menu is saved."
981
 
982
- #: includes/class-wpglobus.php:1686
983
  msgid "Need a multilingual slug?"
984
  msgstr "Need a multilingual slug?"
985
 
986
- #: includes/class-wpglobus.php:4010
987
  msgid "You must enable Pretty Permalinks to use WPGlobus."
988
  msgstr "You must enable Pretty Permalinks to use WPGlobus."
989
 
990
- #: includes/class-wpglobus.php:4012
991
  msgid ""
992
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
993
  "default option."
319
 
320
  #: includes/admin/class-wpglobus-customize-options.php:553,
321
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
322
+ #: includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
323
  msgid "WPGlobus"
324
  msgstr "WPGlobus"
325
 
866
  msgid "To translate permalinks, please activate the module Slug."
867
  msgstr ""
868
 
869
+ #: includes/builders/class-wpglobus-builder.php:278,
870
+ #: includes/class-wpglobus.php:3508
871
  msgid "Save draft before using extra language."
872
  msgstr ""
873
 
874
+ #: includes/builders/class-wpglobus-builder.php:371
875
  msgid "Builder"
876
  msgstr ""
877
 
878
+ #: includes/builders/class-wpglobus-builder.php:395
879
  msgid "Сompatibility Settings"
880
  msgstr ""
881
 
954
  msgstr "Selector type"
955
 
956
  #. translators: ON/OFF status of WPGlobus on the edit pages.
957
+ #: includes/class-wpglobus.php:1209
958
  msgid "OFF"
959
  msgstr ""
960
 
961
+ #: includes/class-wpglobus.php:1210
962
  msgid "Turn on"
963
  msgstr ""
964
 
965
  #. translators: ON/OFF status of WPGlobus on the edit pages.
966
+ #: includes/class-wpglobus.php:1214
967
  msgid "ON"
968
  msgstr ""
969
 
970
+ #: includes/class-wpglobus.php:1215
971
  msgid "Turn off"
972
  msgstr ""
973
 
974
+ #: includes/class-wpglobus.php:1398
975
  msgid "You cannot disable the main language."
976
  msgstr "You cannot disable the main language."
977
 
978
+ #: includes/class-wpglobus.php:1606
979
  msgid "*) Available after the menu is saved."
980
  msgstr "*) Available after the menu is saved."
981
 
982
+ #: includes/class-wpglobus.php:1623
983
  msgid "Need a multilingual slug?"
984
  msgstr "Need a multilingual slug?"
985
 
986
+ #: includes/class-wpglobus.php:3955
987
  msgid "You must enable Pretty Permalinks to use WPGlobus."
988
  msgstr "You must enable Pretty Permalinks to use WPGlobus."
989
 
990
+ #: includes/class-wpglobus.php:3957
991
  msgid ""
992
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
993
  "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:553,
320
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
321
- #: includes/class-wpglobus.php:1298, wpglobus.php:12, wpglobus.php:18
322
  msgid "WPGlobus"
323
  msgstr "WPGlobus"
324
 
@@ -865,16 +865,16 @@ msgstr ""
865
  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:3571
870
  msgid "Save draft before using extra language."
871
  msgstr ""
872
 
873
- #: includes/builders/class-wpglobus-builder.php:366
874
  msgid "Builder"
875
  msgstr ""
876
 
877
- #: includes/builders/class-wpglobus-builder.php:390
878
  msgid "Сompatibility Settings"
879
  msgstr ""
880
 
@@ -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:1272
957
  msgid "OFF"
958
  msgstr ""
959
 
960
- #: includes/class-wpglobus.php:1273
961
  msgid "Turn on"
962
  msgstr ""
963
 
964
  #. translators: ON/OFF status of WPGlobus on the edit pages.
965
- #: includes/class-wpglobus.php:1277
966
  msgid "ON"
967
  msgstr ""
968
 
969
- #: includes/class-wpglobus.php:1278
970
  msgid "Turn off"
971
  msgstr ""
972
 
973
- #: includes/class-wpglobus.php:1461
974
  msgid "You cannot disable the main language."
975
  msgstr "You cannot disable the main language."
976
 
977
- #: includes/class-wpglobus.php:1669
978
  msgid "*) Available after the menu is saved."
979
  msgstr "*) Available after the menu is saved."
980
 
981
- #: includes/class-wpglobus.php:1686
982
  msgid "Need a multilingual slug?"
983
  msgstr "Need a multilingual slug?"
984
 
985
- #: includes/class-wpglobus.php:4010
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:4012
990
  msgid ""
991
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
992
  "default option."
318
 
319
  #: includes/admin/class-wpglobus-customize-options.php:553,
320
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
321
+ #: includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
322
  msgid "WPGlobus"
323
  msgstr "WPGlobus"
324
 
865
  msgid "To translate permalinks, please activate the module Slug."
866
  msgstr ""
867
 
868
+ #: includes/builders/class-wpglobus-builder.php:278,
869
+ #: includes/class-wpglobus.php:3508
870
  msgid "Save draft before using extra language."
871
  msgstr ""
872
 
873
+ #: includes/builders/class-wpglobus-builder.php:371
874
  msgid "Builder"
875
  msgstr ""
876
 
877
+ #: includes/builders/class-wpglobus-builder.php:395
878
  msgid "Сompatibility Settings"
879
  msgstr ""
880
 
953
  msgstr "Selector type"
954
 
955
  #. translators: ON/OFF status of WPGlobus on the edit pages.
956
+ #: includes/class-wpglobus.php:1209
957
  msgid "OFF"
958
  msgstr ""
959
 
960
+ #: includes/class-wpglobus.php:1210
961
  msgid "Turn on"
962
  msgstr ""
963
 
964
  #. translators: ON/OFF status of WPGlobus on the edit pages.
965
+ #: includes/class-wpglobus.php:1214
966
  msgid "ON"
967
  msgstr ""
968
 
969
+ #: includes/class-wpglobus.php:1215
970
  msgid "Turn off"
971
  msgstr ""
972
 
973
+ #: includes/class-wpglobus.php:1398
974
  msgid "You cannot disable the main language."
975
  msgstr "You cannot disable the main language."
976
 
977
+ #: includes/class-wpglobus.php:1606
978
  msgid "*) Available after the menu is saved."
979
  msgstr "*) Available after the menu is saved."
980
 
981
+ #: includes/class-wpglobus.php:1623
982
  msgid "Need a multilingual slug?"
983
  msgstr "Need a multilingual slug?"
984
 
985
+ #: includes/class-wpglobus.php:3955
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:3957
990
  msgid ""
991
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
992
  "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:553,
321
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
322
- #: includes/class-wpglobus.php:1298, wpglobus.php:12, wpglobus.php:18
323
  msgid "WPGlobus"
324
  msgstr "WPGlobus"
325
 
@@ -866,16 +866,16 @@ msgstr ""
866
  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:3571
871
  msgid "Save draft before using extra language."
872
  msgstr ""
873
 
874
- #: includes/builders/class-wpglobus-builder.php:366
875
  msgid "Builder"
876
  msgstr ""
877
 
878
- #: includes/builders/class-wpglobus-builder.php:390
879
  msgid "Сompatibility Settings"
880
  msgstr ""
881
 
@@ -954,40 +954,40 @@ msgid "Selector type"
954
  msgstr "Selector type"
955
 
956
  #. translators: ON/OFF status of WPGlobus on the edit pages.
957
- #: includes/class-wpglobus.php:1272
958
  msgid "OFF"
959
  msgstr "OFF"
960
 
961
- #: includes/class-wpglobus.php:1273
962
  msgid "Turn on"
963
  msgstr ""
964
 
965
  #. translators: ON/OFF status of WPGlobus on the edit pages.
966
- #: includes/class-wpglobus.php:1277
967
  msgid "ON"
968
  msgstr "ON"
969
 
970
- #: includes/class-wpglobus.php:1278
971
  msgid "Turn off"
972
  msgstr ""
973
 
974
- #: includes/class-wpglobus.php:1461
975
  msgid "You cannot disable the main language."
976
  msgstr "You cannot disable the main language."
977
 
978
- #: includes/class-wpglobus.php:1669
979
  msgid "*) Available after the menu is saved."
980
  msgstr "*) Available after the menu is saved."
981
 
982
- #: includes/class-wpglobus.php:1686
983
  msgid "Need a multilingual slug?"
984
  msgstr "Need a multilingual slug?"
985
 
986
- #: includes/class-wpglobus.php:4010
987
  msgid "You must enable Pretty Permalinks to use WPGlobus."
988
  msgstr "You must enable Pretty Permalinks to use WPGlobus."
989
 
990
- #: includes/class-wpglobus.php:4012
991
  msgid ""
992
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
993
  "default option."
319
 
320
  #: includes/admin/class-wpglobus-customize-options.php:553,
321
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
322
+ #: includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
323
  msgid "WPGlobus"
324
  msgstr "WPGlobus"
325
 
866
  msgid "To translate permalinks, please activate the module Slug."
867
  msgstr ""
868
 
869
+ #: includes/builders/class-wpglobus-builder.php:278,
870
+ #: includes/class-wpglobus.php:3508
871
  msgid "Save draft before using extra language."
872
  msgstr ""
873
 
874
+ #: includes/builders/class-wpglobus-builder.php:371
875
  msgid "Builder"
876
  msgstr ""
877
 
878
+ #: includes/builders/class-wpglobus-builder.php:395
879
  msgid "Сompatibility Settings"
880
  msgstr ""
881
 
954
  msgstr "Selector type"
955
 
956
  #. translators: ON/OFF status of WPGlobus on the edit pages.
957
+ #: includes/class-wpglobus.php:1209
958
  msgid "OFF"
959
  msgstr "OFF"
960
 
961
+ #: includes/class-wpglobus.php:1210
962
  msgid "Turn on"
963
  msgstr ""
964
 
965
  #. translators: ON/OFF status of WPGlobus on the edit pages.
966
+ #: includes/class-wpglobus.php:1214
967
  msgid "ON"
968
  msgstr "ON"
969
 
970
+ #: includes/class-wpglobus.php:1215
971
  msgid "Turn off"
972
  msgstr ""
973
 
974
+ #: includes/class-wpglobus.php:1398
975
  msgid "You cannot disable the main language."
976
  msgstr "You cannot disable the main language."
977
 
978
+ #: includes/class-wpglobus.php:1606
979
  msgid "*) Available after the menu is saved."
980
  msgstr "*) Available after the menu is saved."
981
 
982
+ #: includes/class-wpglobus.php:1623
983
  msgid "Need a multilingual slug?"
984
  msgstr "Need a multilingual slug?"
985
 
986
+ #: includes/class-wpglobus.php:3955
987
  msgid "You must enable Pretty Permalinks to use WPGlobus."
988
  msgstr "You must enable Pretty Permalinks to use WPGlobus."
989
 
990
+ #: includes/class-wpglobus.php:3957
991
  msgid ""
992
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
993
  "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:553,
320
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
321
- #: includes/class-wpglobus.php:1298, wpglobus.php:12, wpglobus.php:18
322
  msgid "WPGlobus"
323
  msgstr "WPGlobus"
324
 
@@ -865,16 +865,16 @@ msgstr ""
865
  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:3571
870
  msgid "Save draft before using extra language."
871
  msgstr ""
872
 
873
- #: includes/builders/class-wpglobus-builder.php:366
874
  msgid "Builder"
875
  msgstr ""
876
 
877
- #: includes/builders/class-wpglobus-builder.php:390
878
  msgid "Сompatibility Settings"
879
  msgstr ""
880
 
@@ -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:1272
957
  msgid "OFF"
958
  msgstr ""
959
 
960
- #: includes/class-wpglobus.php:1273
961
  msgid "Turn on"
962
  msgstr ""
963
 
964
  #. translators: ON/OFF status of WPGlobus on the edit pages.
965
- #: includes/class-wpglobus.php:1277
966
  msgid "ON"
967
  msgstr ""
968
 
969
- #: includes/class-wpglobus.php:1278
970
  msgid "Turn off"
971
  msgstr ""
972
 
973
- #: includes/class-wpglobus.php:1461
974
  msgid "You cannot disable the main language."
975
  msgstr "You cannot disable the main language."
976
 
977
- #: includes/class-wpglobus.php:1669
978
  msgid "*) Available after the menu is saved."
979
  msgstr "*) Available after the menu is saved."
980
 
981
- #: includes/class-wpglobus.php:1686
982
  msgid "Need a multilingual slug?"
983
  msgstr "Need a multilingual slug?"
984
 
985
- #: includes/class-wpglobus.php:4010
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:4012
990
  msgid ""
991
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
992
  "default option."
318
 
319
  #: includes/admin/class-wpglobus-customize-options.php:553,
320
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
321
+ #: includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
322
  msgid "WPGlobus"
323
  msgstr "WPGlobus"
324
 
865
  msgid "To translate permalinks, please activate the module Slug."
866
  msgstr ""
867
 
868
+ #: includes/builders/class-wpglobus-builder.php:278,
869
+ #: includes/class-wpglobus.php:3508
870
  msgid "Save draft before using extra language."
871
  msgstr ""
872
 
873
+ #: includes/builders/class-wpglobus-builder.php:371
874
  msgid "Builder"
875
  msgstr ""
876
 
877
+ #: includes/builders/class-wpglobus-builder.php:395
878
  msgid "Сompatibility Settings"
879
  msgstr ""
880
 
953
  msgstr "Selector type"
954
 
955
  #. translators: ON/OFF status of WPGlobus on the edit pages.
956
+ #: includes/class-wpglobus.php:1209
957
  msgid "OFF"
958
  msgstr ""
959
 
960
+ #: includes/class-wpglobus.php:1210
961
  msgid "Turn on"
962
  msgstr ""
963
 
964
  #. translators: ON/OFF status of WPGlobus on the edit pages.
965
+ #: includes/class-wpglobus.php:1214
966
  msgid "ON"
967
  msgstr ""
968
 
969
+ #: includes/class-wpglobus.php:1215
970
  msgid "Turn off"
971
  msgstr ""
972
 
973
+ #: includes/class-wpglobus.php:1398
974
  msgid "You cannot disable the main language."
975
  msgstr "You cannot disable the main language."
976
 
977
+ #: includes/class-wpglobus.php:1606
978
  msgid "*) Available after the menu is saved."
979
  msgstr "*) Available after the menu is saved."
980
 
981
+ #: includes/class-wpglobus.php:1623
982
  msgid "Need a multilingual slug?"
983
  msgstr "Need a multilingual slug?"
984
 
985
+ #: includes/class-wpglobus.php:3955
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:3957
990
  msgid ""
991
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
992
  "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:553,
319
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
320
- #: includes/class-wpglobus.php:1298, wpglobus.php:12, wpglobus.php:18
321
  msgid "WPGlobus"
322
  msgstr "WPGlobus"
323
 
@@ -869,16 +869,16 @@ msgstr "Translate permalinks with our premium add-on, WPGlobus Plus!"
869
  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:3571
874
  msgid "Save draft before using extra language."
875
  msgstr "Save draft before using extra language."
876
 
877
- #: includes/builders/class-wpglobus-builder.php:366
878
  msgid "Builder"
879
  msgstr "Builder"
880
 
881
- #: includes/builders/class-wpglobus-builder.php:390
882
  msgid "Сompatibility Settings"
883
  msgstr "Сompatibility Settings"
884
 
@@ -961,40 +961,40 @@ msgid "Selector type"
961
  msgstr "Selector type"
962
 
963
  #. translators: ON/OFF status of WPGlobus on the edit pages.
964
- #: includes/class-wpglobus.php:1272
965
  msgid "OFF"
966
  msgstr "OFF"
967
 
968
- #: includes/class-wpglobus.php:1273
969
  msgid "Turn on"
970
  msgstr "Turn on"
971
 
972
  #. translators: ON/OFF status of WPGlobus on the edit pages.
973
- #: includes/class-wpglobus.php:1277
974
  msgid "ON"
975
  msgstr "ON"
976
 
977
- #: includes/class-wpglobus.php:1278
978
  msgid "Turn off"
979
  msgstr "Turn off"
980
 
981
- #: includes/class-wpglobus.php:1461
982
  msgid "You cannot disable the main language."
983
  msgstr "You cannot disable the main language."
984
 
985
- #: includes/class-wpglobus.php:1669
986
  msgid "*) Available after the menu is saved."
987
  msgstr "*) Available after the menu is saved."
988
 
989
- #: includes/class-wpglobus.php:1686
990
  msgid "Need a multilingual slug?"
991
  msgstr "Need a multilingual slug?"
992
 
993
- #: includes/class-wpglobus.php:4010
994
  msgid "You must enable Pretty Permalinks to use WPGlobus."
995
  msgstr "You must enable Pretty Permalinks to use WPGlobus."
996
 
997
- #: includes/class-wpglobus.php:4012
998
  msgid ""
999
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
1000
  "default option."
317
 
318
  #: includes/admin/class-wpglobus-customize-options.php:553,
319
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
320
+ #: includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
321
  msgid "WPGlobus"
322
  msgstr "WPGlobus"
323
 
869
  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:278,
873
+ #: includes/class-wpglobus.php:3508
874
  msgid "Save draft before using extra language."
875
  msgstr "Save draft before using extra language."
876
 
877
+ #: includes/builders/class-wpglobus-builder.php:371
878
  msgid "Builder"
879
  msgstr "Builder"
880
 
881
+ #: includes/builders/class-wpglobus-builder.php:395
882
  msgid "Сompatibility Settings"
883
  msgstr "Сompatibility Settings"
884
 
961
  msgstr "Selector type"
962
 
963
  #. translators: ON/OFF status of WPGlobus on the edit pages.
964
+ #: includes/class-wpglobus.php:1209
965
  msgid "OFF"
966
  msgstr "OFF"
967
 
968
+ #: includes/class-wpglobus.php:1210
969
  msgid "Turn on"
970
  msgstr "Turn on"
971
 
972
  #. translators: ON/OFF status of WPGlobus on the edit pages.
973
+ #: includes/class-wpglobus.php:1214
974
  msgid "ON"
975
  msgstr "ON"
976
 
977
+ #: includes/class-wpglobus.php:1215
978
  msgid "Turn off"
979
  msgstr "Turn off"
980
 
981
+ #: includes/class-wpglobus.php:1398
982
  msgid "You cannot disable the main language."
983
  msgstr "You cannot disable the main language."
984
 
985
+ #: includes/class-wpglobus.php:1606
986
  msgid "*) Available after the menu is saved."
987
  msgstr "*) Available after the menu is saved."
988
 
989
+ #: includes/class-wpglobus.php:1623
990
  msgid "Need a multilingual slug?"
991
  msgstr "Need a multilingual slug?"
992
 
993
+ #: includes/class-wpglobus.php:3955
994
  msgid "You must enable Pretty Permalinks to use WPGlobus."
995
  msgstr "You must enable Pretty Permalinks to use WPGlobus."
996
 
997
+ #: includes/class-wpglobus.php:3957
998
  msgid ""
999
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
1000
  "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:553,
320
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
321
- #: includes/class-wpglobus.php:1298, wpglobus.php:12, wpglobus.php:18
322
  msgid "WPGlobus"
323
  msgstr "WPGlobus"
324
 
@@ -865,16 +865,16 @@ msgstr ""
865
  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:3571
870
  msgid "Save draft before using extra language."
871
  msgstr ""
872
 
873
- #: includes/builders/class-wpglobus-builder.php:366
874
  msgid "Builder"
875
  msgstr ""
876
 
877
- #: includes/builders/class-wpglobus-builder.php:390
878
  msgid "Сompatibility Settings"
879
  msgstr ""
880
 
@@ -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:1272
957
  msgid "OFF"
958
  msgstr ""
959
 
960
- #: includes/class-wpglobus.php:1273
961
  msgid "Turn on"
962
  msgstr ""
963
 
964
  #. translators: ON/OFF status of WPGlobus on the edit pages.
965
- #: includes/class-wpglobus.php:1277
966
  msgid "ON"
967
  msgstr ""
968
 
969
- #: includes/class-wpglobus.php:1278
970
  msgid "Turn off"
971
  msgstr ""
972
 
973
- #: includes/class-wpglobus.php:1461
974
  msgid "You cannot disable the main language."
975
  msgstr "You cannot disable the main language."
976
 
977
- #: includes/class-wpglobus.php:1669
978
  msgid "*) Available after the menu is saved."
979
  msgstr "*) Available after the menu is saved."
980
 
981
- #: includes/class-wpglobus.php:1686
982
  msgid "Need a multilingual slug?"
983
  msgstr "Need a multilingual slug?"
984
 
985
- #: includes/class-wpglobus.php:4010
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:4012
990
  msgid ""
991
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
992
  "default option."
318
 
319
  #: includes/admin/class-wpglobus-customize-options.php:553,
320
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
321
+ #: includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
322
  msgid "WPGlobus"
323
  msgstr "WPGlobus"
324
 
865
  msgid "To translate permalinks, please activate the module Slug."
866
  msgstr ""
867
 
868
+ #: includes/builders/class-wpglobus-builder.php:278,
869
+ #: includes/class-wpglobus.php:3508
870
  msgid "Save draft before using extra language."
871
  msgstr ""
872
 
873
+ #: includes/builders/class-wpglobus-builder.php:371
874
  msgid "Builder"
875
  msgstr ""
876
 
877
+ #: includes/builders/class-wpglobus-builder.php:395
878
  msgid "Сompatibility Settings"
879
  msgstr ""
880
 
953
  msgstr "Selector type"
954
 
955
  #. translators: ON/OFF status of WPGlobus on the edit pages.
956
+ #: includes/class-wpglobus.php:1209
957
  msgid "OFF"
958
  msgstr ""
959
 
960
+ #: includes/class-wpglobus.php:1210
961
  msgid "Turn on"
962
  msgstr ""
963
 
964
  #. translators: ON/OFF status of WPGlobus on the edit pages.
965
+ #: includes/class-wpglobus.php:1214
966
  msgid "ON"
967
  msgstr ""
968
 
969
+ #: includes/class-wpglobus.php:1215
970
  msgid "Turn off"
971
  msgstr ""
972
 
973
+ #: includes/class-wpglobus.php:1398
974
  msgid "You cannot disable the main language."
975
  msgstr "You cannot disable the main language."
976
 
977
+ #: includes/class-wpglobus.php:1606
978
  msgid "*) Available after the menu is saved."
979
  msgstr "*) Available after the menu is saved."
980
 
981
+ #: includes/class-wpglobus.php:1623
982
  msgid "Need a multilingual slug?"
983
  msgstr "Need a multilingual slug?"
984
 
985
+ #: includes/class-wpglobus.php:3955
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:3957
990
  msgid ""
991
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
992
  "default option."
languages/wpglobus-es_AR.po CHANGED
@@ -290,7 +290,7 @@ msgstr ""
290
 
291
  #: includes/admin/class-wpglobus-customize-options.php:553,
292
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
293
- #: includes/class-wpglobus.php:1298, wpglobus.php:12, wpglobus.php:18
294
  msgid "WPGlobus"
295
  msgstr ""
296
 
@@ -826,16 +826,16 @@ msgstr ""
826
  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:3571
831
  msgid "Save draft before using extra language."
832
  msgstr ""
833
 
834
- #: includes/builders/class-wpglobus-builder.php:366
835
  msgid "Builder"
836
  msgstr ""
837
 
838
- #: includes/builders/class-wpglobus-builder.php:390
839
  msgid "Сompatibility Settings"
840
  msgstr ""
841
 
@@ -914,41 +914,41 @@ msgid "Selector type"
914
  msgstr "Tipo de selector"
915
 
916
  #. translators: ON/OFF status of WPGlobus on the edit pages.
917
- #: includes/class-wpglobus.php:1272
918
  msgid "OFF"
919
  msgstr ""
920
 
921
- #: includes/class-wpglobus.php:1273
922
  msgid "Turn on"
923
  msgstr ""
924
 
925
  #. translators: ON/OFF status of WPGlobus on the edit pages.
926
- #: includes/class-wpglobus.php:1277
927
  msgid "ON"
928
  msgstr ""
929
 
930
- #: includes/class-wpglobus.php:1278
931
  msgid "Turn off"
932
  msgstr ""
933
 
934
- #: includes/class-wpglobus.php:1461
935
  msgid "You cannot disable the main language."
936
  msgstr "No se puede desactivar el idioma principal."
937
 
938
- #: includes/class-wpglobus.php:1669
939
  msgid "*) Available after the menu is saved."
940
  msgstr "No Se Puede Desactivar el director idioma."
941
 
942
- #: includes/class-wpglobus.php:1686
943
  msgid "Need a multilingual slug?"
944
  msgstr ""
945
 
946
- #: includes/class-wpglobus.php:4010
947
  msgid "You must enable Pretty Permalinks to use WPGlobus."
948
  msgstr ""
949
  "Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
950
 
951
- #: includes/class-wpglobus.php:4012
952
  msgid ""
953
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
954
  "default option."
290
 
291
  #: includes/admin/class-wpglobus-customize-options.php:553,
292
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
293
+ #: includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
294
  msgid "WPGlobus"
295
  msgstr ""
296
 
826
  msgid "To translate permalinks, please activate the module Slug."
827
  msgstr ""
828
 
829
+ #: includes/builders/class-wpglobus-builder.php:278,
830
+ #: includes/class-wpglobus.php:3508
831
  msgid "Save draft before using extra language."
832
  msgstr ""
833
 
834
+ #: includes/builders/class-wpglobus-builder.php:371
835
  msgid "Builder"
836
  msgstr ""
837
 
838
+ #: includes/builders/class-wpglobus-builder.php:395
839
  msgid "Сompatibility Settings"
840
  msgstr ""
841
 
914
  msgstr "Tipo de selector"
915
 
916
  #. translators: ON/OFF status of WPGlobus on the edit pages.
917
+ #: includes/class-wpglobus.php:1209
918
  msgid "OFF"
919
  msgstr ""
920
 
921
+ #: includes/class-wpglobus.php:1210
922
  msgid "Turn on"
923
  msgstr ""
924
 
925
  #. translators: ON/OFF status of WPGlobus on the edit pages.
926
+ #: includes/class-wpglobus.php:1214
927
  msgid "ON"
928
  msgstr ""
929
 
930
+ #: includes/class-wpglobus.php:1215
931
  msgid "Turn off"
932
  msgstr ""
933
 
934
+ #: includes/class-wpglobus.php:1398
935
  msgid "You cannot disable the main language."
936
  msgstr "No se puede desactivar el idioma principal."
937
 
938
+ #: includes/class-wpglobus.php:1606
939
  msgid "*) Available after the menu is saved."
940
  msgstr "No Se Puede Desactivar el director idioma."
941
 
942
+ #: includes/class-wpglobus.php:1623
943
  msgid "Need a multilingual slug?"
944
  msgstr ""
945
 
946
+ #: includes/class-wpglobus.php:3955
947
  msgid "You must enable Pretty Permalinks to use WPGlobus."
948
  msgstr ""
949
  "Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
950
 
951
+ #: includes/class-wpglobus.php:3957
952
  msgid ""
953
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
954
  "default option."
languages/wpglobus-es_CL.po CHANGED
@@ -290,7 +290,7 @@ msgstr ""
290
 
291
  #: includes/admin/class-wpglobus-customize-options.php:553,
292
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
293
- #: includes/class-wpglobus.php:1298, wpglobus.php:12, wpglobus.php:18
294
  msgid "WPGlobus"
295
  msgstr ""
296
 
@@ -826,16 +826,16 @@ msgstr ""
826
  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:3571
831
  msgid "Save draft before using extra language."
832
  msgstr ""
833
 
834
- #: includes/builders/class-wpglobus-builder.php:366
835
  msgid "Builder"
836
  msgstr ""
837
 
838
- #: includes/builders/class-wpglobus-builder.php:390
839
  msgid "Сompatibility Settings"
840
  msgstr ""
841
 
@@ -914,41 +914,41 @@ msgid "Selector type"
914
  msgstr "Tipo de selector"
915
 
916
  #. translators: ON/OFF status of WPGlobus on the edit pages.
917
- #: includes/class-wpglobus.php:1272
918
  msgid "OFF"
919
  msgstr ""
920
 
921
- #: includes/class-wpglobus.php:1273
922
  msgid "Turn on"
923
  msgstr ""
924
 
925
  #. translators: ON/OFF status of WPGlobus on the edit pages.
926
- #: includes/class-wpglobus.php:1277
927
  msgid "ON"
928
  msgstr ""
929
 
930
- #: includes/class-wpglobus.php:1278
931
  msgid "Turn off"
932
  msgstr ""
933
 
934
- #: includes/class-wpglobus.php:1461
935
  msgid "You cannot disable the main language."
936
  msgstr "No se puede desactivar el idioma principal."
937
 
938
- #: includes/class-wpglobus.php:1669
939
  msgid "*) Available after the menu is saved."
940
  msgstr "No Se Puede Desactivar el director idioma."
941
 
942
- #: includes/class-wpglobus.php:1686
943
  msgid "Need a multilingual slug?"
944
  msgstr ""
945
 
946
- #: includes/class-wpglobus.php:4010
947
  msgid "You must enable Pretty Permalinks to use WPGlobus."
948
  msgstr ""
949
  "Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
950
 
951
- #: includes/class-wpglobus.php:4012
952
  msgid ""
953
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
954
  "default option."
290
 
291
  #: includes/admin/class-wpglobus-customize-options.php:553,
292
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
293
+ #: includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
294
  msgid "WPGlobus"
295
  msgstr ""
296
 
826
  msgid "To translate permalinks, please activate the module Slug."
827
  msgstr ""
828
 
829
+ #: includes/builders/class-wpglobus-builder.php:278,
830
+ #: includes/class-wpglobus.php:3508
831
  msgid "Save draft before using extra language."
832
  msgstr ""
833
 
834
+ #: includes/builders/class-wpglobus-builder.php:371
835
  msgid "Builder"
836
  msgstr ""
837
 
838
+ #: includes/builders/class-wpglobus-builder.php:395
839
  msgid "Сompatibility Settings"
840
  msgstr ""
841
 
914
  msgstr "Tipo de selector"
915
 
916
  #. translators: ON/OFF status of WPGlobus on the edit pages.
917
+ #: includes/class-wpglobus.php:1209
918
  msgid "OFF"
919
  msgstr ""
920
 
921
+ #: includes/class-wpglobus.php:1210
922
  msgid "Turn on"
923
  msgstr ""
924
 
925
  #. translators: ON/OFF status of WPGlobus on the edit pages.
926
+ #: includes/class-wpglobus.php:1214
927
  msgid "ON"
928
  msgstr ""
929
 
930
+ #: includes/class-wpglobus.php:1215
931
  msgid "Turn off"
932
  msgstr ""
933
 
934
+ #: includes/class-wpglobus.php:1398
935
  msgid "You cannot disable the main language."
936
  msgstr "No se puede desactivar el idioma principal."
937
 
938
+ #: includes/class-wpglobus.php:1606
939
  msgid "*) Available after the menu is saved."
940
  msgstr "No Se Puede Desactivar el director idioma."
941
 
942
+ #: includes/class-wpglobus.php:1623
943
  msgid "Need a multilingual slug?"
944
  msgstr ""
945
 
946
+ #: includes/class-wpglobus.php:3955
947
  msgid "You must enable Pretty Permalinks to use WPGlobus."
948
  msgstr ""
949
  "Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
950
 
951
+ #: includes/class-wpglobus.php:3957
952
  msgid ""
953
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
954
  "default option."
languages/wpglobus-es_CO.po CHANGED
@@ -290,7 +290,7 @@ msgstr ""
290
 
291
  #: includes/admin/class-wpglobus-customize-options.php:553,
292
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
293
- #: includes/class-wpglobus.php:1298, wpglobus.php:12, wpglobus.php:18
294
  msgid "WPGlobus"
295
  msgstr ""
296
 
@@ -826,16 +826,16 @@ msgstr ""
826
  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:3571
831
  msgid "Save draft before using extra language."
832
  msgstr ""
833
 
834
- #: includes/builders/class-wpglobus-builder.php:366
835
  msgid "Builder"
836
  msgstr ""
837
 
838
- #: includes/builders/class-wpglobus-builder.php:390
839
  msgid "Сompatibility Settings"
840
  msgstr ""
841
 
@@ -914,41 +914,41 @@ msgid "Selector type"
914
  msgstr "Tipo de selector"
915
 
916
  #. translators: ON/OFF status of WPGlobus on the edit pages.
917
- #: includes/class-wpglobus.php:1272
918
  msgid "OFF"
919
  msgstr ""
920
 
921
- #: includes/class-wpglobus.php:1273
922
  msgid "Turn on"
923
  msgstr ""
924
 
925
  #. translators: ON/OFF status of WPGlobus on the edit pages.
926
- #: includes/class-wpglobus.php:1277
927
  msgid "ON"
928
  msgstr ""
929
 
930
- #: includes/class-wpglobus.php:1278
931
  msgid "Turn off"
932
  msgstr ""
933
 
934
- #: includes/class-wpglobus.php:1461
935
  msgid "You cannot disable the main language."
936
  msgstr "No se puede desactivar el idioma principal."
937
 
938
- #: includes/class-wpglobus.php:1669
939
  msgid "*) Available after the menu is saved."
940
  msgstr "No Se Puede Desactivar el director idioma."
941
 
942
- #: includes/class-wpglobus.php:1686
943
  msgid "Need a multilingual slug?"
944
  msgstr ""
945
 
946
- #: includes/class-wpglobus.php:4010
947
  msgid "You must enable Pretty Permalinks to use WPGlobus."
948
  msgstr ""
949
  "Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
950
 
951
- #: includes/class-wpglobus.php:4012
952
  msgid ""
953
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
954
  "default option."
290
 
291
  #: includes/admin/class-wpglobus-customize-options.php:553,
292
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
293
+ #: includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
294
  msgid "WPGlobus"
295
  msgstr ""
296
 
826
  msgid "To translate permalinks, please activate the module Slug."
827
  msgstr ""
828
 
829
+ #: includes/builders/class-wpglobus-builder.php:278,
830
+ #: includes/class-wpglobus.php:3508
831
  msgid "Save draft before using extra language."
832
  msgstr ""
833
 
834
+ #: includes/builders/class-wpglobus-builder.php:371
835
  msgid "Builder"
836
  msgstr ""
837
 
838
+ #: includes/builders/class-wpglobus-builder.php:395
839
  msgid "Сompatibility Settings"
840
  msgstr ""
841
 
914
  msgstr "Tipo de selector"
915
 
916
  #. translators: ON/OFF status of WPGlobus on the edit pages.
917
+ #: includes/class-wpglobus.php:1209
918
  msgid "OFF"
919
  msgstr ""
920
 
921
+ #: includes/class-wpglobus.php:1210
922
  msgid "Turn on"
923
  msgstr ""
924
 
925
  #. translators: ON/OFF status of WPGlobus on the edit pages.
926
+ #: includes/class-wpglobus.php:1214
927
  msgid "ON"
928
  msgstr ""
929
 
930
+ #: includes/class-wpglobus.php:1215
931
  msgid "Turn off"
932
  msgstr ""
933
 
934
+ #: includes/class-wpglobus.php:1398
935
  msgid "You cannot disable the main language."
936
  msgstr "No se puede desactivar el idioma principal."
937
 
938
+ #: includes/class-wpglobus.php:1606
939
  msgid "*) Available after the menu is saved."
940
  msgstr "No Se Puede Desactivar el director idioma."
941
 
942
+ #: includes/class-wpglobus.php:1623
943
  msgid "Need a multilingual slug?"
944
  msgstr ""
945
 
946
+ #: includes/class-wpglobus.php:3955
947
  msgid "You must enable Pretty Permalinks to use WPGlobus."
948
  msgstr ""
949
  "Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
950
 
951
+ #: includes/class-wpglobus.php:3957
952
  msgid ""
953
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
954
  "default option."
languages/wpglobus-es_CR.po CHANGED
@@ -290,7 +290,7 @@ msgstr ""
290
 
291
  #: includes/admin/class-wpglobus-customize-options.php:553,
292
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
293
- #: includes/class-wpglobus.php:1298, wpglobus.php:12, wpglobus.php:18
294
  msgid "WPGlobus"
295
  msgstr ""
296
 
@@ -826,16 +826,16 @@ msgstr ""
826
  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:3571
831
  msgid "Save draft before using extra language."
832
  msgstr ""
833
 
834
- #: includes/builders/class-wpglobus-builder.php:366
835
  msgid "Builder"
836
  msgstr ""
837
 
838
- #: includes/builders/class-wpglobus-builder.php:390
839
  msgid "Сompatibility Settings"
840
  msgstr ""
841
 
@@ -914,41 +914,41 @@ msgid "Selector type"
914
  msgstr "Tipo de selector"
915
 
916
  #. translators: ON/OFF status of WPGlobus on the edit pages.
917
- #: includes/class-wpglobus.php:1272
918
  msgid "OFF"
919
  msgstr ""
920
 
921
- #: includes/class-wpglobus.php:1273
922
  msgid "Turn on"
923
  msgstr ""
924
 
925
  #. translators: ON/OFF status of WPGlobus on the edit pages.
926
- #: includes/class-wpglobus.php:1277
927
  msgid "ON"
928
  msgstr ""
929
 
930
- #: includes/class-wpglobus.php:1278
931
  msgid "Turn off"
932
  msgstr ""
933
 
934
- #: includes/class-wpglobus.php:1461
935
  msgid "You cannot disable the main language."
936
  msgstr "No se puede desactivar el idioma principal."
937
 
938
- #: includes/class-wpglobus.php:1669
939
  msgid "*) Available after the menu is saved."
940
  msgstr "No Se Puede Desactivar el director idioma."
941
 
942
- #: includes/class-wpglobus.php:1686
943
  msgid "Need a multilingual slug?"
944
  msgstr ""
945
 
946
- #: includes/class-wpglobus.php:4010
947
  msgid "You must enable Pretty Permalinks to use WPGlobus."
948
  msgstr ""
949
  "Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
950
 
951
- #: includes/class-wpglobus.php:4012
952
  msgid ""
953
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
954
  "default option."
290
 
291
  #: includes/admin/class-wpglobus-customize-options.php:553,
292
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
293
+ #: includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
294
  msgid "WPGlobus"
295
  msgstr ""
296
 
826
  msgid "To translate permalinks, please activate the module Slug."
827
  msgstr ""
828
 
829
+ #: includes/builders/class-wpglobus-builder.php:278,
830
+ #: includes/class-wpglobus.php:3508
831
  msgid "Save draft before using extra language."
832
  msgstr ""
833
 
834
+ #: includes/builders/class-wpglobus-builder.php:371
835
  msgid "Builder"
836
  msgstr ""
837
 
838
+ #: includes/builders/class-wpglobus-builder.php:395
839
  msgid "Сompatibility Settings"
840
  msgstr ""
841
 
914
  msgstr "Tipo de selector"
915
 
916
  #. translators: ON/OFF status of WPGlobus on the edit pages.
917
+ #: includes/class-wpglobus.php:1209
918
  msgid "OFF"
919
  msgstr ""
920
 
921
+ #: includes/class-wpglobus.php:1210
922
  msgid "Turn on"
923
  msgstr ""
924
 
925
  #. translators: ON/OFF status of WPGlobus on the edit pages.
926
+ #: includes/class-wpglobus.php:1214
927
  msgid "ON"
928
  msgstr ""
929
 
930
+ #: includes/class-wpglobus.php:1215
931
  msgid "Turn off"
932
  msgstr ""
933
 
934
+ #: includes/class-wpglobus.php:1398
935
  msgid "You cannot disable the main language."
936
  msgstr "No se puede desactivar el idioma principal."
937
 
938
+ #: includes/class-wpglobus.php:1606
939
  msgid "*) Available after the menu is saved."
940
  msgstr "No Se Puede Desactivar el director idioma."
941
 
942
+ #: includes/class-wpglobus.php:1623
943
  msgid "Need a multilingual slug?"
944
  msgstr ""
945
 
946
+ #: includes/class-wpglobus.php:3955
947
  msgid "You must enable Pretty Permalinks to use WPGlobus."
948
  msgstr ""
949
  "Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
950
 
951
+ #: includes/class-wpglobus.php:3957
952
  msgid ""
953
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
954
  "default option."
languages/wpglobus-es_ES.po CHANGED
@@ -290,7 +290,7 @@ msgstr ""
290
 
291
  #: includes/admin/class-wpglobus-customize-options.php:553,
292
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
293
- #: includes/class-wpglobus.php:1298, wpglobus.php:12, wpglobus.php:18
294
  msgid "WPGlobus"
295
  msgstr ""
296
 
@@ -826,16 +826,16 @@ msgstr ""
826
  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:3571
831
  msgid "Save draft before using extra language."
832
  msgstr ""
833
 
834
- #: includes/builders/class-wpglobus-builder.php:366
835
  msgid "Builder"
836
  msgstr ""
837
 
838
- #: includes/builders/class-wpglobus-builder.php:390
839
  msgid "Сompatibility Settings"
840
  msgstr ""
841
 
@@ -914,41 +914,41 @@ msgid "Selector type"
914
  msgstr "Tipo de selector"
915
 
916
  #. translators: ON/OFF status of WPGlobus on the edit pages.
917
- #: includes/class-wpglobus.php:1272
918
  msgid "OFF"
919
  msgstr ""
920
 
921
- #: includes/class-wpglobus.php:1273
922
  msgid "Turn on"
923
  msgstr ""
924
 
925
  #. translators: ON/OFF status of WPGlobus on the edit pages.
926
- #: includes/class-wpglobus.php:1277
927
  msgid "ON"
928
  msgstr "ON"
929
 
930
- #: includes/class-wpglobus.php:1278
931
  msgid "Turn off"
932
  msgstr ""
933
 
934
- #: includes/class-wpglobus.php:1461
935
  msgid "You cannot disable the main language."
936
  msgstr "No se puede desactivar el idioma principal."
937
 
938
- #: includes/class-wpglobus.php:1669
939
  msgid "*) Available after the menu is saved."
940
  msgstr "No Se Puede Desactivar el director idioma."
941
 
942
- #: includes/class-wpglobus.php:1686
943
  msgid "Need a multilingual slug?"
944
  msgstr ""
945
 
946
- #: includes/class-wpglobus.php:4010
947
  msgid "You must enable Pretty Permalinks to use WPGlobus."
948
  msgstr ""
949
  "Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
950
 
951
- #: includes/class-wpglobus.php:4012
952
  msgid ""
953
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
954
  "default option."
290
 
291
  #: includes/admin/class-wpglobus-customize-options.php:553,
292
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
293
+ #: includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
294
  msgid "WPGlobus"
295
  msgstr ""
296
 
826
  msgid "To translate permalinks, please activate the module Slug."
827
  msgstr ""
828
 
829
+ #: includes/builders/class-wpglobus-builder.php:278,
830
+ #: includes/class-wpglobus.php:3508
831
  msgid "Save draft before using extra language."
832
  msgstr ""
833
 
834
+ #: includes/builders/class-wpglobus-builder.php:371
835
  msgid "Builder"
836
  msgstr ""
837
 
838
+ #: includes/builders/class-wpglobus-builder.php:395
839
  msgid "Сompatibility Settings"
840
  msgstr ""
841
 
914
  msgstr "Tipo de selector"
915
 
916
  #. translators: ON/OFF status of WPGlobus on the edit pages.
917
+ #: includes/class-wpglobus.php:1209
918
  msgid "OFF"
919
  msgstr ""
920
 
921
+ #: includes/class-wpglobus.php:1210
922
  msgid "Turn on"
923
  msgstr ""
924
 
925
  #. translators: ON/OFF status of WPGlobus on the edit pages.
926
+ #: includes/class-wpglobus.php:1214
927
  msgid "ON"
928
  msgstr "ON"
929
 
930
+ #: includes/class-wpglobus.php:1215
931
  msgid "Turn off"
932
  msgstr ""
933
 
934
+ #: includes/class-wpglobus.php:1398
935
  msgid "You cannot disable the main language."
936
  msgstr "No se puede desactivar el idioma principal."
937
 
938
+ #: includes/class-wpglobus.php:1606
939
  msgid "*) Available after the menu is saved."
940
  msgstr "No Se Puede Desactivar el director idioma."
941
 
942
+ #: includes/class-wpglobus.php:1623
943
  msgid "Need a multilingual slug?"
944
  msgstr ""
945
 
946
+ #: includes/class-wpglobus.php:3955
947
  msgid "You must enable Pretty Permalinks to use WPGlobus."
948
  msgstr ""
949
  "Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
950
 
951
+ #: includes/class-wpglobus.php:3957
952
  msgid ""
953
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
954
  "default option."
languages/wpglobus-es_GT.po CHANGED
@@ -290,7 +290,7 @@ msgstr ""
290
 
291
  #: includes/admin/class-wpglobus-customize-options.php:553,
292
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
293
- #: includes/class-wpglobus.php:1298, wpglobus.php:12, wpglobus.php:18
294
  msgid "WPGlobus"
295
  msgstr ""
296
 
@@ -826,16 +826,16 @@ msgstr ""
826
  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:3571
831
  msgid "Save draft before using extra language."
832
  msgstr ""
833
 
834
- #: includes/builders/class-wpglobus-builder.php:366
835
  msgid "Builder"
836
  msgstr ""
837
 
838
- #: includes/builders/class-wpglobus-builder.php:390
839
  msgid "Сompatibility Settings"
840
  msgstr ""
841
 
@@ -914,41 +914,41 @@ msgid "Selector type"
914
  msgstr "Tipo de selector"
915
 
916
  #. translators: ON/OFF status of WPGlobus on the edit pages.
917
- #: includes/class-wpglobus.php:1272
918
  msgid "OFF"
919
  msgstr ""
920
 
921
- #: includes/class-wpglobus.php:1273
922
  msgid "Turn on"
923
  msgstr ""
924
 
925
  #. translators: ON/OFF status of WPGlobus on the edit pages.
926
- #: includes/class-wpglobus.php:1277
927
  msgid "ON"
928
  msgstr ""
929
 
930
- #: includes/class-wpglobus.php:1278
931
  msgid "Turn off"
932
  msgstr ""
933
 
934
- #: includes/class-wpglobus.php:1461
935
  msgid "You cannot disable the main language."
936
  msgstr "No se puede desactivar el idioma principal."
937
 
938
- #: includes/class-wpglobus.php:1669
939
  msgid "*) Available after the menu is saved."
940
  msgstr "No Se Puede Desactivar el director idioma."
941
 
942
- #: includes/class-wpglobus.php:1686
943
  msgid "Need a multilingual slug?"
944
  msgstr ""
945
 
946
- #: includes/class-wpglobus.php:4010
947
  msgid "You must enable Pretty Permalinks to use WPGlobus."
948
  msgstr ""
949
  "Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
950
 
951
- #: includes/class-wpglobus.php:4012
952
  msgid ""
953
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
954
  "default option."
290
 
291
  #: includes/admin/class-wpglobus-customize-options.php:553,
292
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
293
+ #: includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
294
  msgid "WPGlobus"
295
  msgstr ""
296
 
826
  msgid "To translate permalinks, please activate the module Slug."
827
  msgstr ""
828
 
829
+ #: includes/builders/class-wpglobus-builder.php:278,
830
+ #: includes/class-wpglobus.php:3508
831
  msgid "Save draft before using extra language."
832
  msgstr ""
833
 
834
+ #: includes/builders/class-wpglobus-builder.php:371
835
  msgid "Builder"
836
  msgstr ""
837
 
838
+ #: includes/builders/class-wpglobus-builder.php:395
839
  msgid "Сompatibility Settings"
840
  msgstr ""
841
 
914
  msgstr "Tipo de selector"
915
 
916
  #. translators: ON/OFF status of WPGlobus on the edit pages.
917
+ #: includes/class-wpglobus.php:1209
918
  msgid "OFF"
919
  msgstr ""
920
 
921
+ #: includes/class-wpglobus.php:1210
922
  msgid "Turn on"
923
  msgstr ""
924
 
925
  #. translators: ON/OFF status of WPGlobus on the edit pages.
926
+ #: includes/class-wpglobus.php:1214
927
  msgid "ON"
928
  msgstr ""
929
 
930
+ #: includes/class-wpglobus.php:1215
931
  msgid "Turn off"
932
  msgstr ""
933
 
934
+ #: includes/class-wpglobus.php:1398
935
  msgid "You cannot disable the main language."
936
  msgstr "No se puede desactivar el idioma principal."
937
 
938
+ #: includes/class-wpglobus.php:1606
939
  msgid "*) Available after the menu is saved."
940
  msgstr "No Se Puede Desactivar el director idioma."
941
 
942
+ #: includes/class-wpglobus.php:1623
943
  msgid "Need a multilingual slug?"
944
  msgstr ""
945
 
946
+ #: includes/class-wpglobus.php:3955
947
  msgid "You must enable Pretty Permalinks to use WPGlobus."
948
  msgstr ""
949
  "Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
950
 
951
+ #: includes/class-wpglobus.php:3957
952
  msgid ""
953
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
954
  "default option."
languages/wpglobus-es_MX.po CHANGED
@@ -290,7 +290,7 @@ msgstr ""
290
 
291
  #: includes/admin/class-wpglobus-customize-options.php:553,
292
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
293
- #: includes/class-wpglobus.php:1298, wpglobus.php:12, wpglobus.php:18
294
  msgid "WPGlobus"
295
  msgstr ""
296
 
@@ -826,16 +826,16 @@ msgstr ""
826
  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:3571
831
  msgid "Save draft before using extra language."
832
  msgstr ""
833
 
834
- #: includes/builders/class-wpglobus-builder.php:366
835
  msgid "Builder"
836
  msgstr ""
837
 
838
- #: includes/builders/class-wpglobus-builder.php:390
839
  msgid "Сompatibility Settings"
840
  msgstr ""
841
 
@@ -914,41 +914,41 @@ msgid "Selector type"
914
  msgstr "Tipo de selector"
915
 
916
  #. translators: ON/OFF status of WPGlobus on the edit pages.
917
- #: includes/class-wpglobus.php:1272
918
  msgid "OFF"
919
  msgstr "APAGADO"
920
 
921
- #: includes/class-wpglobus.php:1273
922
  msgid "Turn on"
923
  msgstr ""
924
 
925
  #. translators: ON/OFF status of WPGlobus on the edit pages.
926
- #: includes/class-wpglobus.php:1277
927
  msgid "ON"
928
  msgstr "ON"
929
 
930
- #: includes/class-wpglobus.php:1278
931
  msgid "Turn off"
932
  msgstr ""
933
 
934
- #: includes/class-wpglobus.php:1461
935
  msgid "You cannot disable the main language."
936
  msgstr "No se puede desactivar el idioma principal."
937
 
938
- #: includes/class-wpglobus.php:1669
939
  msgid "*) Available after the menu is saved."
940
  msgstr "No Se Puede Desactivar el director idioma."
941
 
942
- #: includes/class-wpglobus.php:1686
943
  msgid "Need a multilingual slug?"
944
  msgstr ""
945
 
946
- #: includes/class-wpglobus.php:4010
947
  msgid "You must enable Pretty Permalinks to use WPGlobus."
948
  msgstr ""
949
  "Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
950
 
951
- #: includes/class-wpglobus.php:4012
952
  msgid ""
953
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
954
  "default option."
290
 
291
  #: includes/admin/class-wpglobus-customize-options.php:553,
292
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
293
+ #: includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
294
  msgid "WPGlobus"
295
  msgstr ""
296
 
826
  msgid "To translate permalinks, please activate the module Slug."
827
  msgstr ""
828
 
829
+ #: includes/builders/class-wpglobus-builder.php:278,
830
+ #: includes/class-wpglobus.php:3508
831
  msgid "Save draft before using extra language."
832
  msgstr ""
833
 
834
+ #: includes/builders/class-wpglobus-builder.php:371
835
  msgid "Builder"
836
  msgstr ""
837
 
838
+ #: includes/builders/class-wpglobus-builder.php:395
839
  msgid "Сompatibility Settings"
840
  msgstr ""
841
 
914
  msgstr "Tipo de selector"
915
 
916
  #. translators: ON/OFF status of WPGlobus on the edit pages.
917
+ #: includes/class-wpglobus.php:1209
918
  msgid "OFF"
919
  msgstr "APAGADO"
920
 
921
+ #: includes/class-wpglobus.php:1210
922
  msgid "Turn on"
923
  msgstr ""
924
 
925
  #. translators: ON/OFF status of WPGlobus on the edit pages.
926
+ #: includes/class-wpglobus.php:1214
927
  msgid "ON"
928
  msgstr "ON"
929
 
930
+ #: includes/class-wpglobus.php:1215
931
  msgid "Turn off"
932
  msgstr ""
933
 
934
+ #: includes/class-wpglobus.php:1398
935
  msgid "You cannot disable the main language."
936
  msgstr "No se puede desactivar el idioma principal."
937
 
938
+ #: includes/class-wpglobus.php:1606
939
  msgid "*) Available after the menu is saved."
940
  msgstr "No Se Puede Desactivar el director idioma."
941
 
942
+ #: includes/class-wpglobus.php:1623
943
  msgid "Need a multilingual slug?"
944
  msgstr ""
945
 
946
+ #: includes/class-wpglobus.php:3955
947
  msgid "You must enable Pretty Permalinks to use WPGlobus."
948
  msgstr ""
949
  "Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
950
 
951
+ #: includes/class-wpglobus.php:3957
952
  msgid ""
953
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
954
  "default option."
languages/wpglobus-es_PE.po CHANGED
@@ -290,7 +290,7 @@ msgstr ""
290
 
291
  #: includes/admin/class-wpglobus-customize-options.php:553,
292
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
293
- #: includes/class-wpglobus.php:1298, wpglobus.php:12, wpglobus.php:18
294
  msgid "WPGlobus"
295
  msgstr ""
296
 
@@ -826,16 +826,16 @@ msgstr ""
826
  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:3571
831
  msgid "Save draft before using extra language."
832
  msgstr ""
833
 
834
- #: includes/builders/class-wpglobus-builder.php:366
835
  msgid "Builder"
836
  msgstr ""
837
 
838
- #: includes/builders/class-wpglobus-builder.php:390
839
  msgid "Сompatibility Settings"
840
  msgstr ""
841
 
@@ -914,41 +914,41 @@ msgid "Selector type"
914
  msgstr "Tipo de selector"
915
 
916
  #. translators: ON/OFF status of WPGlobus on the edit pages.
917
- #: includes/class-wpglobus.php:1272
918
  msgid "OFF"
919
  msgstr ""
920
 
921
- #: includes/class-wpglobus.php:1273
922
  msgid "Turn on"
923
  msgstr ""
924
 
925
  #. translators: ON/OFF status of WPGlobus on the edit pages.
926
- #: includes/class-wpglobus.php:1277
927
  msgid "ON"
928
  msgstr ""
929
 
930
- #: includes/class-wpglobus.php:1278
931
  msgid "Turn off"
932
  msgstr ""
933
 
934
- #: includes/class-wpglobus.php:1461
935
  msgid "You cannot disable the main language."
936
  msgstr "No se puede desactivar el idioma principal."
937
 
938
- #: includes/class-wpglobus.php:1669
939
  msgid "*) Available after the menu is saved."
940
  msgstr "No Se Puede Desactivar el director idioma."
941
 
942
- #: includes/class-wpglobus.php:1686
943
  msgid "Need a multilingual slug?"
944
  msgstr ""
945
 
946
- #: includes/class-wpglobus.php:4010
947
  msgid "You must enable Pretty Permalinks to use WPGlobus."
948
  msgstr ""
949
  "Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
950
 
951
- #: includes/class-wpglobus.php:4012
952
  msgid ""
953
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
954
  "default option."
290
 
291
  #: includes/admin/class-wpglobus-customize-options.php:553,
292
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
293
+ #: includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
294
  msgid "WPGlobus"
295
  msgstr ""
296
 
826
  msgid "To translate permalinks, please activate the module Slug."
827
  msgstr ""
828
 
829
+ #: includes/builders/class-wpglobus-builder.php:278,
830
+ #: includes/class-wpglobus.php:3508
831
  msgid "Save draft before using extra language."
832
  msgstr ""
833
 
834
+ #: includes/builders/class-wpglobus-builder.php:371
835
  msgid "Builder"
836
  msgstr ""
837
 
838
+ #: includes/builders/class-wpglobus-builder.php:395
839
  msgid "Сompatibility Settings"
840
  msgstr ""
841
 
914
  msgstr "Tipo de selector"
915
 
916
  #. translators: ON/OFF status of WPGlobus on the edit pages.
917
+ #: includes/class-wpglobus.php:1209
918
  msgid "OFF"
919
  msgstr ""
920
 
921
+ #: includes/class-wpglobus.php:1210
922
  msgid "Turn on"
923
  msgstr ""
924
 
925
  #. translators: ON/OFF status of WPGlobus on the edit pages.
926
+ #: includes/class-wpglobus.php:1214
927
  msgid "ON"
928
  msgstr ""
929
 
930
+ #: includes/class-wpglobus.php:1215
931
  msgid "Turn off"
932
  msgstr ""
933
 
934
+ #: includes/class-wpglobus.php:1398
935
  msgid "You cannot disable the main language."
936
  msgstr "No se puede desactivar el idioma principal."
937
 
938
+ #: includes/class-wpglobus.php:1606
939
  msgid "*) Available after the menu is saved."
940
  msgstr "No Se Puede Desactivar el director idioma."
941
 
942
+ #: includes/class-wpglobus.php:1623
943
  msgid "Need a multilingual slug?"
944
  msgstr ""
945
 
946
+ #: includes/class-wpglobus.php:3955
947
  msgid "You must enable Pretty Permalinks to use WPGlobus."
948
  msgstr ""
949
  "Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
950
 
951
+ #: includes/class-wpglobus.php:3957
952
  msgid ""
953
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
954
  "default option."
languages/wpglobus-es_PR.po CHANGED
@@ -290,7 +290,7 @@ msgstr ""
290
 
291
  #: includes/admin/class-wpglobus-customize-options.php:553,
292
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
293
- #: includes/class-wpglobus.php:1298, wpglobus.php:12, wpglobus.php:18
294
  msgid "WPGlobus"
295
  msgstr ""
296
 
@@ -826,16 +826,16 @@ msgstr ""
826
  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:3571
831
  msgid "Save draft before using extra language."
832
  msgstr ""
833
 
834
- #: includes/builders/class-wpglobus-builder.php:366
835
  msgid "Builder"
836
  msgstr ""
837
 
838
- #: includes/builders/class-wpglobus-builder.php:390
839
  msgid "Сompatibility Settings"
840
  msgstr ""
841
 
@@ -914,41 +914,41 @@ msgid "Selector type"
914
  msgstr "Tipo de selector"
915
 
916
  #. translators: ON/OFF status of WPGlobus on the edit pages.
917
- #: includes/class-wpglobus.php:1272
918
  msgid "OFF"
919
  msgstr ""
920
 
921
- #: includes/class-wpglobus.php:1273
922
  msgid "Turn on"
923
  msgstr ""
924
 
925
  #. translators: ON/OFF status of WPGlobus on the edit pages.
926
- #: includes/class-wpglobus.php:1277
927
  msgid "ON"
928
  msgstr ""
929
 
930
- #: includes/class-wpglobus.php:1278
931
  msgid "Turn off"
932
  msgstr ""
933
 
934
- #: includes/class-wpglobus.php:1461
935
  msgid "You cannot disable the main language."
936
  msgstr "No se puede desactivar el idioma principal."
937
 
938
- #: includes/class-wpglobus.php:1669
939
  msgid "*) Available after the menu is saved."
940
  msgstr "No Se Puede Desactivar el director idioma."
941
 
942
- #: includes/class-wpglobus.php:1686
943
  msgid "Need a multilingual slug?"
944
  msgstr ""
945
 
946
- #: includes/class-wpglobus.php:4010
947
  msgid "You must enable Pretty Permalinks to use WPGlobus."
948
  msgstr ""
949
  "Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
950
 
951
- #: includes/class-wpglobus.php:4012
952
  msgid ""
953
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
954
  "default option."
290
 
291
  #: includes/admin/class-wpglobus-customize-options.php:553,
292
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
293
+ #: includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
294
  msgid "WPGlobus"
295
  msgstr ""
296
 
826
  msgid "To translate permalinks, please activate the module Slug."
827
  msgstr ""
828
 
829
+ #: includes/builders/class-wpglobus-builder.php:278,
830
+ #: includes/class-wpglobus.php:3508
831
  msgid "Save draft before using extra language."
832
  msgstr ""
833
 
834
+ #: includes/builders/class-wpglobus-builder.php:371
835
  msgid "Builder"
836
  msgstr ""
837
 
838
+ #: includes/builders/class-wpglobus-builder.php:395
839
  msgid "Сompatibility Settings"
840
  msgstr ""
841
 
914
  msgstr "Tipo de selector"
915
 
916
  #. translators: ON/OFF status of WPGlobus on the edit pages.
917
+ #: includes/class-wpglobus.php:1209
918
  msgid "OFF"
919
  msgstr ""
920
 
921
+ #: includes/class-wpglobus.php:1210
922
  msgid "Turn on"
923
  msgstr ""
924
 
925
  #. translators: ON/OFF status of WPGlobus on the edit pages.
926
+ #: includes/class-wpglobus.php:1214
927
  msgid "ON"
928
  msgstr ""
929
 
930
+ #: includes/class-wpglobus.php:1215
931
  msgid "Turn off"
932
  msgstr ""
933
 
934
+ #: includes/class-wpglobus.php:1398
935
  msgid "You cannot disable the main language."
936
  msgstr "No se puede desactivar el idioma principal."
937
 
938
+ #: includes/class-wpglobus.php:1606
939
  msgid "*) Available after the menu is saved."
940
  msgstr "No Se Puede Desactivar el director idioma."
941
 
942
+ #: includes/class-wpglobus.php:1623
943
  msgid "Need a multilingual slug?"
944
  msgstr ""
945
 
946
+ #: includes/class-wpglobus.php:3955
947
  msgid "You must enable Pretty Permalinks to use WPGlobus."
948
  msgstr ""
949
  "Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
950
 
951
+ #: includes/class-wpglobus.php:3957
952
  msgid ""
953
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
954
  "default option."
languages/wpglobus-es_VE.po CHANGED
@@ -290,7 +290,7 @@ msgstr ""
290
 
291
  #: includes/admin/class-wpglobus-customize-options.php:553,
292
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
293
- #: includes/class-wpglobus.php:1298, wpglobus.php:12, wpglobus.php:18
294
  msgid "WPGlobus"
295
  msgstr ""
296
 
@@ -826,16 +826,16 @@ msgstr ""
826
  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:3571
831
  msgid "Save draft before using extra language."
832
  msgstr ""
833
 
834
- #: includes/builders/class-wpglobus-builder.php:366
835
  msgid "Builder"
836
  msgstr ""
837
 
838
- #: includes/builders/class-wpglobus-builder.php:390
839
  msgid "Сompatibility Settings"
840
  msgstr ""
841
 
@@ -914,41 +914,41 @@ msgid "Selector type"
914
  msgstr "Tipo de selector"
915
 
916
  #. translators: ON/OFF status of WPGlobus on the edit pages.
917
- #: includes/class-wpglobus.php:1272
918
  msgid "OFF"
919
  msgstr ""
920
 
921
- #: includes/class-wpglobus.php:1273
922
  msgid "Turn on"
923
  msgstr ""
924
 
925
  #. translators: ON/OFF status of WPGlobus on the edit pages.
926
- #: includes/class-wpglobus.php:1277
927
  msgid "ON"
928
  msgstr ""
929
 
930
- #: includes/class-wpglobus.php:1278
931
  msgid "Turn off"
932
  msgstr ""
933
 
934
- #: includes/class-wpglobus.php:1461
935
  msgid "You cannot disable the main language."
936
  msgstr "No se puede desactivar el idioma principal."
937
 
938
- #: includes/class-wpglobus.php:1669
939
  msgid "*) Available after the menu is saved."
940
  msgstr "No Se Puede Desactivar el director idioma."
941
 
942
- #: includes/class-wpglobus.php:1686
943
  msgid "Need a multilingual slug?"
944
  msgstr ""
945
 
946
- #: includes/class-wpglobus.php:4010
947
  msgid "You must enable Pretty Permalinks to use WPGlobus."
948
  msgstr ""
949
  "Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
950
 
951
- #: includes/class-wpglobus.php:4012
952
  msgid ""
953
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
954
  "default option."
290
 
291
  #: includes/admin/class-wpglobus-customize-options.php:553,
292
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
293
+ #: includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
294
  msgid "WPGlobus"
295
  msgstr ""
296
 
826
  msgid "To translate permalinks, please activate the module Slug."
827
  msgstr ""
828
 
829
+ #: includes/builders/class-wpglobus-builder.php:278,
830
+ #: includes/class-wpglobus.php:3508
831
  msgid "Save draft before using extra language."
832
  msgstr ""
833
 
834
+ #: includes/builders/class-wpglobus-builder.php:371
835
  msgid "Builder"
836
  msgstr ""
837
 
838
+ #: includes/builders/class-wpglobus-builder.php:395
839
  msgid "Сompatibility Settings"
840
  msgstr ""
841
 
914
  msgstr "Tipo de selector"
915
 
916
  #. translators: ON/OFF status of WPGlobus on the edit pages.
917
+ #: includes/class-wpglobus.php:1209
918
  msgid "OFF"
919
  msgstr ""
920
 
921
+ #: includes/class-wpglobus.php:1210
922
  msgid "Turn on"
923
  msgstr ""
924
 
925
  #. translators: ON/OFF status of WPGlobus on the edit pages.
926
+ #: includes/class-wpglobus.php:1214
927
  msgid "ON"
928
  msgstr ""
929
 
930
+ #: includes/class-wpglobus.php:1215
931
  msgid "Turn off"
932
  msgstr ""
933
 
934
+ #: includes/class-wpglobus.php:1398
935
  msgid "You cannot disable the main language."
936
  msgstr "No se puede desactivar el idioma principal."
937
 
938
+ #: includes/class-wpglobus.php:1606
939
  msgid "*) Available after the menu is saved."
940
  msgstr "No Se Puede Desactivar el director idioma."
941
 
942
+ #: includes/class-wpglobus.php:1623
943
  msgid "Need a multilingual slug?"
944
  msgstr ""
945
 
946
+ #: includes/class-wpglobus.php:3955
947
  msgid "You must enable Pretty Permalinks to use WPGlobus."
948
  msgstr ""
949
  "Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
950
 
951
+ #: includes/class-wpglobus.php:3957
952
  msgid ""
953
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
954
  "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:553,
276
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
277
- #: includes/class-wpglobus.php:1298, wpglobus.php:12, wpglobus.php:18
278
  msgid "WPGlobus"
279
  msgstr "WPGlobus"
280
 
@@ -792,16 +792,16 @@ msgstr ""
792
  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:3571
797
  msgid "Save draft before using extra language."
798
  msgstr ""
799
 
800
- #: includes/builders/class-wpglobus-builder.php:366
801
  msgid "Builder"
802
  msgstr ""
803
 
804
- #: includes/builders/class-wpglobus-builder.php:390
805
  msgid "Сompatibility Settings"
806
  msgstr ""
807
 
@@ -880,40 +880,40 @@ msgid "Selector type"
880
  msgstr ""
881
 
882
  #. translators: ON/OFF status of WPGlobus on the edit pages.
883
- #: includes/class-wpglobus.php:1272
884
  msgid "OFF"
885
  msgstr "VÄLJAS"
886
 
887
- #: includes/class-wpglobus.php:1273
888
  msgid "Turn on"
889
  msgstr "Lülita sisse"
890
 
891
  #. translators: ON/OFF status of WPGlobus on the edit pages.
892
- #: includes/class-wpglobus.php:1277
893
  msgid "ON"
894
  msgstr "SEES"
895
 
896
- #: includes/class-wpglobus.php:1278
897
  msgid "Turn off"
898
  msgstr "Lülita välja"
899
 
900
- #: includes/class-wpglobus.php:1461
901
  msgid "You cannot disable the main language."
902
  msgstr ""
903
 
904
- #: includes/class-wpglobus.php:1669
905
  msgid "*) Available after the menu is saved."
906
  msgstr ""
907
 
908
- #: includes/class-wpglobus.php:1686
909
  msgid "Need a multilingual slug?"
910
  msgstr ""
911
 
912
- #: includes/class-wpglobus.php:4010
913
  msgid "You must enable Pretty Permalinks to use WPGlobus."
914
  msgstr ""
915
 
916
- #: includes/class-wpglobus.php:4012
917
  msgid ""
918
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
919
  "default option."
274
 
275
  #: includes/admin/class-wpglobus-customize-options.php:553,
276
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
277
+ #: includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
278
  msgid "WPGlobus"
279
  msgstr "WPGlobus"
280
 
792
  msgid "To translate permalinks, please activate the module Slug."
793
  msgstr ""
794
 
795
+ #: includes/builders/class-wpglobus-builder.php:278,
796
+ #: includes/class-wpglobus.php:3508
797
  msgid "Save draft before using extra language."
798
  msgstr ""
799
 
800
+ #: includes/builders/class-wpglobus-builder.php:371
801
  msgid "Builder"
802
  msgstr ""
803
 
804
+ #: includes/builders/class-wpglobus-builder.php:395
805
  msgid "Сompatibility Settings"
806
  msgstr ""
807
 
880
  msgstr ""
881
 
882
  #. translators: ON/OFF status of WPGlobus on the edit pages.
883
+ #: includes/class-wpglobus.php:1209
884
  msgid "OFF"
885
  msgstr "VÄLJAS"
886
 
887
+ #: includes/class-wpglobus.php:1210
888
  msgid "Turn on"
889
  msgstr "Lülita sisse"
890
 
891
  #. translators: ON/OFF status of WPGlobus on the edit pages.
892
+ #: includes/class-wpglobus.php:1214
893
  msgid "ON"
894
  msgstr "SEES"
895
 
896
+ #: includes/class-wpglobus.php:1215
897
  msgid "Turn off"
898
  msgstr "Lülita välja"
899
 
900
+ #: includes/class-wpglobus.php:1398
901
  msgid "You cannot disable the main language."
902
  msgstr ""
903
 
904
+ #: includes/class-wpglobus.php:1606
905
  msgid "*) Available after the menu is saved."
906
  msgstr ""
907
 
908
+ #: includes/class-wpglobus.php:1623
909
  msgid "Need a multilingual slug?"
910
  msgstr ""
911
 
912
+ #: includes/class-wpglobus.php:3955
913
  msgid "You must enable Pretty Permalinks to use WPGlobus."
914
  msgstr ""
915
 
916
+ #: includes/class-wpglobus.php:3957
917
  msgid ""
918
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
919
  "default option."
languages/wpglobus-fr_BE.po CHANGED
@@ -330,7 +330,7 @@ msgstr "Enregistrer & recharger"
330
 
331
  #: includes/admin/class-wpglobus-customize-options.php:553,
332
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
333
- #: includes/class-wpglobus.php:1298, wpglobus.php:12, wpglobus.php:18
334
  msgid "WPGlobus"
335
  msgstr "WPGlobus"
336
 
@@ -889,16 +889,16 @@ msgstr ""
889
  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:3571
894
  msgid "Save draft before using extra language."
895
  msgstr ""
896
 
897
- #: includes/builders/class-wpglobus-builder.php:366
898
  msgid "Builder"
899
  msgstr ""
900
 
901
- #: includes/builders/class-wpglobus-builder.php:390
902
  msgid "Сompatibility Settings"
903
  msgstr ""
904
 
@@ -977,42 +977,42 @@ msgid "Selector type"
977
  msgstr "Type de sélecteur"
978
 
979
  #. translators: ON/OFF status of WPGlobus on the edit pages.
980
- #: includes/class-wpglobus.php:1272
981
  msgid "OFF"
982
  msgstr ""
983
 
984
- #: includes/class-wpglobus.php:1273
985
  msgid "Turn on"
986
  msgstr ""
987
 
988
  #. translators: ON/OFF status of WPGlobus on the edit pages.
989
- #: includes/class-wpglobus.php:1277
990
  msgid "ON"
991
  msgstr ""
992
 
993
- #: includes/class-wpglobus.php:1278
994
  msgid "Turn off"
995
  msgstr ""
996
 
997
- #: includes/class-wpglobus.php:1461
998
  msgid "You cannot disable the main language."
999
  msgstr "Vous ne pouvez pas désactiver la langue principale."
1000
 
1001
- #: includes/class-wpglobus.php:1669
1002
  msgid "*) Available after the menu is saved."
1003
  msgstr "*) Disponible après que le menu ait été enregistré."
1004
 
1005
- #: includes/class-wpglobus.php:1686
1006
  msgid "Need a multilingual slug?"
1007
  msgstr "Vous avez besoin d’un identifiant multilingue ?"
1008
 
1009
- #: includes/class-wpglobus.php:4010
1010
  msgid "You must enable Pretty Permalinks to use WPGlobus."
1011
  msgstr ""
1012
  "Vous devez activer les jolis permaliens pour pouvoir utiliser WPGlobus "
1013
  "correctement."
1014
 
1015
- #: includes/class-wpglobus.php:4012
1016
  msgid ""
1017
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
1018
  "default option."
330
 
331
  #: includes/admin/class-wpglobus-customize-options.php:553,
332
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
333
+ #: includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
334
  msgid "WPGlobus"
335
  msgstr "WPGlobus"
336
 
889
  msgid "To translate permalinks, please activate the module Slug."
890
  msgstr ""
891
 
892
+ #: includes/builders/class-wpglobus-builder.php:278,
893
+ #: includes/class-wpglobus.php:3508
894
  msgid "Save draft before using extra language."
895
  msgstr ""
896
 
897
+ #: includes/builders/class-wpglobus-builder.php:371
898
  msgid "Builder"
899
  msgstr ""
900
 
901
+ #: includes/builders/class-wpglobus-builder.php:395
902
  msgid "Сompatibility Settings"
903
  msgstr ""
904
 
977
  msgstr "Type de sélecteur"
978
 
979
  #. translators: ON/OFF status of WPGlobus on the edit pages.
980
+ #: includes/class-wpglobus.php:1209
981
  msgid "OFF"
982
  msgstr ""
983
 
984
+ #: includes/class-wpglobus.php:1210
985
  msgid "Turn on"
986
  msgstr ""
987
 
988
  #. translators: ON/OFF status of WPGlobus on the edit pages.
989
+ #: includes/class-wpglobus.php:1214
990
  msgid "ON"
991
  msgstr ""
992
 
993
+ #: includes/class-wpglobus.php:1215
994
  msgid "Turn off"
995
  msgstr ""
996
 
997
+ #: includes/class-wpglobus.php:1398
998
  msgid "You cannot disable the main language."
999
  msgstr "Vous ne pouvez pas désactiver la langue principale."
1000
 
1001
+ #: includes/class-wpglobus.php:1606
1002
  msgid "*) Available after the menu is saved."
1003
  msgstr "*) Disponible après que le menu ait été enregistré."
1004
 
1005
+ #: includes/class-wpglobus.php:1623
1006
  msgid "Need a multilingual slug?"
1007
  msgstr "Vous avez besoin d’un identifiant multilingue ?"
1008
 
1009
+ #: includes/class-wpglobus.php:3955
1010
  msgid "You must enable Pretty Permalinks to use WPGlobus."
1011
  msgstr ""
1012
  "Vous devez activer les jolis permaliens pour pouvoir utiliser WPGlobus "
1013
  "correctement."
1014
 
1015
+ #: includes/class-wpglobus.php:3957
1016
  msgid ""
1017
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
1018
  "default option."
languages/wpglobus-fr_CA.po CHANGED
@@ -332,7 +332,7 @@ msgstr "Enregistrer & recharger"
332
 
333
  #: includes/admin/class-wpglobus-customize-options.php:553,
334
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
335
- #: includes/class-wpglobus.php:1298, wpglobus.php:12, wpglobus.php:18
336
  msgid "WPGlobus"
337
  msgstr "WPGlobus"
338
 
@@ -891,16 +891,16 @@ msgstr ""
891
  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:3571
896
  msgid "Save draft before using extra language."
897
  msgstr ""
898
 
899
- #: includes/builders/class-wpglobus-builder.php:366
900
  msgid "Builder"
901
  msgstr ""
902
 
903
- #: includes/builders/class-wpglobus-builder.php:390
904
  msgid "Сompatibility Settings"
905
  msgstr ""
906
 
@@ -979,42 +979,42 @@ msgid "Selector type"
979
  msgstr "Type de sélecteur"
980
 
981
  #. translators: ON/OFF status of WPGlobus on the edit pages.
982
- #: includes/class-wpglobus.php:1272
983
  msgid "OFF"
984
  msgstr ""
985
 
986
- #: includes/class-wpglobus.php:1273
987
  msgid "Turn on"
988
  msgstr ""
989
 
990
  #. translators: ON/OFF status of WPGlobus on the edit pages.
991
- #: includes/class-wpglobus.php:1277
992
  msgid "ON"
993
  msgstr ""
994
 
995
- #: includes/class-wpglobus.php:1278
996
  msgid "Turn off"
997
  msgstr ""
998
 
999
- #: includes/class-wpglobus.php:1461
1000
  msgid "You cannot disable the main language."
1001
  msgstr "Vous ne pouvez pas désactiver la langue principale."
1002
 
1003
- #: includes/class-wpglobus.php:1669
1004
  msgid "*) Available after the menu is saved."
1005
  msgstr "*) Disponible après que le menu ait été enregistré."
1006
 
1007
- #: includes/class-wpglobus.php:1686
1008
  msgid "Need a multilingual slug?"
1009
  msgstr "Vous avez besoin d’un identifiant multilingue ?"
1010
 
1011
- #: includes/class-wpglobus.php:4010
1012
  msgid "You must enable Pretty Permalinks to use WPGlobus."
1013
  msgstr ""
1014
  "Vous devez activer les jolis permaliens pour pouvoir utiliser WPGlobus "
1015
  "correctement."
1016
 
1017
- #: includes/class-wpglobus.php:4012
1018
  msgid ""
1019
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
1020
  "default option."
332
 
333
  #: includes/admin/class-wpglobus-customize-options.php:553,
334
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
335
+ #: includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
336
  msgid "WPGlobus"
337
  msgstr "WPGlobus"
338
 
891
  msgid "To translate permalinks, please activate the module Slug."
892
  msgstr ""
893
 
894
+ #: includes/builders/class-wpglobus-builder.php:278,
895
+ #: includes/class-wpglobus.php:3508
896
  msgid "Save draft before using extra language."
897
  msgstr ""
898
 
899
+ #: includes/builders/class-wpglobus-builder.php:371
900
  msgid "Builder"
901
  msgstr ""
902
 
903
+ #: includes/builders/class-wpglobus-builder.php:395
904
  msgid "Сompatibility Settings"
905
  msgstr ""
906
 
979
  msgstr "Type de sélecteur"
980
 
981
  #. translators: ON/OFF status of WPGlobus on the edit pages.
982
+ #: includes/class-wpglobus.php:1209
983
  msgid "OFF"
984
  msgstr ""
985
 
986
+ #: includes/class-wpglobus.php:1210
987
  msgid "Turn on"
988
  msgstr ""
989
 
990
  #. translators: ON/OFF status of WPGlobus on the edit pages.
991
+ #: includes/class-wpglobus.php:1214
992
  msgid "ON"
993
  msgstr ""
994
 
995
+ #: includes/class-wpglobus.php:1215
996
  msgid "Turn off"
997
  msgstr ""
998
 
999
+ #: includes/class-wpglobus.php:1398
1000
  msgid "You cannot disable the main language."
1001
  msgstr "Vous ne pouvez pas désactiver la langue principale."
1002
 
1003
+ #: includes/class-wpglobus.php:1606
1004
  msgid "*) Available after the menu is saved."
1005
  msgstr "*) Disponible après que le menu ait été enregistré."
1006
 
1007
+ #: includes/class-wpglobus.php:1623
1008
  msgid "Need a multilingual slug?"
1009
  msgstr "Vous avez besoin d’un identifiant multilingue ?"
1010
 
1011
+ #: includes/class-wpglobus.php:3955
1012
  msgid "You must enable Pretty Permalinks to use WPGlobus."
1013
  msgstr ""
1014
  "Vous devez activer les jolis permaliens pour pouvoir utiliser WPGlobus "
1015
  "correctement."
1016
 
1017
+ #: includes/class-wpglobus.php:3957
1018
  msgid ""
1019
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
1020
  "default option."
languages/wpglobus-fr_FR.po CHANGED
@@ -332,7 +332,7 @@ msgstr "Enregistrer & recharger"
332
 
333
  #: includes/admin/class-wpglobus-customize-options.php:553,
334
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
335
- #: includes/class-wpglobus.php:1298, wpglobus.php:12, wpglobus.php:18
336
  msgid "WPGlobus"
337
  msgstr "WPGlobus"
338
 
@@ -899,16 +899,16 @@ msgstr "Traduisez les permalinks avec notre add-on premium, WPGlobus Plus!"
899
  msgid "To translate permalinks, please activate the module Slug."
900
  msgstr "Pour traduire les permalinks, s’il vous plaît activer le module Slug."
901
 
902
- #: includes/builders/class-wpglobus-builder.php:277,
903
- #: includes/class-wpglobus.php:3571
904
  msgid "Save draft before using extra language."
905
  msgstr "Enregistrer le brouillon avant d’utiliser un langage supplémentaire."
906
 
907
- #: includes/builders/class-wpglobus-builder.php:366
908
  msgid "Builder"
909
  msgstr "Constructeur"
910
 
911
- #: includes/builders/class-wpglobus-builder.php:390
912
  msgid "Сompatibility Settings"
913
  msgstr "Paramètres de compatibilité"
914
 
@@ -992,42 +992,42 @@ msgid "Selector type"
992
  msgstr "Type de sélecteur"
993
 
994
  #. translators: ON/OFF status of WPGlobus on the edit pages.
995
- #: includes/class-wpglobus.php:1272
996
  msgid "OFF"
997
  msgstr "NON"
998
 
999
- #: includes/class-wpglobus.php:1273
1000
  msgid "Turn on"
1001
  msgstr "Activer"
1002
 
1003
  #. translators: ON/OFF status of WPGlobus on the edit pages.
1004
- #: includes/class-wpglobus.php:1277
1005
  msgid "ON"
1006
  msgstr "OUI"
1007
 
1008
- #: includes/class-wpglobus.php:1278
1009
  msgid "Turn off"
1010
  msgstr "Désactiver"
1011
 
1012
- #: includes/class-wpglobus.php:1461
1013
  msgid "You cannot disable the main language."
1014
  msgstr "Vous ne pouvez pas désactiver la langue principale."
1015
 
1016
- #: includes/class-wpglobus.php:1669
1017
  msgid "*) Available after the menu is saved."
1018
  msgstr "*) Disponible après que le menu ait été enregistré."
1019
 
1020
- #: includes/class-wpglobus.php:1686
1021
  msgid "Need a multilingual slug?"
1022
  msgstr "Vous avez besoin d’un identifiant multilingue ?"
1023
 
1024
- #: includes/class-wpglobus.php:4010
1025
  msgid "You must enable Pretty Permalinks to use WPGlobus."
1026
  msgstr ""
1027
  "Vous devez activer les jolis permaliens pour pouvoir utiliser WPGlobus "
1028
  "correctement."
1029
 
1030
- #: includes/class-wpglobus.php:4012
1031
  msgid ""
1032
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
1033
  "default option."
332
 
333
  #: includes/admin/class-wpglobus-customize-options.php:553,
334
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
335
+ #: includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
336
  msgid "WPGlobus"
337
  msgstr "WPGlobus"
338
 
899
  msgid "To translate permalinks, please activate the module Slug."
900
  msgstr "Pour traduire les permalinks, s’il vous plaît activer le module Slug."
901
 
902
+ #: includes/builders/class-wpglobus-builder.php:278,
903
+ #: includes/class-wpglobus.php:3508
904
  msgid "Save draft before using extra language."
905
  msgstr "Enregistrer le brouillon avant d’utiliser un langage supplémentaire."
906
 
907
+ #: includes/builders/class-wpglobus-builder.php:371
908
  msgid "Builder"
909
  msgstr "Constructeur"
910
 
911
+ #: includes/builders/class-wpglobus-builder.php:395
912
  msgid "Сompatibility Settings"
913
  msgstr "Paramètres de compatibilité"
914
 
992
  msgstr "Type de sélecteur"
993
 
994
  #. translators: ON/OFF status of WPGlobus on the edit pages.
995
+ #: includes/class-wpglobus.php:1209
996
  msgid "OFF"
997
  msgstr "NON"
998
 
999
+ #: includes/class-wpglobus.php:1210
1000
  msgid "Turn on"
1001
  msgstr "Activer"
1002
 
1003
  #. translators: ON/OFF status of WPGlobus on the edit pages.
1004
+ #: includes/class-wpglobus.php:1214
1005
  msgid "ON"
1006
  msgstr "OUI"
1007
 
1008
+ #: includes/class-wpglobus.php:1215
1009
  msgid "Turn off"
1010
  msgstr "Désactiver"
1011
 
1012
+ #: includes/class-wpglobus.php:1398
1013
  msgid "You cannot disable the main language."
1014
  msgstr "Vous ne pouvez pas désactiver la langue principale."
1015
 
1016
+ #: includes/class-wpglobus.php:1606
1017
  msgid "*) Available after the menu is saved."
1018
  msgstr "*) Disponible après que le menu ait été enregistré."
1019
 
1020
+ #: includes/class-wpglobus.php:1623
1021
  msgid "Need a multilingual slug?"
1022
  msgstr "Vous avez besoin d’un identifiant multilingue ?"
1023
 
1024
+ #: includes/class-wpglobus.php:3955
1025
  msgid "You must enable Pretty Permalinks to use WPGlobus."
1026
  msgstr ""
1027
  "Vous devez activer les jolis permaliens pour pouvoir utiliser WPGlobus "
1028
  "correctement."
1029
 
1030
+ #: includes/class-wpglobus.php:3957
1031
  msgid ""
1032
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
1033
  "default option."
languages/wpglobus-id_ID.po CHANGED
@@ -322,7 +322,7 @@ msgstr "Simpan &amp; Reload"
322
 
323
  #: includes/admin/class-wpglobus-customize-options.php:553,
324
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
325
- #: includes/class-wpglobus.php:1298, wpglobus.php:12, wpglobus.php:18
326
  msgid "WPGlobus"
327
  msgstr "WPGlobus"
328
 
@@ -867,16 +867,16 @@ msgstr ""
867
  msgid "To translate permalinks, please activate the module Slug."
868
  msgstr ""
869
 
870
- #: includes/builders/class-wpglobus-builder.php:277,
871
- #: includes/class-wpglobus.php:3571
872
  msgid "Save draft before using extra language."
873
  msgstr ""
874
 
875
- #: includes/builders/class-wpglobus-builder.php:366
876
  msgid "Builder"
877
  msgstr "Builder"
878
 
879
- #: includes/builders/class-wpglobus-builder.php:390
880
  msgid "Сompatibility Settings"
881
  msgstr ""
882
 
@@ -955,40 +955,40 @@ msgid "Selector type"
955
  msgstr "Jenis pemilih"
956
 
957
  #. translators: ON/OFF status of WPGlobus on the edit pages.
958
- #: includes/class-wpglobus.php:1272
959
  msgid "OFF"
960
  msgstr ""
961
 
962
- #: includes/class-wpglobus.php:1273
963
  msgid "Turn on"
964
  msgstr ""
965
 
966
  #. translators: ON/OFF status of WPGlobus on the edit pages.
967
- #: includes/class-wpglobus.php:1277
968
  msgid "ON"
969
  msgstr ""
970
 
971
- #: includes/class-wpglobus.php:1278
972
  msgid "Turn off"
973
  msgstr ""
974
 
975
- #: includes/class-wpglobus.php:1461
976
  msgid "You cannot disable the main language."
977
  msgstr "Anda tidak dapat menonaktifkan bahasa utama."
978
 
979
- #: includes/class-wpglobus.php:1669
980
  msgid "*) Available after the menu is saved."
981
  msgstr "*) Tersedia setelah menu tersebut disimpan."
982
 
983
- #: includes/class-wpglobus.php:1686
984
  msgid "Need a multilingual slug?"
985
  msgstr ""
986
 
987
- #: includes/class-wpglobus.php:4010
988
  msgid "You must enable Pretty Permalinks to use WPGlobus."
989
  msgstr "Anda harus mengaktifkan Permalinks Cukup menggunakan WPGlobus."
990
 
991
- #: includes/class-wpglobus.php:4012
992
  msgid ""
993
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
994
  "default option."
322
 
323
  #: includes/admin/class-wpglobus-customize-options.php:553,
324
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
325
+ #: includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
326
  msgid "WPGlobus"
327
  msgstr "WPGlobus"
328
 
867
  msgid "To translate permalinks, please activate the module Slug."
868
  msgstr ""
869
 
870
+ #: includes/builders/class-wpglobus-builder.php:278,
871
+ #: includes/class-wpglobus.php:3508
872
  msgid "Save draft before using extra language."
873
  msgstr ""
874
 
875
+ #: includes/builders/class-wpglobus-builder.php:371
876
  msgid "Builder"
877
  msgstr "Builder"
878
 
879
+ #: includes/builders/class-wpglobus-builder.php:395
880
  msgid "Сompatibility Settings"
881
  msgstr ""
882
 
955
  msgstr "Jenis pemilih"
956
 
957
  #. translators: ON/OFF status of WPGlobus on the edit pages.
958
+ #: includes/class-wpglobus.php:1209
959
  msgid "OFF"
960
  msgstr ""
961
 
962
+ #: includes/class-wpglobus.php:1210
963
  msgid "Turn on"
964
  msgstr ""
965
 
966
  #. translators: ON/OFF status of WPGlobus on the edit pages.
967
+ #: includes/class-wpglobus.php:1214
968
  msgid "ON"
969
  msgstr ""
970
 
971
+ #: includes/class-wpglobus.php:1215
972
  msgid "Turn off"
973
  msgstr ""
974
 
975
+ #: includes/class-wpglobus.php:1398
976
  msgid "You cannot disable the main language."
977
  msgstr "Anda tidak dapat menonaktifkan bahasa utama."
978
 
979
+ #: includes/class-wpglobus.php:1606
980
  msgid "*) Available after the menu is saved."
981
  msgstr "*) Tersedia setelah menu tersebut disimpan."
982
 
983
+ #: includes/class-wpglobus.php:1623
984
  msgid "Need a multilingual slug?"
985
  msgstr ""
986
 
987
+ #: includes/class-wpglobus.php:3955
988
  msgid "You must enable Pretty Permalinks to use WPGlobus."
989
  msgstr "Anda harus mengaktifkan Permalinks Cukup menggunakan WPGlobus."
990
 
991
+ #: includes/class-wpglobus.php:3957
992
  msgid ""
993
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
994
  "default option."
languages/wpglobus-ko_KR.po CHANGED
@@ -273,7 +273,7 @@ msgstr ""
273
 
274
  #: includes/admin/class-wpglobus-customize-options.php:553,
275
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
276
- #: includes/class-wpglobus.php:1298, wpglobus.php:12, wpglobus.php:18
277
  msgid "WPGlobus"
278
  msgstr ""
279
 
@@ -791,16 +791,16 @@ msgstr ""
791
  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:3571
796
  msgid "Save draft before using extra language."
797
  msgstr ""
798
 
799
- #: includes/builders/class-wpglobus-builder.php:366
800
  msgid "Builder"
801
  msgstr ""
802
 
803
- #: includes/builders/class-wpglobus-builder.php:390
804
  msgid "Сompatibility Settings"
805
  msgstr ""
806
 
@@ -879,40 +879,40 @@ msgid "Selector type"
879
  msgstr ""
880
 
881
  #. translators: ON/OFF status of WPGlobus on the edit pages.
882
- #: includes/class-wpglobus.php:1272
883
  msgid "OFF"
884
  msgstr ""
885
 
886
- #: includes/class-wpglobus.php:1273
887
  msgid "Turn on"
888
  msgstr ""
889
 
890
  #. translators: ON/OFF status of WPGlobus on the edit pages.
891
- #: includes/class-wpglobus.php:1277
892
  msgid "ON"
893
  msgstr ""
894
 
895
- #: includes/class-wpglobus.php:1278
896
  msgid "Turn off"
897
  msgstr ""
898
 
899
- #: includes/class-wpglobus.php:1461
900
  msgid "You cannot disable the main language."
901
  msgstr ""
902
 
903
- #: includes/class-wpglobus.php:1669
904
  msgid "*) Available after the menu is saved."
905
  msgstr ""
906
 
907
- #: includes/class-wpglobus.php:1686
908
  msgid "Need a multilingual slug?"
909
  msgstr ""
910
 
911
- #: includes/class-wpglobus.php:4010
912
  msgid "You must enable Pretty Permalinks to use WPGlobus."
913
  msgstr ""
914
 
915
- #: includes/class-wpglobus.php:4012
916
  msgid ""
917
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
918
  "default option."
273
 
274
  #: includes/admin/class-wpglobus-customize-options.php:553,
275
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
276
+ #: includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
277
  msgid "WPGlobus"
278
  msgstr ""
279
 
791
  msgid "To translate permalinks, please activate the module Slug."
792
  msgstr ""
793
 
794
+ #: includes/builders/class-wpglobus-builder.php:278,
795
+ #: includes/class-wpglobus.php:3508
796
  msgid "Save draft before using extra language."
797
  msgstr ""
798
 
799
+ #: includes/builders/class-wpglobus-builder.php:371
800
  msgid "Builder"
801
  msgstr ""
802
 
803
+ #: includes/builders/class-wpglobus-builder.php:395
804
  msgid "Сompatibility Settings"
805
  msgstr ""
806
 
879
  msgstr ""
880
 
881
  #. translators: ON/OFF status of WPGlobus on the edit pages.
882
+ #: includes/class-wpglobus.php:1209
883
  msgid "OFF"
884
  msgstr ""
885
 
886
+ #: includes/class-wpglobus.php:1210
887
  msgid "Turn on"
888
  msgstr ""
889
 
890
  #. translators: ON/OFF status of WPGlobus on the edit pages.
891
+ #: includes/class-wpglobus.php:1214
892
  msgid "ON"
893
  msgstr ""
894
 
895
+ #: includes/class-wpglobus.php:1215
896
  msgid "Turn off"
897
  msgstr ""
898
 
899
+ #: includes/class-wpglobus.php:1398
900
  msgid "You cannot disable the main language."
901
  msgstr ""
902
 
903
+ #: includes/class-wpglobus.php:1606
904
  msgid "*) Available after the menu is saved."
905
  msgstr ""
906
 
907
+ #: includes/class-wpglobus.php:1623
908
  msgid "Need a multilingual slug?"
909
  msgstr ""
910
 
911
+ #: includes/class-wpglobus.php:3955
912
  msgid "You must enable Pretty Permalinks to use WPGlobus."
913
  msgstr ""
914
 
915
+ #: includes/class-wpglobus.php:3957
916
  msgid ""
917
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
918
  "default option."
languages/wpglobus-pl_PL.po CHANGED
@@ -291,7 +291,7 @@ msgstr ""
291
 
292
  #: includes/admin/class-wpglobus-customize-options.php:553,
293
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
294
- #: includes/class-wpglobus.php:1298, wpglobus.php:12, wpglobus.php:18
295
  msgid "WPGlobus"
296
  msgstr "WPGlobus"
297
 
@@ -818,16 +818,16 @@ msgstr ""
818
  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:3571
823
  msgid "Save draft before using extra language."
824
  msgstr ""
825
 
826
- #: includes/builders/class-wpglobus-builder.php:366
827
  msgid "Builder"
828
  msgstr "Generator"
829
 
830
- #: includes/builders/class-wpglobus-builder.php:390
831
  msgid "Сompatibility Settings"
832
  msgstr ""
833
 
@@ -906,41 +906,41 @@ msgid "Selector type"
906
  msgstr "Sposób wyboru"
907
 
908
  #. translators: ON/OFF status of WPGlobus on the edit pages.
909
- #: includes/class-wpglobus.php:1272
910
  msgid "OFF"
911
  msgstr ""
912
 
913
- #: includes/class-wpglobus.php:1273
914
  msgid "Turn on"
915
  msgstr ""
916
 
917
  #. translators: ON/OFF status of WPGlobus on the edit pages.
918
- #: includes/class-wpglobus.php:1277
919
  msgid "ON"
920
  msgstr ""
921
 
922
- #: includes/class-wpglobus.php:1278
923
  msgid "Turn off"
924
  msgstr ""
925
 
926
- #: includes/class-wpglobus.php:1461
927
  msgid "You cannot disable the main language."
928
  msgstr "Nie możesz wyłączyć głównego języka."
929
 
930
- #: includes/class-wpglobus.php:1669
931
  msgid "*) Available after the menu is saved."
932
  msgstr "*) Dostępne po zapisaniu menu."
933
 
934
- #: includes/class-wpglobus.php:1686
935
  msgid "Need a multilingual slug?"
936
  msgstr ""
937
 
938
- #: includes/class-wpglobus.php:4010
939
  msgid "You must enable Pretty Permalinks to use WPGlobus."
940
  msgstr ""
941
  "Aby korzystać z WPGlobus'a, musisz ustawić przyjazne bezpośrednie odnośniki."
942
 
943
- #: includes/class-wpglobus.php:4012
944
  msgid ""
945
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
946
  "default option."
291
 
292
  #: includes/admin/class-wpglobus-customize-options.php:553,
293
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
294
+ #: includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
295
  msgid "WPGlobus"
296
  msgstr "WPGlobus"
297
 
818
  msgid "To translate permalinks, please activate the module Slug."
819
  msgstr ""
820
 
821
+ #: includes/builders/class-wpglobus-builder.php:278,
822
+ #: includes/class-wpglobus.php:3508
823
  msgid "Save draft before using extra language."
824
  msgstr ""
825
 
826
+ #: includes/builders/class-wpglobus-builder.php:371
827
  msgid "Builder"
828
  msgstr "Generator"
829
 
830
+ #: includes/builders/class-wpglobus-builder.php:395
831
  msgid "Сompatibility Settings"
832
  msgstr ""
833
 
906
  msgstr "Sposób wyboru"
907
 
908
  #. translators: ON/OFF status of WPGlobus on the edit pages.
909
+ #: includes/class-wpglobus.php:1209
910
  msgid "OFF"
911
  msgstr ""
912
 
913
+ #: includes/class-wpglobus.php:1210
914
  msgid "Turn on"
915
  msgstr ""
916
 
917
  #. translators: ON/OFF status of WPGlobus on the edit pages.
918
+ #: includes/class-wpglobus.php:1214
919
  msgid "ON"
920
  msgstr ""
921
 
922
+ #: includes/class-wpglobus.php:1215
923
  msgid "Turn off"
924
  msgstr ""
925
 
926
+ #: includes/class-wpglobus.php:1398
927
  msgid "You cannot disable the main language."
928
  msgstr "Nie możesz wyłączyć głównego języka."
929
 
930
+ #: includes/class-wpglobus.php:1606
931
  msgid "*) Available after the menu is saved."
932
  msgstr "*) Dostępne po zapisaniu menu."
933
 
934
+ #: includes/class-wpglobus.php:1623
935
  msgid "Need a multilingual slug?"
936
  msgstr ""
937
 
938
+ #: includes/class-wpglobus.php:3955
939
  msgid "You must enable Pretty Permalinks to use WPGlobus."
940
  msgstr ""
941
  "Aby korzystać z WPGlobus'a, musisz ustawić przyjazne bezpośrednie odnośniki."
942
 
943
+ #: includes/class-wpglobus.php:3957
944
  msgid ""
945
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
946
  "default option."
languages/wpglobus-pt_BR.po CHANGED
@@ -273,7 +273,7 @@ msgstr ""
273
 
274
  #: includes/admin/class-wpglobus-customize-options.php:553,
275
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
276
- #: includes/class-wpglobus.php:1298, wpglobus.php:12, wpglobus.php:18
277
  msgid "WPGlobus"
278
  msgstr ""
279
 
@@ -791,16 +791,16 @@ msgstr ""
791
  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:3571
796
  msgid "Save draft before using extra language."
797
  msgstr ""
798
 
799
- #: includes/builders/class-wpglobus-builder.php:366
800
  msgid "Builder"
801
  msgstr "Construtor"
802
 
803
- #: includes/builders/class-wpglobus-builder.php:390
804
  msgid "Сompatibility Settings"
805
  msgstr ""
806
 
@@ -879,40 +879,40 @@ msgid "Selector type"
879
  msgstr ""
880
 
881
  #. translators: ON/OFF status of WPGlobus on the edit pages.
882
- #: includes/class-wpglobus.php:1272
883
  msgid "OFF"
884
  msgstr "DESLIGADO"
885
 
886
- #: includes/class-wpglobus.php:1273
887
  msgid "Turn on"
888
  msgstr ""
889
 
890
  #. translators: ON/OFF status of WPGlobus on the edit pages.
891
- #: includes/class-wpglobus.php:1277
892
  msgid "ON"
893
  msgstr "LIGADO"
894
 
895
- #: includes/class-wpglobus.php:1278
896
  msgid "Turn off"
897
  msgstr ""
898
 
899
- #: includes/class-wpglobus.php:1461
900
  msgid "You cannot disable the main language."
901
  msgstr ""
902
 
903
- #: includes/class-wpglobus.php:1669
904
  msgid "*) Available after the menu is saved."
905
  msgstr ""
906
 
907
- #: includes/class-wpglobus.php:1686
908
  msgid "Need a multilingual slug?"
909
  msgstr ""
910
 
911
- #: includes/class-wpglobus.php:4010
912
  msgid "You must enable Pretty Permalinks to use WPGlobus."
913
  msgstr ""
914
 
915
- #: includes/class-wpglobus.php:4012
916
  msgid ""
917
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
918
  "default option."
273
 
274
  #: includes/admin/class-wpglobus-customize-options.php:553,
275
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
276
+ #: includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
277
  msgid "WPGlobus"
278
  msgstr ""
279
 
791
  msgid "To translate permalinks, please activate the module Slug."
792
  msgstr ""
793
 
794
+ #: includes/builders/class-wpglobus-builder.php:278,
795
+ #: includes/class-wpglobus.php:3508
796
  msgid "Save draft before using extra language."
797
  msgstr ""
798
 
799
+ #: includes/builders/class-wpglobus-builder.php:371
800
  msgid "Builder"
801
  msgstr "Construtor"
802
 
803
+ #: includes/builders/class-wpglobus-builder.php:395
804
  msgid "Сompatibility Settings"
805
  msgstr ""
806
 
879
  msgstr ""
880
 
881
  #. translators: ON/OFF status of WPGlobus on the edit pages.
882
+ #: includes/class-wpglobus.php:1209
883
  msgid "OFF"
884
  msgstr "DESLIGADO"
885
 
886
+ #: includes/class-wpglobus.php:1210
887
  msgid "Turn on"
888
  msgstr ""
889
 
890
  #. translators: ON/OFF status of WPGlobus on the edit pages.
891
+ #: includes/class-wpglobus.php:1214
892
  msgid "ON"
893
  msgstr "LIGADO"
894
 
895
+ #: includes/class-wpglobus.php:1215
896
  msgid "Turn off"
897
  msgstr ""
898
 
899
+ #: includes/class-wpglobus.php:1398
900
  msgid "You cannot disable the main language."
901
  msgstr ""
902
 
903
+ #: includes/class-wpglobus.php:1606
904
  msgid "*) Available after the menu is saved."
905
  msgstr ""
906
 
907
+ #: includes/class-wpglobus.php:1623
908
  msgid "Need a multilingual slug?"
909
  msgstr ""
910
 
911
+ #: includes/class-wpglobus.php:3955
912
  msgid "You must enable Pretty Permalinks to use WPGlobus."
913
  msgstr ""
914
 
915
+ #: includes/class-wpglobus.php:3957
916
  msgid ""
917
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
918
  "default option."
languages/wpglobus-pt_PT.po CHANGED
@@ -273,7 +273,7 @@ msgstr ""
273
 
274
  #: includes/admin/class-wpglobus-customize-options.php:553,
275
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
276
- #: includes/class-wpglobus.php:1298, wpglobus.php:12, wpglobus.php:18
277
  msgid "WPGlobus"
278
  msgstr ""
279
 
@@ -791,16 +791,16 @@ msgstr ""
791
  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:3571
796
  msgid "Save draft before using extra language."
797
  msgstr ""
798
 
799
- #: includes/builders/class-wpglobus-builder.php:366
800
  msgid "Builder"
801
  msgstr ""
802
 
803
- #: includes/builders/class-wpglobus-builder.php:390
804
  msgid "Сompatibility Settings"
805
  msgstr ""
806
 
@@ -879,40 +879,40 @@ msgid "Selector type"
879
  msgstr ""
880
 
881
  #. translators: ON/OFF status of WPGlobus on the edit pages.
882
- #: includes/class-wpglobus.php:1272
883
  msgid "OFF"
884
  msgstr "Não"
885
 
886
- #: includes/class-wpglobus.php:1273
887
  msgid "Turn on"
888
  msgstr ""
889
 
890
  #. translators: ON/OFF status of WPGlobus on the edit pages.
891
- #: includes/class-wpglobus.php:1277
892
  msgid "ON"
893
  msgstr "Sim"
894
 
895
- #: includes/class-wpglobus.php:1278
896
  msgid "Turn off"
897
  msgstr ""
898
 
899
- #: includes/class-wpglobus.php:1461
900
  msgid "You cannot disable the main language."
901
  msgstr ""
902
 
903
- #: includes/class-wpglobus.php:1669
904
  msgid "*) Available after the menu is saved."
905
  msgstr ""
906
 
907
- #: includes/class-wpglobus.php:1686
908
  msgid "Need a multilingual slug?"
909
  msgstr ""
910
 
911
- #: includes/class-wpglobus.php:4010
912
  msgid "You must enable Pretty Permalinks to use WPGlobus."
913
  msgstr ""
914
 
915
- #: includes/class-wpglobus.php:4012
916
  msgid ""
917
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
918
  "default option."
273
 
274
  #: includes/admin/class-wpglobus-customize-options.php:553,
275
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
276
+ #: includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
277
  msgid "WPGlobus"
278
  msgstr ""
279
 
791
  msgid "To translate permalinks, please activate the module Slug."
792
  msgstr ""
793
 
794
+ #: includes/builders/class-wpglobus-builder.php:278,
795
+ #: includes/class-wpglobus.php:3508
796
  msgid "Save draft before using extra language."
797
  msgstr ""
798
 
799
+ #: includes/builders/class-wpglobus-builder.php:371
800
  msgid "Builder"
801
  msgstr ""
802
 
803
+ #: includes/builders/class-wpglobus-builder.php:395
804
  msgid "Сompatibility Settings"
805
  msgstr ""
806
 
879
  msgstr ""
880
 
881
  #. translators: ON/OFF status of WPGlobus on the edit pages.
882
+ #: includes/class-wpglobus.php:1209
883
  msgid "OFF"
884
  msgstr "Não"
885
 
886
+ #: includes/class-wpglobus.php:1210
887
  msgid "Turn on"
888
  msgstr ""
889
 
890
  #. translators: ON/OFF status of WPGlobus on the edit pages.
891
+ #: includes/class-wpglobus.php:1214
892
  msgid "ON"
893
  msgstr "Sim"
894
 
895
+ #: includes/class-wpglobus.php:1215
896
  msgid "Turn off"
897
  msgstr ""
898
 
899
+ #: includes/class-wpglobus.php:1398
900
  msgid "You cannot disable the main language."
901
  msgstr ""
902
 
903
+ #: includes/class-wpglobus.php:1606
904
  msgid "*) Available after the menu is saved."
905
  msgstr ""
906
 
907
+ #: includes/class-wpglobus.php:1623
908
  msgid "Need a multilingual slug?"
909
  msgstr ""
910
 
911
+ #: includes/class-wpglobus.php:3955
912
  msgid "You must enable Pretty Permalinks to use WPGlobus."
913
  msgstr ""
914
 
915
+ #: includes/class-wpglobus.php:3957
916
  msgid ""
917
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
918
  "default option."
languages/wpglobus-ro_RO.po CHANGED
@@ -290,7 +290,7 @@ msgstr ""
290
 
291
  #: includes/admin/class-wpglobus-customize-options.php:553,
292
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
293
- #: includes/class-wpglobus.php:1298, wpglobus.php:12, wpglobus.php:18
294
  msgid "WPGlobus"
295
  msgstr "WPGlobus"
296
 
@@ -821,16 +821,16 @@ msgstr ""
821
  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:3571
826
  msgid "Save draft before using extra language."
827
  msgstr ""
828
 
829
- #: includes/builders/class-wpglobus-builder.php:366
830
  msgid "Builder"
831
  msgstr ""
832
 
833
- #: includes/builders/class-wpglobus-builder.php:390
834
  msgid "Сompatibility Settings"
835
  msgstr ""
836
 
@@ -909,40 +909,40 @@ msgid "Selector type"
909
  msgstr "Tipul de selector"
910
 
911
  #. translators: ON/OFF status of WPGlobus on the edit pages.
912
- #: includes/class-wpglobus.php:1272
913
  msgid "OFF"
914
  msgstr ""
915
 
916
- #: includes/class-wpglobus.php:1273
917
  msgid "Turn on"
918
  msgstr ""
919
 
920
  #. translators: ON/OFF status of WPGlobus on the edit pages.
921
- #: includes/class-wpglobus.php:1277
922
  msgid "ON"
923
  msgstr ""
924
 
925
- #: includes/class-wpglobus.php:1278
926
  msgid "Turn off"
927
  msgstr ""
928
 
929
- #: includes/class-wpglobus.php:1461
930
  msgid "You cannot disable the main language."
931
  msgstr "Nu puteți dezactiva limba principală."
932
 
933
- #: includes/class-wpglobus.php:1669
934
  msgid "*) Available after the menu is saved."
935
  msgstr "*) Disponibil după ce meniul este salvat."
936
 
937
- #: includes/class-wpglobus.php:1686
938
  msgid "Need a multilingual slug?"
939
  msgstr ""
940
 
941
- #: includes/class-wpglobus.php:4010
942
  msgid "You must enable Pretty Permalinks to use WPGlobus."
943
  msgstr "Trebuie să activezi Pretty Permalinks pentru a folosi WPGlobus."
944
 
945
- #: includes/class-wpglobus.php:4012
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:553,
292
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
293
+ #: includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
294
  msgid "WPGlobus"
295
  msgstr "WPGlobus"
296
 
821
  msgid "To translate permalinks, please activate the module Slug."
822
  msgstr ""
823
 
824
+ #: includes/builders/class-wpglobus-builder.php:278,
825
+ #: includes/class-wpglobus.php:3508
826
  msgid "Save draft before using extra language."
827
  msgstr ""
828
 
829
+ #: includes/builders/class-wpglobus-builder.php:371
830
  msgid "Builder"
831
  msgstr ""
832
 
833
+ #: includes/builders/class-wpglobus-builder.php:395
834
  msgid "Сompatibility Settings"
835
  msgstr ""
836
 
909
  msgstr "Tipul de selector"
910
 
911
  #. translators: ON/OFF status of WPGlobus on the edit pages.
912
+ #: includes/class-wpglobus.php:1209
913
  msgid "OFF"
914
  msgstr ""
915
 
916
+ #: includes/class-wpglobus.php:1210
917
  msgid "Turn on"
918
  msgstr ""
919
 
920
  #. translators: ON/OFF status of WPGlobus on the edit pages.
921
+ #: includes/class-wpglobus.php:1214
922
  msgid "ON"
923
  msgstr ""
924
 
925
+ #: includes/class-wpglobus.php:1215
926
  msgid "Turn off"
927
  msgstr ""
928
 
929
+ #: includes/class-wpglobus.php:1398
930
  msgid "You cannot disable the main language."
931
  msgstr "Nu puteți dezactiva limba principală."
932
 
933
+ #: includes/class-wpglobus.php:1606
934
  msgid "*) Available after the menu is saved."
935
  msgstr "*) Disponibil după ce meniul este salvat."
936
 
937
+ #: includes/class-wpglobus.php:1623
938
  msgid "Need a multilingual slug?"
939
  msgstr ""
940
 
941
+ #: includes/class-wpglobus.php:3955
942
  msgid "You must enable Pretty Permalinks to use WPGlobus."
943
  msgstr "Trebuie să activezi Pretty Permalinks pentru a folosi WPGlobus."
944
 
945
+ #: includes/class-wpglobus.php:3957
946
  msgid ""
947
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
948
  "default option."
languages/wpglobus-ru_RU.po CHANGED
@@ -322,7 +322,7 @@ msgstr "Сохранить и перезагрузить"
322
 
323
  #: includes/admin/class-wpglobus-customize-options.php:553,
324
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
325
- #: includes/class-wpglobus.php:1298, wpglobus.php:12, wpglobus.php:18
326
  msgid "WPGlobus"
327
  msgstr "WPGlobus"
328
 
@@ -872,16 +872,16 @@ msgstr "Перевод ссылок возможен с помощью WPGlobus-
872
  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:3571
877
  msgid "Save draft before using extra language."
878
  msgstr "Сохраните черновик перед переключением на другой язык."
879
 
880
- #: includes/builders/class-wpglobus-builder.php:366
881
  msgid "Builder"
882
  msgstr "Билдер"
883
 
884
- #: includes/builders/class-wpglobus-builder.php:390
885
  msgid "Сompatibility Settings"
886
  msgstr "Совместимость"
887
 
@@ -964,42 +964,42 @@ msgid "Selector type"
964
  msgstr "Способ выбора языка"
965
 
966
  #. translators: ON/OFF status of WPGlobus on the edit pages.
967
- #: includes/class-wpglobus.php:1272
968
  msgid "OFF"
969
  msgstr "ВЫКЛ"
970
 
971
- #: includes/class-wpglobus.php:1273
972
  msgid "Turn on"
973
  msgstr "Включить"
974
 
975
  #. translators: ON/OFF status of WPGlobus on the edit pages.
976
- #: includes/class-wpglobus.php:1277
977
  msgid "ON"
978
  msgstr "ВКЛ"
979
 
980
- #: includes/class-wpglobus.php:1278
981
  msgid "Turn off"
982
  msgstr "Выключить"
983
 
984
- #: includes/class-wpglobus.php:1461
985
  msgid "You cannot disable the main language."
986
  msgstr "Нельзя отключить основной язык."
987
 
988
- #: includes/class-wpglobus.php:1669
989
  msgid "*) Available after the menu is saved."
990
  msgstr "*) Доступно после сохранения меню."
991
 
992
- #: includes/class-wpglobus.php:1686
993
  msgid "Need a multilingual slug?"
994
  msgstr "Нужен мультиязычный ярлык?"
995
 
996
- #: includes/class-wpglobus.php:4010
997
  msgid "You must enable Pretty Permalinks to use WPGlobus."
998
  msgstr ""
999
  "Чтобы использовать плагин WPGlobus, необходимо включить ЧПУ - постоянные "
1000
  "ссылки."
1001
 
1002
- #: includes/class-wpglobus.php:4012
1003
  msgid ""
1004
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
1005
  "default option."
322
 
323
  #: includes/admin/class-wpglobus-customize-options.php:553,
324
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
325
+ #: includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
326
  msgid "WPGlobus"
327
  msgstr "WPGlobus"
328
 
872
  msgid "To translate permalinks, please activate the module Slug."
873
  msgstr "Для перевода ссылок необходимо активировать модуль УРЛ."
874
 
875
+ #: includes/builders/class-wpglobus-builder.php:278,
876
+ #: includes/class-wpglobus.php:3508
877
  msgid "Save draft before using extra language."
878
  msgstr "Сохраните черновик перед переключением на другой язык."
879
 
880
+ #: includes/builders/class-wpglobus-builder.php:371
881
  msgid "Builder"
882
  msgstr "Билдер"
883
 
884
+ #: includes/builders/class-wpglobus-builder.php:395
885
  msgid "Сompatibility Settings"
886
  msgstr "Совместимость"
887
 
964
  msgstr "Способ выбора языка"
965
 
966
  #. translators: ON/OFF status of WPGlobus on the edit pages.
967
+ #: includes/class-wpglobus.php:1209
968
  msgid "OFF"
969
  msgstr "ВЫКЛ"
970
 
971
+ #: includes/class-wpglobus.php:1210
972
  msgid "Turn on"
973
  msgstr "Включить"
974
 
975
  #. translators: ON/OFF status of WPGlobus on the edit pages.
976
+ #: includes/class-wpglobus.php:1214
977
  msgid "ON"
978
  msgstr "ВКЛ"
979
 
980
+ #: includes/class-wpglobus.php:1215
981
  msgid "Turn off"
982
  msgstr "Выключить"
983
 
984
+ #: includes/class-wpglobus.php:1398
985
  msgid "You cannot disable the main language."
986
  msgstr "Нельзя отключить основной язык."
987
 
988
+ #: includes/class-wpglobus.php:1606
989
  msgid "*) Available after the menu is saved."
990
  msgstr "*) Доступно после сохранения меню."
991
 
992
+ #: includes/class-wpglobus.php:1623
993
  msgid "Need a multilingual slug?"
994
  msgstr "Нужен мультиязычный ярлык?"
995
 
996
+ #: includes/class-wpglobus.php:3955
997
  msgid "You must enable Pretty Permalinks to use WPGlobus."
998
  msgstr ""
999
  "Чтобы использовать плагин WPGlobus, необходимо включить ЧПУ - постоянные "
1000
  "ссылки."
1001
 
1002
+ #: includes/class-wpglobus.php:3957
1003
  msgid ""
1004
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
1005
  "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:553,
292
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
293
- #: includes/class-wpglobus.php:1298, wpglobus.php:12, wpglobus.php:18
294
  msgid "WPGlobus"
295
  msgstr "WPGlobus"
296
 
@@ -817,16 +817,16 @@ msgstr ""
817
  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:3571
822
  msgid "Save draft before using extra language."
823
  msgstr "Spara utkast innan du använder extra språk."
824
 
825
- #: includes/builders/class-wpglobus-builder.php:366
826
  msgid "Builder"
827
  msgstr "Byggare"
828
 
829
- #: includes/builders/class-wpglobus-builder.php:390
830
  msgid "Сompatibility Settings"
831
  msgstr "Inställningar för kompatibilitet"
832
 
@@ -905,40 +905,40 @@ msgid "Selector type"
905
  msgstr "Väljartyp"
906
 
907
  #. translators: ON/OFF status of WPGlobus on the edit pages.
908
- #: includes/class-wpglobus.php:1272
909
  msgid "OFF"
910
  msgstr "AV"
911
 
912
- #: includes/class-wpglobus.php:1273
913
  msgid "Turn on"
914
  msgstr ""
915
 
916
  #. translators: ON/OFF status of WPGlobus on the edit pages.
917
- #: includes/class-wpglobus.php:1277
918
  msgid "ON"
919
  msgstr "PÅ"
920
 
921
- #: includes/class-wpglobus.php:1278
922
  msgid "Turn off"
923
  msgstr "Stäng av"
924
 
925
- #: includes/class-wpglobus.php:1461
926
  msgid "You cannot disable the main language."
927
  msgstr "Du kan inte stänga av huvudspråk."
928
 
929
- #: includes/class-wpglobus.php:1669
930
  msgid "*) Available after the menu is saved."
931
  msgstr "*) Tillgängligt när menyn sparats."
932
 
933
- #: includes/class-wpglobus.php:1686
934
  msgid "Need a multilingual slug?"
935
  msgstr ""
936
 
937
- #: includes/class-wpglobus.php:4010
938
  msgid "You must enable Pretty Permalinks to use WPGlobus."
939
  msgstr "Du måste aktivera Vackra Permalänkar för att använda WPGlobus."
940
 
941
- #: includes/class-wpglobus.php:4012
942
  msgid ""
943
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
944
  "default option."
290
 
291
  #: includes/admin/class-wpglobus-customize-options.php:553,
292
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
293
+ #: includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
294
  msgid "WPGlobus"
295
  msgstr "WPGlobus"
296
 
817
  msgid "To translate permalinks, please activate the module Slug."
818
  msgstr ""
819
 
820
+ #: includes/builders/class-wpglobus-builder.php:278,
821
+ #: includes/class-wpglobus.php:3508
822
  msgid "Save draft before using extra language."
823
  msgstr "Spara utkast innan du använder extra språk."
824
 
825
+ #: includes/builders/class-wpglobus-builder.php:371
826
  msgid "Builder"
827
  msgstr "Byggare"
828
 
829
+ #: includes/builders/class-wpglobus-builder.php:395
830
  msgid "Сompatibility Settings"
831
  msgstr "Inställningar för kompatibilitet"
832
 
905
  msgstr "Väljartyp"
906
 
907
  #. translators: ON/OFF status of WPGlobus on the edit pages.
908
+ #: includes/class-wpglobus.php:1209
909
  msgid "OFF"
910
  msgstr "AV"
911
 
912
+ #: includes/class-wpglobus.php:1210
913
  msgid "Turn on"
914
  msgstr ""
915
 
916
  #. translators: ON/OFF status of WPGlobus on the edit pages.
917
+ #: includes/class-wpglobus.php:1214
918
  msgid "ON"
919
  msgstr "PÅ"
920
 
921
+ #: includes/class-wpglobus.php:1215
922
  msgid "Turn off"
923
  msgstr "Stäng av"
924
 
925
+ #: includes/class-wpglobus.php:1398
926
  msgid "You cannot disable the main language."
927
  msgstr "Du kan inte stänga av huvudspråk."
928
 
929
+ #: includes/class-wpglobus.php:1606
930
  msgid "*) Available after the menu is saved."
931
  msgstr "*) Tillgängligt när menyn sparats."
932
 
933
+ #: includes/class-wpglobus.php:1623
934
  msgid "Need a multilingual slug?"
935
  msgstr ""
936
 
937
+ #: includes/class-wpglobus.php:3955
938
  msgid "You must enable Pretty Permalinks to use WPGlobus."
939
  msgstr "Du måste aktivera Vackra Permalänkar för att använda WPGlobus."
940
 
941
+ #: includes/class-wpglobus.php:3957
942
  msgid ""
943
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
944
  "default option."
languages/wpglobus-tr_TR.po CHANGED
@@ -291,7 +291,7 @@ msgstr ""
291
 
292
  #: includes/admin/class-wpglobus-customize-options.php:553,
293
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
294
- #: includes/class-wpglobus.php:1298, wpglobus.php:12, wpglobus.php:18
295
  msgid "WPGlobus"
296
  msgstr ""
297
 
@@ -817,16 +817,16 @@ msgstr ""
817
  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:3571
822
  msgid "Save draft before using extra language."
823
  msgstr ""
824
 
825
- #: includes/builders/class-wpglobus-builder.php:366
826
  msgid "Builder"
827
  msgstr "Kurucu"
828
 
829
- #: includes/builders/class-wpglobus-builder.php:390
830
  msgid "Сompatibility Settings"
831
  msgstr ""
832
 
@@ -905,41 +905,41 @@ msgid "Selector type"
905
  msgstr "Değiştirici tipi"
906
 
907
  #. translators: ON/OFF status of WPGlobus on the edit pages.
908
- #: includes/class-wpglobus.php:1272
909
  msgid "OFF"
910
  msgstr "KAPALI"
911
 
912
- #: includes/class-wpglobus.php:1273
913
  msgid "Turn on"
914
  msgstr ""
915
 
916
  #. translators: ON/OFF status of WPGlobus on the edit pages.
917
- #: includes/class-wpglobus.php:1277
918
  msgid "ON"
919
  msgstr "AÇIK"
920
 
921
- #: includes/class-wpglobus.php:1278
922
  msgid "Turn off"
923
  msgstr ""
924
 
925
- #: includes/class-wpglobus.php:1461
926
  msgid "You cannot disable the main language."
927
  msgstr "Asıl dili etkisizleştiremezsiniz."
928
 
929
- #: includes/class-wpglobus.php:1669
930
  msgid "*) Available after the menu is saved."
931
  msgstr "*) Menü kaydedildikten sonra kullanılabilir."
932
 
933
- #: includes/class-wpglobus.php:1686
934
  msgid "Need a multilingual slug?"
935
  msgstr ""
936
 
937
- #: includes/class-wpglobus.php:4010
938
  msgid "You must enable Pretty Permalinks to use WPGlobus."
939
  msgstr ""
940
  "WPGlobus' u kullanabilmek için Pretty Permalinks' i etkinleştirmelisiniz."
941
 
942
- #: includes/class-wpglobus.php:4012
943
  msgid ""
944
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
945
  "default option."
291
 
292
  #: includes/admin/class-wpglobus-customize-options.php:553,
293
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
294
+ #: includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
295
  msgid "WPGlobus"
296
  msgstr ""
297
 
817
  msgid "To translate permalinks, please activate the module Slug."
818
  msgstr ""
819
 
820
+ #: includes/builders/class-wpglobus-builder.php:278,
821
+ #: includes/class-wpglobus.php:3508
822
  msgid "Save draft before using extra language."
823
  msgstr ""
824
 
825
+ #: includes/builders/class-wpglobus-builder.php:371
826
  msgid "Builder"
827
  msgstr "Kurucu"
828
 
829
+ #: includes/builders/class-wpglobus-builder.php:395
830
  msgid "Сompatibility Settings"
831
  msgstr ""
832
 
905
  msgstr "Değiştirici tipi"
906
 
907
  #. translators: ON/OFF status of WPGlobus on the edit pages.
908
+ #: includes/class-wpglobus.php:1209
909
  msgid "OFF"
910
  msgstr "KAPALI"
911
 
912
+ #: includes/class-wpglobus.php:1210
913
  msgid "Turn on"
914
  msgstr ""
915
 
916
  #. translators: ON/OFF status of WPGlobus on the edit pages.
917
+ #: includes/class-wpglobus.php:1214
918
  msgid "ON"
919
  msgstr "AÇIK"
920
 
921
+ #: includes/class-wpglobus.php:1215
922
  msgid "Turn off"
923
  msgstr ""
924
 
925
+ #: includes/class-wpglobus.php:1398
926
  msgid "You cannot disable the main language."
927
  msgstr "Asıl dili etkisizleştiremezsiniz."
928
 
929
+ #: includes/class-wpglobus.php:1606
930
  msgid "*) Available after the menu is saved."
931
  msgstr "*) Menü kaydedildikten sonra kullanılabilir."
932
 
933
+ #: includes/class-wpglobus.php:1623
934
  msgid "Need a multilingual slug?"
935
  msgstr ""
936
 
937
+ #: includes/class-wpglobus.php:3955
938
  msgid "You must enable Pretty Permalinks to use WPGlobus."
939
  msgstr ""
940
  "WPGlobus' u kullanabilmek için Pretty Permalinks' i etkinleştirmelisiniz."
941
 
942
+ #: includes/class-wpglobus.php:3957
943
  msgid ""
944
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
945
  "default option."
languages/wpglobus-uk.po CHANGED
@@ -320,7 +320,7 @@ msgstr "Зберегти та перезавантажити"
320
 
321
  #: includes/admin/class-wpglobus-customize-options.php:553,
322
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
323
- #: includes/class-wpglobus.php:1298, wpglobus.php:12, wpglobus.php:18
324
  msgid "WPGlobus"
325
  msgstr "WPGlobus"
326
 
@@ -872,16 +872,16 @@ msgstr "Переклад посилань можливий за допомого
872
  msgid "To translate permalinks, please activate the module Slug."
873
  msgstr "Для перекладу посилань необхідно активувати модуль URL."
874
 
875
- #: includes/builders/class-wpglobus-builder.php:277,
876
- #: includes/class-wpglobus.php:3571
877
  msgid "Save draft before using extra language."
878
  msgstr "Збережіть чернетку перед перемиканням на іншу мову."
879
 
880
- #: includes/builders/class-wpglobus-builder.php:366
881
  msgid "Builder"
882
  msgstr "Конструктор"
883
 
884
- #: includes/builders/class-wpglobus-builder.php:390
885
  msgid "Сompatibility Settings"
886
  msgstr "Cумісність"
887
 
@@ -962,42 +962,42 @@ msgid "Selector type"
962
  msgstr "Спосіб выбору мови"
963
 
964
  #. translators: ON/OFF status of WPGlobus on the edit pages.
965
- #: includes/class-wpglobus.php:1272
966
  msgid "OFF"
967
  msgstr "ВИМК"
968
 
969
- #: includes/class-wpglobus.php:1273
970
  msgid "Turn on"
971
  msgstr "Увімкнути"
972
 
973
  #. translators: ON/OFF status of WPGlobus on the edit pages.
974
- #: includes/class-wpglobus.php:1277
975
  msgid "ON"
976
  msgstr "УВІМК"
977
 
978
- #: includes/class-wpglobus.php:1278
979
  msgid "Turn off"
980
  msgstr "Вимкнути"
981
 
982
- #: includes/class-wpglobus.php:1461
983
  msgid "You cannot disable the main language."
984
  msgstr "Неможна відключити головну мову."
985
 
986
- #: includes/class-wpglobus.php:1669
987
  msgid "*) Available after the menu is saved."
988
  msgstr "*) Доступно після збереження меню."
989
 
990
- #: includes/class-wpglobus.php:1686
991
  msgid "Need a multilingual slug?"
992
  msgstr "Потрібен багатомовний ярлик?"
993
 
994
- #: includes/class-wpglobus.php:4010
995
  msgid "You must enable Pretty Permalinks to use WPGlobus."
996
  msgstr ""
997
  "Щоб використовувати плагін WPGlobus, необхідно увімкнути SEF URLs - постійні "
998
  "посилання."
999
 
1000
- #: includes/class-wpglobus.php:4012
1001
  msgid ""
1002
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
1003
  "default option."
320
 
321
  #: includes/admin/class-wpglobus-customize-options.php:553,
322
  #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:538,
323
+ #: includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
324
  msgid "WPGlobus"
325
  msgstr "WPGlobus"
326
 
872
  msgid "To translate permalinks, please activate the module Slug."
873
  msgstr "Для перекладу посилань необхідно активувати модуль URL."
874
 
875
+ #: includes/builders/class-wpglobus-builder.php:278,
876
+ #: includes/class-wpglobus.php:3508
877
  msgid "Save draft before using extra language."
878
  msgstr "Збережіть чернетку перед перемиканням на іншу мову."
879
 
880
+ #: includes/builders/class-wpglobus-builder.php:371
881
  msgid "Builder"
882
  msgstr "Конструктор"
883
 
884
+ #: includes/builders/class-wpglobus-builder.php:395
885
  msgid "Сompatibility Settings"
886
  msgstr "Cумісність"
887
 
962
  msgstr "Спосіб выбору мови"
963
 
964
  #. translators: ON/OFF status of WPGlobus on the edit pages.
965
+ #: includes/class-wpglobus.php:1209
966
  msgid "OFF"
967
  msgstr "ВИМК"
968
 
969
+ #: includes/class-wpglobus.php:1210
970
  msgid "Turn on"
971
  msgstr "Увімкнути"
972
 
973
  #. translators: ON/OFF status of WPGlobus on the edit pages.
974
+ #: includes/class-wpglobus.php:1214
975
  msgid "ON"
976
  msgstr "УВІМК"
977
 
978
+ #: includes/class-wpglobus.php:1215
979
  msgid "Turn off"
980
  msgstr "Вимкнути"
981
 
982
+ #: includes/class-wpglobus.php:1398
983
  msgid "You cannot disable the main language."
984
  msgstr "Неможна відключити головну мову."
985
 
986
+ #: includes/class-wpglobus.php:1606
987
  msgid "*) Available after the menu is saved."
988
  msgstr "*) Доступно після збереження меню."
989
 
990
+ #: includes/class-wpglobus.php:1623
991
  msgid "Need a multilingual slug?"
992
  msgstr "Потрібен багатомовний ярлик?"
993
 
994
+ #: includes/class-wpglobus.php:3955
995
  msgid "You must enable Pretty Permalinks to use WPGlobus."
996
  msgstr ""
997
  "Щоб використовувати плагін WPGlobus, необхідно увімкнути SEF URLs - постійні "
998
  "посилання."
999
 
1000
+ #: includes/class-wpglobus.php:3957
1001
  msgid ""
1002
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
1003
  "default option."
languages/wpglobus.pot CHANGED
@@ -1,8 +1,8 @@
1
- # Copyright (C) 2020 WPGlobus 2.3.12
2
- # This file is distributed under the same license as the WPGlobus 2.3.12 package.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: WPGlobus 2.3.12\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:553, includes/builders/gutenberg/class-wpglobus-gutenberg.php:538, includes/class-wpglobus.php:1298, wpglobus.php:12, wpglobus.php:18
209
  msgid "WPGlobus"
210
  msgstr ""
211
 
@@ -643,15 +643,15 @@ 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:3571
647
  msgid "Save draft before using extra language."
648
  msgstr ""
649
 
650
- #: includes/builders/class-wpglobus-builder.php:366
651
  msgid "Builder"
652
  msgstr ""
653
 
654
- #: includes/builders/class-wpglobus-builder.php:390
655
  msgid "Сompatibility Settings"
656
  msgstr ""
657
 
@@ -726,40 +726,40 @@ msgid "Selector type"
726
  msgstr ""
727
 
728
  #. translators: ON/OFF status of WPGlobus on the edit pages.
729
- #: includes/class-wpglobus.php:1272
730
  msgid "OFF"
731
  msgstr ""
732
 
733
- #: includes/class-wpglobus.php:1273
734
  msgid "Turn on"
735
  msgstr ""
736
 
737
  #. translators: ON/OFF status of WPGlobus on the edit pages.
738
- #: includes/class-wpglobus.php:1277
739
  msgid "ON"
740
  msgstr ""
741
 
742
- #: includes/class-wpglobus.php:1278
743
  msgid "Turn off"
744
  msgstr ""
745
 
746
- #: includes/class-wpglobus.php:1461
747
  msgid "You cannot disable the main language."
748
  msgstr ""
749
 
750
- #: includes/class-wpglobus.php:1669
751
  msgid "*) Available after the menu is saved."
752
  msgstr ""
753
 
754
- #: includes/class-wpglobus.php:1686
755
  msgid "Need a multilingual slug?"
756
  msgstr ""
757
 
758
- #: includes/class-wpglobus.php:4010
759
  msgid "You must enable Pretty Permalinks to use WPGlobus."
760
  msgstr ""
761
 
762
- #: includes/class-wpglobus.php:4012
763
  msgid "Please go to Settings > Permalinks > Common Settings and choose a non-default option."
764
  msgstr ""
765
 
1
+ # Copyright (C) 2020 WPGlobus 2.4.0
2
+ # This file is distributed under the same license as the WPGlobus 2.4.0 package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: WPGlobus 2.4.0\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:553, includes/builders/gutenberg/class-wpglobus-gutenberg.php:538, includes/class-wpglobus.php:1235, 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:278, includes/class-wpglobus.php:3508
647
  msgid "Save draft before using extra language."
648
  msgstr ""
649
 
650
+ #: includes/builders/class-wpglobus-builder.php:371
651
  msgid "Builder"
652
  msgstr ""
653
 
654
+ #: includes/builders/class-wpglobus-builder.php:395
655
  msgid "Сompatibility Settings"
656
  msgstr ""
657
 
726
  msgstr ""
727
 
728
  #. translators: ON/OFF status of WPGlobus on the edit pages.
729
+ #: includes/class-wpglobus.php:1209
730
  msgid "OFF"
731
  msgstr ""
732
 
733
+ #: includes/class-wpglobus.php:1210
734
  msgid "Turn on"
735
  msgstr ""
736
 
737
  #. translators: ON/OFF status of WPGlobus on the edit pages.
738
+ #: includes/class-wpglobus.php:1214
739
  msgid "ON"
740
  msgstr ""
741
 
742
+ #: includes/class-wpglobus.php:1215
743
  msgid "Turn off"
744
  msgstr ""
745
 
746
+ #: includes/class-wpglobus.php:1398
747
  msgid "You cannot disable the main language."
748
  msgstr ""
749
 
750
+ #: includes/class-wpglobus.php:1606
751
  msgid "*) Available after the menu is saved."
752
  msgstr ""
753
 
754
+ #: includes/class-wpglobus.php:1623
755
  msgid "Need a multilingual slug?"
756
  msgstr ""
757
 
758
+ #: includes/class-wpglobus.php:3955
759
  msgid "You must enable Pretty Permalinks to use WPGlobus."
760
  msgstr ""
761
 
762
+ #: includes/class-wpglobus.php:3957
763
  msgid "Please go to Settings > Permalinks > Common Settings and choose a non-default option."
764
  msgstr ""
765
 
readme.txt CHANGED
@@ -218,6 +218,16 @@ WPGlobus Version 2 supports WordPress 5.x, with Gutenberg.
218
 
219
  == Changelog ==
220
 
 
 
 
 
 
 
 
 
 
 
221
  = 2.3.12 =
222
 
223
  * (Customizer) WPGlobus Customizer is switched off for `Gwangi` theme.
@@ -265,7 +275,3 @@ WPGlobus Version 2 supports WordPress 5.x, with Gutenberg.
265
 
266
  * [WPGlobus.com](https://wpglobus.com/):
267
  * Bilingual site using a variety of posts, pages, custom post types, forms, and a WooCommerce store with Subscription and API extensions.
268
- * [Site in a subfolder](http://demo-subfolder.wpglobus.com/):
269
- * Demonstration of two WPGlobus-powered sites, one of which is installed in a subfolder of another. Shows the correct behavior of WPGlobus with URLs like `example.com/folder/wordpress`.
270
- * [WooCommerce Multilingual](https://demo-store.wpglobus.com/):
271
- * A multilingual WooCommerce site powered by the `WPGlobus for WooCommerce` plugin.
218
 
219
  == Changelog ==
220
 
221
+ = 2.4.0 =
222
+
223
+ * (Vendor/Yoast) Added support Yoast SEO from v.14.
224
+ * (Core) Code clean-up.
225
+ * (Core) Interface improvements on the `post.php` page.
226
+ * (Core/Builder) Interface improvements on the `post.php` page.
227
+ * (Core/AdminPost) Localized the `Preview Changes` link.
228
+ * (Core/Meta) Removed caching meta data.
229
+ * (Builders/Gutenberg) Prevent multiple clicking on language switcher.
230
+
231
  = 2.3.12 =
232
 
233
  * (Customizer) WPGlobus Customizer is switched off for `Gwangi` theme.
275
 
276
  * [WPGlobus.com](https://wpglobus.com/):
277
  * Bilingual site using a variety of posts, pages, custom post types, forms, and a WooCommerce store with Subscription and API extensions.
 
 
 
 
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.3.12
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.3.12' );
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.4.0
19
  * Author: WPGlobus
20
  * Author URI: https://wpglobus.com/
21
  * Network: false
42
  exit;
43
  }
44
 
45
+ define( 'WPGLOBUS_VERSION', '2.4.0' );
46
  define( 'WPGLOBUS_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
47
  define( 'WPGLOBUS_AJAX', 'wpglobus-ajax' );
48