WPGlobus – Multilingual Everything! - Version 2.3.6

Version Description

  • (Builders/Elementor) Prevent The preview could not be loaded for language in draft status.
  • (Core/Admin) Exclude some meta from being multilingual.
  • (Core/Post Types) Added post types of WPForms Lite plugin and Bodega theme to hidden types array.
Download this release

Release Info

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

Code changes from version 2.3.5 to 2.3.6

Files changed (44) hide show
  1. includes/builders/elementor/class-wpglobus-elementor-front.php +19 -2
  2. includes/class-wpglobus-post-types.php +13 -0
  3. includes/class-wpglobus.php +7 -0
  4. includes/js/wpglobus-admin-51.js +9 -0
  5. includes/js/wpglobus-admin-51.min.js +1 -1
  6. languages/wpglobus-ar.po +5 -5
  7. languages/wpglobus-be.po +5 -5
  8. languages/wpglobus-bg_BG.po +5 -5
  9. languages/wpglobus-de_CH.po +5 -5
  10. languages/wpglobus-de_DE.po +5 -5
  11. languages/wpglobus-el.po +5 -5
  12. languages/wpglobus-en_AU.po +5 -5
  13. languages/wpglobus-en_CA.po +5 -5
  14. languages/wpglobus-en_GB.po +5 -5
  15. languages/wpglobus-en_NZ.po +5 -5
  16. languages/wpglobus-en_US.po +5 -5
  17. languages/wpglobus-en_ZA.po +5 -5
  18. languages/wpglobus-es_AR.po +5 -5
  19. languages/wpglobus-es_CL.po +5 -5
  20. languages/wpglobus-es_CO.po +5 -5
  21. languages/wpglobus-es_CR.po +5 -5
  22. languages/wpglobus-es_ES.po +5 -5
  23. languages/wpglobus-es_GT.po +5 -5
  24. languages/wpglobus-es_MX.po +5 -5
  25. languages/wpglobus-es_PE.po +5 -5
  26. languages/wpglobus-es_PR.po +5 -5
  27. languages/wpglobus-es_VE.po +5 -5
  28. languages/wpglobus-et.po +5 -5
  29. languages/wpglobus-fr_BE.po +5 -5
  30. languages/wpglobus-fr_CA.po +5 -5
  31. languages/wpglobus-fr_FR.po +5 -5
  32. languages/wpglobus-id_ID.po +5 -5
  33. languages/wpglobus-ko_KR.po +5 -5
  34. languages/wpglobus-pl_PL.po +5 -5
  35. languages/wpglobus-pt_BR.po +5 -5
  36. languages/wpglobus-pt_PT.po +5 -5
  37. languages/wpglobus-ro_RO.po +5 -5
  38. languages/wpglobus-ru_RU.po +5 -5
  39. languages/wpglobus-sv_SE.po +5 -5
  40. languages/wpglobus-tr_TR.po +5 -5
  41. languages/wpglobus-uk.po +5 -5
  42. languages/wpglobus.pot +8 -8
  43. readme.txt +6 -0
  44. wpglobus.php +2 -2
includes/builders/elementor/class-wpglobus-elementor-front.php CHANGED
@@ -83,6 +83,10 @@ if ( ! class_exists( 'WPGlobus_Elementor_Front' ) ) :
83
  //add_filter( 'elementor/editor/localize_settings', array( __CLASS__, 'filter__localize_settings' ), 10, 2 );
84
  //add_action( 'elementor/editor/after_enqueue_scripts', array( __CLASS__, 'filter__localize_settings' ) );
85
 
 
 
 
 
86
  }
87
 
88
  /**
@@ -329,8 +333,21 @@ if ( ! class_exists( 'WPGlobus_Elementor_Front' ) ) :
329
 
330
  return $check;
331
 
332
- }
333
-
 
 
 
 
 
 
 
 
 
 
 
 
 
334
  } // end class WPGlobus_Elementor_Front.
335
 
336
  endif;
83
  //add_filter( 'elementor/editor/localize_settings', array( __CLASS__, 'filter__localize_settings' ), 10, 2 );
84
  //add_action( 'elementor/editor/after_enqueue_scripts', array( __CLASS__, 'filter__localize_settings' ) );
85
 
86
+ /**
87
+ * @since 2.3.6
88
+ */
89
+ add_filter( 'wpglobus_plus_publish_template_include_handler', array( __CLASS__, 'filter__template_include_handler' ) );
90
  }
91
 
92
  /**
333
 
334
  return $check;
335
 
336
+ }
337
+
338
+ /**
339
+ * @since 2.3.6
340
+ */
341
+ public static function filter__template_include_handler($handler) {
342
+ /**
343
+ * Don't fire `template_include` filter with active Elementor
344
+ * to prevent `The preview could not be loaded` for language in draft status.
345
+ */
346
+ if ( empty( $_GET['elementor-preview'] ) ) {
347
+ return $handler;
348
+ }
349
+ return false;
350
+ }
351
  } // end class WPGlobus_Elementor_Front.
352
 
353
  endif;
includes/class-wpglobus-post-types.php CHANGED
@@ -66,6 +66,9 @@ class WPGlobus_Post_Types {
66
  // Elementor Pro: @since 2.3.1
67
  'elementor_font',
68
  'elementor_icons',
 
 
 
69
  );
70
 
71
  /**
@@ -90,6 +93,16 @@ class WPGlobus_Post_Types {
90
  * @return string[]
91
  */
92
  public static function hidden_types() {
 
 
 
 
 
 
 
 
 
 
93
 
94
  $hidden_types = self::$hidden_types_main;
95
 
66
  // Elementor Pro: @since 2.3.1
67
  'elementor_font',
68
  'elementor_icons',
69
+ // WPForms Lite: https://wordpress.org/plugins/wpforms-lite/ @since 2.3.6
70
+ 'wpforms',
71
+ 'wpforms_log',
72
  );
73
 
74
  /**
93
  * @return string[]
94
  */
95
  public static function hidden_types() {
96
+
97
+ /**
98
+ * @since 2.3.6
99
+ * @see https://themeforest.net/item/bodega-a-stylish-theme-for-small-businesses/10276763
100
+ */
101
+ if ( defined('BODEGA_CORE_VERSION') ) {
102
+ self::$hidden_types_main[] = 'testimonials';
103
+ self::$hidden_types_main[] = 'slides';
104
+ self::$hidden_types_main[] = 'carousels';
105
+ }
106
 
107
  $hidden_types = self::$hidden_types_main;
108
 
includes/class-wpglobus.php CHANGED
@@ -1547,6 +1547,13 @@ class WPGlobus {
1547
  } else {
1548
  $data['customFieldsEnabled'] = 'false';
1549
  }
 
 
 
 
 
 
 
1550
  } elseif ( 'nav-menus.php' === $page ) {
1551
 
1552
  $page_action = 'menu-edit';
1547
  } else {
1548
  $data['customFieldsEnabled'] = 'false';
1549
  }
1550
+
1551
+ /**
1552
+ * Exclude some meta from being multilingual.
1553
+ * @since 2.3.6
1554
+ */
1555
+ $data['excludeCustomFields'] = array( self::LANGUAGE_META_KEY, 'classic-editor-remember' );
1556
+
1557
  } elseif ( 'nav-menus.php' === $page ) {
1558
 
1559
  $page_action = 'menu-edit';
includes/js/wpglobus-admin-51.js CHANGED
@@ -1649,6 +1649,10 @@ jQuery(document).ready(function () {
1649
  }
1650
  }
1651
 
 
 
 
 
1652
  var ajaxify_row_id, added_control = false;
1653
  var add_elements = function(post_id) {
1654
 
@@ -1678,6 +1682,11 @@ jQuery(document).ready(function () {
1678
  return true;
1679
  }
1680
  meta_key = $('#'+tid+'-key').val();
 
 
 
 
 
1681
  clone = $('#'+id).clone();
1682
  $(element).addClass('wpglobus-dialog-field-source hidden');
1683
  name = element.attr('name');
1649
  }
1650
  }
1651
 
1652
+ if ( 'undefined' === typeof WPGlobusAdmin.data.excludeCustomFields ) {
1653
+ WPGlobusAdmin.data.excludeCustomFields = false;
1654
+ }
1655
+
1656
  var ajaxify_row_id, added_control = false;
1657
  var add_elements = function(post_id) {
1658
 
1682
  return true;
1683
  }
1684
  meta_key = $('#'+tid+'-key').val();
1685
+
1686
+ if ( WPGlobusAdmin.data.excludeCustomFields && -1 != $.inArray(meta_key, WPGlobusAdmin.data.excludeCustomFields) ) {
1687
+ return true;
1688
+ }
1689
+
1690
  clone = $('#'+id).clone();
1691
  $(element).addClass('wpglobus-dialog-field-source hidden');
1692
  name = element.attr('name');
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,p=!1;if(""==a.onChangeClass)g="#wpglobus-"+f.clone_id;else{g="."+a.onChangeClass;var b=m._data(m(document)[0],"events");void 0===b?p=!0:void 0!==b.change&&m.each(b.change,function(t,a){if(a.selector==g)return!(p=!0)})}return p?!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)){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;if(void 0===(s=i.attr("id")))return!0;e=c("#"+n+"-key").val(),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),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-","");"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)});
languages/wpglobus-ar.po CHANGED
@@ -816,7 +816,7 @@ msgid "To translate permalinks, please activate the module Slug."
816
  msgstr ""
817
 
818
  #: includes/builders/class-wpglobus-builder.php:277,
819
- #: includes/class-wpglobus.php:3560
820
  msgid "Save draft before using extra language."
821
  msgstr ""
822
 
