Version Description
- (Block Editor) Initializing to work with Elementor.
Download this release
Release Info
Developer | tivnet |
Plugin | WPGlobus – Multilingual Everything! |
Version | 2.4.11 |
Comparing to | |
See all releases |
Code changes from version 2.4.10 to 2.4.11
- includes/builders/class-wpglobus-builders.php +28 -1
- includes/builders/gutenberg/assets/js/wpglobus-gutenberg.js +30 -0
- includes/builders/gutenberg/assets/js/wpglobus-gutenberg.min.js +1 -1
- includes/builders/gutenberg/class-wpglobus-gutenberg.php +33 -2
- languages/wpglobus-ar.po +11 -1
- languages/wpglobus-be.po +11 -1
- languages/wpglobus-bg_BG.po +11 -1
- languages/wpglobus-de_CH.po +11 -1
- languages/wpglobus-de_DE.po +11 -1
- languages/wpglobus-el.po +11 -1
- languages/wpglobus-en_AU.po +11 -1
- languages/wpglobus-en_CA.po +11 -1
- languages/wpglobus-en_GB.po +11 -1
- languages/wpglobus-en_NZ.po +11 -1
- languages/wpglobus-en_US.po +11 -1
- languages/wpglobus-en_ZA.po +11 -1
- languages/wpglobus-es_AR.po +11 -1
- languages/wpglobus-es_CL.po +11 -1
- languages/wpglobus-es_CO.po +11 -1
- languages/wpglobus-es_CR.po +11 -1
- languages/wpglobus-es_ES.po +11 -1
- languages/wpglobus-es_GT.po +11 -1
- languages/wpglobus-es_MX.po +11 -1
- languages/wpglobus-es_PE.po +11 -1
- languages/wpglobus-es_PR.po +11 -1
- languages/wpglobus-es_VE.po +11 -1
- languages/wpglobus-et.po +11 -1
- languages/wpglobus-fr_BE.po +11 -1
- languages/wpglobus-fr_CA.po +11 -1
- languages/wpglobus-fr_FR.po +11 -1
- languages/wpglobus-id_ID.po +11 -1
- languages/wpglobus-ko_KR.po +11 -1
- languages/wpglobus-pl_PL.po +11 -1
- languages/wpglobus-pt_BR.po +11 -1
- languages/wpglobus-pt_PT.po +11 -1
- languages/wpglobus-ro_RO.po +11 -1
- languages/wpglobus-ru_RU.po +11 -2
- languages/wpglobus-sv_SE.po +11 -1
- languages/wpglobus-tr_TR.po +11 -1
- languages/wpglobus-uk.po +11 -1
- languages/wpglobus.pot +12 -4
- readme.txt +4 -28
- wpglobus.php +2 -2
includes/builders/class-wpglobus-builders.php
CHANGED
@@ -5,6 +5,16 @@
|
|
5 |
* @package WPGlobus\Builders
|
6 |
* @author Alex Gor(alexgff)
|
7 |
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
|
9 |
/**
|
10 |
* Class WPGlobus_Builders.
|
@@ -1055,6 +1065,24 @@ if ( ! class_exists( 'WPGlobus_Builders' ) ) :
|
|
1055 |
}
|
1056 |
}
|
1057 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1058 |
|
1059 |
if ( function_exists( 'classic_editor_settings' ) ) {
|
1060 |
/**
|
@@ -1145,7 +1173,6 @@ if ( ! class_exists( 'WPGlobus_Builders' ) ) :
|
|
1145 |
}
|
1146 |
|
1147 |
return $load_gutenberg;
|
1148 |
-
|
1149 |
}
|
1150 |
|
1151 |
/**
|
5 |
* @package WPGlobus\Builders
|
6 |
* @author Alex Gor(alexgff)
|
7 |
*/
|
8 |
+
|
9 |
+
/**
|
10 |
+
* Elementor.
|
11 |
+
* @since 2.4.11
|
12 |
+
*/
|
13 |
+
use Elementor\Modules\Gutenberg;
|
14 |
+
|
15 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
16 |
+
exit; // Exit if accessed directly.
|
17 |
+
}
|
18 |
|
19 |
/**
|
20 |
* Class WPGlobus_Builders.
|
1065 |
}
|
1066 |
}
|
1067 |
}
|
1068 |
+
|
1069 |
+
/**
|
1070 |
+
* Elementor.
|
1071 |
+
*
|
1072 |
+
* @since 2.4.11
|
1073 |
+
* @see elementor\modules\gutenberg\module.php
|
1074 |
+
*/
|
1075 |
+
if ( defined( 'ELEMENTOR_VERSION' ) ) {
|
1076 |
+
$gutenberg_module = new Gutenberg\Module();
|
1077 |
+
if ( $gutenberg_module->is_active() ) {
|
1078 |
+
if ( isset($_GET['action']) && 'elementor' == $_GET['action'] ) {
|
1079 |
+
/**
|
1080 |
+
* Prevent init block editor support when elementor edit page is loading.
|
1081 |
+
*/
|
1082 |
+
return false;
|
1083 |
+
}
|
1084 |
+
}
|
1085 |
+
}
|
1086 |
|
1087 |
if ( function_exists( 'classic_editor_settings' ) ) {
|
1088 |
/**
|
1173 |
}
|
1174 |
|
1175 |
return $load_gutenberg;
|
|
|
1176 |
}
|
1177 |
|
1178 |
/**
|
includes/builders/gutenberg/assets/js/wpglobus-gutenberg.js
CHANGED
@@ -54,10 +54,12 @@ jQuery(document).ready(function ($) {
|
|
54 |
},
|
55 |
init: function() {
|
56 |
WPGlobusGutenberg.yoastSeo = api.parseBool(WPGlobusGutenberg.yoastSeo);
|
|
|
57 |
if ( api.isPostDisabled() ) {
|
58 |
return;
|
59 |
}
|
60 |
api.initListeners();
|
|
|
61 |
api.setTabs();
|
62 |
api.formHandler();
|
63 |
api.attachListeners();
|
@@ -96,6 +98,34 @@ jQuery(document).ready(function ($) {
|
|
96 |
$('input[name="_wp_original_http_referer"]').attr('value', val);
|
97 |
}
|
98 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
99 |
setTabs: function() {
|
100 |
if ( WPGlobusGutenberg.tabs.length == 0 ) {
|
101 |
api.WPGlobusSwitcherPlugin();
|
54 |
},
|
55 |
init: function() {
|
56 |
WPGlobusGutenberg.yoastSeo = api.parseBool(WPGlobusGutenberg.yoastSeo);
|
57 |
+
WPGlobusGutenberg.elementor = api.parseBool(WPGlobusGutenberg.elementor);
|
58 |
if ( api.isPostDisabled() ) {
|
59 |
return;
|
60 |
}
|
61 |
api.initListeners();
|
62 |
+
api.initNotifications();
|
63 |
api.setTabs();
|
64 |
api.formHandler();
|
65 |
api.attachListeners();
|
98 |
$('input[name="_wp_original_http_referer"]').attr('value', val);
|
99 |
}
|
100 |
},
|
101 |
+
initNotifications: function() {
|
102 |
+
// @since 2.4.11
|
103 |
+
if ( 'undefined' === typeof wp.editPost || 'undefined' === typeof wp.plugins ) {
|
104 |
+
return;
|
105 |
+
}
|
106 |
+
if ( ! WPGlobusGutenberg.elementor ) {
|
107 |
+
return;
|
108 |
+
}
|
109 |
+
if ( 'internal' != WPGlobusGutenberg.data.elementorCssPrintMethod ) {
|
110 |
+
return;
|
111 |
+
}
|
112 |
+
|
113 |
+
wp.data.dispatch('core/notices').createNotice(
|
114 |
+
'error', // Can be one of: success, info, warning, error.
|
115 |
+
WPGlobusGutenberg.i18n.elementorWarning, // Text string to display.
|
116 |
+
{
|
117 |
+
id: 'elementorcssprintmethodnotice', // Assigning an ID prevents the notice from being added repeatedly.
|
118 |
+
isDismissible: true, // Whether the user can dismiss the notice.
|
119 |
+
actions: [
|
120 |
+
// Any actions the user can perform.
|
121 |
+
{
|
122 |
+
url: WPGlobusGutenberg.i18n.elementorActionLink,
|
123 |
+
label: WPGlobusGutenberg.i18n.elementorActionLabel
|
124 |
+
}
|
125 |
+
]
|
126 |
+
}
|
127 |
+
);
|
128 |
+
},
|
129 |
setTabs: function() {
|
130 |
if ( WPGlobusGutenberg.tabs.length == 0 ) {
|
131 |
api.WPGlobusSwitcherPlugin();
|
includes/builders/gutenberg/assets/js/wpglobus-gutenberg.min.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
"use strict";jQuery(document).ready(function(D){var I={counter:0,noticeOn:!1,initDone:!1,languageSelectorBoxDelta:0,oldLanguageSelector:!1,languageSelectorEnabled:!0,parseBool:function(e){return!/^(false|0)$/i.test(e)&&!!e},getCounter:function(){return I.counter},getOptionKey:function(e){return e=e||"",WPGlobusGutenberg.keyOption[e]},getOptions:function(){return WPGlobusGutenberg.options},isOldLanguageSelector:function(){return I.oldLanguageSelector},isPostDisabled:function(){return WPGlobusGutenberg.__post.disabled},isEnabledTab:function(e){void 0===e&&(e="options");var t=!1;return"options"==e&&I.parseBool(WPGlobusGutenberg.enabledOptionsTab)&&(t=!0),t},init:function(){WPGlobusGutenberg.yoastSeo=I.parseBool(WPGlobusGutenberg.yoastSeo),I.isPostDisabled()||(I.initListeners(),I.setTabs(),I.formHandler(),I.attachListeners())},initListeners:function(){WPGlobusGutenberg.yoastSeo&&1==D(".yoast.wpseo-metabox").length&&D(window).on("beforeunload",function(e){e.stopImmediatePropagation()})},formHandler:function(){var e=D(".metabox-base-form #referredby").attr("value");void 0!==e&&(e=-1==e.indexOf("language=en")?e+"&language="+WPGlobusGutenberg.language:e.replace("language=en","language="+WPGlobusGutenberg.language),D(".metabox-base-form #referredby").attr("value",e)),void 0!==(e=D('input[name="_wp_original_http_referer"]').attr("value"))&&(e=-1==e.indexOf("language=en")?e+"&language="+WPGlobusGutenberg.language:e.replace("language=en","language="+WPGlobusGutenberg.language),D('input[name="_wp_original_http_referer"]').attr("value",e))},setTabs:function(){if(0!=WPGlobusGutenberg.tabs.length){I.oldLanguageSelector=!0;var t=setInterval(function(){var e=D(".edit-post-header__settings");1==e.length&&(e.before(WPGlobusGutenberg.tabs),clearInterval(t))},200)}else I.WPGlobusSwitcherPlugin()},setSelectorStatus:function(){if(I.isOldLanguageSelector()){D(".wpglobus-gutenberg-selector-box").css({opacity:"0.2"}).attr("onclick","return false;"),I.languageSelectorEnabled=!1;var e=setInterval(function(){if(0==D(".is-saving").length){if(clearInterval(e),WPGlobusGutenberg.pagenow==WPGlobusGutenberg.postNewPage&&-1!=location.pathname.indexOf(WPGlobusGutenberg.postEditPage))return WPGlobusGutenberg.pagenow=WPGlobusGutenberg.postEditPage,D(".wpglobus-gutenberg-selector-box").css({opacity:"1"}).attr("onclick",""),void I.reloadPage();I.languageSelectorEnabled=!0,D(".wpglobus-gutenberg-selector-box").css({opacity:"1"}).attr("onclick","")}},400)}},reloadPage:function(){D(".wpglobus-selector-grid").css({"grid-template-columns":"10% 90%"}),D(".wpglobus-gutenberg-selector-text").text(WPGlobusGutenberg.i18n.reload),function e(){D(".wpglobus-gutenberg-selector").fadeOut(500).fadeIn(500,e)}(),setTimeout(function(){location.reload()},500)},attachListeners:function(){I.isOldLanguageSelector()&&(D(document).on("mouseenter",".wpglobus-gutenberg-selector",function(e){I.languageSelectorEnabled&&(D(".wpglobus-gutenberg-selector-dropdown").css({display:"block"}),I.languageSelectorBoxDelta=e.screenY,D(".edit-post-header").css({"z-index":"100000"}),D(".wpglobus-gutenberg-selector-box").css({"z-index":"100001"}))}),D(document).on("mouseleave",".wpglobus-gutenberg-selector",function(e){0!=I.languageSelectorBoxDelta&&e.screenY-I.languageSelectorBoxDelta<=0&&(D(".wpglobus-gutenberg-selector-dropdown").css({display:"none"}),D(".edit-post-header").css({"z-index":"9989"}),D(".wpglobus-gutenberg-selector-box").css({"z-index":"100"}))}),D(document).on("mouseleave",".wpglobus-gutenberg-selector-dropdown",function(e){D(".wpglobus-gutenberg-selector-dropdown").css({display:"none"}),D(".edit-post-header").css({"z-index":"9989"}),D(".wpglobus-gutenberg-selector-box").css({"z-index":"10000"})}),D(document).on("click",".editor-post-save-draft",function(){I.setSelectorStatus()}),D(document).on("click",".editor-post-publish-button",function(){I.setSelectorStatus()}))},WPGlobusSwitcherPlugin:function(){if(void 0!==wp.editPost&&void 0!==wp.plugins){var e=WPGlobusGutenberg.language,t=WPGlobusCoreData.enabled_languages,n=WPGlobusCoreData.en_language_name,o=WPGlobusGutenberg.flags_url,a="WPGlobus Switcher",s=location.href,l={};for(var u in t)-1==s.indexOf("language="+e)?l[t[u]]=s+"&language="+t[u]:l[t[u]]=s.replace("language="+e,"language="+t[u]);var i=wp.i18n.__,r=wp.element.createElement,g=wp.element.Fragment,c=wp.components.TabPanel,b=wp.compose.withState,p=wp.components.RadioControl,d=wp.components.Notice,w=wp.components.Button,m=wp.editPost.PluginSidebarMoreMenuItem,f=wp.components.PanelBody,G=wp.editPost.PluginSidebar,h=wp.plugins.registerPlugin,P=D(".components-panel__header.edit-post-sidebar-header button.components-icon-button").eq(0),v={flagOnly:'<img height="20px" width="20px" src="'+WPGlobusGutenberg.flags_url[WPGlobusGutenberg.language]+'" />',flagLanguage:'<img height="20px" width="20px" src="'+WPGlobusGutenberg.flags_url[WPGlobusGutenberg.language]+'" /> '+WPGlobusAdmin.data.en_language_name[WPGlobusGutenberg.language],flagCode:'<img height="20px" width="20px" src="'+WPGlobusGutenberg.flags_url[WPGlobusGutenberg.language]+'" /> '+WPGlobusGutenberg.language,languageOnly:" "+WPGlobusAdmin.data.en_language_name[WPGlobusGutenberg.language],languageCode:" "+WPGlobusGutenberg.language},_="",W="",x=I.getOptionKey("switcherButtonType");S(WPGlobusGutenberg.options[x]),W=L(),D(document).on("click",P,function(){B()});var y=b({value:W})(function(e){e.value;var t=e.setState;return r(p,{label:"",help:"Select type of switcher language button.",selected:W,className:"wpglobus-switcher-components-radio-control",options:[{label:"Flag only",value:"flagOnly"},{label:"Flag with language",value:"flagLanguage"},{label:"Flag with language code",value:"flagCode"},{label:"Language only",value:"languageOnly"},{label:"Language code",value:"languageCode"}],onChange:function(e){t({value:W=e}),T(x,e)}})});h("wpglobus-switcher",{icon:"",render:function(){return B(),r(g,{},r(m,{target:"wpglobus-switcher-sidebar",icon:"admin-site"},i("WPGlobus")),r(G,{name:"wpglobus-switcher-sidebar",title:O(),className:"wpglobus-switcher-components-panel"},r("div",{className:"wpglobus-switcher-message wpglobus-switcher-error-message hidden",style:{}},""),r(f,{className:"wpglobus-switcher-panel__body"},(e=[{name:"switcher",title:"Languages",className:"wpglobus-panel-tab wpglobus-panel-tab-selector edit-post-sidebar__panel-tab"}],WPGlobusGutenberg.isEnabledTab("options")&&e.push({name:"options",title:"Options",className:"wpglobus-panel-tab wpglobus-panel-tab-options edit-post-sidebar__panel-tab"}),r(c,{name:"WPGlobusSwitcherTabPanel",className:"wpglobus-tab-panel",activeClass:"is-active",tabs:e},C)))));var e}})}function S(e){_=e=e||"flagLanguage"}function L(){return _}function O(){return a}function N(e){void 0===e&&(e=!0);var t=document.querySelectorAll(".wpglobus-switcher-components-radio-control .components-radio-control__input");if(0!=t.length)if(e){t.forEach(function(e){e.classList.add(e.value),e.classList.remove("wpglobus-switcher-pulsate-radio"),e.classList.add("wpglobus-switcher-pulsate-radio-off")});var n=document.querySelector(".wpglobus-switcher-components-radio-control ."+W);n.classList.remove("wpglobus-switcher-pulsate-radio-off"),n.classList.add("wpglobus-switcher-pulsate-radio")}else t.forEach(function(e){e.classList.remove("wpglobus-switcher-pulsate-radio"),e.classList.remove("wpglobus-switcher-pulsate-radio-off"),e.classList.add("wpglobus-switcher-pulsate-radio-on")})}function k(e,t){void 0===e||I.noticeOn||(I.noticeOn=!0,e.innerText=t,e.classList.remove("hidden"),setTimeout(function(){e.classList.add("hidden"),I.noticeOn=!1},3e3))}function T(e,t){t=t||"",x==(e=e||"")&&(N(!0),function(e,t){if(""==(e=e||""))return;var n={sender:"WPGlobusGutenberg",_action:"saveOption",is_admin:1};return n.counter=I.counter++,n.options={},n.options[e]=t,wp.ajax.post(WPGlobusGutenberg.wpglobusAjax,{data:n})}(e,t).then(function(e){"success"==e.result&&(S(t),B(WPGlobusGutenberg.options[x]=t))}).fail(function(e){var t=document.getElementsByClassName("wpglobus-switcher-error-message");void 0!==t[0]&&("error"==e.result?k(t[0],e.message):400==e.status&&k(t[0],"Error: "+e.status+" ("+e.statusText+")"),W=L());var n=document.getElementsByClassName("wpglobus-panel-tab-options");void 0!==n[0]&&-1!=n[0].classList.value.indexOf("is-active")&&n[0].click()}).always(function(){N(!1)}))}function E(e){return void 0===v[e]&&(e=_),v[e]}function B(n){void 0!==n&&void 0!==v[n]||(n=_),setTimeout(function(){var e=document.querySelector('[aria-label="'+O()+'"]');if(null!=e)if(void 0===e.dataset.status){var t=e.innerHTML;e.innerHTML=t+E(n),e.dataset.status="init"}else e.innerHTML=E(n),e.dataset.status="changed"},300)}function C(e){return"switcher"==e.name?r("div",{className:"wpglobus-tab-content wpglobus-selector-tab-content"},r(d,{className:"wpglobus-switcher-panel__notice",status:"informational",isDismissible:!1},i("Select language")),r("div",{className:"wpglobus-switcher-panel__switcher-box"},WPGlobusGutenberg.pagenow==WPGlobusGutenberg.postNewPage?r("div",{style:{marginBottom:"20px"},className:"wpglobus-switcher-panel__switcher-notice"},WPGlobusGutenberg.i18n.save_post):r("ul",{className:"language-list"},t.map(function(e){return r("li",{key:e,className:"language-item"},r("img",{style:{marginRight:"7px"},className:"wpglobus-switcher-panel__flag",height:"20px",width:"20px",src:o[e]}),r(w,{href:l[e],isSmall:!0,isPrimary:!0},n[e]))}))),r(w,{className:"wpglobus-switcher-panel__button-link wpglobus-switcher-panel__info",href:WPGlobusGutenberg.store_link,isLink:!0,target:"_blank"},i("WPGlobus Premium Add-ons")),r(w,{className:"wpglobus-switcher-panel__button-link wpglobus-switcher-panel__settings-link",href:WPGlobusGutenberg.block_editor_tab_url,isLink:!0},i("Settings"))):"options"==e.name?r("div",{className:"wpglobus-tab-content wpglobus-options-tab-content"},r(d,{className:"wpglobus-switcher-panel__notice",status:"informational",isDismissible:!1},i("Select type")),r(y,null)):void 0}}};WPGlobusGutenberg=D.extend({},WPGlobusGutenberg,I),WPGlobusGutenberg.init()});
|
1 |
+
"use strict";jQuery(document).ready(function(D){var A={counter:0,noticeOn:!1,initDone:!1,languageSelectorBoxDelta:0,oldLanguageSelector:!1,languageSelectorEnabled:!0,parseBool:function(e){return!/^(false|0)$/i.test(e)&&!!e},getCounter:function(){return A.counter},getOptionKey:function(e){return e=e||"",WPGlobusGutenberg.keyOption[e]},getOptions:function(){return WPGlobusGutenberg.options},isOldLanguageSelector:function(){return A.oldLanguageSelector},isPostDisabled:function(){return WPGlobusGutenberg.__post.disabled},isEnabledTab:function(e){void 0===e&&(e="options");var t=!1;return"options"==e&&A.parseBool(WPGlobusGutenberg.enabledOptionsTab)&&(t=!0),t},init:function(){WPGlobusGutenberg.yoastSeo=A.parseBool(WPGlobusGutenberg.yoastSeo),WPGlobusGutenberg.elementor=A.parseBool(WPGlobusGutenberg.elementor),A.isPostDisabled()||(A.initListeners(),A.initNotifications(),A.setTabs(),A.formHandler(),A.attachListeners())},initListeners:function(){WPGlobusGutenberg.yoastSeo&&1==D(".yoast.wpseo-metabox").length&&D(window).on("beforeunload",function(e){e.stopImmediatePropagation()})},formHandler:function(){var e=D(".metabox-base-form #referredby").attr("value");void 0!==e&&(e=-1==e.indexOf("language=en")?e+"&language="+WPGlobusGutenberg.language:e.replace("language=en","language="+WPGlobusGutenberg.language),D(".metabox-base-form #referredby").attr("value",e)),void 0!==(e=D('input[name="_wp_original_http_referer"]').attr("value"))&&(e=-1==e.indexOf("language=en")?e+"&language="+WPGlobusGutenberg.language:e.replace("language=en","language="+WPGlobusGutenberg.language),D('input[name="_wp_original_http_referer"]').attr("value",e))},initNotifications:function(){void 0!==wp.editPost&&void 0!==wp.plugins&&WPGlobusGutenberg.elementor&&"internal"==WPGlobusGutenberg.data.elementorCssPrintMethod&&wp.data.dispatch("core/notices").createNotice("error",WPGlobusGutenberg.i18n.elementorWarning,{id:"elementorcssprintmethodnotice",isDismissible:!0,actions:[{url:WPGlobusGutenberg.i18n.elementorActionLink,label:WPGlobusGutenberg.i18n.elementorActionLabel}]})},setTabs:function(){if(0!=WPGlobusGutenberg.tabs.length){A.oldLanguageSelector=!0;var t=setInterval(function(){var e=D(".edit-post-header__settings");1==e.length&&(e.before(WPGlobusGutenberg.tabs),clearInterval(t))},200)}else A.WPGlobusSwitcherPlugin()},setSelectorStatus:function(){if(A.isOldLanguageSelector()){D(".wpglobus-gutenberg-selector-box").css({opacity:"0.2"}).attr("onclick","return false;"),A.languageSelectorEnabled=!1;var e=setInterval(function(){if(0==D(".is-saving").length){if(clearInterval(e),WPGlobusGutenberg.pagenow==WPGlobusGutenberg.postNewPage&&-1!=location.pathname.indexOf(WPGlobusGutenberg.postEditPage))return WPGlobusGutenberg.pagenow=WPGlobusGutenberg.postEditPage,D(".wpglobus-gutenberg-selector-box").css({opacity:"1"}).attr("onclick",""),void A.reloadPage();A.languageSelectorEnabled=!0,D(".wpglobus-gutenberg-selector-box").css({opacity:"1"}).attr("onclick","")}},400)}},reloadPage:function(){D(".wpglobus-selector-grid").css({"grid-template-columns":"10% 90%"}),D(".wpglobus-gutenberg-selector-text").text(WPGlobusGutenberg.i18n.reload),function e(){D(".wpglobus-gutenberg-selector").fadeOut(500).fadeIn(500,e)}(),setTimeout(function(){location.reload()},500)},attachListeners:function(){A.isOldLanguageSelector()&&(D(document).on("mouseenter",".wpglobus-gutenberg-selector",function(e){A.languageSelectorEnabled&&(D(".wpglobus-gutenberg-selector-dropdown").css({display:"block"}),A.languageSelectorBoxDelta=e.screenY,D(".edit-post-header").css({"z-index":"100000"}),D(".wpglobus-gutenberg-selector-box").css({"z-index":"100001"}))}),D(document).on("mouseleave",".wpglobus-gutenberg-selector",function(e){0!=A.languageSelectorBoxDelta&&e.screenY-A.languageSelectorBoxDelta<=0&&(D(".wpglobus-gutenberg-selector-dropdown").css({display:"none"}),D(".edit-post-header").css({"z-index":"9989"}),D(".wpglobus-gutenberg-selector-box").css({"z-index":"100"}))}),D(document).on("mouseleave",".wpglobus-gutenberg-selector-dropdown",function(e){D(".wpglobus-gutenberg-selector-dropdown").css({display:"none"}),D(".edit-post-header").css({"z-index":"9989"}),D(".wpglobus-gutenberg-selector-box").css({"z-index":"10000"})}),D(document).on("click",".editor-post-save-draft",function(){A.setSelectorStatus()}),D(document).on("click",".editor-post-publish-button",function(){A.setSelectorStatus()}))},WPGlobusSwitcherPlugin:function(){if(void 0!==wp.editPost&&void 0!==wp.plugins){var e=WPGlobusGutenberg.language,t=WPGlobusCoreData.enabled_languages,n=WPGlobusCoreData.en_language_name,o=WPGlobusGutenberg.flags_url,s="WPGlobus Switcher",a=location.href,l={};for(var u in t)-1==a.indexOf("language="+e)?l[t[u]]=a+"&language="+t[u]:l[t[u]]=a.replace("language="+e,"language="+t[u]);var i=wp.i18n.__,r=wp.element.createElement,g=wp.element.Fragment,c=wp.components.TabPanel,b=wp.compose.withState,p=wp.components.RadioControl,d=wp.components.Notice,w=wp.components.Button,m=wp.editPost.PluginSidebarMoreMenuItem,G=wp.components.PanelBody,f=wp.editPost.PluginSidebar,h=wp.plugins.registerPlugin,P=D(".components-panel__header.edit-post-sidebar-header button.components-icon-button").eq(0),v={flagOnly:'<img height="20px" width="20px" src="'+WPGlobusGutenberg.flags_url[WPGlobusGutenberg.language]+'" />',flagLanguage:'<img height="20px" width="20px" src="'+WPGlobusGutenberg.flags_url[WPGlobusGutenberg.language]+'" /> '+WPGlobusAdmin.data.en_language_name[WPGlobusGutenberg.language],flagCode:'<img height="20px" width="20px" src="'+WPGlobusGutenberg.flags_url[WPGlobusGutenberg.language]+'" /> '+WPGlobusGutenberg.language,languageOnly:" "+WPGlobusAdmin.data.en_language_name[WPGlobusGutenberg.language],languageCode:" "+WPGlobusGutenberg.language},W="",_="",x=A.getOptionKey("switcherButtonType");S(WPGlobusGutenberg.options[x]),_=L(),D(document).on("click",P,function(){E()});var y=b({value:_})(function(e){e.value;var t=e.setState;return r(p,{label:"",help:"Select type of switcher language button.",selected:_,className:"wpglobus-switcher-components-radio-control",options:[{label:"Flag only",value:"flagOnly"},{label:"Flag with language",value:"flagLanguage"},{label:"Flag with language code",value:"flagCode"},{label:"Language only",value:"languageOnly"},{label:"Language code",value:"languageCode"}],onChange:function(e){t({value:_=e}),T(x,e)}})});h("wpglobus-switcher",{icon:"",render:function(){return E(),r(g,{},r(m,{target:"wpglobus-switcher-sidebar",icon:"admin-site"},i("WPGlobus")),r(f,{name:"wpglobus-switcher-sidebar",title:N(),className:"wpglobus-switcher-components-panel"},r("div",{className:"wpglobus-switcher-message wpglobus-switcher-error-message hidden",style:{}},""),r(G,{className:"wpglobus-switcher-panel__body"},(e=[{name:"switcher",title:"Languages",className:"wpglobus-panel-tab wpglobus-panel-tab-selector edit-post-sidebar__panel-tab"}],WPGlobusGutenberg.isEnabledTab("options")&&e.push({name:"options",title:"Options",className:"wpglobus-panel-tab wpglobus-panel-tab-options edit-post-sidebar__panel-tab"}),r(c,{name:"WPGlobusSwitcherTabPanel",className:"wpglobus-tab-panel",activeClass:"is-active",tabs:e},C)))));var e}})}function S(e){W=e=e||"flagLanguage"}function L(){return W}function N(){return s}function O(e){void 0===e&&(e=!0);var t=document.querySelectorAll(".wpglobus-switcher-components-radio-control .components-radio-control__input");if(0!=t.length)if(e){t.forEach(function(e){e.classList.add(e.value),e.classList.remove("wpglobus-switcher-pulsate-radio"),e.classList.add("wpglobus-switcher-pulsate-radio-off")});var n=document.querySelector(".wpglobus-switcher-components-radio-control ."+_);n.classList.remove("wpglobus-switcher-pulsate-radio-off"),n.classList.add("wpglobus-switcher-pulsate-radio")}else t.forEach(function(e){e.classList.remove("wpglobus-switcher-pulsate-radio"),e.classList.remove("wpglobus-switcher-pulsate-radio-off"),e.classList.add("wpglobus-switcher-pulsate-radio-on")})}function k(e,t){void 0===e||A.noticeOn||(A.noticeOn=!0,e.innerText=t,e.classList.remove("hidden"),setTimeout(function(){e.classList.add("hidden"),A.noticeOn=!1},3e3))}function T(e,t){t=t||"",x==(e=e||"")&&(O(!0),function(e,t){if(""==(e=e||""))return;var n={sender:"WPGlobusGutenberg",_action:"saveOption",is_admin:1};return n.counter=A.counter++,n.options={},n.options[e]=t,wp.ajax.post(WPGlobusGutenberg.wpglobusAjax,{data:n})}(e,t).then(function(e){"success"==e.result&&(S(t),E(WPGlobusGutenberg.options[x]=t))}).fail(function(e){var t=document.getElementsByClassName("wpglobus-switcher-error-message");void 0!==t[0]&&("error"==e.result?k(t[0],e.message):400==e.status&&k(t[0],"Error: "+e.status+" ("+e.statusText+")"),_=L());var n=document.getElementsByClassName("wpglobus-panel-tab-options");void 0!==n[0]&&-1!=n[0].classList.value.indexOf("is-active")&&n[0].click()}).always(function(){O(!1)}))}function B(e){return void 0===v[e]&&(e=W),v[e]}function E(n){void 0!==n&&void 0!==v[n]||(n=W),setTimeout(function(){var e=document.querySelector('[aria-label="'+N()+'"]');if(null!=e)if(void 0===e.dataset.status){var t=e.innerHTML;e.innerHTML=t+B(n),e.dataset.status="init"}else e.innerHTML=B(n),e.dataset.status="changed"},300)}function C(e){return"switcher"==e.name?r("div",{className:"wpglobus-tab-content wpglobus-selector-tab-content"},r(d,{className:"wpglobus-switcher-panel__notice",status:"informational",isDismissible:!1},i("Select language")),r("div",{className:"wpglobus-switcher-panel__switcher-box"},WPGlobusGutenberg.pagenow==WPGlobusGutenberg.postNewPage?r("div",{style:{marginBottom:"20px"},className:"wpglobus-switcher-panel__switcher-notice"},WPGlobusGutenberg.i18n.save_post):r("ul",{className:"language-list"},t.map(function(e){return r("li",{key:e,className:"language-item"},r("img",{style:{marginRight:"7px"},className:"wpglobus-switcher-panel__flag",height:"20px",width:"20px",src:o[e]}),r(w,{href:l[e],isSmall:!0,isPrimary:!0},n[e]))}))),r(w,{className:"wpglobus-switcher-panel__button-link wpglobus-switcher-panel__info",href:WPGlobusGutenberg.store_link,isLink:!0,target:"_blank"},i("WPGlobus Premium Add-ons")),r(w,{className:"wpglobus-switcher-panel__button-link wpglobus-switcher-panel__settings-link",href:WPGlobusGutenberg.block_editor_tab_url,isLink:!0},i("Settings"))):"options"==e.name?r("div",{className:"wpglobus-tab-content wpglobus-options-tab-content"},r(d,{className:"wpglobus-switcher-panel__notice",status:"informational",isDismissible:!1},i("Select type")),r(y,null)):void 0}}};WPGlobusGutenberg=D.extend({},WPGlobusGutenberg,A),WPGlobusGutenberg.init()});
|
includes/builders/gutenberg/class-wpglobus-gutenberg.php
CHANGED
@@ -392,6 +392,13 @@ class WPGlobus_Gutenberg extends WPGlobus_Builder {
|
|
392 |
$i18n['reload'] = esc_html__( 'Page is being reloaded. Please wait...', 'wpglobus' );
|
393 |
$i18n['save_post'] = esc_html__( 'Before switching the language, please save draft or publish, then reload page.', 'wpglobus' );
|
394 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
395 |
/**
|
396 |
* We have Gutenberg in core since WP 5.0.
|
397 |
*
|
@@ -411,7 +418,29 @@ class WPGlobus_Gutenberg extends WPGlobus_Builder {
|
|
411 |
if ( defined( 'WPSEO_VERSION' ) ) {
|
412 |
$yoast_seo = true;
|
413 |
}
|
414 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
415 |
/**
|
416 |
* Block editor tab URL.
|
417 |
*
|
@@ -487,6 +516,7 @@ class WPGlobus_Gutenberg extends WPGlobus_Builder {
|
|
487 |
'defaultLanguage' => WPGlobus::Config()->default_language,
|
488 |
'i18n' => $i18n,
|
489 |
'yoastSeo' => $yoast_seo,
|
|
|
490 |
'flags_url' => $flags_url,
|
491 |
'store_link' => WPGlobus::URL_WPGLOBUS_SHOP,
|
492 |
'__post' => $__post,
|
@@ -494,7 +524,8 @@ class WPGlobus_Gutenberg extends WPGlobus_Builder {
|
|
494 |
'disabled_entities' => WPGlobus::Config()->disabled_entities,
|
495 |
'options' => $options,
|
496 |
'enabledOptionsTab' => true,
|
497 |
-
'keyOption' => $key_option
|
|
|
498 |
);
|
499 |
|
500 |
/**
|
392 |
$i18n['reload'] = esc_html__( 'Page is being reloaded. Please wait...', 'wpglobus' );
|
393 |
$i18n['save_post'] = esc_html__( 'Before switching the language, please save draft or publish, then reload page.', 'wpglobus' );
|
394 |
|
395 |
+
/**
|
396 |
+
* Extra data.
|
397 |
+
*
|
398 |
+
* @since 2.4.11
|
399 |
+
*/
|
400 |
+
$__data = array();
|
401 |
+
|
402 |
/**
|
403 |
* We have Gutenberg in core since WP 5.0.
|
404 |
*
|
418 |
if ( defined( 'WPSEO_VERSION' ) ) {
|
419 |
$yoast_seo = true;
|
420 |
}
|
421 |
+
|
422 |
+
/**
|
423 |
+
* Check for Elementor.
|
424 |
+
*
|
425 |
+
* @since 2.4.11
|
426 |
+
*/
|
427 |
+
$elementor = false;
|
428 |
+
if ( defined( 'ELEMENTOR_VERSION' ) ) {
|
429 |
+
$elementor = true;
|
430 |
+
$__data['elementorVersion'] = ELEMENTOR_VERSION;
|
431 |
+
$__data['elementorCssPrintMethod'] = get_option('elementor_css_print_method', 'external');
|
432 |
+
$_url = add_query_arg(
|
433 |
+
array(
|
434 |
+
'page' => 'elementor#tab-advanced',
|
435 |
+
),
|
436 |
+
admin_url( 'admin.php' )
|
437 |
+
);
|
438 |
+
$i18n['elementorWarning'] = esc_html__( 'WPGlobus provides multilingual support for Elementor only when the option `CSS Print Method` is set to `External File`.', 'wpglobus' );
|
439 |
+
$i18n['elementorActionLabel'] = esc_html__( 'Open Elementor Settings page', 'wpglobus' );
|
440 |
+
$i18n['elementorActionLink'] = $_url;
|
441 |
+
}
|
442 |
+
|
443 |
+
|
444 |
/**
|
445 |
* Block editor tab URL.
|
446 |
*
|
516 |
'defaultLanguage' => WPGlobus::Config()->default_language,
|
517 |
'i18n' => $i18n,
|
518 |
'yoastSeo' => $yoast_seo,
|
519 |
+
'elementor' => $elementor,
|
520 |
'flags_url' => $flags_url,
|
521 |
'store_link' => WPGlobus::URL_WPGLOBUS_SHOP,
|
522 |
'__post' => $__post,
|
524 |
'disabled_entities' => WPGlobus::Config()->disabled_entities,
|
525 |
'options' => $options,
|
526 |
'enabledOptionsTab' => true,
|
527 |
+
'keyOption' => $key_option,
|
528 |
+
'data' => $__data
|
529 |
);
|
530 |
|
531 |
/**
|
languages/wpglobus-ar.po
CHANGED
@@ -304,7 +304,7 @@ msgid "Save & Reload"
|
|
304 |
msgstr ""
|
305 |
|
306 |
#: includes/admin/class-wpglobus-customize-options.php:553,
|
307 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
308 |
#: includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
|
309 |
msgid "WPGlobus"
|
310 |
msgstr "WPGlobus"
|
@@ -877,6 +877,16 @@ msgid ""
|
|
877 |
"page."
|
878 |
msgstr ""
|
879 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
880 |
#: includes/class-wpglobus-widget.php:27
|
881 |
msgid "WPGlobus widget"
|
882 |
msgstr ""
|
304 |
msgstr ""
|
305 |
|
306 |
#: includes/admin/class-wpglobus-customize-options.php:553,
|
307 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:569,
|
308 |
#: includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
|
309 |
msgid "WPGlobus"
|
310 |
msgstr "WPGlobus"
|
877 |
"page."
|
878 |
msgstr ""
|
879 |
|
880 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:438
|
881 |
+
msgid ""
|
882 |
+
"WPGlobus provides multilingual support for Elementor only when the option "
|
883 |
+
"`CSS Print Method` is set to `External File`."
|
884 |
+
msgstr ""
|
885 |
+
|
886 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:439
|
887 |
+
msgid "Open Elementor Settings page"
|
888 |
+
msgstr ""
|
889 |
+
|
890 |
#: includes/class-wpglobus-widget.php:27
|
891 |
msgid "WPGlobus widget"
|
892 |
msgstr ""
|
languages/wpglobus-be.po
CHANGED
@@ -326,7 +326,7 @@ msgid "Save & Reload"
|
|
326 |
msgstr "Сохранить и перезагрузить"
|
327 |
|
328 |
#: includes/admin/class-wpglobus-customize-options.php:553,
|
329 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
330 |
#: includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
|
331 |
msgid "WPGlobus"
|
332 |
msgstr "WPGlobus"
|
@@ -925,6 +925,16 @@ msgid ""
|
|
925 |
"page."
|
926 |
msgstr ""
|
927 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
928 |
#: includes/class-wpglobus-widget.php:27
|
929 |
msgid "WPGlobus widget"
|
930 |
msgstr "WPGlobus виджет"
|
326 |
msgstr "Сохранить и перезагрузить"
|
327 |
|
328 |
#: includes/admin/class-wpglobus-customize-options.php:553,
|
329 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:569,
|
330 |
#: includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
|
331 |
msgid "WPGlobus"
|
332 |
msgstr "WPGlobus"
|
925 |
"page."
|
926 |
msgstr ""
|
927 |
|
928 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:438
|
929 |
+
msgid ""
|
930 |
+
"WPGlobus provides multilingual support for Elementor only when the option "
|
931 |
+
"`CSS Print Method` is set to `External File`."
|
932 |
+
msgstr ""
|
933 |
+
|
934 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:439
|
935 |
+
msgid "Open Elementor Settings page"
|
936 |
+
msgstr ""
|
937 |
+
|
938 |
#: includes/class-wpglobus-widget.php:27
|
939 |
msgid "WPGlobus widget"
|
940 |
msgstr "WPGlobus виджет"
|
languages/wpglobus-bg_BG.po
CHANGED
@@ -280,7 +280,7 @@ msgid "Save & Reload"
|
|
280 |
msgstr ""
|
281 |
|
282 |
#: includes/admin/class-wpglobus-customize-options.php:553,
|
283 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
284 |
#: includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
|
285 |
msgid "WPGlobus"
|
286 |
msgstr ""
|
@@ -853,6 +853,16 @@ msgid ""
|
|
853 |
"page."
|
854 |
msgstr ""
|
855 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
856 |
#: includes/class-wpglobus-widget.php:27
|
857 |
msgid "WPGlobus widget"
|
858 |
msgstr ""
|
280 |
msgstr ""
|
281 |
|
282 |
#: includes/admin/class-wpglobus-customize-options.php:553,
|
283 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:569,
|
284 |
#: includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
|
285 |
msgid "WPGlobus"
|
286 |
msgstr ""
|
853 |
"page."
|
854 |
msgstr ""
|
855 |
|
856 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:438
|
857 |
+
msgid ""
|
858 |
+
"WPGlobus provides multilingual support for Elementor only when the option "
|
859 |
+
"`CSS Print Method` is set to `External File`."
|
860 |
+
msgstr ""
|
861 |
+
|
862 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:439
|
863 |
+
msgid "Open Elementor Settings page"
|
864 |
+
msgstr ""
|
865 |
+
|
866 |
#: includes/class-wpglobus-widget.php:27
|
867 |
msgid "WPGlobus widget"
|
868 |
msgstr ""
|
languages/wpglobus-de_CH.po
CHANGED
@@ -300,7 +300,7 @@ msgid "Save & Reload"
|
|
300 |
msgstr ""
|
301 |
|
302 |
#: includes/admin/class-wpglobus-customize-options.php:553,
|
303 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
304 |
#: includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
|
305 |
msgid "WPGlobus"
|
306 |
msgstr "WPGlobus"
|
@@ -889,6 +889,16 @@ msgid ""
|
|
889 |
"page."
|
890 |
msgstr ""
|
891 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
892 |
#: includes/class-wpglobus-widget.php:27
|
893 |
msgid "WPGlobus widget"
|
894 |
msgstr "WPGlobus widget"
|
300 |
msgstr ""
|
301 |
|
302 |
#: includes/admin/class-wpglobus-customize-options.php:553,
|
303 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:569,
|
304 |
#: includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
|
305 |
msgid "WPGlobus"
|
306 |
msgstr "WPGlobus"
|
889 |
"page."
|
890 |
msgstr ""
|
891 |
|
892 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:438
|
893 |
+
msgid ""
|
894 |
+
"WPGlobus provides multilingual support for Elementor only when the option "
|
895 |
+
"`CSS Print Method` is set to `External File`."
|
896 |
+
msgstr ""
|
897 |
+
|
898 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:439
|
899 |
+
msgid "Open Elementor Settings page"
|
900 |
+
msgstr ""
|
901 |
+
|
902 |
#: includes/class-wpglobus-widget.php:27
|
903 |
msgid "WPGlobus widget"
|
904 |
msgstr "WPGlobus widget"
|
languages/wpglobus-de_DE.po
CHANGED
@@ -300,7 +300,7 @@ msgid "Save & Reload"
|
|
300 |
msgstr ""
|
301 |
|
302 |
#: includes/admin/class-wpglobus-customize-options.php:553,
|
303 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
304 |
#: includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
|
305 |
msgid "WPGlobus"
|
306 |
msgstr "WPGlobus"
|
@@ -890,6 +890,16 @@ msgid ""
|
|
890 |
"page."
|
891 |
msgstr ""
|
892 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
893 |
#: includes/class-wpglobus-widget.php:27
|
894 |
msgid "WPGlobus widget"
|
895 |
msgstr "WPGlobus widget"
|
300 |
msgstr ""
|
301 |
|
302 |
#: includes/admin/class-wpglobus-customize-options.php:553,
|
303 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:569,
|
304 |
#: includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
|
305 |
msgid "WPGlobus"
|
306 |
msgstr "WPGlobus"
|
890 |
"page."
|
891 |
msgstr ""
|
892 |
|
893 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:438
|
894 |
+
msgid ""
|
895 |
+
"WPGlobus provides multilingual support for Elementor only when the option "
|
896 |
+
"`CSS Print Method` is set to `External File`."
|
897 |
+
msgstr ""
|
898 |
+
|
899 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:439
|
900 |
+
msgid "Open Elementor Settings page"
|
901 |
+
msgstr ""
|
902 |
+
|
903 |
#: includes/class-wpglobus-widget.php:27
|
904 |
msgid "WPGlobus widget"
|
905 |
msgstr "WPGlobus widget"
|
languages/wpglobus-el.po
CHANGED
@@ -281,7 +281,7 @@ msgid "Save & Reload"
|
|
281 |
msgstr ""
|
282 |
|
283 |
#: includes/admin/class-wpglobus-customize-options.php:553,
|
284 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
285 |
#: includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
|
286 |
msgid "WPGlobus"
|
287 |
msgstr "WPGlobus"
|
@@ -854,6 +854,16 @@ msgid ""
|
|
854 |
"page."
|
855 |
msgstr ""
|
856 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
857 |
#: includes/class-wpglobus-widget.php:27
|
858 |
msgid "WPGlobus widget"
|
859 |
msgstr ""
|
281 |
msgstr ""
|
282 |
|
283 |
#: includes/admin/class-wpglobus-customize-options.php:553,
|
284 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:569,
|
285 |
#: includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
|
286 |
msgid "WPGlobus"
|
287 |
msgstr "WPGlobus"
|
854 |
"page."
|
855 |
msgstr ""
|
856 |
|
857 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:438
|
858 |
+
msgid ""
|
859 |
+
"WPGlobus provides multilingual support for Elementor only when the option "
|
860 |
+
"`CSS Print Method` is set to `External File`."
|
861 |
+
msgstr ""
|
862 |
+
|
863 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:439
|
864 |
+
msgid "Open Elementor Settings page"
|
865 |
+
msgstr ""
|
866 |
+
|
867 |
#: includes/class-wpglobus-widget.php:27
|
868 |
msgid "WPGlobus widget"
|
869 |
msgstr ""
|
languages/wpglobus-en_AU.po
CHANGED
@@ -324,7 +324,7 @@ msgid "Save & Reload"
|
|
324 |
msgstr "Save & Reload"
|
325 |
|
326 |
#: includes/admin/class-wpglobus-customize-options.php:553,
|
327 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
328 |
#: includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
|
329 |
msgid "WPGlobus"
|
330 |
msgstr "WPGlobus"
|
@@ -926,6 +926,16 @@ msgid ""
|
|
926 |
"page."
|
927 |
msgstr ""
|
928 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
929 |
#: includes/class-wpglobus-widget.php:27
|
930 |
msgid "WPGlobus widget"
|
931 |
msgstr "WPGlobus widget"
|
324 |
msgstr "Save & Reload"
|
325 |
|
326 |
#: includes/admin/class-wpglobus-customize-options.php:553,
|
327 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:569,
|
328 |
#: includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
|
329 |
msgid "WPGlobus"
|
330 |
msgstr "WPGlobus"
|
926 |
"page."
|
927 |
msgstr ""
|
928 |
|
929 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:438
|
930 |
+
msgid ""
|
931 |
+
"WPGlobus provides multilingual support for Elementor only when the option "
|
932 |
+
"`CSS Print Method` is set to `External File`."
|
933 |
+
msgstr ""
|
934 |
+
|
935 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:439
|
936 |
+
msgid "Open Elementor Settings page"
|
937 |
+
msgstr ""
|
938 |
+
|
939 |
#: includes/class-wpglobus-widget.php:27
|
940 |
msgid "WPGlobus widget"
|
941 |
msgstr "WPGlobus widget"
|
languages/wpglobus-en_CA.po
CHANGED
@@ -323,7 +323,7 @@ msgid "Save & Reload"
|
|
323 |
msgstr "Save & Reload"
|
324 |
|
325 |
#: includes/admin/class-wpglobus-customize-options.php:553,
|
326 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
327 |
#: includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
|
328 |
msgid "WPGlobus"
|
329 |
msgstr "WPGlobus"
|
@@ -925,6 +925,16 @@ msgid ""
|
|
925 |
"page."
|
926 |
msgstr ""
|
927 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
928 |
#: includes/class-wpglobus-widget.php:27
|
929 |
msgid "WPGlobus widget"
|
930 |
msgstr "WPGlobus widget"
|
323 |
msgstr "Save & Reload"
|
324 |
|
325 |
#: includes/admin/class-wpglobus-customize-options.php:553,
|
326 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:569,
|
327 |
#: includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
|
328 |
msgid "WPGlobus"
|
329 |
msgstr "WPGlobus"
|
925 |
"page."
|
926 |
msgstr ""
|
927 |
|
928 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:438
|
929 |
+
msgid ""
|
930 |
+
"WPGlobus provides multilingual support for Elementor only when the option "
|
931 |
+
"`CSS Print Method` is set to `External File`."
|
932 |
+
msgstr ""
|
933 |
+
|
934 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:439
|
935 |
+
msgid "Open Elementor Settings page"
|
936 |
+
msgstr ""
|
937 |
+
|
938 |
#: includes/class-wpglobus-widget.php:27
|
939 |
msgid "WPGlobus widget"
|
940 |
msgstr "WPGlobus widget"
|
languages/wpglobus-en_GB.po
CHANGED
@@ -324,7 +324,7 @@ msgid "Save & Reload"
|
|
324 |
msgstr "Save & Reload"
|
325 |
|
326 |
#: includes/admin/class-wpglobus-customize-options.php:553,
|
327 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
328 |
#: includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
|
329 |
msgid "WPGlobus"
|
330 |
msgstr "WPGlobus"
|
@@ -926,6 +926,16 @@ msgid ""
|
|
926 |
"page."
|
927 |
msgstr ""
|
928 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
929 |
#: includes/class-wpglobus-widget.php:27
|
930 |
msgid "WPGlobus widget"
|
931 |
msgstr "WPGlobus widget"
|
324 |
msgstr "Save & Reload"
|
325 |
|
326 |
#: includes/admin/class-wpglobus-customize-options.php:553,
|
327 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:569,
|
328 |
#: includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
|
329 |
msgid "WPGlobus"
|
330 |
msgstr "WPGlobus"
|
926 |
"page."
|
927 |
msgstr ""
|
928 |
|
929 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:438
|
930 |
+
msgid ""
|
931 |
+
"WPGlobus provides multilingual support for Elementor only when the option "
|
932 |
+
"`CSS Print Method` is set to `External File`."
|
933 |
+
msgstr ""
|
934 |
+
|
935 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:439
|
936 |
+
msgid "Open Elementor Settings page"
|
937 |
+
msgstr ""
|
938 |
+
|
939 |
#: includes/class-wpglobus-widget.php:27
|
940 |
msgid "WPGlobus widget"
|
941 |
msgstr "WPGlobus widget"
|
languages/wpglobus-en_NZ.po
CHANGED
@@ -323,7 +323,7 @@ msgid "Save & Reload"
|
|
323 |
msgstr "Save & Reload"
|
324 |
|
325 |
#: includes/admin/class-wpglobus-customize-options.php:553,
|
326 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
327 |
#: includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
|
328 |
msgid "WPGlobus"
|
329 |
msgstr "WPGlobus"
|
@@ -925,6 +925,16 @@ msgid ""
|
|
925 |
"page."
|
926 |
msgstr ""
|
927 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
928 |
#: includes/class-wpglobus-widget.php:27
|
929 |
msgid "WPGlobus widget"
|
930 |
msgstr "WPGlobus widget"
|
323 |
msgstr "Save & Reload"
|
324 |
|
325 |
#: includes/admin/class-wpglobus-customize-options.php:553,
|
326 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:569,
|
327 |
#: includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
|
328 |
msgid "WPGlobus"
|
329 |
msgstr "WPGlobus"
|
925 |
"page."
|
926 |
msgstr ""
|
927 |
|
928 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:438
|
929 |
+
msgid ""
|
930 |
+
"WPGlobus provides multilingual support for Elementor only when the option "
|
931 |
+
"`CSS Print Method` is set to `External File`."
|
932 |
+
msgstr ""
|
933 |
+
|
934 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:439
|
935 |
+
msgid "Open Elementor Settings page"
|
936 |
+
msgstr ""
|
937 |
+
|
938 |
#: includes/class-wpglobus-widget.php:27
|
939 |
msgid "WPGlobus widget"
|
940 |
msgstr "WPGlobus widget"
|
languages/wpglobus-en_US.po
CHANGED
@@ -322,7 +322,7 @@ msgid "Save & Reload"
|
|
322 |
msgstr "Save & Reload"
|
323 |
|
324 |
#: includes/admin/class-wpglobus-customize-options.php:553,
|
325 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
326 |
#: includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
|
327 |
msgid "WPGlobus"
|
328 |
msgstr "WPGlobus"
|
@@ -933,6 +933,16 @@ msgstr ""
|
|
933 |
"Before switching the language, please save draft or publish, then reload "
|
934 |
"page."
|
935 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
936 |
#: includes/class-wpglobus-widget.php:27
|
937 |
msgid "WPGlobus widget"
|
938 |
msgstr "WPGlobus widget"
|
322 |
msgstr "Save & Reload"
|
323 |
|
324 |
#: includes/admin/class-wpglobus-customize-options.php:553,
|
325 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:569,
|
326 |
#: includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
|
327 |
msgid "WPGlobus"
|
328 |
msgstr "WPGlobus"
|
933 |
"Before switching the language, please save draft or publish, then reload "
|
934 |
"page."
|
935 |
|
936 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:438
|
937 |
+
msgid ""
|
938 |
+
"WPGlobus provides multilingual support for Elementor only when the option "
|
939 |
+
"`CSS Print Method` is set to `External File`."
|
940 |
+
msgstr ""
|
941 |
+
|
942 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:439
|
943 |
+
msgid "Open Elementor Settings page"
|
944 |
+
msgstr ""
|
945 |
+
|
946 |
#: includes/class-wpglobus-widget.php:27
|
947 |
msgid "WPGlobus widget"
|
948 |
msgstr "WPGlobus widget"
|
languages/wpglobus-en_ZA.po
CHANGED
@@ -323,7 +323,7 @@ msgid "Save & Reload"
|
|
323 |
msgstr "Save & Reload"
|
324 |
|
325 |
#: includes/admin/class-wpglobus-customize-options.php:553,
|
326 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
327 |
#: includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
|
328 |
msgid "WPGlobus"
|
329 |
msgstr "WPGlobus"
|
@@ -925,6 +925,16 @@ msgid ""
|
|
925 |
"page."
|
926 |
msgstr ""
|
927 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
928 |
#: includes/class-wpglobus-widget.php:27
|
929 |
msgid "WPGlobus widget"
|
930 |
msgstr "WPGlobus widget"
|
323 |
msgstr "Save & Reload"
|
324 |
|
325 |
#: includes/admin/class-wpglobus-customize-options.php:553,
|
326 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:569,
|
327 |
#: includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
|
328 |
msgid "WPGlobus"
|
329 |
msgstr "WPGlobus"
|
925 |
"page."
|
926 |
msgstr ""
|
927 |
|
928 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:438
|
929 |
+
msgid ""
|
930 |
+
"WPGlobus provides multilingual support for Elementor only when the option "
|
931 |
+
"`CSS Print Method` is set to `External File`."
|
932 |
+
msgstr ""
|
933 |
+
|
934 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:439
|
935 |
+
msgid "Open Elementor Settings page"
|
936 |
+
msgstr ""
|
937 |
+
|
938 |
#: includes/class-wpglobus-widget.php:27
|
939 |
msgid "WPGlobus widget"
|
940 |
msgstr "WPGlobus widget"
|
languages/wpglobus-es_AR.po
CHANGED
@@ -297,7 +297,7 @@ msgid "Save & Reload"
|
|
297 |
msgstr ""
|
298 |
|
299 |
#: includes/admin/class-wpglobus-customize-options.php:553,
|
300 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
301 |
#: includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
|
302 |
msgid "WPGlobus"
|
303 |
msgstr ""
|
@@ -888,6 +888,16 @@ msgid ""
|
|
888 |
"page."
|
889 |
msgstr ""
|
890 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
891 |
#: includes/class-wpglobus-widget.php:27
|
892 |
msgid "WPGlobus widget"
|
893 |
msgstr "WPGlobus widget"
|
297 |
msgstr ""
|
298 |
|
299 |
#: includes/admin/class-wpglobus-customize-options.php:553,
|
300 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:569,
|
301 |
#: includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
|
302 |
msgid "WPGlobus"
|
303 |
msgstr ""
|
888 |
"page."
|
889 |
msgstr ""
|
890 |
|
891 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:438
|
892 |
+
msgid ""
|
893 |
+
"WPGlobus provides multilingual support for Elementor only when the option "
|
894 |
+
"`CSS Print Method` is set to `External File`."
|
895 |
+
msgstr ""
|
896 |
+
|
897 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:439
|
898 |
+
msgid "Open Elementor Settings page"
|
899 |
+
msgstr ""
|
900 |
+
|
901 |
#: includes/class-wpglobus-widget.php:27
|
902 |
msgid "WPGlobus widget"
|
903 |
msgstr "WPGlobus widget"
|
languages/wpglobus-es_CL.po
CHANGED
@@ -297,7 +297,7 @@ msgid "Save & Reload"
|
|
297 |
msgstr ""
|
298 |
|
299 |
#: includes/admin/class-wpglobus-customize-options.php:553,
|
300 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
301 |
#: includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
|
302 |
msgid "WPGlobus"
|
303 |
msgstr ""
|
@@ -888,6 +888,16 @@ msgid ""
|
|
888 |
"page."
|
889 |
msgstr ""
|
890 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
891 |
#: includes/class-wpglobus-widget.php:27
|
892 |
msgid "WPGlobus widget"
|
893 |
msgstr "WPGlobus widget"
|
297 |
msgstr ""
|
298 |
|
299 |
#: includes/admin/class-wpglobus-customize-options.php:553,
|
300 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:569,
|
301 |
#: includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
|
302 |
msgid "WPGlobus"
|
303 |
msgstr ""
|
888 |
"page."
|
889 |
msgstr ""
|
890 |
|
891 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:438
|
892 |
+
msgid ""
|
893 |
+
"WPGlobus provides multilingual support for Elementor only when the option "
|
894 |
+
"`CSS Print Method` is set to `External File`."
|
895 |
+
msgstr ""
|
896 |
+
|
897 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:439
|
898 |
+
msgid "Open Elementor Settings page"
|
899 |
+
msgstr ""
|
900 |
+
|
901 |
#: includes/class-wpglobus-widget.php:27
|
902 |
msgid "WPGlobus widget"
|
903 |
msgstr "WPGlobus widget"
|
languages/wpglobus-es_CO.po
CHANGED
@@ -297,7 +297,7 @@ msgid "Save & Reload"
|
|
297 |
msgstr ""
|
298 |
|
299 |
#: includes/admin/class-wpglobus-customize-options.php:553,
|
300 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
301 |
#: includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
|
302 |
msgid "WPGlobus"
|
303 |
msgstr ""
|
@@ -888,6 +888,16 @@ msgid ""
|
|
888 |
"page."
|
889 |
msgstr ""
|
890 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
891 |
#: includes/class-wpglobus-widget.php:27
|
892 |
msgid "WPGlobus widget"
|
893 |
msgstr "WPGlobus widget"
|
297 |
msgstr ""
|
298 |
|
299 |
#: includes/admin/class-wpglobus-customize-options.php:553,
|
300 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:569,
|
301 |
#: includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
|
302 |
msgid "WPGlobus"
|
303 |
msgstr ""
|
888 |
"page."
|
889 |
msgstr ""
|
890 |
|
891 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:438
|
892 |
+
msgid ""
|
893 |
+
"WPGlobus provides multilingual support for Elementor only when the option "
|
894 |
+
"`CSS Print Method` is set to `External File`."
|
895 |
+
msgstr ""
|
896 |
+
|
897 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:439
|
898 |
+
msgid "Open Elementor Settings page"
|
899 |
+
msgstr ""
|
900 |
+
|
901 |
#: includes/class-wpglobus-widget.php:27
|
902 |
msgid "WPGlobus widget"
|
903 |
msgstr "WPGlobus widget"
|
languages/wpglobus-es_CR.po
CHANGED
@@ -297,7 +297,7 @@ msgid "Save & Reload"
|
|
297 |
msgstr ""
|
298 |
|
299 |
#: includes/admin/class-wpglobus-customize-options.php:553,
|
300 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
301 |
#: includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
|
302 |
msgid "WPGlobus"
|
303 |
msgstr ""
|
@@ -888,6 +888,16 @@ msgid ""
|
|
888 |
"page."
|
889 |
msgstr ""
|
890 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
891 |
#: includes/class-wpglobus-widget.php:27
|
892 |
msgid "WPGlobus widget"
|
893 |
msgstr "WPGlobus widget"
|
297 |
msgstr ""
|
298 |
|
299 |
#: includes/admin/class-wpglobus-customize-options.php:553,
|
300 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:569,
|
301 |
#: includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
|
302 |
msgid "WPGlobus"
|
303 |
msgstr ""
|
888 |
"page."
|
889 |
msgstr ""
|
890 |
|
891 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:438
|
892 |
+
msgid ""
|
893 |
+
"WPGlobus provides multilingual support for Elementor only when the option "
|
894 |
+
"`CSS Print Method` is set to `External File`."
|
895 |
+
msgstr ""
|
896 |
+
|
897 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:439
|
898 |
+
msgid "Open Elementor Settings page"
|
899 |
+
msgstr ""
|
900 |
+
|
901 |
#: includes/class-wpglobus-widget.php:27
|
902 |
msgid "WPGlobus widget"
|
903 |
msgstr "WPGlobus widget"
|
languages/wpglobus-es_ES.po
CHANGED
@@ -297,7 +297,7 @@ msgid "Save & Reload"
|
|
297 |
msgstr ""
|
298 |
|
299 |
#: includes/admin/class-wpglobus-customize-options.php:553,
|
300 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
301 |
#: includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
|
302 |
msgid "WPGlobus"
|
303 |
msgstr ""
|
@@ -888,6 +888,16 @@ msgid ""
|
|
888 |
"page."
|
889 |
msgstr ""
|
890 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
891 |
#: includes/class-wpglobus-widget.php:27
|
892 |
msgid "WPGlobus widget"
|
893 |
msgstr "WPGlobus widget"
|
297 |
msgstr ""
|
298 |
|
299 |
#: includes/admin/class-wpglobus-customize-options.php:553,
|
300 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:569,
|
301 |
#: includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
|
302 |
msgid "WPGlobus"
|
303 |
msgstr ""
|
888 |
"page."
|
889 |
msgstr ""
|
890 |
|
891 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:438
|
892 |
+
msgid ""
|
893 |
+
"WPGlobus provides multilingual support for Elementor only when the option "
|
894 |
+
"`CSS Print Method` is set to `External File`."
|
895 |
+
msgstr ""
|
896 |
+
|
897 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:439
|
898 |
+
msgid "Open Elementor Settings page"
|
899 |
+
msgstr ""
|
900 |
+
|
901 |
#: includes/class-wpglobus-widget.php:27
|
902 |
msgid "WPGlobus widget"
|
903 |
msgstr "WPGlobus widget"
|
languages/wpglobus-es_GT.po
CHANGED
@@ -297,7 +297,7 @@ msgid "Save & Reload"
|
|
297 |
msgstr ""
|
298 |
|
299 |
#: includes/admin/class-wpglobus-customize-options.php:553,
|
300 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
301 |
#: includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
|
302 |
msgid "WPGlobus"
|
303 |
msgstr ""
|
@@ -888,6 +888,16 @@ msgid ""
|
|
888 |
"page."
|
889 |
msgstr ""
|
890 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
891 |
#: includes/class-wpglobus-widget.php:27
|
892 |
msgid "WPGlobus widget"
|
893 |
msgstr "WPGlobus widget"
|
297 |
msgstr ""
|
298 |
|
299 |
#: includes/admin/class-wpglobus-customize-options.php:553,
|
300 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:569,
|
301 |
#: includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
|
302 |
msgid "WPGlobus"
|
303 |
msgstr ""
|
888 |
"page."
|
889 |
msgstr ""
|
890 |
|
891 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:438
|
892 |
+
msgid ""
|
893 |
+
"WPGlobus provides multilingual support for Elementor only when the option "
|
894 |
+
"`CSS Print Method` is set to `External File`."
|
895 |
+
msgstr ""
|
896 |
+
|
897 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:439
|
898 |
+
msgid "Open Elementor Settings page"
|
899 |
+
msgstr ""
|
900 |
+
|
901 |
#: includes/class-wpglobus-widget.php:27
|
902 |
msgid "WPGlobus widget"
|
903 |
msgstr "WPGlobus widget"
|
languages/wpglobus-es_MX.po
CHANGED
@@ -297,7 +297,7 @@ msgid "Save & Reload"
|
|
297 |
msgstr ""
|
298 |
|
299 |
#: includes/admin/class-wpglobus-customize-options.php:553,
|
300 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
301 |
#: includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
|
302 |
msgid "WPGlobus"
|
303 |
msgstr ""
|
@@ -888,6 +888,16 @@ msgid ""
|
|
888 |
"page."
|
889 |
msgstr ""
|
890 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
891 |
#: includes/class-wpglobus-widget.php:27
|
892 |
msgid "WPGlobus widget"
|
893 |
msgstr "WPGlobus widget"
|
297 |
msgstr ""
|
298 |
|
299 |
#: includes/admin/class-wpglobus-customize-options.php:553,
|
300 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:569,
|
301 |
#: includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
|
302 |
msgid "WPGlobus"
|
303 |
msgstr ""
|
888 |
"page."
|
889 |
msgstr ""
|
890 |
|
891 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:438
|
892 |
+
msgid ""
|
893 |
+
"WPGlobus provides multilingual support for Elementor only when the option "
|
894 |
+
"`CSS Print Method` is set to `External File`."
|
895 |
+
msgstr ""
|
896 |
+
|
897 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:439
|
898 |
+
msgid "Open Elementor Settings page"
|
899 |
+
msgstr ""
|
900 |
+
|
901 |
#: includes/class-wpglobus-widget.php:27
|
902 |
msgid "WPGlobus widget"
|
903 |
msgstr "WPGlobus widget"
|
languages/wpglobus-es_PE.po
CHANGED
@@ -297,7 +297,7 @@ msgid "Save & Reload"
|
|
297 |
msgstr ""
|
298 |
|
299 |
#: includes/admin/class-wpglobus-customize-options.php:553,
|
300 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
301 |
#: includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
|
302 |
msgid "WPGlobus"
|
303 |
msgstr ""
|
@@ -888,6 +888,16 @@ msgid ""
|
|
888 |
"page."
|
889 |
msgstr ""
|
890 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
891 |
#: includes/class-wpglobus-widget.php:27
|
892 |
msgid "WPGlobus widget"
|
893 |
msgstr "WPGlobus widget"
|
297 |
msgstr ""
|
298 |
|
299 |
#: includes/admin/class-wpglobus-customize-options.php:553,
|
300 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:569,
|
301 |
#: includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
|
302 |
msgid "WPGlobus"
|
303 |
msgstr ""
|
888 |
"page."
|
889 |
msgstr ""
|
890 |
|
891 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:438
|
892 |
+
msgid ""
|
893 |
+
"WPGlobus provides multilingual support for Elementor only when the option "
|
894 |
+
"`CSS Print Method` is set to `External File`."
|
895 |
+
msgstr ""
|
896 |
+
|
897 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:439
|
898 |
+
msgid "Open Elementor Settings page"
|
899 |
+
msgstr ""
|
900 |
+
|
901 |
#: includes/class-wpglobus-widget.php:27
|
902 |
msgid "WPGlobus widget"
|
903 |
msgstr "WPGlobus widget"
|
languages/wpglobus-es_PR.po
CHANGED
@@ -297,7 +297,7 @@ msgid "Save & Reload"
|
|
297 |
msgstr ""
|
298 |
|
299 |
#: includes/admin/class-wpglobus-customize-options.php:553,
|
300 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
301 |
#: includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
|
302 |
msgid "WPGlobus"
|
303 |
msgstr ""
|
@@ -888,6 +888,16 @@ msgid ""
|
|
888 |
"page."
|
889 |
msgstr ""
|
890 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
891 |
#: includes/class-wpglobus-widget.php:27
|
892 |
msgid "WPGlobus widget"
|
893 |
msgstr "WPGlobus widget"
|
297 |
msgstr ""
|
298 |
|
299 |
#: includes/admin/class-wpglobus-customize-options.php:553,
|
300 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:569,
|
301 |
#: includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
|
302 |
msgid "WPGlobus"
|
303 |
msgstr ""
|
888 |
"page."
|
889 |
msgstr ""
|
890 |
|
891 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:438
|
892 |
+
msgid ""
|
893 |
+
"WPGlobus provides multilingual support for Elementor only when the option "
|
894 |
+
"`CSS Print Method` is set to `External File`."
|
895 |
+
msgstr ""
|
896 |
+
|
897 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:439
|
898 |
+
msgid "Open Elementor Settings page"
|
899 |
+
msgstr ""
|
900 |
+
|
901 |
#: includes/class-wpglobus-widget.php:27
|
902 |
msgid "WPGlobus widget"
|
903 |
msgstr "WPGlobus widget"
|
languages/wpglobus-es_VE.po
CHANGED
@@ -297,7 +297,7 @@ msgid "Save & Reload"
|
|
297 |
msgstr ""
|
298 |
|
299 |
#: includes/admin/class-wpglobus-customize-options.php:553,
|
300 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
301 |
#: includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
|
302 |
msgid "WPGlobus"
|
303 |
msgstr ""
|
@@ -888,6 +888,16 @@ msgid ""
|
|
888 |
"page."
|
889 |
msgstr ""
|
890 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
891 |
#: includes/class-wpglobus-widget.php:27
|
892 |
msgid "WPGlobus widget"
|
893 |
msgstr "WPGlobus widget"
|
297 |
msgstr ""
|
298 |
|
299 |
#: includes/admin/class-wpglobus-customize-options.php:553,
|
300 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:569,
|
301 |
#: includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
|
302 |
msgid "WPGlobus"
|
303 |
msgstr ""
|
888 |
"page."
|
889 |
msgstr ""
|
890 |
|
891 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:438
|
892 |
+
msgid ""
|
893 |
+
"WPGlobus provides multilingual support for Elementor only when the option "
|
894 |
+
"`CSS Print Method` is set to `External File`."
|
895 |
+
msgstr ""
|
896 |
+
|
897 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:439
|
898 |
+
msgid "Open Elementor Settings page"
|
899 |
+
msgstr ""
|
900 |
+
|
901 |
#: includes/class-wpglobus-widget.php:27
|
902 |
msgid "WPGlobus widget"
|
903 |
msgstr "WPGlobus widget"
|
languages/wpglobus-et.po
CHANGED
@@ -281,7 +281,7 @@ msgid "Save & Reload"
|
|
281 |
msgstr "Salvesta ja laadi uuesti"
|
282 |
|
283 |
#: includes/admin/class-wpglobus-customize-options.php:553,
|
284 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
285 |
#: includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
|
286 |
msgid "WPGlobus"
|
287 |
msgstr "WPGlobus"
|
@@ -854,6 +854,16 @@ msgid ""
|
|
854 |
"page."
|
855 |
msgstr ""
|
856 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
857 |
#: includes/class-wpglobus-widget.php:27
|
858 |
msgid "WPGlobus widget"
|
859 |
msgstr ""
|
281 |
msgstr "Salvesta ja laadi uuesti"
|
282 |
|
283 |
#: includes/admin/class-wpglobus-customize-options.php:553,
|
284 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:569,
|
285 |
#: includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
|
286 |
msgid "WPGlobus"
|
287 |
msgstr "WPGlobus"
|
854 |
"page."
|
855 |
msgstr ""
|
856 |
|
857 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:438
|
858 |
+
msgid ""
|
859 |
+
"WPGlobus provides multilingual support for Elementor only when the option "
|
860 |
+
"`CSS Print Method` is set to `External File`."
|
861 |
+
msgstr ""
|
862 |
+
|
863 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:439
|
864 |
+
msgid "Open Elementor Settings page"
|
865 |
+
msgstr ""
|
866 |
+
|
867 |
#: includes/class-wpglobus-widget.php:27
|
868 |
msgid "WPGlobus widget"
|
869 |
msgstr ""
|
languages/wpglobus-fr_BE.po
CHANGED
@@ -334,7 +334,7 @@ msgid "Save & Reload"
|
|
334 |
msgstr "Enregistrer & recharger"
|
335 |
|
336 |
#: includes/admin/class-wpglobus-customize-options.php:553,
|
337 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
338 |
#: includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
|
339 |
msgid "WPGlobus"
|
340 |
msgstr "WPGlobus"
|
@@ -948,6 +948,16 @@ msgid ""
|
|
948 |
"page."
|
949 |
msgstr ""
|
950 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
951 |
#: includes/class-wpglobus-widget.php:27
|
952 |
msgid "WPGlobus widget"
|
953 |
msgstr "Widget WPGlobus"
|
334 |
msgstr "Enregistrer & recharger"
|
335 |
|
336 |
#: includes/admin/class-wpglobus-customize-options.php:553,
|
337 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:569,
|
338 |
#: includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
|
339 |
msgid "WPGlobus"
|
340 |
msgstr "WPGlobus"
|
948 |
"page."
|
949 |
msgstr ""
|
950 |
|
951 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:438
|
952 |
+
msgid ""
|
953 |
+
"WPGlobus provides multilingual support for Elementor only when the option "
|
954 |
+
"`CSS Print Method` is set to `External File`."
|
955 |
+
msgstr ""
|
956 |
+
|
957 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:439
|
958 |
+
msgid "Open Elementor Settings page"
|
959 |
+
msgstr ""
|
960 |
+
|
961 |
#: includes/class-wpglobus-widget.php:27
|
962 |
msgid "WPGlobus widget"
|
963 |
msgstr "Widget WPGlobus"
|
languages/wpglobus-fr_CA.po
CHANGED
@@ -336,7 +336,7 @@ msgid "Save & Reload"
|
|
336 |
msgstr "Enregistrer & recharger"
|
337 |
|
338 |
#: includes/admin/class-wpglobus-customize-options.php:553,
|
339 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
340 |
#: includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
|
341 |
msgid "WPGlobus"
|
342 |
msgstr "WPGlobus"
|
@@ -950,6 +950,16 @@ msgid ""
|
|
950 |
"page."
|
951 |
msgstr ""
|
952 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
953 |
#: includes/class-wpglobus-widget.php:27
|
954 |
msgid "WPGlobus widget"
|
955 |
msgstr "Widget WPGlobus"
|
336 |
msgstr "Enregistrer & recharger"
|
337 |
|
338 |
#: includes/admin/class-wpglobus-customize-options.php:553,
|
339 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:569,
|
340 |
#: includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
|
341 |
msgid "WPGlobus"
|
342 |
msgstr "WPGlobus"
|
950 |
"page."
|
951 |
msgstr ""
|
952 |
|
953 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:438
|
954 |
+
msgid ""
|
955 |
+
"WPGlobus provides multilingual support for Elementor only when the option "
|
956 |
+
"`CSS Print Method` is set to `External File`."
|
957 |
+
msgstr ""
|
958 |
+
|
959 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:439
|
960 |
+
msgid "Open Elementor Settings page"
|
961 |
+
msgstr ""
|
962 |
+
|
963 |
#: includes/class-wpglobus-widget.php:27
|
964 |
msgid "WPGlobus widget"
|
965 |
msgstr "Widget WPGlobus"
|
languages/wpglobus-fr_FR.po
CHANGED
@@ -336,7 +336,7 @@ msgid "Save & Reload"
|
|
336 |
msgstr "Enregistrer & recharger"
|
337 |
|
338 |
#: includes/admin/class-wpglobus-customize-options.php:553,
|
339 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
340 |
#: includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
|
341 |
msgid "WPGlobus"
|
342 |
msgstr "WPGlobus"
|
@@ -963,6 +963,16 @@ msgstr ""
|
|
963 |
"Avant de changer de langue, s’il vous plaît enregistrer brouillon ou "
|
964 |
"publier, puis recharger la page."
|
965 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
966 |
#: includes/class-wpglobus-widget.php:27
|
967 |
msgid "WPGlobus widget"
|
968 |
msgstr "Widget WPGlobus"
|
336 |
msgstr "Enregistrer & recharger"
|
337 |
|
338 |
#: includes/admin/class-wpglobus-customize-options.php:553,
|
339 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:569,
|
340 |
#: includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
|
341 |
msgid "WPGlobus"
|
342 |
msgstr "WPGlobus"
|
963 |
"Avant de changer de langue, s’il vous plaît enregistrer brouillon ou "
|
964 |
"publier, puis recharger la page."
|
965 |
|
966 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:438
|
967 |
+
msgid ""
|
968 |
+
"WPGlobus provides multilingual support for Elementor only when the option "
|
969 |
+
"`CSS Print Method` is set to `External File`."
|
970 |
+
msgstr ""
|
971 |
+
|
972 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:439
|
973 |
+
msgid "Open Elementor Settings page"
|
974 |
+
msgstr ""
|
975 |
+
|
976 |
#: includes/class-wpglobus-widget.php:27
|
977 |
msgid "WPGlobus widget"
|
978 |
msgstr "Widget WPGlobus"
|
languages/wpglobus-id_ID.po
CHANGED
@@ -327,7 +327,7 @@ msgid "Save & Reload"
|
|
327 |
msgstr "Simpan & Reload"
|
328 |
|
329 |
#: includes/admin/class-wpglobus-customize-options.php:553,
|
330 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
331 |
#: includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
|
332 |
msgid "WPGlobus"
|
333 |
msgstr "WPGlobus"
|
@@ -927,6 +927,16 @@ msgid ""
|
|
927 |
"page."
|
928 |
msgstr ""
|
929 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
930 |
#: includes/class-wpglobus-widget.php:27
|
931 |
msgid "WPGlobus widget"
|
932 |
msgstr "Widget WPGlobus"
|
327 |
msgstr "Simpan & Reload"
|
328 |
|
329 |
#: includes/admin/class-wpglobus-customize-options.php:553,
|
330 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:569,
|
331 |
#: includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
|
332 |
msgid "WPGlobus"
|
333 |
msgstr "WPGlobus"
|
927 |
"page."
|
928 |
msgstr ""
|
929 |
|
930 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:438
|
931 |
+
msgid ""
|
932 |
+
"WPGlobus provides multilingual support for Elementor only when the option "
|
933 |
+
"`CSS Print Method` is set to `External File`."
|
934 |
+
msgstr ""
|
935 |
+
|
936 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:439
|
937 |
+
msgid "Open Elementor Settings page"
|
938 |
+
msgstr ""
|
939 |
+
|
940 |
#: includes/class-wpglobus-widget.php:27
|
941 |
msgid "WPGlobus widget"
|
942 |
msgstr "Widget WPGlobus"
|
languages/wpglobus-ko_KR.po
CHANGED
@@ -280,7 +280,7 @@ msgid "Save & Reload"
|
|
280 |
msgstr ""
|
281 |
|
282 |
#: includes/admin/class-wpglobus-customize-options.php:553,
|
283 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
284 |
#: includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
|
285 |
msgid "WPGlobus"
|
286 |
msgstr ""
|
@@ -853,6 +853,16 @@ msgid ""
|
|
853 |
"page."
|
854 |
msgstr ""
|
855 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
856 |
#: includes/class-wpglobus-widget.php:27
|
857 |
msgid "WPGlobus widget"
|
858 |
msgstr ""
|
280 |
msgstr ""
|
281 |
|
282 |
#: includes/admin/class-wpglobus-customize-options.php:553,
|
283 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:569,
|
284 |
#: includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
|
285 |
msgid "WPGlobus"
|
286 |
msgstr ""
|
853 |
"page."
|
854 |
msgstr ""
|
855 |
|
856 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:438
|
857 |
+
msgid ""
|
858 |
+
"WPGlobus provides multilingual support for Elementor only when the option "
|
859 |
+
"`CSS Print Method` is set to `External File`."
|
860 |
+
msgstr ""
|
861 |
+
|
862 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:439
|
863 |
+
msgid "Open Elementor Settings page"
|
864 |
+
msgstr ""
|
865 |
+
|
866 |
#: includes/class-wpglobus-widget.php:27
|
867 |
msgid "WPGlobus widget"
|
868 |
msgstr ""
|
languages/wpglobus-pl_PL.po
CHANGED
@@ -298,7 +298,7 @@ msgid "Save & Reload"
|
|
298 |
msgstr ""
|
299 |
|
300 |
#: includes/admin/class-wpglobus-customize-options.php:553,
|
301 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
302 |
#: includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
|
303 |
msgid "WPGlobus"
|
304 |
msgstr "WPGlobus"
|
@@ -880,6 +880,16 @@ msgid ""
|
|
880 |
"page."
|
881 |
msgstr ""
|
882 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
883 |
#: includes/class-wpglobus-widget.php:27
|
884 |
msgid "WPGlobus widget"
|
885 |
msgstr "Widget WPGlobus'a"
|
298 |
msgstr ""
|
299 |
|
300 |
#: includes/admin/class-wpglobus-customize-options.php:553,
|
301 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:569,
|
302 |
#: includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
|
303 |
msgid "WPGlobus"
|
304 |
msgstr "WPGlobus"
|
880 |
"page."
|
881 |
msgstr ""
|
882 |
|
883 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:438
|
884 |
+
msgid ""
|
885 |
+
"WPGlobus provides multilingual support for Elementor only when the option "
|
886 |
+
"`CSS Print Method` is set to `External File`."
|
887 |
+
msgstr ""
|
888 |
+
|
889 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:439
|
890 |
+
msgid "Open Elementor Settings page"
|
891 |
+
msgstr ""
|
892 |
+
|
893 |
#: includes/class-wpglobus-widget.php:27
|
894 |
msgid "WPGlobus widget"
|
895 |
msgstr "Widget WPGlobus'a"
|
languages/wpglobus-pt_BR.po
CHANGED
@@ -280,7 +280,7 @@ msgid "Save & Reload"
|
|
280 |
msgstr ""
|
281 |
|
282 |
#: includes/admin/class-wpglobus-customize-options.php:553,
|
283 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
284 |
#: includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
|
285 |
msgid "WPGlobus"
|
286 |
msgstr ""
|
@@ -853,6 +853,16 @@ msgid ""
|
|
853 |
"page."
|
854 |
msgstr ""
|
855 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
856 |
#: includes/class-wpglobus-widget.php:27
|
857 |
msgid "WPGlobus widget"
|
858 |
msgstr ""
|
280 |
msgstr ""
|
281 |
|
282 |
#: includes/admin/class-wpglobus-customize-options.php:553,
|
283 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:569,
|
284 |
#: includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
|
285 |
msgid "WPGlobus"
|
286 |
msgstr ""
|
853 |
"page."
|
854 |
msgstr ""
|
855 |
|
856 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:438
|
857 |
+
msgid ""
|
858 |
+
"WPGlobus provides multilingual support for Elementor only when the option "
|
859 |
+
"`CSS Print Method` is set to `External File`."
|
860 |
+
msgstr ""
|
861 |
+
|
862 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:439
|
863 |
+
msgid "Open Elementor Settings page"
|
864 |
+
msgstr ""
|
865 |
+
|
866 |
#: includes/class-wpglobus-widget.php:27
|
867 |
msgid "WPGlobus widget"
|
868 |
msgstr ""
|
languages/wpglobus-pt_PT.po
CHANGED
@@ -280,7 +280,7 @@ msgid "Save & Reload"
|
|
280 |
msgstr ""
|
281 |
|
282 |
#: includes/admin/class-wpglobus-customize-options.php:553,
|
283 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
284 |
#: includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
|
285 |
msgid "WPGlobus"
|
286 |
msgstr ""
|
@@ -853,6 +853,16 @@ msgid ""
|
|
853 |
"page."
|
854 |
msgstr ""
|
855 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
856 |
#: includes/class-wpglobus-widget.php:27
|
857 |
msgid "WPGlobus widget"
|
858 |
msgstr ""
|
280 |
msgstr ""
|
281 |
|
282 |
#: includes/admin/class-wpglobus-customize-options.php:553,
|
283 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:569,
|
284 |
#: includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
|
285 |
msgid "WPGlobus"
|
286 |
msgstr ""
|
853 |
"page."
|
854 |
msgstr ""
|
855 |
|
856 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:438
|
857 |
+
msgid ""
|
858 |
+
"WPGlobus provides multilingual support for Elementor only when the option "
|
859 |
+
"`CSS Print Method` is set to `External File`."
|
860 |
+
msgstr ""
|
861 |
+
|
862 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:439
|
863 |
+
msgid "Open Elementor Settings page"
|
864 |
+
msgstr ""
|
865 |
+
|
866 |
#: includes/class-wpglobus-widget.php:27
|
867 |
msgid "WPGlobus widget"
|
868 |
msgstr ""
|
languages/wpglobus-ro_RO.po
CHANGED
@@ -297,7 +297,7 @@ msgid "Save & Reload"
|
|
297 |
msgstr ""
|
298 |
|
299 |
#: includes/admin/class-wpglobus-customize-options.php:553,
|
300 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
301 |
#: includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
|
302 |
msgid "WPGlobus"
|
303 |
msgstr "WPGlobus"
|
@@ -883,6 +883,16 @@ msgid ""
|
|
883 |
"page."
|
884 |
msgstr ""
|
885 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
886 |
#: includes/class-wpglobus-widget.php:27
|
887 |
msgid "WPGlobus widget"
|
888 |
msgstr "WPGlobus widget"
|
297 |
msgstr ""
|
298 |
|
299 |
#: includes/admin/class-wpglobus-customize-options.php:553,
|
300 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:569,
|
301 |
#: includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
|
302 |
msgid "WPGlobus"
|
303 |
msgstr "WPGlobus"
|
883 |
"page."
|
884 |
msgstr ""
|
885 |
|
886 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:438
|
887 |
+
msgid ""
|
888 |
+
"WPGlobus provides multilingual support for Elementor only when the option "
|
889 |
+
"`CSS Print Method` is set to `External File`."
|
890 |
+
msgstr ""
|
891 |
+
|
892 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:439
|
893 |
+
msgid "Open Elementor Settings page"
|
894 |
+
msgstr ""
|
895 |
+
|
896 |
#: includes/class-wpglobus-widget.php:27
|
897 |
msgid "WPGlobus widget"
|
898 |
msgstr "WPGlobus widget"
|
languages/wpglobus-ru_RU.po
CHANGED
@@ -333,7 +333,7 @@ msgid "Save & Reload"
|
|
333 |
msgstr "Сохранить и перезагрузить"
|
334 |
|
335 |
#: includes/admin/class-wpglobus-customize-options.php:553,
|
336 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
337 |
#: includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
|
338 |
msgid "WPGlobus"
|
339 |
msgstr "WPGlobus"
|
@@ -944,6 +944,16 @@ msgstr ""
|
|
944 |
"Опубликуйте или сохраните черновик перед переключением на другой язык. Затем "
|
945 |
"перезагрузите страницу."
|
946 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
947 |
#: includes/class-wpglobus-widget.php:27
|
948 |
msgid "WPGlobus widget"
|
949 |
msgstr "WPGlobus виджет"
|
@@ -1731,4 +1741,3 @@ msgstr ""
|
|
1731 |
#: wpglobus.php:19
|
1732 |
msgid "https://wpglobus.com/"
|
1733 |
msgstr "https://wpglobus.com/ru/"
|
1734 |
-
|
333 |
msgstr "Сохранить и перезагрузить"
|
334 |
|
335 |
#: includes/admin/class-wpglobus-customize-options.php:553,
|
336 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:569,
|
337 |
#: includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
|
338 |
msgid "WPGlobus"
|
339 |
msgstr "WPGlobus"
|
944 |
"Опубликуйте или сохраните черновик перед переключением на другой язык. Затем "
|
945 |
"перезагрузите страницу."
|
946 |
|
947 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:438
|
948 |
+
msgid ""
|
949 |
+
"WPGlobus provides multilingual support for Elementor only when the option "
|
950 |
+
"`CSS Print Method` is set to `External File`."
|
951 |
+
msgstr ""
|
952 |
+
|
953 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:439
|
954 |
+
msgid "Open Elementor Settings page"
|
955 |
+
msgstr ""
|
956 |
+
|
957 |
#: includes/class-wpglobus-widget.php:27
|
958 |
msgid "WPGlobus widget"
|
959 |
msgstr "WPGlobus виджет"
|
1741 |
#: wpglobus.php:19
|
1742 |
msgid "https://wpglobus.com/"
|
1743 |
msgstr "https://wpglobus.com/ru/"
|
|
languages/wpglobus-sv_SE.po
CHANGED
@@ -297,7 +297,7 @@ msgid "Save & Reload"
|
|
297 |
msgstr "Spara och ladda om"
|
298 |
|
299 |
#: includes/admin/class-wpglobus-customize-options.php:553,
|
300 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
301 |
#: includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
|
302 |
msgid "WPGlobus"
|
303 |
msgstr "WPGlobus"
|
@@ -879,6 +879,16 @@ msgid ""
|
|
879 |
"page."
|
880 |
msgstr ""
|
881 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
882 |
#: includes/class-wpglobus-widget.php:27
|
883 |
msgid "WPGlobus widget"
|
884 |
msgstr "WPGlobus widgeten"
|
297 |
msgstr "Spara och ladda om"
|
298 |
|
299 |
#: includes/admin/class-wpglobus-customize-options.php:553,
|
300 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:569,
|
301 |
#: includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
|
302 |
msgid "WPGlobus"
|
303 |
msgstr "WPGlobus"
|
879 |
"page."
|
880 |
msgstr ""
|
881 |
|
882 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:438
|
883 |
+
msgid ""
|
884 |
+
"WPGlobus provides multilingual support for Elementor only when the option "
|
885 |
+
"`CSS Print Method` is set to `External File`."
|
886 |
+
msgstr ""
|
887 |
+
|
888 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:439
|
889 |
+
msgid "Open Elementor Settings page"
|
890 |
+
msgstr ""
|
891 |
+
|
892 |
#: includes/class-wpglobus-widget.php:27
|
893 |
msgid "WPGlobus widget"
|
894 |
msgstr "WPGlobus widgeten"
|
languages/wpglobus-tr_TR.po
CHANGED
@@ -298,7 +298,7 @@ msgid "Save & Reload"
|
|
298 |
msgstr ""
|
299 |
|
300 |
#: includes/admin/class-wpglobus-customize-options.php:553,
|
301 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
302 |
#: includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
|
303 |
msgid "WPGlobus"
|
304 |
msgstr ""
|
@@ -879,6 +879,16 @@ msgid ""
|
|
879 |
"page."
|
880 |
msgstr ""
|
881 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
882 |
#: includes/class-wpglobus-widget.php:27
|
883 |
msgid "WPGlobus widget"
|
884 |
msgstr "WPGlobus parçacığı"
|
298 |
msgstr ""
|
299 |
|
300 |
#: includes/admin/class-wpglobus-customize-options.php:553,
|
301 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:569,
|
302 |
#: includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
|
303 |
msgid "WPGlobus"
|
304 |
msgstr ""
|
879 |
"page."
|
880 |
msgstr ""
|
881 |
|
882 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:438
|
883 |
+
msgid ""
|
884 |
+
"WPGlobus provides multilingual support for Elementor only when the option "
|
885 |
+
"`CSS Print Method` is set to `External File`."
|
886 |
+
msgstr ""
|
887 |
+
|
888 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:439
|
889 |
+
msgid "Open Elementor Settings page"
|
890 |
+
msgstr ""
|
891 |
+
|
892 |
#: includes/class-wpglobus-widget.php:27
|
893 |
msgid "WPGlobus widget"
|
894 |
msgstr "WPGlobus parçacığı"
|
languages/wpglobus-uk.po
CHANGED
@@ -324,7 +324,7 @@ msgid "Save & Reload"
|
|
324 |
msgstr "Зберегти та перезавантажити"
|
325 |
|
326 |
#: includes/admin/class-wpglobus-customize-options.php:553,
|
327 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
328 |
#: includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
|
329 |
msgid "WPGlobus"
|
330 |
msgstr "WPGlobus"
|
@@ -933,6 +933,16 @@ msgstr ""
|
|
933 |
"Опублікуйте або збережіть чернетку перед перемиканням на іншу мову. Потім "
|
934 |
"перезавантажте сторінку."
|
935 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
936 |
#: includes/class-wpglobus-widget.php:27
|
937 |
msgid "WPGlobus widget"
|
938 |
msgstr "WPGlobus віджет"
|
324 |
msgstr "Зберегти та перезавантажити"
|
325 |
|
326 |
#: includes/admin/class-wpglobus-customize-options.php:553,
|
327 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:569,
|
328 |
#: includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
|
329 |
msgid "WPGlobus"
|
330 |
msgstr "WPGlobus"
|
933 |
"Опублікуйте або збережіть чернетку перед перемиканням на іншу мову. Потім "
|
934 |
"перезавантажте сторінку."
|
935 |
|
936 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:438
|
937 |
+
msgid ""
|
938 |
+
"WPGlobus provides multilingual support for Elementor only when the option "
|
939 |
+
"`CSS Print Method` is set to `External File`."
|
940 |
+
msgstr ""
|
941 |
+
|
942 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:439
|
943 |
+
msgid "Open Elementor Settings page"
|
944 |
+
msgstr ""
|
945 |
+
|
946 |
#: includes/class-wpglobus-widget.php:27
|
947 |
msgid "WPGlobus widget"
|
948 |
msgstr "WPGlobus віджет"
|
languages/wpglobus.pot
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
-
# Copyright (C) 2020 WPGlobus 2.4.
|
2 |
-
# This file is distributed under the same license as the WPGlobus 2.4.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: WPGlobus 2.4.
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -209,7 +209,7 @@ msgstr ""
|
|
209 |
msgid "Save & Reload"
|
210 |
msgstr ""
|
211 |
|
212 |
-
#: includes/admin/class-wpglobus-customize-options.php:553, includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
213 |
msgid "WPGlobus"
|
214 |
msgstr ""
|
215 |
|
@@ -694,6 +694,14 @@ msgstr ""
|
|
694 |
msgid "Before switching the language, please save draft or publish, then reload page."
|
695 |
msgstr ""
|
696 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
697 |
#: includes/class-wpglobus-widget.php:27
|
698 |
msgid "WPGlobus widget"
|
699 |
msgstr ""
|
1 |
+
# Copyright (C) 2020 WPGlobus 2.4.11
|
2 |
+
# This file is distributed under the same license as the WPGlobus 2.4.11 package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: WPGlobus 2.4.11\n"
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
209 |
msgid "Save & Reload"
|
210 |
msgstr ""
|
211 |
|
212 |
+
#: includes/admin/class-wpglobus-customize-options.php:553, includes/builders/gutenberg/class-wpglobus-gutenberg.php:569, includes/class-wpglobus.php:1235, wpglobus.php:12, wpglobus.php:18
|
213 |
msgid "WPGlobus"
|
214 |
msgstr ""
|
215 |
|
694 |
msgid "Before switching the language, please save draft or publish, then reload page."
|
695 |
msgstr ""
|
696 |
|
697 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:438
|
698 |
+
msgid "WPGlobus provides multilingual support for Elementor only when the option `CSS Print Method` is set to `External File`."
|
699 |
+
msgstr ""
|
700 |
+
|
701 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:439
|
702 |
+
msgid "Open Elementor Settings page"
|
703 |
+
msgstr ""
|
704 |
+
|
705 |
#: includes/class-wpglobus-widget.php:27
|
706 |
msgid "WPGlobus widget"
|
707 |
msgstr ""
|
readme.txt
CHANGED
@@ -216,6 +216,10 @@ WPGlobus Version 2 supports WordPress 5.x, with Gutenberg.
|
|
216 |
|
217 |
== Changelog ==
|
218 |
|
|
|
|
|
|
|
|
|
219 |
= 2.4.10 =
|
220 |
|
221 |
* (Core/Filters) Prevent handling of incorrect widget instance's settings.
|
@@ -242,34 +246,6 @@ WPGlobus Version 2 supports WordPress 5.x, with Gutenberg.
|
|
242 |
* (Core) Correct setting initial language tab in Standard/Classic mode on the `post.php` page.
|
243 |
* (Vendor/Yoast) Added JS script for dashboard.
|
244 |
|
245 |
-
= 2.4.4 =
|
246 |
-
|
247 |
-
* (Builders/RankMathSEO) Added filters for title and description on frontend.
|
248 |
-
|
249 |
-
= 2.4.3 =
|
250 |
-
|
251 |
-
* (Builders/RankMathSEO) Added `WordPress SEO Plugin – Rank Math` support (Beta stage).
|
252 |
-
* (Core/Plugin Install) Added info box before add-ons list.
|
253 |
-
|
254 |
-
= 2.4.2 =
|
255 |
-
|
256 |
-
* (Vendor/Yoast) Support multilingual breadcrumbs for posts, pages, and taxonomies.
|
257 |
-
* (Core/Plugin Install) Added status `"available"` for the premium add-ons.
|
258 |
-
|
259 |
-
= 2.4.1 =
|
260 |
-
|
261 |
-
* (Vendor/Yoast) Set support for minimum version Yoast SEO Premium v12.
|
262 |
-
|
263 |
-
= 2.4.0 =
|
264 |
-
|
265 |
-
* (Vendor/Yoast) Added support Yoast SEO from v.14.
|
266 |
-
* (Core) Code clean-up.
|
267 |
-
* (Core) Interface improvements on the `post.php` page.
|
268 |
-
* (Core/Builder) Interface improvements on the `post.php` page.
|
269 |
-
* (Core/AdminPost) Localized the `Preview Changes` link.
|
270 |
-
* (Core/Meta) Removed caching meta data.
|
271 |
-
* (Builders/Gutenberg) Prevent multiple clicking on language switcher.
|
272 |
-
|
273 |
= Earlier versions and Add-ons =
|
274 |
|
275 |
* [See the complete changelog here](https://github.com/WPGlobus/WPGlobus/blob/master/CHANGELOG.md)
|
216 |
|
217 |
== Changelog ==
|
218 |
|
219 |
+
= 2.4.11 =
|
220 |
+
|
221 |
+
* (Block Editor) Initializing to work with Elementor.
|
222 |
+
|
223 |
= 2.4.10 =
|
224 |
|
225 |
* (Core/Filters) Prevent handling of incorrect widget instance's settings.
|
246 |
* (Core) Correct setting initial language tab in Standard/Classic mode on the `post.php` page.
|
247 |
* (Vendor/Yoast) Added JS script for dashboard.
|
248 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
249 |
= Earlier versions and Add-ons =
|
250 |
|
251 |
* [See the complete changelog here](https://github.com/WPGlobus/WPGlobus/blob/master/CHANGELOG.md)
|
wpglobus.php
CHANGED
@@ -15,7 +15,7 @@
|
|
15 |
* Description: A WordPress Globalization / Multilingual Plugin. Posts, pages, menus, widgets and even custom fields - in multiple languages!
|
16 |
* Text Domain: wpglobus
|
17 |
* Domain Path: /languages/
|
18 |
-
* Version: 2.4.
|
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.4.
|
46 |
define( 'WPGLOBUS_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
|
47 |
define( 'WPGLOBUS_AJAX', 'wpglobus-ajax' );
|
48 |
|
15 |
* Description: A WordPress Globalization / Multilingual Plugin. Posts, pages, menus, widgets and even custom fields - in multiple languages!
|
16 |
* Text Domain: wpglobus
|
17 |
* Domain Path: /languages/
|
18 |
+
* Version: 2.4.11
|
19 |
* Author: WPGlobus
|
20 |
* Author URI: https://wpglobus.com/
|
21 |
* Network: false
|
42 |
exit;
|
43 |
}
|
44 |
|
45 |
+
define( 'WPGLOBUS_VERSION', '2.4.11' );
|
46 |
define( 'WPGLOBUS_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
|
47 |
define( 'WPGLOBUS_AJAX', 'wpglobus-ajax' );
|
48 |
|