Version Description
- FIXED:
- Builders/Gutenberg: CSS tweaks.
Download this release
Release Info
Developer | tivnet |
Plugin | WPGlobus – Multilingual Everything! |
Version | 1.9.29 |
Comparing to | |
See all releases |
Code changes from version 1.9.28 to 1.9.29
- includes/builders/elementor/class-wpglobus-elementor.php +1 -1
- includes/builders/gutenberg/assets/css/wpglobus-gutenberg.css +20 -0
- includes/builders/gutenberg/assets/css/wpglobus-gutenberg.min.css +1 -0
- includes/builders/gutenberg/assets/js/wpglobus-gutenberg.js +2 -0
- includes/builders/gutenberg/assets/js/wpglobus-gutenberg.min.js +1 -1
- includes/builders/gutenberg/class-wpglobus-gutenberg.php +48 -6
- languages/wpglobus-ar.po +4 -4
- languages/wpglobus-be.po +4 -4
- languages/wpglobus-bg_BG.po +4 -4
- languages/wpglobus-de_CH.po +4 -4
- languages/wpglobus-de_DE.po +4 -4
- languages/wpglobus-el.po +4 -4
- languages/wpglobus-en_AU.po +4 -4
- languages/wpglobus-en_CA.po +4 -4
- languages/wpglobus-en_GB.po +4 -4
- languages/wpglobus-en_NZ.po +4 -4
- languages/wpglobus-en_US.po +4 -4
- languages/wpglobus-en_ZA.po +4 -4
- languages/wpglobus-es_AR.po +4 -4
- languages/wpglobus-es_CL.po +4 -4
- languages/wpglobus-es_CO.po +4 -4
- languages/wpglobus-es_CR.po +4 -4
- languages/wpglobus-es_ES.po +4 -4
- languages/wpglobus-es_GT.po +4 -4
- languages/wpglobus-es_MX.po +4 -4
- languages/wpglobus-es_PE.po +4 -4
- languages/wpglobus-es_PR.po +4 -4
- languages/wpglobus-es_VE.po +4 -4
- languages/wpglobus-et.po +4 -4
- languages/wpglobus-fr_BE.po +4 -4
- languages/wpglobus-fr_CA.po +4 -4
- languages/wpglobus-fr_FR.po +4 -4
- languages/wpglobus-id_ID.po +4 -4
- languages/wpglobus-ko_KR.po +4 -4
- languages/wpglobus-pl_PL.po +4 -4
- languages/wpglobus-pt_BR.po +4 -4
- languages/wpglobus-pt_PT.po +4 -4
- languages/wpglobus-ro_RO.po +4 -4
- languages/wpglobus-ru_RU.mo +0 -0
- languages/wpglobus-ru_RU.po +5 -5
- languages/wpglobus-sv_SE.po +4 -4
- languages/wpglobus-tr_TR.po +4 -4
- languages/wpglobus-uk.po +4 -4
- languages/wpglobus.pot +7 -7
- readme.txt +5 -0
- wpglobus.php +2 -2
includes/builders/elementor/class-wpglobus-elementor.php
CHANGED
@@ -108,7 +108,7 @@ if ( ! class_exists( 'WPGlobus_Elementor' ) ) :
|
|
108 |
$_post->post_content = WPGlobus_Core::text_filter( $this->post_content, WPGlobus::Config()->builder->get_language(), WPGlobus::RETURN_EMPTY );
|
109 |
|
110 |
/**
|
111 |
-
* @see
|
112 |
*/
|
113 |
wp_cache_replace( $object->ID, $_post, 'posts' );
|
114 |
|
108 |
$_post->post_content = WPGlobus_Core::text_filter( $this->post_content, WPGlobus::Config()->builder->get_language(), WPGlobus::RETURN_EMPTY );
|
109 |
|
110 |
/**
|
111 |
+
* @see \wp-includes\cache.php
|
112 |
*/
|
113 |
wp_cache_replace( $object->ID, $_post, 'posts' );
|
114 |
|
includes/builders/gutenberg/assets/css/wpglobus-gutenberg.css
ADDED
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
.wpglobus-selector-grid {
|
2 |
+
display:grid;grid-template-columns:50% 50%;place-items:center;grid-gap:0;
|
3 |
+
}
|
4 |
+
.wpglobus-gutenberg-selector-box {
|
5 |
+
margin-left: 220px;
|
6 |
+
}
|
7 |
+
@media screen and (max-width: 599px) {
|
8 |
+
.wpglobus-gutenberg-selector-box {
|
9 |
+
margin-left: 40px;
|
10 |
+
}
|
11 |
+
}
|
12 |
+
@media screen and (max-width: 700px) {
|
13 |
+
.wpglobus-gutenberg-selector-column-1 {
|
14 |
+
height: 25px;
|
15 |
+
width: 25px;
|
16 |
+
}
|
17 |
+
.wpglobus-gutenberg-selector-column-2 {
|
18 |
+
display:none;
|
19 |
+
}
|
20 |
+
}
|
includes/builders/gutenberg/assets/css/wpglobus-gutenberg.min.css
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
.wpglobus-selector-grid{display:grid;grid-template-columns:50% 50%;place-items:center;grid-gap:0}.wpglobus-gutenberg-selector-box{margin-left:220px}@media screen and (max-width:599px){.wpglobus-gutenberg-selector-box{margin-left:40px}}@media screen and (max-width:700px){.wpglobus-gutenberg-selector-column-1{height:25px;width:25px}.wpglobus-gutenberg-selector-column-2{display:none}}
|
includes/builders/gutenberg/assets/js/wpglobus-gutenberg.js
CHANGED
@@ -66,6 +66,7 @@ jQuery(document).ready(function ($) {
|
|
66 |
var $toolbar = $('.edit-post-header__settings');
|
67 |
if( $toolbar.length == 1 ) {
|
68 |
$toolbar.before(WPGlobusGutenberg.tabs);
|
|
|
69 |
var width = $('.edit-post-header-toolbar').css('width');
|
70 |
width = width.replace('px','') * 1;
|
71 |
if ( width < 50 ) {
|
@@ -74,6 +75,7 @@ jQuery(document).ready(function ($) {
|
|
74 |
width = width + 30;
|
75 |
}
|
76 |
$('.wpglobus-gutenberg-selector-box').css({'margin-left':width+'px'});
|
|
|
77 |
clearInterval(intervalID)
|
78 |
} else {
|
79 |
//console.log('Here: else');
|
66 |
var $toolbar = $('.edit-post-header__settings');
|
67 |
if( $toolbar.length == 1 ) {
|
68 |
$toolbar.before(WPGlobusGutenberg.tabs);
|
69 |
+
/*
|
70 |
var width = $('.edit-post-header-toolbar').css('width');
|
71 |
width = width.replace('px','') * 1;
|
72 |
if ( width < 50 ) {
|
75 |
width = width + 30;
|
76 |
}
|
77 |
$('.wpglobus-gutenberg-selector-box').css({'margin-left':width+'px'});
|
78 |
+
// */
|
79 |
clearInterval(intervalID)
|
80 |
} else {
|
81 |
//console.log('Here: else');
|
includes/builders/gutenberg/assets/js/wpglobus-gutenberg.min.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
jQuery(document).ready(function(n){"use strict";var t={initDone:!1,languageSelectorBoxDelta:0,languageSelectorEnabled:!0,parseBool:function(e){return!/^(false|0)$/i.test(e)&&!!e},init:function(){WPGlobusGutenberg.yoastSeo=t.parseBool(WPGlobusGutenberg.yoastSeo),t.initListeners(),t.setTabs(),t.formHandler(),t.attachListeners()},initListeners:function(){WPGlobusGutenberg.yoastSeo&&1==n(".yoast.wpseo-metabox").length&&n(window).on("beforeunload",function(e){e.stopImmediatePropagation()})},formHandler:function(){var e=n(".metabox-base-form #referredby").attr("value");e=-1==e.indexOf("language=en")?e+"&language="+WPGlobusGutenberg.language:e.replace("language=en","language="+WPGlobusGutenberg.language),n(".metabox-base-form #referredby").attr("value",e),void 0!==(e=n('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),n('input[name="_wp_original_http_referer"]').attr("value",e))},setTabs:function(){var
|
1 |
+
jQuery(document).ready(function(n){"use strict";var t={initDone:!1,languageSelectorBoxDelta:0,languageSelectorEnabled:!0,parseBool:function(e){return!/^(false|0)$/i.test(e)&&!!e},init:function(){WPGlobusGutenberg.yoastSeo=t.parseBool(WPGlobusGutenberg.yoastSeo),t.initListeners(),t.setTabs(),t.formHandler(),t.attachListeners()},initListeners:function(){WPGlobusGutenberg.yoastSeo&&1==n(".yoast.wpseo-metabox").length&&n(window).on("beforeunload",function(e){e.stopImmediatePropagation()})},formHandler:function(){var e=n(".metabox-base-form #referredby").attr("value");e=-1==e.indexOf("language=en")?e+"&language="+WPGlobusGutenberg.language:e.replace("language=en","language="+WPGlobusGutenberg.language),n(".metabox-base-form #referredby").attr("value",e),void 0!==(e=n('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),n('input[name="_wp_original_http_referer"]').attr("value",e))},setTabs:function(){var t=setInterval(function(){var e=n(".edit-post-header__settings");1==e.length&&(e.before(WPGlobusGutenberg.tabs),clearInterval(t))},200)},setSelectorStatus:function(){n(".wpglobus-gutenberg-selector-box").css({opacity:"0.2"}).attr("onclick","return false;"),t.languageSelectorEnabled=!1;var e=setInterval(function(){if(0==n(".is-saving").length){if(clearInterval(e),WPGlobusGutenberg.pagenow==WPGlobusGutenberg.postNewPage&&-1!=location.pathname.indexOf(WPGlobusGutenberg.postEditPage))return WPGlobusGutenberg.pagenow=WPGlobusGutenberg.postEditPage,n(".wpglobus-gutenberg-selector-box").css({opacity:"1"}).attr("onclick",""),void t.reloadPage();t.languageSelectorEnabled=!0,n(".wpglobus-gutenberg-selector-box").css({opacity:"1"}).attr("onclick","")}},400)},reloadPage:function(){n(".wpglobus-selector-grid").css({"grid-template-columns":"10% 90%"}),n(".wpglobus-gutenberg-selector-text").text(WPGlobusGutenberg.i18n.reload),function e(){n(".wpglobus-gutenberg-selector").fadeOut(500).fadeIn(500,e)}(),setTimeout(function(){location.reload()},500)},attachListeners:function(){n(document).on("mouseenter",".wpglobus-gutenberg-selector",function(e){t.languageSelectorEnabled&&(n(".wpglobus-gutenberg-selector-dropdown").css({display:"block"}),t.languageSelectorBoxDelta=e.screenY,n(".edit-post-header").css({"z-index":"100000"}),n(".wpglobus-gutenberg-selector-box").css({"z-index":"100001"}))}),n(document).on("mouseleave",".wpglobus-gutenberg-selector",function(e){0!=t.languageSelectorBoxDelta&&e.screenY-t.languageSelectorBoxDelta<=0&&(n(".wpglobus-gutenberg-selector-dropdown").css({display:"none"}),n(".edit-post-header").css({"z-index":"9989"}),n(".wpglobus-gutenberg-selector-box").css({"z-index":"100"}))}),n(document).on("mouseleave",".wpglobus-gutenberg-selector-dropdown",function(e){n(".wpglobus-gutenberg-selector-dropdown").css({display:"none"}),n(".edit-post-header").css({"z-index":"9989"}),n(".wpglobus-gutenberg-selector-box").css({"z-index":"10000"})}),n(document).on("click",".editor-post-save-draft",function(){t.setSelectorStatus()}),n(document).on("click",".editor-post-publish-button",function(){t.setSelectorStatus()})}};WPGlobusGutenberg=n.extend({},WPGlobusGutenberg,t),WPGlobusGutenberg.init()});
|
includes/builders/gutenberg/class-wpglobus-gutenberg.php
CHANGED
@@ -37,6 +37,14 @@ class WPGlobus_Gutenberg extends WPGlobus_Builder {
|
|
37 |
'on__enqueue_scripts',
|
38 |
), 1000 );
|
39 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
40 |
/**
|
41 |
* @see wpglobus-seo\includes\class-wpglobus-seo.php
|
42 |
*/
|
@@ -107,16 +115,16 @@ class WPGlobus_Gutenberg extends WPGlobus_Builder {
|
|
107 |
<div style="<?php echo $_box_style; // WPCS: XSS ok. ?>" class="wpglobus-gutenberg-selector-box">
|
108 |
<!--suppress CssInvalidPropertyValue -->
|
109 |
<div class="wpglobus-selector-grid"
|
110 |
-
style="
|
111 |
<a style="text-decoration:none;cursor:text;" onclick="return false;"
|
112 |
-
href="#" class="wpglobus-gutenberg-selector"
|
113 |
data-language="<?php echo esc_attr( $this->language ); ?>">
|
114 |
<img <?php echo $_height . $_width; // WPCS: XSS ok. ?>
|
115 |
<?php echo $_flag_style; // WPCS: XSS ok. ?>
|
116 |
src="<?php echo esc_url( $_flag_img ); ?>"/>
|
117 |
</a>
|
118 |
<a style="text-decoration:none;cursor:text;" onclick="return false;"
|
119 |
-
href="#" class="wpglobus-gutenberg-selector"
|
120 |
data-language="<?php echo esc_attr( $this->language ); ?>">
|
121 |
<span
|
122 |
class="wpglobus-gutenberg-selector-text"><?php echo esc_html( WPGlobus::Config()->en_language_name[ $this->language ] ); ?></span>
|
@@ -139,10 +147,10 @@ class WPGlobus_Gutenberg extends WPGlobus_Builder {
|
|
139 |
<div style="<?php echo $_box_style; // WPCS: XSS ok. ?>" class="wpglobus-gutenberg-selector-box">
|
140 |
<!--suppress CssInvalidPropertyValue -->
|
141 |
<div class="wpglobus-selector-grid"
|
142 |
-
style="
|
143 |
<a style="text-decoration: none;"
|
144 |
href="<?php echo esc_url( str_replace( '{{language}}', $this->language, $url ) ); ?>"
|
145 |
-
class="wpglobus-gutenberg-selector"
|
146 |
data-language="<?php echo esc_attr( $this->language ); ?>">
|
147 |
<img <?php echo $_height . $_width; // WPCS: XSS ok. ?>
|
148 |
<?php echo $_flag_style; // WPCS: XSS ok. ?>
|
@@ -150,7 +158,7 @@ class WPGlobus_Gutenberg extends WPGlobus_Builder {
|
|
150 |
</a>
|
151 |
<a style="text-decoration: none;"
|
152 |
href="<?php echo esc_url( str_replace( '{{language}}', $this->language, $url ) ); ?>"
|
153 |
-
class="wpglobus-gutenberg-selector"
|
154 |
data-language="<?php echo esc_attr( $this->language ); ?>">
|
155 |
<span
|
156 |
class="wpglobus-gutenberg-selector-text"><?php echo esc_html( WPGlobus::Config()->en_language_name[ $this->language ] ); ?></span>
|
@@ -197,6 +205,40 @@ class WPGlobus_Gutenberg extends WPGlobus_Builder {
|
|
197 |
. ' ' . WPGlobus::Config()->en_language_name[ $this->get_current_language() ];
|
198 |
}
|
199 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
200 |
/**
|
201 |
* Enqueue scripts.
|
202 |
*
|
37 |
'on__enqueue_scripts',
|
38 |
), 1000 );
|
39 |
|
40 |
+
/**
|
41 |
+
* @since 1.9.29
|
42 |
+
*/
|
43 |
+
add_action( 'admin_print_styles', array(
|
44 |
+
$this,
|
45 |
+
'on__enqueue_styles',
|
46 |
+
) );
|
47 |
+
|
48 |
/**
|
49 |
* @see wpglobus-seo\includes\class-wpglobus-seo.php
|
50 |
*/
|
115 |
<div style="<?php echo $_box_style; // WPCS: XSS ok. ?>" class="wpglobus-gutenberg-selector-box">
|
116 |
<!--suppress CssInvalidPropertyValue -->
|
117 |
<div class="wpglobus-selector-grid"
|
118 |
+
style="">
|
119 |
<a style="text-decoration:none;cursor:text;" onclick="return false;"
|
120 |
+
href="#" class="wpglobus-gutenberg-selector wpglobus-gutenberg-selector-column-1"
|
121 |
data-language="<?php echo esc_attr( $this->language ); ?>">
|
122 |
<img <?php echo $_height . $_width; // WPCS: XSS ok. ?>
|
123 |
<?php echo $_flag_style; // WPCS: XSS ok. ?>
|
124 |
src="<?php echo esc_url( $_flag_img ); ?>"/>
|
125 |
</a>
|
126 |
<a style="text-decoration:none;cursor:text;" onclick="return false;"
|
127 |
+
href="#" class="wpglobus-gutenberg-selector wpglobus-gutenberg-selector-column-2"
|
128 |
data-language="<?php echo esc_attr( $this->language ); ?>">
|
129 |
<span
|
130 |
class="wpglobus-gutenberg-selector-text"><?php echo esc_html( WPGlobus::Config()->en_language_name[ $this->language ] ); ?></span>
|
147 |
<div style="<?php echo $_box_style; // WPCS: XSS ok. ?>" class="wpglobus-gutenberg-selector-box">
|
148 |
<!--suppress CssInvalidPropertyValue -->
|
149 |
<div class="wpglobus-selector-grid"
|
150 |
+
style="">
|
151 |
<a style="text-decoration: none;"
|
152 |
href="<?php echo esc_url( str_replace( '{{language}}', $this->language, $url ) ); ?>"
|
153 |
+
class="wpglobus-gutenberg-selector wpglobus-gutenberg-selector-column-1"
|
154 |
data-language="<?php echo esc_attr( $this->language ); ?>">
|
155 |
<img <?php echo $_height . $_width; // WPCS: XSS ok. ?>
|
156 |
<?php echo $_flag_style; // WPCS: XSS ok. ?>
|
158 |
</a>
|
159 |
<a style="text-decoration: none;"
|
160 |
href="<?php echo esc_url( str_replace( '{{language}}', $this->language, $url ) ); ?>"
|
161 |
+
class="wpglobus-gutenberg-selector wpglobus-gutenberg-selector-column-2"
|
162 |
data-language="<?php echo esc_attr( $this->language ); ?>">
|
163 |
<span
|
164 |
class="wpglobus-gutenberg-selector-text"><?php echo esc_html( WPGlobus::Config()->en_language_name[ $this->language ] ); ?></span>
|
205 |
. ' ' . WPGlobus::Config()->en_language_name[ $this->get_current_language() ];
|
206 |
}
|
207 |
|
208 |
+
/**
|
209 |
+
* Enqueue styles.
|
210 |
+
*
|
211 |
+
* @since 1.9.29
|
212 |
+
* @return void
|
213 |
+
*/
|
214 |
+
public function on__enqueue_styles() {
|
215 |
+
/** @global string $pagenow */
|
216 |
+
global $pagenow;
|
217 |
+
|
218 |
+
if ( ! in_array( $pagenow, array( 'post.php', 'post-new.php' ), true ) ) {
|
219 |
+
return;
|
220 |
+
}
|
221 |
+
|
222 |
+
// phpcs:ignore WordPress.CSRF.NonceVerification
|
223 |
+
if ( isset( $_GET['classic-editor'] ) ) {
|
224 |
+
return;
|
225 |
+
}
|
226 |
+
|
227 |
+
/**
|
228 |
+
* While testing process is run, don't add .scss and .map files.
|
229 |
+
*/
|
230 |
+
wp_register_style(
|
231 |
+
'wpglobus-gutenberg',
|
232 |
+
WPGlobus::plugin_dir_url() . 'includes/builders/gutenberg/assets/css/wpglobus-gutenberg' . WPGlobus::SCRIPT_SUFFIX() . '.css',
|
233 |
+
array(),
|
234 |
+
WPGLOBUS_VERSION,
|
235 |
+
'all'
|
236 |
+
);
|
237 |
+
wp_enqueue_style( 'wpglobus-gutenberg' );
|
238 |
+
|
239 |
+
|
240 |
+
}
|
241 |
+
|
242 |
/**
|
243 |
* Enqueue scripts.
|
244 |
*
|
languages/wpglobus-ar.po
CHANGED
@@ -288,7 +288,7 @@ msgid "Save & Reload"
|
|
288 |
msgstr ""
|
289 |
|
290 |
#: includes/admin/class-wpglobus-customize-options.php:546,
|
291 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
292 |
#: includes/class-wpglobus.php:1320, wpglobus.php:12, wpglobus.php:18
|
293 |
msgid "WPGlobus"
|
294 |
msgstr "WPGlobus"
|
@@ -824,17 +824,17 @@ msgstr ""
|
|
824 |
msgid "WPGlobus languages"
|
825 |
msgstr ""
|
826 |
|
827 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
828 |
msgid "Before switching the language, please save draft or publish."
|
829 |
msgstr ""
|
830 |
|
831 |
#. translators: Metabox title FOR language.
|
832 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
833 |
msgctxt "filter__seo_meta_box_title"
|
834 |
msgid "for"
|
835 |
msgstr ""
|
836 |
|
837 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
838 |
msgid "Page is being reloaded. Please wait..."
|
839 |
msgstr ""
|
840 |
|
288 |
msgstr ""
|
289 |
|
290 |
#: includes/admin/class-wpglobus-customize-options.php:546,
|
291 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:304,
|
292 |
#: includes/class-wpglobus.php:1320, wpglobus.php:12, wpglobus.php:18
|
293 |
msgid "WPGlobus"
|
294 |
msgstr "WPGlobus"
|
824 |
msgid "WPGlobus languages"
|
825 |
msgstr ""
|
826 |
|
827 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:136
|
828 |
msgid "Before switching the language, please save draft or publish."
|
829 |
msgstr ""
|
830 |
|
831 |
#. translators: Metabox title FOR language.
|
832 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:204
|
833 |
msgctxt "filter__seo_meta_box_title"
|
834 |
msgid "for"
|
835 |
msgstr ""
|
836 |
|
837 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:264
|
838 |
msgid "Page is being reloaded. Please wait..."
|
839 |
msgstr ""
|
840 |
|
languages/wpglobus-be.po
CHANGED
@@ -313,7 +313,7 @@ msgid "Save & Reload"
|
|
313 |
msgstr "Сохранить и перезагрузить"
|
314 |
|
315 |
#: includes/admin/class-wpglobus-customize-options.php:546,
|
316 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
317 |
#: includes/class-wpglobus.php:1320, wpglobus.php:12, wpglobus.php:18
|
318 |
msgid "WPGlobus"
|
319 |
msgstr "WPGlobus"
|
@@ -875,17 +875,17 @@ msgstr ""
|
|
875 |
msgid "WPGlobus languages"
|
876 |
msgstr ""
|
877 |
|
878 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
879 |
msgid "Before switching the language, please save draft or publish."
|
880 |
msgstr ""
|
881 |
|
882 |
#. translators: Metabox title FOR language.
|
883 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
884 |
msgctxt "filter__seo_meta_box_title"
|
885 |
msgid "for"
|
886 |
msgstr ""
|
887 |
|
888 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
889 |
msgid "Page is being reloaded. Please wait..."
|
890 |
msgstr ""
|
891 |
|
313 |
msgstr "Сохранить и перезагрузить"
|
314 |
|
315 |
#: includes/admin/class-wpglobus-customize-options.php:546,
|
316 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:304,
|
317 |
#: includes/class-wpglobus.php:1320, wpglobus.php:12, wpglobus.php:18
|
318 |
msgid "WPGlobus"
|
319 |
msgstr "WPGlobus"
|
875 |
msgid "WPGlobus languages"
|
876 |
msgstr ""
|
877 |
|
878 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:136
|
879 |
msgid "Before switching the language, please save draft or publish."
|
880 |
msgstr ""
|
881 |
|
882 |
#. translators: Metabox title FOR language.
|
883 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:204
|
884 |
msgctxt "filter__seo_meta_box_title"
|
885 |
msgid "for"
|
886 |
msgstr ""
|
887 |
|
888 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:264
|
889 |
msgid "Page is being reloaded. Please wait..."
|
890 |
msgstr ""
|
891 |
|
languages/wpglobus-bg_BG.po
CHANGED
@@ -264,7 +264,7 @@ msgid "Save & Reload"
|
|
264 |
msgstr ""
|
265 |
|
266 |
#: includes/admin/class-wpglobus-customize-options.php:546,
|
267 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
268 |
#: includes/class-wpglobus.php:1320, wpglobus.php:12, wpglobus.php:18
|
269 |
msgid "WPGlobus"
|
270 |
msgstr ""
|
@@ -800,17 +800,17 @@ msgstr ""
|
|
800 |
msgid "WPGlobus languages"
|
801 |
msgstr ""
|
802 |
|
803 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
804 |
msgid "Before switching the language, please save draft or publish."
|
805 |
msgstr ""
|
806 |
|
807 |
#. translators: Metabox title FOR language.
|
808 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
809 |
msgctxt "filter__seo_meta_box_title"
|
810 |
msgid "for"
|
811 |
msgstr ""
|
812 |
|
813 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
814 |
msgid "Page is being reloaded. Please wait..."
|
815 |
msgstr ""
|
816 |
|
264 |
msgstr ""
|
265 |
|
266 |
#: includes/admin/class-wpglobus-customize-options.php:546,
|
267 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:304,
|
268 |
#: includes/class-wpglobus.php:1320, wpglobus.php:12, wpglobus.php:18
|
269 |
msgid "WPGlobus"
|
270 |
msgstr ""
|
800 |
msgid "WPGlobus languages"
|
801 |
msgstr ""
|
802 |
|
803 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:136
|
804 |
msgid "Before switching the language, please save draft or publish."
|
805 |
msgstr ""
|
806 |
|
807 |
#. translators: Metabox title FOR language.
|
808 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:204
|
809 |
msgctxt "filter__seo_meta_box_title"
|
810 |
msgid "for"
|
811 |
msgstr ""
|
812 |
|
813 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:264
|
814 |
msgid "Page is being reloaded. Please wait..."
|
815 |
msgstr ""
|
816 |
|
languages/wpglobus-de_CH.po
CHANGED
@@ -284,7 +284,7 @@ msgid "Save & Reload"
|
|
284 |
msgstr ""
|
285 |
|
286 |
#: includes/admin/class-wpglobus-customize-options.php:546,
|
287 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
288 |
#: includes/class-wpglobus.php:1320, wpglobus.php:12, wpglobus.php:18
|
289 |
msgid "WPGlobus"
|
290 |
msgstr "WPGlobus"
|
@@ -836,17 +836,17 @@ msgstr ""
|
|
836 |
msgid "WPGlobus languages"
|
837 |
msgstr ""
|
838 |
|
839 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
840 |
msgid "Before switching the language, please save draft or publish."
|
841 |
msgstr ""
|
842 |
|
843 |
#. translators: Metabox title FOR language.
|
844 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
845 |
msgctxt "filter__seo_meta_box_title"
|
846 |
msgid "for"
|
847 |
msgstr ""
|
848 |
|
849 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
850 |
msgid "Page is being reloaded. Please wait..."
|
851 |
msgstr ""
|
852 |
|
284 |
msgstr ""
|
285 |
|
286 |
#: includes/admin/class-wpglobus-customize-options.php:546,
|
287 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:304,
|
288 |
#: includes/class-wpglobus.php:1320, wpglobus.php:12, wpglobus.php:18
|
289 |
msgid "WPGlobus"
|
290 |
msgstr "WPGlobus"
|
836 |
msgid "WPGlobus languages"
|
837 |
msgstr ""
|
838 |
|
839 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:136
|
840 |
msgid "Before switching the language, please save draft or publish."
|
841 |
msgstr ""
|
842 |
|
843 |
#. translators: Metabox title FOR language.
|
844 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:204
|
845 |
msgctxt "filter__seo_meta_box_title"
|
846 |
msgid "for"
|
847 |
msgstr ""
|
848 |
|
849 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:264
|
850 |
msgid "Page is being reloaded. Please wait..."
|
851 |
msgstr ""
|
852 |
|
languages/wpglobus-de_DE.po
CHANGED
@@ -283,7 +283,7 @@ msgid "Save & Reload"
|
|
283 |
msgstr ""
|
284 |
|
285 |
#: includes/admin/class-wpglobus-customize-options.php:546,
|
286 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
287 |
#: includes/class-wpglobus.php:1320, wpglobus.php:12, wpglobus.php:18
|
288 |
msgid "WPGlobus"
|
289 |
msgstr "WPGlobus"
|
@@ -835,17 +835,17 @@ msgstr ""
|
|
835 |
msgid "WPGlobus languages"
|
836 |
msgstr ""
|
837 |
|
838 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
839 |
msgid "Before switching the language, please save draft or publish."
|
840 |
msgstr ""
|
841 |
|
842 |
#. translators: Metabox title FOR language.
|
843 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
844 |
msgctxt "filter__seo_meta_box_title"
|
845 |
msgid "for"
|
846 |
msgstr ""
|
847 |
|
848 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
849 |
msgid "Page is being reloaded. Please wait..."
|
850 |
msgstr ""
|
851 |
|
283 |
msgstr ""
|
284 |
|
285 |
#: includes/admin/class-wpglobus-customize-options.php:546,
|
286 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:304,
|
287 |
#: includes/class-wpglobus.php:1320, wpglobus.php:12, wpglobus.php:18
|
288 |
msgid "WPGlobus"
|
289 |
msgstr "WPGlobus"
|
835 |
msgid "WPGlobus languages"
|
836 |
msgstr ""
|
837 |
|
838 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:136
|
839 |
msgid "Before switching the language, please save draft or publish."
|
840 |
msgstr ""
|
841 |
|
842 |
#. translators: Metabox title FOR language.
|
843 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:204
|
844 |
msgctxt "filter__seo_meta_box_title"
|
845 |
msgid "for"
|
846 |
msgstr ""
|
847 |
|
848 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:264
|
849 |
msgid "Page is being reloaded. Please wait..."
|
850 |
msgstr ""
|
851 |
|
languages/wpglobus-el.po
CHANGED
@@ -265,7 +265,7 @@ msgid "Save & Reload"
|
|
265 |
msgstr ""
|
266 |
|
267 |
#: includes/admin/class-wpglobus-customize-options.php:546,
|
268 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
269 |
#: includes/class-wpglobus.php:1320, wpglobus.php:12, wpglobus.php:18
|
270 |
msgid "WPGlobus"
|
271 |
msgstr "WPGlobus"
|
@@ -801,17 +801,17 @@ msgstr ""
|
|
801 |
msgid "WPGlobus languages"
|
802 |
msgstr ""
|
803 |
|
804 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
805 |
msgid "Before switching the language, please save draft or publish."
|
806 |
msgstr ""
|
807 |
|
808 |
#. translators: Metabox title FOR language.
|
809 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
810 |
msgctxt "filter__seo_meta_box_title"
|
811 |
msgid "for"
|
812 |
msgstr ""
|
813 |
|
814 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
815 |
msgid "Page is being reloaded. Please wait..."
|
816 |
msgstr ""
|
817 |
|
265 |
msgstr ""
|
266 |
|
267 |
#: includes/admin/class-wpglobus-customize-options.php:546,
|
268 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:304,
|
269 |
#: includes/class-wpglobus.php:1320, wpglobus.php:12, wpglobus.php:18
|
270 |
msgid "WPGlobus"
|
271 |
msgstr "WPGlobus"
|
801 |
msgid "WPGlobus languages"
|
802 |
msgstr ""
|
803 |
|
804 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:136
|
805 |
msgid "Before switching the language, please save draft or publish."
|
806 |
msgstr ""
|
807 |
|
808 |
#. translators: Metabox title FOR language.
|
809 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:204
|
810 |
msgctxt "filter__seo_meta_box_title"
|
811 |
msgid "for"
|
812 |
msgstr ""
|
813 |
|
814 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:264
|
815 |
msgid "Page is being reloaded. Please wait..."
|
816 |
msgstr ""
|
817 |
|
languages/wpglobus-en_AU.po
CHANGED
@@ -310,7 +310,7 @@ msgid "Save & Reload"
|
|
310 |
msgstr "Save & Reload"
|
311 |
|
312 |
#: includes/admin/class-wpglobus-customize-options.php:546,
|
313 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
314 |
#: includes/class-wpglobus.php:1320, wpglobus.php:12, wpglobus.php:18
|
315 |
msgid "WPGlobus"
|
316 |
msgstr "WPGlobus"
|
@@ -875,17 +875,17 @@ msgstr ""
|
|
875 |
msgid "WPGlobus languages"
|
876 |
msgstr ""
|
877 |
|
878 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
879 |
msgid "Before switching the language, please save draft or publish."
|
880 |
msgstr ""
|
881 |
|
882 |
#. translators: Metabox title FOR language.
|
883 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
884 |
msgctxt "filter__seo_meta_box_title"
|
885 |
msgid "for"
|
886 |
msgstr ""
|
887 |
|
888 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
889 |
msgid "Page is being reloaded. Please wait..."
|
890 |
msgstr ""
|
891 |
|
310 |
msgstr "Save & Reload"
|
311 |
|
312 |
#: includes/admin/class-wpglobus-customize-options.php:546,
|
313 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:304,
|
314 |
#: includes/class-wpglobus.php:1320, wpglobus.php:12, wpglobus.php:18
|
315 |
msgid "WPGlobus"
|
316 |
msgstr "WPGlobus"
|
875 |
msgid "WPGlobus languages"
|
876 |
msgstr ""
|
877 |
|
878 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:136
|
879 |
msgid "Before switching the language, please save draft or publish."
|
880 |
msgstr ""
|
881 |
|
882 |
#. translators: Metabox title FOR language.
|
883 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:204
|
884 |
msgctxt "filter__seo_meta_box_title"
|
885 |
msgid "for"
|
886 |
msgstr ""
|
887 |
|
888 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:264
|
889 |
msgid "Page is being reloaded. Please wait..."
|
890 |
msgstr ""
|
891 |
|
languages/wpglobus-en_CA.po
CHANGED
@@ -309,7 +309,7 @@ msgid "Save & Reload"
|
|
309 |
msgstr "Save & Reload"
|
310 |
|
311 |
#: includes/admin/class-wpglobus-customize-options.php:546,
|
312 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
313 |
#: includes/class-wpglobus.php:1320, wpglobus.php:12, wpglobus.php:18
|
314 |
msgid "WPGlobus"
|
315 |
msgstr "WPGlobus"
|
@@ -874,17 +874,17 @@ msgstr ""
|
|
874 |
msgid "WPGlobus languages"
|
875 |
msgstr ""
|
876 |
|
877 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
878 |
msgid "Before switching the language, please save draft or publish."
|
879 |
msgstr ""
|
880 |
|
881 |
#. translators: Metabox title FOR language.
|
882 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
883 |
msgctxt "filter__seo_meta_box_title"
|
884 |
msgid "for"
|
885 |
msgstr ""
|
886 |
|
887 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
888 |
msgid "Page is being reloaded. Please wait..."
|
889 |
msgstr ""
|
890 |
|
309 |
msgstr "Save & Reload"
|
310 |
|
311 |
#: includes/admin/class-wpglobus-customize-options.php:546,
|
312 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:304,
|
313 |
#: includes/class-wpglobus.php:1320, wpglobus.php:12, wpglobus.php:18
|
314 |
msgid "WPGlobus"
|
315 |
msgstr "WPGlobus"
|
874 |
msgid "WPGlobus languages"
|
875 |
msgstr ""
|
876 |
|
877 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:136
|
878 |
msgid "Before switching the language, please save draft or publish."
|
879 |
msgstr ""
|
880 |
|
881 |
#. translators: Metabox title FOR language.
|
882 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:204
|
883 |
msgctxt "filter__seo_meta_box_title"
|
884 |
msgid "for"
|
885 |
msgstr ""
|
886 |
|
887 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:264
|
888 |
msgid "Page is being reloaded. Please wait..."
|
889 |
msgstr ""
|
890 |
|
languages/wpglobus-en_GB.po
CHANGED
@@ -310,7 +310,7 @@ msgid "Save & Reload"
|
|
310 |
msgstr "Save & Reload"
|
311 |
|
312 |
#: includes/admin/class-wpglobus-customize-options.php:546,
|
313 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
314 |
#: includes/class-wpglobus.php:1320, wpglobus.php:12, wpglobus.php:18
|
315 |
msgid "WPGlobus"
|
316 |
msgstr "WPGlobus"
|
@@ -875,17 +875,17 @@ msgstr ""
|
|
875 |
msgid "WPGlobus languages"
|
876 |
msgstr ""
|
877 |
|
878 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
879 |
msgid "Before switching the language, please save draft or publish."
|
880 |
msgstr ""
|
881 |
|
882 |
#. translators: Metabox title FOR language.
|
883 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
884 |
msgctxt "filter__seo_meta_box_title"
|
885 |
msgid "for"
|
886 |
msgstr ""
|
887 |
|
888 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
889 |
msgid "Page is being reloaded. Please wait..."
|
890 |
msgstr ""
|
891 |
|
310 |
msgstr "Save & Reload"
|
311 |
|
312 |
#: includes/admin/class-wpglobus-customize-options.php:546,
|
313 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:304,
|
314 |
#: includes/class-wpglobus.php:1320, wpglobus.php:12, wpglobus.php:18
|
315 |
msgid "WPGlobus"
|
316 |
msgstr "WPGlobus"
|
875 |
msgid "WPGlobus languages"
|
876 |
msgstr ""
|
877 |
|
878 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:136
|
879 |
msgid "Before switching the language, please save draft or publish."
|
880 |
msgstr ""
|
881 |
|
882 |
#. translators: Metabox title FOR language.
|
883 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:204
|
884 |
msgctxt "filter__seo_meta_box_title"
|
885 |
msgid "for"
|
886 |
msgstr ""
|
887 |
|
888 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:264
|
889 |
msgid "Page is being reloaded. Please wait..."
|
890 |
msgstr ""
|
891 |
|
languages/wpglobus-en_NZ.po
CHANGED
@@ -309,7 +309,7 @@ msgid "Save & Reload"
|
|
309 |
msgstr "Save & Reload"
|
310 |
|
311 |
#: includes/admin/class-wpglobus-customize-options.php:546,
|
312 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
313 |
#: includes/class-wpglobus.php:1320, wpglobus.php:12, wpglobus.php:18
|
314 |
msgid "WPGlobus"
|
315 |
msgstr "WPGlobus"
|
@@ -874,17 +874,17 @@ msgstr ""
|
|
874 |
msgid "WPGlobus languages"
|
875 |
msgstr ""
|
876 |
|
877 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
878 |
msgid "Before switching the language, please save draft or publish."
|
879 |
msgstr ""
|
880 |
|
881 |
#. translators: Metabox title FOR language.
|
882 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
883 |
msgctxt "filter__seo_meta_box_title"
|
884 |
msgid "for"
|
885 |
msgstr ""
|
886 |
|
887 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
888 |
msgid "Page is being reloaded. Please wait..."
|
889 |
msgstr ""
|
890 |
|
309 |
msgstr "Save & Reload"
|
310 |
|
311 |
#: includes/admin/class-wpglobus-customize-options.php:546,
|
312 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:304,
|
313 |
#: includes/class-wpglobus.php:1320, wpglobus.php:12, wpglobus.php:18
|
314 |
msgid "WPGlobus"
|
315 |
msgstr "WPGlobus"
|
874 |
msgid "WPGlobus languages"
|
875 |
msgstr ""
|
876 |
|
877 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:136
|
878 |
msgid "Before switching the language, please save draft or publish."
|
879 |
msgstr ""
|
880 |
|
881 |
#. translators: Metabox title FOR language.
|
882 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:204
|
883 |
msgctxt "filter__seo_meta_box_title"
|
884 |
msgid "for"
|
885 |
msgstr ""
|
886 |
|
887 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:264
|
888 |
msgid "Page is being reloaded. Please wait..."
|
889 |
msgstr ""
|
890 |
|
languages/wpglobus-en_US.po
CHANGED
@@ -308,7 +308,7 @@ msgid "Save & Reload"
|
|
308 |
msgstr "Save & Reload"
|
309 |
|
310 |
#: includes/admin/class-wpglobus-customize-options.php:546,
|
311 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
312 |
#: includes/class-wpglobus.php:1320, wpglobus.php:12, wpglobus.php:18
|
313 |
msgid "WPGlobus"
|
314 |
msgstr "WPGlobus"
|
@@ -875,17 +875,17 @@ msgstr ""
|
|
875 |
msgid "WPGlobus languages"
|
876 |
msgstr ""
|
877 |
|
878 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
879 |
msgid "Before switching the language, please save draft or publish."
|
880 |
msgstr ""
|
881 |
|
882 |
#. translators: Metabox title FOR language.
|
883 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
884 |
msgctxt "filter__seo_meta_box_title"
|
885 |
msgid "for"
|
886 |
msgstr ""
|
887 |
|
888 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
889 |
msgid "Page is being reloaded. Please wait..."
|
890 |
msgstr ""
|
891 |
|
308 |
msgstr "Save & Reload"
|
309 |
|
310 |
#: includes/admin/class-wpglobus-customize-options.php:546,
|
311 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:304,
|
312 |
#: includes/class-wpglobus.php:1320, wpglobus.php:12, wpglobus.php:18
|
313 |
msgid "WPGlobus"
|
314 |
msgstr "WPGlobus"
|
875 |
msgid "WPGlobus languages"
|
876 |
msgstr ""
|
877 |
|
878 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:136
|
879 |
msgid "Before switching the language, please save draft or publish."
|
880 |
msgstr ""
|
881 |
|
882 |
#. translators: Metabox title FOR language.
|
883 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:204
|
884 |
msgctxt "filter__seo_meta_box_title"
|
885 |
msgid "for"
|
886 |
msgstr ""
|
887 |
|
888 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:264
|
889 |
msgid "Page is being reloaded. Please wait..."
|
890 |
msgstr ""
|
891 |
|
languages/wpglobus-en_ZA.po
CHANGED
@@ -309,7 +309,7 @@ msgid "Save & Reload"
|
|
309 |
msgstr "Save & Reload"
|
310 |
|
311 |
#: includes/admin/class-wpglobus-customize-options.php:546,
|
312 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
313 |
#: includes/class-wpglobus.php:1320, wpglobus.php:12, wpglobus.php:18
|
314 |
msgid "WPGlobus"
|
315 |
msgstr "WPGlobus"
|
@@ -874,17 +874,17 @@ msgstr ""
|
|
874 |
msgid "WPGlobus languages"
|
875 |
msgstr ""
|
876 |
|
877 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
878 |
msgid "Before switching the language, please save draft or publish."
|
879 |
msgstr ""
|
880 |
|
881 |
#. translators: Metabox title FOR language.
|
882 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
883 |
msgctxt "filter__seo_meta_box_title"
|
884 |
msgid "for"
|
885 |
msgstr ""
|
886 |
|
887 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
888 |
msgid "Page is being reloaded. Please wait..."
|
889 |
msgstr ""
|
890 |
|
309 |
msgstr "Save & Reload"
|
310 |
|
311 |
#: includes/admin/class-wpglobus-customize-options.php:546,
|
312 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:304,
|
313 |
#: includes/class-wpglobus.php:1320, wpglobus.php:12, wpglobus.php:18
|
314 |
msgid "WPGlobus"
|
315 |
msgstr "WPGlobus"
|
874 |
msgid "WPGlobus languages"
|
875 |
msgstr ""
|
876 |
|
877 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:136
|
878 |
msgid "Before switching the language, please save draft or publish."
|
879 |
msgstr ""
|
880 |
|
881 |
#. translators: Metabox title FOR language.
|
882 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:204
|
883 |
msgctxt "filter__seo_meta_box_title"
|
884 |
msgid "for"
|
885 |
msgstr ""
|
886 |
|
887 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:264
|
888 |
msgid "Page is being reloaded. Please wait..."
|
889 |
msgstr ""
|
890 |
|
languages/wpglobus-es_AR.po
CHANGED
@@ -281,7 +281,7 @@ msgid "Save & Reload"
|
|
281 |
msgstr ""
|
282 |
|
283 |
#: includes/admin/class-wpglobus-customize-options.php:546,
|
284 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
285 |
#: includes/class-wpglobus.php:1320, wpglobus.php:12, wpglobus.php:18
|
286 |
msgid "WPGlobus"
|
287 |
msgstr ""
|
@@ -835,17 +835,17 @@ msgstr ""
|
|
835 |
msgid "WPGlobus languages"
|
836 |
msgstr ""
|
837 |
|
838 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
839 |
msgid "Before switching the language, please save draft or publish."
|
840 |
msgstr ""
|
841 |
|
842 |
#. translators: Metabox title FOR language.
|
843 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
844 |
msgctxt "filter__seo_meta_box_title"
|
845 |
msgid "for"
|
846 |
msgstr ""
|
847 |
|
848 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
849 |
msgid "Page is being reloaded. Please wait..."
|
850 |
msgstr ""
|
851 |
|
281 |
msgstr ""
|
282 |
|
283 |
#: includes/admin/class-wpglobus-customize-options.php:546,
|
284 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:304,
|
285 |
#: includes/class-wpglobus.php:1320, wpglobus.php:12, wpglobus.php:18
|
286 |
msgid "WPGlobus"
|
287 |
msgstr ""
|
835 |
msgid "WPGlobus languages"
|
836 |
msgstr ""
|
837 |
|
838 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:136
|
839 |
msgid "Before switching the language, please save draft or publish."
|
840 |
msgstr ""
|
841 |
|
842 |
#. translators: Metabox title FOR language.
|
843 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:204
|
844 |
msgctxt "filter__seo_meta_box_title"
|
845 |
msgid "for"
|
846 |
msgstr ""
|
847 |
|
848 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:264
|
849 |
msgid "Page is being reloaded. Please wait..."
|
850 |
msgstr ""
|
851 |
|
languages/wpglobus-es_CL.po
CHANGED
@@ -281,7 +281,7 @@ msgid "Save & Reload"
|
|
281 |
msgstr ""
|
282 |
|
283 |
#: includes/admin/class-wpglobus-customize-options.php:546,
|
284 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
285 |
#: includes/class-wpglobus.php:1320, wpglobus.php:12, wpglobus.php:18
|
286 |
msgid "WPGlobus"
|
287 |
msgstr ""
|
@@ -835,17 +835,17 @@ msgstr ""
|
|
835 |
msgid "WPGlobus languages"
|
836 |
msgstr ""
|
837 |
|
838 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
839 |
msgid "Before switching the language, please save draft or publish."
|
840 |
msgstr ""
|
841 |
|
842 |
#. translators: Metabox title FOR language.
|
843 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
844 |
msgctxt "filter__seo_meta_box_title"
|
845 |
msgid "for"
|
846 |
msgstr ""
|
847 |
|
848 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
849 |
msgid "Page is being reloaded. Please wait..."
|
850 |
msgstr ""
|
851 |
|
281 |
msgstr ""
|
282 |
|
283 |
#: includes/admin/class-wpglobus-customize-options.php:546,
|
284 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:304,
|
285 |
#: includes/class-wpglobus.php:1320, wpglobus.php:12, wpglobus.php:18
|
286 |
msgid "WPGlobus"
|
287 |
msgstr ""
|
835 |
msgid "WPGlobus languages"
|
836 |
msgstr ""
|
837 |
|
838 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:136
|
839 |
msgid "Before switching the language, please save draft or publish."
|
840 |
msgstr ""
|
841 |
|
842 |
#. translators: Metabox title FOR language.
|
843 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:204
|
844 |
msgctxt "filter__seo_meta_box_title"
|
845 |
msgid "for"
|
846 |
msgstr ""
|
847 |
|
848 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:264
|
849 |
msgid "Page is being reloaded. Please wait..."
|
850 |
msgstr ""
|
851 |
|
languages/wpglobus-es_CO.po
CHANGED
@@ -281,7 +281,7 @@ msgid "Save & Reload"
|
|
281 |
msgstr ""
|
282 |
|
283 |
#: includes/admin/class-wpglobus-customize-options.php:546,
|
284 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
285 |
#: includes/class-wpglobus.php:1320, wpglobus.php:12, wpglobus.php:18
|
286 |
msgid "WPGlobus"
|
287 |
msgstr ""
|
@@ -835,17 +835,17 @@ msgstr ""
|
|
835 |
msgid "WPGlobus languages"
|
836 |
msgstr ""
|
837 |
|
838 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
839 |
msgid "Before switching the language, please save draft or publish."
|
840 |
msgstr ""
|
841 |
|
842 |
#. translators: Metabox title FOR language.
|
843 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
844 |
msgctxt "filter__seo_meta_box_title"
|
845 |
msgid "for"
|
846 |
msgstr ""
|
847 |
|
848 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
849 |
msgid "Page is being reloaded. Please wait..."
|
850 |
msgstr ""
|
851 |
|
281 |
msgstr ""
|
282 |
|
283 |
#: includes/admin/class-wpglobus-customize-options.php:546,
|
284 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:304,
|
285 |
#: includes/class-wpglobus.php:1320, wpglobus.php:12, wpglobus.php:18
|
286 |
msgid "WPGlobus"
|
287 |
msgstr ""
|
835 |
msgid "WPGlobus languages"
|
836 |
msgstr ""
|
837 |
|
838 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:136
|
839 |
msgid "Before switching the language, please save draft or publish."
|
840 |
msgstr ""
|
841 |
|
842 |
#. translators: Metabox title FOR language.
|
843 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:204
|
844 |
msgctxt "filter__seo_meta_box_title"
|
845 |
msgid "for"
|
846 |
msgstr ""
|
847 |
|
848 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:264
|
849 |
msgid "Page is being reloaded. Please wait..."
|
850 |
msgstr ""
|
851 |
|
languages/wpglobus-es_CR.po
CHANGED
@@ -281,7 +281,7 @@ msgid "Save & Reload"
|
|
281 |
msgstr ""
|
282 |
|
283 |
#: includes/admin/class-wpglobus-customize-options.php:546,
|
284 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
285 |
#: includes/class-wpglobus.php:1320, wpglobus.php:12, wpglobus.php:18
|
286 |
msgid "WPGlobus"
|
287 |
msgstr ""
|
@@ -835,17 +835,17 @@ msgstr ""
|
|
835 |
msgid "WPGlobus languages"
|
836 |
msgstr ""
|
837 |
|
838 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
839 |
msgid "Before switching the language, please save draft or publish."
|
840 |
msgstr ""
|
841 |
|
842 |
#. translators: Metabox title FOR language.
|
843 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
844 |
msgctxt "filter__seo_meta_box_title"
|
845 |
msgid "for"
|
846 |
msgstr ""
|
847 |
|
848 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
849 |
msgid "Page is being reloaded. Please wait..."
|
850 |
msgstr ""
|
851 |
|
281 |
msgstr ""
|
282 |
|
283 |
#: includes/admin/class-wpglobus-customize-options.php:546,
|
284 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:304,
|
285 |
#: includes/class-wpglobus.php:1320, wpglobus.php:12, wpglobus.php:18
|
286 |
msgid "WPGlobus"
|
287 |
msgstr ""
|
835 |
msgid "WPGlobus languages"
|
836 |
msgstr ""
|
837 |
|
838 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:136
|
839 |
msgid "Before switching the language, please save draft or publish."
|
840 |
msgstr ""
|
841 |
|
842 |
#. translators: Metabox title FOR language.
|
843 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:204
|
844 |
msgctxt "filter__seo_meta_box_title"
|
845 |
msgid "for"
|
846 |
msgstr ""
|
847 |
|
848 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:264
|
849 |
msgid "Page is being reloaded. Please wait..."
|
850 |
msgstr ""
|
851 |
|
languages/wpglobus-es_ES.po
CHANGED
@@ -281,7 +281,7 @@ msgid "Save & Reload"
|
|
281 |
msgstr ""
|
282 |
|
283 |
#: includes/admin/class-wpglobus-customize-options.php:546,
|
284 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
285 |
#: includes/class-wpglobus.php:1320, wpglobus.php:12, wpglobus.php:18
|
286 |
msgid "WPGlobus"
|
287 |
msgstr ""
|
@@ -835,17 +835,17 @@ msgstr ""
|
|
835 |
msgid "WPGlobus languages"
|
836 |
msgstr ""
|
837 |
|
838 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
839 |
msgid "Before switching the language, please save draft or publish."
|
840 |
msgstr ""
|
841 |
|
842 |
#. translators: Metabox title FOR language.
|
843 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
844 |
msgctxt "filter__seo_meta_box_title"
|
845 |
msgid "for"
|
846 |
msgstr ""
|
847 |
|
848 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
849 |
msgid "Page is being reloaded. Please wait..."
|
850 |
msgstr ""
|
851 |
|
281 |
msgstr ""
|
282 |
|
283 |
#: includes/admin/class-wpglobus-customize-options.php:546,
|
284 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:304,
|
285 |
#: includes/class-wpglobus.php:1320, wpglobus.php:12, wpglobus.php:18
|
286 |
msgid "WPGlobus"
|
287 |
msgstr ""
|
835 |
msgid "WPGlobus languages"
|
836 |
msgstr ""
|
837 |
|
838 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:136
|
839 |
msgid "Before switching the language, please save draft or publish."
|
840 |
msgstr ""
|
841 |
|
842 |
#. translators: Metabox title FOR language.
|
843 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:204
|
844 |
msgctxt "filter__seo_meta_box_title"
|
845 |
msgid "for"
|
846 |
msgstr ""
|
847 |
|
848 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:264
|
849 |
msgid "Page is being reloaded. Please wait..."
|
850 |
msgstr ""
|
851 |
|
languages/wpglobus-es_GT.po
CHANGED
@@ -281,7 +281,7 @@ msgid "Save & Reload"
|
|
281 |
msgstr ""
|
282 |
|
283 |
#: includes/admin/class-wpglobus-customize-options.php:546,
|
284 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
285 |
#: includes/class-wpglobus.php:1320, wpglobus.php:12, wpglobus.php:18
|
286 |
msgid "WPGlobus"
|
287 |
msgstr ""
|
@@ -835,17 +835,17 @@ msgstr ""
|
|
835 |
msgid "WPGlobus languages"
|
836 |
msgstr ""
|
837 |
|
838 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
839 |
msgid "Before switching the language, please save draft or publish."
|
840 |
msgstr ""
|
841 |
|
842 |
#. translators: Metabox title FOR language.
|
843 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
844 |
msgctxt "filter__seo_meta_box_title"
|
845 |
msgid "for"
|
846 |
msgstr ""
|
847 |
|
848 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
849 |
msgid "Page is being reloaded. Please wait..."
|
850 |
msgstr ""
|
851 |
|
281 |
msgstr ""
|
282 |
|
283 |
#: includes/admin/class-wpglobus-customize-options.php:546,
|
284 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:304,
|
285 |
#: includes/class-wpglobus.php:1320, wpglobus.php:12, wpglobus.php:18
|
286 |
msgid "WPGlobus"
|
287 |
msgstr ""
|
835 |
msgid "WPGlobus languages"
|
836 |
msgstr ""
|
837 |
|
838 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:136
|
839 |
msgid "Before switching the language, please save draft or publish."
|
840 |
msgstr ""
|
841 |
|
842 |
#. translators: Metabox title FOR language.
|
843 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:204
|
844 |
msgctxt "filter__seo_meta_box_title"
|
845 |
msgid "for"
|
846 |
msgstr ""
|
847 |
|
848 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:264
|
849 |
msgid "Page is being reloaded. Please wait..."
|
850 |
msgstr ""
|
851 |
|
languages/wpglobus-es_MX.po
CHANGED
@@ -281,7 +281,7 @@ msgid "Save & Reload"
|
|
281 |
msgstr ""
|
282 |
|
283 |
#: includes/admin/class-wpglobus-customize-options.php:546,
|
284 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
285 |
#: includes/class-wpglobus.php:1320, wpglobus.php:12, wpglobus.php:18
|
286 |
msgid "WPGlobus"
|
287 |
msgstr ""
|
@@ -835,17 +835,17 @@ msgstr ""
|
|
835 |
msgid "WPGlobus languages"
|
836 |
msgstr ""
|
837 |
|
838 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
839 |
msgid "Before switching the language, please save draft or publish."
|
840 |
msgstr ""
|
841 |
|
842 |
#. translators: Metabox title FOR language.
|
843 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
844 |
msgctxt "filter__seo_meta_box_title"
|
845 |
msgid "for"
|
846 |
msgstr ""
|
847 |
|
848 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
849 |
msgid "Page is being reloaded. Please wait..."
|
850 |
msgstr ""
|
851 |
|
281 |
msgstr ""
|
282 |
|
283 |
#: includes/admin/class-wpglobus-customize-options.php:546,
|
284 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:304,
|
285 |
#: includes/class-wpglobus.php:1320, wpglobus.php:12, wpglobus.php:18
|
286 |
msgid "WPGlobus"
|
287 |
msgstr ""
|
835 |
msgid "WPGlobus languages"
|
836 |
msgstr ""
|
837 |
|
838 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:136
|
839 |
msgid "Before switching the language, please save draft or publish."
|
840 |
msgstr ""
|
841 |
|
842 |
#. translators: Metabox title FOR language.
|
843 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:204
|
844 |
msgctxt "filter__seo_meta_box_title"
|
845 |
msgid "for"
|
846 |
msgstr ""
|
847 |
|
848 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:264
|
849 |
msgid "Page is being reloaded. Please wait..."
|
850 |
msgstr ""
|
851 |
|
languages/wpglobus-es_PE.po
CHANGED
@@ -281,7 +281,7 @@ msgid "Save & Reload"
|
|
281 |
msgstr ""
|
282 |
|
283 |
#: includes/admin/class-wpglobus-customize-options.php:546,
|
284 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
285 |
#: includes/class-wpglobus.php:1320, wpglobus.php:12, wpglobus.php:18
|
286 |
msgid "WPGlobus"
|
287 |
msgstr ""
|
@@ -835,17 +835,17 @@ msgstr ""
|
|
835 |
msgid "WPGlobus languages"
|
836 |
msgstr ""
|
837 |
|
838 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
839 |
msgid "Before switching the language, please save draft or publish."
|
840 |
msgstr ""
|
841 |
|
842 |
#. translators: Metabox title FOR language.
|
843 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
844 |
msgctxt "filter__seo_meta_box_title"
|
845 |
msgid "for"
|
846 |
msgstr ""
|
847 |
|
848 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
849 |
msgid "Page is being reloaded. Please wait..."
|
850 |
msgstr ""
|
851 |
|
281 |
msgstr ""
|
282 |
|
283 |
#: includes/admin/class-wpglobus-customize-options.php:546,
|
284 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:304,
|
285 |
#: includes/class-wpglobus.php:1320, wpglobus.php:12, wpglobus.php:18
|
286 |
msgid "WPGlobus"
|
287 |
msgstr ""
|
835 |
msgid "WPGlobus languages"
|
836 |
msgstr ""
|
837 |
|
838 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:136
|
839 |
msgid "Before switching the language, please save draft or publish."
|
840 |
msgstr ""
|
841 |
|
842 |
#. translators: Metabox title FOR language.
|
843 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:204
|
844 |
msgctxt "filter__seo_meta_box_title"
|
845 |
msgid "for"
|
846 |
msgstr ""
|
847 |
|
848 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:264
|
849 |
msgid "Page is being reloaded. Please wait..."
|
850 |
msgstr ""
|
851 |
|
languages/wpglobus-es_PR.po
CHANGED
@@ -281,7 +281,7 @@ msgid "Save & Reload"
|
|
281 |
msgstr ""
|
282 |
|
283 |
#: includes/admin/class-wpglobus-customize-options.php:546,
|
284 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
285 |
#: includes/class-wpglobus.php:1320, wpglobus.php:12, wpglobus.php:18
|
286 |
msgid "WPGlobus"
|
287 |
msgstr ""
|
@@ -835,17 +835,17 @@ msgstr ""
|
|
835 |
msgid "WPGlobus languages"
|
836 |
msgstr ""
|
837 |
|
838 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
839 |
msgid "Before switching the language, please save draft or publish."
|
840 |
msgstr ""
|
841 |
|
842 |
#. translators: Metabox title FOR language.
|
843 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
844 |
msgctxt "filter__seo_meta_box_title"
|
845 |
msgid "for"
|
846 |
msgstr ""
|
847 |
|
848 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
849 |
msgid "Page is being reloaded. Please wait..."
|
850 |
msgstr ""
|
851 |
|
281 |
msgstr ""
|
282 |
|
283 |
#: includes/admin/class-wpglobus-customize-options.php:546,
|
284 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:304,
|
285 |
#: includes/class-wpglobus.php:1320, wpglobus.php:12, wpglobus.php:18
|
286 |
msgid "WPGlobus"
|
287 |
msgstr ""
|
835 |
msgid "WPGlobus languages"
|
836 |
msgstr ""
|
837 |
|
838 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:136
|
839 |
msgid "Before switching the language, please save draft or publish."
|
840 |
msgstr ""
|
841 |
|
842 |
#. translators: Metabox title FOR language.
|
843 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:204
|
844 |
msgctxt "filter__seo_meta_box_title"
|
845 |
msgid "for"
|
846 |
msgstr ""
|
847 |
|
848 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:264
|
849 |
msgid "Page is being reloaded. Please wait..."
|
850 |
msgstr ""
|
851 |
|
languages/wpglobus-es_VE.po
CHANGED
@@ -281,7 +281,7 @@ msgid "Save & Reload"
|
|
281 |
msgstr ""
|
282 |
|
283 |
#: includes/admin/class-wpglobus-customize-options.php:546,
|
284 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
285 |
#: includes/class-wpglobus.php:1320, wpglobus.php:12, wpglobus.php:18
|
286 |
msgid "WPGlobus"
|
287 |
msgstr ""
|
@@ -835,17 +835,17 @@ msgstr ""
|
|
835 |
msgid "WPGlobus languages"
|
836 |
msgstr ""
|
837 |
|
838 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
839 |
msgid "Before switching the language, please save draft or publish."
|
840 |
msgstr ""
|
841 |
|
842 |
#. translators: Metabox title FOR language.
|
843 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
844 |
msgctxt "filter__seo_meta_box_title"
|
845 |
msgid "for"
|
846 |
msgstr ""
|
847 |
|
848 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
849 |
msgid "Page is being reloaded. Please wait..."
|
850 |
msgstr ""
|
851 |
|
281 |
msgstr ""
|
282 |
|
283 |
#: includes/admin/class-wpglobus-customize-options.php:546,
|
284 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:304,
|
285 |
#: includes/class-wpglobus.php:1320, wpglobus.php:12, wpglobus.php:18
|
286 |
msgid "WPGlobus"
|
287 |
msgstr ""
|
835 |
msgid "WPGlobus languages"
|
836 |
msgstr ""
|
837 |
|
838 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:136
|
839 |
msgid "Before switching the language, please save draft or publish."
|
840 |
msgstr ""
|
841 |
|
842 |
#. translators: Metabox title FOR language.
|
843 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:204
|
844 |
msgctxt "filter__seo_meta_box_title"
|
845 |
msgid "for"
|
846 |
msgstr ""
|
847 |
|
848 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:264
|
849 |
msgid "Page is being reloaded. Please wait..."
|
850 |
msgstr ""
|
851 |
|
languages/wpglobus-et.po
CHANGED
@@ -265,7 +265,7 @@ msgid "Save & Reload"
|
|
265 |
msgstr "Salvesta ja laadi uuesti"
|
266 |
|
267 |
#: includes/admin/class-wpglobus-customize-options.php:546,
|
268 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
269 |
#: includes/class-wpglobus.php:1320, wpglobus.php:12, wpglobus.php:18
|
270 |
msgid "WPGlobus"
|
271 |
msgstr "WPGlobus"
|
@@ -801,17 +801,17 @@ msgstr ""
|
|
801 |
msgid "WPGlobus languages"
|
802 |
msgstr ""
|
803 |
|
804 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
805 |
msgid "Before switching the language, please save draft or publish."
|
806 |
msgstr ""
|
807 |
|
808 |
#. translators: Metabox title FOR language.
|
809 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
810 |
msgctxt "filter__seo_meta_box_title"
|
811 |
msgid "for"
|
812 |
msgstr ""
|
813 |
|
814 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
815 |
msgid "Page is being reloaded. Please wait..."
|
816 |
msgstr ""
|
817 |
|
265 |
msgstr "Salvesta ja laadi uuesti"
|
266 |
|
267 |
#: includes/admin/class-wpglobus-customize-options.php:546,
|
268 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:304,
|
269 |
#: includes/class-wpglobus.php:1320, wpglobus.php:12, wpglobus.php:18
|
270 |
msgid "WPGlobus"
|
271 |
msgstr "WPGlobus"
|
801 |
msgid "WPGlobus languages"
|
802 |
msgstr ""
|
803 |
|
804 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:136
|
805 |
msgid "Before switching the language, please save draft or publish."
|
806 |
msgstr ""
|
807 |
|
808 |
#. translators: Metabox title FOR language.
|
809 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:204
|
810 |
msgctxt "filter__seo_meta_box_title"
|
811 |
msgid "for"
|
812 |
msgstr ""
|
813 |
|
814 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:264
|
815 |
msgid "Page is being reloaded. Please wait..."
|
816 |
msgstr ""
|
817 |
|
languages/wpglobus-fr_BE.po
CHANGED
@@ -321,7 +321,7 @@ msgid "Save & Reload"
|
|
321 |
msgstr "Enregistrer & recharger"
|
322 |
|
323 |
#: includes/admin/class-wpglobus-customize-options.php:546,
|
324 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
325 |
#: includes/class-wpglobus.php:1320, wpglobus.php:12, wpglobus.php:18
|
326 |
msgid "WPGlobus"
|
327 |
msgstr "WPGlobus"
|
@@ -898,17 +898,17 @@ msgstr ""
|
|
898 |
msgid "WPGlobus languages"
|
899 |
msgstr ""
|
900 |
|
901 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
902 |
msgid "Before switching the language, please save draft or publish."
|
903 |
msgstr ""
|
904 |
|
905 |
#. translators: Metabox title FOR language.
|
906 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
907 |
msgctxt "filter__seo_meta_box_title"
|
908 |
msgid "for"
|
909 |
msgstr ""
|
910 |
|
911 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
912 |
msgid "Page is being reloaded. Please wait..."
|
913 |
msgstr ""
|
914 |
|
321 |
msgstr "Enregistrer & recharger"
|
322 |
|
323 |
#: includes/admin/class-wpglobus-customize-options.php:546,
|
324 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:304,
|
325 |
#: includes/class-wpglobus.php:1320, wpglobus.php:12, wpglobus.php:18
|
326 |
msgid "WPGlobus"
|
327 |
msgstr "WPGlobus"
|
898 |
msgid "WPGlobus languages"
|
899 |
msgstr ""
|
900 |
|
901 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:136
|
902 |
msgid "Before switching the language, please save draft or publish."
|
903 |
msgstr ""
|
904 |
|
905 |
#. translators: Metabox title FOR language.
|
906 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:204
|
907 |
msgctxt "filter__seo_meta_box_title"
|
908 |
msgid "for"
|
909 |
msgstr ""
|
910 |
|
911 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:264
|
912 |
msgid "Page is being reloaded. Please wait..."
|
913 |
msgstr ""
|
914 |
|
languages/wpglobus-fr_CA.po
CHANGED
@@ -323,7 +323,7 @@ msgid "Save & Reload"
|
|
323 |
msgstr "Enregistrer & recharger"
|
324 |
|
325 |
#: includes/admin/class-wpglobus-customize-options.php:546,
|
326 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
327 |
#: includes/class-wpglobus.php:1320, wpglobus.php:12, wpglobus.php:18
|
328 |
msgid "WPGlobus"
|
329 |
msgstr "WPGlobus"
|
@@ -900,17 +900,17 @@ msgstr ""
|
|
900 |
msgid "WPGlobus languages"
|
901 |
msgstr ""
|
902 |
|
903 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
904 |
msgid "Before switching the language, please save draft or publish."
|
905 |
msgstr ""
|
906 |
|
907 |
#. translators: Metabox title FOR language.
|
908 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
909 |
msgctxt "filter__seo_meta_box_title"
|
910 |
msgid "for"
|
911 |
msgstr ""
|
912 |
|
913 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
914 |
msgid "Page is being reloaded. Please wait..."
|
915 |
msgstr ""
|
916 |
|
323 |
msgstr "Enregistrer & recharger"
|
324 |
|
325 |
#: includes/admin/class-wpglobus-customize-options.php:546,
|
326 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:304,
|
327 |
#: includes/class-wpglobus.php:1320, wpglobus.php:12, wpglobus.php:18
|
328 |
msgid "WPGlobus"
|
329 |
msgstr "WPGlobus"
|
900 |
msgid "WPGlobus languages"
|
901 |
msgstr ""
|
902 |
|
903 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:136
|
904 |
msgid "Before switching the language, please save draft or publish."
|
905 |
msgstr ""
|
906 |
|
907 |
#. translators: Metabox title FOR language.
|
908 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:204
|
909 |
msgctxt "filter__seo_meta_box_title"
|
910 |
msgid "for"
|
911 |
msgstr ""
|
912 |
|
913 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:264
|
914 |
msgid "Page is being reloaded. Please wait..."
|
915 |
msgstr ""
|
916 |
|
languages/wpglobus-fr_FR.po
CHANGED
@@ -323,7 +323,7 @@ msgid "Save & Reload"
|
|
323 |
msgstr "Enregistrer & recharger"
|
324 |
|
325 |
#: includes/admin/class-wpglobus-customize-options.php:546,
|
326 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
327 |
#: includes/class-wpglobus.php:1320, wpglobus.php:12, wpglobus.php:18
|
328 |
msgid "WPGlobus"
|
329 |
msgstr "WPGlobus"
|
@@ -900,17 +900,17 @@ msgstr ""
|
|
900 |
msgid "WPGlobus languages"
|
901 |
msgstr ""
|
902 |
|
903 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
904 |
msgid "Before switching the language, please save draft or publish."
|
905 |
msgstr ""
|
906 |
|
907 |
#. translators: Metabox title FOR language.
|
908 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
909 |
msgctxt "filter__seo_meta_box_title"
|
910 |
msgid "for"
|
911 |
msgstr ""
|
912 |
|
913 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
914 |
msgid "Page is being reloaded. Please wait..."
|
915 |
msgstr ""
|
916 |
|
323 |
msgstr "Enregistrer & recharger"
|
324 |
|
325 |
#: includes/admin/class-wpglobus-customize-options.php:546,
|
326 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:304,
|
327 |
#: includes/class-wpglobus.php:1320, wpglobus.php:12, wpglobus.php:18
|
328 |
msgid "WPGlobus"
|
329 |
msgstr "WPGlobus"
|
900 |
msgid "WPGlobus languages"
|
901 |
msgstr ""
|
902 |
|
903 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:136
|
904 |
msgid "Before switching the language, please save draft or publish."
|
905 |
msgstr ""
|
906 |
|
907 |
#. translators: Metabox title FOR language.
|
908 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:204
|
909 |
msgctxt "filter__seo_meta_box_title"
|
910 |
msgid "for"
|
911 |
msgstr ""
|
912 |
|
913 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:264
|
914 |
msgid "Page is being reloaded. Please wait..."
|
915 |
msgstr ""
|
916 |
|
languages/wpglobus-id_ID.po
CHANGED
@@ -312,7 +312,7 @@ msgid "Save & Reload"
|
|
312 |
msgstr "Simpan & Reload"
|
313 |
|
314 |
#: includes/admin/class-wpglobus-customize-options.php:546,
|
315 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
316 |
#: includes/class-wpglobus.php:1320, wpglobus.php:12, wpglobus.php:18
|
317 |
msgid "WPGlobus"
|
318 |
msgstr "WPGlobus"
|
@@ -875,17 +875,17 @@ msgstr ""
|
|
875 |
msgid "WPGlobus languages"
|
876 |
msgstr ""
|
877 |
|
878 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
879 |
msgid "Before switching the language, please save draft or publish."
|
880 |
msgstr ""
|
881 |
|
882 |
#. translators: Metabox title FOR language.
|
883 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
884 |
msgctxt "filter__seo_meta_box_title"
|
885 |
msgid "for"
|
886 |
msgstr ""
|
887 |
|
888 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
889 |
msgid "Page is being reloaded. Please wait..."
|
890 |
msgstr ""
|
891 |
|
312 |
msgstr "Simpan & Reload"
|
313 |
|
314 |
#: includes/admin/class-wpglobus-customize-options.php:546,
|
315 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:304,
|
316 |
#: includes/class-wpglobus.php:1320, wpglobus.php:12, wpglobus.php:18
|
317 |
msgid "WPGlobus"
|
318 |
msgstr "WPGlobus"
|
875 |
msgid "WPGlobus languages"
|
876 |
msgstr ""
|
877 |
|
878 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:136
|
879 |
msgid "Before switching the language, please save draft or publish."
|
880 |
msgstr ""
|
881 |
|
882 |
#. translators: Metabox title FOR language.
|
883 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:204
|
884 |
msgctxt "filter__seo_meta_box_title"
|
885 |
msgid "for"
|
886 |
msgstr ""
|
887 |
|
888 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:264
|
889 |
msgid "Page is being reloaded. Please wait..."
|
890 |
msgstr ""
|
891 |
|
languages/wpglobus-ko_KR.po
CHANGED
@@ -264,7 +264,7 @@ msgid "Save & Reload"
|
|
264 |
msgstr ""
|
265 |
|
266 |
#: includes/admin/class-wpglobus-customize-options.php:546,
|
267 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
268 |
#: includes/class-wpglobus.php:1320, wpglobus.php:12, wpglobus.php:18
|
269 |
msgid "WPGlobus"
|
270 |
msgstr ""
|
@@ -800,17 +800,17 @@ msgstr ""
|
|
800 |
msgid "WPGlobus languages"
|
801 |
msgstr ""
|
802 |
|
803 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
804 |
msgid "Before switching the language, please save draft or publish."
|
805 |
msgstr ""
|
806 |
|
807 |
#. translators: Metabox title FOR language.
|
808 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
809 |
msgctxt "filter__seo_meta_box_title"
|
810 |
msgid "for"
|
811 |
msgstr ""
|
812 |
|
813 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
814 |
msgid "Page is being reloaded. Please wait..."
|
815 |
msgstr ""
|
816 |
|
264 |
msgstr ""
|
265 |
|
266 |
#: includes/admin/class-wpglobus-customize-options.php:546,
|
267 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:304,
|
268 |
#: includes/class-wpglobus.php:1320, wpglobus.php:12, wpglobus.php:18
|
269 |
msgid "WPGlobus"
|
270 |
msgstr ""
|
800 |
msgid "WPGlobus languages"
|
801 |
msgstr ""
|
802 |
|
803 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:136
|
804 |
msgid "Before switching the language, please save draft or publish."
|
805 |
msgstr ""
|
806 |
|
807 |
#. translators: Metabox title FOR language.
|
808 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:204
|
809 |
msgctxt "filter__seo_meta_box_title"
|
810 |
msgid "for"
|
811 |
msgstr ""
|
812 |
|
813 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:264
|
814 |
msgid "Page is being reloaded. Please wait..."
|
815 |
msgstr ""
|
816 |
|
languages/wpglobus-pl_PL.po
CHANGED
@@ -282,7 +282,7 @@ msgid "Save & Reload"
|
|
282 |
msgstr ""
|
283 |
|
284 |
#: includes/admin/class-wpglobus-customize-options.php:546,
|
285 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
286 |
#: includes/class-wpglobus.php:1320, wpglobus.php:12, wpglobus.php:18
|
287 |
msgid "WPGlobus"
|
288 |
msgstr "WPGlobus"
|
@@ -827,17 +827,17 @@ msgstr ""
|
|
827 |
msgid "WPGlobus languages"
|
828 |
msgstr ""
|
829 |
|
830 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
831 |
msgid "Before switching the language, please save draft or publish."
|
832 |
msgstr ""
|
833 |
|
834 |
#. translators: Metabox title FOR language.
|
835 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
836 |
msgctxt "filter__seo_meta_box_title"
|
837 |
msgid "for"
|
838 |
msgstr ""
|
839 |
|
840 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
841 |
msgid "Page is being reloaded. Please wait..."
|
842 |
msgstr ""
|
843 |
|
282 |
msgstr ""
|
283 |
|
284 |
#: includes/admin/class-wpglobus-customize-options.php:546,
|
285 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:304,
|
286 |
#: includes/class-wpglobus.php:1320, wpglobus.php:12, wpglobus.php:18
|
287 |
msgid "WPGlobus"
|
288 |
msgstr "WPGlobus"
|
827 |
msgid "WPGlobus languages"
|
828 |
msgstr ""
|
829 |
|
830 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:136
|
831 |
msgid "Before switching the language, please save draft or publish."
|
832 |
msgstr ""
|
833 |
|
834 |
#. translators: Metabox title FOR language.
|
835 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:204
|
836 |
msgctxt "filter__seo_meta_box_title"
|
837 |
msgid "for"
|
838 |
msgstr ""
|
839 |
|
840 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:264
|
841 |
msgid "Page is being reloaded. Please wait..."
|
842 |
msgstr ""
|
843 |
|
languages/wpglobus-pt_BR.po
CHANGED
@@ -264,7 +264,7 @@ msgid "Save & Reload"
|
|
264 |
msgstr ""
|
265 |
|
266 |
#: includes/admin/class-wpglobus-customize-options.php:546,
|
267 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
268 |
#: includes/class-wpglobus.php:1320, wpglobus.php:12, wpglobus.php:18
|
269 |
msgid "WPGlobus"
|
270 |
msgstr ""
|
@@ -800,17 +800,17 @@ msgstr ""
|
|
800 |
msgid "WPGlobus languages"
|
801 |
msgstr ""
|
802 |
|
803 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
804 |
msgid "Before switching the language, please save draft or publish."
|
805 |
msgstr ""
|
806 |
|
807 |
#. translators: Metabox title FOR language.
|
808 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
809 |
msgctxt "filter__seo_meta_box_title"
|
810 |
msgid "for"
|
811 |
msgstr ""
|
812 |
|
813 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
814 |
msgid "Page is being reloaded. Please wait..."
|
815 |
msgstr ""
|
816 |
|
264 |
msgstr ""
|
265 |
|
266 |
#: includes/admin/class-wpglobus-customize-options.php:546,
|
267 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:304,
|
268 |
#: includes/class-wpglobus.php:1320, wpglobus.php:12, wpglobus.php:18
|
269 |
msgid "WPGlobus"
|
270 |
msgstr ""
|
800 |
msgid "WPGlobus languages"
|
801 |
msgstr ""
|
802 |
|
803 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:136
|
804 |
msgid "Before switching the language, please save draft or publish."
|
805 |
msgstr ""
|
806 |
|
807 |
#. translators: Metabox title FOR language.
|
808 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:204
|
809 |
msgctxt "filter__seo_meta_box_title"
|
810 |
msgid "for"
|
811 |
msgstr ""
|
812 |
|
813 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:264
|
814 |
msgid "Page is being reloaded. Please wait..."
|
815 |
msgstr ""
|
816 |
|
languages/wpglobus-pt_PT.po
CHANGED
@@ -264,7 +264,7 @@ msgid "Save & Reload"
|
|
264 |
msgstr ""
|
265 |
|
266 |
#: includes/admin/class-wpglobus-customize-options.php:546,
|
267 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
268 |
#: includes/class-wpglobus.php:1320, wpglobus.php:12, wpglobus.php:18
|
269 |
msgid "WPGlobus"
|
270 |
msgstr ""
|
@@ -800,17 +800,17 @@ msgstr ""
|
|
800 |
msgid "WPGlobus languages"
|
801 |
msgstr ""
|
802 |
|
803 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
804 |
msgid "Before switching the language, please save draft or publish."
|
805 |
msgstr ""
|
806 |
|
807 |
#. translators: Metabox title FOR language.
|
808 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
809 |
msgctxt "filter__seo_meta_box_title"
|
810 |
msgid "for"
|
811 |
msgstr ""
|
812 |
|
813 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
814 |
msgid "Page is being reloaded. Please wait..."
|
815 |
msgstr ""
|
816 |
|
264 |
msgstr ""
|
265 |
|
266 |
#: includes/admin/class-wpglobus-customize-options.php:546,
|
267 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:304,
|
268 |
#: includes/class-wpglobus.php:1320, wpglobus.php:12, wpglobus.php:18
|
269 |
msgid "WPGlobus"
|
270 |
msgstr ""
|
800 |
msgid "WPGlobus languages"
|
801 |
msgstr ""
|
802 |
|
803 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:136
|
804 |
msgid "Before switching the language, please save draft or publish."
|
805 |
msgstr ""
|
806 |
|
807 |
#. translators: Metabox title FOR language.
|
808 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:204
|
809 |
msgctxt "filter__seo_meta_box_title"
|
810 |
msgid "for"
|
811 |
msgstr ""
|
812 |
|
813 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:264
|
814 |
msgid "Page is being reloaded. Please wait..."
|
815 |
msgstr ""
|
816 |
|
languages/wpglobus-ro_RO.po
CHANGED
@@ -281,7 +281,7 @@ msgid "Save & Reload"
|
|
281 |
msgstr ""
|
282 |
|
283 |
#: includes/admin/class-wpglobus-customize-options.php:546,
|
284 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
285 |
#: includes/class-wpglobus.php:1320, wpglobus.php:12, wpglobus.php:18
|
286 |
msgid "WPGlobus"
|
287 |
msgstr "WPGlobus"
|
@@ -830,17 +830,17 @@ msgstr ""
|
|
830 |
msgid "WPGlobus languages"
|
831 |
msgstr ""
|
832 |
|
833 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
834 |
msgid "Before switching the language, please save draft or publish."
|
835 |
msgstr ""
|
836 |
|
837 |
#. translators: Metabox title FOR language.
|
838 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
839 |
msgctxt "filter__seo_meta_box_title"
|
840 |
msgid "for"
|
841 |
msgstr ""
|
842 |
|
843 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
844 |
msgid "Page is being reloaded. Please wait..."
|
845 |
msgstr ""
|
846 |
|
281 |
msgstr ""
|
282 |
|
283 |
#: includes/admin/class-wpglobus-customize-options.php:546,
|
284 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:304,
|
285 |
#: includes/class-wpglobus.php:1320, wpglobus.php:12, wpglobus.php:18
|
286 |
msgid "WPGlobus"
|
287 |
msgstr "WPGlobus"
|
830 |
msgid "WPGlobus languages"
|
831 |
msgstr ""
|
832 |
|
833 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:136
|
834 |
msgid "Before switching the language, please save draft or publish."
|
835 |
msgstr ""
|
836 |
|
837 |
#. translators: Metabox title FOR language.
|
838 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:204
|
839 |
msgctxt "filter__seo_meta_box_title"
|
840 |
msgid "for"
|
841 |
msgstr ""
|
842 |
|
843 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:264
|
844 |
msgid "Page is being reloaded. Please wait..."
|
845 |
msgstr ""
|
846 |
|
languages/wpglobus-ru_RU.mo
CHANGED
Binary file
|
languages/wpglobus-ru_RU.po
CHANGED
@@ -313,7 +313,7 @@ msgid "Save & Reload"
|
|
313 |
msgstr "Сохранить и перезагрузить"
|
314 |
|
315 |
#: includes/admin/class-wpglobus-customize-options.php:546,
|
316 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
317 |
#: includes/class-wpglobus.php:1320, wpglobus.php:12, wpglobus.php:18
|
318 |
msgid "WPGlobus"
|
319 |
msgstr "WPGlobus"
|
@@ -881,20 +881,20 @@ msgstr "Настройки совместимости"
|
|
881 |
msgid "WPGlobus languages"
|
882 |
msgstr "Языки WPGlobus"
|
883 |
|
884 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
885 |
msgid "Before switching the language, please save draft or publish."
|
886 |
msgstr ""
|
887 |
"Опубликуйте, или сохраните черновик перед переключением на другой язык."
|
888 |
|
889 |
#. translators: Metabox title FOR language.
|
890 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
891 |
msgctxt "filter__seo_meta_box_title"
|
892 |
msgid "for"
|
893 |
msgstr "для"
|
894 |
|
895 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
896 |
msgid "Page is being reloaded. Please wait..."
|
897 |
-
msgstr "Страница
|
898 |
|
899 |
#: includes/class-wpglobus-widget.php:27
|
900 |
msgid "WPGlobus widget"
|
313 |
msgstr "Сохранить и перезагрузить"
|
314 |
|
315 |
#: includes/admin/class-wpglobus-customize-options.php:546,
|
316 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:304,
|
317 |
#: includes/class-wpglobus.php:1320, wpglobus.php:12, wpglobus.php:18
|
318 |
msgid "WPGlobus"
|
319 |
msgstr "WPGlobus"
|
881 |
msgid "WPGlobus languages"
|
882 |
msgstr "Языки WPGlobus"
|
883 |
|
884 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:136
|
885 |
msgid "Before switching the language, please save draft or publish."
|
886 |
msgstr ""
|
887 |
"Опубликуйте, или сохраните черновик перед переключением на другой язык."
|
888 |
|
889 |
#. translators: Metabox title FOR language.
|
890 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:204
|
891 |
msgctxt "filter__seo_meta_box_title"
|
892 |
msgid "for"
|
893 |
msgstr "для"
|
894 |
|
895 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:264
|
896 |
msgid "Page is being reloaded. Please wait..."
|
897 |
+
msgstr "Страница перезагружается. Подождите..."
|
898 |
|
899 |
#: includes/class-wpglobus-widget.php:27
|
900 |
msgid "WPGlobus widget"
|
languages/wpglobus-sv_SE.po
CHANGED
@@ -280,7 +280,7 @@ msgid "Save & Reload"
|
|
280 |
msgstr ""
|
281 |
|
282 |
#: includes/admin/class-wpglobus-customize-options.php:546,
|
283 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
284 |
#: includes/class-wpglobus.php:1320, wpglobus.php:12, wpglobus.php:18
|
285 |
msgid "WPGlobus"
|
286 |
msgstr ""
|
@@ -823,17 +823,17 @@ msgstr ""
|
|
823 |
msgid "WPGlobus languages"
|
824 |
msgstr ""
|
825 |
|
826 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
827 |
msgid "Before switching the language, please save draft or publish."
|
828 |
msgstr ""
|
829 |
|
830 |
#. translators: Metabox title FOR language.
|
831 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
832 |
msgctxt "filter__seo_meta_box_title"
|
833 |
msgid "for"
|
834 |
msgstr ""
|
835 |
|
836 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
837 |
msgid "Page is being reloaded. Please wait..."
|
838 |
msgstr ""
|
839 |
|
280 |
msgstr ""
|
281 |
|
282 |
#: includes/admin/class-wpglobus-customize-options.php:546,
|
283 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:304,
|
284 |
#: includes/class-wpglobus.php:1320, wpglobus.php:12, wpglobus.php:18
|
285 |
msgid "WPGlobus"
|
286 |
msgstr ""
|
823 |
msgid "WPGlobus languages"
|
824 |
msgstr ""
|
825 |
|
826 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:136
|
827 |
msgid "Before switching the language, please save draft or publish."
|
828 |
msgstr ""
|
829 |
|
830 |
#. translators: Metabox title FOR language.
|
831 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:204
|
832 |
msgctxt "filter__seo_meta_box_title"
|
833 |
msgid "for"
|
834 |
msgstr ""
|
835 |
|
836 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:264
|
837 |
msgid "Page is being reloaded. Please wait..."
|
838 |
msgstr ""
|
839 |
|
languages/wpglobus-tr_TR.po
CHANGED
@@ -282,7 +282,7 @@ msgid "Save & Reload"
|
|
282 |
msgstr ""
|
283 |
|
284 |
#: includes/admin/class-wpglobus-customize-options.php:546,
|
285 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
286 |
#: includes/class-wpglobus.php:1320, wpglobus.php:12, wpglobus.php:18
|
287 |
msgid "WPGlobus"
|
288 |
msgstr ""
|
@@ -826,17 +826,17 @@ msgstr ""
|
|
826 |
msgid "WPGlobus languages"
|
827 |
msgstr ""
|
828 |
|
829 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
830 |
msgid "Before switching the language, please save draft or publish."
|
831 |
msgstr ""
|
832 |
|
833 |
#. translators: Metabox title FOR language.
|
834 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
835 |
msgctxt "filter__seo_meta_box_title"
|
836 |
msgid "for"
|
837 |
msgstr ""
|
838 |
|
839 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
840 |
msgid "Page is being reloaded. Please wait..."
|
841 |
msgstr ""
|
842 |
|
282 |
msgstr ""
|
283 |
|
284 |
#: includes/admin/class-wpglobus-customize-options.php:546,
|
285 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:304,
|
286 |
#: includes/class-wpglobus.php:1320, wpglobus.php:12, wpglobus.php:18
|
287 |
msgid "WPGlobus"
|
288 |
msgstr ""
|
826 |
msgid "WPGlobus languages"
|
827 |
msgstr ""
|
828 |
|
829 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:136
|
830 |
msgid "Before switching the language, please save draft or publish."
|
831 |
msgstr ""
|
832 |
|
833 |
#. translators: Metabox title FOR language.
|
834 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:204
|
835 |
msgctxt "filter__seo_meta_box_title"
|
836 |
msgid "for"
|
837 |
msgstr ""
|
838 |
|
839 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:264
|
840 |
msgid "Page is being reloaded. Please wait..."
|
841 |
msgstr ""
|
842 |
|
languages/wpglobus-uk.po
CHANGED
@@ -299,7 +299,7 @@ msgid "Save & Reload"
|
|
299 |
msgstr "Зберегти та перезавантажити"
|
300 |
|
301 |
#: includes/admin/class-wpglobus-customize-options.php:546,
|
302 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
303 |
#: includes/class-wpglobus.php:1320, wpglobus.php:12, wpglobus.php:18
|
304 |
msgid "WPGlobus"
|
305 |
msgstr "WPGlobus"
|
@@ -856,17 +856,17 @@ msgstr ""
|
|
856 |
msgid "WPGlobus languages"
|
857 |
msgstr ""
|
858 |
|
859 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
860 |
msgid "Before switching the language, please save draft or publish."
|
861 |
msgstr ""
|
862 |
|
863 |
#. translators: Metabox title FOR language.
|
864 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
865 |
msgctxt "filter__seo_meta_box_title"
|
866 |
msgid "for"
|
867 |
msgstr ""
|
868 |
|
869 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
870 |
msgid "Page is being reloaded. Please wait..."
|
871 |
msgstr ""
|
872 |
|
299 |
msgstr "Зберегти та перезавантажити"
|
300 |
|
301 |
#: includes/admin/class-wpglobus-customize-options.php:546,
|
302 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:304,
|
303 |
#: includes/class-wpglobus.php:1320, wpglobus.php:12, wpglobus.php:18
|
304 |
msgid "WPGlobus"
|
305 |
msgstr "WPGlobus"
|
856 |
msgid "WPGlobus languages"
|
857 |
msgstr ""
|
858 |
|
859 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:136
|
860 |
msgid "Before switching the language, please save draft or publish."
|
861 |
msgstr ""
|
862 |
|
863 |
#. translators: Metabox title FOR language.
|
864 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:204
|
865 |
msgctxt "filter__seo_meta_box_title"
|
866 |
msgid "for"
|
867 |
msgstr ""
|
868 |
|
869 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:264
|
870 |
msgid "Page is being reloaded. Please wait..."
|
871 |
msgstr ""
|
872 |
|
languages/wpglobus.pot
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
-
# Copyright (C) 2018 WPGlobus 1.9.
|
2 |
-
# This file is distributed under the same license as the WPGlobus 1.9.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: WPGlobus 1.9.
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -197,7 +197,7 @@ msgstr ""
|
|
197 |
msgid "Save & Reload"
|
198 |
msgstr ""
|
199 |
|
200 |
-
#: includes/admin/class-wpglobus-customize-options.php:546, includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
201 |
msgid "WPGlobus"
|
202 |
msgstr ""
|
203 |
|
@@ -651,17 +651,17 @@ msgstr ""
|
|
651 |
msgid "WPGlobus languages"
|
652 |
msgstr ""
|
653 |
|
654 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
655 |
msgid "Before switching the language, please save draft or publish."
|
656 |
msgstr ""
|
657 |
|
658 |
#. translators: Metabox title FOR language.
|
659 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
660 |
msgctxt "filter__seo_meta_box_title"
|
661 |
msgid "for"
|
662 |
msgstr ""
|
663 |
|
664 |
-
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:
|
665 |
msgid "Page is being reloaded. Please wait..."
|
666 |
msgstr ""
|
667 |
|
1 |
+
# Copyright (C) 2018 WPGlobus 1.9.29
|
2 |
+
# This file is distributed under the same license as the WPGlobus 1.9.29 package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: WPGlobus 1.9.29\n"
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
197 |
msgid "Save & Reload"
|
198 |
msgstr ""
|
199 |
|
200 |
+
#: includes/admin/class-wpglobus-customize-options.php:546, includes/builders/gutenberg/class-wpglobus-gutenberg.php:304, includes/class-wpglobus.php:1320, wpglobus.php:12, wpglobus.php:18
|
201 |
msgid "WPGlobus"
|
202 |
msgstr ""
|
203 |
|
651 |
msgid "WPGlobus languages"
|
652 |
msgstr ""
|
653 |
|
654 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:136
|
655 |
msgid "Before switching the language, please save draft or publish."
|
656 |
msgstr ""
|
657 |
|
658 |
#. translators: Metabox title FOR language.
|
659 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:204
|
660 |
msgctxt "filter__seo_meta_box_title"
|
661 |
msgid "for"
|
662 |
msgstr ""
|
663 |
|
664 |
+
#: includes/builders/gutenberg/class-wpglobus-gutenberg.php:264
|
665 |
msgid "Page is being reloaded. Please wait..."
|
666 |
msgstr ""
|
667 |
|
readme.txt
CHANGED
@@ -217,6 +217,11 @@ This maintenance release introduces Gutenberg support in beta-stage.
|
|
217 |
|
218 |
== Changelog ==
|
219 |
|
|
|
|
|
|
|
|
|
|
|
220 |
= 1.9.28 =
|
221 |
|
222 |
* FIXED:
|
217 |
|
218 |
== Changelog ==
|
219 |
|
220 |
+
= 1.9.29 =
|
221 |
+
|
222 |
+
* FIXED:
|
223 |
+
* Builders/Gutenberg: CSS tweaks.
|
224 |
+
|
225 |
= 1.9.28 =
|
226 |
|
227 |
* FIXED:
|
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: 1.9.
|
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', '1.9.
|
46 |
define( 'WPGLOBUS_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
|
47 |
|
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: 1.9.29
|
19 |
* Author: WPGlobus
|
20 |
* Author URI: https://wpglobus.com/
|
21 |
* Network: false
|
42 |
exit;
|
43 |
}
|
44 |
|
45 |
+
define( 'WPGLOBUS_VERSION', '1.9.29' );
|
46 |
define( 'WPGLOBUS_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
|
47 |
|
48 |
/**
|