@@ -924,19 +924,19 @@ msgstr ""
924
  msgid "You cannot disable the main language."
925
  msgstr ""
926
 
927
- #: includes/class-wpglobus.php:1658
928
  msgid "*) Available after the menu is saved."
929
  msgstr ""
930
 
931
- #: includes/class-wpglobus.php:1675
932
  msgid "Need a multilingual slug?"
933
  msgstr ""
934
 
935
- #: includes/class-wpglobus.php:3999
936
  msgid "You must enable Pretty Permalinks to use WPGlobus."
937
  msgstr ""
938
 
939
- #: includes/class-wpglobus.php:4001
940
  msgid ""
941
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
942
  "default option."
816
  msgstr ""
817
 
818
  #: includes/builders/class-wpglobus-builder.php:277,
819
+ #: includes/class-wpglobus.php:3567
820
  msgid "Save draft before using extra language."
821
  msgstr ""
822
 
924
  msgid "You cannot disable the main language."
925
  msgstr ""
926
 
927
+ #: includes/class-wpglobus.php:1665
928
  msgid "*) Available after the menu is saved."
929
  msgstr ""
930
 
931
+ #: includes/class-wpglobus.php:1682
932
  msgid "Need a multilingual slug?"
933
  msgstr ""
934
 
935
+ #: includes/class-wpglobus.php:4006
936
  msgid "You must enable Pretty Permalinks to use WPGlobus."
937
  msgstr ""
938
 
939
+ #: includes/class-wpglobus.php:4008
940
  msgid ""
941
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
942
  "default option."
languages/wpglobus-be.po CHANGED
@@ -867,7 +867,7 @@ msgid "To translate permalinks, please activate the module Slug."
867
  msgstr ""
868
 
869
  #: includes/builders/class-wpglobus-builder.php:277,
870
- #: includes/class-wpglobus.php:3560
871
  msgid "Save draft before using extra language."
872
  msgstr ""
873
 
@@ -975,21 +975,21 @@ msgstr ""
975
  msgid "You cannot disable the main language."
976
  msgstr "Нельзя отключить основной язык."
977
 
978
- #: includes/class-wpglobus.php:1658
979
  msgid "*) Available after the menu is saved."
980
  msgstr "*) Доступно после сохранения меню."
981
 
982
- #: includes/class-wpglobus.php:1675
983
  msgid "Need a multilingual slug?"
984
  msgstr "Нужен мультиязычный ярлык?"
985
 
986
- #: includes/class-wpglobus.php:3999
987
  msgid "You must enable Pretty Permalinks to use WPGlobus."
988
  msgstr ""
989
  "Чтобы использовать плагин WPGlobus, необходимо включить ЧПУ - постоянные "
990
  "ссылки."
991
 
992
- #: includes/class-wpglobus.php:4001
993
  msgid ""
994
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
995
  "default option."
867
  msgstr ""
868
 
869
  #: includes/builders/class-wpglobus-builder.php:277,
870
+ #: includes/class-wpglobus.php:3567
871
  msgid "Save draft before using extra language."
872
  msgstr ""
873
 
975
  msgid "You cannot disable the main language."
976
  msgstr "Нельзя отключить основной язык."
977
 
978
+ #: includes/class-wpglobus.php:1665
979
  msgid "*) Available after the menu is saved."
980
  msgstr "*) Доступно после сохранения меню."
981
 
982
+ #: includes/class-wpglobus.php:1682
983
  msgid "Need a multilingual slug?"
984
  msgstr "Нужен мультиязычный ярлык?"
985
 
986
+ #: includes/class-wpglobus.php:4006
987
  msgid "You must enable Pretty Permalinks to use WPGlobus."
988
  msgstr ""
989
  "Чтобы использовать плагин WPGlobus, необходимо включить ЧПУ - постоянные "
990
  "ссылки."
991
 
992
+ #: includes/class-wpglobus.php:4008
993
  msgid ""
994
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
995
  "default option."
languages/wpglobus-bg_BG.po CHANGED
@@ -792,7 +792,7 @@ msgid "To translate permalinks, please activate the module Slug."
792
  msgstr ""
793
 
794
  #: includes/builders/class-wpglobus-builder.php:277,
795
- #: includes/class-wpglobus.php:3560
796
  msgid "Save draft before using extra language."
797
  msgstr ""
798
 
@@ -900,19 +900,19 @@ msgstr ""
900
  msgid "You cannot disable the main language."
901
  msgstr ""
902
 
903
- #: includes/class-wpglobus.php:1658
904
  msgid "*) Available after the menu is saved."
905
  msgstr ""
906
 
907
- #: includes/class-wpglobus.php:1675
908
  msgid "Need a multilingual slug?"
909
  msgstr ""
910
 
911
- #: includes/class-wpglobus.php:3999
912
  msgid "You must enable Pretty Permalinks to use WPGlobus."
913
  msgstr ""
914
 
915
- #: includes/class-wpglobus.php:4001
916
  msgid ""
917
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
918
  "default option."
792
  msgstr ""
793
 
794
  #: includes/builders/class-wpglobus-builder.php:277,
795
+ #: includes/class-wpglobus.php:3567
796
  msgid "Save draft before using extra language."
797
  msgstr ""
798
 
900
  msgid "You cannot disable the main language."
901
  msgstr ""
902
 
903
+ #: includes/class-wpglobus.php:1665
904
  msgid "*) Available after the menu is saved."
905
  msgstr ""
906
 
907
+ #: includes/class-wpglobus.php:1682
908
  msgid "Need a multilingual slug?"
909
  msgstr ""
910
 
911
+ #: includes/class-wpglobus.php:4006
912
  msgid "You must enable Pretty Permalinks to use WPGlobus."
913
  msgstr ""
914
 
915
+ #: includes/class-wpglobus.php:4008
916
  msgid ""
917
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
918
  "default option."
languages/wpglobus-de_CH.po CHANGED
@@ -828,7 +828,7 @@ msgid "To translate permalinks, please activate the module Slug."
828
  msgstr ""
829
 
830
  #: includes/builders/class-wpglobus-builder.php:277,
831
- #: includes/class-wpglobus.php:3560
832
  msgid "Save draft before using extra language."
833
  msgstr ""
834
 
@@ -936,20 +936,20 @@ msgstr ""
936
  msgid "You cannot disable the main language."
937
  msgstr "Die Hauptsprache kann nicht deaktiviert werden."
938
 
939
- #: includes/class-wpglobus.php:1658
940
  msgid "*) Available after the menu is saved."
941
  msgstr "*) Verfügbar nachdem das Menü gespeichert wurde."
942
 
943
- #: includes/class-wpglobus.php:1675
944
  msgid "Need a multilingual slug?"
945
  msgstr ""
946
 
947
- #: includes/class-wpglobus.php:3999
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:4001
953
  msgid ""
954
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
955
  "default option."
828
  msgstr ""
829
 
830
  #: includes/builders/class-wpglobus-builder.php:277,
831
+ #: includes/class-wpglobus.php:3567
832
  msgid "Save draft before using extra language."
833
  msgstr ""
834
 
936
  msgid "You cannot disable the main language."
937
  msgstr "Die Hauptsprache kann nicht deaktiviert werden."
938
 
939
+ #: includes/class-wpglobus.php:1665
940
  msgid "*) Available after the menu is saved."
941
  msgstr "*) Verfügbar nachdem das Menü gespeichert wurde."
942
 
943
+ #: includes/class-wpglobus.php:1682
944
  msgid "Need a multilingual slug?"
945
  msgstr ""
946
 
947
+ #: includes/class-wpglobus.php:4006
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:4008
953
  msgid ""
954
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
955
  "default option."
languages/wpglobus-de_DE.po CHANGED
@@ -829,7 +829,7 @@ msgid "To translate permalinks, please activate the module Slug."
829
  msgstr ""
830
 
831
  #: includes/builders/class-wpglobus-builder.php:277,
832
- #: includes/class-wpglobus.php:3560
833
  msgid "Save draft before using extra language."
834
  msgstr ""
835
 
@@ -937,20 +937,20 @@ msgstr ""
937
  msgid "You cannot disable the main language."
938
  msgstr "Die Hauptsprache kann nicht deaktiviert werden."
939
 
940
- #: includes/class-wpglobus.php:1658
941
  msgid "*) Available after the menu is saved."
942
  msgstr "*) Verfügbar nachdem das Menü gespeichert wurde."
943
 
944
- #: includes/class-wpglobus.php:1675
945
  msgid "Need a multilingual slug?"
946
  msgstr ""
947
 
948
- #: includes/class-wpglobus.php:3999
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:4001
954
  msgid ""
955
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
956
  "default option."
829
  msgstr ""
830
 
831
  #: includes/builders/class-wpglobus-builder.php:277,
832
+ #: includes/class-wpglobus.php:3567
833
  msgid "Save draft before using extra language."
834
  msgstr ""
835
 
937
  msgid "You cannot disable the main language."
938
  msgstr "Die Hauptsprache kann nicht deaktiviert werden."
939
 
940
+ #: includes/class-wpglobus.php:1665
941
  msgid "*) Available after the menu is saved."
942
  msgstr "*) Verfügbar nachdem das Menü gespeichert wurde."
943
 
944
+ #: includes/class-wpglobus.php:1682
945
  msgid "Need a multilingual slug?"
946
  msgstr ""
947
 
948
+ #: includes/class-wpglobus.php:4006
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:4008
954
  msgid ""
955
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
956
  "default option."
languages/wpglobus-el.po CHANGED
@@ -793,7 +793,7 @@ msgid "To translate permalinks, please activate the module Slug."
793
  msgstr ""
794
 
795
  #: includes/builders/class-wpglobus-builder.php:277,
796
- #: includes/class-wpglobus.php:3560
797
  msgid "Save draft before using extra language."
798
  msgstr ""
799
 
@@ -901,19 +901,19 @@ msgstr ""
901
  msgid "You cannot disable the main language."
902
  msgstr ""
903
 
904
- #: includes/class-wpglobus.php:1658
905
  msgid "*) Available after the menu is saved."
906
  msgstr ""
907
 
908
- #: includes/class-wpglobus.php:1675
909
  msgid "Need a multilingual slug?"
910
  msgstr ""
911
 
912
- #: includes/class-wpglobus.php:3999
913
  msgid "You must enable Pretty Permalinks to use WPGlobus."
914
  msgstr ""
915
 
916
- #: includes/class-wpglobus.php:4001
917
  msgid ""
918
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
919
  "default option."
793
  msgstr ""
794
 
795
  #: includes/builders/class-wpglobus-builder.php:277,
796
+ #: includes/class-wpglobus.php:3567
797
  msgid "Save draft before using extra language."
798
  msgstr ""
799
 
901
  msgid "You cannot disable the main language."
902
  msgstr ""
903
 
904
+ #: includes/class-wpglobus.php:1665
905
  msgid "*) Available after the menu is saved."
906
  msgstr ""
907
 
908
+ #: includes/class-wpglobus.php:1682
909
  msgid "Need a multilingual slug?"
910
  msgstr ""
911
 
912
+ #: includes/class-wpglobus.php:4006
913
  msgid "You must enable Pretty Permalinks to use WPGlobus."
914
  msgstr ""
915
 
916
+ #: includes/class-wpglobus.php:4008
917
  msgid ""
918
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
919
  "default option."
languages/wpglobus-en_AU.po CHANGED
@@ -867,7 +867,7 @@ msgid "To translate permalinks, please activate the module Slug."
867
  msgstr ""
868
 
869
  #: includes/builders/class-wpglobus-builder.php:277,
870
- #: includes/class-wpglobus.php:3560
871
  msgid "Save draft before using extra language."
872
  msgstr ""
873
 
@@ -975,19 +975,19 @@ msgstr ""
975
  msgid "You cannot disable the main language."
976
  msgstr "You cannot disable the main language."
977
 
978
- #: includes/class-wpglobus.php:1658
979
  msgid "*) Available after the menu is saved."
980
  msgstr "*) Available after the menu is saved."
981
 
982
- #: includes/class-wpglobus.php:1675
983
  msgid "Need a multilingual slug?"
984
  msgstr "Need a multilingual slug?"
985
 
986
- #: includes/class-wpglobus.php:3999
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:4001
991
  msgid ""
992
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
993
  "default option."
867
  msgstr ""
868
 
869
  #: includes/builders/class-wpglobus-builder.php:277,
870
+ #: includes/class-wpglobus.php:3567
871
  msgid "Save draft before using extra language."
872
  msgstr ""
873
 
975
  msgid "You cannot disable the main language."
976
  msgstr "You cannot disable the main language."
977
 
978
+ #: includes/class-wpglobus.php:1665
979
  msgid "*) Available after the menu is saved."
980
  msgstr "*) Available after the menu is saved."
981
 
982
+ #: includes/class-wpglobus.php:1682
983
  msgid "Need a multilingual slug?"
984
  msgstr "Need a multilingual slug?"
985
 
986
+ #: includes/class-wpglobus.php:4006
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:4008
991
  msgid ""
992
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
993
  "default option."
languages/wpglobus-en_CA.po CHANGED
@@ -866,7 +866,7 @@ msgid "To translate permalinks, please activate the module Slug."
866
  msgstr ""
867
 
868
  #: includes/builders/class-wpglobus-builder.php:277,
869
- #: includes/class-wpglobus.php:3560
870
  msgid "Save draft before using extra language."
871
  msgstr ""
872
 
@@ -974,19 +974,19 @@ msgstr ""
974
  msgid "You cannot disable the main language."
975
  msgstr "You cannot disable the main language."
976
 
977
- #: includes/class-wpglobus.php:1658
978
  msgid "*) Available after the menu is saved."
979
  msgstr "*) Available after the menu is saved."
980
 
981
- #: includes/class-wpglobus.php:1675
982
  msgid "Need a multilingual slug?"
983
  msgstr "Need a multilingual slug?"
984
 
985
- #: includes/class-wpglobus.php:3999
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:4001
990
  msgid ""
991
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
992
  "default option."
866
  msgstr ""
867
 
868
  #: includes/builders/class-wpglobus-builder.php:277,
869
+ #: includes/class-wpglobus.php:3567
870
  msgid "Save draft before using extra language."
871
  msgstr ""
872
 
974
  msgid "You cannot disable the main language."
975
  msgstr "You cannot disable the main language."
976
 
977
+ #: includes/class-wpglobus.php:1665
978
  msgid "*) Available after the menu is saved."
979
  msgstr "*) Available after the menu is saved."
980
 
981
+ #: includes/class-wpglobus.php:1682
982
  msgid "Need a multilingual slug?"
983
  msgstr "Need a multilingual slug?"
984
 
985
+ #: includes/class-wpglobus.php:4006
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:4008
990
  msgid ""
991
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
992
  "default option."
languages/wpglobus-en_GB.po CHANGED
@@ -867,7 +867,7 @@ msgid "To translate permalinks, please activate the module Slug."
867
  msgstr ""
868
 
869
  #: includes/builders/class-wpglobus-builder.php:277,
870
- #: includes/class-wpglobus.php:3560
871
  msgid "Save draft before using extra language."
872
  msgstr ""
873
 
@@ -975,19 +975,19 @@ msgstr ""
975
  msgid "You cannot disable the main language."
976
  msgstr "You cannot disable the main language."
977
 
978
- #: includes/class-wpglobus.php:1658
979
  msgid "*) Available after the menu is saved."
980
  msgstr "*) Available after the menu is saved."
981
 
982
- #: includes/class-wpglobus.php:1675
983
  msgid "Need a multilingual slug?"
984
  msgstr "Need a multilingual slug?"
985
 
986
- #: includes/class-wpglobus.php:3999
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:4001
991
  msgid ""
992
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
993
  "default option."
867
  msgstr ""
868
 
869
  #: includes/builders/class-wpglobus-builder.php:277,
870
+ #: includes/class-wpglobus.php:3567
871
  msgid "Save draft before using extra language."
872
  msgstr ""
873
 
975
  msgid "You cannot disable the main language."
976
  msgstr "You cannot disable the main language."
977
 
978
+ #: includes/class-wpglobus.php:1665
979
  msgid "*) Available after the menu is saved."
980
  msgstr "*) Available after the menu is saved."
981
 
982
+ #: includes/class-wpglobus.php:1682
983
  msgid "Need a multilingual slug?"
984
  msgstr "Need a multilingual slug?"
985
 
986
+ #: includes/class-wpglobus.php:4006
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:4008
991
  msgid ""
992
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
993
  "default option."
languages/wpglobus-en_NZ.po CHANGED
@@ -866,7 +866,7 @@ msgid "To translate permalinks, please activate the module Slug."
866
  msgstr ""
867
 
868
  #: includes/builders/class-wpglobus-builder.php:277,
869
- #: includes/class-wpglobus.php:3560
870
  msgid "Save draft before using extra language."
871
  msgstr ""
872
 
@@ -974,19 +974,19 @@ msgstr ""
974
  msgid "You cannot disable the main language."
975
  msgstr "You cannot disable the main language."
976
 
977
- #: includes/class-wpglobus.php:1658
978
  msgid "*) Available after the menu is saved."
979
  msgstr "*) Available after the menu is saved."
980
 
981
- #: includes/class-wpglobus.php:1675
982
  msgid "Need a multilingual slug?"
983
  msgstr "Need a multilingual slug?"
984
 
985
- #: includes/class-wpglobus.php:3999
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:4001
990
  msgid ""
991
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
992
  "default option."
866
  msgstr ""
867
 
868
  #: includes/builders/class-wpglobus-builder.php:277,
869
+ #: includes/class-wpglobus.php:3567
870
  msgid "Save draft before using extra language."
871
  msgstr ""
872
 
974
  msgid "You cannot disable the main language."
975
  msgstr "You cannot disable the main language."
976
 
977
+ #: includes/class-wpglobus.php:1665
978
  msgid "*) Available after the menu is saved."
979
  msgstr "*) Available after the menu is saved."
980
 
981
+ #: includes/class-wpglobus.php:1682
982
  msgid "Need a multilingual slug?"
983
  msgstr "Need a multilingual slug?"
984
 
985
+ #: includes/class-wpglobus.php:4006
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:4008
990
  msgid ""
991
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
992
  "default option."
languages/wpglobus-en_US.po CHANGED
@@ -870,7 +870,7 @@ msgid "To translate permalinks, please activate the module Slug."
870
  msgstr "To translate permalinks, please activate the module Slug."
871
 
872
  #: includes/builders/class-wpglobus-builder.php:277,
873
- #: includes/class-wpglobus.php:3560
874
  msgid "Save draft before using extra language."
875
  msgstr "Save draft before using extra language."
876
 
@@ -982,19 +982,19 @@ msgstr "Turn off"
982
  msgid "You cannot disable the main language."
983
  msgstr "You cannot disable the main language."
984
 
985
- #: includes/class-wpglobus.php:1658
986
  msgid "*) Available after the menu is saved."
987
  msgstr "*) Available after the menu is saved."
988
 
989
- #: includes/class-wpglobus.php:1675
990
  msgid "Need a multilingual slug?"
991
  msgstr "Need a multilingual slug?"
992
 
993
- #: includes/class-wpglobus.php:3999
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:4001
998
  msgid ""
999
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
1000
  "default option."
870
  msgstr "To translate permalinks, please activate the module Slug."
871
 
872
  #: includes/builders/class-wpglobus-builder.php:277,
873
+ #: includes/class-wpglobus.php:3567
874
  msgid "Save draft before using extra language."
875
  msgstr "Save draft before using extra language."
876
 
982
  msgid "You cannot disable the main language."
983
  msgstr "You cannot disable the main language."
984
 
985
+ #: includes/class-wpglobus.php:1665
986
  msgid "*) Available after the menu is saved."
987
  msgstr "*) Available after the menu is saved."
988
 
989
+ #: includes/class-wpglobus.php:1682
990
  msgid "Need a multilingual slug?"
991
  msgstr "Need a multilingual slug?"
992
 
993
+ #: includes/class-wpglobus.php:4006
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:4008
998
  msgid ""
999
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
1000
  "default option."
languages/wpglobus-en_ZA.po CHANGED
@@ -866,7 +866,7 @@ msgid "To translate permalinks, please activate the module Slug."
866
  msgstr ""
867
 
868
  #: includes/builders/class-wpglobus-builder.php:277,
869
- #: includes/class-wpglobus.php:3560
870
  msgid "Save draft before using extra language."
871
  msgstr ""
872
 
@@ -974,19 +974,19 @@ msgstr ""
974
  msgid "You cannot disable the main language."
975
  msgstr "You cannot disable the main language."
976
 
977
- #: includes/class-wpglobus.php:1658
978
  msgid "*) Available after the menu is saved."
979
  msgstr "*) Available after the menu is saved."
980
 
981
- #: includes/class-wpglobus.php:1675
982
  msgid "Need a multilingual slug?"
983
  msgstr "Need a multilingual slug?"
984
 
985
- #: includes/class-wpglobus.php:3999
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:4001
990
  msgid ""
991
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
992
  "default option."
866
  msgstr ""
867
 
868
  #: includes/builders/class-wpglobus-builder.php:277,
869
+ #: includes/class-wpglobus.php:3567
870
  msgid "Save draft before using extra language."
871
  msgstr ""
872
 
974
  msgid "You cannot disable the main language."
975
  msgstr "You cannot disable the main language."
976
 
977
+ #: includes/class-wpglobus.php:1665
978
  msgid "*) Available after the menu is saved."
979
  msgstr "*) Available after the menu is saved."
980
 
981
+ #: includes/class-wpglobus.php:1682
982
  msgid "Need a multilingual slug?"
983
  msgstr "Need a multilingual slug?"
984
 
985
+ #: includes/class-wpglobus.php:4006
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:4008
990
  msgid ""
991
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
992
  "default option."
languages/wpglobus-es_AR.po CHANGED
@@ -827,7 +827,7 @@ msgid "To translate permalinks, please activate the module Slug."
827
  msgstr ""
828
 
829
  #: includes/builders/class-wpglobus-builder.php:277,
830
- #: includes/class-wpglobus.php:3560
831
  msgid "Save draft before using extra language."
832
  msgstr ""
833
 
@@ -935,20 +935,20 @@ msgstr ""
935
  msgid "You cannot disable the main language."
936
  msgstr "No se puede desactivar el idioma principal."
937
 
938
- #: includes/class-wpglobus.php:1658
939
  msgid "*) Available after the menu is saved."
940
  msgstr "No Se Puede Desactivar el director idioma."
941
 
942
- #: includes/class-wpglobus.php:1675
943
  msgid "Need a multilingual slug?"
944
  msgstr ""
945
 
946
- #: includes/class-wpglobus.php:3999
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:4001
952
  msgid ""
953
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
954
  "default option."
827
  msgstr ""
828
 
829
  #: includes/builders/class-wpglobus-builder.php:277,
830
+ #: includes/class-wpglobus.php:3567
831
  msgid "Save draft before using extra language."
832
  msgstr ""
833
 
935
  msgid "You cannot disable the main language."
936
  msgstr "No se puede desactivar el idioma principal."
937
 
938
+ #: includes/class-wpglobus.php:1665
939
  msgid "*) Available after the menu is saved."
940
  msgstr "No Se Puede Desactivar el director idioma."
941
 
942
+ #: includes/class-wpglobus.php:1682
943
  msgid "Need a multilingual slug?"
944
  msgstr ""
945
 
946
+ #: includes/class-wpglobus.php:4006
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:4008
952
  msgid ""
953
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
954
  "default option."
languages/wpglobus-es_CL.po CHANGED
@@ -827,7 +827,7 @@ msgid "To translate permalinks, please activate the module Slug."
827
  msgstr ""
828
 
829
  #: includes/builders/class-wpglobus-builder.php:277,
830
- #: includes/class-wpglobus.php:3560
831
  msgid "Save draft before using extra language."
832
  msgstr ""
833
 
@@ -935,20 +935,20 @@ msgstr ""
935
  msgid "You cannot disable the main language."
936
  msgstr "No se puede desactivar el idioma principal."
937
 
938
- #: includes/class-wpglobus.php:1658
939
  msgid "*) Available after the menu is saved."
940
  msgstr "No Se Puede Desactivar el director idioma."
941
 
942
- #: includes/class-wpglobus.php:1675
943
  msgid "Need a multilingual slug?"
944
  msgstr ""
945
 
946
- #: includes/class-wpglobus.php:3999
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:4001
952
  msgid ""
953
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
954
  "default option."
827
  msgstr ""
828
 
829
  #: includes/builders/class-wpglobus-builder.php:277,
830
+ #: includes/class-wpglobus.php:3567
831
  msgid "Save draft before using extra language."
832
  msgstr ""
833
 
935
  msgid "You cannot disable the main language."
936
  msgstr "No se puede desactivar el idioma principal."
937
 
938
+ #: includes/class-wpglobus.php:1665
939
  msgid "*) Available after the menu is saved."
940
  msgstr "No Se Puede Desactivar el director idioma."
941
 
942
+ #: includes/class-wpglobus.php:1682
943
  msgid "Need a multilingual slug?"
944
  msgstr ""
945
 
946
+ #: includes/class-wpglobus.php:4006
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:4008
952
  msgid ""
953
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
954
  "default option."
languages/wpglobus-es_CO.po CHANGED
@@ -827,7 +827,7 @@ msgid "To translate permalinks, please activate the module Slug."
827
  msgstr ""
828
 
829
  #: includes/builders/class-wpglobus-builder.php:277,
830
- #: includes/class-wpglobus.php:3560
831
  msgid "Save draft before using extra language."
832
  msgstr ""
833
 
@@ -935,20 +935,20 @@ msgstr ""
935
  msgid "You cannot disable the main language."
936
  msgstr "No se puede desactivar el idioma principal."
937
 
938
- #: includes/class-wpglobus.php:1658
939
  msgid "*) Available after the menu is saved."
940
  msgstr "No Se Puede Desactivar el director idioma."
941
 
942
- #: includes/class-wpglobus.php:1675
943
  msgid "Need a multilingual slug?"
944
  msgstr ""
945
 
946
- #: includes/class-wpglobus.php:3999
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:4001
952
  msgid ""
953
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
954
  "default option."
827
  msgstr ""
828
 
829
  #: includes/builders/class-wpglobus-builder.php:277,
830
+ #: includes/class-wpglobus.php:3567
831
  msgid "Save draft before using extra language."
832
  msgstr ""
833
 
935
  msgid "You cannot disable the main language."
936
  msgstr "No se puede desactivar el idioma principal."
937
 
938
+ #: includes/class-wpglobus.php:1665
939
  msgid "*) Available after the menu is saved."
940
  msgstr "No Se Puede Desactivar el director idioma."
941
 
942
+ #: includes/class-wpglobus.php:1682
943
  msgid "Need a multilingual slug?"
944
  msgstr ""
945
 
946
+ #: includes/class-wpglobus.php:4006
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:4008
952
  msgid ""
953
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
954
  "default option."
languages/wpglobus-es_CR.po CHANGED
@@ -827,7 +827,7 @@ msgid "To translate permalinks, please activate the module Slug."
827
  msgstr ""
828
 
829
  #: includes/builders/class-wpglobus-builder.php:277,
830
- #: includes/class-wpglobus.php:3560
831
  msgid "Save draft before using extra language."
832
  msgstr ""
833
 
@@ -935,20 +935,20 @@ msgstr ""
935
  msgid "You cannot disable the main language."
936
  msgstr "No se puede desactivar el idioma principal."
937
 
938
- #: includes/class-wpglobus.php:1658
939
  msgid "*) Available after the menu is saved."
940
  msgstr "No Se Puede Desactivar el director idioma."
941
 
942
- #: includes/class-wpglobus.php:1675
943
  msgid "Need a multilingual slug?"
944
  msgstr ""
945
 
946
- #: includes/class-wpglobus.php:3999
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:4001
952
  msgid ""
953
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
954
  "default option."
827
  msgstr ""
828
 
829
  #: includes/builders/class-wpglobus-builder.php:277,
830
+ #: includes/class-wpglobus.php:3567
831
  msgid "Save draft before using extra language."
832
  msgstr ""
833
 
935
  msgid "You cannot disable the main language."
936
  msgstr "No se puede desactivar el idioma principal."
937
 
938
+ #: includes/class-wpglobus.php:1665
939
  msgid "*) Available after the menu is saved."
940
  msgstr "No Se Puede Desactivar el director idioma."
941
 
942
+ #: includes/class-wpglobus.php:1682
943
  msgid "Need a multilingual slug?"
944
  msgstr ""
945
 
946
+ #: includes/class-wpglobus.php:4006
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:4008
952
  msgid ""
953
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
954
  "default option."
languages/wpglobus-es_ES.po CHANGED
@@ -827,7 +827,7 @@ msgid "To translate permalinks, please activate the module Slug."
827
  msgstr ""
828
 
829
  #: includes/builders/class-wpglobus-builder.php:277,
830
- #: includes/class-wpglobus.php:3560
831
  msgid "Save draft before using extra language."
832
  msgstr ""
833
 
@@ -935,20 +935,20 @@ msgstr ""
935
  msgid "You cannot disable the main language."
936
  msgstr "No se puede desactivar el idioma principal."
937
 
938
- #: includes/class-wpglobus.php:1658
939
  msgid "*) Available after the menu is saved."
940
  msgstr "No Se Puede Desactivar el director idioma."
941
 
942
- #: includes/class-wpglobus.php:1675
943
  msgid "Need a multilingual slug?"
944
  msgstr ""
945
 
946
- #: includes/class-wpglobus.php:3999
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:4001
952
  msgid ""
953
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
954
  "default option."
827
  msgstr ""
828
 
829
  #: includes/builders/class-wpglobus-builder.php:277,
830
+ #: includes/class-wpglobus.php:3567
831
  msgid "Save draft before using extra language."
832
  msgstr ""
833
 
935
  msgid "You cannot disable the main language."
936
  msgstr "No se puede desactivar el idioma principal."
937
 
938
+ #: includes/class-wpglobus.php:1665
939
  msgid "*) Available after the menu is saved."
940
  msgstr "No Se Puede Desactivar el director idioma."
941
 
942
+ #: includes/class-wpglobus.php:1682
943
  msgid "Need a multilingual slug?"
944
  msgstr ""
945
 
946
+ #: includes/class-wpglobus.php:4006
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:4008
952
  msgid ""
953
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
954
  "default option."
languages/wpglobus-es_GT.po CHANGED
@@ -827,7 +827,7 @@ msgid "To translate permalinks, please activate the module Slug."
827
  msgstr ""
828
 
829
  #: includes/builders/class-wpglobus-builder.php:277,
830
- #: includes/class-wpglobus.php:3560
831
  msgid "Save draft before using extra language."
832
  msgstr ""
833
 
@@ -935,20 +935,20 @@ msgstr ""
935
  msgid "You cannot disable the main language."
936
  msgstr "No se puede desactivar el idioma principal."
937
 
938
- #: includes/class-wpglobus.php:1658
939
  msgid "*) Available after the menu is saved."
940
  msgstr "No Se Puede Desactivar el director idioma."
941
 
942
- #: includes/class-wpglobus.php:1675
943
  msgid "Need a multilingual slug?"
944
  msgstr ""
945
 
946
- #: includes/class-wpglobus.php:3999
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:4001
952
  msgid ""
953
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
954
  "default option."
827
  msgstr ""
828
 
829
  #: includes/builders/class-wpglobus-builder.php:277,
830
+ #: includes/class-wpglobus.php:3567
831
  msgid "Save draft before using extra language."
832
  msgstr ""
833
 
935
  msgid "You cannot disable the main language."
936
  msgstr "No se puede desactivar el idioma principal."
937
 
938
+ #: includes/class-wpglobus.php:1665
939
  msgid "*) Available after the menu is saved."
940
  msgstr "No Se Puede Desactivar el director idioma."
941
 
942
+ #: includes/class-wpglobus.php:1682
943
  msgid "Need a multilingual slug?"
944
  msgstr ""
945
 
946
+ #: includes/class-wpglobus.php:4006
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:4008
952
  msgid ""
953
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
954
  "default option."
languages/wpglobus-es_MX.po CHANGED
@@ -827,7 +827,7 @@ msgid "To translate permalinks, please activate the module Slug."
827
  msgstr ""
828
 
829
  #: includes/builders/class-wpglobus-builder.php:277,
830
- #: includes/class-wpglobus.php:3560
831
  msgid "Save draft before using extra language."
832
  msgstr ""
833
 
@@ -935,20 +935,20 @@ msgstr ""
935
  msgid "You cannot disable the main language."
936
  msgstr "No se puede desactivar el idioma principal."
937
 
938
- #: includes/class-wpglobus.php:1658
939
  msgid "*) Available after the menu is saved."
940
  msgstr "No Se Puede Desactivar el director idioma."
941
 
942
- #: includes/class-wpglobus.php:1675
943
  msgid "Need a multilingual slug?"
944
  msgstr ""
945
 
946
- #: includes/class-wpglobus.php:3999
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:4001
952
  msgid ""
953
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
954
  "default option."
827
  msgstr ""
828
 
829
  #: includes/builders/class-wpglobus-builder.php:277,
830
+ #: includes/class-wpglobus.php:3567
831
  msgid "Save draft before using extra language."
832
  msgstr ""
833
 
935
  msgid "You cannot disable the main language."
936
  msgstr "No se puede desactivar el idioma principal."
937
 
938
+ #: includes/class-wpglobus.php:1665
939
  msgid "*) Available after the menu is saved."
940
  msgstr "No Se Puede Desactivar el director idioma."
941
 
942
+ #: includes/class-wpglobus.php:1682
943
  msgid "Need a multilingual slug?"
944
  msgstr ""
945
 
946
+ #: includes/class-wpglobus.php:4006
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:4008
952
  msgid ""
953
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
954
  "default option."
languages/wpglobus-es_PE.po CHANGED
@@ -827,7 +827,7 @@ msgid "To translate permalinks, please activate the module Slug."
827
  msgstr ""
828
 
829
  #: includes/builders/class-wpglobus-builder.php:277,
830
- #: includes/class-wpglobus.php:3560
831
  msgid "Save draft before using extra language."
832
  msgstr ""
833
 
@@ -935,20 +935,20 @@ msgstr ""
935
  msgid "You cannot disable the main language."
936
  msgstr "No se puede desactivar el idioma principal."
937
 
938
- #: includes/class-wpglobus.php:1658
939
  msgid "*) Available after the menu is saved."
940
  msgstr "No Se Puede Desactivar el director idioma."
941
 
942
- #: includes/class-wpglobus.php:1675
943
  msgid "Need a multilingual slug?"
944
  msgstr ""
945
 
946
- #: includes/class-wpglobus.php:3999
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:4001
952
  msgid ""
953
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
954
  "default option."
827
  msgstr ""
828
 
829
  #: includes/builders/class-wpglobus-builder.php:277,
830
+ #: includes/class-wpglobus.php:3567
831
  msgid "Save draft before using extra language."
832
  msgstr ""
833
 
935
  msgid "You cannot disable the main language."
936
  msgstr "No se puede desactivar el idioma principal."
937
 
938
+ #: includes/class-wpglobus.php:1665
939
  msgid "*) Available after the menu is saved."
940
  msgstr "No Se Puede Desactivar el director idioma."
941
 
942
+ #: includes/class-wpglobus.php:1682
943
  msgid "Need a multilingual slug?"
944
  msgstr ""
945
 
946
+ #: includes/class-wpglobus.php:4006
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:4008
952
  msgid ""
953
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
954
  "default option."
languages/wpglobus-es_PR.po CHANGED
@@ -827,7 +827,7 @@ msgid "To translate permalinks, please activate the module Slug."
827
  msgstr ""
828
 
829
  #: includes/builders/class-wpglobus-builder.php:277,
830
- #: includes/class-wpglobus.php:3560
831
  msgid "Save draft before using extra language."
832
  msgstr ""
833
 
@@ -935,20 +935,20 @@ msgstr ""
935
  msgid "You cannot disable the main language."
936
  msgstr "No se puede desactivar el idioma principal."
937
 
938
- #: includes/class-wpglobus.php:1658
939
  msgid "*) Available after the menu is saved."
940
  msgstr "No Se Puede Desactivar el director idioma."
941
 
942
- #: includes/class-wpglobus.php:1675
943
  msgid "Need a multilingual slug?"
944
  msgstr ""
945
 
946
- #: includes/class-wpglobus.php:3999
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:4001
952
  msgid ""
953
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
954
  "default option."
827
  msgstr ""
828
 
829
  #: includes/builders/class-wpglobus-builder.php:277,
830
+ #: includes/class-wpglobus.php:3567
831
  msgid "Save draft before using extra language."
832
  msgstr ""
833
 
935
  msgid "You cannot disable the main language."
936
  msgstr "No se puede desactivar el idioma principal."
937
 
938
+ #: includes/class-wpglobus.php:1665
939
  msgid "*) Available after the menu is saved."
940
  msgstr "No Se Puede Desactivar el director idioma."
941
 
942
+ #: includes/class-wpglobus.php:1682
943
  msgid "Need a multilingual slug?"
944
  msgstr ""
945
 
946
+ #: includes/class-wpglobus.php:4006
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:4008
952
  msgid ""
953
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
954
  "default option."
languages/wpglobus-es_VE.po CHANGED
@@ -827,7 +827,7 @@ msgid "To translate permalinks, please activate the module Slug."
827
  msgstr ""
828
 
829
  #: includes/builders/class-wpglobus-builder.php:277,
830
- #: includes/class-wpglobus.php:3560
831
  msgid "Save draft before using extra language."
832
  msgstr ""
833
 
@@ -935,20 +935,20 @@ msgstr ""
935
  msgid "You cannot disable the main language."
936
  msgstr "No se puede desactivar el idioma principal."
937
 
938
- #: includes/class-wpglobus.php:1658
939
  msgid "*) Available after the menu is saved."
940
  msgstr "No Se Puede Desactivar el director idioma."
941
 
942
- #: includes/class-wpglobus.php:1675
943
  msgid "Need a multilingual slug?"
944
  msgstr ""
945
 
946
- #: includes/class-wpglobus.php:3999
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:4001
952
  msgid ""
953
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
954
  "default option."
827
  msgstr ""
828
 
829
  #: includes/builders/class-wpglobus-builder.php:277,
830
+ #: includes/class-wpglobus.php:3567
831
  msgid "Save draft before using extra language."
832
  msgstr ""
833
 
935
  msgid "You cannot disable the main language."
936
  msgstr "No se puede desactivar el idioma principal."
937
 
938
+ #: includes/class-wpglobus.php:1665
939
  msgid "*) Available after the menu is saved."
940
  msgstr "No Se Puede Desactivar el director idioma."
941
 
942
+ #: includes/class-wpglobus.php:1682
943
  msgid "Need a multilingual slug?"
944
  msgstr ""
945
 
946
+ #: includes/class-wpglobus.php:4006
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:4008
952
  msgid ""
953
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
954
  "default option."
languages/wpglobus-et.po CHANGED
@@ -793,7 +793,7 @@ msgid "To translate permalinks, please activate the module Slug."
793
  msgstr ""
794
 
795
  #: includes/builders/class-wpglobus-builder.php:277,
796
- #: includes/class-wpglobus.php:3560
797
  msgid "Save draft before using extra language."
798
  msgstr ""
799
 
@@ -901,19 +901,19 @@ msgstr "Lülita välja"
901
  msgid "You cannot disable the main language."
902
  msgstr ""
903
 
904
- #: includes/class-wpglobus.php:1658
905
  msgid "*) Available after the menu is saved."
906
  msgstr ""
907
 
908
- #: includes/class-wpglobus.php:1675
909
  msgid "Need a multilingual slug?"
910
  msgstr ""
911
 
912
- #: includes/class-wpglobus.php:3999
913
  msgid "You must enable Pretty Permalinks to use WPGlobus."
914
  msgstr ""
915
 
916
- #: includes/class-wpglobus.php:4001
917
  msgid ""
918
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
919
  "default option."
793
  msgstr ""
794
 
795
  #: includes/builders/class-wpglobus-builder.php:277,
796
+ #: includes/class-wpglobus.php:3567
797
  msgid "Save draft before using extra language."
798
  msgstr ""
799
 
901
  msgid "You cannot disable the main language."
902
  msgstr ""
903
 
904
+ #: includes/class-wpglobus.php:1665
905
  msgid "*) Available after the menu is saved."
906
  msgstr ""
907
 
908
+ #: includes/class-wpglobus.php:1682
909
  msgid "Need a multilingual slug?"
910
  msgstr ""
911
 
912
+ #: includes/class-wpglobus.php:4006
913
  msgid "You must enable Pretty Permalinks to use WPGlobus."
914
  msgstr ""
915
 
916
+ #: includes/class-wpglobus.php:4008
917
  msgid ""
918
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
919
  "default option."
languages/wpglobus-fr_BE.po CHANGED
@@ -890,7 +890,7 @@ msgid "To translate permalinks, please activate the module Slug."
890
  msgstr ""
891
 
892
  #: includes/builders/class-wpglobus-builder.php:277,
893
- #: includes/class-wpglobus.php:3560
894
  msgid "Save draft before using extra language."
895
  msgstr ""
896
 
@@ -998,21 +998,21 @@ msgstr ""
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:1658
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:1675
1006
  msgid "Need a multilingual slug?"
1007
  msgstr "Vous avez besoin d’un identifiant multilingue ?"
1008
 
1009
- #: includes/class-wpglobus.php:3999
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:4001
1016
  msgid ""
1017
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
1018
  "default option."
890
  msgstr ""
891
 
892
  #: includes/builders/class-wpglobus-builder.php:277,
893
+ #: includes/class-wpglobus.php:3567
894
  msgid "Save draft before using extra language."
895
  msgstr ""
896
 
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:1665
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:1682
1006
  msgid "Need a multilingual slug?"
1007
  msgstr "Vous avez besoin d’un identifiant multilingue ?"
1008
 
1009
+ #: includes/class-wpglobus.php:4006
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:4008
1016
  msgid ""
1017
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
1018
  "default option."
languages/wpglobus-fr_CA.po CHANGED
@@ -892,7 +892,7 @@ msgid "To translate permalinks, please activate the module Slug."
892
  msgstr ""
893
 
894
  #: includes/builders/class-wpglobus-builder.php:277,
895
- #: includes/class-wpglobus.php:3560
896
  msgid "Save draft before using extra language."
897
  msgstr ""
898
 
@@ -1000,21 +1000,21 @@ msgstr ""
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:1658
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:1675
1008
  msgid "Need a multilingual slug?"
1009
  msgstr "Vous avez besoin d’un identifiant multilingue ?"
1010
 
1011
- #: includes/class-wpglobus.php:3999
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:4001
1018
  msgid ""
1019
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
1020
  "default option."
892
  msgstr ""
893
 
894
  #: includes/builders/class-wpglobus-builder.php:277,
895
+ #: includes/class-wpglobus.php:3567
896
  msgid "Save draft before using extra language."
897
  msgstr ""
898
 
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:1665
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:1682
1008
  msgid "Need a multilingual slug?"
1009
  msgstr "Vous avez besoin d’un identifiant multilingue ?"
1010
 
1011
+ #: includes/class-wpglobus.php:4006
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:4008
1018
  msgid ""
1019
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
1020
  "default option."
languages/wpglobus-fr_FR.po CHANGED
@@ -900,7 +900,7 @@ 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:3560
904
  msgid "Save draft before using extra language."
905
  msgstr "Enregistrer le brouillon avant d’utiliser un langage supplémentaire."
906
 
@@ -1013,21 +1013,21 @@ msgstr "Désactiver"
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:1658
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:1675
1021
  msgid "Need a multilingual slug?"
1022
  msgstr "Vous avez besoin d’un identifiant multilingue ?"
1023
 
1024
- #: includes/class-wpglobus.php:3999
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:4001
1031
  msgid ""
1032
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
1033
  "default option."
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:3567
904
  msgid "Save draft before using extra language."
905
  msgstr "Enregistrer le brouillon avant d’utiliser un langage supplémentaire."
906
 
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:1665
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:1682
1021
  msgid "Need a multilingual slug?"
1022
  msgstr "Vous avez besoin d’un identifiant multilingue ?"
1023
 
1024
+ #: includes/class-wpglobus.php:4006
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:4008
1031
  msgid ""
1032
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
1033
  "default option."
languages/wpglobus-id_ID.po CHANGED
@@ -868,7 +868,7 @@ 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:3560
872
  msgid "Save draft before using extra language."
873
  msgstr ""
874
 
@@ -976,19 +976,19 @@ msgstr ""
976
  msgid "You cannot disable the main language."
977
  msgstr "Anda tidak dapat menonaktifkan bahasa utama."
978
 
979
- #: includes/class-wpglobus.php:1658
980
  msgid "*) Available after the menu is saved."
981
  msgstr "*) Tersedia setelah menu tersebut disimpan."
982
 
983
- #: includes/class-wpglobus.php:1675
984
  msgid "Need a multilingual slug?"
985
  msgstr ""
986
 
987
- #: includes/class-wpglobus.php:3999
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:4001
992
  msgid ""
993
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
994
  "default option."
868
  msgstr ""
869
 
870
  #: includes/builders/class-wpglobus-builder.php:277,
871
+ #: includes/class-wpglobus.php:3567
872
  msgid "Save draft before using extra language."
873
  msgstr ""
874
 
976
  msgid "You cannot disable the main language."
977
  msgstr "Anda tidak dapat menonaktifkan bahasa utama."
978
 
979
+ #: includes/class-wpglobus.php:1665
980
  msgid "*) Available after the menu is saved."
981
  msgstr "*) Tersedia setelah menu tersebut disimpan."
982
 
983
+ #: includes/class-wpglobus.php:1682
984
  msgid "Need a multilingual slug?"
985
  msgstr ""
986
 
987
+ #: includes/class-wpglobus.php:4006
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:4008
992
  msgid ""
993
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
994
  "default option."
languages/wpglobus-ko_KR.po CHANGED
@@ -792,7 +792,7 @@ msgid "To translate permalinks, please activate the module Slug."
792
  msgstr ""
793
 
794
  #: includes/builders/class-wpglobus-builder.php:277,
795
- #: includes/class-wpglobus.php:3560
796
  msgid "Save draft before using extra language."
797
  msgstr ""
798
 
@@ -900,19 +900,19 @@ msgstr ""
900
  msgid "You cannot disable the main language."
901
  msgstr ""
902
 
903
- #: includes/class-wpglobus.php:1658
904
  msgid "*) Available after the menu is saved."
905
  msgstr ""
906
 
907
- #: includes/class-wpglobus.php:1675
908
  msgid "Need a multilingual slug?"
909
  msgstr ""
910
 
911
- #: includes/class-wpglobus.php:3999
912
  msgid "You must enable Pretty Permalinks to use WPGlobus."
913
  msgstr ""
914
 
915
- #: includes/class-wpglobus.php:4001
916
  msgid ""
917
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
918
  "default option."
792
  msgstr ""
793
 
794
  #: includes/builders/class-wpglobus-builder.php:277,
795
+ #: includes/class-wpglobus.php:3567
796
  msgid "Save draft before using extra language."
797
  msgstr ""
798
 
900
  msgid "You cannot disable the main language."
901
  msgstr ""
902
 
903
+ #: includes/class-wpglobus.php:1665
904
  msgid "*) Available after the menu is saved."
905
  msgstr ""
906
 
907
+ #: includes/class-wpglobus.php:1682
908
  msgid "Need a multilingual slug?"
909
  msgstr ""
910
 
911
+ #: includes/class-wpglobus.php:4006
912
  msgid "You must enable Pretty Permalinks to use WPGlobus."
913
  msgstr ""
914
 
915
+ #: includes/class-wpglobus.php:4008
916
  msgid ""
917
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
918
  "default option."
languages/wpglobus-pl_PL.po CHANGED
@@ -819,7 +819,7 @@ msgid "To translate permalinks, please activate the module Slug."
819
  msgstr ""
820
 
821
  #: includes/builders/class-wpglobus-builder.php:277,
822
- #: includes/class-wpglobus.php:3560
823
  msgid "Save draft before using extra language."
824
  msgstr ""
825
 
@@ -927,20 +927,20 @@ msgstr ""
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:1658
931
  msgid "*) Available after the menu is saved."
932
  msgstr "*) Dostępne po zapisaniu menu."
933
 
934
- #: includes/class-wpglobus.php:1675
935
  msgid "Need a multilingual slug?"
936
  msgstr ""
937
 
938
- #: includes/class-wpglobus.php:3999
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:4001
944
  msgid ""
945
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
946
  "default option."
819
  msgstr ""
820
 
821
  #: includes/builders/class-wpglobus-builder.php:277,
822
+ #: includes/class-wpglobus.php:3567
823
  msgid "Save draft before using extra language."
824
  msgstr ""
825
 
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:1665
931
  msgid "*) Available after the menu is saved."
932
  msgstr "*) Dostępne po zapisaniu menu."
933
 
934
+ #: includes/class-wpglobus.php:1682
935
  msgid "Need a multilingual slug?"
936
  msgstr ""
937
 
938
+ #: includes/class-wpglobus.php:4006
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:4008
944
  msgid ""
945
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
946
  "default option."
languages/wpglobus-pt_BR.po CHANGED
@@ -792,7 +792,7 @@ msgid "To translate permalinks, please activate the module Slug."
792
  msgstr ""
793
 
794
  #: includes/builders/class-wpglobus-builder.php:277,
795
- #: includes/class-wpglobus.php:3560
796
  msgid "Save draft before using extra language."
797
  msgstr ""
798
 
@@ -900,19 +900,19 @@ msgstr ""
900
  msgid "You cannot disable the main language."
901
  msgstr ""
902
 
903
- #: includes/class-wpglobus.php:1658
904
  msgid "*) Available after the menu is saved."
905
  msgstr ""
906
 
907
- #: includes/class-wpglobus.php:1675
908
  msgid "Need a multilingual slug?"
909
  msgstr ""
910
 
911
- #: includes/class-wpglobus.php:3999
912
  msgid "You must enable Pretty Permalinks to use WPGlobus."
913
  msgstr ""
914
 
915
- #: includes/class-wpglobus.php:4001
916
  msgid ""
917
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
918
  "default option."
792
  msgstr ""
793
 
794
  #: includes/builders/class-wpglobus-builder.php:277,
795
+ #: includes/class-wpglobus.php:3567
796
  msgid "Save draft before using extra language."
797
  msgstr ""
798
 
900
  msgid "You cannot disable the main language."
901
  msgstr ""
902
 
903
+ #: includes/class-wpglobus.php:1665
904
  msgid "*) Available after the menu is saved."
905
  msgstr ""
906
 
907
+ #: includes/class-wpglobus.php:1682
908
  msgid "Need a multilingual slug?"
909
  msgstr ""
910
 
911
+ #: includes/class-wpglobus.php:4006
912
  msgid "You must enable Pretty Permalinks to use WPGlobus."
913
  msgstr ""
914
 
915
+ #: includes/class-wpglobus.php:4008
916
  msgid ""
917
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
918
  "default option."
languages/wpglobus-pt_PT.po CHANGED
@@ -792,7 +792,7 @@ msgid "To translate permalinks, please activate the module Slug."
792
  msgstr ""
793
 
794
  #: includes/builders/class-wpglobus-builder.php:277,
795
- #: includes/class-wpglobus.php:3560
796
  msgid "Save draft before using extra language."
797
  msgstr ""
798
 
@@ -900,19 +900,19 @@ msgstr ""
900
  msgid "You cannot disable the main language."
901
  msgstr ""
902
 
903
- #: includes/class-wpglobus.php:1658
904
  msgid "*) Available after the menu is saved."
905
  msgstr ""
906
 
907
- #: includes/class-wpglobus.php:1675
908
  msgid "Need a multilingual slug?"
909
  msgstr ""
910
 
911
- #: includes/class-wpglobus.php:3999
912
  msgid "You must enable Pretty Permalinks to use WPGlobus."
913
  msgstr ""
914
 
915
- #: includes/class-wpglobus.php:4001
916
  msgid ""
917
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
918
  "default option."
792
  msgstr ""
793
 
794
  #: includes/builders/class-wpglobus-builder.php:277,
795
+ #: includes/class-wpglobus.php:3567
796
  msgid "Save draft before using extra language."
797
  msgstr ""
798
 
900
  msgid "You cannot disable the main language."
901
  msgstr ""
902
 
903
+ #: includes/class-wpglobus.php:1665
904
  msgid "*) Available after the menu is saved."
905
  msgstr ""
906
 
907
+ #: includes/class-wpglobus.php:1682
908
  msgid "Need a multilingual slug?"
909
  msgstr ""
910
 
911
+ #: includes/class-wpglobus.php:4006
912
  msgid "You must enable Pretty Permalinks to use WPGlobus."
913
  msgstr ""
914
 
915
+ #: includes/class-wpglobus.php:4008
916
  msgid ""
917
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
918
  "default option."
languages/wpglobus-ro_RO.po CHANGED
@@ -822,7 +822,7 @@ msgid "To translate permalinks, please activate the module Slug."
822
  msgstr ""
823
 
824
  #: includes/builders/class-wpglobus-builder.php:277,
825
- #: includes/class-wpglobus.php:3560
826
  msgid "Save draft before using extra language."
827
  msgstr ""
828
 
@@ -930,19 +930,19 @@ msgstr ""
930
  msgid "You cannot disable the main language."
931
  msgstr "Nu puteți dezactiva limba principală."
932
 
933
- #: includes/class-wpglobus.php:1658
934
  msgid "*) Available after the menu is saved."
935
  msgstr "*) Disponibil după ce meniul este salvat."
936
 
937
- #: includes/class-wpglobus.php:1675
938
  msgid "Need a multilingual slug?"
939
  msgstr ""
940
 
941
- #: includes/class-wpglobus.php:3999
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:4001
946
  msgid ""
947
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
948
  "default option."
822
  msgstr ""
823
 
824
  #: includes/builders/class-wpglobus-builder.php:277,
825
+ #: includes/class-wpglobus.php:3567
826
  msgid "Save draft before using extra language."
827
  msgstr ""
828
 
930
  msgid "You cannot disable the main language."
931
  msgstr "Nu puteți dezactiva limba principală."
932
 
933
+ #: includes/class-wpglobus.php:1665
934
  msgid "*) Available after the menu is saved."
935
  msgstr "*) Disponibil după ce meniul este salvat."
936
 
937
+ #: includes/class-wpglobus.php:1682
938
  msgid "Need a multilingual slug?"
939
  msgstr ""
940
 
941
+ #: includes/class-wpglobus.php:4006
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:4008
946
  msgid ""
947
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
948
  "default option."
languages/wpglobus-ru_RU.po CHANGED
@@ -873,7 +873,7 @@ msgid "To translate permalinks, please activate the module Slug."
873
  msgstr "Для перевода ссылок необходимо активировать модуль УРЛ."
874
 
875
  #: includes/builders/class-wpglobus-builder.php:277,
876
- #: includes/class-wpglobus.php:3560
877
  msgid "Save draft before using extra language."
878
  msgstr "Сохраните черновик перед переключением на другой язык."
879
 
@@ -985,21 +985,21 @@ msgstr "Выключить"
985
  msgid "You cannot disable the main language."
986
  msgstr "Нельзя отключить основной язык."
987
 
988
- #: includes/class-wpglobus.php:1658
989
  msgid "*) Available after the menu is saved."
990
  msgstr "*) Доступно после сохранения меню."
991
 
992
- #: includes/class-wpglobus.php:1675
993
  msgid "Need a multilingual slug?"
994
  msgstr "Нужен мультиязычный ярлык?"
995
 
996
- #: includes/class-wpglobus.php:3999
997
  msgid "You must enable Pretty Permalinks to use WPGlobus."
998
  msgstr ""
999
  "Чтобы использовать плагин WPGlobus, необходимо включить ЧПУ - постоянные "
1000
  "ссылки."
1001
 
1002
- #: includes/class-wpglobus.php:4001
1003
  msgid ""
1004
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
1005
  "default option."
873
  msgstr "Для перевода ссылок необходимо активировать модуль УРЛ."
874
 
875
  #: includes/builders/class-wpglobus-builder.php:277,
876
+ #: includes/class-wpglobus.php:3567
877
  msgid "Save draft before using extra language."
878
  msgstr "Сохраните черновик перед переключением на другой язык."
879
 
985
  msgid "You cannot disable the main language."
986
  msgstr "Нельзя отключить основной язык."
987
 
988
+ #: includes/class-wpglobus.php:1665
989
  msgid "*) Available after the menu is saved."
990
  msgstr "*) Доступно после сохранения меню."
991
 
992
+ #: includes/class-wpglobus.php:1682
993
  msgid "Need a multilingual slug?"
994
  msgstr "Нужен мультиязычный ярлык?"
995
 
996
+ #: includes/class-wpglobus.php:4006
997
  msgid "You must enable Pretty Permalinks to use WPGlobus."
998
  msgstr ""
999
  "Чтобы использовать плагин WPGlobus, необходимо включить ЧПУ - постоянные "
1000
  "ссылки."
1001
 
1002
+ #: includes/class-wpglobus.php:4008
1003
  msgid ""
1004
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
1005
  "default option."
languages/wpglobus-sv_SE.po CHANGED
@@ -818,7 +818,7 @@ msgid "To translate permalinks, please activate the module Slug."
818
  msgstr ""
819
 
820
  #: includes/builders/class-wpglobus-builder.php:277,
821
- #: includes/class-wpglobus.php:3560
822
  msgid "Save draft before using extra language."
823
  msgstr "Spara utkast innan du använder extra språk."
824
 
@@ -926,19 +926,19 @@ msgstr "Stäng av"
926
  msgid "You cannot disable the main language."
927
  msgstr "Du kan inte stänga av huvudspråk."
928
 
929
- #: includes/class-wpglobus.php:1658
930
  msgid "*) Available after the menu is saved."
931
  msgstr "*) Tillgängligt när menyn sparats."
932
 
933
- #: includes/class-wpglobus.php:1675
934
  msgid "Need a multilingual slug?"
935
  msgstr ""
936
 
937
- #: includes/class-wpglobus.php:3999
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:4001
942
  msgid ""
943
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
944
  "default option."
818
  msgstr ""
819
 
820
  #: includes/builders/class-wpglobus-builder.php:277,
821
+ #: includes/class-wpglobus.php:3567
822
  msgid "Save draft before using extra language."
823
  msgstr "Spara utkast innan du använder extra språk."
824
 
926
  msgid "You cannot disable the main language."
927
  msgstr "Du kan inte stänga av huvudspråk."
928
 
929
+ #: includes/class-wpglobus.php:1665
930
  msgid "*) Available after the menu is saved."
931
  msgstr "*) Tillgängligt när menyn sparats."
932
 
933
+ #: includes/class-wpglobus.php:1682
934
  msgid "Need a multilingual slug?"
935
  msgstr ""
936
 
937
+ #: includes/class-wpglobus.php:4006
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:4008
942
  msgid ""
943
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
944
  "default option."
languages/wpglobus-tr_TR.po CHANGED
@@ -818,7 +818,7 @@ msgid "To translate permalinks, please activate the module Slug."
818
  msgstr ""
819
 
820
  #: includes/builders/class-wpglobus-builder.php:277,
821
- #: includes/class-wpglobus.php:3560
822
  msgid "Save draft before using extra language."
823
  msgstr ""
824
 
@@ -926,20 +926,20 @@ msgstr ""
926
  msgid "You cannot disable the main language."
927
  msgstr "Asıl dili etkisizleştiremezsiniz."
928
 
929
- #: includes/class-wpglobus.php:1658
930
  msgid "*) Available after the menu is saved."
931
  msgstr "*) Menü kaydedildikten sonra kullanılabilir."
932
 
933
- #: includes/class-wpglobus.php:1675
934
  msgid "Need a multilingual slug?"
935
  msgstr ""
936
 
937
- #: includes/class-wpglobus.php:3999
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:4001
943
  msgid ""
944
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
945
  "default option."
818
  msgstr ""
819
 
820
  #: includes/builders/class-wpglobus-builder.php:277,
821
+ #: includes/class-wpglobus.php:3567
822
  msgid "Save draft before using extra language."
823
  msgstr ""
824
 
926
  msgid "You cannot disable the main language."
927
  msgstr "Asıl dili etkisizleştiremezsiniz."
928
 
929
+ #: includes/class-wpglobus.php:1665
930
  msgid "*) Available after the menu is saved."
931
  msgstr "*) Menü kaydedildikten sonra kullanılabilir."
932
 
933
+ #: includes/class-wpglobus.php:1682
934
  msgid "Need a multilingual slug?"
935
  msgstr ""
936
 
937
+ #: includes/class-wpglobus.php:4006
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:4008
943
  msgid ""
944
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
945
  "default option."
languages/wpglobus-uk.po CHANGED
@@ -873,7 +873,7 @@ 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:3560
877
  msgid "Save draft before using extra language."
878
  msgstr "Збережіть чернетку перед перемиканням на іншу мову."
879
 
@@ -983,21 +983,21 @@ msgstr "Вимкнути"
983
  msgid "You cannot disable the main language."
984
  msgstr "Неможна відключити головну мову."
985
 
986
- #: includes/class-wpglobus.php:1658
987
  msgid "*) Available after the menu is saved."
988
  msgstr "*) Доступно після збереження меню."
989
 
990
- #: includes/class-wpglobus.php:1675
991
  msgid "Need a multilingual slug?"
992
  msgstr "Потрібен багатомовний ярлик?"
993
 
994
- #: includes/class-wpglobus.php:3999
995
  msgid "You must enable Pretty Permalinks to use WPGlobus."
996
  msgstr ""
997
  "Щоб використовувати плагін WPGlobus, необхідно увімкнути SEF URLs - постійні "
998
  "посилання."
999
 
1000
- #: includes/class-wpglobus.php:4001
1001
  msgid ""
1002
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
1003
  "default option."
873
  msgstr "Для перекладу посилань необхідно активувати модуль URL."
874
 
875
  #: includes/builders/class-wpglobus-builder.php:277,
876
+ #: includes/class-wpglobus.php:3567
877
  msgid "Save draft before using extra language."
878
  msgstr "Збережіть чернетку перед перемиканням на іншу мову."
879
 
983
  msgid "You cannot disable the main language."
984
  msgstr "Неможна відключити головну мову."
985
 
986
+ #: includes/class-wpglobus.php:1665
987
  msgid "*) Available after the menu is saved."
988
  msgstr "*) Доступно після збереження меню."
989
 
990
+ #: includes/class-wpglobus.php:1682
991
  msgid "Need a multilingual slug?"
992
  msgstr "Потрібен багатомовний ярлик?"
993
 
994
+ #: includes/class-wpglobus.php:4006
995
  msgid "You must enable Pretty Permalinks to use WPGlobus."
996
  msgstr ""
997
  "Щоб використовувати плагін WPGlobus, необхідно увімкнути SEF URLs - постійні "
998
  "посилання."
999
 
1000
+ #: includes/class-wpglobus.php:4008
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.5
2
- # This file is distributed under the same license as the WPGlobus 2.3.5 package.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: WPGlobus 2.3.5\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -643,7 +643,7 @@ msgstr ""
643
  msgid "To translate permalinks, please activate the module Slug."
644
  msgstr ""
645
 
646
- #: includes/builders/class-wpglobus-builder.php:277, includes/class-wpglobus.php:3560
647
  msgid "Save draft before using extra language."
648
  msgstr ""
649
 
@@ -747,19 +747,19 @@ msgstr ""
747
  msgid "You cannot disable the main language."
748
  msgstr ""
749
 
750
- #: includes/class-wpglobus.php:1658
751
  msgid "*) Available after the menu is saved."
752
  msgstr ""
753
 
754
- #: includes/class-wpglobus.php:1675
755
  msgid "Need a multilingual slug?"
756
  msgstr ""
757
 
758
- #: includes/class-wpglobus.php:3999
759
  msgid "You must enable Pretty Permalinks to use WPGlobus."
760
  msgstr ""
761
 
762
- #: includes/class-wpglobus.php:4001
763
  msgid "Please go to Settings > Permalinks > Common Settings and choose a non-default option."
764
  msgstr ""
765
 
1
+ # Copyright (C) 2020 WPGlobus 2.3.6
2
+ # This file is distributed under the same license as the WPGlobus 2.3.6 package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: WPGlobus 2.3.6\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
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:3567
647
  msgid "Save draft before using extra language."
648
  msgstr ""
649
 
747
  msgid "You cannot disable the main language."
748
  msgstr ""
749
 
750
+ #: includes/class-wpglobus.php:1665
751
  msgid "*) Available after the menu is saved."
752
  msgstr ""
753
 
754
+ #: includes/class-wpglobus.php:1682
755
  msgid "Need a multilingual slug?"
756
  msgstr ""
757
 
758
+ #: includes/class-wpglobus.php:4006
759
  msgid "You must enable Pretty Permalinks to use WPGlobus."
760
  msgstr ""
761
 
762
+ #: includes/class-wpglobus.php:4008
763
  msgid "Please go to Settings > Permalinks > Common Settings and choose a non-default option."
764
  msgstr ""
765
 
readme.txt CHANGED
@@ -218,6 +218,12 @@ WPGlobus Version 2 supports WordPress 5.x, with Gutenberg.
218
 
219
  == Changelog ==
220
 
 
 
 
 
 
 
221
  = 2.3.5 =
222
 
223
  * (Core/Builders) Fixed the `Undefined offset` PHP Notice in the `is_gutenberg()` method.
218
 
219
  == Changelog ==
220
 
221
+ = 2.3.6 =
222
+
223
+ * (Builders/Elementor) Prevent `The preview could not be loaded` for language in draft status.
224
+ * (Core/Admin) Exclude some meta from being multilingual.
225
+ * (Core/Post Types) Added post types of `WPForms Lite` plugin and `Bodega` theme to hidden types array.
226
+
227
  = 2.3.5 =
228
 
229
  * (Core/Builders) Fixed the `Undefined offset` PHP Notice in the `is_gutenberg()` method.
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.5
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.5' );
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.3.6
19
  * Author: WPGlobus
20
  * Author URI: https://wpglobus.com/
21
  * Network: false
42
  exit;
43
  }
44
 
45
+ define( 'WPGLOBUS_VERSION', '2.3.6' );
46
  define( 'WPGLOBUS_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
47
  define( 'WPGLOBUS_AJAX', 'wpglobus-ajax' );
48